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
|
---|---|---|---|---|
.container {
max-width: 90%;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
margin: 0.5em 0;
padding: 0.5em;
border: 1px solid lightgray;
background-color: white;
cursor: pointer;
transition: box-shadow 0.2s linear;
}
.btn:hover { box-shadow: 0 0 6px rgba(35, 173, 278, 1); }
.btn-danger { background-color: tomato; color: white; }
.btn-danger:hover { background-color: red; box-shadow: none; }
.round-btn {
border: none;
border-radius: 100%;
}
.round-btn:hover {
box-shadow: none;
}
.card-style {
box-shadow: 0 3px 7px rgba(0,0,0,0.19), 0 2px 2px rgba(0,0,0,0.23);
}
.form-wrapper {
max-width: 90%;
margin: auto;
margin-bottom: 5em;
}
.form-wrapper h1 { text-align: center; }
.form-wrapper label { display: inline-block; margin: 0.5em 0 0.25em 0; font-weight: 600; }
.input-group {
display: flex;
margin: 0.5em 0;
box-shadow: 0 0 1px gray;
transition: box-shadow 0.2s linear;
}
.input-group.active {
box-shadow: 0 0 6px rgba(35, 173, 278, 1);
}
.input-group span,
.input-group a,
.input-group input,
.input-group select { padding: 0.5em 1em; }
.input-group input,
.input-group select {
width: 100%;
padding-left: 0.5em;
padding-right: 0.5em;
border: none;
outline: none;
}
.error {
display: block;
margin: 0.75em 0 0.5em 0;
font-size: 0.9em;
color: red;
}
.error .fas {
margin: 0 0.5em 0 0.25em;
}
.table {
border-collapse: collapse;
width: 100%;
border: 1px solid lightgray;
}
.table thead {
background-color: gainsboro;
border-bottom: 3px solid lightgray;
}
.table th { padding: 0.5em 0; }
.table td { padding: 0.5em 0; text-align: center; }
.stripped-table tr:nth-child(even) {
background-color: whitesmoke;
}
.gallery { display: flex; flex-direction: column; align-items: center; margin: 0.5em 0 0.75em 0; padding: 0.35em; border: 1px solid lightgray; border-radius: 3px; }
.gallery img { max-width: 100%; }
@media(min-width: 325px) {
.container {
max-width: 85%;
}
}
@media(min-width: 480px) {
.container {
max-width: 80%;
}
.form-wrapper {
max-width: 75%;
}
}
@media(min-width: 720px) {
.container {
max-width: 75%;
}
.form-wrapper {
max-width: 60%;
}
}
@media(min-width: 920px) {
.container {
max-width: 75%;
}
.form-wrapper {
max-width: 50%;
}
}
@media(min-width: 1280px) {
.container {
max-width: 2000px;
width: 75%;
}
.form-wrapper {
max-width: 40%;
width: 1280px;
}
}
|
mvc/cms/assets/css/general.css
|
.container {
max-width: 90%;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
margin: 0.5em 0;
padding: 0.5em;
border: 1px solid lightgray;
background-color: white;
cursor: pointer;
transition: box-shadow 0.2s linear;
}
.btn:hover { box-shadow: 0 0 6px rgba(35, 173, 278, 1); }
.btn-danger { background-color: tomato; color: white; }
.btn-danger:hover { background-color: red; box-shadow: none; }
.round-btn {
border: none;
border-radius: 100%;
}
.round-btn:hover {
box-shadow: none;
}
.card-style {
box-shadow: 0 3px 7px rgba(0,0,0,0.19), 0 2px 2px rgba(0,0,0,0.23);
}
.form-wrapper {
max-width: 90%;
margin: auto;
margin-bottom: 5em;
}
.form-wrapper h1 { text-align: center; }
.form-wrapper label { display: inline-block; margin: 0.5em 0 0.25em 0; font-weight: 600; }
.input-group {
display: flex;
margin: 0.5em 0;
box-shadow: 0 0 1px gray;
transition: box-shadow 0.2s linear;
}
.input-group.active {
box-shadow: 0 0 6px rgba(35, 173, 278, 1);
}
.input-group span,
.input-group a,
.input-group input,
.input-group select { padding: 0.5em 1em; }
.input-group input,
.input-group select {
width: 100%;
padding-left: 0.5em;
padding-right: 0.5em;
border: none;
outline: none;
}
.error {
display: block;
margin: 0.75em 0 0.5em 0;
font-size: 0.9em;
color: red;
}
.error .fas {
margin: 0 0.5em 0 0.25em;
}
.table {
border-collapse: collapse;
width: 100%;
border: 1px solid lightgray;
}
.table thead {
background-color: gainsboro;
border-bottom: 3px solid lightgray;
}
.table th { padding: 0.5em 0; }
.table td { padding: 0.5em 0; text-align: center; }
.stripped-table tr:nth-child(even) {
background-color: whitesmoke;
}
.gallery { display: flex; flex-direction: column; align-items: center; margin: 0.5em 0 0.75em 0; padding: 0.35em; border: 1px solid lightgray; border-radius: 3px; }
.gallery img { max-width: 100%; }
@media(min-width: 325px) {
.container {
max-width: 85%;
}
}
@media(min-width: 480px) {
.container {
max-width: 80%;
}
.form-wrapper {
max-width: 75%;
}
}
@media(min-width: 720px) {
.container {
max-width: 75%;
}
.form-wrapper {
max-width: 60%;
}
}
@media(min-width: 920px) {
.container {
max-width: 75%;
}
.form-wrapper {
max-width: 50%;
}
}
@media(min-width: 1280px) {
.container {
max-width: 2000px;
width: 75%;
}
.form-wrapper {
max-width: 40%;
width: 1280px;
}
}
| 0.503662 | 0.104158 |
body {
font-family: 'Libre Franklin', sans-serif;
background: #fff;
}
body a {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-decoration: none;
outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: 'Libre Franklin', sans-serif;
}
p {
margin: 0;
color: #777;
font-size: 15px;
line-height: 2;
}
ul {
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
}
body a:hover {
text-decoration: none;
}
body a:focus {
outline: none;
text-decoration: none;
}
.list-group-item {
background-color: transparent;
}
/*-- bottom-to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 24px;
right: 3%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/move-top.png) no-repeat 0px 0px;
}
#toTopHover {
width: 32px;
height: 32px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //bottom-to-top --*/
/* header */
.text-theme {
color: #00d255;
}
.bg-theme {
background: #00d255;
color: #fff;
}
a.navbar-brand {
font-size: 22px;
font-weight: 800;
color: #00d255;
}
.navbar-light .navbar-brand {
color: #00d255;
}
.navbar-light .navbar-brand:hover {
color: #00d255;
}
.navbar-brand span {
font-size: 22px;
color: #00d255;
font-weight: 600;
line-height: 40px;
width: 40px;
height: 40px;
background: #fff;
text-align: center;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
}
.w3ls-btn {
font-size: 16px;
letter-spacing: 1px;
margin-top: -3px;
}
.navbar-light .navbar-nav .nav-link {
font-weight: 600;
text-transform: capitalize;
color: #000;
letter-spacing: 1px;
font-family: 'Libre Franklin', sans-serif;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
color: #6887ff;
background: #fff;
border-radius: 5px;
}
ul.d-flex.header-agile li span {
margin-right: 1em;
color: #ff1949;
}
ul.d-flex.header-agile li:first-child {
margin-right: 1em;
}
.hearder-right-agile {
padding-left: 13em;
}
.header-top {
background: #131313;
}
ul.d-flex.header-agile {
padding-top: 15px;
}
.dropdown-menu a {
display: block;
margin: 10px 0;
color: #000 !important;
}
.dropdown-menu {
padding: 0.5rem 1rem 1rem;
}
.dropdown-menu a.hover-fill:after {
top: 0;
}
.hover-fill {
position: relative;
font-size: 16px;
font-weight: 600;
text-decoration: none;
text-transform: capitalize;
color: #fff;
transition: all .3s;
}
.hover-fill:hover {
color: transparent;
}
.hover-fill:hover:after {
max-width: 100%;
}
.hover-fill:after {
content: attr(data-txthover);
position: absolute;
top: -2px;
left: 0;
max-width: 0;
color: #00d255;
;
white-space: nowrap;
overflow: hidden;
transition: max-width .3s ease-out;
}
li.nav-item.active a {
color: #00d255;
}
header {
padding: 6px 0 11px;
background: #252629;
width: 100%;
}
/*-- //header --*/
/* banner */
.banner-w3pvt-bg {
background: url(../images/bg1.jpg) no-repeat left;
background-size: cover;
min-height: 100vh;
position: relative;
z-index: 1;
}
.banner2-w3pvt {
background-size: cover;
min-height: 100vh;
position: relative;
z-index: 1;
}
.bnr-w3pvt-txt h3 {
color: #000;
text-transform: uppercase;
font-weight: 800;
font-size: 3em;
word-spacing: 10px;
letter-spacing: 2.5px;
}
.bnr-sub-txt span {
height: 5px;
display: block;
width: 22%;
background: #50555b;
}
.bnr-sub-txt {
margin-top: 1em;
}
.bnr-w3pvt-txt p {
letter-spacing: 1px;
font-weight: 600;
word-spacing: 4px;
color: #333;
}
.bnr-w3pvt-txt {
padding: 18em 0 10em;
}
form.bnr-field .form-control {
border-radius: 0;
}
.bnr-sub-form h3 {
color: #000;
font-size: 1.3em;
text-transform: capitalize;
}
.bnr-form-w3ls {
background: #fff;
padding: 1em;
border: 7px solid rgba(20, 18, 19, 0.2);
}
/* //banner */
/* inner banner */
.inner-banner-w3ls {
background: url(../images/bg.jpg) no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 250px;
border-bottom: 3px solid #00d255;
}
li.breadcrumb-nav {
font-size: 1em;
color: #fff;
list-style-type: none;
font-weight: 600;
}
li.breadcrumb-nav a {
color: #fff;
font-size: 1em;
}
li.breadcrumb-nav.active {
color: #00d255;
}
.breadcrumb-nav+.breadcrumb-nav::before {
display: inline-block;
padding-right: 0.5rem;
padding-left: 0.5rem;
color: #fff;
content: "|";
}
h6.agileinfo-title {
color: #252629;
text-transform: capitalize;
font-weight: 800;
font-size: 3em;
}
ul.breadcrumb-parent {
width: 20%;
margin: 1.5em auto 0;
background: #252629;
padding: 7px 0;
border-radius: 30px;
}
/* //inner banner */
/* about */
.about-left-grid-w3 {
background: url(../images/g3.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.about-left-grid-w3.port-bg {
background: url(../images/g16.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.about-left-grid-w3-bot {
background: url(../images/g1.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.expert-bg {
background: url(../images/g5.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
/* services */
.service1-bg {
background: url(../images/s1.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.service2-bg {
background: url(../images/s2.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
/* services */
.text-exp {
color: #dad8d8 !important;
}
.border-exp {
border-color: #dad8d8 !important;
}
.title-sec-w3layouts_pvt,
.title-sec-w3layouts_pvt_left {
background: #eee;
display: inline-block;
padding: 1em;
position: relative;
margin-top: 2em;
z-index: 0;
}
.title-sec-w3layouts_pvt.bg-white:before {
border-color: #fff;
}
.title-sec-w3layouts_pvt span,
.title-sec-w3layouts_pvt_left span {
color: #000;
text-transform: capitalize;
font-weight: 600;
}
.title-sec-w3layouts_pvt:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 5px solid #f2f2f3;
left: 20%;
top: -26%;
z-index: -1;
}
.title-sec-w3layouts_pvt_left:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 5px solid #f2f2f3;
right: -20%;
top: -26%;
z-index: -1;
}
.border-pos-wthree {
position: absolute;
width: 100%;
height: 50%;
border: 5px solid #c1bfbf;
bottom: -50px;
left: 50px;
z-index: -1;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-weight: bold;
text-transform: uppercase;
color: rgba(241, 241, 241, 0.63);
font-size: 4em;
position: absolute;
bottom: 20px;
}
.about-w3pvt h3 {
right: 0;
}
.about-w3pvt-bot h3 {
left: 0;
}
.abt-w3pvt-txt p,
.abt-w3pvt-txt-bot p {
margin-top: 2em;
}
.abt-w3pvt-txt p {
padding-left: 4em;
}
.abt-w3pvt-txt-bot p {
padding-right: 4em;
font-size: 15px;
}
.abt-w3pvt-txt-bot span.title-wthree {
text-transform: uppercase;
font-size: 12px;
font-weight: 600;
color: #000;
letter-spacing: 1px;
}
h4.w3layouts_pvt-head {
text-transform: capitalize;
margin-top: 10px;
font-size: 2em;
font-weight: 800;
color: #00d255;
}
a.bnr-btn {
display: inline-block;
margin: 1em 0;
background: #00d255;
padding: 0.5em 1em;
color: #fff;
text-transform: capitalize;
}
a.bnr-btn:hover {
padding: 0.5em 2em;
}
.about-row {
padding: 9em 0 10em;
}
.clip-wthree:before {
background: #36bdf1;
clip-path: polygon(0% 0%, 60% 0, 40% 100%, 0% 100%);
position: absolute;
content: '';
width: 100%;
height: 100%;
}
.clip-wthree_bot:before {
background: #36bdf1;
clip-path: polygon(60% 0%, 100% 0, 100% 100%, 40% 100%);
position: absolute;
content: '';
width: 100%;
height: 100%;
z-index: -1;
}
section.about-w3pvt-bot.sec-space.position-relative.clip-wthree {
background: #f1f1f1;
z-index: 0;
}
section.about-w3pvt-bot.sec-space.position-relative.clip-wthree_bot {
background: #f1f1f1;
z-index: 0;
}
/* //about */
/* gallery */
.agile_gallery_grids {
padding: 0 2em;
}
.demo>li {
list-style-type: none;
}
/*jquery.picEyes*/
.picshade {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100% !important;
background-color: #000;
opacity: 0.91;
filter: alpha(opacity=91);
z-index: 99;
display: none;
}
.pictures_eyes_close {
position: fixed;
top: 30px;
right: 30px;
display: inline-block;
width: 30px;
height: 30px;
background: url(../images/close.png) no-repeat;
z-index: 100;
display: none;
}
.pictures_eyes {
position: fixed;
width: 100%;
left: 0;
top: 0;
z-index: 199;
display: none;
}
.pictures_eyes_in {
position: relative;
text-align: center;
}
.pictures_eyes_in img {
max-height: 500px;
max-width: 700px;
}
.pictures_eyes_in .prev,
.pictures_eyes_in .next {
position: absolute;
top: 50%;
width: 51px;
height: 51px;
cursor: pointer;
}
.pictures_eyes_in .prev {
left: 35px;
background: url(../images/left1.png) no-repeat;
}
.pictures_eyes_in .next {
right: 35px;
background: url(../images/right1.png) no-repeat;
}
.pictures_eyes_indicators {
position: fixed;
left: 0;
bottom: 15px;
width: 100%;
text-align: center;
z-index: 299;
}
.pictures_eyes_indicators a {
display: inline-block;
width: 50px;
height: 50px;
margin: 6px 3px 0 3px;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 2px #000;
filter: alpha(opacity=50);
opacity: 0.5;
overflow: hidden;
}
.pictures_eyes_indicators img {
height: 50px;
}
.pictures_eyes_indicators .current {
filter: alpha(opacity=100);
opacity: 1;
}
.gallery-grid1 {
position: relative;
overflow: hidden;
cursor: pointer;
}
/* .gallery-grid1 .p-mask,
.row .product .vm-product-media-container .p-mask {
opacity: 0;
visibility: hidden;
background: rgba(25, 24, 24, 0.8);
position: absolute;
padding: 1em 1em;
width: 100%;
top: 0;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
-webkit-transition: all .5s ease 0s;
-moz-transition: all .5s ease 0s;
transition: all .5s ease 0s;
text-align: center;
}*/
.gallery-grid1 .p-mask,
.row .product .vm-product-media-container .p-mask {
padding: 1em 0;
}
.gallery-grid1 .p-mask .p-desc {
color: #a3a3a3;
position: relative;
display: block;
margin-bottom: 10px;
padding-bottom: 10px;
font-size: 1em;
}
.gallery-grid1:hover .p-mask,
.row .product:hover .p-mask {
opacity: 1;
visibility: visible;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
.p-mask h4 {
color: #00d255;
font-size: 1.1em;
text-transform: capitalize;
}
.pictures_eyes_in {
position: relative;
text-align: center;
}
.pictures_eyes_in img {
width: 100%;
}
/* //gallery */
/* testimonials */
.testimonials {
padding: 4em 0;
}
#slider {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs {
list-style: none;
padding: 0;
background: rgba(0, 0, 0, .25);
box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
-moz-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
font-size: 18px;
list-style: none;
margin: 0 auto 50px;
max-width: 540px;
padding: 10px 0;
text-align: center;
width: 100%;
}
.rslides_tabs li {
display: inline;
float: none;
margin-right: 1px;
}
.rslides_tabs a {
width: auto;
line-height: 20px;
padding: 9px 20px;
height: auto;
background: transparent;
display: inline;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255, 255, 255, .1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.callbacks_container {
position: relative;
}
ul.callbacks_tabs {
position: absolute;
z-index: 2;
right: 10%;
bottom: 50px;
}
.callbacks_tabs a {
visibility: hidden;
}
.callbacks_tabs a:after {
content: "\f111";
font-size: 0;
visibility: visible;
display: inline-block;
height: 10px;
width: 10px;
border-radius: 50%;
background: #ff1949;
}
.callbacks_here a:after {
background: #333;
}
/*
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
top: 78%;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 34px;
width: 34px;
background: url("../images/left.png") no-repeat 0px 0px;
}
.callbacks_nav.prev {
left: auto;
background: url("../images/back.png") no-repeat 0px 0px;
left: 18em;
}
.callbacks_nav.next {
left: auto;
background: url("../images/next.png") no-repeat 0px 0px;
right: 18em;
}
.callbacks_nav:active {
opacity: 1.0;
}
.callbacks2_nav:active {
opacity: 1.0;
}*/
#slider-pager a {
display: inline-block;
}
#slider-pager span {
float: left;
}
#slider-pager span {
width: 100px;
height: 15px;
background: #fff;
display: inline-block;
border-radius: 30em;
opacity: 0.6;
}
#slider-pager .rslides_here a {
background: #FFF;
border-radius: 30em;
opacity: 1;
}
#slider-pager a {
padding: 0;
}
#slider-pager li {
display: inline-block;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
padding: 0;
margin: 0;
width: 100%;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
left: 0%;
top: 0;
width: 100%;
}
.rslides li {
position: relative;
display: block;
float: none;
}
.testi-pos {
margin-top: 1em;
}
.callbacks_tabs li {
display: inline-block;
}
.callbacks_tabs a {
visibility: hidden;
width: 20px;
line-height: 19px;
height: 20px;
text-align: center;
color: #000;
font-weight: 600;
display: block;
background: #fff;
border-radius: 50%;
}
.callbacks_tabs a:hover {
background: #1165f3;
color: #fff;
}
.testi-pos h4 {
text-transform: capitalize;
font-size: 1.3em;
color: #ff1949;
font-weight: 600;
}
.testi-agile h4 {
color: #000;
font-size: 1em;
text-transform: capitalize;
margin: 1em 0 0.5em;
font-weight: bold;
}
.testi-agile p {
width: 70%;
color: #333;
font-size: 1em;
}
/* //testimonials */
/* contact */
form.register-wthree .form-control {
background: #eee;
font-size: 0.9em;
}
textarea.form-control {
height: 200px;
resize: none;
}
form.register-wthree .form-control {
background: #eee;
border: none;
border-left: 3px solid #0093d0;
border-radius: 0;
-webkit-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
-moz-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
}
button.btn.btn-agile.btn-block.w-100.font-weight-bold.text-uppercase {
background: #00d255;
color: #ffffff;
}
.contact-bg {
background: #fff;
padding: 3em;
}
.fv3-contact span {
color: #585858;
font-size: 1.1em;
display: inline-block;
background: #eee;
vertical-align: middle;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
}
.address-w3layouts {
margin-top: 2em;
}
.fv3-contact p {
display: inline-block;
vertical-align: middle;
color: #333;
}
.fv3-contact p a{
color: #000;
}
/* //contact */
/* brands */
.carousel-indicators li {
background-color: #36bdf1;
}
.carousel-indicators .active {
background: #000;
}
.brand-icon-wthree li a span {
font-size: 3em;
color: #fff;
}
.carousel-control-next,
.carousel-control-prev {
z-index: 1;
}
.brand_title h4 {
text-transform: uppercase;
font-size: 2em;
color: #00d255;
margin: 0 16px;
}
.brand_title span {
background: #424242;
display: inline-block;
height: 6px;
width: 70px;
}
/* brands */
.list-group-item {
border-width: 0 1px;
text-align: center;
}
section.footer-brand-slide {
margin-top: 4em;
}
.brand-space {
background: #424242;
padding: 2em 0;
margin-top: 3em;
border-radius: 25px;
}
/* footer social */
.social_icon {
font-size: 1.5em !important;
margin-bottom: 10px;
}
.social-w3pvt a {
color: #000;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.social_icon_list a:first-child {
color: #3b5998;
}
.social_icon_list a:first-child:hover {
background: #3b5998;
color: #fff !important;
}
.social_icon_list a:nth-child(2) {
color: #00aced;
}
.social_icon_list a:nth-child(2):hover {
background: #00aced;
color: #fff !important;
}
.social_icon_list a:nth-child(3) {
color: #c4302b;
}
.social_icon_list a:nth-child(3):hover {
background: #c4302b;
color: #fff !important;
}
.social_icon_list a:nth-child(4) {
color: #1ab7ea;
}
.social_icon_list a:nth-child(4):hover {
background: #1ab7ea;
color: #fff !important;
}
.social_icon_list a:last-child {
color: #0976b4;
}
.social_icon_list a:last-child:hover {
background: #0976b4;
color: #fff !important;
}
.social-w3pvt {
padding: 2em 0 1em;
background: #252629;
}
/* given common color for all social icons */
.social_icon_list a {
color: #777 !important;
}
/* footer social */
footer {
background: #252629;
padding: 0 0 2em;
}
.copy-right-wthree {
border-top: 1px solid #3c3c3c;
padding-top: 2em;
}
span.wthree-line {
display: block;
background: #00d255;
height: 4px;
width: 50px;
margin-top: 5px;
}
.modal-content {
background: url(../images/g6.jpg) no-repeat center;
background-size: cover;
}
.modal-header {
background: #fff;
}
.modal-body input[type="submit"] {
background: #00d255;
cursor: pointer;
color: #fff;
}
/* -- Responsive code -- */
@media screen and (max-width: 1600px) {}
@media screen and (max-width: 1440px) {
.bnr-w3pvt-txt h3 {
font-size: 2.8em;
}
.pictures_eyes_indicators {
bottom: 0;
}
section.footer-brand-slide {
margin-top: 0em;
}
}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1280px) {
.about-row {
padding: 6em 0 10em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3.5em;
}
h6.agileinfo-title {
font-size: 2.5em;
}
.pictures_eyes {
width: 83%;
}
}
@media screen and (max-width: 1080px) {
.follow-wthree h4 {
font-size: 1.3em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3.2em;
}
}
@media screen and (max-width: 1050px) {
h4.w3layouts_pvt-head {
font-size: 1.7em;
}
.border-pos-wthree {
bottom: -25px;
left: 25px;
}
}
@media screen and (max-width: 1024px) {
.bnr-w3pvt-txt h3 {
font-size: 2.4em;
}
.bnr-sub-txt span {
width: 18%;
}
.border-pos-wthree {
left: 0px;
}
.title-sec-w3layouts_pvt:before {
left: 13%;
}
}
@media screen and (max-width: 991px) {
.w3ls-btn {
margin: 0 auto;
}
.banner2-w3pvt {
background-size: contain;
min-height: 100px;
}
.social_icon_list {
margin-top: 2em;
}
span.wthree-line {
margin: 5px auto;
}
.about-row {
padding: 3em 0 10em;
}
footer h2 a.navbar-brand {
display: block;
margin-bottom: 0.5em;
}
section.latest_news_w3pvt .row {
flex-direction: column-reverse;
}
.brand_title h4 {
font-size: 1.7em;
}
.about-right-grid-w3 {
margin-top: 3em;
}
.clip-wthree:before {
clip-path: polygon(0% 0%, 100% 0, 45% 100%, 0% 100%);
}
.clip-wthree_bot:before {
clip-path: polygon(100% 0%, 100% 0, 100% 100%, 44% 100%);
}
.border-pos-wthree {
bottom: -24px;
left: 24px;
}
.about-left-grid-w3-bot {
margin-top: 2em;
}
h6.agileinfo-title {
font-size: 2.3em;
}
ul.breadcrumb-parent {
width: 30%;
}
.contact-bg {
margin-top: 2em;
}
.tech-btm {
margin-bottom: 0;
}
}
@media screen and (max-width: 900px) {
.bnr-w3pvt-txt {
padding: 12em 0 8em;
}
ul.timeline {
margin-top: 3em;
}
.inner-banner-w3ls {
min-height: 200px;
}
}
@media screen and (max-width: 800px) {
.about-row {
padding: 3em 0 6em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3em;
}
.about-left-grid-w3,
.about-left-grid-w3.port-bg,
.about-left-grid-w3-bot,.service1-bg {
min-height: 350px;
}
}
@media screen and (max-width: 768px) {
.title-sec-w3layouts_pvt:before {
left: 7%;
top: -20%;
}
.border-pos-wthree {
left: 0px;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2.4em;
}
}
@media screen and (max-width: 736px) {
.bnr-w3pvt-txt h3 {
font-size: 2.3em;
}
.list-group-item {
padding: .75rem 1rem;
}
.social-w3pvt a {
font-size: 13px;
}
.brand_title h4 {
font-size: 1.5em;
}
.brand-icon-wthree li a span {
font-size: 2.5em;
}
ul.breadcrumb-parent {
width: 40%;
}
}
@media screen and (max-width: 667px) {
h6.agileinfo-title {
font-size: 2.1em;
}
}
@media screen and (max-width: 640px) {
.clip-wthree:before {
clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
}
}
@media screen and (max-width: 600px) {
h4.w3layouts_pvt-head {
font-size: 1.4em;
}
.about-row {
padding: 2em 0 6em;
}
}
@media screen and (max-width: 568px) {
.bnr-w3pvt-txt h3 {
font-size: 2em;
}
.bnr-sub-txt span {
width: 13%;
}
.bnr-w3pvt-txt {
padding: 5em 0 3em;
}
.title-sec-w3layouts_pvt:before {
left: 0%;
}
.about-left-grid-w3,
.about-left-grid-w3.port-bg,
.about-left-grid-w3-bot {
min-height: 300px;
}
.abt-w3pvt-txt-bot p {
padding-right: 0em;
}
h6.agileinfo-title {
font-size: 2em;
}
li.breadcrumb-nav a {
font-size: 0.9em;
}
}
@media screen and (max-width: 480px) {
.bnr-w3pvt-txt h3 {
font-size: 1.8em;
}
.brand_title h4 {
font-size: 1.4em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2.5em;
}
.about-row {
padding: 2em 0 5em;
}
.abt-w3pvt-txt p {
padding-left: 0em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2em;
}
.inner-banner-w3ls {
min-height: 180px;
}
h6.agileinfo-title {
font-size: 1.8em;
}
.pictures_eyes_indicators a {
width: 40px;
height: 40px;
}
}
@media screen and (max-width: 414px) {
.bnr-w3pvt-txt h3 {
font-size: 1.5em;
}
.bnr-w3pvt-txt p {
word-spacing: 0px;
font-size: 14px;
}
.bnr-sub-txt span {
width: 11%;
}
.title-sec-w3layouts_pvt,
.title-sec-w3layouts_pvt_left {
margin-top: 0em;
}
ul.breadcrumb-parent {
width: 50%;
}
}
@media screen and (max-width: 384px) {
.bnr-w3pvt-txt h3 {
font-size: 1.4em;
}
.bnr-w3pvt-txt p {
font-size: 13px;
}
.brand_title h4 {
font-size: 1.3em;
}
a.bnr-btn {
padding: 0.3em 1em;
font-size: 14px;
}
a.bnr-btn:hover {
padding: 0.3em 2em;
}
.row.sub-w3l.my-3 {
display: block;
text-align: center;
}
.forgot-w3l.text-right {
text-align: center !important;
}
}
@media screen and (max-width: 375px) {
.bnr-w3pvt-txt h3 {
font-size: 1.3em;
}
}
@media screen and (max-width: 320px) {
.bnr-w3pvt-txt h3 {
font-size: 1.3em;
line-height: 1.5;
}
.brand_title h4 {
font-size: 1.1em;
}
ul.breadcrumb-parent {
width: 70%;
}
h6.agileinfo-title {
font-size: 1.6em;
}
}
/* -- //Responsive code -- */
|
css/style.css
|
body {
font-family: 'Libre Franklin', sans-serif;
background: #fff;
}
body a {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-decoration: none;
outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: 'Libre Franklin', sans-serif;
}
p {
margin: 0;
color: #777;
font-size: 15px;
line-height: 2;
}
ul {
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
}
body a:hover {
text-decoration: none;
}
body a:focus {
outline: none;
text-decoration: none;
}
.list-group-item {
background-color: transparent;
}
/*-- bottom-to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 24px;
right: 3%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/move-top.png) no-repeat 0px 0px;
}
#toTopHover {
width: 32px;
height: 32px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //bottom-to-top --*/
/* header */
.text-theme {
color: #00d255;
}
.bg-theme {
background: #00d255;
color: #fff;
}
a.navbar-brand {
font-size: 22px;
font-weight: 800;
color: #00d255;
}
.navbar-light .navbar-brand {
color: #00d255;
}
.navbar-light .navbar-brand:hover {
color: #00d255;
}
.navbar-brand span {
font-size: 22px;
color: #00d255;
font-weight: 600;
line-height: 40px;
width: 40px;
height: 40px;
background: #fff;
text-align: center;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
}
.w3ls-btn {
font-size: 16px;
letter-spacing: 1px;
margin-top: -3px;
}
.navbar-light .navbar-nav .nav-link {
font-weight: 600;
text-transform: capitalize;
color: #000;
letter-spacing: 1px;
font-family: 'Libre Franklin', sans-serif;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
color: #6887ff;
background: #fff;
border-radius: 5px;
}
ul.d-flex.header-agile li span {
margin-right: 1em;
color: #ff1949;
}
ul.d-flex.header-agile li:first-child {
margin-right: 1em;
}
.hearder-right-agile {
padding-left: 13em;
}
.header-top {
background: #131313;
}
ul.d-flex.header-agile {
padding-top: 15px;
}
.dropdown-menu a {
display: block;
margin: 10px 0;
color: #000 !important;
}
.dropdown-menu {
padding: 0.5rem 1rem 1rem;
}
.dropdown-menu a.hover-fill:after {
top: 0;
}
.hover-fill {
position: relative;
font-size: 16px;
font-weight: 600;
text-decoration: none;
text-transform: capitalize;
color: #fff;
transition: all .3s;
}
.hover-fill:hover {
color: transparent;
}
.hover-fill:hover:after {
max-width: 100%;
}
.hover-fill:after {
content: attr(data-txthover);
position: absolute;
top: -2px;
left: 0;
max-width: 0;
color: #00d255;
;
white-space: nowrap;
overflow: hidden;
transition: max-width .3s ease-out;
}
li.nav-item.active a {
color: #00d255;
}
header {
padding: 6px 0 11px;
background: #252629;
width: 100%;
}
/*-- //header --*/
/* banner */
.banner-w3pvt-bg {
background: url(../images/bg1.jpg) no-repeat left;
background-size: cover;
min-height: 100vh;
position: relative;
z-index: 1;
}
.banner2-w3pvt {
background-size: cover;
min-height: 100vh;
position: relative;
z-index: 1;
}
.bnr-w3pvt-txt h3 {
color: #000;
text-transform: uppercase;
font-weight: 800;
font-size: 3em;
word-spacing: 10px;
letter-spacing: 2.5px;
}
.bnr-sub-txt span {
height: 5px;
display: block;
width: 22%;
background: #50555b;
}
.bnr-sub-txt {
margin-top: 1em;
}
.bnr-w3pvt-txt p {
letter-spacing: 1px;
font-weight: 600;
word-spacing: 4px;
color: #333;
}
.bnr-w3pvt-txt {
padding: 18em 0 10em;
}
form.bnr-field .form-control {
border-radius: 0;
}
.bnr-sub-form h3 {
color: #000;
font-size: 1.3em;
text-transform: capitalize;
}
.bnr-form-w3ls {
background: #fff;
padding: 1em;
border: 7px solid rgba(20, 18, 19, 0.2);
}
/* //banner */
/* inner banner */
.inner-banner-w3ls {
background: url(../images/bg.jpg) no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 250px;
border-bottom: 3px solid #00d255;
}
li.breadcrumb-nav {
font-size: 1em;
color: #fff;
list-style-type: none;
font-weight: 600;
}
li.breadcrumb-nav a {
color: #fff;
font-size: 1em;
}
li.breadcrumb-nav.active {
color: #00d255;
}
.breadcrumb-nav+.breadcrumb-nav::before {
display: inline-block;
padding-right: 0.5rem;
padding-left: 0.5rem;
color: #fff;
content: "|";
}
h6.agileinfo-title {
color: #252629;
text-transform: capitalize;
font-weight: 800;
font-size: 3em;
}
ul.breadcrumb-parent {
width: 20%;
margin: 1.5em auto 0;
background: #252629;
padding: 7px 0;
border-radius: 30px;
}
/* //inner banner */
/* about */
.about-left-grid-w3 {
background: url(../images/g3.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.about-left-grid-w3.port-bg {
background: url(../images/g16.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.about-left-grid-w3-bot {
background: url(../images/g1.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.expert-bg {
background: url(../images/g5.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
/* services */
.service1-bg {
background: url(../images/s1.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
.service2-bg {
background: url(../images/s2.jpg) no-repeat center;
background-size: cover;
min-height: 400px;
}
/* services */
.text-exp {
color: #dad8d8 !important;
}
.border-exp {
border-color: #dad8d8 !important;
}
.title-sec-w3layouts_pvt,
.title-sec-w3layouts_pvt_left {
background: #eee;
display: inline-block;
padding: 1em;
position: relative;
margin-top: 2em;
z-index: 0;
}
.title-sec-w3layouts_pvt.bg-white:before {
border-color: #fff;
}
.title-sec-w3layouts_pvt span,
.title-sec-w3layouts_pvt_left span {
color: #000;
text-transform: capitalize;
font-weight: 600;
}
.title-sec-w3layouts_pvt:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 5px solid #f2f2f3;
left: 20%;
top: -26%;
z-index: -1;
}
.title-sec-w3layouts_pvt_left:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 5px solid #f2f2f3;
right: -20%;
top: -26%;
z-index: -1;
}
.border-pos-wthree {
position: absolute;
width: 100%;
height: 50%;
border: 5px solid #c1bfbf;
bottom: -50px;
left: 50px;
z-index: -1;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-weight: bold;
text-transform: uppercase;
color: rgba(241, 241, 241, 0.63);
font-size: 4em;
position: absolute;
bottom: 20px;
}
.about-w3pvt h3 {
right: 0;
}
.about-w3pvt-bot h3 {
left: 0;
}
.abt-w3pvt-txt p,
.abt-w3pvt-txt-bot p {
margin-top: 2em;
}
.abt-w3pvt-txt p {
padding-left: 4em;
}
.abt-w3pvt-txt-bot p {
padding-right: 4em;
font-size: 15px;
}
.abt-w3pvt-txt-bot span.title-wthree {
text-transform: uppercase;
font-size: 12px;
font-weight: 600;
color: #000;
letter-spacing: 1px;
}
h4.w3layouts_pvt-head {
text-transform: capitalize;
margin-top: 10px;
font-size: 2em;
font-weight: 800;
color: #00d255;
}
a.bnr-btn {
display: inline-block;
margin: 1em 0;
background: #00d255;
padding: 0.5em 1em;
color: #fff;
text-transform: capitalize;
}
a.bnr-btn:hover {
padding: 0.5em 2em;
}
.about-row {
padding: 9em 0 10em;
}
.clip-wthree:before {
background: #36bdf1;
clip-path: polygon(0% 0%, 60% 0, 40% 100%, 0% 100%);
position: absolute;
content: '';
width: 100%;
height: 100%;
}
.clip-wthree_bot:before {
background: #36bdf1;
clip-path: polygon(60% 0%, 100% 0, 100% 100%, 40% 100%);
position: absolute;
content: '';
width: 100%;
height: 100%;
z-index: -1;
}
section.about-w3pvt-bot.sec-space.position-relative.clip-wthree {
background: #f1f1f1;
z-index: 0;
}
section.about-w3pvt-bot.sec-space.position-relative.clip-wthree_bot {
background: #f1f1f1;
z-index: 0;
}
/* //about */
/* gallery */
.agile_gallery_grids {
padding: 0 2em;
}
.demo>li {
list-style-type: none;
}
/*jquery.picEyes*/
.picshade {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100% !important;
background-color: #000;
opacity: 0.91;
filter: alpha(opacity=91);
z-index: 99;
display: none;
}
.pictures_eyes_close {
position: fixed;
top: 30px;
right: 30px;
display: inline-block;
width: 30px;
height: 30px;
background: url(../images/close.png) no-repeat;
z-index: 100;
display: none;
}
.pictures_eyes {
position: fixed;
width: 100%;
left: 0;
top: 0;
z-index: 199;
display: none;
}
.pictures_eyes_in {
position: relative;
text-align: center;
}
.pictures_eyes_in img {
max-height: 500px;
max-width: 700px;
}
.pictures_eyes_in .prev,
.pictures_eyes_in .next {
position: absolute;
top: 50%;
width: 51px;
height: 51px;
cursor: pointer;
}
.pictures_eyes_in .prev {
left: 35px;
background: url(../images/left1.png) no-repeat;
}
.pictures_eyes_in .next {
right: 35px;
background: url(../images/right1.png) no-repeat;
}
.pictures_eyes_indicators {
position: fixed;
left: 0;
bottom: 15px;
width: 100%;
text-align: center;
z-index: 299;
}
.pictures_eyes_indicators a {
display: inline-block;
width: 50px;
height: 50px;
margin: 6px 3px 0 3px;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 2px #000;
filter: alpha(opacity=50);
opacity: 0.5;
overflow: hidden;
}
.pictures_eyes_indicators img {
height: 50px;
}
.pictures_eyes_indicators .current {
filter: alpha(opacity=100);
opacity: 1;
}
.gallery-grid1 {
position: relative;
overflow: hidden;
cursor: pointer;
}
/* .gallery-grid1 .p-mask,
.row .product .vm-product-media-container .p-mask {
opacity: 0;
visibility: hidden;
background: rgba(25, 24, 24, 0.8);
position: absolute;
padding: 1em 1em;
width: 100%;
top: 0;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
-webkit-transition: all .5s ease 0s;
-moz-transition: all .5s ease 0s;
transition: all .5s ease 0s;
text-align: center;
}*/
.gallery-grid1 .p-mask,
.row .product .vm-product-media-container .p-mask {
padding: 1em 0;
}
.gallery-grid1 .p-mask .p-desc {
color: #a3a3a3;
position: relative;
display: block;
margin-bottom: 10px;
padding-bottom: 10px;
font-size: 1em;
}
.gallery-grid1:hover .p-mask,
.row .product:hover .p-mask {
opacity: 1;
visibility: visible;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
.p-mask h4 {
color: #00d255;
font-size: 1.1em;
text-transform: capitalize;
}
.pictures_eyes_in {
position: relative;
text-align: center;
}
.pictures_eyes_in img {
width: 100%;
}
/* //gallery */
/* testimonials */
.testimonials {
padding: 4em 0;
}
#slider {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs {
list-style: none;
padding: 0;
background: rgba(0, 0, 0, .25);
box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
-moz-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .3), inset 0 0 5px rgba(0, 0, 0, 1.0);
font-size: 18px;
list-style: none;
margin: 0 auto 50px;
max-width: 540px;
padding: 10px 0;
text-align: center;
width: 100%;
}
.rslides_tabs li {
display: inline;
float: none;
margin-right: 1px;
}
.rslides_tabs a {
width: auto;
line-height: 20px;
padding: 9px 20px;
height: auto;
background: transparent;
display: inline;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255, 255, 255, .1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.callbacks_container {
position: relative;
}
ul.callbacks_tabs {
position: absolute;
z-index: 2;
right: 10%;
bottom: 50px;
}
.callbacks_tabs a {
visibility: hidden;
}
.callbacks_tabs a:after {
content: "\f111";
font-size: 0;
visibility: visible;
display: inline-block;
height: 10px;
width: 10px;
border-radius: 50%;
background: #ff1949;
}
.callbacks_here a:after {
background: #333;
}
/*
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
top: 78%;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 34px;
width: 34px;
background: url("../images/left.png") no-repeat 0px 0px;
}
.callbacks_nav.prev {
left: auto;
background: url("../images/back.png") no-repeat 0px 0px;
left: 18em;
}
.callbacks_nav.next {
left: auto;
background: url("../images/next.png") no-repeat 0px 0px;
right: 18em;
}
.callbacks_nav:active {
opacity: 1.0;
}
.callbacks2_nav:active {
opacity: 1.0;
}*/
#slider-pager a {
display: inline-block;
}
#slider-pager span {
float: left;
}
#slider-pager span {
width: 100px;
height: 15px;
background: #fff;
display: inline-block;
border-radius: 30em;
opacity: 0.6;
}
#slider-pager .rslides_here a {
background: #FFF;
border-radius: 30em;
opacity: 1;
}
#slider-pager a {
padding: 0;
}
#slider-pager li {
display: inline-block;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
padding: 0;
margin: 0;
width: 100%;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
left: 0%;
top: 0;
width: 100%;
}
.rslides li {
position: relative;
display: block;
float: none;
}
.testi-pos {
margin-top: 1em;
}
.callbacks_tabs li {
display: inline-block;
}
.callbacks_tabs a {
visibility: hidden;
width: 20px;
line-height: 19px;
height: 20px;
text-align: center;
color: #000;
font-weight: 600;
display: block;
background: #fff;
border-radius: 50%;
}
.callbacks_tabs a:hover {
background: #1165f3;
color: #fff;
}
.testi-pos h4 {
text-transform: capitalize;
font-size: 1.3em;
color: #ff1949;
font-weight: 600;
}
.testi-agile h4 {
color: #000;
font-size: 1em;
text-transform: capitalize;
margin: 1em 0 0.5em;
font-weight: bold;
}
.testi-agile p {
width: 70%;
color: #333;
font-size: 1em;
}
/* //testimonials */
/* contact */
form.register-wthree .form-control {
background: #eee;
font-size: 0.9em;
}
textarea.form-control {
height: 200px;
resize: none;
}
form.register-wthree .form-control {
background: #eee;
border: none;
border-left: 3px solid #0093d0;
border-radius: 0;
-webkit-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
-moz-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
}
button.btn.btn-agile.btn-block.w-100.font-weight-bold.text-uppercase {
background: #00d255;
color: #ffffff;
}
.contact-bg {
background: #fff;
padding: 3em;
}
.fv3-contact span {
color: #585858;
font-size: 1.1em;
display: inline-block;
background: #eee;
vertical-align: middle;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
}
.address-w3layouts {
margin-top: 2em;
}
.fv3-contact p {
display: inline-block;
vertical-align: middle;
color: #333;
}
.fv3-contact p a{
color: #000;
}
/* //contact */
/* brands */
.carousel-indicators li {
background-color: #36bdf1;
}
.carousel-indicators .active {
background: #000;
}
.brand-icon-wthree li a span {
font-size: 3em;
color: #fff;
}
.carousel-control-next,
.carousel-control-prev {
z-index: 1;
}
.brand_title h4 {
text-transform: uppercase;
font-size: 2em;
color: #00d255;
margin: 0 16px;
}
.brand_title span {
background: #424242;
display: inline-block;
height: 6px;
width: 70px;
}
/* brands */
.list-group-item {
border-width: 0 1px;
text-align: center;
}
section.footer-brand-slide {
margin-top: 4em;
}
.brand-space {
background: #424242;
padding: 2em 0;
margin-top: 3em;
border-radius: 25px;
}
/* footer social */
.social_icon {
font-size: 1.5em !important;
margin-bottom: 10px;
}
.social-w3pvt a {
color: #000;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.social_icon_list a:first-child {
color: #3b5998;
}
.social_icon_list a:first-child:hover {
background: #3b5998;
color: #fff !important;
}
.social_icon_list a:nth-child(2) {
color: #00aced;
}
.social_icon_list a:nth-child(2):hover {
background: #00aced;
color: #fff !important;
}
.social_icon_list a:nth-child(3) {
color: #c4302b;
}
.social_icon_list a:nth-child(3):hover {
background: #c4302b;
color: #fff !important;
}
.social_icon_list a:nth-child(4) {
color: #1ab7ea;
}
.social_icon_list a:nth-child(4):hover {
background: #1ab7ea;
color: #fff !important;
}
.social_icon_list a:last-child {
color: #0976b4;
}
.social_icon_list a:last-child:hover {
background: #0976b4;
color: #fff !important;
}
.social-w3pvt {
padding: 2em 0 1em;
background: #252629;
}
/* given common color for all social icons */
.social_icon_list a {
color: #777 !important;
}
/* footer social */
footer {
background: #252629;
padding: 0 0 2em;
}
.copy-right-wthree {
border-top: 1px solid #3c3c3c;
padding-top: 2em;
}
span.wthree-line {
display: block;
background: #00d255;
height: 4px;
width: 50px;
margin-top: 5px;
}
.modal-content {
background: url(../images/g6.jpg) no-repeat center;
background-size: cover;
}
.modal-header {
background: #fff;
}
.modal-body input[type="submit"] {
background: #00d255;
cursor: pointer;
color: #fff;
}
/* -- Responsive code -- */
@media screen and (max-width: 1600px) {}
@media screen and (max-width: 1440px) {
.bnr-w3pvt-txt h3 {
font-size: 2.8em;
}
.pictures_eyes_indicators {
bottom: 0;
}
section.footer-brand-slide {
margin-top: 0em;
}
}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1280px) {
.about-row {
padding: 6em 0 10em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3.5em;
}
h6.agileinfo-title {
font-size: 2.5em;
}
.pictures_eyes {
width: 83%;
}
}
@media screen and (max-width: 1080px) {
.follow-wthree h4 {
font-size: 1.3em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3.2em;
}
}
@media screen and (max-width: 1050px) {
h4.w3layouts_pvt-head {
font-size: 1.7em;
}
.border-pos-wthree {
bottom: -25px;
left: 25px;
}
}
@media screen and (max-width: 1024px) {
.bnr-w3pvt-txt h3 {
font-size: 2.4em;
}
.bnr-sub-txt span {
width: 18%;
}
.border-pos-wthree {
left: 0px;
}
.title-sec-w3layouts_pvt:before {
left: 13%;
}
}
@media screen and (max-width: 991px) {
.w3ls-btn {
margin: 0 auto;
}
.banner2-w3pvt {
background-size: contain;
min-height: 100px;
}
.social_icon_list {
margin-top: 2em;
}
span.wthree-line {
margin: 5px auto;
}
.about-row {
padding: 3em 0 10em;
}
footer h2 a.navbar-brand {
display: block;
margin-bottom: 0.5em;
}
section.latest_news_w3pvt .row {
flex-direction: column-reverse;
}
.brand_title h4 {
font-size: 1.7em;
}
.about-right-grid-w3 {
margin-top: 3em;
}
.clip-wthree:before {
clip-path: polygon(0% 0%, 100% 0, 45% 100%, 0% 100%);
}
.clip-wthree_bot:before {
clip-path: polygon(100% 0%, 100% 0, 100% 100%, 44% 100%);
}
.border-pos-wthree {
bottom: -24px;
left: 24px;
}
.about-left-grid-w3-bot {
margin-top: 2em;
}
h6.agileinfo-title {
font-size: 2.3em;
}
ul.breadcrumb-parent {
width: 30%;
}
.contact-bg {
margin-top: 2em;
}
.tech-btm {
margin-bottom: 0;
}
}
@media screen and (max-width: 900px) {
.bnr-w3pvt-txt {
padding: 12em 0 8em;
}
ul.timeline {
margin-top: 3em;
}
.inner-banner-w3ls {
min-height: 200px;
}
}
@media screen and (max-width: 800px) {
.about-row {
padding: 3em 0 6em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 3em;
}
.about-left-grid-w3,
.about-left-grid-w3.port-bg,
.about-left-grid-w3-bot,.service1-bg {
min-height: 350px;
}
}
@media screen and (max-width: 768px) {
.title-sec-w3layouts_pvt:before {
left: 7%;
top: -20%;
}
.border-pos-wthree {
left: 0px;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2.4em;
}
}
@media screen and (max-width: 736px) {
.bnr-w3pvt-txt h3 {
font-size: 2.3em;
}
.list-group-item {
padding: .75rem 1rem;
}
.social-w3pvt a {
font-size: 13px;
}
.brand_title h4 {
font-size: 1.5em;
}
.brand-icon-wthree li a span {
font-size: 2.5em;
}
ul.breadcrumb-parent {
width: 40%;
}
}
@media screen and (max-width: 667px) {
h6.agileinfo-title {
font-size: 2.1em;
}
}
@media screen and (max-width: 640px) {
.clip-wthree:before {
clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
}
}
@media screen and (max-width: 600px) {
h4.w3layouts_pvt-head {
font-size: 1.4em;
}
.about-row {
padding: 2em 0 6em;
}
}
@media screen and (max-width: 568px) {
.bnr-w3pvt-txt h3 {
font-size: 2em;
}
.bnr-sub-txt span {
width: 13%;
}
.bnr-w3pvt-txt {
padding: 5em 0 3em;
}
.title-sec-w3layouts_pvt:before {
left: 0%;
}
.about-left-grid-w3,
.about-left-grid-w3.port-bg,
.about-left-grid-w3-bot {
min-height: 300px;
}
.abt-w3pvt-txt-bot p {
padding-right: 0em;
}
h6.agileinfo-title {
font-size: 2em;
}
li.breadcrumb-nav a {
font-size: 0.9em;
}
}
@media screen and (max-width: 480px) {
.bnr-w3pvt-txt h3 {
font-size: 1.8em;
}
.brand_title h4 {
font-size: 1.4em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2.5em;
}
.about-row {
padding: 2em 0 5em;
}
.abt-w3pvt-txt p {
padding-left: 0em;
}
.about-w3pvt h3,
.about-w3pvt-bot h3 {
font-size: 2em;
}
.inner-banner-w3ls {
min-height: 180px;
}
h6.agileinfo-title {
font-size: 1.8em;
}
.pictures_eyes_indicators a {
width: 40px;
height: 40px;
}
}
@media screen and (max-width: 414px) {
.bnr-w3pvt-txt h3 {
font-size: 1.5em;
}
.bnr-w3pvt-txt p {
word-spacing: 0px;
font-size: 14px;
}
.bnr-sub-txt span {
width: 11%;
}
.title-sec-w3layouts_pvt,
.title-sec-w3layouts_pvt_left {
margin-top: 0em;
}
ul.breadcrumb-parent {
width: 50%;
}
}
@media screen and (max-width: 384px) {
.bnr-w3pvt-txt h3 {
font-size: 1.4em;
}
.bnr-w3pvt-txt p {
font-size: 13px;
}
.brand_title h4 {
font-size: 1.3em;
}
a.bnr-btn {
padding: 0.3em 1em;
font-size: 14px;
}
a.bnr-btn:hover {
padding: 0.3em 2em;
}
.row.sub-w3l.my-3 {
display: block;
text-align: center;
}
.forgot-w3l.text-right {
text-align: center !important;
}
}
@media screen and (max-width: 375px) {
.bnr-w3pvt-txt h3 {
font-size: 1.3em;
}
}
@media screen and (max-width: 320px) {
.bnr-w3pvt-txt h3 {
font-size: 1.3em;
line-height: 1.5;
}
.brand_title h4 {
font-size: 1.1em;
}
ul.breadcrumb-parent {
width: 70%;
}
h6.agileinfo-title {
font-size: 1.6em;
}
}
/* -- //Responsive code -- */
| 0.264358 | 0.050354 |
@CHARSET "UTF-8";
.clear{clear:both;}
.fl{float:left;}
.fr{float:right;}
#loading{
position: absolute;
top: 13px;
right: 31px;
z-index: 9999;
display: none;
width: 100px;
height: 26px;
color: #fff;
background: url(../images/loadingbg.png) no-repeat;
}
#loading .loadingicon {
position: absolute;
top: 0;
left: 0;
display: inline-block;
width: 26px;
height: 26px;
background: url(../images/loading.gif) no-repeat center;
}
#loading span {
margin-left: 26px;
font-family: 'Microsoft Yahei',verdana;
font-size: 12px;
font-weight: bold;
line-height: 26px;
}
.tagchecklist .removetag{
display: block;
width: 16px;
height: 16px;
overflow: hidden;
float: left;
border-radius:50%;
background:#1dd2af;
position:relative;
margin-top:2px;
}
.tagchecklist span{
margin-right:10px;
margin-bottom:5px;
}
.tagchecklist .tag-text{
position:absolute;
top:20px;
}
.tagchecklist .removetag:hover{
background:#28efc7;
}
.tagchecklist .removetag i{
color:#fff;
position:absolute;
top:2px;
left:3px;
}
.tab-content{overflow:hidden;}
.hide-if-no-js .tag-link{
float:left;
margin-right:5px;
text-decoration:underline;
}
.hide-if-no-js .the-tagcloud{
display:none;
border:1px solid #ccc;
padding:5px;
}
.content .remove{
font-size:20px;
margin-left:205px;
display:block;
width:20px;
height:25px;
}
.content .remove i{
margin-top:5px;
color:#afafaf;
}
.content .remove i:hover{color:rgb(123, 138, 139);}
.add-gray{
margin-left:305px;
display:none;
}
.controls-text{display:block;padding-top:5px;}
.goods .fa-close{
color:#ff4949;
font-size:16px;
cursor:pointer;
}
.goods .fa-check{
font-size:16px;
cursor:pointer;
}
#spec_input_tab{width:60%;}
.goods-spec .spec-name{
width:75px;
}
.goods-spec .btn{
margin-right:10px;
background:#d2d2d2;
margin-bottom:10px;
}
.goods-spec .btn-success{
background:#3498db;
}
.goods-spec .btn-default{
background:#d2d2d2;
}
.goods-spec .fa-times{
padding:5px;
color:#999;
}
/*订单详细*/
.order-box .well{
padding:10px;
border:1px solid #ddd;
border-radius:0;
margin-bottom:0;
border-bottom:0;
text-align:center;
}
.order-box table th{
border:1px solid #ddd;
}
.order-box table td{
border:1px solid #ddd;
}
.order-box table th{
text-align: center;
}
.order-box .well .fa-pencil{
margin-left:10px;
}
/*后台主页*/
.ibox{
width:180px;
background:#ecf0f1;
border-top:3px solid #1dd2af;
float:left;
margin-right:25px;
}
.ibox .title{
padding:5px 12px;
border-bottom:1px solid #fff;
}
.ibox .title span{
font-weight:600;
float:left;
}
.ibox .title i{
float:right;
line-height:20px;
}
.ibox .content{
min-height:48px;
padding-left:20px;
}
/*重制后台样式*/
.navbar-inner{
background-image:linear-gradient(to bottom,#293846,#293846);
}
.sidebar{
background-color:#293038;
}
.nav-list>li>a{
background-color:#37424f;
}
.nav-list>li{
border-top:none;
border-bottom:1px solid #293038;
}
.nav-list>li>a{
color:#fff;
}
.nav-list>li>a:hover{
background-color:#293038;
color:#fff;
}
.nav-list>li.open>a{
background-color:#293038;
color:#fafafa;
}
.nav-list>li>a:focus{
background-color:#293038;
}
.nav-list>li a:hover>.arrow, .nav-list>li.active>a>.arrow, .nav-list>li.open>a>.arrow{
color:#fff;
}
.nav-list>li .submenu{
background-color:#293038;
border-top:1px solid #1f1f1f;
}
.nav-list>li .submenu>li>a{
background-color:#293038;
}
.nav-list>li .submenu>li>a{
border-bottom: 1px solid #1f1f1f;
border-top: 1px solid #1f1f1f;
color:#fff;
}
.nav-list>li>.submenu>li:first-child>a{
border-top:1px solid #1f1f1f;
}
.nav-list>li .submenu>li>a:hover{
background:#293038;
color:#ddd;
}
.nav-list>li.open{
border-bottom: 1px solid #1f1f1f;
}
|
public/themes/admin_simpleboot3/public/assets/simpleboot3/css/style.css
|
@CHARSET "UTF-8";
.clear{clear:both;}
.fl{float:left;}
.fr{float:right;}
#loading{
position: absolute;
top: 13px;
right: 31px;
z-index: 9999;
display: none;
width: 100px;
height: 26px;
color: #fff;
background: url(../images/loadingbg.png) no-repeat;
}
#loading .loadingicon {
position: absolute;
top: 0;
left: 0;
display: inline-block;
width: 26px;
height: 26px;
background: url(../images/loading.gif) no-repeat center;
}
#loading span {
margin-left: 26px;
font-family: 'Microsoft Yahei',verdana;
font-size: 12px;
font-weight: bold;
line-height: 26px;
}
.tagchecklist .removetag{
display: block;
width: 16px;
height: 16px;
overflow: hidden;
float: left;
border-radius:50%;
background:#1dd2af;
position:relative;
margin-top:2px;
}
.tagchecklist span{
margin-right:10px;
margin-bottom:5px;
}
.tagchecklist .tag-text{
position:absolute;
top:20px;
}
.tagchecklist .removetag:hover{
background:#28efc7;
}
.tagchecklist .removetag i{
color:#fff;
position:absolute;
top:2px;
left:3px;
}
.tab-content{overflow:hidden;}
.hide-if-no-js .tag-link{
float:left;
margin-right:5px;
text-decoration:underline;
}
.hide-if-no-js .the-tagcloud{
display:none;
border:1px solid #ccc;
padding:5px;
}
.content .remove{
font-size:20px;
margin-left:205px;
display:block;
width:20px;
height:25px;
}
.content .remove i{
margin-top:5px;
color:#afafaf;
}
.content .remove i:hover{color:rgb(123, 138, 139);}
.add-gray{
margin-left:305px;
display:none;
}
.controls-text{display:block;padding-top:5px;}
.goods .fa-close{
color:#ff4949;
font-size:16px;
cursor:pointer;
}
.goods .fa-check{
font-size:16px;
cursor:pointer;
}
#spec_input_tab{width:60%;}
.goods-spec .spec-name{
width:75px;
}
.goods-spec .btn{
margin-right:10px;
background:#d2d2d2;
margin-bottom:10px;
}
.goods-spec .btn-success{
background:#3498db;
}
.goods-spec .btn-default{
background:#d2d2d2;
}
.goods-spec .fa-times{
padding:5px;
color:#999;
}
/*订单详细*/
.order-box .well{
padding:10px;
border:1px solid #ddd;
border-radius:0;
margin-bottom:0;
border-bottom:0;
text-align:center;
}
.order-box table th{
border:1px solid #ddd;
}
.order-box table td{
border:1px solid #ddd;
}
.order-box table th{
text-align: center;
}
.order-box .well .fa-pencil{
margin-left:10px;
}
/*后台主页*/
.ibox{
width:180px;
background:#ecf0f1;
border-top:3px solid #1dd2af;
float:left;
margin-right:25px;
}
.ibox .title{
padding:5px 12px;
border-bottom:1px solid #fff;
}
.ibox .title span{
font-weight:600;
float:left;
}
.ibox .title i{
float:right;
line-height:20px;
}
.ibox .content{
min-height:48px;
padding-left:20px;
}
/*重制后台样式*/
.navbar-inner{
background-image:linear-gradient(to bottom,#293846,#293846);
}
.sidebar{
background-color:#293038;
}
.nav-list>li>a{
background-color:#37424f;
}
.nav-list>li{
border-top:none;
border-bottom:1px solid #293038;
}
.nav-list>li>a{
color:#fff;
}
.nav-list>li>a:hover{
background-color:#293038;
color:#fff;
}
.nav-list>li.open>a{
background-color:#293038;
color:#fafafa;
}
.nav-list>li>a:focus{
background-color:#293038;
}
.nav-list>li a:hover>.arrow, .nav-list>li.active>a>.arrow, .nav-list>li.open>a>.arrow{
color:#fff;
}
.nav-list>li .submenu{
background-color:#293038;
border-top:1px solid #1f1f1f;
}
.nav-list>li .submenu>li>a{
background-color:#293038;
}
.nav-list>li .submenu>li>a{
border-bottom: 1px solid #1f1f1f;
border-top: 1px solid #1f1f1f;
color:#fff;
}
.nav-list>li>.submenu>li:first-child>a{
border-top:1px solid #1f1f1f;
}
.nav-list>li .submenu>li>a:hover{
background:#293038;
color:#ddd;
}
.nav-list>li.open{
border-bottom: 1px solid #1f1f1f;
}
| 0.189071 | 0.062445 |
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
|
web/static/fonts/Muller/stylesheet.css
|
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLightItalic.woff2') format('woff2'),
url('MullerUltraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlack.woff2') format('woff2'),
url('MullerBlack.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerLightItalic.woff2') format('woff2'),
url('MullerLightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerUltraLight.woff2') format('woff2'),
url('MullerUltraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairlineItalic.woff2') format('woff2'),
url('MullerHairlineItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBold.woff2') format('woff2'),
url('MullerExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMedium.woff2') format('woff2'),
url('MullerMedium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavy.woff2') format('woff2'),
url('MullerHeavy.woff') format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerMediumItalic.woff2') format('woff2'),
url('MullerMediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThin.woff2') format('woff2'),
url('MullerThin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBoldItalic.woff2') format('woff2'),
url('MullerBoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Muller Hairline';
src: url('MullerHairline.woff2') format('woff2'),
url('MullerHairline.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerExtraBoldItalic.woff2') format('woff2'),
url('MullerExtraBoldItalic.woff') format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Muller Regular';
src: url('MullerRegularItalic.woff2') format('woff2'),
url('MullerRegularItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: url('MullerBlackItalic.woff2') format('woff2'),
url('MullerBlackItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerThinItalic.woff2') format('woff2'),
url('MullerThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerHeavyItalic.woff2') format('woff2'),
url('MullerHeavyItalic.woff') format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Muller';
src: url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
| 0.363195 | 0.057838 |
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
/* universal */
.container-fluid-0 {
position: relative;
}
/* section0 */
#section0 {
width: 100%;
}
.link-product {
border-bottom: 2px solid black;
}
#navbarSupportedContent {
margin-top: 1%;
z-index: 20;
}
.navbar {
background: white !important;
}
#a-item {
color: black;
}
.collapse {
display: flex;
}
.nav-link:hover {
color: #4bc2c5 !important;
}
.navbar-brand {
font-family: Montserrat;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 29px;
letter-spacing: 0.02em;
color: #4bc2c5 !important;
}
#Pharmacy {
color: black !important;
font-weight: normal;
font-family: Nunito Sans;
}
#search {
background: #ededed;
border-radius: 8px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #ababab;
}
#icon {
border: none;
}
.input-group-btn {
margin-top: 2px;
margin-left: 2%;
}
#icon:hover {
background-color: white !important;
}
.fa-search {
cursor: pointer;
color: black;
}
#section0 ul {
margin-left: 2%;
}
.nav-item a {
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
letter-spacing: 0.02em;
}
.rounded-circle {
width: 45px;
height: 45px;
cursor: pointer;
}
.fa-shopping-cart {
transform: translate(-200%, 0%);
color: #ababab;
cursor: pointer;
}
/* section1 */
#section1 {
margin-top: 3%;
background: #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
border-radius: 15px;
position: relative;
width: 60%;
padding: 3em;
}
#section1 .tittle {
margin-top: 3%;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
letter-spacing: 0.02em;
color: #000000;
}
#section1 img {
width: 88px;
height: 88px;
float: right;
}
#section1 input {
border-radius: 5px;
}
#section1 form {
margin-top: 5%;
}
#section1 button {
margin-top: 5%;
border-radius: 5px;
width: 90%;
}
.btn-danger {
background: #f90000;
border-radius: 5px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
text-align: center;
letter-spacing: 0.02em;
}
.btn-info {
background: #4bc2c5;
border-radius: 5px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
letter-spacing: 0.02em;
color: #ffffff;
}
#vector6 {
position: absolute;
bottom:-23%;
}
#vector7 {
position: absolute;
left: 87.9%;
bottom: 28.9%;
z-index: 0;
}
.form-container {
position: relative;
}
.alert {
z-index: 1;
}
/* profile */
.dropdown-menu {
width: 190px;
}
.dropdown-menu .bot {
width: 80px;
height: 80px;
margin-top: 8%;
margin-left: 30%;
margin-bottom: 5%;
}
.dropdown-menu a {
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 16px;
color: rgba(0, 0, 0, 0.35);
text-align: left;
width: 90%;
margin-left: 5%;
}
.profile-title {
margin-top: 2%;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 10px;
line-height: 14px;
text-align: center;
color: rgba(0, 0, 0, 0.6);
}
.dropdown-menu a {
background-color: #4bc2c5;
}
/* password */
#Password .modal-content {
width: 80%;
background: #ffffff;
border-radius: 10px;
padding-bottom: 5%;
}
.form-group {
width: 80%;
margin-left: 10%;
margin-bottom: 2%;
}
#Password .form-group .btn {
margin-left: 10%;
width: 80%;
}
.form-group .btn-info {
background: #4bc2c5 !important;
border-radius: 5px;
margin-top: 5%;
}
.form-group .btn-outline-danger {
border-radius: 5px;
margin-top: 5%;
}
#tittle-password {
margin-top: 5%;
margin-bottom: 10%;
}
#Password input,
.tittle {
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 11px;
line-height: 15px;
color: #ababab;
}
.tittle #a-item {
color: #4bc2c5;
}
/* Delete */
#DeleteAccount .modal-content {
transform: translate(0%, 100%);
}
@media screen and (max-width: 767px) {
#section1 {
width: 90%;
padding: 3em 1em 3em 1em;
}
#section1 img {
float: left;
}
}
@media screen and (max-width: 1024px) {
#vector6,
#vector7 {
display: none;
}
}
|
assets/css/EditProfile.css
|
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
/* universal */
.container-fluid-0 {
position: relative;
}
/* section0 */
#section0 {
width: 100%;
}
.link-product {
border-bottom: 2px solid black;
}
#navbarSupportedContent {
margin-top: 1%;
z-index: 20;
}
.navbar {
background: white !important;
}
#a-item {
color: black;
}
.collapse {
display: flex;
}
.nav-link:hover {
color: #4bc2c5 !important;
}
.navbar-brand {
font-family: Montserrat;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 29px;
letter-spacing: 0.02em;
color: #4bc2c5 !important;
}
#Pharmacy {
color: black !important;
font-weight: normal;
font-family: Nunito Sans;
}
#search {
background: #ededed;
border-radius: 8px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #ababab;
}
#icon {
border: none;
}
.input-group-btn {
margin-top: 2px;
margin-left: 2%;
}
#icon:hover {
background-color: white !important;
}
.fa-search {
cursor: pointer;
color: black;
}
#section0 ul {
margin-left: 2%;
}
.nav-item a {
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
letter-spacing: 0.02em;
}
.rounded-circle {
width: 45px;
height: 45px;
cursor: pointer;
}
.fa-shopping-cart {
transform: translate(-200%, 0%);
color: #ababab;
cursor: pointer;
}
/* section1 */
#section1 {
margin-top: 3%;
background: #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
border-radius: 15px;
position: relative;
width: 60%;
padding: 3em;
}
#section1 .tittle {
margin-top: 3%;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
letter-spacing: 0.02em;
color: #000000;
}
#section1 img {
width: 88px;
height: 88px;
float: right;
}
#section1 input {
border-radius: 5px;
}
#section1 form {
margin-top: 5%;
}
#section1 button {
margin-top: 5%;
border-radius: 5px;
width: 90%;
}
.btn-danger {
background: #f90000;
border-radius: 5px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
text-align: center;
letter-spacing: 0.02em;
}
.btn-info {
background: #4bc2c5;
border-radius: 5px;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
letter-spacing: 0.02em;
color: #ffffff;
}
#vector6 {
position: absolute;
bottom:-23%;
}
#vector7 {
position: absolute;
left: 87.9%;
bottom: 28.9%;
z-index: 0;
}
.form-container {
position: relative;
}
.alert {
z-index: 1;
}
/* profile */
.dropdown-menu {
width: 190px;
}
.dropdown-menu .bot {
width: 80px;
height: 80px;
margin-top: 8%;
margin-left: 30%;
margin-bottom: 5%;
}
.dropdown-menu a {
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 16px;
color: rgba(0, 0, 0, 0.35);
text-align: left;
width: 90%;
margin-left: 5%;
}
.profile-title {
margin-top: 2%;
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 10px;
line-height: 14px;
text-align: center;
color: rgba(0, 0, 0, 0.6);
}
.dropdown-menu a {
background-color: #4bc2c5;
}
/* password */
#Password .modal-content {
width: 80%;
background: #ffffff;
border-radius: 10px;
padding-bottom: 5%;
}
.form-group {
width: 80%;
margin-left: 10%;
margin-bottom: 2%;
}
#Password .form-group .btn {
margin-left: 10%;
width: 80%;
}
.form-group .btn-info {
background: #4bc2c5 !important;
border-radius: 5px;
margin-top: 5%;
}
.form-group .btn-outline-danger {
border-radius: 5px;
margin-top: 5%;
}
#tittle-password {
margin-top: 5%;
margin-bottom: 10%;
}
#Password input,
.tittle {
font-family: Nunito Sans;
font-style: normal;
font-weight: normal;
font-size: 11px;
line-height: 15px;
color: #ababab;
}
.tittle #a-item {
color: #4bc2c5;
}
/* Delete */
#DeleteAccount .modal-content {
transform: translate(0%, 100%);
}
@media screen and (max-width: 767px) {
#section1 {
width: 90%;
padding: 3em 1em 3em 1em;
}
#section1 img {
float: left;
}
}
@media screen and (max-width: 1024px) {
#vector6,
#vector7 {
display: none;
}
}
| 0.250821 | 0.092524 |
@font-face {
font-family: "Raleway-Regular";
src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
font-family: "Raleway-Bold";
src: url("../fonts/Raleway-Bold.ttf");
}
.contacto{
display: flex;
}
.llamanos{
width: 175px;
height: 45px;
border: 1px solid #dbd2d275;
float: right;
font-family: "Mystery Quest", cursive;
font-size: 100%;
color: #fff;
}
.transparent{
width: 125px;
height: 45px;
background-color: #e6e6e600;
color: #fff;
text-align: center;
}
.logo{
width:180px;
height: 40px;
margin-left:55px;
}
.hero{
background-color: #e6e6e600;
font-size: 15px;
a{
background: #fff;
&:hover{
background:lighten( #000, 10%);
}
}
}
.nav-link a {color:#fff !important; }
.top-bar{
border: 1px solid #dbd2d275;
}
.top-bar, .top-bar ul {
background-color: #e6e6e600;
}
.hero{
width: 100%;
height: 750px;
background: url('../images/home.png') no-repeat 50% 50% fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.marina{
width: 60%;
height: 620px;
margin-top: -200px;
margin-left: 160px;
}
.hero .caption{
margin-top : 140px;
margin-left : auto;
margin-right: auto;
}
.caption{
width: 550px;
height: 500px;
margin-left : auto;
margin-right: auto;
}
.caption a{
margin-left: 200px;
margin-right: auto;
}
.hero .caption h2.title{
font-family: "Raleway-Regular", Helvetica, Arial, sans-serif;
font-size: 42px;
color: #fff;
/*text-transform: uppercase;*/
line-height: 40px;
}
h1.sub_title{
font-family: "Raleway-Bold", Helvetica, Arial, sans-serif;
font-size: 84px;
color: #fff;
margin-top: 10px;
}
.tour{
margin-top: 70px;
p{
color: #212529;
font-family: "Raleway-Regular", Helvetica, Arial, sans-serif;
}
.tour h2{
font-family: "Raleway-Bold", Helvetica, Arial, sans-serif;
color: #848484;
}
.pesca{
margin-top:40px;
margin-left: 25px;
}
.pesca h2{
color:#fff;
}
.pesca img{
margin: 0 auto 0 auto;
width: 97%;
height: 550px
}
.experiencia{
margin-left: auto;
margin-top:-250px;
width: 35%;
height: 35%
}
.pesca .experiencia h2,p{
color: #fff;
}
.buceo{
float: right;
}
.btn{
border: 1px solid #19CEC5;
}
.btn {color: #19CEC5; font-weight: bold;}
.btn-p {border: 1px solid #fff; color: #fff; font-weight: bold;}
.btn-grad {color:#fff; background-image: linear-gradient(to right, #00C6D6 0%, #31D7B6 51%, #00C6D6 100%)}
.btn-grad:hover { background-position: right center; color:#fff; }
.footer{
margin-top: 40px;
}
.footer h5{
color: #19CEC5;
}
.logo_footer img{
display: block;
width: 420px;
height: 430px;
}
}
|
assets/css/style1.css
|
@font-face {
font-family: "Raleway-Regular";
src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
font-family: "Raleway-Bold";
src: url("../fonts/Raleway-Bold.ttf");
}
.contacto{
display: flex;
}
.llamanos{
width: 175px;
height: 45px;
border: 1px solid #dbd2d275;
float: right;
font-family: "Mystery Quest", cursive;
font-size: 100%;
color: #fff;
}
.transparent{
width: 125px;
height: 45px;
background-color: #e6e6e600;
color: #fff;
text-align: center;
}
.logo{
width:180px;
height: 40px;
margin-left:55px;
}
.hero{
background-color: #e6e6e600;
font-size: 15px;
a{
background: #fff;
&:hover{
background:lighten( #000, 10%);
}
}
}
.nav-link a {color:#fff !important; }
.top-bar{
border: 1px solid #dbd2d275;
}
.top-bar, .top-bar ul {
background-color: #e6e6e600;
}
.hero{
width: 100%;
height: 750px;
background: url('../images/home.png') no-repeat 50% 50% fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.marina{
width: 60%;
height: 620px;
margin-top: -200px;
margin-left: 160px;
}
.hero .caption{
margin-top : 140px;
margin-left : auto;
margin-right: auto;
}
.caption{
width: 550px;
height: 500px;
margin-left : auto;
margin-right: auto;
}
.caption a{
margin-left: 200px;
margin-right: auto;
}
.hero .caption h2.title{
font-family: "Raleway-Regular", Helvetica, Arial, sans-serif;
font-size: 42px;
color: #fff;
/*text-transform: uppercase;*/
line-height: 40px;
}
h1.sub_title{
font-family: "Raleway-Bold", Helvetica, Arial, sans-serif;
font-size: 84px;
color: #fff;
margin-top: 10px;
}
.tour{
margin-top: 70px;
p{
color: #212529;
font-family: "Raleway-Regular", Helvetica, Arial, sans-serif;
}
.tour h2{
font-family: "Raleway-Bold", Helvetica, Arial, sans-serif;
color: #848484;
}
.pesca{
margin-top:40px;
margin-left: 25px;
}
.pesca h2{
color:#fff;
}
.pesca img{
margin: 0 auto 0 auto;
width: 97%;
height: 550px
}
.experiencia{
margin-left: auto;
margin-top:-250px;
width: 35%;
height: 35%
}
.pesca .experiencia h2,p{
color: #fff;
}
.buceo{
float: right;
}
.btn{
border: 1px solid #19CEC5;
}
.btn {color: #19CEC5; font-weight: bold;}
.btn-p {border: 1px solid #fff; color: #fff; font-weight: bold;}
.btn-grad {color:#fff; background-image: linear-gradient(to right, #00C6D6 0%, #31D7B6 51%, #00C6D6 100%)}
.btn-grad:hover { background-position: right center; color:#fff; }
.footer{
margin-top: 40px;
}
.footer h5{
color: #19CEC5;
}
.logo_footer img{
display: block;
width: 420px;
height: 430px;
}
}
| 0.215846 | 0.041891 |
@font-face {
font-family: 'gooddollar';
src: url('../../../../assets/fonts/gooddollar.eot');
src: url('../../../../assets/fonts/gooddollar.eot#iefix') format('embedded-opentype'),
url('../../../../assets/fonts/gooddollar.woff2') format('woff2'),
url('../../../../assets/fonts/gooddollar.woff') format('woff'),
url('../../../../assets/fonts/gooddollar.ttf') format('truetype'),
url('../../../../assets/fonts/gooddollar.svg#gooddollar') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'gooddollar';
src: url('../font/gooddollar.svg?59398881#gooddollar') format('svg');
}
}
*/
[class^='icon-']:before,
[class*=' icon-']:before {
font-family: 'gooddollar';
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: 0.2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-arrow-down:before {
content: '\e800';
} /* '' */
.icon-arrow-up:before {
content: '\e801';
} /* '' */
.icon-arrow-back:before {
content: '\e802';
} /* '' */
.icon-lock:before {
content: '\e803';
} /* '' */
.icon-arrow-up-circle:before {
content: '\e804';
} /* '' */
.icon-exchange:before {
content: '\e805';
} /* '' */
.icon-cake:before {
content: '\e806';
} /* '' */
.icon-camera:before {
content: '\e807';
} /* '' */
.icon-ios-share:before {
content: '\e808';
} /* '' */
.icon-profile:before {
content: '\e809';
} /* '' */
.icon-bonus-reward:before {
content: '\e80a';
} /* '' */
.icon-paste:before {
content: '\e80b';
} /* '' */
.icon-close:before {
content: '\e80c';
} /* '' */
.icon-convert:before {
content: '\e80d';
} /* '' */
.icon-backspace:before {
content: '\e80e';
} /* '' */
.icon-edit:before {
content: '\e80f';
} /* '' */
.icon-envelope:before {
content: '\e810';
} /* '' */
.icon-claim-filled-old:before {
content: '\e812';
} /* '' */
.icon-claim-circle:before {
content: '\e813';
} /* '' */
.icon-donate-filled:before {
content: '\e814';
} /* '' */
.icon-clock-filled:before {
content: '\e815';
} /* '' */
.icon-donate-circle:before {
content: '\e816';
} /* '' */
.icon-clock:before {
content: '\e817';
} /* '' */
.icon-receive-filled:before {
content: '\e818';
} /* '' */
.icon-receive-circle:before {
content: '\e819';
} /* '' */
.icon-send-circle:before {
content: '\e81a';
} /* '' */
.icon-send-filled:before {
content: '\e81b';
} /* '' */
.icon-social-good-filled:before {
content: '\e81c';
} /* '' */
.icon-social-good-circle:before {
content: '\e81d';
} /* '' */
.icon-system-filled:before {
content: '\e81e';
} /* '' */
.icon-system:before {
content: '\e81f';
} /* '' */
.icon-feedback:before {
content: '\e820';
} /* '' */
.icon-filter:before {
content: '\e821';
} /* '' */
.icon-add:before {
content: '\e822';
} /* '' */
.icon-gooddollar:before {
content: '\e823';
} /* '' */
.icon-hidden:before {
content: '\e824';
} /* '' */
.icon-gooddollar-small:before {
content: '\e825';
} /* '' */
.icon-home:before {
content: '\e826';
} /* '' */
.icon-invite:before {
content: '\e827';
} /* '' */
.icon-location:before {
content: '\e828';
} /* '' */
.icon-notifications:before {
content: '\e829';
} /* '' */
.icon-phone:before {
content: '\e82a';
} /* '' */
.icon-privacy:before {
content: '\e82b';
} /* '' */
.icon-rewards-1:before {
content: '\e82c';
} /* '' */
.icon-qrcode:before {
content: '\e82d';
} /* '' */
.icon-search:before {
content: '\e82e';
} /* '' */
.icon-settings:before {
content: '\e82f';
} /* '' */
.icon-shown:before {
content: '\e830';
} /* '' */
.icon-success:before {
content: '\e831';
} /* '' */
.icon-trash:before {
content: '\e832';
} /* '' */
.icon-faq:before {
content: '\e833';
} /* '' */
.icon-username:before {
content: '\e834';
} /* '' */
.icon-receive:before {
content: '\e835';
} /* '' */
.icon-send:before {
content: '\e836';
} /* '' */
.icon-claim-filled:before {
content: '\e837';
} /* '' */
.icon-export-wallet:before {
content: '\e838';
} /* '' */
.icon-info:before {
content: '\e839';
} /* '' */
.icon-wallet:before {
content: '\e83c';
} /* '' */
.icon-goodmarket:before {
content: '\e83d';
} /* '' */
.icon-support2:before {
content: '\e83e';
} /* '' */
.icon-invite2:before {
content: '\e83f';
} /* '' */
.icon-statistics:before {
content: '\e841';
} /* '' */
.icon-send-to-address:before {
content: '\e842';
} /* '' */
.icon-receive-to-address:before {
content: '\e843';
} /* '' */
.icon-copy:before {
content: '\e844';
} /* '' */
.icon-logout:before {
content: '\e845';
} /* '' */
.icon-twitter-1:before {
content: '\e846';
} /* '' */
.icon-link:before {
content: '\e847';
} /* '' */
.icon-whatsapp-1:before {
content: '\e848';
} /* '' */
.icon-telegram:before {
content: '\e849';
} /* '' */
.icon-facebook-1:before {
content: '\e84a';
} /* '' */
.icon-check:before {
content: '\e84b';
} /* '' */
.icon-rewards:before {
content: '\e84d';
} /* '' */
.icon-time:before {
content: '\e852';
} /* '' */
.icon-privacy-policy:before {
content: '\e883';
} /* '' */
.icon-terms-of-use:before {
content: '\e89f';
} /* '' */
|
src/components/common/view/Icon/index.css
|
@font-face {
font-family: 'gooddollar';
src: url('../../../../assets/fonts/gooddollar.eot');
src: url('../../../../assets/fonts/gooddollar.eot#iefix') format('embedded-opentype'),
url('../../../../assets/fonts/gooddollar.woff2') format('woff2'),
url('../../../../assets/fonts/gooddollar.woff') format('woff'),
url('../../../../assets/fonts/gooddollar.ttf') format('truetype'),
url('../../../../assets/fonts/gooddollar.svg#gooddollar') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'gooddollar';
src: url('../font/gooddollar.svg?59398881#gooddollar') format('svg');
}
}
*/
[class^='icon-']:before,
[class*=' icon-']:before {
font-family: 'gooddollar';
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: 0.2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-arrow-down:before {
content: '\e800';
} /* '' */
.icon-arrow-up:before {
content: '\e801';
} /* '' */
.icon-arrow-back:before {
content: '\e802';
} /* '' */
.icon-lock:before {
content: '\e803';
} /* '' */
.icon-arrow-up-circle:before {
content: '\e804';
} /* '' */
.icon-exchange:before {
content: '\e805';
} /* '' */
.icon-cake:before {
content: '\e806';
} /* '' */
.icon-camera:before {
content: '\e807';
} /* '' */
.icon-ios-share:before {
content: '\e808';
} /* '' */
.icon-profile:before {
content: '\e809';
} /* '' */
.icon-bonus-reward:before {
content: '\e80a';
} /* '' */
.icon-paste:before {
content: '\e80b';
} /* '' */
.icon-close:before {
content: '\e80c';
} /* '' */
.icon-convert:before {
content: '\e80d';
} /* '' */
.icon-backspace:before {
content: '\e80e';
} /* '' */
.icon-edit:before {
content: '\e80f';
} /* '' */
.icon-envelope:before {
content: '\e810';
} /* '' */
.icon-claim-filled-old:before {
content: '\e812';
} /* '' */
.icon-claim-circle:before {
content: '\e813';
} /* '' */
.icon-donate-filled:before {
content: '\e814';
} /* '' */
.icon-clock-filled:before {
content: '\e815';
} /* '' */
.icon-donate-circle:before {
content: '\e816';
} /* '' */
.icon-clock:before {
content: '\e817';
} /* '' */
.icon-receive-filled:before {
content: '\e818';
} /* '' */
.icon-receive-circle:before {
content: '\e819';
} /* '' */
.icon-send-circle:before {
content: '\e81a';
} /* '' */
.icon-send-filled:before {
content: '\e81b';
} /* '' */
.icon-social-good-filled:before {
content: '\e81c';
} /* '' */
.icon-social-good-circle:before {
content: '\e81d';
} /* '' */
.icon-system-filled:before {
content: '\e81e';
} /* '' */
.icon-system:before {
content: '\e81f';
} /* '' */
.icon-feedback:before {
content: '\e820';
} /* '' */
.icon-filter:before {
content: '\e821';
} /* '' */
.icon-add:before {
content: '\e822';
} /* '' */
.icon-gooddollar:before {
content: '\e823';
} /* '' */
.icon-hidden:before {
content: '\e824';
} /* '' */
.icon-gooddollar-small:before {
content: '\e825';
} /* '' */
.icon-home:before {
content: '\e826';
} /* '' */
.icon-invite:before {
content: '\e827';
} /* '' */
.icon-location:before {
content: '\e828';
} /* '' */
.icon-notifications:before {
content: '\e829';
} /* '' */
.icon-phone:before {
content: '\e82a';
} /* '' */
.icon-privacy:before {
content: '\e82b';
} /* '' */
.icon-rewards-1:before {
content: '\e82c';
} /* '' */
.icon-qrcode:before {
content: '\e82d';
} /* '' */
.icon-search:before {
content: '\e82e';
} /* '' */
.icon-settings:before {
content: '\e82f';
} /* '' */
.icon-shown:before {
content: '\e830';
} /* '' */
.icon-success:before {
content: '\e831';
} /* '' */
.icon-trash:before {
content: '\e832';
} /* '' */
.icon-faq:before {
content: '\e833';
} /* '' */
.icon-username:before {
content: '\e834';
} /* '' */
.icon-receive:before {
content: '\e835';
} /* '' */
.icon-send:before {
content: '\e836';
} /* '' */
.icon-claim-filled:before {
content: '\e837';
} /* '' */
.icon-export-wallet:before {
content: '\e838';
} /* '' */
.icon-info:before {
content: '\e839';
} /* '' */
.icon-wallet:before {
content: '\e83c';
} /* '' */
.icon-goodmarket:before {
content: '\e83d';
} /* '' */
.icon-support2:before {
content: '\e83e';
} /* '' */
.icon-invite2:before {
content: '\e83f';
} /* '' */
.icon-statistics:before {
content: '\e841';
} /* '' */
.icon-send-to-address:before {
content: '\e842';
} /* '' */
.icon-receive-to-address:before {
content: '\e843';
} /* '' */
.icon-copy:before {
content: '\e844';
} /* '' */
.icon-logout:before {
content: '\e845';
} /* '' */
.icon-twitter-1:before {
content: '\e846';
} /* '' */
.icon-link:before {
content: '\e847';
} /* '' */
.icon-whatsapp-1:before {
content: '\e848';
} /* '' */
.icon-telegram:before {
content: '\e849';
} /* '' */
.icon-facebook-1:before {
content: '\e84a';
} /* '' */
.icon-check:before {
content: '\e84b';
} /* '' */
.icon-rewards:before {
content: '\e84d';
} /* '' */
.icon-time:before {
content: '\e852';
} /* '' */
.icon-privacy-policy:before {
content: '\e883';
} /* '' */
.icon-terms-of-use:before {
content: '\e89f';
} /* '' */
| 0.329931 | 0.06256 |
.shadow-v1 { box-shadow: 0 0 20px rgba(0, 0, 0, .2); }
.shadow-v2 { box-shadow: 0 0 5px #ddd; }
.shadow-v3 { box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .09); }
*, *:before, *:after {
box-sizing: inherit;
}
@keyframes shift-rightwards {
0% { transform: translateX(0%) }
40% { transform: translateX(40%) }
60% { transform: translateX(60%) }
100% { transform: translateX(100%) }
}
.LoadingBar {
position: absolute;
display: none;
bottom: 27px;
left: 0;
width: 50%;
height: 2px;
z-index: 999;
background-color: #03a87c;
transform: translateX(100%);
}
.LoadingBar.active {
display: block;
animation: shift-rightwards 0.7s ease-in-out infinite;
animation-timing-function: ease-out;
animation-delay: 0.7s;
}
h1, h2, h3, h4, h5, h6, dl, dd, ol, ul, menu, figure, blockquote, p, pre, form {
margin: 0;
}
ul ol {
padding: 0;
list-style: none;
}
img svg {
vertical-align: middle;
}
.toolbar {
position: relative;
padding: 1px 18px 17px;
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
margin: 0 -20px 20px;
font-size: 18px;
}
.floating-toolbar {
padding-top: 15px;
padding-bottom: 10px;
display: flex;
align-items: center;
width: auto;
font-size: 18px;
position: absolute;
/*padding: 8px 7px 6px;*/
z-index: 1;
margin-top: -6px;
top: -10000px;
left: -10000px;
opacity: 0;
background-color: #333;
border-radius: 4px;
transition: opacity 0.5s ease-in-out;
}
.floating-toolbar svg {
fill: rgba(255, 255, 255, .89);
}
.floating-toolbar .active svg {
fill: mediumaquamarine;
}
.tooltip-menu {
position: absolute;
word-wrap: normal;
white-space: nowrap;
}
.tooltip-menu button {
cursor: pointer;
text-align: center;
font-size: 36px;
background: transparent;
vertical-align: bottom;
white-space: nowrap;
padding: 0;
margin: 0 15px 0 0;
width: 32px;
height: 32px;
line-height: 32px;
outline: none;
border: 1px solid rgb(153, 153, 153);
border-radius: 50%;
}
.tooltip-menu svg {
position: relative;
fill: rgb(153, 153, 153);
}
.tooltip-menu div button {
transform: scale(0);
/*transition: transform 100ms ease 0s, border-color 100ms ease 0s, color 100ms ease 0s;*/
transition: none;
}
.tooltip-menu.is-scaled div button {
transform: scale(1) !important;
transition: transform 250ms ease 0s, border-color 100ms ease 0s, color 100ms ease 0s !important;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width:0;
}
.editor {
/*font-size: 21px;*/
font-size: 16px;
font-weight: 400;
box-sizing: border-box;
}
@media (min-width: 1080px) {
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
/*margin-top: 2.75em;*/
margin-top: 1.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 1079.98px ) and (min-width: 904px){
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
margin-top: 2.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 903.98px ) and (min-width: 728px){
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
/*margin-top: 2.75em;*/
margin-top: 1.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 727.98px ) and (min-width: 552px){
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
margin-top: 40px;
}
.editor blockquote {
margin-top: 1.42em;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
@media (max-width: 727.98px ) and (min-width: 552px){
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
/*margin-top: 40px;*/
margin-top: 20px;
}
.editor blockquote {
margin-top: 1.42em;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
@media (max-width: 551.98px ) {
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
margin-top: 40px;
}
.editor blockquote {
/*margin-top: 1.42em;*/
margin-top: 15px;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
.editor p {
color: rgb(41, 41, 41);
letter-spacing: -0.003em;
margin-bottom: -0.46em;
word-break: break-word;
line-height: 1.58;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5 {
color: rgba(41, 41, 41, 1);
font-weight: 600;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
line-height: 1.2;
}
.editor h1 {
font-size: 2.1em;
margin-bottom: -0.28em;
letter-spacing: -0.022em;
}
.editor h2 {
font-size: 1.7em;
margin-bottom: -0.31em;
letter-spacing: -0.022em;
}
.editor h3 {
font-size: 1.4em;
}
.editor h4 {
font-size: 1.3em;
}
.editor h5 {
font-size: 1.2em;
}
.editor pre {
padding: 20px;
background: rgba(242, 242, 242, 1);
overflow-x: auto;
}
.editor pre code {
padding: 0;
margin-bottom: -0.09em;
margin-top: -0.09em;
white-space: pre-wrap;
line-height: 1.3;
letter-spacing: -0.022em;
color: rgba(41, 41, 41, 1);
font-family: Menlo, Monaco, "Courier New", Courier, monospace;
/*letter-spacing: -0.022em;*/
font-size: 16px;
/*color: rgba(41, 41, 41, 1);*/
}
.editor blockquote {
color: rgba(117, 117, 117, 1);
padding-left: 30px;
font-size: 30px;
letter-spacing: -0.014em;
line-height: 44px;
font-weight: 400;
margin-bottom: -0.46em;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
.editor ul {
}
.editor ol {
}
.editor li {
padding-left: 0;
margin-left: 30px;
margin-bottom: -0.46em;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
letter-spacing: -0.003em;
line-height: 1.58;
color: rgba(41, 41, 41, 1);
font-weight: 400;
}
.editor ul li {
list-style-type: disc;
}
.editor ol li {
list-style-type: decimal;
}
.editor .check-list {
font-size: 21px;
}
.editor .check-list-btn {
/*font-size: 20px;*/
}
.editor .check-list-item {
padding-left: 0;
margin-left: 30px;
/*margin-bottom: -0.46em;*/
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
/*letter-spacing: -0.003em;*/
line-height: 1.58;
color: rgba(41, 41, 41, 1);
font-weight: 400;
}
/*.editor .divider {*/
/* padding-top: 2.5em;*/
/* padding-bottom: 2.5em;*/
/*}*/
/*.editor hr {*/
/* margin-left: auto;*/
/* margin-right: auto;*/
/* width: 240px;*/
/* height: 60px;*/
/* max-width: 100%;*/
/* border: none;*/
/* border-top: 1px solid #d3d3d3;*/
/*}*/
.editor hr {
margin-top: 50px;
margin-bottom: 15px;
border: none;
color: rgb(117, 117, 117);
text-align: center;
}
.editor hr:before {
font-size: 27px;
line-height: 1;
font-weight: 400;
font-style: italic;
/*text-indent: 0.6em;*/
/*letter-spacing: 0.6em;*/
letter-spacing: 18px;
content: "...";
}
.editor a {
/*background-position: 0 1.05em;*/
background-position: 0 calc(1em + 1px);
background-size: 1px 1px;
/*background-image: linear-gradient(to right,rgba(41, 41, 41, 1) 100%,rgba(41, 41, 41, 1) 0);*/
background-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="1" y2="1" stroke="rgba(41, 41, 41, 1)" /></svg>');
background-repeat: repeat-x;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
/*.editor figure {*/
/* clear: both;*/
/* margin-left: auto;*/
/* margin-right: auto;*/
/*}*/
/*.editor figure .img-wrapper {*/
/* position: relative;*/
/* background-color: rgba(242, 242, 242, 1);*/
/*}*/
/*.editor figure .placeholder-parent {*/
/* padding-bottom: 81.07714701601165%;*/
/* height: 0;*/
/*}*/
/*.editor figure .placeholder {*/
/* position: absolute;*/
/* left: 0;*/
/* top: 0;*/
/* transition: opacity 100ms 400ms;*/
/* transform: translateZ(0);*/
/* will-change: transform;*/
/* height: 100%;*/
/* opacity: 0;*/
/* overflow: hidden;*/
/* width: 100%;*/
/*}*/
/*.editor figure img {*/
/* height: 100%;*/
/* background: rgba(255, 255, 255, 1);*/
/* transition: opacity 100ms 400ms;*/
/* !*opacity: 0;*!*/
/* width: 100%;*/
/* left: 0;*/
/* top: 0;*/
/* position: absolute;*/
/*}*/
.editor img {
}
.editor figcaption {
text-align: center;
color: #777;
font-size: 1em;
/*transition: opacity 0.2s ease-in;*/
}
.editor figcaption input {
color: #777;
padding: 5px;
font-size: 15px;
width: 100%;
outline: none;
border: none;
text-align: center;
}
.editor code {
font-family: Menlo, Monaco, "Courier New", Courier, monospace;
font-size: 75%;
padding: 2px 4px;
background-color: rgba(242, 242, 242, 1);
}
.editor sup {
}
.editor sub {
}
.editor em, .editor i {
}
.editor s, .editor del {
}
.editor u {
}
.editor strong {
}
|
src/style.css
|
.shadow-v1 { box-shadow: 0 0 20px rgba(0, 0, 0, .2); }
.shadow-v2 { box-shadow: 0 0 5px #ddd; }
.shadow-v3 { box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .09); }
*, *:before, *:after {
box-sizing: inherit;
}
@keyframes shift-rightwards {
0% { transform: translateX(0%) }
40% { transform: translateX(40%) }
60% { transform: translateX(60%) }
100% { transform: translateX(100%) }
}
.LoadingBar {
position: absolute;
display: none;
bottom: 27px;
left: 0;
width: 50%;
height: 2px;
z-index: 999;
background-color: #03a87c;
transform: translateX(100%);
}
.LoadingBar.active {
display: block;
animation: shift-rightwards 0.7s ease-in-out infinite;
animation-timing-function: ease-out;
animation-delay: 0.7s;
}
h1, h2, h3, h4, h5, h6, dl, dd, ol, ul, menu, figure, blockquote, p, pre, form {
margin: 0;
}
ul ol {
padding: 0;
list-style: none;
}
img svg {
vertical-align: middle;
}
.toolbar {
position: relative;
padding: 1px 18px 17px;
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
margin: 0 -20px 20px;
font-size: 18px;
}
.floating-toolbar {
padding-top: 15px;
padding-bottom: 10px;
display: flex;
align-items: center;
width: auto;
font-size: 18px;
position: absolute;
/*padding: 8px 7px 6px;*/
z-index: 1;
margin-top: -6px;
top: -10000px;
left: -10000px;
opacity: 0;
background-color: #333;
border-radius: 4px;
transition: opacity 0.5s ease-in-out;
}
.floating-toolbar svg {
fill: rgba(255, 255, 255, .89);
}
.floating-toolbar .active svg {
fill: mediumaquamarine;
}
.tooltip-menu {
position: absolute;
word-wrap: normal;
white-space: nowrap;
}
.tooltip-menu button {
cursor: pointer;
text-align: center;
font-size: 36px;
background: transparent;
vertical-align: bottom;
white-space: nowrap;
padding: 0;
margin: 0 15px 0 0;
width: 32px;
height: 32px;
line-height: 32px;
outline: none;
border: 1px solid rgb(153, 153, 153);
border-radius: 50%;
}
.tooltip-menu svg {
position: relative;
fill: rgb(153, 153, 153);
}
.tooltip-menu div button {
transform: scale(0);
/*transition: transform 100ms ease 0s, border-color 100ms ease 0s, color 100ms ease 0s;*/
transition: none;
}
.tooltip-menu.is-scaled div button {
transform: scale(1) !important;
transition: transform 250ms ease 0s, border-color 100ms ease 0s, color 100ms ease 0s !important;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width:0;
}
.editor {
/*font-size: 21px;*/
font-size: 16px;
font-weight: 400;
box-sizing: border-box;
}
@media (min-width: 1080px) {
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
/*margin-top: 2.75em;*/
margin-top: 1.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 1079.98px ) and (min-width: 904px){
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
margin-top: 2.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 903.98px ) and (min-width: 728px){
.editor p {
margin-top: 2em;
font-size: 21px;
line-height: 32px;
}
.editor h1 {
margin-top: 1.25em;
font-size: 34px;
}
.editor h2 {
margin-top: 1.72em;
font-size: 26px;
}
.editor pre {
margin-top: 56px;
}
.editor blockquote {
/*margin-top: 2.75em;*/
margin-top: 1.75em;
}
.editor li {
line-height: 32px;
font-size: 21px;
margin-top: 2em;
}
.editor figure {
margin-top: 56px;
}
}
@media (max-width: 727.98px ) and (min-width: 552px){
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
margin-top: 40px;
}
.editor blockquote {
margin-top: 1.42em;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
@media (max-width: 727.98px ) and (min-width: 552px){
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
/*margin-top: 40px;*/
margin-top: 20px;
}
.editor blockquote {
margin-top: 1.42em;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
@media (max-width: 551.98px ) {
.editor p {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor h1 {
margin-top: 0.93em;
font-size: 30px;
}
.editor h2 {
margin-top: 1.23em;
font-size: 24px;
}
.editor pre {
margin-top: 40px;
}
.editor blockquote {
/*margin-top: 1.42em;*/
margin-top: 15px;
}
.editor li {
margin-top: 1.56em;
font-size: 18px;
line-height: 28px;
}
.editor figure {
margin-top: 40px;
}
}
.editor p {
color: rgb(41, 41, 41);
letter-spacing: -0.003em;
margin-bottom: -0.46em;
word-break: break-word;
line-height: 1.58;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5 {
color: rgba(41, 41, 41, 1);
font-weight: 600;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
line-height: 1.2;
}
.editor h1 {
font-size: 2.1em;
margin-bottom: -0.28em;
letter-spacing: -0.022em;
}
.editor h2 {
font-size: 1.7em;
margin-bottom: -0.31em;
letter-spacing: -0.022em;
}
.editor h3 {
font-size: 1.4em;
}
.editor h4 {
font-size: 1.3em;
}
.editor h5 {
font-size: 1.2em;
}
.editor pre {
padding: 20px;
background: rgba(242, 242, 242, 1);
overflow-x: auto;
}
.editor pre code {
padding: 0;
margin-bottom: -0.09em;
margin-top: -0.09em;
white-space: pre-wrap;
line-height: 1.3;
letter-spacing: -0.022em;
color: rgba(41, 41, 41, 1);
font-family: Menlo, Monaco, "Courier New", Courier, monospace;
/*letter-spacing: -0.022em;*/
font-size: 16px;
/*color: rgba(41, 41, 41, 1);*/
}
.editor blockquote {
color: rgba(117, 117, 117, 1);
padding-left: 30px;
font-size: 30px;
letter-spacing: -0.014em;
line-height: 44px;
font-weight: 400;
margin-bottom: -0.46em;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
.editor ul {
}
.editor ol {
}
.editor li {
padding-left: 0;
margin-left: 30px;
margin-bottom: -0.46em;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
letter-spacing: -0.003em;
line-height: 1.58;
color: rgba(41, 41, 41, 1);
font-weight: 400;
}
.editor ul li {
list-style-type: disc;
}
.editor ol li {
list-style-type: decimal;
}
.editor .check-list {
font-size: 21px;
}
.editor .check-list-btn {
/*font-size: 20px;*/
}
.editor .check-list-item {
padding-left: 0;
margin-left: 30px;
/*margin-bottom: -0.46em;*/
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
/*letter-spacing: -0.003em;*/
line-height: 1.58;
color: rgba(41, 41, 41, 1);
font-weight: 400;
}
/*.editor .divider {*/
/* padding-top: 2.5em;*/
/* padding-bottom: 2.5em;*/
/*}*/
/*.editor hr {*/
/* margin-left: auto;*/
/* margin-right: auto;*/
/* width: 240px;*/
/* height: 60px;*/
/* max-width: 100%;*/
/* border: none;*/
/* border-top: 1px solid #d3d3d3;*/
/*}*/
.editor hr {
margin-top: 50px;
margin-bottom: 15px;
border: none;
color: rgb(117, 117, 117);
text-align: center;
}
.editor hr:before {
font-size: 27px;
line-height: 1;
font-weight: 400;
font-style: italic;
/*text-indent: 0.6em;*/
/*letter-spacing: 0.6em;*/
letter-spacing: 18px;
content: "...";
}
.editor a {
/*background-position: 0 1.05em;*/
background-position: 0 calc(1em + 1px);
background-size: 1px 1px;
/*background-image: linear-gradient(to right,rgba(41, 41, 41, 1) 100%,rgba(41, 41, 41, 1) 0);*/
background-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="1" y2="1" stroke="rgba(41, 41, 41, 1)" /></svg>');
background-repeat: repeat-x;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
/*.editor figure {*/
/* clear: both;*/
/* margin-left: auto;*/
/* margin-right: auto;*/
/*}*/
/*.editor figure .img-wrapper {*/
/* position: relative;*/
/* background-color: rgba(242, 242, 242, 1);*/
/*}*/
/*.editor figure .placeholder-parent {*/
/* padding-bottom: 81.07714701601165%;*/
/* height: 0;*/
/*}*/
/*.editor figure .placeholder {*/
/* position: absolute;*/
/* left: 0;*/
/* top: 0;*/
/* transition: opacity 100ms 400ms;*/
/* transform: translateZ(0);*/
/* will-change: transform;*/
/* height: 100%;*/
/* opacity: 0;*/
/* overflow: hidden;*/
/* width: 100%;*/
/*}*/
/*.editor figure img {*/
/* height: 100%;*/
/* background: rgba(255, 255, 255, 1);*/
/* transition: opacity 100ms 400ms;*/
/* !*opacity: 0;*!*/
/* width: 100%;*/
/* left: 0;*/
/* top: 0;*/
/* position: absolute;*/
/*}*/
.editor img {
}
.editor figcaption {
text-align: center;
color: #777;
font-size: 1em;
/*transition: opacity 0.2s ease-in;*/
}
.editor figcaption input {
color: #777;
padding: 5px;
font-size: 15px;
width: 100%;
outline: none;
border: none;
text-align: center;
}
.editor code {
font-family: Menlo, Monaco, "Courier New", Courier, monospace;
font-size: 75%;
padding: 2px 4px;
background-color: rgba(242, 242, 242, 1);
}
.editor sup {
}
.editor sub {
}
.editor em, .editor i {
}
.editor s, .editor del {
}
.editor u {
}
.editor strong {
}
| 0.498291 | 0.125333 |
.text-xs-left
{
text-align: left;
}
.text-xs-right
{
text-align: right;
}
.text-xs-center
{
text-align: center;
}
.text-xs-justify
{
text-align: justify;
}
.center-xs-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-xs-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-xs-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px)
{
.text-sm-left
{
text-align: left;
}
.text-sm-right
{
text-align: right;
}
.text-sm-center
{
text-align: center;
}
.text-sm-justify
{
text-align: justify;
}
.center-sm-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-sm-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-sm-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px)
{
.text-md-left
{
text-align: left;
}
.text-md-right
{
text-align: right;
}
.text-md-center
{
text-align: center;
}
.text-md-justify
{
text-align: justify;
}
.center-md-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-md-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-md-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px)
{
.text-lg-left
{
text-align: left;
}
.text-lg-right
{
text-align: right;
}
.text-lg-center
{
text-align: center;
}
.text-lg-justify
{
text-align: justify;
}
.center-lg-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-lg-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-lg-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/*--------- Additional Responsive Style End -----------*/
|
css/sidebar.css
|
.text-xs-left
{
text-align: left;
}
.text-xs-right
{
text-align: right;
}
.text-xs-center
{
text-align: center;
}
.text-xs-justify
{
text-align: justify;
}
.center-xs-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-xs-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-xs-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px)
{
.text-sm-left
{
text-align: left;
}
.text-sm-right
{
text-align: right;
}
.text-sm-center
{
text-align: center;
}
.text-sm-justify
{
text-align: justify;
}
.center-sm-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-sm-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-sm-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px)
{
.text-md-left
{
text-align: left;
}
.text-md-right
{
text-align: right;
}
.text-md-center
{
text-align: center;
}
.text-md-justify
{
text-align: justify;
}
.center-md-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-md-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-md-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px)
{
.text-lg-left
{
text-align: left;
}
.text-lg-right
{
text-align: right;
}
.text-lg-center
{
text-align: center;
}
.text-lg-justify
{
text-align: justify;
}
.center-lg-block
{
display: block;
margin-right: auto;
margin-left: auto;
}
.left-lg-block
{
display: block;
margin-right: auto;
margin-left: inherit;
}
.right-lg-block
{
display: block;
margin-right: inherit;
margin-left: auto;
}
}
/*--------- Additional Responsive Style End -----------*/
| 0.332419 | 0.036839 |
#carousel-example-generic{
margin-top: -2px;
}
.carousel-inner img {
width: 100%;
max-height: 360px
}
.carousel-control {
width: 0;
}
.carousel-control.left,
.carousel-control.right {
opacity: 1;
filter: alpha(opacity=100);
background-image: none;
background-repeat: no-repeat;
text-shadow: none;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
position: absolute;
top: 45%;
z-index: 5;
display: inline-block;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
left: 20px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
right: 20px;
}
.carousel-control.left span:hover,
.carousel-control.right span:hover {
opacity: .5;
}
/* Carousel Header Styles */
.header-text {
position: absolute;
top: 20%;
left: 1.8%;
right: auto;
width: 96.66666666666666%;
color: #fff;
}
.header-text h2 {
font-size: 40px;
}
.header-text h2 span {
/* background-color: #2980b9; */
padding: 10px;
}
.header-text h3 span {
padding: 15px;
}
.btn-min-block {
min-width: 170px;
line-height: 26px;
}
.btn-theme {
color: #fff;
background-color: transparent;
border: 2px solid #fff;
margin-right: 15px;
}
.btn-theme:hover {
color: #000;
background-color: #fff;
border-color: #fff;
}
@media only screen and (max-width: 1170px) {
.lg-below {
margin-top: -30px;
display: block;
}
}
@media only screen and (max-width: 970px) {
.md-below {
margin-top: -40px;
display: block;
}
}
.container{
margin-top: 50px;
margin-bottom: 80px;
}
#center {
text-align: center;
}
.gal ul { padding:0; max-width:500px; margin: auto}
/* li { display:inline;} */
.gal li {
display: inline;
}
.tn {
margin:3px 3px;
border: 1px solid #eee;
box-shadow:#555 1px 1px 8px 1px;
cursor: pointer;
}
.gal h2{
margin-bottom: 20px;
}
.gal {
-webkit-column-count: 3;
/* Chrome, Safari, Opera */
-moz-column-count: 3;
/* Firefox */
column-count: 3;
margin-right: 5px;
}
.gal > ul>li>a img {
width: 100%;
padding: 7px;
}
@media (max-width: 500px) {
.gal {
-webkit-column-count: 1;
/* Chrome, Safari, Opera */
-moz-column-count: 1;
/* Firefox */
column-count: 1;
}
}
|
Front-end/Javascript-Angular/Course_work/Snap_It/src/app/components/home/home.component.css
|
#carousel-example-generic{
margin-top: -2px;
}
.carousel-inner img {
width: 100%;
max-height: 360px
}
.carousel-control {
width: 0;
}
.carousel-control.left,
.carousel-control.right {
opacity: 1;
filter: alpha(opacity=100);
background-image: none;
background-repeat: no-repeat;
text-shadow: none;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
position: absolute;
top: 45%;
z-index: 5;
display: inline-block;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
left: 20px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
right: 20px;
}
.carousel-control.left span:hover,
.carousel-control.right span:hover {
opacity: .5;
}
/* Carousel Header Styles */
.header-text {
position: absolute;
top: 20%;
left: 1.8%;
right: auto;
width: 96.66666666666666%;
color: #fff;
}
.header-text h2 {
font-size: 40px;
}
.header-text h2 span {
/* background-color: #2980b9; */
padding: 10px;
}
.header-text h3 span {
padding: 15px;
}
.btn-min-block {
min-width: 170px;
line-height: 26px;
}
.btn-theme {
color: #fff;
background-color: transparent;
border: 2px solid #fff;
margin-right: 15px;
}
.btn-theme:hover {
color: #000;
background-color: #fff;
border-color: #fff;
}
@media only screen and (max-width: 1170px) {
.lg-below {
margin-top: -30px;
display: block;
}
}
@media only screen and (max-width: 970px) {
.md-below {
margin-top: -40px;
display: block;
}
}
.container{
margin-top: 50px;
margin-bottom: 80px;
}
#center {
text-align: center;
}
.gal ul { padding:0; max-width:500px; margin: auto}
/* li { display:inline;} */
.gal li {
display: inline;
}
.tn {
margin:3px 3px;
border: 1px solid #eee;
box-shadow:#555 1px 1px 8px 1px;
cursor: pointer;
}
.gal h2{
margin-bottom: 20px;
}
.gal {
-webkit-column-count: 3;
/* Chrome, Safari, Opera */
-moz-column-count: 3;
/* Firefox */
column-count: 3;
margin-right: 5px;
}
.gal > ul>li>a img {
width: 100%;
padding: 7px;
}
@media (max-width: 500px) {
.gal {
-webkit-column-count: 1;
/* Chrome, Safari, Opera */
-moz-column-count: 1;
/* Firefox */
column-count: 1;
}
}
| 0.272508 | 0.063077 |
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:376px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:647px;
}
#u0_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:648px;
}
#u1 {
position:absolute;
left:2px;
top:316px;
width:372px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:59px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:60px;
}
#u3 {
position:absolute;
left:2px;
top:20px;
width:372px;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:38px;
top:450px;
width:300px;
height:10px;
}
#u4_start {
position:absolute;
left:-4px;
top:-5px;
width:14px;
height:20px;
}
#u4_end {
position:absolute;
left:291px;
top:-5px;
width:14px;
height:20px;
}
#u4_line {
position:absolute;
left:0px;
top:5px;
width:300px;
height:1px;
}
#u5 {
position:absolute;
left:20px;
top:20px;
width:30px;
height:20px;
}
#u5_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:21px;
}
#u6 {
position:absolute;
left:2px;
top:2px;
width:26px;
visibility:hidden;
word-wrap:break-word;
}
#u7 {
position:absolute;
left:38px;
top:100px;
width:302px;
height:230px;
}
#u7_input {
position:absolute;
left:0px;
top:0px;
width:302px;
height:230px;
font-family:'Arial Regular', 'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
text-align:left;
}
#u8 {
position:absolute;
left:38px;
top:75px;
width:143px;
height:19px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u8_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:20px;
}
#u9 {
position:absolute;
left:0px;
top:0px;
width:143px;
white-space:nowrap;
}
#u10 {
position:absolute;
left:38px;
top:345px;
width:143px;
height:19px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u10_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:20px;
}
#u11 {
position:absolute;
left:0px;
top:0px;
width:143px;
white-space:nowrap;
}
#u12 {
position:absolute;
left:38px;
top:370px;
width:300px;
height:30px;
}
#u12_input {
position:absolute;
left:0px;
top:0px;
width:300px;
height:30px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u13 {
position:absolute;
left:38px;
top:407px;
width:300px;
height:30px;
}
#u13_input {
position:absolute;
left:0px;
top:0px;
width:300px;
height:30px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u14 {
position:absolute;
left:54px;
top:260px;
width:268px;
height:19px;
font-size:16px;
}
#u14_img {
position:absolute;
left:0px;
top:0px;
width:269px;
height:20px;
}
#u15 {
position:absolute;
left:0px;
top:0px;
width:268px;
white-space:nowrap;
}
#u16 {
position:absolute;
left:88px;
top:120px;
width:200px;
height:100px;
}
#u16_img {
position:absolute;
left:0px;
top:0px;
width:201px;
height:101px;
}
#u17 {
position:absolute;
left:2px;
top:42px;
width:196px;
visibility:hidden;
word-wrap:break-word;
}
#u18 {
position:absolute;
left:172px;
top:590px;
width:35px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u18_img {
position:absolute;
left:0px;
top:0px;
width:36px;
height:36px;
}
#u19 {
position:absolute;
left:2px;
top:6px;
width:31px;
word-wrap:break-word;
}
#u20 {
position:absolute;
left:28px;
top:563px;
width:320px;
height:57px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u20_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:58px;
}
#u21 {
position:absolute;
left:2px;
top:19px;
width:316px;
word-wrap:break-word;
}
|
docs/Frinkles/files/feedback/styles.css
|
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:376px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:647px;
}
#u0_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:648px;
}
#u1 {
position:absolute;
left:2px;
top:316px;
width:372px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
position:absolute;
left:0px;
top:0px;
width:376px;
height:59px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u2_img {
position:absolute;
left:0px;
top:0px;
width:377px;
height:60px;
}
#u3 {
position:absolute;
left:2px;
top:20px;
width:372px;
word-wrap:break-word;
}
#u4 {
position:absolute;
left:38px;
top:450px;
width:300px;
height:10px;
}
#u4_start {
position:absolute;
left:-4px;
top:-5px;
width:14px;
height:20px;
}
#u4_end {
position:absolute;
left:291px;
top:-5px;
width:14px;
height:20px;
}
#u4_line {
position:absolute;
left:0px;
top:5px;
width:300px;
height:1px;
}
#u5 {
position:absolute;
left:20px;
top:20px;
width:30px;
height:20px;
}
#u5_img {
position:absolute;
left:0px;
top:0px;
width:31px;
height:21px;
}
#u6 {
position:absolute;
left:2px;
top:2px;
width:26px;
visibility:hidden;
word-wrap:break-word;
}
#u7 {
position:absolute;
left:38px;
top:100px;
width:302px;
height:230px;
}
#u7_input {
position:absolute;
left:0px;
top:0px;
width:302px;
height:230px;
font-family:'Arial Regular', 'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
text-align:left;
}
#u8 {
position:absolute;
left:38px;
top:75px;
width:143px;
height:19px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u8_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:20px;
}
#u9 {
position:absolute;
left:0px;
top:0px;
width:143px;
white-space:nowrap;
}
#u10 {
position:absolute;
left:38px;
top:345px;
width:143px;
height:19px;
font-family:'Helvetica Medium', 'Helvetica';
font-weight:400;
font-style:normal;
font-size:16px;
}
#u10_img {
position:absolute;
left:0px;
top:0px;
width:144px;
height:20px;
}
#u11 {
position:absolute;
left:0px;
top:0px;
width:143px;
white-space:nowrap;
}
#u12 {
position:absolute;
left:38px;
top:370px;
width:300px;
height:30px;
}
#u12_input {
position:absolute;
left:0px;
top:0px;
width:300px;
height:30px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u13 {
position:absolute;
left:38px;
top:407px;
width:300px;
height:30px;
}
#u13_input {
position:absolute;
left:0px;
top:0px;
width:300px;
height:30px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#CCCCCC;
text-align:left;
}
#u14 {
position:absolute;
left:54px;
top:260px;
width:268px;
height:19px;
font-size:16px;
}
#u14_img {
position:absolute;
left:0px;
top:0px;
width:269px;
height:20px;
}
#u15 {
position:absolute;
left:0px;
top:0px;
width:268px;
white-space:nowrap;
}
#u16 {
position:absolute;
left:88px;
top:120px;
width:200px;
height:100px;
}
#u16_img {
position:absolute;
left:0px;
top:0px;
width:201px;
height:101px;
}
#u17 {
position:absolute;
left:2px;
top:42px;
width:196px;
visibility:hidden;
word-wrap:break-word;
}
#u18 {
position:absolute;
left:172px;
top:590px;
width:35px;
height:35px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
font-size:18px;
}
#u18_img {
position:absolute;
left:0px;
top:0px;
width:36px;
height:36px;
}
#u19 {
position:absolute;
left:2px;
top:6px;
width:31px;
word-wrap:break-word;
}
#u20 {
position:absolute;
left:28px;
top:563px;
width:320px;
height:57px;
font-family:'Helvetica Bold', 'Helvetica';
font-weight:700;
font-style:normal;
font-size:16px;
}
#u20_img {
position:absolute;
left:0px;
top:0px;
width:321px;
height:58px;
}
#u21 {
position:absolute;
left:2px;
top:19px;
width:316px;
word-wrap:break-word;
}
| 0.430866 | 0.054049 |
*{
background: #051D3B;
}
.container{
margin: 2% 3%;
}
.cabecalho__nav{
display: flex;
align-items: center;
justify-content: space-between;
}
.divisao_input{
width: 752px;
display: flex;
justify-self: unset;
justify-content: center;
}
.cabecalho__nav_pesquisa{
width: 752px;
height: 56px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.16);
border: none;
}
.cabecalho__nav_pesquisa::placeholder {
color: rgba(255, 255, 255, 0.64);
font-size: 1em;
font-family: 'Inter', sans-serif;
}
.cabecalho__nav_pesquisa:hover{
background: rgba(255, 255, 255, 0.24);
}
.lupa{
border: none;
}
.lupa_img{
display: none;
background: transparent;
}
.cabecalho__nav_foto:hover{
background: rgba(255, 255, 255, 0.08);
}
#menu__botao{
width: 40px;
height: 30px;
margin: 10px 0 10px 20px;
cursor: pointer;
display: none;
}
#menu__botao:hover{
background: rgba(80, 129, 251, 0,08);
}
#menu__botao:active{
background: rgba(80, 129, 251, 0,16);
}
.bar{
height: 5px;
width: 100%;
background-color: white;
border-radius: 5px;
transition: 0.3s ease;
}
#bar1{
transform: translateY(-4px);
}
#bar3{
transform: translateY(4px);
}
.menu__hamburguer{
display: none;
border-radius: 8px;
width: auto;
min-width: 48px;
height: auto;
}
.lista__menu_hamburguer{
display: none;
background: #2D415B;
width: 200px;
height: 500px;
border-radius: 8px;
padding: 1rem;
position: absolute;
top: 15%;
right: 1px;
box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.24);
transition: right 200ms linear;
z-index:2;
}
.change{
display: block;
}
.change .bar{
background: white;
}
.change #bar1{
transform: translateY(4px) rotate(-45deg);
}
.change #bar2{
opacity: 0;
}
.change #bar3{
transform: translateY(-6px) rotate(45deg);
}
.change_hamburguer{
transform: translate(-60px, -30px);
}
.fundo{
background: #2D415B;
}
.cliente__foto{
position: absolute;
background: transparent;
margin-top: 10%;
}
.cliente__foto:hover{
background: rgba(255, 255, 255, 0.08)
}
.menu{
position: absolute;
height: 18px;
left: 32px;
top: 128px;
}
.titulo_menu{
color: white;
font-family: 'Inter', sans-serif;
font-size: 0.75em;
text-transform: uppercase;
font-style: normal;
font-weight: normal;
line-height: 18px;
letter-spacing: 0.4em;
}
.itens__lista {
display: flex;
align-items: center;
background:transparent;
}
.img__editor{
margin-right: 16px;
margin-top: 16px;
background: rgba(80, 129, 251, 0.16);
border-radius: 16px;
}
.img__comunidade{
margin-right: 16px;
margin-top: 16px;
background: rgba(80, 129, 251, 1);
border-radius: 16px;
}
.img__editor:hover {
background: rgba(80, 129, 251, 0.64);
}
.img__editor:active{
background: rgba(80, 129, 251, 1);
}
.editor_texto {
color: rgba(255, 255, 255, 0.56);
text-decoration: none;
font-size: 1em;
margin-top: 16px;
}
.comunidade {
text-decoration: none;
font-size: 1em;
margin-top: 16px;
color: white;
}
.editor_texto:hover{
color: rgba(255, 255, 255, 0.86);
}
.editor_texto:active{
color: white;
}
@media (max-width: 768px) {
.cabecalho__nav{
width: 100%;
}
.cabecalho__nav_foto{
display: none;
}
.cabecalho__nav_pesquisa{
width: 431px;
}
#menu__botao{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: center;
}
.menu{
display: none;
}
.menu__hamburguer{
display: block;
}
}
@media (max-width: 375px){
.divisao_input{
justify-content: flex-end;
}
.cabecalho__nav_pesquisa{
display: none;
width: 110px;
}
.lupa_img{
display: flex;
}
#menu__botao{
align-content: center;
}
}
|
Alura_challenge/css/cabecalho_pag2.css
|
*{
background: #051D3B;
}
.container{
margin: 2% 3%;
}
.cabecalho__nav{
display: flex;
align-items: center;
justify-content: space-between;
}
.divisao_input{
width: 752px;
display: flex;
justify-self: unset;
justify-content: center;
}
.cabecalho__nav_pesquisa{
width: 752px;
height: 56px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.16);
border: none;
}
.cabecalho__nav_pesquisa::placeholder {
color: rgba(255, 255, 255, 0.64);
font-size: 1em;
font-family: 'Inter', sans-serif;
}
.cabecalho__nav_pesquisa:hover{
background: rgba(255, 255, 255, 0.24);
}
.lupa{
border: none;
}
.lupa_img{
display: none;
background: transparent;
}
.cabecalho__nav_foto:hover{
background: rgba(255, 255, 255, 0.08);
}
#menu__botao{
width: 40px;
height: 30px;
margin: 10px 0 10px 20px;
cursor: pointer;
display: none;
}
#menu__botao:hover{
background: rgba(80, 129, 251, 0,08);
}
#menu__botao:active{
background: rgba(80, 129, 251, 0,16);
}
.bar{
height: 5px;
width: 100%;
background-color: white;
border-radius: 5px;
transition: 0.3s ease;
}
#bar1{
transform: translateY(-4px);
}
#bar3{
transform: translateY(4px);
}
.menu__hamburguer{
display: none;
border-radius: 8px;
width: auto;
min-width: 48px;
height: auto;
}
.lista__menu_hamburguer{
display: none;
background: #2D415B;
width: 200px;
height: 500px;
border-radius: 8px;
padding: 1rem;
position: absolute;
top: 15%;
right: 1px;
box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.24);
transition: right 200ms linear;
z-index:2;
}
.change{
display: block;
}
.change .bar{
background: white;
}
.change #bar1{
transform: translateY(4px) rotate(-45deg);
}
.change #bar2{
opacity: 0;
}
.change #bar3{
transform: translateY(-6px) rotate(45deg);
}
.change_hamburguer{
transform: translate(-60px, -30px);
}
.fundo{
background: #2D415B;
}
.cliente__foto{
position: absolute;
background: transparent;
margin-top: 10%;
}
.cliente__foto:hover{
background: rgba(255, 255, 255, 0.08)
}
.menu{
position: absolute;
height: 18px;
left: 32px;
top: 128px;
}
.titulo_menu{
color: white;
font-family: 'Inter', sans-serif;
font-size: 0.75em;
text-transform: uppercase;
font-style: normal;
font-weight: normal;
line-height: 18px;
letter-spacing: 0.4em;
}
.itens__lista {
display: flex;
align-items: center;
background:transparent;
}
.img__editor{
margin-right: 16px;
margin-top: 16px;
background: rgba(80, 129, 251, 0.16);
border-radius: 16px;
}
.img__comunidade{
margin-right: 16px;
margin-top: 16px;
background: rgba(80, 129, 251, 1);
border-radius: 16px;
}
.img__editor:hover {
background: rgba(80, 129, 251, 0.64);
}
.img__editor:active{
background: rgba(80, 129, 251, 1);
}
.editor_texto {
color: rgba(255, 255, 255, 0.56);
text-decoration: none;
font-size: 1em;
margin-top: 16px;
}
.comunidade {
text-decoration: none;
font-size: 1em;
margin-top: 16px;
color: white;
}
.editor_texto:hover{
color: rgba(255, 255, 255, 0.86);
}
.editor_texto:active{
color: white;
}
@media (max-width: 768px) {
.cabecalho__nav{
width: 100%;
}
.cabecalho__nav_foto{
display: none;
}
.cabecalho__nav_pesquisa{
width: 431px;
}
#menu__botao{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: center;
}
.menu{
display: none;
}
.menu__hamburguer{
display: block;
}
}
@media (max-width: 375px){
.divisao_input{
justify-content: flex-end;
}
.cabecalho__nav_pesquisa{
display: none;
width: 110px;
}
.lupa_img{
display: flex;
}
#menu__botao{
align-content: center;
}
}
| 0.271735 | 0.091544 |
* {
box-sizing: border-box;
}
body {
font-family: 'DM Sans', sans-serif;
padding: 0;
margin: 0;
background-color: #fff;
color: #04172A;
}
main {
padding: 0 20px;
}
.secondaryColor {
color: #FB3F5C;
}
.welcomeSection {
margin-top: 110px;
}
.welcome,
.welcomeSection p {
margin: 5px 0;
}
.investmentSection {
width:100%;
margin-top: 30px;
margin-bottom: 50px;
}
.investmentSectionBlock {
width:100%;
display: flex;
justify-content:space-between;
flex-wrap: wrap;
}
.investment {
width:100%;
padding: 10px;
background: rgba(4, 23, 42, 0.05);
margin-left: 0%;
margin-bottom: 10px;
}
.investment span {
font-size: .7em;
font-weight: lighter;
margin-right: 5px;
}
.row{
display:flex;
justify-content:space-between;
}
.table {
margin-top: 50px;
}
.table header {
font-size: 1.2em;
}
.tableSection {
overflow: scroll;
margin-top: 10px;
margin-bottom: 50px;
}
.tableSection::-webkit-scrollbar {
display: none;
}
table {
font-size: .8em;
width: 100%;
border-collapse: collapse;
}
tr {
border-bottom: 2px solid rgba(4, 23, 42, 0.1);
}
thead {
font-weight: bold;
background: #FB3F5C;
color: #fff;
border-bottom: 0px;
}
td {
padding: 10px 10px;
}
tbody td {
padding: 15px 5px;
}
@media screen and (min-width: 768px) {
main {
padding: 0 50px;
}
.investmentSection {
margin-top: 40px;
margin-bottom: 50px;
}
.investmentSectionBlock {
width: 100%;
}
.investment {
width: 170px;
padding: 20px;
margin-left: 0%;
margin-bottom: 20px;
}
.tableSection {
overflow: auto;
}
thead td {
padding: 20px;
}
td {
padding: 10px 10px;
}
tbody td {
padding: 25px 15px;
}
tr {
border-bottom: 2px solid rgba(4, 23, 42, 0.1);
}
}
@media screen and (min-width: 992px) {
main {
padding: 0 7%;
}
.welcome {
font-size: 2em;
}
.investmentSection {
flex-direction: initial;
}
.investmentSectionBlock{
width: 100%;
height: 0;
margin-bottom:350px;
}
.investment {
max-width:100%;
width:170px;
padding: 20px 15px;
margin-bottom: 10px;
}
.table {
margin-top: 50px;
}
}
@media(min-width:1430px){
.investment {
width:350px;
padding: 20px 15px;
margin-bottom: 10px;
}
}
@media(min-width:1250px){
.investment {
max-width:100%;
width:210px;
padding: 20px 15px;
margin-bottom: 10px;
}
}
|
public/css/custom-css/investors-total-list-of-investments.css
|
* {
box-sizing: border-box;
}
body {
font-family: 'DM Sans', sans-serif;
padding: 0;
margin: 0;
background-color: #fff;
color: #04172A;
}
main {
padding: 0 20px;
}
.secondaryColor {
color: #FB3F5C;
}
.welcomeSection {
margin-top: 110px;
}
.welcome,
.welcomeSection p {
margin: 5px 0;
}
.investmentSection {
width:100%;
margin-top: 30px;
margin-bottom: 50px;
}
.investmentSectionBlock {
width:100%;
display: flex;
justify-content:space-between;
flex-wrap: wrap;
}
.investment {
width:100%;
padding: 10px;
background: rgba(4, 23, 42, 0.05);
margin-left: 0%;
margin-bottom: 10px;
}
.investment span {
font-size: .7em;
font-weight: lighter;
margin-right: 5px;
}
.row{
display:flex;
justify-content:space-between;
}
.table {
margin-top: 50px;
}
.table header {
font-size: 1.2em;
}
.tableSection {
overflow: scroll;
margin-top: 10px;
margin-bottom: 50px;
}
.tableSection::-webkit-scrollbar {
display: none;
}
table {
font-size: .8em;
width: 100%;
border-collapse: collapse;
}
tr {
border-bottom: 2px solid rgba(4, 23, 42, 0.1);
}
thead {
font-weight: bold;
background: #FB3F5C;
color: #fff;
border-bottom: 0px;
}
td {
padding: 10px 10px;
}
tbody td {
padding: 15px 5px;
}
@media screen and (min-width: 768px) {
main {
padding: 0 50px;
}
.investmentSection {
margin-top: 40px;
margin-bottom: 50px;
}
.investmentSectionBlock {
width: 100%;
}
.investment {
width: 170px;
padding: 20px;
margin-left: 0%;
margin-bottom: 20px;
}
.tableSection {
overflow: auto;
}
thead td {
padding: 20px;
}
td {
padding: 10px 10px;
}
tbody td {
padding: 25px 15px;
}
tr {
border-bottom: 2px solid rgba(4, 23, 42, 0.1);
}
}
@media screen and (min-width: 992px) {
main {
padding: 0 7%;
}
.welcome {
font-size: 2em;
}
.investmentSection {
flex-direction: initial;
}
.investmentSectionBlock{
width: 100%;
height: 0;
margin-bottom:350px;
}
.investment {
max-width:100%;
width:170px;
padding: 20px 15px;
margin-bottom: 10px;
}
.table {
margin-top: 50px;
}
}
@media(min-width:1430px){
.investment {
width:350px;
padding: 20px 15px;
margin-bottom: 10px;
}
}
@media(min-width:1250px){
.investment {
max-width:100%;
width:210px;
padding: 20px 15px;
margin-bottom: 10px;
}
}
| 0.378229 | 0.161089 |
@media screen and (max-width: 420px) {
/*--------------------Index--------------------*/
#container-apoyos-index h1 {
font-size: 2em;
}
#container-apoyos-index h2 {
font-size: 1.2em;
}
#container-secciones h1,
#container-valores h1,
.container-redes h1,
.container-sindrome-index h1 {
font-size: 1.7em;
}
}
@media screen and (max-width: 731px) {
/*-----------------------Junta directiva---------------------*/
.diagrama {
display: none;
}
.lista {
display: contents;
}
.texto-lista {
color: white;
padding: 5px;
border-radius: 20px;
text-align: center;
font-family: "Fredoka One", cursive;
}
.texto-lista-principal {
font-size: 2em;
font-weight: 600;
}
.lista-nombre {
font-size: 1.4em;
text-align: center;
}
.lista ul {
text-align: left;
display: inline-block;
}
}
@media screen and (max-width: 768) {
/*---------------------Index----------------------*/
#img-secciones {
margin-top: 0px;
}
}
@media screen and (max-width: 767px) {
/*---------------------Index----------------------*/
.galeria-princial img {
height: 200px;
}
.galeria-princial h2 {
font-size: 1.2em;
margin-bottom: 0px;
}
.link-menu {
text-align: left;
}
#aPedagogica .title {
font-size: 2.2em;
}
#img-secciones {
margin-top: 20px;
}
#img-valores {
margin-top: 20px;
}
.img-valores2 {
margin-left: -5%;
}
.container-redes img {
height: auto;
}
.container-redes h1 br {
display: none;
}
.container-sindrome-index img {
width: 100%;
}
/*---------------------Terminos correctos----------------------*/
.container-comunicar h1,
.container-significado h1,
.container-tiposD h1 {
font-size: 1em;
}
.container-comunicar hr,
.container-comunicar div,
.container-significado .row {
width: 100%;
}
.container-comunicar .row,
.container-significado .row {
margin-left: 0;
}
.container-enfoques h1 {
font-size: 1.3em;
}
.container-terminos h1 {
font-size: 2em;
}
.container-origen h1 {
font-size: 2em;
}
.container-origen h1 br {
display: none;
}
.container-terminos h2 {
font-size: 1.5em;
margin-top: 1px;
}
.container-enfoques p,
.container-terminos .row {
width: 100%;
margin-left: 0%;
}
.container-origen p {
width: 100%;
margin-left: 0%;
}
.container-diversidad .row > div:nth-of-type(1) h1 {
float: none;
}
.container-diversidad .row > div:nth-of-type(2) p {
width: 100%;
}
.container-diversidad .row > div:nth-of-type(1) h1 {
font-size: 2em;
}
.container-tiposD h2 {
margin-left: 0%;
width: 100%;
font-size: 1.2em;
}
.container-tiposD p {
width: 100%;
margin-left: 0%;
}
#linea-tiposD {
display: none;
}
.container-enfoques .row h2 {
font-size: 1.5em;
}
/*-------------------------------Leyes y derechos---------------------------------*/
.container-leyes h1 {
font-size: 2em;
}
.container-leyes h2 {
font-size: 1em;
}
.container-derechos h1 {
font-size: 1.2em;
}
.container-derechos p,
.container-derechos div > hr {
width: 100%;
margin-left: 0;
}
.container-leyes hr {
width: 95%;
}
/*-----------------------Voluntariado-----------------*/
.container-voluntariado h1,
.container-experiencias h1 {
font-size: 2em;
}
.container-voluntariado h2 {
font-size: 1.4em;
}
.container-experiencias > div:nth-child(2n) > hr,
.container-experiencias > div:nth-child(2n + 1) > hr {
height: 4px;
width: 100%;
}
}
@media screen and (max-width: 992px) {
/*---------------------Menu-----------------------*/
.logo-menu {
height: 50px;
margin-bottom: 10px;
}
.menu-contactanos {
margin-top: 0px;
}
.logo-menu img {
width: 180px;
margin-left: -30px;
}
.menu-admin {
background: #0ca3c2;
height: auto;
padding: 0 20px 20px 0px;
}
.sup {
display: none;
}
.linea-menu-responsive {
border-top: 1px white dotted;
width: 90%;
margin-top: 15px;
display: none;
}
.linea-menu {
display: none;
}
.link-menu {
background-color: #0a7e96;
padding: 20px;
margin-left: 10px;
border: 1px dotted #fbbc35;
}
.link-menu br {
display: none;
}
.espaciado br:nth-child(1) {
display: inline;
}
.espaciado2 br {
display: inline;
}
.color-botton1 {
color: white;
}
.color-botton2 {
color: white;
}
/*---------------------Index----------------------*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
height: 35px;
width: 35px;
}
.carousel-control-next-icon:after {
content: ">";
font-size: 2em;
color: white;
}
.carousel-control-prev-icon:after {
content: "<";
font-size: 2em;
color: white;
}
.carousel-indicators li {
width: 10px;
height: 10px;
border: 1px solid white;
}
.carousel-indicators .active {
width: 10px;
height: 10px;
border: 1px solid white;
}
.linea-asociacion {
width: 100%;
}
.container-asociacion {
width: 100%;
margin-left: 0%;
}
#container-apoyos-index br {
display: none;
}
/*-----------------------Junta directiva---------------------*/
.container-junta h1 {
font-size: 3em;
}
/*-------------------------Constitucion Legal------------------*/
.info-legal br {
display: none;
}
.info-legal p {
font-size: 1em;
}
/*------------------Asociaciones de apoyo-----------------------*/
.asociaciones h1 {
font-size: 3em;
}
}
@media screen and (max-width: 1024px) {
/*------------------Menu----------------*/
.logo-menu {
height: 50px;
margin-bottom: 5px;
}
.logo-menu img {
width: 210px;
height: 50px;
margin-left: -30px;
}
}
@media screen and (max-width: 1200px) {
/*---------------------Index----------------------*/
.sindrome2 #index-text3,
.sindrome2 #index-text4,
.sindrome1 #index-text1,
.sindrome1 #index-text2 {
font-size: 2em;
-webkit-text-stroke: 1px white;
}
/*--------------------Menu------------------*/
.link-menu {
font-size: 0.9em;
margin-top: 5px;
}
}
|
public/css/Responsive-Bk.css
|
@media screen and (max-width: 420px) {
/*--------------------Index--------------------*/
#container-apoyos-index h1 {
font-size: 2em;
}
#container-apoyos-index h2 {
font-size: 1.2em;
}
#container-secciones h1,
#container-valores h1,
.container-redes h1,
.container-sindrome-index h1 {
font-size: 1.7em;
}
}
@media screen and (max-width: 731px) {
/*-----------------------Junta directiva---------------------*/
.diagrama {
display: none;
}
.lista {
display: contents;
}
.texto-lista {
color: white;
padding: 5px;
border-radius: 20px;
text-align: center;
font-family: "Fredoka One", cursive;
}
.texto-lista-principal {
font-size: 2em;
font-weight: 600;
}
.lista-nombre {
font-size: 1.4em;
text-align: center;
}
.lista ul {
text-align: left;
display: inline-block;
}
}
@media screen and (max-width: 768) {
/*---------------------Index----------------------*/
#img-secciones {
margin-top: 0px;
}
}
@media screen and (max-width: 767px) {
/*---------------------Index----------------------*/
.galeria-princial img {
height: 200px;
}
.galeria-princial h2 {
font-size: 1.2em;
margin-bottom: 0px;
}
.link-menu {
text-align: left;
}
#aPedagogica .title {
font-size: 2.2em;
}
#img-secciones {
margin-top: 20px;
}
#img-valores {
margin-top: 20px;
}
.img-valores2 {
margin-left: -5%;
}
.container-redes img {
height: auto;
}
.container-redes h1 br {
display: none;
}
.container-sindrome-index img {
width: 100%;
}
/*---------------------Terminos correctos----------------------*/
.container-comunicar h1,
.container-significado h1,
.container-tiposD h1 {
font-size: 1em;
}
.container-comunicar hr,
.container-comunicar div,
.container-significado .row {
width: 100%;
}
.container-comunicar .row,
.container-significado .row {
margin-left: 0;
}
.container-enfoques h1 {
font-size: 1.3em;
}
.container-terminos h1 {
font-size: 2em;
}
.container-origen h1 {
font-size: 2em;
}
.container-origen h1 br {
display: none;
}
.container-terminos h2 {
font-size: 1.5em;
margin-top: 1px;
}
.container-enfoques p,
.container-terminos .row {
width: 100%;
margin-left: 0%;
}
.container-origen p {
width: 100%;
margin-left: 0%;
}
.container-diversidad .row > div:nth-of-type(1) h1 {
float: none;
}
.container-diversidad .row > div:nth-of-type(2) p {
width: 100%;
}
.container-diversidad .row > div:nth-of-type(1) h1 {
font-size: 2em;
}
.container-tiposD h2 {
margin-left: 0%;
width: 100%;
font-size: 1.2em;
}
.container-tiposD p {
width: 100%;
margin-left: 0%;
}
#linea-tiposD {
display: none;
}
.container-enfoques .row h2 {
font-size: 1.5em;
}
/*-------------------------------Leyes y derechos---------------------------------*/
.container-leyes h1 {
font-size: 2em;
}
.container-leyes h2 {
font-size: 1em;
}
.container-derechos h1 {
font-size: 1.2em;
}
.container-derechos p,
.container-derechos div > hr {
width: 100%;
margin-left: 0;
}
.container-leyes hr {
width: 95%;
}
/*-----------------------Voluntariado-----------------*/
.container-voluntariado h1,
.container-experiencias h1 {
font-size: 2em;
}
.container-voluntariado h2 {
font-size: 1.4em;
}
.container-experiencias > div:nth-child(2n) > hr,
.container-experiencias > div:nth-child(2n + 1) > hr {
height: 4px;
width: 100%;
}
}
@media screen and (max-width: 992px) {
/*---------------------Menu-----------------------*/
.logo-menu {
height: 50px;
margin-bottom: 10px;
}
.menu-contactanos {
margin-top: 0px;
}
.logo-menu img {
width: 180px;
margin-left: -30px;
}
.menu-admin {
background: #0ca3c2;
height: auto;
padding: 0 20px 20px 0px;
}
.sup {
display: none;
}
.linea-menu-responsive {
border-top: 1px white dotted;
width: 90%;
margin-top: 15px;
display: none;
}
.linea-menu {
display: none;
}
.link-menu {
background-color: #0a7e96;
padding: 20px;
margin-left: 10px;
border: 1px dotted #fbbc35;
}
.link-menu br {
display: none;
}
.espaciado br:nth-child(1) {
display: inline;
}
.espaciado2 br {
display: inline;
}
.color-botton1 {
color: white;
}
.color-botton2 {
color: white;
}
/*---------------------Index----------------------*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
height: 35px;
width: 35px;
}
.carousel-control-next-icon:after {
content: ">";
font-size: 2em;
color: white;
}
.carousel-control-prev-icon:after {
content: "<";
font-size: 2em;
color: white;
}
.carousel-indicators li {
width: 10px;
height: 10px;
border: 1px solid white;
}
.carousel-indicators .active {
width: 10px;
height: 10px;
border: 1px solid white;
}
.linea-asociacion {
width: 100%;
}
.container-asociacion {
width: 100%;
margin-left: 0%;
}
#container-apoyos-index br {
display: none;
}
/*-----------------------Junta directiva---------------------*/
.container-junta h1 {
font-size: 3em;
}
/*-------------------------Constitucion Legal------------------*/
.info-legal br {
display: none;
}
.info-legal p {
font-size: 1em;
}
/*------------------Asociaciones de apoyo-----------------------*/
.asociaciones h1 {
font-size: 3em;
}
}
@media screen and (max-width: 1024px) {
/*------------------Menu----------------*/
.logo-menu {
height: 50px;
margin-bottom: 5px;
}
.logo-menu img {
width: 210px;
height: 50px;
margin-left: -30px;
}
}
@media screen and (max-width: 1200px) {
/*---------------------Index----------------------*/
.sindrome2 #index-text3,
.sindrome2 #index-text4,
.sindrome1 #index-text1,
.sindrome1 #index-text2 {
font-size: 2em;
-webkit-text-stroke: 1px white;
}
/*--------------------Menu------------------*/
.link-menu {
font-size: 0.9em;
margin-top: 5px;
}
}
| 0.336113 | 0.105487 |
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
.menu-bar {
-fx-background-color: #333333;
-fx-font-family: 'Roboto';
-fx-font-weight: 700;
-fx-font-size: 16px;
}
.menu-item {
-fx-background-color: #333333;
-fx-font-family: 'Roboto';
-fx-font-weight: 700;
-fx-font-size: 14px;
}
.context-menu {
-fx-background-color: #333333;
}
.menu-bar .label {
-fx-text-fill: white;
}
.menu:hover {
-fx-background-color: #0585B2;
}
.menu-item:hover {
-fx-background-color: #0585B2;
}
#game-object:hover {
-fx-effect: dropshadow(gaussian, #0585B2, 5, 1.0, 0, 0);
}
.tab-pane {
-fx-tab-min-width: 40px;
-fx-tab-max-height: 20px;
}
.tab-pane .tab {
-fx-background-color: #333333;
-fx-border-radius: 0px;
-fx-padding: 5px;
}
.tab-pane .tab:selected {
-fx-background-color: #0585B2;
}
.tab .tab-label {
-fx-alignment: CENTER;
-fx-text-fill: #D9D9D9;
-fx-font-family: 'Roboto';
-fx-font-size: 15px;
-fx-font-weight: 300;
}
.tab {
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
}
.tab-pane:top *.tab-header-area {
-fx-background-insets: 0, 0 0 1 0;
-fx-padding: 0.416667em 0.166667em 0.0em 0.0em;
}
.tab-pane .tab-header-area .tab-header-background {
-fx-background-color: transparent;
}
.scroll-pane > .viewport {
-fx-background-color: #333333;
}
#side-tabs .tab .tab-label {
/*-fx-alignment: CENTER;*/
/*-fx-font-weight: 900;*/
-fx-font-size: 18px;
}
#panel-tabs .tab .tab-label {
-fx-alignment: CENTER;
-fx-font-family: 'Roboto';
-fx-font-weight: 900;
-fx-font-size: 14px;
}
#side-tabs {
-fx-tab-min-width: 100px;
-fx-tab-min-height: 30px;
-fx-tab-max-height: 30px;
}
#sprite-icon:hover {
-fx-effect: dropshadow(gaussian, #0585B2, 5, 1.0, 0, 0);
}
#pen {
-fx-background-color: rgba(0, 0, 0, 0.2);
}
.radio-button {
-fx-text-fill: white;
-fx-font-size: 20px;
}
.radio-button .radio {
-fx-border-width: 1px;
-fx-border-color: #000;
-fx-background-color: white;
-fx-border-radius: 15px;
-fx-padding: 4px;
}
.radio-button .dot {
-fx-background-radius: 15px;
-fx-padding: 8px;
-fx-mark-color: #0585B2;
}
.scroll-bar .increment-button {
visibility: hidden;
}
.scroll-bar .decrement-button {
visibility: hidden;
}
.scroll-bar .thumb {
-fx-background-color: #595959;
}
.scroll-bar .track-background {
-fx-background-color: #333333;
}
.scroll-bar .track {
visibility: hidden;
}
|
src/resources/styles/game-editor.css
|
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
.menu-bar {
-fx-background-color: #333333;
-fx-font-family: 'Roboto';
-fx-font-weight: 700;
-fx-font-size: 16px;
}
.menu-item {
-fx-background-color: #333333;
-fx-font-family: 'Roboto';
-fx-font-weight: 700;
-fx-font-size: 14px;
}
.context-menu {
-fx-background-color: #333333;
}
.menu-bar .label {
-fx-text-fill: white;
}
.menu:hover {
-fx-background-color: #0585B2;
}
.menu-item:hover {
-fx-background-color: #0585B2;
}
#game-object:hover {
-fx-effect: dropshadow(gaussian, #0585B2, 5, 1.0, 0, 0);
}
.tab-pane {
-fx-tab-min-width: 40px;
-fx-tab-max-height: 20px;
}
.tab-pane .tab {
-fx-background-color: #333333;
-fx-border-radius: 0px;
-fx-padding: 5px;
}
.tab-pane .tab:selected {
-fx-background-color: #0585B2;
}
.tab .tab-label {
-fx-alignment: CENTER;
-fx-text-fill: #D9D9D9;
-fx-font-family: 'Roboto';
-fx-font-size: 15px;
-fx-font-weight: 300;
}
.tab {
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
}
.tab-pane:top *.tab-header-area {
-fx-background-insets: 0, 0 0 1 0;
-fx-padding: 0.416667em 0.166667em 0.0em 0.0em;
}
.tab-pane .tab-header-area .tab-header-background {
-fx-background-color: transparent;
}
.scroll-pane > .viewport {
-fx-background-color: #333333;
}
#side-tabs .tab .tab-label {
/*-fx-alignment: CENTER;*/
/*-fx-font-weight: 900;*/
-fx-font-size: 18px;
}
#panel-tabs .tab .tab-label {
-fx-alignment: CENTER;
-fx-font-family: 'Roboto';
-fx-font-weight: 900;
-fx-font-size: 14px;
}
#side-tabs {
-fx-tab-min-width: 100px;
-fx-tab-min-height: 30px;
-fx-tab-max-height: 30px;
}
#sprite-icon:hover {
-fx-effect: dropshadow(gaussian, #0585B2, 5, 1.0, 0, 0);
}
#pen {
-fx-background-color: rgba(0, 0, 0, 0.2);
}
.radio-button {
-fx-text-fill: white;
-fx-font-size: 20px;
}
.radio-button .radio {
-fx-border-width: 1px;
-fx-border-color: #000;
-fx-background-color: white;
-fx-border-radius: 15px;
-fx-padding: 4px;
}
.radio-button .dot {
-fx-background-radius: 15px;
-fx-padding: 8px;
-fx-mark-color: #0585B2;
}
.scroll-bar .increment-button {
visibility: hidden;
}
.scroll-bar .decrement-button {
visibility: hidden;
}
.scroll-bar .thumb {
-fx-background-color: #595959;
}
.scroll-bar .track-background {
-fx-background-color: #333333;
}
.scroll-bar .track {
visibility: hidden;
}
| 0.415729 | 0.08141 |
@font-face {
font-family: "wf_segoe-ui_light";
src: local("Segoe UI Light"),
local("Segoe WP Light"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-light.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-light.ttf') format('truetype');
}
@font-face {
font-family: "wf_segoe-ui_normal";
src: local("Segoe UI"),
local("Segoe WP"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-regular.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-regular.ttf') format('truetype');
}
@font-face {
font-family: "wf_segoe-ui_semibold";
src: local("Segoe UI Semibold"),
local("Segoe WP Semibold"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semibold.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semibold.ttf') format('truetype');
font-weight: bold;
}
@font-face {
font-family: "wf_segoe-ui_semilight";
src: local("Segoe UI Semilight"),
local("Segoe WP Semilight"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semilight.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semilight.ttf') format('truetype');
}
h1{
font-family: wf_segoe-ui_light,Segoe UI Light,Segoe WP Light,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 66px;
color: #fff;
margin-bottom: 26px;
}
h2 {
font-family: wf_segoe-ui_semilight,Segoe UI Semilight,Segoe WP Semilight,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 30px;
color: hsla(0,0%,100%,.8);
letter-spacing: 0;
line-height: 46px;
margin-bottom: 54px;
}
.tombol-register {
background: #fff;
font-family: wf_segoe-ui_semibold,Segoe UI Semibold,Segoe WP Semibold,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 22px;
color: #0078d7;
letter-spacing: 0;
min-width: 200px;
display: inline-block;
padding: 14px 10px 16px;
text-align: center;
-webkit-transition: box-shadow .3s;
transition: box-shadow .3s;
cursor: pointer;
text-decoration: none;
}
.tombol-signin {
background: hsla(0,0%,100%,.22);
font-family: wf_segoe-ui_semibold,Segoe UI Semibold,Segoe WP Semibold,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 22px;
color: #fff;
letter-spacing: 0;
min-width: 200px;
display: inline-block;
padding: 14px 10px 16px;
text-align: center;
-webkit-transition: box-shadow .3s;
transition: box-shadow .3s;
margin-left: 40px;
cursor: pointer;
}
#headerCurve {
width: 100%;
height: 70px;
background-color: #0078d7;
}
.content-header {
text-align: center;
background: #0078d7;
color: white;
}
.content-header .content-title {
padding: 88px 0 210px
}
.section1 {
background-color: #222;
text-align: center;
padding-top: 30px;
margin-top: -8px;
}
@media screen and (min-width: 480px) {
.tombol-signin {
margin-left: 0;
}
}
@media screen and (min-width: 320px) {
.tombol-signin {
margin-left: 0;
}
}
|
public/frontend/style.css
|
@font-face {
font-family: "wf_segoe-ui_light";
src: local("Segoe UI Light"),
local("Segoe WP Light"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-light.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-light.ttf') format('truetype');
}
@font-face {
font-family: "wf_segoe-ui_normal";
src: local("Segoe UI"),
local("Segoe WP"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-regular.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-regular.ttf') format('truetype');
}
@font-face {
font-family: "wf_segoe-ui_semibold";
src: local("Segoe UI Semibold"),
local("Segoe WP Semibold"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semibold.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semibold.ttf') format('truetype');
font-weight: bold;
}
@font-face {
font-family: "wf_segoe-ui_semilight";
src: local("Segoe UI Semilight"),
local("Segoe WP Semilight"),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semilight.woff') format('woff'),
url('https://r4.res.office365.com/owa/prem/16.2080.5.2459088/resources/styles/fonts/segoeui-semilight.ttf') format('truetype');
}
h1{
font-family: wf_segoe-ui_light,Segoe UI Light,Segoe WP Light,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 66px;
color: #fff;
margin-bottom: 26px;
}
h2 {
font-family: wf_segoe-ui_semilight,Segoe UI Semilight,Segoe WP Semilight,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 30px;
color: hsla(0,0%,100%,.8);
letter-spacing: 0;
line-height: 46px;
margin-bottom: 54px;
}
.tombol-register {
background: #fff;
font-family: wf_segoe-ui_semibold,Segoe UI Semibold,Segoe WP Semibold,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 22px;
color: #0078d7;
letter-spacing: 0;
min-width: 200px;
display: inline-block;
padding: 14px 10px 16px;
text-align: center;
-webkit-transition: box-shadow .3s;
transition: box-shadow .3s;
cursor: pointer;
text-decoration: none;
}
.tombol-signin {
background: hsla(0,0%,100%,.22);
font-family: wf_segoe-ui_semibold,Segoe UI Semibold,Segoe WP Semibold,Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
font-size: 22px;
color: #fff;
letter-spacing: 0;
min-width: 200px;
display: inline-block;
padding: 14px 10px 16px;
text-align: center;
-webkit-transition: box-shadow .3s;
transition: box-shadow .3s;
margin-left: 40px;
cursor: pointer;
}
#headerCurve {
width: 100%;
height: 70px;
background-color: #0078d7;
}
.content-header {
text-align: center;
background: #0078d7;
color: white;
}
.content-header .content-title {
padding: 88px 0 210px
}
.section1 {
background-color: #222;
text-align: center;
padding-top: 30px;
margin-top: -8px;
}
@media screen and (min-width: 480px) {
.tombol-signin {
margin-left: 0;
}
}
@media screen and (min-width: 320px) {
.tombol-signin {
margin-left: 0;
}
}
| 0.376623 | 0.247601 |
background image for the first view */
.firstView {
display: flex;
background-color: var(--green);
height: 90vh;
width: 100%;
flex-direction: column;
align-items: center;
background-image: linear-gradient(0deg, #94939386 30%, #bbbbbb88 70%),
url(/assets/images/tacotest6.webp);
background-size: cover;
background-position: center;
justify-content: center;
padding-bottom: 10vh;
padding-top: 10vh;
}
/* Container holding all text-items and the button of the first view */
.introduction {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.pinkBox {
background-color: #dc00be99;
width: 560px;
height: 250px;
display: flex;
padding: 0;
align-items: center;
justify-content: center;
flex-direction: column;
-webkit-animation: 1s ease-out 0.2s 1 slideInFromLeft;
animation: 1s ease-out 0.2s 1 slideInFromLeft;
}
.pinkBox h1 {
color: whitesmoke;
font-size: 85px;
text-shadow: 3px 3px #2f2a2d;
padding-top: 0;
margin-top: 0;
margin-bottom: 0;
padding-bottom: 0;
font-weight: normal;
}
.introduction h2 {
font-family: var(--cursive);
color: #ffffff;
font-weight: bold;
font-size: 60px;
text-shadow: 3px 3px #332d18;
padding-bottom: 0;
margin-bottom: 0;
padding-top: 20px;
margin-top: 0;
-webkit-animation: 1.6s ease-out 0.3s 1 slideInFromLeft;
animation: 1.6s ease-out 0.3s 1 slideInFromLeft;
}
.introduction h3 {
color: #f2cd00;
font-family: var(--cursive);
font-size: 100px;
font-weight: lighter;
text-shadow: 3px 3px #4b3e26;
padding-bottom: 40px;
margin-bottom: 0;
padding-top: 0;
margin-top: 0;
-webkit-animation: 2.2s ease-out 0.4s 1 slideInFromLeft;
animation: 2.2s ease-out 0.4s 1 slideInFromLeft;
}
/* CTA */
.callToAction {
background-color: #dc00be;
border: none;
color: white;
padding: 12px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
font-weight: bold;
border-radius: 6px 6px 6px 6px;
box-shadow: 1.5px 1.5px rgb(65, 30, 62);
font-family: "Truculenta", sans-serif;
text-shadow: 2px 2px rgb(65, 30, 62);
-webkit-animation: 2.8s ease-out 0.5s 1 slideInFromLeft;
animation: 2.8s ease-out 0.5s 1 slideInFromLeft;
}
.callToAction:hover {
cursor: pointer;
border: 3px solid black;
}
.callToAction a {
text-decoration: none;
color: white;
}
/* Responsiveness at > 1150px screen widths */
@media screen and (max-width: 1150px) {
.introduction h1 {
font-size: 90px;
}
.introduction h3 {
font-size: 50px;
}
.introduction h2 {
font-size: 30px;
}
}
/* 768px (Ipad and mobile) */
@media screen and (max-width: 768px) {
.firstView {
background-image: linear-gradient(0deg, #57434386 80%, #a07d7d88 90%),
url(/assets/images/tacomobil.webp);
}
.introduction h1 {
font-size: 40px;
}
.introduction h3 {
font-size: 60px;
}
.introduction h2 {
font-size: 35px;
}
.pinkBox {
background-color: #dc00be99;
width: 340px;
height: 200px;
display: flex;
flex-direction: column;
padding: 0;
justify-content: center;
align-items: center;
}
.callToAction {
font-size: 20px;
}
}
|
dist/hero.css
|
background image for the first view */
.firstView {
display: flex;
background-color: var(--green);
height: 90vh;
width: 100%;
flex-direction: column;
align-items: center;
background-image: linear-gradient(0deg, #94939386 30%, #bbbbbb88 70%),
url(/assets/images/tacotest6.webp);
background-size: cover;
background-position: center;
justify-content: center;
padding-bottom: 10vh;
padding-top: 10vh;
}
/* Container holding all text-items and the button of the first view */
.introduction {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.pinkBox {
background-color: #dc00be99;
width: 560px;
height: 250px;
display: flex;
padding: 0;
align-items: center;
justify-content: center;
flex-direction: column;
-webkit-animation: 1s ease-out 0.2s 1 slideInFromLeft;
animation: 1s ease-out 0.2s 1 slideInFromLeft;
}
.pinkBox h1 {
color: whitesmoke;
font-size: 85px;
text-shadow: 3px 3px #2f2a2d;
padding-top: 0;
margin-top: 0;
margin-bottom: 0;
padding-bottom: 0;
font-weight: normal;
}
.introduction h2 {
font-family: var(--cursive);
color: #ffffff;
font-weight: bold;
font-size: 60px;
text-shadow: 3px 3px #332d18;
padding-bottom: 0;
margin-bottom: 0;
padding-top: 20px;
margin-top: 0;
-webkit-animation: 1.6s ease-out 0.3s 1 slideInFromLeft;
animation: 1.6s ease-out 0.3s 1 slideInFromLeft;
}
.introduction h3 {
color: #f2cd00;
font-family: var(--cursive);
font-size: 100px;
font-weight: lighter;
text-shadow: 3px 3px #4b3e26;
padding-bottom: 40px;
margin-bottom: 0;
padding-top: 0;
margin-top: 0;
-webkit-animation: 2.2s ease-out 0.4s 1 slideInFromLeft;
animation: 2.2s ease-out 0.4s 1 slideInFromLeft;
}
/* CTA */
.callToAction {
background-color: #dc00be;
border: none;
color: white;
padding: 12px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
font-weight: bold;
border-radius: 6px 6px 6px 6px;
box-shadow: 1.5px 1.5px rgb(65, 30, 62);
font-family: "Truculenta", sans-serif;
text-shadow: 2px 2px rgb(65, 30, 62);
-webkit-animation: 2.8s ease-out 0.5s 1 slideInFromLeft;
animation: 2.8s ease-out 0.5s 1 slideInFromLeft;
}
.callToAction:hover {
cursor: pointer;
border: 3px solid black;
}
.callToAction a {
text-decoration: none;
color: white;
}
/* Responsiveness at > 1150px screen widths */
@media screen and (max-width: 1150px) {
.introduction h1 {
font-size: 90px;
}
.introduction h3 {
font-size: 50px;
}
.introduction h2 {
font-size: 30px;
}
}
/* 768px (Ipad and mobile) */
@media screen and (max-width: 768px) {
.firstView {
background-image: linear-gradient(0deg, #57434386 80%, #a07d7d88 90%),
url(/assets/images/tacomobil.webp);
}
.introduction h1 {
font-size: 40px;
}
.introduction h3 {
font-size: 60px;
}
.introduction h2 {
font-size: 35px;
}
.pinkBox {
background-color: #dc00be99;
width: 340px;
height: 200px;
display: flex;
flex-direction: column;
padding: 0;
justify-content: center;
align-items: center;
}
.callToAction {
font-size: 20px;
}
}
| 0.392453 | 0.170543 |
main {
display: flex;
flex-direction: column;
align-items: center;
}
.appbarWrap {
width: 100%;
z-index: 2;
}
.appbar {
margin: auto;
min-height: 80px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.filters {
display: flex;
margin: 15px 10px 15px auto;
}
.dash {
width: 250px;
height: 5px;
border-radius: 20px;
margin-bottom: 10px;
background: rgb(255, 0, 90);
background: linear-gradient(
45deg,
rgba(255, 0, 90, 1) 0%,
rgba(10, 24, 61, 1) 90%
);
}
#hero {
margin-top: 30px;
display: flex;
justify-content: center;
width: 100vw;
}
#heading {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin: 4rem 0 2rem 0;
text-align: center;
}
#title {
display: flex;
font-size: 4rem;
line-height: 4rem;
font-weight: bold;
}
#allCards {
display: flex;
flex-wrap: wrap;
width: 95vw;
margin: 0.5em;
}
.searchIcon {
padding-left: 16px;
padding-right: 16px;
height: 100%;
position: absolute;
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
}
.inputInput {
padding: 8px 8px 8px 0;
box-shadow: inset 2px 2px 5px #d0d0d0, inset -2px -2px 5px #ffffff;
border-radius: 12px;
height: 3em;
border: 1px solid #eeeeee;
padding-left: calc(1em + 32px);
width: 100%;
}
.search {
background-color: rgb(255, 255, 255, 0.2);
border-radius: 15px;
margin-right: 16px;
margin-left: 25px;
position: relative;
width: 228px;
}
.search:hover {
background-color: rgb(255, 255, 255, 0.8);
}
@media (min-width: 380px) {
.appbar {
width: 80vw;
}
}
@media (max-width: 780px) {
.appbar {
justify-content: center;
}
.filters {
display: flex;
margin: 15px auto;
}
}
@media screen and (orientation: portrait) {
#hero {
flex-direction: column;
}
img {
max-width: 100vw;
}
}
@media screen and (min-width: 600px) {
.search {
width: auto;
}
}
@media screen and (min-width: 960px) {
.inputInput {
width: 40ch;
}
}
|
frontend/src/components/broadcast/all_broadcasts/all_broadcasts.css
|
main {
display: flex;
flex-direction: column;
align-items: center;
}
.appbarWrap {
width: 100%;
z-index: 2;
}
.appbar {
margin: auto;
min-height: 80px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.filters {
display: flex;
margin: 15px 10px 15px auto;
}
.dash {
width: 250px;
height: 5px;
border-radius: 20px;
margin-bottom: 10px;
background: rgb(255, 0, 90);
background: linear-gradient(
45deg,
rgba(255, 0, 90, 1) 0%,
rgba(10, 24, 61, 1) 90%
);
}
#hero {
margin-top: 30px;
display: flex;
justify-content: center;
width: 100vw;
}
#heading {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin: 4rem 0 2rem 0;
text-align: center;
}
#title {
display: flex;
font-size: 4rem;
line-height: 4rem;
font-weight: bold;
}
#allCards {
display: flex;
flex-wrap: wrap;
width: 95vw;
margin: 0.5em;
}
.searchIcon {
padding-left: 16px;
padding-right: 16px;
height: 100%;
position: absolute;
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
}
.inputInput {
padding: 8px 8px 8px 0;
box-shadow: inset 2px 2px 5px #d0d0d0, inset -2px -2px 5px #ffffff;
border-radius: 12px;
height: 3em;
border: 1px solid #eeeeee;
padding-left: calc(1em + 32px);
width: 100%;
}
.search {
background-color: rgb(255, 255, 255, 0.2);
border-radius: 15px;
margin-right: 16px;
margin-left: 25px;
position: relative;
width: 228px;
}
.search:hover {
background-color: rgb(255, 255, 255, 0.8);
}
@media (min-width: 380px) {
.appbar {
width: 80vw;
}
}
@media (max-width: 780px) {
.appbar {
justify-content: center;
}
.filters {
display: flex;
margin: 15px auto;
}
}
@media screen and (orientation: portrait) {
#hero {
flex-direction: column;
}
img {
max-width: 100vw;
}
}
@media screen and (min-width: 600px) {
.search {
width: auto;
}
}
@media screen and (min-width: 960px) {
.inputInput {
width: 40ch;
}
}
| 0.5083 | 0.076996 |
GENERAL ELEMENTS
-------------------------------------------------------------- */
/* BODY */
::selection { color:#fff; background-color:#89ce40; }
::-moz-selection { color:#fff; background-color:#89ce40; }
body { font-family:'Source Sans Pro', Arial, Helvetica, sans-serif; background:#fff; color:#99a; font-size:1em; line-height:1.6; }
/* HEADINGS */
h1, h2, h3, h4, h5, h6 { color:#567; line-height:1.2; margin:0 0 20px; }
h1 { font-size:2.5em; }
h2 { font-size:2em; }
h3 { font-size:1.5em; }
h4 { font-size:1.3em; }
h5 { font-size:1.2em; }
h6 { font-size:1.1em; }
/* HYPERLINKS */
a:link, a:visited { color:#2a88bf; text-decoration:none; }
a:hover { color:#39c; text-decoration:underline; }
/* CITATIONS */
blockquote { display:block; font-style:italic; padding:0 5%; margin:25px 0; }
blockquote cite, blockquote em, blockquote i { font-style:normal; }
/* FORMS */
input[type=text], input[type=password], input[type=input],
input[type=tel], input[type=url], input[type=email],
input[type=number], input[type=range], input[type=search], input[type=color],
input[type=time], input[type=week], input[type=month], input[type=date], input[type=datetime],
textarea, select { border:1px solid #ddd; padding:8px 6px; background:#f5f5f5; }
input[type=submit] { width:auto; -webkit-appearance:none; }
/* MAIN THEME COLORS */
body .primary-color { color:#89ce40; }
body .primary-color-bg { background-color:#89ce40; }
body .secondary-color { color:#444449; }
body .secondary-color-bg { background-color:#444449; }
/* SHORTCODE CUSTOM STYLING */
html body .button,
html body .button:link,
html body .button:visited,
input[type=submit] { border-radius:2px; border:2px solid #89ce40; text-shadow:none; background:none; color:#89ce40; -moz-transition:0.4s all; -webkit-transition:0.4s all; transition:0.4s all; }
html body .button:hover,
input[type=submit]:hover { color:#fff; background:#89ce40; }
/* --------------------------------------------------------------
LAYOUT
-------------------------------------------------------------- */
/* WRAPPERS */
.wrapper { margin:0 auto; }
/* TOPMENU */
.topbar { display:block; background:#fff; border-bottom:1px solid #f0f0f0; line-height:34px; font-size:0.9em; }
/* SOCIAL ICONS */
.social { float:right; text-align:right; padding:0; width:auto; }
.social .social-profile { display:block; float:left; color:#999; margin:0; width:40px; font-size:18px; text-align:center; }
.social .social-profile .social-title { display:none; }
.social .social-profile:hover { text-decoration:none; }
/* HEADER */
.header { position:relative; background:#fff; border-bottom:1px solid #f0f0f0; width:100%; padding:10px 0; }
.header .logo { float:left; padding-top:0; }
.header .header-content { float:right; padding:0 0 0 20px; }
/* HOMEPAGE SLIDES */
.slider { padding:0; margin:0; position:relative; text-align:center; -moz-transition:0.3s all; -webkit-transition:0.3s all; transition:0.3s all; }
.slider-slides { display:block; overflow:hidden; padding:0; margin:0; height:550px; }
.slider-slides .slide { overflow:hidden; background-position:center; background-size:cover; position:relative; list-style:none; width:100%; height:100%; margin:0; padding:0; }
.slider-slides .slide-body { position:absolute; top:15%; left:0; width:100%; }
.slider-slides .container { position:relative; height:inherit; }
.slider-slides .slide-image { float:right; padding:0; width:48%; }
.slider-slides .slide-image img { display:block; margin:0 auto; }
.slider-slides .slide-caption { overflow:hidden; text-transform:uppercase; float:left; padding:0 0 30px; width:48%; text-align:left; }
.slider-slides .slide-caption p:last-child { margin-bottom:0; }
.slider-slides .slide-title { font-size:2.6em; }
.slider-slides .slide-content { position:relative; font-size:1.2em; padding:0 0 30px; margin:0 0 30px; }
.slider-slides .slide-content:after { content:' '; position:absolute; background:#888; bottom:0; left:0; width:100px; height:1px; }
/* Prev/Next */
.slider-prev,
.slider-next { -moz-transition:0.2s all; -webkit-transition:0.2s all; transition:0.2s all; opacity:0.3; }
.slider:hover .slider-prev,
.slider:hover .slider-next { opacity:1; }
.slider-prev,
.slider-next { position:absolute; width:40px; height:100px; font-size:30px; line-height:70px; margin-top:-35px; top:50%; left:1%; text-align:center; color:#fff; z-index:999; cursor:pointer; }
.slider-next { right:1%; left:auto; }
.slider-prev:before,
.slider-prev:after,
.slider-next:before,
.slider-next:after { display:block; content:' '; position:absolute; top:50px; left:25%; width:50px; height:1px; background:#888; border-radius:50px; -moz-transform-origin:left; -webkit-transform-origin:left; transform-origin:left; }
.slider-prev:before,
.slider-next:before { -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); transform:rotate(-60deg); }
.slider-prev:after,
.slider-next:after { -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); transform:rotate(60deg); }
.slider-next:before,
.slider-next:after { left:auto; right:25%; -moz-transform-origin:right; -webkit-transform-origin:right; transform-origin:right; }
/* Transitions */
.slider-slides .slide-body .slide-caption { -moz-transform:translateY(60px); -webkit-transform:translateY(60px); transform:translateY(60px); opacity:0; -moz-transition:1s all; -webkit-transition:1s all; transition:1s all; }
.slider-slides .slide-body .slide-image { -moz-transform:translateY(20px); -webkit-transform:translateY(20px); transform:translateY(20px); opacity:0; -moz-transition:1s all; -webkit-transition:1s all; transition:1s all; }
.slider-slides .cycle-slide-active .slide-caption,
.slider-slides .cycle-slide-active .slide-image { -moz-transform:none; -webkit-transform:none; transform:none; opacity:1; }
.slider-slides .cycle-slide-active .slide-image { -moz-transition-delay:0.8s; -webkit-transition-delay:0.8s; transition-delay:0.8s; }
/* BREADCRUMBS */
.breadcrumb { margin:20px 0 0; }
.breadcrumb-separator{ position:relative; padding-right:20px; margin-right:15px; }
.breadcrumb-separator:before { display:block; position:absolute; top:50%; right:0; list-style:none; font-family:'fontawesome'; content:'/'; font-weight:bold; font-size:12px; color:#ddd; margin-top:-5px; line-height:10px; opacity:0.5; }
.breadcrumb-separator { }
.breadcrumb-link :first-child{}
.breadcrumb-link :hover{}
.breadcrumb-title{}
/* PAGE BANNERS AND TITLES */
.banner { overflow:hidden; padding:0; margin:0; max-height:500px; }
.banner .banner-image { display:block; width:100%; height:auto; line-height:0; padding:0; margin:0; }
.pagetitle { overflow:hidden; position:relative; background:rgba(0,0,0,0.4); background-size:cover; background-position:center; text-align:center; padding:100px 0; margin:0; }
.pagetitle .pagetitle-title { margin:0; font-size:2.5em; text-transform:uppercase; }
/* HOMEPAGE TAGLINE */
.tagline { padding:70px 0; background:rgba(0,0,0,0.4); font-size:1.5em; text-align:center; }
/* SECTIONS */
.section-heading { position:relative; margin:0 0 40px; padding:0 0 30px; text-align:center; line-height:1.2; font-size:2.5em; text-transform:uppercase; }
.section-heading:before { content:' '; position:absolute; background:#bbb; bottom:0; left:50%; margin-left:-50px; width:100px; height:1px; }
/* HOMEPAGE FEATURES */
.features { margin:0; background:#fff; padding:50px 0 10px; }
.features .feature { margin:0 0 40px; text-align:center; }
.features .feature .feature-image { display:block; position:relative; min-height:102px; margin:0 0 20px; }
.features .feature .feature-image img { display:block; margin:0 auto; }
.features .feature .feature-icon { position:absolute; background:#fff; left:50%; top:50%; font-family:'fontawesome'; text-align:center; width:100px; height:100px; font-size:30px; margin:-51px 0 0 -51px; line-height:100px; border:1px solid #ddd; border-radius:50%; }
.features .feature .feature-title { margin:30px 0; font-size:1.2em; text-transform:uppercase; }
.features .feature .feature-content { margin:0; padding:0 0 20px; }
/* TESTIMONIALS */
.team { padding:50px 0 10px; margin:0; }
.home .team { background:rgba(0,0,0,0.4); }
.team .team-member { margin:0 0 40px; }
.team .team-member-image { display:block; width:100%; margin:0; }
.team .team-member-body { background:#fff; border:1px solid #eee; padding:20px; margin:0; }
.team .team-member-title { margin:0; font-size:1.2em; text-transform:uppercase; }
.team .team-member-description { text-transform:uppercase; font-size:0.8em; margin:0 0 5px; }
.team .team-member-content { margin:15px 0 0; }
.team .team-member-content p:last-child { margin-bottom:0; }
.team .team-member-links { margin:10px 0 0; }
.team .team-member-link { display:block; float:left; width:30px; height:30px; line-height:30px; text-align:center; margin:0 10px 0 0; color:#999; border:1px solid #eee; font-family:'fontawesome'; }
.team .team-member-link:hover { text-decoration:none; opacity:0.7; }
/* TESTIMONIALS */
.testimonials { padding:50px 0 10px; background:#fff; margin:0; }
.testimonials .testimonial { margin:0 0 40px; }
.testimonials .testimonial-content { background:rgba(80,80,100,0.05); padding:20px 20px 30px; margin:0; }
.testimonials .testimonial-image { display:block; width:70px; margin:-35px auto 20px; }
.testimonials .testimonial-name { text-align:center; font-size:1.3em; margin:0 0 5px; }
.testimonials .testimonial-position { text-align:center; font-size:0.9em; margin:0; }
/* HOMEPAGE CLIENTS */
.clients { display:block; border-top:1px solid #eee; background:#fff; position:relative; overflow:hidden; margin:0; padding:40px 0 0; }
.clients .client { margin:0 0 40px; }
.clients .client img { display:block; margin:0; width:100%; }
/* PAGE CONTENT */
.main { background:#fff; }
/* SIDEBARS */
.widget { overflow:hidden; margin:0 0 40px; }
.sidebar .widget { padding:0 0; }
.sidebar .widget:first-child { border-top:none; padding:0; }
.widget .widget-title { font-size:1.2em; text-transform:uppercase; }
.widget ul li { position:relative; padding:0; margin:0 0 8px; }
/* FOOTER */
.subfooter { overflow:hidden; background:rgba(0,0,0,0.4); padding:40px 0 10px; }
.footer { position:relative; overflow:hidden; background:rgba(0,0,0,0.4); padding:50px 0 30px; clear:both; text-align:center; }
.footer:before { content:' '; position:absolute; background:#bbb; top:0; left:50%; margin-left:-50px; width:100px; height:1px; }
/* --------------------------------------------------------------
NAVIGATION
-------------------------------------------------------------- */
/* TOP MENU */
.topmenu { float:left; }
/* MAIN MENU */
.menu-main { padding-top:5px; float:right; }
/* Menu Elements */
.menu-main li a { padding:10px; font-size:1.1em; color:#99a; }
.menu-main li a .menu-description { }
.menu-main li:hover > a,
.menu-main li a:hover { }
/* Current item highlight both normally and on hover */
.menu-main .current-menu-ancestor > a,
.menu-main .current-menu-item > a { }
.menu-main .current_page_ancestor > a:hover,
.menu-main .current-menu-item > a:hover { }
/* Children Elements */
.menu-main .menu-item-has-children:before { color:#ccc; content:'\f107'; font-size:10px; }
.menu-main li ul { margin:5px 0 0; padding:10px; background:#fff; background:rgba(255,255,255,0.9); border:1px solid #eee; -moz-transition-delay:0.2s; -webkit-transition-delay:0.2s; transition-delay:0.2s; }
.menu-main > li > ul:before { visibility:hidden; content:' '; opacity:0; margin:0; position:absolute; top:0; left:20px; margin:-11px 0 0; border-bottom:10px solid #ddd; border-left:10px solid transparent; border-right:10px solid transparent; z-index:9999; }
.menu-main > li > ul:after { visibility:hidden; content:' '; opacity:0; margin:0; position:absolute; top:0; left:20px; margin:-10px 0 0; border-bottom:10px solid #fff; border-left:10px solid transparent; border-right:10px solid transparent; z-index:9999; }
.menu-main li ul li a { text-transform:none; font-size:0.9em; }
.menu-main li ul li:hover > a,
.menu-main li ul li a:hover { background-color:none; }
/* MOBILE MENU */
.menu-mobile-open { }
/* FOOTER MENU */
.footermenu { }
.menu-footer { text-align:center; }
.menu-footer li a { font-weight:bold; }
.menu-footer li ul li a { font-weight:normal; font-size:0.9em; }
/* SUBMENU NAVIGATION */
.menu-sub { }
.menu-sub li { }
.menu-sub li a { }
/* PORTFOLIO NAVIGATION */
.menu-portfolio { overflow:hidden; text-align:center; margin:0; padding:0; }
.menu-portfolio .menu-item { display:inline-block; padding:10px 25px; text-transform:uppercase; margin:10px 5px; border:1px solid #eee; }
.menu-portfolio .menu-item:hover { text-decoration:none; }
.menu-portfolio .current_page_item, .menu-portfolio .current-cat { border-bottom:0; }
.menu-portfolio .current_page_item a, .menu-portfolio .current-cat a { background:#E85F52; color:#fff; }
.menu-portfolio .current_page_item ul li a, .menu-portfolio .current-cat ul li a { color:#222; background:none; }
/* NEXT/PREV POST NAVIGATION */
.navigation { }
.navigation .nav-prev,
.navigation .nav-next { padding:0 30px; }
.navigation .nav-prev:before { display:block; position:absolute; top:50%; left:0; list-style:none; font-family:'fontawesome'; content:'\f104'; font-size:30px; color:#999; margin-top:-15px; line-height:30px; }
.navigation .nav-next:before { display:block; position:absolute; top:50%; right:0; list-style:none; font-family:'fontawesome'; content:'\f105'; font-size:30px; color:#999; margin-top:-15px; line-height:30px; }
/* NUMBERED PAGINATION */
.pagination span,
.pagination a { border-radius:0px; padding:15px 20px; border:1px solid #eee; }
/* NUMBERED PAGINATION FOR SINGLE POSTS */
.postpagination span { }
.postpagination a span { }
/* --------------------------------------------------------------
POSTS & PAGES
-------------------------------------------------------------- */
/* POST LISTING */
.post { margin:0 0 40px; background:#fff; }
.post .post-image { margin:0; }
.post .post-image img { display:block; margin:0; line-height:0em; width:100%; height:auto; border-radius:0; }
.post .post-body { padding:20px; border:1px solid #ddd; }
.post .post-title { font-size:1.4em; padding:0; margin:0 0 10px 0; }
.post .post-title a { color:inherit; }
.post .post-byline { overflow:hidden; text-transform:uppercase; position:relative; padding:0 0 10px; margin:0 0 20px; color:#aaa; font-size:0.9em; }
.post .post-byline:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.post .post-byline div { float:left; position:relative; padding:0 22px 0 0; margin-bottom:10px; }
.post .post-byline div:last-child { padding-right:0; }
.post .post-content { padding:0; margin:0 0 20px 0; }
.post .post-content p:last-child { margin-bottom:0; }
.post .readmore { margin:0; }
.post .post-tags { display:block; margin:0 0; }
.post .post-tags a { display:inline-block; padding:5px 10px; border:1px solid #ddd; border-radius:50px; margin:0 10px 0 0; }
.post .post-comments { float:right; padding:10px 20px; border:1px solid #ddd; border-radius:50px; }
.post .post-comments a { color:inherit; }
.post .post-comments a:hover { opacity:0.7; text-decoration:none; }
.post .post-comments a:after { content:' \f0e5'; font-family:'fontawesome'; }
/* AUTHOR BIOS */
.author-info { clear:both; padding:0; margin:0 0 40px; }
.author-info .author-image { float:left; margin:0; width:100px; }
.author-info .author-image img { display:block; line-height:0; margin:0; border-radius:0; }
.author-info .author-body { margin-left:100px; padding:20px; background:rgba(80,80,100,0.05); }
.author-info .author-name { position:relative; padding:0 0 10px; margin:0 0 10px; }
.author-info .author-name:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.author-info .author-description { margin:0 0 10px; }
.author-info .author-social { margin:0 0 0; }
.author-info .author-social a { margin-right:15px; }
/* INDIVIDUAL PORTFOLIO ITEMS */
.cpo_portfolio .portfolio-media { margin:0 0 30px; }
.cpo_portfolio .portfolio-image { text-align:center; }
.cpo_portfolio .portfolio-details { padding-left:5%; margin-bottom:30px; padding:15px 30px 30px; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; border-radius:2px; }
.cpo_portfolio .portfolio-details div { margin:15px 0 0; border-top:1px solid #fff; padding:15px 0 0 30px; position:relative; }
.cpo_portfolio .portfolio-details p:last-child { margin:0; }
.cpo_portfolio .portfolio-details div:first-child { margin:0; border-top:none; }
.cpo_portfolio .portfolio-details .details-icon { position:absolute; display:block; width:15px; margin-top:1px; font-size:1.3em; text-align:center; left:0; top:17px; }
.cpo_portfolio .portfolio-content { }
/* PORTFOLIO SHOWCASE */
.portfolio { clear:both; padding:50px 0 50px; }
.portfolio { background:#fff; }
.portfolio-item { display:block; overflow:hidden; position:relative; text-align:center; padding:1px; margin:0; }
.portfolio-item-image { display:block; width:100%; overflow:hidden; background:#eee; position:relative; }
.portfolio-item img { display:block; max-width:100%; margin:0 auto; width:100%; height:auto; line-height:0; -moz-transition:0.5s all; -webkit-transition:0.5s all; transition:0.5s all; }
.portfolio-item .portfolio-item-overlay { opacity:0; position:absolute; top:0; bottom:0; left:0; right:0; text-align:center; -moz-transition:0.3s all; -webkit-transition:0.3s all; transition:0.3s all; -moz-transition-delay:0.1s; -webkit-transition-delay:0.1s; transition-delay:0.1s; z-index:9997; }
.portfolio-item .portfolio-item-title,
.portfolio-item .portfolio-item-description { position:absolute; left:0; opacity:0; width:80%; -moz-transition:0.4s all; -webkit-transition:0.4s all; transition:0.4s all; z-index:9998; }
.portfolio-item .portfolio-item-title { font-size:1.3em; opacity:1; text-transform:uppercase; bottom:50%; margin:0 10% -20px; }
.portfolio-item .portfolio-item-description { top:50%; margin:20px 10% 0; }
.portfolio-item a:hover { text-decoration:none; }
.portfolio-item:hover .portfolio-item-overlay { opacity:0.9; }
.portfolio-item-has-excerpt:hover .portfolio-item-title { opacity:1; margin-bottom:10px; }
.portfolio-item:hover .portfolio-item-description { opacity:1; margin-top:10px; }
.portfolio-item:hover img { -moz-transform:scale(1.1); -webkit-transform:scale(1.1); transform:scale(1.1); }
/* SERVICES */
.services { margin:0; padding:50px 0 10px; }
.home .services { background:rgba(0,0,0,0.4); }
.services .service { margin-bottom:50px; }
.services .service a:hover { text-decoration:none; }
.services .service .service-body { margin-left:70px; }
.services .service .service-icon { font-family:'fontawesome'; float:left; text-align:center; width:50px; height:50px; font-size:40px; margin:0 auto 20px; line-height:50px; }
.services .service .service-title { margin:0 0 10px; font-size:1.2em; text-transform:uppercase; }
.services .service .service-content { margin:0 0 10px; }
.services .service .service-content p:last-child { margin-bottom:0; }
/* --------------------------------------------------------------
COMMENTS
-------------------------------------------------------------- */
/* COMMENTS */
.comments { clear:both; margin:0; }
.commentlist { list-style:none; padding:0; margin:0 0 30px; }
.comment { overflow:hidden; list-style:none; margin:0 0 10px; padding:0; }
.comment .comment-avatar { float:left; width:50px; }
.comment .comment-avatar img { display:block; width:100%; }
.comment .comment-body { margin:0 0 20px 50px; background:rgba(80,80,100,0.05); padding:20px 20px 20px; }
.comment .comment-title { position:relative; padding:0 0 10px; margin:0 0 10px; }
.comment .comment-title:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.comment .comment-author { display:block; font-size:1.3em; line-height:1.2em; margin:0 0 5px; }
.comment .comment-date { font-size:0.9em; text-transform:uppercase; }
.comment .comment-approval { display:block; padding:0 10px 0; margin:0; }
.comment .comment-content { margin:0; padding:0; }
.comment .comment-options { overflow:hidden; float:right; text-align:right; padding:5px 10px; border-radius:2px; font-size:0.9em; border:1px solid #eee; }
.comment .comment-options a { margin-left:10px; }
.comment .comment-options a:first-child { margin:0; }
/* Contents Styling for Comment Body */
.comment .comment-content ul, .comment .comment-content ol { margin-bottom:18px; }
.comment .comment-content p:last-child { margin-bottom:6px; }
.comment .comment-content blockquote p:last-child { margin-bottom:24px; }
/* Nested Comments */
.comment .children { list-style:none; margin:0 0 0 50px; }
/* Pingbacks & Trackbacks */
.comments ol.pinglist { margin:0; }
.comments .pingback { list-style:none; margin:0 0 10px 0; }
.comments .pingback .url { font-style:italic; }
/* Author Comments */
.bypostauthor {}
/* COMMENT FORM */
.comment-respond { margin:30px 0; overflow:hidden; position:relative; }
.comment-respond p { overflow:hidden; }
/* Fields */
.comment-respond .comment-notes { display:none; }
.comment-respond .required { color:#ff4b33; }
.comment-respond label{ display:block; padding:5px 0; }
.comment-respond textarea{ height:200px; max-height:400px; min-height:200px; resize:vertical; }
/* Nested Form */
#cancel-comment-reply-link { float:right; display:block; font-size:0.9em; }
/* Allowed Tags */
.comment-respond .form-allowed-tags { display:none; color:#888; font-size:0.9em; }
.comment-respond .form-allowed-tags code { display:block; font-size:0.9em; }
.comment-respond .form-submit { }
/* --------------------------------------------------------------
RESPONSIVE STYLES
-------------------------------------------------------------- */
/* LARGE SCREENS */
@media screen and (min-width: 1280px){}
/* TABLET SCREENS (LANDSCAPE) */
@media screen and (max-width: 1024px){}
/* TABLET PORTRAIT */
@media screen and (max-width: 800px){
.header .logo { float:left; }
.slider-slides .slide .slide-caption,
.slider-slides .slide .slide-image { float:none; width:auto; }
.pagetitle .pagetitle-title { float:none; font-size:2em; }
.breadcrumb { float:none; }
}
/* SMARTPHONE */
@media only screen and (max-width: 600px){
.topmenu { display:none; }
.social { float:left; }
.slider-slides .slide .slide-image { display:none; }
/* NAVIGATION */
.menu-top { text-align:center; }
.menu-top li { display:inline-block; }
.menu-top li a { margin:0 auto; }
.footermenu { float:none; }
.menu-footer li a { margin:0 10px 10px 0; }
}
|
wordpress2/wp-content/themes/allegiant/style.css
|
GENERAL ELEMENTS
-------------------------------------------------------------- */
/* BODY */
::selection { color:#fff; background-color:#89ce40; }
::-moz-selection { color:#fff; background-color:#89ce40; }
body { font-family:'Source Sans Pro', Arial, Helvetica, sans-serif; background:#fff; color:#99a; font-size:1em; line-height:1.6; }
/* HEADINGS */
h1, h2, h3, h4, h5, h6 { color:#567; line-height:1.2; margin:0 0 20px; }
h1 { font-size:2.5em; }
h2 { font-size:2em; }
h3 { font-size:1.5em; }
h4 { font-size:1.3em; }
h5 { font-size:1.2em; }
h6 { font-size:1.1em; }
/* HYPERLINKS */
a:link, a:visited { color:#2a88bf; text-decoration:none; }
a:hover { color:#39c; text-decoration:underline; }
/* CITATIONS */
blockquote { display:block; font-style:italic; padding:0 5%; margin:25px 0; }
blockquote cite, blockquote em, blockquote i { font-style:normal; }
/* FORMS */
input[type=text], input[type=password], input[type=input],
input[type=tel], input[type=url], input[type=email],
input[type=number], input[type=range], input[type=search], input[type=color],
input[type=time], input[type=week], input[type=month], input[type=date], input[type=datetime],
textarea, select { border:1px solid #ddd; padding:8px 6px; background:#f5f5f5; }
input[type=submit] { width:auto; -webkit-appearance:none; }
/* MAIN THEME COLORS */
body .primary-color { color:#89ce40; }
body .primary-color-bg { background-color:#89ce40; }
body .secondary-color { color:#444449; }
body .secondary-color-bg { background-color:#444449; }
/* SHORTCODE CUSTOM STYLING */
html body .button,
html body .button:link,
html body .button:visited,
input[type=submit] { border-radius:2px; border:2px solid #89ce40; text-shadow:none; background:none; color:#89ce40; -moz-transition:0.4s all; -webkit-transition:0.4s all; transition:0.4s all; }
html body .button:hover,
input[type=submit]:hover { color:#fff; background:#89ce40; }
/* --------------------------------------------------------------
LAYOUT
-------------------------------------------------------------- */
/* WRAPPERS */
.wrapper { margin:0 auto; }
/* TOPMENU */
.topbar { display:block; background:#fff; border-bottom:1px solid #f0f0f0; line-height:34px; font-size:0.9em; }
/* SOCIAL ICONS */
.social { float:right; text-align:right; padding:0; width:auto; }
.social .social-profile { display:block; float:left; color:#999; margin:0; width:40px; font-size:18px; text-align:center; }
.social .social-profile .social-title { display:none; }
.social .social-profile:hover { text-decoration:none; }
/* HEADER */
.header { position:relative; background:#fff; border-bottom:1px solid #f0f0f0; width:100%; padding:10px 0; }
.header .logo { float:left; padding-top:0; }
.header .header-content { float:right; padding:0 0 0 20px; }
/* HOMEPAGE SLIDES */
.slider { padding:0; margin:0; position:relative; text-align:center; -moz-transition:0.3s all; -webkit-transition:0.3s all; transition:0.3s all; }
.slider-slides { display:block; overflow:hidden; padding:0; margin:0; height:550px; }
.slider-slides .slide { overflow:hidden; background-position:center; background-size:cover; position:relative; list-style:none; width:100%; height:100%; margin:0; padding:0; }
.slider-slides .slide-body { position:absolute; top:15%; left:0; width:100%; }
.slider-slides .container { position:relative; height:inherit; }
.slider-slides .slide-image { float:right; padding:0; width:48%; }
.slider-slides .slide-image img { display:block; margin:0 auto; }
.slider-slides .slide-caption { overflow:hidden; text-transform:uppercase; float:left; padding:0 0 30px; width:48%; text-align:left; }
.slider-slides .slide-caption p:last-child { margin-bottom:0; }
.slider-slides .slide-title { font-size:2.6em; }
.slider-slides .slide-content { position:relative; font-size:1.2em; padding:0 0 30px; margin:0 0 30px; }
.slider-slides .slide-content:after { content:' '; position:absolute; background:#888; bottom:0; left:0; width:100px; height:1px; }
/* Prev/Next */
.slider-prev,
.slider-next { -moz-transition:0.2s all; -webkit-transition:0.2s all; transition:0.2s all; opacity:0.3; }
.slider:hover .slider-prev,
.slider:hover .slider-next { opacity:1; }
.slider-prev,
.slider-next { position:absolute; width:40px; height:100px; font-size:30px; line-height:70px; margin-top:-35px; top:50%; left:1%; text-align:center; color:#fff; z-index:999; cursor:pointer; }
.slider-next { right:1%; left:auto; }
.slider-prev:before,
.slider-prev:after,
.slider-next:before,
.slider-next:after { display:block; content:' '; position:absolute; top:50px; left:25%; width:50px; height:1px; background:#888; border-radius:50px; -moz-transform-origin:left; -webkit-transform-origin:left; transform-origin:left; }
.slider-prev:before,
.slider-next:before { -moz-transform:rotate(-60deg); -webkit-transform:rotate(-60deg); transform:rotate(-60deg); }
.slider-prev:after,
.slider-next:after { -moz-transform:rotate(60deg); -webkit-transform:rotate(60deg); transform:rotate(60deg); }
.slider-next:before,
.slider-next:after { left:auto; right:25%; -moz-transform-origin:right; -webkit-transform-origin:right; transform-origin:right; }
/* Transitions */
.slider-slides .slide-body .slide-caption { -moz-transform:translateY(60px); -webkit-transform:translateY(60px); transform:translateY(60px); opacity:0; -moz-transition:1s all; -webkit-transition:1s all; transition:1s all; }
.slider-slides .slide-body .slide-image { -moz-transform:translateY(20px); -webkit-transform:translateY(20px); transform:translateY(20px); opacity:0; -moz-transition:1s all; -webkit-transition:1s all; transition:1s all; }
.slider-slides .cycle-slide-active .slide-caption,
.slider-slides .cycle-slide-active .slide-image { -moz-transform:none; -webkit-transform:none; transform:none; opacity:1; }
.slider-slides .cycle-slide-active .slide-image { -moz-transition-delay:0.8s; -webkit-transition-delay:0.8s; transition-delay:0.8s; }
/* BREADCRUMBS */
.breadcrumb { margin:20px 0 0; }
.breadcrumb-separator{ position:relative; padding-right:20px; margin-right:15px; }
.breadcrumb-separator:before { display:block; position:absolute; top:50%; right:0; list-style:none; font-family:'fontawesome'; content:'/'; font-weight:bold; font-size:12px; color:#ddd; margin-top:-5px; line-height:10px; opacity:0.5; }
.breadcrumb-separator { }
.breadcrumb-link :first-child{}
.breadcrumb-link :hover{}
.breadcrumb-title{}
/* PAGE BANNERS AND TITLES */
.banner { overflow:hidden; padding:0; margin:0; max-height:500px; }
.banner .banner-image { display:block; width:100%; height:auto; line-height:0; padding:0; margin:0; }
.pagetitle { overflow:hidden; position:relative; background:rgba(0,0,0,0.4); background-size:cover; background-position:center; text-align:center; padding:100px 0; margin:0; }
.pagetitle .pagetitle-title { margin:0; font-size:2.5em; text-transform:uppercase; }
/* HOMEPAGE TAGLINE */
.tagline { padding:70px 0; background:rgba(0,0,0,0.4); font-size:1.5em; text-align:center; }
/* SECTIONS */
.section-heading { position:relative; margin:0 0 40px; padding:0 0 30px; text-align:center; line-height:1.2; font-size:2.5em; text-transform:uppercase; }
.section-heading:before { content:' '; position:absolute; background:#bbb; bottom:0; left:50%; margin-left:-50px; width:100px; height:1px; }
/* HOMEPAGE FEATURES */
.features { margin:0; background:#fff; padding:50px 0 10px; }
.features .feature { margin:0 0 40px; text-align:center; }
.features .feature .feature-image { display:block; position:relative; min-height:102px; margin:0 0 20px; }
.features .feature .feature-image img { display:block; margin:0 auto; }
.features .feature .feature-icon { position:absolute; background:#fff; left:50%; top:50%; font-family:'fontawesome'; text-align:center; width:100px; height:100px; font-size:30px; margin:-51px 0 0 -51px; line-height:100px; border:1px solid #ddd; border-radius:50%; }
.features .feature .feature-title { margin:30px 0; font-size:1.2em; text-transform:uppercase; }
.features .feature .feature-content { margin:0; padding:0 0 20px; }
/* TESTIMONIALS */
.team { padding:50px 0 10px; margin:0; }
.home .team { background:rgba(0,0,0,0.4); }
.team .team-member { margin:0 0 40px; }
.team .team-member-image { display:block; width:100%; margin:0; }
.team .team-member-body { background:#fff; border:1px solid #eee; padding:20px; margin:0; }
.team .team-member-title { margin:0; font-size:1.2em; text-transform:uppercase; }
.team .team-member-description { text-transform:uppercase; font-size:0.8em; margin:0 0 5px; }
.team .team-member-content { margin:15px 0 0; }
.team .team-member-content p:last-child { margin-bottom:0; }
.team .team-member-links { margin:10px 0 0; }
.team .team-member-link { display:block; float:left; width:30px; height:30px; line-height:30px; text-align:center; margin:0 10px 0 0; color:#999; border:1px solid #eee; font-family:'fontawesome'; }
.team .team-member-link:hover { text-decoration:none; opacity:0.7; }
/* TESTIMONIALS */
.testimonials { padding:50px 0 10px; background:#fff; margin:0; }
.testimonials .testimonial { margin:0 0 40px; }
.testimonials .testimonial-content { background:rgba(80,80,100,0.05); padding:20px 20px 30px; margin:0; }
.testimonials .testimonial-image { display:block; width:70px; margin:-35px auto 20px; }
.testimonials .testimonial-name { text-align:center; font-size:1.3em; margin:0 0 5px; }
.testimonials .testimonial-position { text-align:center; font-size:0.9em; margin:0; }
/* HOMEPAGE CLIENTS */
.clients { display:block; border-top:1px solid #eee; background:#fff; position:relative; overflow:hidden; margin:0; padding:40px 0 0; }
.clients .client { margin:0 0 40px; }
.clients .client img { display:block; margin:0; width:100%; }
/* PAGE CONTENT */
.main { background:#fff; }
/* SIDEBARS */
.widget { overflow:hidden; margin:0 0 40px; }
.sidebar .widget { padding:0 0; }
.sidebar .widget:first-child { border-top:none; padding:0; }
.widget .widget-title { font-size:1.2em; text-transform:uppercase; }
.widget ul li { position:relative; padding:0; margin:0 0 8px; }
/* FOOTER */
.subfooter { overflow:hidden; background:rgba(0,0,0,0.4); padding:40px 0 10px; }
.footer { position:relative; overflow:hidden; background:rgba(0,0,0,0.4); padding:50px 0 30px; clear:both; text-align:center; }
.footer:before { content:' '; position:absolute; background:#bbb; top:0; left:50%; margin-left:-50px; width:100px; height:1px; }
/* --------------------------------------------------------------
NAVIGATION
-------------------------------------------------------------- */
/* TOP MENU */
.topmenu { float:left; }
/* MAIN MENU */
.menu-main { padding-top:5px; float:right; }
/* Menu Elements */
.menu-main li a { padding:10px; font-size:1.1em; color:#99a; }
.menu-main li a .menu-description { }
.menu-main li:hover > a,
.menu-main li a:hover { }
/* Current item highlight both normally and on hover */
.menu-main .current-menu-ancestor > a,
.menu-main .current-menu-item > a { }
.menu-main .current_page_ancestor > a:hover,
.menu-main .current-menu-item > a:hover { }
/* Children Elements */
.menu-main .menu-item-has-children:before { color:#ccc; content:'\f107'; font-size:10px; }
.menu-main li ul { margin:5px 0 0; padding:10px; background:#fff; background:rgba(255,255,255,0.9); border:1px solid #eee; -moz-transition-delay:0.2s; -webkit-transition-delay:0.2s; transition-delay:0.2s; }
.menu-main > li > ul:before { visibility:hidden; content:' '; opacity:0; margin:0; position:absolute; top:0; left:20px; margin:-11px 0 0; border-bottom:10px solid #ddd; border-left:10px solid transparent; border-right:10px solid transparent; z-index:9999; }
.menu-main > li > ul:after { visibility:hidden; content:' '; opacity:0; margin:0; position:absolute; top:0; left:20px; margin:-10px 0 0; border-bottom:10px solid #fff; border-left:10px solid transparent; border-right:10px solid transparent; z-index:9999; }
.menu-main li ul li a { text-transform:none; font-size:0.9em; }
.menu-main li ul li:hover > a,
.menu-main li ul li a:hover { background-color:none; }
/* MOBILE MENU */
.menu-mobile-open { }
/* FOOTER MENU */
.footermenu { }
.menu-footer { text-align:center; }
.menu-footer li a { font-weight:bold; }
.menu-footer li ul li a { font-weight:normal; font-size:0.9em; }
/* SUBMENU NAVIGATION */
.menu-sub { }
.menu-sub li { }
.menu-sub li a { }
/* PORTFOLIO NAVIGATION */
.menu-portfolio { overflow:hidden; text-align:center; margin:0; padding:0; }
.menu-portfolio .menu-item { display:inline-block; padding:10px 25px; text-transform:uppercase; margin:10px 5px; border:1px solid #eee; }
.menu-portfolio .menu-item:hover { text-decoration:none; }
.menu-portfolio .current_page_item, .menu-portfolio .current-cat { border-bottom:0; }
.menu-portfolio .current_page_item a, .menu-portfolio .current-cat a { background:#E85F52; color:#fff; }
.menu-portfolio .current_page_item ul li a, .menu-portfolio .current-cat ul li a { color:#222; background:none; }
/* NEXT/PREV POST NAVIGATION */
.navigation { }
.navigation .nav-prev,
.navigation .nav-next { padding:0 30px; }
.navigation .nav-prev:before { display:block; position:absolute; top:50%; left:0; list-style:none; font-family:'fontawesome'; content:'\f104'; font-size:30px; color:#999; margin-top:-15px; line-height:30px; }
.navigation .nav-next:before { display:block; position:absolute; top:50%; right:0; list-style:none; font-family:'fontawesome'; content:'\f105'; font-size:30px; color:#999; margin-top:-15px; line-height:30px; }
/* NUMBERED PAGINATION */
.pagination span,
.pagination a { border-radius:0px; padding:15px 20px; border:1px solid #eee; }
/* NUMBERED PAGINATION FOR SINGLE POSTS */
.postpagination span { }
.postpagination a span { }
/* --------------------------------------------------------------
POSTS & PAGES
-------------------------------------------------------------- */
/* POST LISTING */
.post { margin:0 0 40px; background:#fff; }
.post .post-image { margin:0; }
.post .post-image img { display:block; margin:0; line-height:0em; width:100%; height:auto; border-radius:0; }
.post .post-body { padding:20px; border:1px solid #ddd; }
.post .post-title { font-size:1.4em; padding:0; margin:0 0 10px 0; }
.post .post-title a { color:inherit; }
.post .post-byline { overflow:hidden; text-transform:uppercase; position:relative; padding:0 0 10px; margin:0 0 20px; color:#aaa; font-size:0.9em; }
.post .post-byline:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.post .post-byline div { float:left; position:relative; padding:0 22px 0 0; margin-bottom:10px; }
.post .post-byline div:last-child { padding-right:0; }
.post .post-content { padding:0; margin:0 0 20px 0; }
.post .post-content p:last-child { margin-bottom:0; }
.post .readmore { margin:0; }
.post .post-tags { display:block; margin:0 0; }
.post .post-tags a { display:inline-block; padding:5px 10px; border:1px solid #ddd; border-radius:50px; margin:0 10px 0 0; }
.post .post-comments { float:right; padding:10px 20px; border:1px solid #ddd; border-radius:50px; }
.post .post-comments a { color:inherit; }
.post .post-comments a:hover { opacity:0.7; text-decoration:none; }
.post .post-comments a:after { content:' \f0e5'; font-family:'fontawesome'; }
/* AUTHOR BIOS */
.author-info { clear:both; padding:0; margin:0 0 40px; }
.author-info .author-image { float:left; margin:0; width:100px; }
.author-info .author-image img { display:block; line-height:0; margin:0; border-radius:0; }
.author-info .author-body { margin-left:100px; padding:20px; background:rgba(80,80,100,0.05); }
.author-info .author-name { position:relative; padding:0 0 10px; margin:0 0 10px; }
.author-info .author-name:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.author-info .author-description { margin:0 0 10px; }
.author-info .author-social { margin:0 0 0; }
.author-info .author-social a { margin-right:15px; }
/* INDIVIDUAL PORTFOLIO ITEMS */
.cpo_portfolio .portfolio-media { margin:0 0 30px; }
.cpo_portfolio .portfolio-image { text-align:center; }
.cpo_portfolio .portfolio-details { padding-left:5%; margin-bottom:30px; padding:15px 30px 30px; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; border-radius:2px; }
.cpo_portfolio .portfolio-details div { margin:15px 0 0; border-top:1px solid #fff; padding:15px 0 0 30px; position:relative; }
.cpo_portfolio .portfolio-details p:last-child { margin:0; }
.cpo_portfolio .portfolio-details div:first-child { margin:0; border-top:none; }
.cpo_portfolio .portfolio-details .details-icon { position:absolute; display:block; width:15px; margin-top:1px; font-size:1.3em; text-align:center; left:0; top:17px; }
.cpo_portfolio .portfolio-content { }
/* PORTFOLIO SHOWCASE */
.portfolio { clear:both; padding:50px 0 50px; }
.portfolio { background:#fff; }
.portfolio-item { display:block; overflow:hidden; position:relative; text-align:center; padding:1px; margin:0; }
.portfolio-item-image { display:block; width:100%; overflow:hidden; background:#eee; position:relative; }
.portfolio-item img { display:block; max-width:100%; margin:0 auto; width:100%; height:auto; line-height:0; -moz-transition:0.5s all; -webkit-transition:0.5s all; transition:0.5s all; }
.portfolio-item .portfolio-item-overlay { opacity:0; position:absolute; top:0; bottom:0; left:0; right:0; text-align:center; -moz-transition:0.3s all; -webkit-transition:0.3s all; transition:0.3s all; -moz-transition-delay:0.1s; -webkit-transition-delay:0.1s; transition-delay:0.1s; z-index:9997; }
.portfolio-item .portfolio-item-title,
.portfolio-item .portfolio-item-description { position:absolute; left:0; opacity:0; width:80%; -moz-transition:0.4s all; -webkit-transition:0.4s all; transition:0.4s all; z-index:9998; }
.portfolio-item .portfolio-item-title { font-size:1.3em; opacity:1; text-transform:uppercase; bottom:50%; margin:0 10% -20px; }
.portfolio-item .portfolio-item-description { top:50%; margin:20px 10% 0; }
.portfolio-item a:hover { text-decoration:none; }
.portfolio-item:hover .portfolio-item-overlay { opacity:0.9; }
.portfolio-item-has-excerpt:hover .portfolio-item-title { opacity:1; margin-bottom:10px; }
.portfolio-item:hover .portfolio-item-description { opacity:1; margin-top:10px; }
.portfolio-item:hover img { -moz-transform:scale(1.1); -webkit-transform:scale(1.1); transform:scale(1.1); }
/* SERVICES */
.services { margin:0; padding:50px 0 10px; }
.home .services { background:rgba(0,0,0,0.4); }
.services .service { margin-bottom:50px; }
.services .service a:hover { text-decoration:none; }
.services .service .service-body { margin-left:70px; }
.services .service .service-icon { font-family:'fontawesome'; float:left; text-align:center; width:50px; height:50px; font-size:40px; margin:0 auto 20px; line-height:50px; }
.services .service .service-title { margin:0 0 10px; font-size:1.2em; text-transform:uppercase; }
.services .service .service-content { margin:0 0 10px; }
.services .service .service-content p:last-child { margin-bottom:0; }
/* --------------------------------------------------------------
COMMENTS
-------------------------------------------------------------- */
/* COMMENTS */
.comments { clear:both; margin:0; }
.commentlist { list-style:none; padding:0; margin:0 0 30px; }
.comment { overflow:hidden; list-style:none; margin:0 0 10px; padding:0; }
.comment .comment-avatar { float:left; width:50px; }
.comment .comment-avatar img { display:block; width:100%; }
.comment .comment-body { margin:0 0 20px 50px; background:rgba(80,80,100,0.05); padding:20px 20px 20px; }
.comment .comment-title { position:relative; padding:0 0 10px; margin:0 0 10px; }
.comment .comment-title:before { content:' '; position:absolute; background:#bbb; bottom:0; left:0; width:100px; height:1px; }
.comment .comment-author { display:block; font-size:1.3em; line-height:1.2em; margin:0 0 5px; }
.comment .comment-date { font-size:0.9em; text-transform:uppercase; }
.comment .comment-approval { display:block; padding:0 10px 0; margin:0; }
.comment .comment-content { margin:0; padding:0; }
.comment .comment-options { overflow:hidden; float:right; text-align:right; padding:5px 10px; border-radius:2px; font-size:0.9em; border:1px solid #eee; }
.comment .comment-options a { margin-left:10px; }
.comment .comment-options a:first-child { margin:0; }
/* Contents Styling for Comment Body */
.comment .comment-content ul, .comment .comment-content ol { margin-bottom:18px; }
.comment .comment-content p:last-child { margin-bottom:6px; }
.comment .comment-content blockquote p:last-child { margin-bottom:24px; }
/* Nested Comments */
.comment .children { list-style:none; margin:0 0 0 50px; }
/* Pingbacks & Trackbacks */
.comments ol.pinglist { margin:0; }
.comments .pingback { list-style:none; margin:0 0 10px 0; }
.comments .pingback .url { font-style:italic; }
/* Author Comments */
.bypostauthor {}
/* COMMENT FORM */
.comment-respond { margin:30px 0; overflow:hidden; position:relative; }
.comment-respond p { overflow:hidden; }
/* Fields */
.comment-respond .comment-notes { display:none; }
.comment-respond .required { color:#ff4b33; }
.comment-respond label{ display:block; padding:5px 0; }
.comment-respond textarea{ height:200px; max-height:400px; min-height:200px; resize:vertical; }
/* Nested Form */
#cancel-comment-reply-link { float:right; display:block; font-size:0.9em; }
/* Allowed Tags */
.comment-respond .form-allowed-tags { display:none; color:#888; font-size:0.9em; }
.comment-respond .form-allowed-tags code { display:block; font-size:0.9em; }
.comment-respond .form-submit { }
/* --------------------------------------------------------------
RESPONSIVE STYLES
-------------------------------------------------------------- */
/* LARGE SCREENS */
@media screen and (min-width: 1280px){}
/* TABLET SCREENS (LANDSCAPE) */
@media screen and (max-width: 1024px){}
/* TABLET PORTRAIT */
@media screen and (max-width: 800px){
.header .logo { float:left; }
.slider-slides .slide .slide-caption,
.slider-slides .slide .slide-image { float:none; width:auto; }
.pagetitle .pagetitle-title { float:none; font-size:2em; }
.breadcrumb { float:none; }
}
/* SMARTPHONE */
@media only screen and (max-width: 600px){
.topmenu { display:none; }
.social { float:left; }
.slider-slides .slide .slide-image { display:none; }
/* NAVIGATION */
.menu-top { text-align:center; }
.menu-top li { display:inline-block; }
.menu-top li a { margin:0 auto; }
.footermenu { float:none; }
.menu-footer li a { margin:0 10px 10px 0; }
}
| 0.29088 | 0.053974 |
@font-face {
font-family: 'Gotham';
src: url("../fonts/gotham-medium.eot");
src: url("../fonts/gotham-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-medium.woff2") format("woff2"), url("../fonts/gotham-medium.woff") format("woff"), url("../fonts/gotham-medium.ttf") format("truetype"), url("../fonts/gotham-medium.svg#gotham_mediumregular") format("svg");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham';
src: url("../fonts/gotham-light.eot");
src: url("../fonts/gotham-light.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-light.woff2") format("woff2"), url("../fonts/gotham-light.woff") format("woff"), url("../fonts/gotham-light.ttf") format("truetype"), url("../fonts/gotham-light.svg#gotham_mediumregular") format("svg");
font-weight: 400;
font-style: normal; }
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
padding: 15px 15px;
display: inline-block;
cursor: pointer;
transition-property: opacity, -webkit-filter;
-webkit-transition-property: opacity, -webkit-filter;
transition-property: opacity, filter;
transition-property: opacity, filter, -webkit-filter;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.hamburger:hover {
opacity: 0.7; }
.hamburger-box {
width: 40px;
height: 24px;
display: inline-block;
position: relative; }
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 4px;
position: absolute;
transition-property: -webkit-transform;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block; }
.hamburger-inner::before {
top: -10px; }
.hamburger-inner::after {
bottom: -10px; }
.hamburger--squeeze .hamburger-inner {
-webkit-transition-duration: 0.1s;
transition-duration: 0.1s;
-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze .hamburger-inner::before {
-webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
.hamburger--squeeze .hamburger-inner::after {
transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition-delay: 0.14s;
transition-delay: 0.14s;
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--squeeze.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
-webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
.hamburger--squeeze.is-active .hamburger-inner::after {
bottom: 0;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }
* {
margin: 0; }
body {
font-family: "Gotham";
background-color: #F9FAFB;
text-align: center; }
body h1, body h2, body h3, body h4, body h5, body h6 {
font-weight: 400; }
body h1 {
font-size: 3em;
margin-bottom: 20px; }
@media (max-width: 330px) and (max-height: 600px) {
body h1 {
font-size: 2.5em; } }
body h2 {
font-size: 26px; }
body p {
color: #9B9FA8;
font-size: 20px; }
a {
text-decoration: none;
color: white;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
a:hover {
color: #6BC281; }
.blur {
background-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px); }
.btn {
background: #6BC281;
color: #F9FAFB;
padding: 15px 45px;
border-radius: 40px;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
.btn:hover {
background: transparent;
border: 1px solid #6BC281;
color: #6BC281; }
nav {
position: fixed;
width: 100vw;
height: 6.5em;
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;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
@media (max-width: 700px) {
nav {
height: 5em;
background-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px); } }
nav .main {
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;
text-align: left;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
nav .main h1 {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
font-size: 32px;
margin-bottom: 0;
color: white;
font-weight: 500 !important;
margin-left: 6em; }
@media (max-width: 900px) {
nav .main h1 {
margin-left: 3em; } }
@media (max-width: 820px) {
nav .main h1 {
margin-left: 1em; } }
@media (max-width: 720px) {
nav .main h1 {
margin-left: 0.5em; } }
nav .main h1 span {
margin-left: 5px;
font-size: 16px;
color: #999; }
@media (max-width: 700px) {
nav .main {
position: absolute;
width: 100vw; }
nav .main h1 {
padding: 0;
margin: 27px 20px; } }
nav .container {
display: none; }
@media (max-width: 700px) {
nav .container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
right: 0;
top: 0;
margin: 12px 0; } }
nav .links {
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; }
@media (max-width: 700px) {
nav .links {
position: absolute;
top: -10em; } }
nav .links a {
margin: 0 25px;
color: white;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
nav .links a:hover {
color: #181818; }
nav .links .signin {
margin-right: 0;
background-color: transparent;
border: 1px solid #F9FAFB;
margin-right: 6em; }
@media (max-width: 900px) {
nav .links .signin {
margin-right: 3em; } }
@media (max-width: 820px) {
nav .links .signin {
margin-right: 1em; } }
@media (max-width: 720px) {
nav .links .signin {
margin-left: 0.5em; } }
nav .links .signin:hover {
background: rgba(107, 194, 129, 0.5);
border-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px);
color: #F9FAFB; }
nav .links a:last-child {
display: none; }
@media (max-width: 700px) {
nav .links a:last-child {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
nav.is-open {
height: 100vh; }
nav.is-open .main {
height: 5em; }
nav.scrolled {
height: 5em; }
.links.is-open {
top: 5em;
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: 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;
width: 100vw;
height: 100vh; }
.links.is-open a {
margin: 15px 0; }
.links.is-open .signin {
background: #F9FAFB;
color: #6BC281; }
header {
height: 85vh;
background-color: black;
background-image: url(../img/header1.jpg);
background-size: cover;
background-position: top center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
color: white; }
@media (max-width: 450px) {
header {
height: 100vh; } }
header .btn {
margin-top: 40px;
text-transform: uppercase;
font-weight: 500;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
header .btn:hover {
background: #F9FAFB;
color: #6BC281;
border: none; }
section#analytics {
min-height: 40vh;
background-image: url(../img/analytics.png);
background-color: #F9FAFB;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom left;
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: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
padding-left: 5em;
padding-top: 2em;
padding-bottom: 2em; }
@media (max-width: 700px) {
section#analytics {
padding: 2em;
text-align: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center; } }
section#analytics h2 {
margin-bottom: 25px; }
section#analytics p {
max-width: 550px;
text-align: left;
line-height: 1.3em; }
section#analytics .btn {
background: transparent;
border: 1px solid #6BC281;
color: #6BC281;
margin-top: 35px;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
section#analytics .btn:hover {
background: #6BC281;
color: #F9FAFB; }
section#mission {
min-height: 30vh;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-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;
width: inherit;
padding: 20px 0; }
section#mission p {
margin-top: 80px;
line-height: 1.3em; }
@media (min-width: 700px) {
section#mission p {
width: 40vw; } }
section#leggo {
height: 50vh;
color: white;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background-image: url(../img/header1.jpg);
background-size: cover;
background-position: bottom; }
section#leggo p {
color: white; }
section#leggo .btn {
text-transform: uppercase;
margin-top: 50px;
font-weight: 500; }
section#leggo .btn:hover {
background: #F9FAFB;
color: #6BC281;
border: none; }
.homes-sold {
height: 15vh;
background: #2B2C2D;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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; }
.homes-sold p {
color: white; }
.homes-sold a {
color: #6BC281;
text-decoration: underline; }
.homes-sold a:hover {
color: white; }
footer .top {
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: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 auto;
border-bottom: 1px solid #ebebec;
margin: 0 5em;
padding: 10px 0; }
@media (max-width: 700px) {
footer .top {
-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;
-ms-grid-row-align: center;
align-items: center; } }
footer .top ul {
list-style-type: none;
padding-left: 0;
width: 100vw;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: left; }
@media (max-width: 700px) {
footer .top ul {
text-align: center; } }
footer .top ul:nth-child(2) {
-webkit-box-flex: 3;
-webkit-flex-grow: 3;
-ms-flex-positive: 3;
flex-grow: 3; }
footer .top ul li {
margin: 10px 0; }
footer .top ul li:first-child {
font-weight: 500; }
footer a, footer p {
color: black; }
footer .bottom {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
text-align: left;
margin: 0 5em;
padding: 10px 0; }
footer .bottom p:first-child {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
font-weight: 500; }
|
assets/css/style.css
|
@font-face {
font-family: 'Gotham';
src: url("../fonts/gotham-medium.eot");
src: url("../fonts/gotham-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-medium.woff2") format("woff2"), url("../fonts/gotham-medium.woff") format("woff"), url("../fonts/gotham-medium.ttf") format("truetype"), url("../fonts/gotham-medium.svg#gotham_mediumregular") format("svg");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham';
src: url("../fonts/gotham-light.eot");
src: url("../fonts/gotham-light.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-light.woff2") format("woff2"), url("../fonts/gotham-light.woff") format("woff"), url("../fonts/gotham-light.ttf") format("truetype"), url("../fonts/gotham-light.svg#gotham_mediumregular") format("svg");
font-weight: 400;
font-style: normal; }
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
padding: 15px 15px;
display: inline-block;
cursor: pointer;
transition-property: opacity, -webkit-filter;
-webkit-transition-property: opacity, -webkit-filter;
transition-property: opacity, filter;
transition-property: opacity, filter, -webkit-filter;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.hamburger:hover {
opacity: 0.7; }
.hamburger-box {
width: 40px;
height: 24px;
display: inline-block;
position: relative; }
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 4px;
position: absolute;
transition-property: -webkit-transform;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block; }
.hamburger-inner::before {
top: -10px; }
.hamburger-inner::after {
bottom: -10px; }
.hamburger--squeeze .hamburger-inner {
-webkit-transition-duration: 0.1s;
transition-duration: 0.1s;
-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze .hamburger-inner::before {
-webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
.hamburger--squeeze .hamburger-inner::after {
transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition-delay: 0.14s;
transition-delay: 0.14s;
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--squeeze.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
-webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
.hamburger--squeeze.is-active .hamburger-inner::after {
bottom: 0;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }
* {
margin: 0; }
body {
font-family: "Gotham";
background-color: #F9FAFB;
text-align: center; }
body h1, body h2, body h3, body h4, body h5, body h6 {
font-weight: 400; }
body h1 {
font-size: 3em;
margin-bottom: 20px; }
@media (max-width: 330px) and (max-height: 600px) {
body h1 {
font-size: 2.5em; } }
body h2 {
font-size: 26px; }
body p {
color: #9B9FA8;
font-size: 20px; }
a {
text-decoration: none;
color: white;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
a:hover {
color: #6BC281; }
.blur {
background-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px); }
.btn {
background: #6BC281;
color: #F9FAFB;
padding: 15px 45px;
border-radius: 40px;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
.btn:hover {
background: transparent;
border: 1px solid #6BC281;
color: #6BC281; }
nav {
position: fixed;
width: 100vw;
height: 6.5em;
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;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
@media (max-width: 700px) {
nav {
height: 5em;
background-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px); } }
nav .main {
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;
text-align: left;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }
nav .main h1 {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
font-size: 32px;
margin-bottom: 0;
color: white;
font-weight: 500 !important;
margin-left: 6em; }
@media (max-width: 900px) {
nav .main h1 {
margin-left: 3em; } }
@media (max-width: 820px) {
nav .main h1 {
margin-left: 1em; } }
@media (max-width: 720px) {
nav .main h1 {
margin-left: 0.5em; } }
nav .main h1 span {
margin-left: 5px;
font-size: 16px;
color: #999; }
@media (max-width: 700px) {
nav .main {
position: absolute;
width: 100vw; }
nav .main h1 {
padding: 0;
margin: 27px 20px; } }
nav .container {
display: none; }
@media (max-width: 700px) {
nav .container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
right: 0;
top: 0;
margin: 12px 0; } }
nav .links {
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; }
@media (max-width: 700px) {
nav .links {
position: absolute;
top: -10em; } }
nav .links a {
margin: 0 25px;
color: white;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
nav .links a:hover {
color: #181818; }
nav .links .signin {
margin-right: 0;
background-color: transparent;
border: 1px solid #F9FAFB;
margin-right: 6em; }
@media (max-width: 900px) {
nav .links .signin {
margin-right: 3em; } }
@media (max-width: 820px) {
nav .links .signin {
margin-right: 1em; } }
@media (max-width: 720px) {
nav .links .signin {
margin-left: 0.5em; } }
nav .links .signin:hover {
background: rgba(107, 194, 129, 0.5);
border-color: rgba(107, 194, 129, 0.5);
-webkit-backdrop-filter: blur(10px);
color: #F9FAFB; }
nav .links a:last-child {
display: none; }
@media (max-width: 700px) {
nav .links a:last-child {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
nav.is-open {
height: 100vh; }
nav.is-open .main {
height: 5em; }
nav.scrolled {
height: 5em; }
.links.is-open {
top: 5em;
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: 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;
width: 100vw;
height: 100vh; }
.links.is-open a {
margin: 15px 0; }
.links.is-open .signin {
background: #F9FAFB;
color: #6BC281; }
header {
height: 85vh;
background-color: black;
background-image: url(../img/header1.jpg);
background-size: cover;
background-position: top center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
color: white; }
@media (max-width: 450px) {
header {
height: 100vh; } }
header .btn {
margin-top: 40px;
text-transform: uppercase;
font-weight: 500;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
header .btn:hover {
background: #F9FAFB;
color: #6BC281;
border: none; }
section#analytics {
min-height: 40vh;
background-image: url(../img/analytics.png);
background-color: #F9FAFB;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom left;
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: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
padding-left: 5em;
padding-top: 2em;
padding-bottom: 2em; }
@media (max-width: 700px) {
section#analytics {
padding: 2em;
text-align: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center; } }
section#analytics h2 {
margin-bottom: 25px; }
section#analytics p {
max-width: 550px;
text-align: left;
line-height: 1.3em; }
section#analytics .btn {
background: transparent;
border: 1px solid #6BC281;
color: #6BC281;
margin-top: 35px;
-webkit-transition: all 0.15s ease-out 0s;
transition: all 0.15s ease-out 0s; }
section#analytics .btn:hover {
background: #6BC281;
color: #F9FAFB; }
section#mission {
min-height: 30vh;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-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;
width: inherit;
padding: 20px 0; }
section#mission p {
margin-top: 80px;
line-height: 1.3em; }
@media (min-width: 700px) {
section#mission p {
width: 40vw; } }
section#leggo {
height: 50vh;
color: white;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background-image: url(../img/header1.jpg);
background-size: cover;
background-position: bottom; }
section#leggo p {
color: white; }
section#leggo .btn {
text-transform: uppercase;
margin-top: 50px;
font-weight: 500; }
section#leggo .btn:hover {
background: #F9FAFB;
color: #6BC281;
border: none; }
.homes-sold {
height: 15vh;
background: #2B2C2D;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-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; }
.homes-sold p {
color: white; }
.homes-sold a {
color: #6BC281;
text-decoration: underline; }
.homes-sold a:hover {
color: white; }
footer .top {
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: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 auto;
border-bottom: 1px solid #ebebec;
margin: 0 5em;
padding: 10px 0; }
@media (max-width: 700px) {
footer .top {
-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;
-ms-grid-row-align: center;
align-items: center; } }
footer .top ul {
list-style-type: none;
padding-left: 0;
width: 100vw;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: left; }
@media (max-width: 700px) {
footer .top ul {
text-align: center; } }
footer .top ul:nth-child(2) {
-webkit-box-flex: 3;
-webkit-flex-grow: 3;
-ms-flex-positive: 3;
flex-grow: 3; }
footer .top ul li {
margin: 10px 0; }
footer .top ul li:first-child {
font-weight: 500; }
footer a, footer p {
color: black; }
footer .bottom {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
text-align: left;
margin: 0 5em;
padding: 10px 0; }
footer .bottom p:first-child {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
font-weight: 500; }
| 0.408395 | 0.069195 |
@-moz-document domain("wiki.postmarketos.org") {
:root
{
--main-bg-color: hsl(213, 10%, 17%);
--main-fg-color: #bbb;
--light-bg-color: hsl(213, 10%, 23%);
--light-fg-color: #ccc;
--lighter-bg-color: hsl(213, 10%, 29%);
--lighter-fg-color: #ddd;
--highlight-bg-color: hsl(213, 10%, 35%);
--highlight-fg-color: #eee;
--disable-bg: hsl(0, 5%, 35%);
--disable-fg: hsl(0, 5%, 50%);
--border-color: #666;
--main-primary-color: hsl(213, 35%, 45%);
--light-primary-color: hsl(213, 35%, 65%);
--main-danger-color: hsl(0, 25%, 35%);
--light-danger-color: hsl(0, 25%, 45%);
--main-warning-color: hsl(40, 45%, 35%);
--light-warning-color: hsl(40, 45%, 45%);
--main-ok-color: hsl(120, 35%, 25%);
--light-ok-color: hsl(120, 35%, 35%);
}
body
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
}
h1, h2, h3, h4, h5, h6
{
color: var(--light-fg-color);
}
ul
{
list-style-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%225%22 height=%2213%22%3E %3Ccircle cx=%222.5%22 cy=%229%22 r=%222.5%22 fill=%22%23ccc%22/%3E %3C/svg%3E");
}
.mw-wiki-logo
{
filter: hue-rotate(180deg) invert(1);
}
#mw-page-base
{
background: linear-gradient(linear,right top,right bottom,color-stop(50%,var(--main-bg-color)),color-stop(100%,var(--light-bg-color)));
}
/* NAV */
.vectorTabs,
.vectorTabs span,
#mw-head .vectorMenu h3
{
background: linear-gradient(to bottom,var(--light-bg-color) 0,var(--lighter-bg-color) 100%);
}
.vectorTabs .selected span
{
background: linear-gradient(to bottom,var(--light-bg-color) 0,var(--main-bg-color) 100%);
}
.vectorTabs .selected a,
.vectorTabs .selected a:visited
{
color: var(--main-fg-color);
}
a,
.vectorTabs li a,
#mw-panel .portal .body li a,
.mw-parser-output a.external,
.mw-parser-output a.extiw,
.mw-parser-output a.extiw:active,
.toctogglelabel
{
color: var(--main-primary-color);
}
a:visited,
#mw-panel .portal .body li a:visited,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited
{
color: var(--light-primary-color);
}
#mw-panel .portal h3
{
color: var(--light-fg-color);
}
#simpleSearch input
{
color: var(--light-fg-color);
}
/* BODY */
.mw-body,
.parsoid-body
{
background-color: var(--main-bg-color);
color: var(--main-fg-color);
}
.mw-body
{
border-color: var(--border-color);
}
.mw-parser-output .external
{
background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23ccc%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23ccc%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
}
.toc,
.mw-warning,
.toccolours
{
background-color: var(--light-bg-color);
}
.tocnumber
{
color: var(--lighter-fg-color);
}
code,
pre,
.infobox
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
border-color: var(--border-color);
}
.note
{
background-color: var(--highlight-bg-color) !important;
color: var(--highlight-fg-color) !important;
border-color: var(--main-danger-color) !important;
}
.todo
{
background-color: var(--light-danger-color) !important;
color: var(--lighter-fg-color) !important;
border-color: var(--main-danger-color) !important;
}
.catlinks
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
border-color: var(--border-color);
}
#filetoc
{
background-color: var(--light-bg-color);
border-color: var(--border-color);
}
/* TABLE */
.wikitable
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
}
.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td
{
border-color: var(--border-color);
}
.wikitable > tr > th,
.wikitable > * > tr > th
{
background-color: var(--lighter-bg-color);
}
table.cargoTable.noMerge tr:first-child th,
table.cargoTable.noMerge tr:nth-child(2n)
{
background: var(--lighter-bg-color);
}
table.cargoTable.noMerge tr:nth-child(2n+1)
{
background: var(--main-bg-color);
}
.client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable),
.jquery-tablesorter th.headerSort
{
background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%229%22 fill=%22%23ccc%22 viewBox=%220 0 21 9%22%3E %3Cpath d=%22M14.5 5l-4 4-4-4zm0-1l-4-4-4 4z%22/%3E %3C/svg%3E");
}
table.feature-colors td.feature-yes,
.cargoTable td.feature-yes,
.feature-yes
{
background: var(--main-ok-color) !important;
}
table.feature-colors td.feature-partial,
.cargoTable td.feature-partial,
.feature-partial
{
background: var(--main-warning-color) !important;
}
table.feature-colors td.feature-unavailable,
.cargoTable td.feature-unavailable,
.feature-unavailable
{
background: var(--disable-bg) !important;
}
/* FOOTER */
#footer li
{
color: var(--light-fg-color);
}
#footer-poweredbyico img
{
filter: hue-rotate(180deg) invert(1);
}
/* HOME PAGE */
.mw-parser-output > div > div:nth-child(2)
{
background: var(--main-bg-color) !important;
}
.mw-parser-output > div > div:nth-child(2) > div:first-child,
.mw-parser-output > div > div:nth-child(2) > div > span span
{
background: var(--light-bg-color) !important;
}
.mw-parser-output > div > div:nth-child(2) > div img
{
filter: invert(0.83);
}
}
|
data/usercss/202846.user.css
|
@-moz-document domain("wiki.postmarketos.org") {
:root
{
--main-bg-color: hsl(213, 10%, 17%);
--main-fg-color: #bbb;
--light-bg-color: hsl(213, 10%, 23%);
--light-fg-color: #ccc;
--lighter-bg-color: hsl(213, 10%, 29%);
--lighter-fg-color: #ddd;
--highlight-bg-color: hsl(213, 10%, 35%);
--highlight-fg-color: #eee;
--disable-bg: hsl(0, 5%, 35%);
--disable-fg: hsl(0, 5%, 50%);
--border-color: #666;
--main-primary-color: hsl(213, 35%, 45%);
--light-primary-color: hsl(213, 35%, 65%);
--main-danger-color: hsl(0, 25%, 35%);
--light-danger-color: hsl(0, 25%, 45%);
--main-warning-color: hsl(40, 45%, 35%);
--light-warning-color: hsl(40, 45%, 45%);
--main-ok-color: hsl(120, 35%, 25%);
--light-ok-color: hsl(120, 35%, 35%);
}
body
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
}
h1, h2, h3, h4, h5, h6
{
color: var(--light-fg-color);
}
ul
{
list-style-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%225%22 height=%2213%22%3E %3Ccircle cx=%222.5%22 cy=%229%22 r=%222.5%22 fill=%22%23ccc%22/%3E %3C/svg%3E");
}
.mw-wiki-logo
{
filter: hue-rotate(180deg) invert(1);
}
#mw-page-base
{
background: linear-gradient(linear,right top,right bottom,color-stop(50%,var(--main-bg-color)),color-stop(100%,var(--light-bg-color)));
}
/* NAV */
.vectorTabs,
.vectorTabs span,
#mw-head .vectorMenu h3
{
background: linear-gradient(to bottom,var(--light-bg-color) 0,var(--lighter-bg-color) 100%);
}
.vectorTabs .selected span
{
background: linear-gradient(to bottom,var(--light-bg-color) 0,var(--main-bg-color) 100%);
}
.vectorTabs .selected a,
.vectorTabs .selected a:visited
{
color: var(--main-fg-color);
}
a,
.vectorTabs li a,
#mw-panel .portal .body li a,
.mw-parser-output a.external,
.mw-parser-output a.extiw,
.mw-parser-output a.extiw:active,
.toctogglelabel
{
color: var(--main-primary-color);
}
a:visited,
#mw-panel .portal .body li a:visited,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited
{
color: var(--light-primary-color);
}
#mw-panel .portal h3
{
color: var(--light-fg-color);
}
#simpleSearch input
{
color: var(--light-fg-color);
}
/* BODY */
.mw-body,
.parsoid-body
{
background-color: var(--main-bg-color);
color: var(--main-fg-color);
}
.mw-body
{
border-color: var(--border-color);
}
.mw-parser-output .external
{
background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23ccc%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23ccc%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
}
.toc,
.mw-warning,
.toccolours
{
background-color: var(--light-bg-color);
}
.tocnumber
{
color: var(--lighter-fg-color);
}
code,
pre,
.infobox
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
border-color: var(--border-color);
}
.note
{
background-color: var(--highlight-bg-color) !important;
color: var(--highlight-fg-color) !important;
border-color: var(--main-danger-color) !important;
}
.todo
{
background-color: var(--light-danger-color) !important;
color: var(--lighter-fg-color) !important;
border-color: var(--main-danger-color) !important;
}
.catlinks
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
border-color: var(--border-color);
}
#filetoc
{
background-color: var(--light-bg-color);
border-color: var(--border-color);
}
/* TABLE */
.wikitable
{
background-color: var(--light-bg-color);
color: var(--light-fg-color);
}
.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td
{
border-color: var(--border-color);
}
.wikitable > tr > th,
.wikitable > * > tr > th
{
background-color: var(--lighter-bg-color);
}
table.cargoTable.noMerge tr:first-child th,
table.cargoTable.noMerge tr:nth-child(2n)
{
background: var(--lighter-bg-color);
}
table.cargoTable.noMerge tr:nth-child(2n+1)
{
background: var(--main-bg-color);
}
.client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable),
.jquery-tablesorter th.headerSort
{
background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%229%22 fill=%22%23ccc%22 viewBox=%220 0 21 9%22%3E %3Cpath d=%22M14.5 5l-4 4-4-4zm0-1l-4-4-4 4z%22/%3E %3C/svg%3E");
}
table.feature-colors td.feature-yes,
.cargoTable td.feature-yes,
.feature-yes
{
background: var(--main-ok-color) !important;
}
table.feature-colors td.feature-partial,
.cargoTable td.feature-partial,
.feature-partial
{
background: var(--main-warning-color) !important;
}
table.feature-colors td.feature-unavailable,
.cargoTable td.feature-unavailable,
.feature-unavailable
{
background: var(--disable-bg) !important;
}
/* FOOTER */
#footer li
{
color: var(--light-fg-color);
}
#footer-poweredbyico img
{
filter: hue-rotate(180deg) invert(1);
}
/* HOME PAGE */
.mw-parser-output > div > div:nth-child(2)
{
background: var(--main-bg-color) !important;
}
.mw-parser-output > div > div:nth-child(2) > div:first-child,
.mw-parser-output > div > div:nth-child(2) > div > span span
{
background: var(--light-bg-color) !important;
}
.mw-parser-output > div > div:nth-child(2) > div img
{
filter: invert(0.83);
}
}
| 0.28897 | 0.068787 |
.classy-org-widget
{
font-family: "Open Sans", Arial, Helvetica, sans-serif;
font-size: 12pt;
margin-bottom: 30px;
}
.classy-org-widget h3.title
{
font-size: 1.2em;
}
/* Campaign Overview Tiles */
.classy-org-overview
{
text-align: center;
}
.classy-org-overview_item
{
border-radius: 3px;
display: inline-block;
margin: 10px 10px 0 0;
width: 120px;
min-height: 100px;
padding: 15px;
background-color: #f0f0f0;
vertical-align: top;
}
.classy-org-overview_item-stat
{
display: block;
font-size: 1.2em;
font-weight: 700;
margin-bottom: 15px;
}
.classy-org-overview_item-label
{
display: block;
font-size: 0.8em;
}
/* Campaign Overview Widget */
.classy-org-sidebar div.classy-org-overview_item
{
color: red;
display: block;
width: 100%;
min-height: 0;
}
/* Leaderboards */
.classy-org-leaderboard_item
{
margin-bottom: 10px;
}
.classy-org-leaderboard_item-info
{
margin-left: 10px;
}
.classy-org-leaderboard_item-info, .classy-org-leaderboard_item-image
{
display: inline-block;
vertical-align: middle;
}
.classy-org-leaderboard_item-image
{
background-color: #fff;
border-radius: 5px;
width: 50px;
height: 50px;
display: table;
float: left;
overflow: hidden;
}
.classy-org-leaderboard_item-image i,img
{
display: table-cell;
vertical-align: middle;
}
.classy-org-leaderboard_item-image i
{
background-color: #303030;
}
.classy-org-leaderboard_item-info-label
{
display: block;
}
.classy-org-leaderboard_item-info-metric
{
color: #909090;
display: block;
}
/* Progress Bars */
.classy-org-widget
{
font-family: "Open Sans", Arial, Helvetica, sans-serif;
font-size: 12pt;
}
.classy-org-progress::after
{
clear: both;
content: "";
display: table;
}
.classy-org-progress_raised
{
font-weight: 700;
color: #232a2f;
font-size: 1.5em;
}
.classy-org-progress_goal
{
font-size: .75em;
color: #727e83;
}
.classy-org-progress_bar-mask
{
width: 100%;
height: 15px;
background-color: #e2e2e2;
border-radius: 15px;
overflow: hidden;
margin: 10px 0 0;
}
.classy-org-progress_bar-value
{
height: 100%;
background-color: #303030;
border-radius: 15px;
transition: width 300ms ease;
}
/* Overview table */
table.classy-org-overview-table {
border: none;
border-collapse: collapse;
width: 100%
}
table.classy-org-overview-table > tbody > tr > td {
border-bottom: 1px solid #e2e2e2;
}
table.classy-org-overview-table > tbody > tr > td.classy-org-overview-table_metric {
color: #303030;
padding-left: 20px;
text-align: right;
}
table.classy-org-overview-table > tbody > tr > td.classy-org-overview-table_label {
font-weight: 700;
}
|
css/classy_org.css
|
.classy-org-widget
{
font-family: "Open Sans", Arial, Helvetica, sans-serif;
font-size: 12pt;
margin-bottom: 30px;
}
.classy-org-widget h3.title
{
font-size: 1.2em;
}
/* Campaign Overview Tiles */
.classy-org-overview
{
text-align: center;
}
.classy-org-overview_item
{
border-radius: 3px;
display: inline-block;
margin: 10px 10px 0 0;
width: 120px;
min-height: 100px;
padding: 15px;
background-color: #f0f0f0;
vertical-align: top;
}
.classy-org-overview_item-stat
{
display: block;
font-size: 1.2em;
font-weight: 700;
margin-bottom: 15px;
}
.classy-org-overview_item-label
{
display: block;
font-size: 0.8em;
}
/* Campaign Overview Widget */
.classy-org-sidebar div.classy-org-overview_item
{
color: red;
display: block;
width: 100%;
min-height: 0;
}
/* Leaderboards */
.classy-org-leaderboard_item
{
margin-bottom: 10px;
}
.classy-org-leaderboard_item-info
{
margin-left: 10px;
}
.classy-org-leaderboard_item-info, .classy-org-leaderboard_item-image
{
display: inline-block;
vertical-align: middle;
}
.classy-org-leaderboard_item-image
{
background-color: #fff;
border-radius: 5px;
width: 50px;
height: 50px;
display: table;
float: left;
overflow: hidden;
}
.classy-org-leaderboard_item-image i,img
{
display: table-cell;
vertical-align: middle;
}
.classy-org-leaderboard_item-image i
{
background-color: #303030;
}
.classy-org-leaderboard_item-info-label
{
display: block;
}
.classy-org-leaderboard_item-info-metric
{
color: #909090;
display: block;
}
/* Progress Bars */
.classy-org-widget
{
font-family: "Open Sans", Arial, Helvetica, sans-serif;
font-size: 12pt;
}
.classy-org-progress::after
{
clear: both;
content: "";
display: table;
}
.classy-org-progress_raised
{
font-weight: 700;
color: #232a2f;
font-size: 1.5em;
}
.classy-org-progress_goal
{
font-size: .75em;
color: #727e83;
}
.classy-org-progress_bar-mask
{
width: 100%;
height: 15px;
background-color: #e2e2e2;
border-radius: 15px;
overflow: hidden;
margin: 10px 0 0;
}
.classy-org-progress_bar-value
{
height: 100%;
background-color: #303030;
border-radius: 15px;
transition: width 300ms ease;
}
/* Overview table */
table.classy-org-overview-table {
border: none;
border-collapse: collapse;
width: 100%
}
table.classy-org-overview-table > tbody > tr > td {
border-bottom: 1px solid #e2e2e2;
}
table.classy-org-overview-table > tbody > tr > td.classy-org-overview-table_metric {
color: #303030;
padding-left: 20px;
text-align: right;
}
table.classy-org-overview-table > tbody > tr > td.classy-org-overview-table_label {
font-weight: 700;
}
| 0.576542 | 0.126299 |
@charset "utf-8";
html,body{width:100%;height:100%;overflow:hidden; font-family: "Hiragino Sans GB W3"; color: #000}
a {text-decoration:none;}
/*block_1*/
.block_1{
height:100%;
overflow-y:scroll;
-webkit-overflow-scrolling:touch;
}
.header{
padding-top: 18px;
overflow: hidden;
zoom:1;
}
.logo{
/* background: url(../images/logo.png) no-repeat;*/
background-size: 165px auto;
width: 165px;
height: 26px;
float: left;
margin-left: 16px;
}
.rightTitle{
float: right;
margin: 5px 16px 0 0;
}
.rightTitle h2{
font-size: 16px;
color: #363636;
text-align: right;
line-height: 18px;
}
.rightTitle h2 span{
color: #0061bc;
}
.rightTitle p{
text-align: right;
font-size: 14px;
color: #535353;
line-height: 16px;
}
.indexMain{
width: 100%;
height: calc(100% - 92px);
position: relative;
}
.mainBg{
background-color: #ddd;
width: 100%;
height: 156px;
position: absolute;
z-index: 1;
top: 79px;
}
.banner{
width: 100%;
height: 235px;
background: url(../images/index_bg.png) center 5px no-repeat;
background-size: 320px auto;
position: relative;
z-index: 2;
}
.btn_1{
font-size: 26px;
font-weight: bold;
color: #fff;
display: block;
text-align: center;
width: 94px;
height: 85px;
position: absolute;
left: 50%;
margin-left: -44px;
top: 122px;
padding-top: 21px;
z-index: 3;
}
.words_1{
font-size: 14px;
color: #676767;
margin-top: 12px;
margin-bottom:12px;
}
.words_1 p{
line-height: 18px;
text-align: center;
}
.blcok_1 .footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 25px;
background: url(../images/footer_bg.png) center bottom no-repeat;
background-size:320px auto;
}
/*blcok_2*/
.block_2{
display: none;
height:100%;
}
.proList{
height:-webkit-calc(100% - 30px);
height:100%;
-webkit-overflow-scrolling:touch;
overflow-y:scroll;
zoom:1;
}
.tips{
width: 100%;
height: 25px;
/* background: url(../images/share_top.png) right center no-repeat #8A8A8A;*/
background-size: 320px;
position: relative;
}
.close{
position: absolute;
right: 0;
top: 0;
height: 25px;
width: 30px;
}
.planLine{
border-top: 1px solid #bfbfbf;
border-bottom: 1px solid #bfbfbf;
background-color: #D3D3D3;
width: 100%;
height: 6px;
}
.lineCur{
height: 6px;
width: 10%;
/* border-top: 1px solid #8CBEC5;*/
background-color: #8ED1EB;
}
.checkCon{
width:100%;
height:calc(100% - 50px);
/*-webkit-overflow-scrolling:touch;
overflow-y:scroll;
zoom:1;*/
}
.checkList{
width: 90%;
margin: 15px auto 30px;
}
.checkList h3{
color: #5c5c5c;
font-size: 14px;
font-weight: normal;
padding-bottom: 3px;
}
.checkList h3.red{
color:#C31010;
}
.checkList dl dt{
font-size: 16px;
/* color: #0078a4;*/
line-height: 26px;
margin-bottom: 10px;
}
.checkList dl dd{
margin-bottom: 11px;
}
.checkList dl dd a{
display: block;
font-size: 15px;
color: #000;
width: calc(100% - 15px);
padding-left: 15px;
height: 43px;
line-height: 43px;
/*
background-color: #DCDCDC;
border-bottom: 1px solid #FAFAFA;
*/
border-radius: 10px;
}
.checkList dl dd.cur a{
background-color: #8ED1EB;
border-bottom-color: #C9E5F0;
}
.btnWrap{
overflow:hidden;
zoom:1;
width: 100%;
}
.btnWrap .nextBtn{
float: left;
width: 200px;
height: 45px;
margin-left: 35px;
display: inline;
background: url(../images/next_btn.png) center center no-repeat;
background-size: 200px auto;
}
.btnWrap span{
float: left;
font: 14px/18px arial;
color: #000d0d;
margin: 30px 0 0 15px;
display: inline;
}
.block_2 .footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 30px;
background-color: #ECECEC;
text-align: center;
}
.block_2 .footer a{
color: #4190ad;
font-size: 14px;
line-height: 30px;
}
/*遮罩层*/
.share_overmask{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75)}
.share_overmask.show{display:block;z-index:100}
.share_overmask .share_arrow,.share_overmask .share_words{display:block;background-image:url(../images/share_tips.png);-webkit-background-size:308px 82px;background-size:308px 82px}
.share_overmask .share_arrow{float:right;margin:5px 20px 0 0;width:78px;height:76px;background-position:-230px 0; cursor: pointer;}
.share_overmask .share_words{margin:100px auto 0;width:222px;height:82px; cursor: pointer;}
/*block_3*/
.block_3{
display: none;
width: 100%;
height: 100%;
background-color: #EBEBEB;
}
.countBg{
width: 115px;
height: 33px;
float: right;
background: url(../images/count.png) no-repeat;
background-size: 115px auto;
margin: 30px 15px 5px 0;
}
.showCon{
width: 320px;
height: 275px;
margin: 0 auto;
background: url(../images/body_g.png) center center no-repeat;
background-size: 320px auto;
position: relative;
}
.shareBtn{
display: block;
width: 186px;
height: 56px;
background: url(../images/share_btn.png) no-repeat;
background-size: 186px auto;
position: absolute;
left: 60px;
bottom:52px;
}
.words_2{
position: absolute;
top: 72px;
left: 50%;
font-size: 24px;
color: #0b0b0b;
line-height: 32px;
width: 260px;
margin-left: -130px;
text-align: center;
}
.words_2 p span{
color: #c31010;
}
.block_3 .footer{
width: 100%;
font-size: 14px;
color: #656565;
line-height: 18px;
text-align: center;
position: fixed;
bottom: 20px;
left: 0;
}
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape),
only screen and (orientation : portrait) {
}
/*retina 2X*/
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2) {
/* .logo{background-image: url(../images/[email protected]);}*/
.banner{background-image: url(../images/[email protected]);}
.blcok_1 .footer{background-image: url(../images/[email protected]);}
.tips{background-image: url(../images/[email protected]);}
.nextBtn{background-image: url(../images/[email protected]);}
.countBg{background-image: url(../images/[email protected]);}
.showCon{background-image: url(../images/[email protected]);}
.shareBtn{background-image: url(../images/[email protected]);}
}
|
css/style.css
|
@charset "utf-8";
html,body{width:100%;height:100%;overflow:hidden; font-family: "Hiragino Sans GB W3"; color: #000}
a {text-decoration:none;}
/*block_1*/
.block_1{
height:100%;
overflow-y:scroll;
-webkit-overflow-scrolling:touch;
}
.header{
padding-top: 18px;
overflow: hidden;
zoom:1;
}
.logo{
/* background: url(../images/logo.png) no-repeat;*/
background-size: 165px auto;
width: 165px;
height: 26px;
float: left;
margin-left: 16px;
}
.rightTitle{
float: right;
margin: 5px 16px 0 0;
}
.rightTitle h2{
font-size: 16px;
color: #363636;
text-align: right;
line-height: 18px;
}
.rightTitle h2 span{
color: #0061bc;
}
.rightTitle p{
text-align: right;
font-size: 14px;
color: #535353;
line-height: 16px;
}
.indexMain{
width: 100%;
height: calc(100% - 92px);
position: relative;
}
.mainBg{
background-color: #ddd;
width: 100%;
height: 156px;
position: absolute;
z-index: 1;
top: 79px;
}
.banner{
width: 100%;
height: 235px;
background: url(../images/index_bg.png) center 5px no-repeat;
background-size: 320px auto;
position: relative;
z-index: 2;
}
.btn_1{
font-size: 26px;
font-weight: bold;
color: #fff;
display: block;
text-align: center;
width: 94px;
height: 85px;
position: absolute;
left: 50%;
margin-left: -44px;
top: 122px;
padding-top: 21px;
z-index: 3;
}
.words_1{
font-size: 14px;
color: #676767;
margin-top: 12px;
margin-bottom:12px;
}
.words_1 p{
line-height: 18px;
text-align: center;
}
.blcok_1 .footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 25px;
background: url(../images/footer_bg.png) center bottom no-repeat;
background-size:320px auto;
}
/*blcok_2*/
.block_2{
display: none;
height:100%;
}
.proList{
height:-webkit-calc(100% - 30px);
height:100%;
-webkit-overflow-scrolling:touch;
overflow-y:scroll;
zoom:1;
}
.tips{
width: 100%;
height: 25px;
/* background: url(../images/share_top.png) right center no-repeat #8A8A8A;*/
background-size: 320px;
position: relative;
}
.close{
position: absolute;
right: 0;
top: 0;
height: 25px;
width: 30px;
}
.planLine{
border-top: 1px solid #bfbfbf;
border-bottom: 1px solid #bfbfbf;
background-color: #D3D3D3;
width: 100%;
height: 6px;
}
.lineCur{
height: 6px;
width: 10%;
/* border-top: 1px solid #8CBEC5;*/
background-color: #8ED1EB;
}
.checkCon{
width:100%;
height:calc(100% - 50px);
/*-webkit-overflow-scrolling:touch;
overflow-y:scroll;
zoom:1;*/
}
.checkList{
width: 90%;
margin: 15px auto 30px;
}
.checkList h3{
color: #5c5c5c;
font-size: 14px;
font-weight: normal;
padding-bottom: 3px;
}
.checkList h3.red{
color:#C31010;
}
.checkList dl dt{
font-size: 16px;
/* color: #0078a4;*/
line-height: 26px;
margin-bottom: 10px;
}
.checkList dl dd{
margin-bottom: 11px;
}
.checkList dl dd a{
display: block;
font-size: 15px;
color: #000;
width: calc(100% - 15px);
padding-left: 15px;
height: 43px;
line-height: 43px;
/*
background-color: #DCDCDC;
border-bottom: 1px solid #FAFAFA;
*/
border-radius: 10px;
}
.checkList dl dd.cur a{
background-color: #8ED1EB;
border-bottom-color: #C9E5F0;
}
.btnWrap{
overflow:hidden;
zoom:1;
width: 100%;
}
.btnWrap .nextBtn{
float: left;
width: 200px;
height: 45px;
margin-left: 35px;
display: inline;
background: url(../images/next_btn.png) center center no-repeat;
background-size: 200px auto;
}
.btnWrap span{
float: left;
font: 14px/18px arial;
color: #000d0d;
margin: 30px 0 0 15px;
display: inline;
}
.block_2 .footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 30px;
background-color: #ECECEC;
text-align: center;
}
.block_2 .footer a{
color: #4190ad;
font-size: 14px;
line-height: 30px;
}
/*遮罩层*/
.share_overmask{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75)}
.share_overmask.show{display:block;z-index:100}
.share_overmask .share_arrow,.share_overmask .share_words{display:block;background-image:url(../images/share_tips.png);-webkit-background-size:308px 82px;background-size:308px 82px}
.share_overmask .share_arrow{float:right;margin:5px 20px 0 0;width:78px;height:76px;background-position:-230px 0; cursor: pointer;}
.share_overmask .share_words{margin:100px auto 0;width:222px;height:82px; cursor: pointer;}
/*block_3*/
.block_3{
display: none;
width: 100%;
height: 100%;
background-color: #EBEBEB;
}
.countBg{
width: 115px;
height: 33px;
float: right;
background: url(../images/count.png) no-repeat;
background-size: 115px auto;
margin: 30px 15px 5px 0;
}
.showCon{
width: 320px;
height: 275px;
margin: 0 auto;
background: url(../images/body_g.png) center center no-repeat;
background-size: 320px auto;
position: relative;
}
.shareBtn{
display: block;
width: 186px;
height: 56px;
background: url(../images/share_btn.png) no-repeat;
background-size: 186px auto;
position: absolute;
left: 60px;
bottom:52px;
}
.words_2{
position: absolute;
top: 72px;
left: 50%;
font-size: 24px;
color: #0b0b0b;
line-height: 32px;
width: 260px;
margin-left: -130px;
text-align: center;
}
.words_2 p span{
color: #c31010;
}
.block_3 .footer{
width: 100%;
font-size: 14px;
color: #656565;
line-height: 18px;
text-align: center;
position: fixed;
bottom: 20px;
left: 0;
}
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape),
only screen and (orientation : portrait) {
}
/*retina 2X*/
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2) {
/* .logo{background-image: url(../images/[email protected]);}*/
.banner{background-image: url(../images/[email protected]);}
.blcok_1 .footer{background-image: url(../images/[email protected]);}
.tips{background-image: url(../images/[email protected]);}
.nextBtn{background-image: url(../images/[email protected]);}
.countBg{background-image: url(../images/[email protected]);}
.showCon{background-image: url(../images/[email protected]);}
.shareBtn{background-image: url(../images/[email protected]);}
}
| 0.170128 | 0.038466 |
@font-face {
font-family: GoogleSans-Regular;
src: url(../font/GoogleSans-Regular.ttf);
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0;
background-color: #fff;
font-family: Arial, Helvetica, sans-serif;
height: 100%;
width: 100%;
}
body .text-scroll {
margin-top: 120px;
padding: 0 15px;
font-size: 20px;
}
@media screen and (max-width: 580px) {
body .text-scroll {
margin-top: 75px;
}
}
#navbar {
overflow: hidden;
background: -webkit-gradient(linear, left top, right top, from(#e4e5e6), to(#00416a));
background: linear-gradient(to right, #e4e5e6, #00416a);
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
-webkit-transition: 0.4s;
transition: 0.4s;
position: fixed;
width: 100%;
top: 0;
z-index: 99;
}
#navbar a {
float: left;
display: block;
color: #000;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 18px;
line-height: 15px;
border-radius: 4px;
}
#navbar #logo {
font-size: 35px;
font-weight: bold;
-webkit-transition: 0.4s;
transition: 0.4s;
}
#navbar #information {
position: absolute;
margin-top: 1.6em;
margin-left: 42.2%;
color: #fff;
font-family: 'GoogleSans-Regular', sans-serif;
font-size: 1em;
letter-spacing: 0.3175px;
word-spacing: 0;
}
#social-msg {
color: #000;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 35px;
-webkit-transition: 0.4s;
transition: 0.4s;
font-weight: bold;
line-height: 15px;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
#navbar a.active {
background-color: dodgerblue;
color: white;
}
#navbar-right {
float: right;
}
@media screen and (max-width: 580px) {
#navbar a {
float: none;
display: block;
text-align: left;
}
#navbar-right {
float: none;
}
#logo {
width: 180px;
}
}
.cointainer {
width: 100%;
background-color: #fff;
display: -ms-grid;
display: grid;
margin: 5px 0.5px;
-ms-grid-rows: (150px)[3];
grid-template-rows: repeat(3, 150px);
-ms-grid-columns: (20%)[5];
grid-template-columns: repeat(5, 20%);
grid-row-gap: 10px;
}
.item {
padding: 2px;
cursor: pointer;
text-align: center;
vertical-align: middle;
font-size: 14px;
font-family: sans-serif;
line-height: 155px;
color: #fff;
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.itemr--1 {
background-color: #e44236;
}
.itemr--2 {
background-color: #b83227;
}
.itemr--3 {
background-color: #d63031;
}
.itemr--4 {
background-color: #e84342;
}
.itemr--5 {
background-color: #ff3031;
}
.itemr--6 {
background-color: #ba2f16;
}
.itemr--7 {
background-color: #ec4849;
}
.itemr--8 {
background-color: #ff3e4d;
}
.itemr--9 {
background-color: #e71c23;
}
.itemr--10 {
background-color: #ea425c;
}
.itemr--11 {
background-color: #e8290b;
}
.itemr--12 {
background-color: #ae1438;
}
.itemr--13 {
background-color: #e83350;
}
.itemr--14 {
background-color: #ff4848;
}
.itemr--15 {
background-color: #ff362e;
}
.itemb--1 {
background-color: #3498db;
}
.itemb--2 {
background-color: #2475b0;
}
.itemb--3 {
background-color: #74b9ff;
}
.itemb--4 {
background-color: #0a79df;
}
.itemb--5 {
background-color: #4834df;
}
.itemb--6 {
background-color: #30336b;
}
.itemb--7 {
background-color: #487eb0;
}
.itemb--8 {
background-color: #192a56;
}
.itemb--9 {
background-color: #6a89cc;
}
.itemb--10 {
background-color: #0a3d62;
}
.itemb--11 {
background-color: #4bcffa;
}
.itemb--12 {
background-color: #0abde3;
}
.itemb--13 {
background-color: #25ccf7;
}
.itemb--14 {
background-color: #67e6cd;
}
.itemb--15 {
background-color: #3c40c6;
}
.itemg--1 {
background-color: #2ecc72;
}
.itemg--2 {
background-color: #26ae60;
}
.itemg--3 {
background-color: #6ab04c;
}
.itemg--4 {
background-color: #6ab04a;
}
.itemg--5 {
background-color: #badc57;
}
.itemg--6 {
background-color: #43be31;
}
.itemg--7 {
background-color: #45ce30;
}
.itemg--8 {
background-color: #10a881;
}
.itemg--9 {
background-color: #1bca98;
}
.itemg--10 {
background-color: #7cec9f;
}
.itemg--11 {
background-color: #019031;
}
.itemg--12 {
background-color: #a3cb37;
}
.itemg--13 {
background-color: #75da8b;
}
.itemg--14 {
background-color: #53e0bc;
}
.itemg--15 {
background-color: #218f76;
}
.itemy--1 {
background-color: #eec213;
}
.itemy--2 {
background-color: #f5c469;
}
.itemy--3 {
background-color: #f4c724;
}
.itemy--4 {
background-color: #f0dd87;
}
.itemy--5 {
background-color: #dfaf2b;
}
.itemy--6 {
background-color: #fac42f;
}
.itemy--7 {
background-color: #f3b63a;
}
.itemy--8 {
background-color: #fbd28b;
}
.itemy--9 {
background-color: #f3b431;
}
.itemy--10 {
background-color: #fad02e;
}
.itemy--11 {
background-color: #e5b143;
}
.itemy--12 {
background-color: #f3cc79;
}
.itemy--13 {
background-color: #f9dda4;
}
.itemy--14 {
background-color: #fff222;
}
.itemy--15 {
background-color: #e1da00;
}
.itemgr--1 {
background-color: #7b8788;
}
.itemgr--2 {
background-color: #99aaab;
}
.itemgr--3 {
background-color: #2c3335;
}
.itemgr--4 {
background-color: #616c6f;
}
.itemgr--5 {
background-color: #dae0e2;
}
.itemgr--6 {
background-color: #535c68;
}
.itemgr--7 {
background-color: #333945;
}
.itemgr--8 {
background-color: #2f363f;
}
.itemgr--9 {
background-color: #586776;
}
.itemgr--10 {
background-color: #8395a7;
}
.itemgr--11 {
background-color: #a4b0bd;
}
.itemgr--12 {
background-color: #777e8b;
}
.itemgr--13 {
background-color: #758aa2;
}
.itemgr--14 {
background-color: #47535e;
}
.itemgr--15 {
background-color: #4c4b4b;
}
.item:hover {
-webkit-transform: translateY(0px) scale(0.9);
transform: translateY(0px) scale(0.9);
z-index: 1;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.color-name {
width: 18%;
font-family: "GoogleSans-Regular", sans-serif;
letter-spacing: 0.3175px;
font-size: 24px;
text-align: center;
-webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
}
.spcmar {
margin-top: 100px;
}
@media screen and (max-width: 1024px) {
.color-name {
width: 20%;
font-size: 22px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 992px) {
.color-name {
width: 20%;
font-size: 20px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 768px) {
.color-name {
width: 20%;
font-size: 15.5px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 580px) {
.item {
font-size: 12px;
}
.color-name {
width: 30%;
font-size: 15px;
}
.spcmar {
margin-top: 50px;
}
}
@media screen and (max-width: 384px) {
.item {
font-size: 11px;
}
.color-name {
width: 35%;
font-size: 12px;
}
.spcmar {
margin-top: 50px;
}
}
.progress-container {
width: 100%;
height: 6px;
background: #ccc;
}
.progress-bar {
height: 6px;
background: #bc3285;
width: 0%;
}
::-webkit-scrollbar {
display: none;
}
.fa-heart-o {
color: #ff3030;
font-size: 36px;
margin: 0 2px;
}
.footer__text > * {
display: block;
text-align: center;
font-size: 0.8rem;
padding: 5px 0;
}
.footer__text {
margin-top: 5rem;
font-family: 'GoogleSans-Regular', sans-serif;
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.footer_para {
line-height: 100%;
}
#green {
color: #06cf4a;
}
@media screen and (max-width: 580px) {
.footer__text > * {
font-size: 0.6rem;
}
.footer__text {
margin-top: 2rem;
}
.fa-heart-o {
font-size: 16px;
}
}
/*# sourceMappingURL=main.css.map */
|
styles/main.css
|
@font-face {
font-family: GoogleSans-Regular;
src: url(../font/GoogleSans-Regular.ttf);
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0;
background-color: #fff;
font-family: Arial, Helvetica, sans-serif;
height: 100%;
width: 100%;
}
body .text-scroll {
margin-top: 120px;
padding: 0 15px;
font-size: 20px;
}
@media screen and (max-width: 580px) {
body .text-scroll {
margin-top: 75px;
}
}
#navbar {
overflow: hidden;
background: -webkit-gradient(linear, left top, right top, from(#e4e5e6), to(#00416a));
background: linear-gradient(to right, #e4e5e6, #00416a);
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
-webkit-transition: 0.4s;
transition: 0.4s;
position: fixed;
width: 100%;
top: 0;
z-index: 99;
}
#navbar a {
float: left;
display: block;
color: #000;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 18px;
line-height: 15px;
border-radius: 4px;
}
#navbar #logo {
font-size: 35px;
font-weight: bold;
-webkit-transition: 0.4s;
transition: 0.4s;
}
#navbar #information {
position: absolute;
margin-top: 1.6em;
margin-left: 42.2%;
color: #fff;
font-family: 'GoogleSans-Regular', sans-serif;
font-size: 1em;
letter-spacing: 0.3175px;
word-spacing: 0;
}
#social-msg {
color: #000;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 35px;
-webkit-transition: 0.4s;
transition: 0.4s;
font-weight: bold;
line-height: 15px;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
#navbar a.active {
background-color: dodgerblue;
color: white;
}
#navbar-right {
float: right;
}
@media screen and (max-width: 580px) {
#navbar a {
float: none;
display: block;
text-align: left;
}
#navbar-right {
float: none;
}
#logo {
width: 180px;
}
}
.cointainer {
width: 100%;
background-color: #fff;
display: -ms-grid;
display: grid;
margin: 5px 0.5px;
-ms-grid-rows: (150px)[3];
grid-template-rows: repeat(3, 150px);
-ms-grid-columns: (20%)[5];
grid-template-columns: repeat(5, 20%);
grid-row-gap: 10px;
}
.item {
padding: 2px;
cursor: pointer;
text-align: center;
vertical-align: middle;
font-size: 14px;
font-family: sans-serif;
line-height: 155px;
color: #fff;
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.itemr--1 {
background-color: #e44236;
}
.itemr--2 {
background-color: #b83227;
}
.itemr--3 {
background-color: #d63031;
}
.itemr--4 {
background-color: #e84342;
}
.itemr--5 {
background-color: #ff3031;
}
.itemr--6 {
background-color: #ba2f16;
}
.itemr--7 {
background-color: #ec4849;
}
.itemr--8 {
background-color: #ff3e4d;
}
.itemr--9 {
background-color: #e71c23;
}
.itemr--10 {
background-color: #ea425c;
}
.itemr--11 {
background-color: #e8290b;
}
.itemr--12 {
background-color: #ae1438;
}
.itemr--13 {
background-color: #e83350;
}
.itemr--14 {
background-color: #ff4848;
}
.itemr--15 {
background-color: #ff362e;
}
.itemb--1 {
background-color: #3498db;
}
.itemb--2 {
background-color: #2475b0;
}
.itemb--3 {
background-color: #74b9ff;
}
.itemb--4 {
background-color: #0a79df;
}
.itemb--5 {
background-color: #4834df;
}
.itemb--6 {
background-color: #30336b;
}
.itemb--7 {
background-color: #487eb0;
}
.itemb--8 {
background-color: #192a56;
}
.itemb--9 {
background-color: #6a89cc;
}
.itemb--10 {
background-color: #0a3d62;
}
.itemb--11 {
background-color: #4bcffa;
}
.itemb--12 {
background-color: #0abde3;
}
.itemb--13 {
background-color: #25ccf7;
}
.itemb--14 {
background-color: #67e6cd;
}
.itemb--15 {
background-color: #3c40c6;
}
.itemg--1 {
background-color: #2ecc72;
}
.itemg--2 {
background-color: #26ae60;
}
.itemg--3 {
background-color: #6ab04c;
}
.itemg--4 {
background-color: #6ab04a;
}
.itemg--5 {
background-color: #badc57;
}
.itemg--6 {
background-color: #43be31;
}
.itemg--7 {
background-color: #45ce30;
}
.itemg--8 {
background-color: #10a881;
}
.itemg--9 {
background-color: #1bca98;
}
.itemg--10 {
background-color: #7cec9f;
}
.itemg--11 {
background-color: #019031;
}
.itemg--12 {
background-color: #a3cb37;
}
.itemg--13 {
background-color: #75da8b;
}
.itemg--14 {
background-color: #53e0bc;
}
.itemg--15 {
background-color: #218f76;
}
.itemy--1 {
background-color: #eec213;
}
.itemy--2 {
background-color: #f5c469;
}
.itemy--3 {
background-color: #f4c724;
}
.itemy--4 {
background-color: #f0dd87;
}
.itemy--5 {
background-color: #dfaf2b;
}
.itemy--6 {
background-color: #fac42f;
}
.itemy--7 {
background-color: #f3b63a;
}
.itemy--8 {
background-color: #fbd28b;
}
.itemy--9 {
background-color: #f3b431;
}
.itemy--10 {
background-color: #fad02e;
}
.itemy--11 {
background-color: #e5b143;
}
.itemy--12 {
background-color: #f3cc79;
}
.itemy--13 {
background-color: #f9dda4;
}
.itemy--14 {
background-color: #fff222;
}
.itemy--15 {
background-color: #e1da00;
}
.itemgr--1 {
background-color: #7b8788;
}
.itemgr--2 {
background-color: #99aaab;
}
.itemgr--3 {
background-color: #2c3335;
}
.itemgr--4 {
background-color: #616c6f;
}
.itemgr--5 {
background-color: #dae0e2;
}
.itemgr--6 {
background-color: #535c68;
}
.itemgr--7 {
background-color: #333945;
}
.itemgr--8 {
background-color: #2f363f;
}
.itemgr--9 {
background-color: #586776;
}
.itemgr--10 {
background-color: #8395a7;
}
.itemgr--11 {
background-color: #a4b0bd;
}
.itemgr--12 {
background-color: #777e8b;
}
.itemgr--13 {
background-color: #758aa2;
}
.itemgr--14 {
background-color: #47535e;
}
.itemgr--15 {
background-color: #4c4b4b;
}
.item:hover {
-webkit-transform: translateY(0px) scale(0.9);
transform: translateY(0px) scale(0.9);
z-index: 1;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.color-name {
width: 18%;
font-family: "GoogleSans-Regular", sans-serif;
letter-spacing: 0.3175px;
font-size: 24px;
text-align: center;
-webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
}
.spcmar {
margin-top: 100px;
}
@media screen and (max-width: 1024px) {
.color-name {
width: 20%;
font-size: 22px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 992px) {
.color-name {
width: 20%;
font-size: 20px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 768px) {
.color-name {
width: 20%;
font-size: 15.5px;
}
.spcmar {
margin-top: 70px;
}
}
@media screen and (max-width: 580px) {
.item {
font-size: 12px;
}
.color-name {
width: 30%;
font-size: 15px;
}
.spcmar {
margin-top: 50px;
}
}
@media screen and (max-width: 384px) {
.item {
font-size: 11px;
}
.color-name {
width: 35%;
font-size: 12px;
}
.spcmar {
margin-top: 50px;
}
}
.progress-container {
width: 100%;
height: 6px;
background: #ccc;
}
.progress-bar {
height: 6px;
background: #bc3285;
width: 0%;
}
::-webkit-scrollbar {
display: none;
}
.fa-heart-o {
color: #ff3030;
font-size: 36px;
margin: 0 2px;
}
.footer__text > * {
display: block;
text-align: center;
font-size: 0.8rem;
padding: 5px 0;
}
.footer__text {
margin-top: 5rem;
font-family: 'GoogleSans-Regular', sans-serif;
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.footer_para {
line-height: 100%;
}
#green {
color: #06cf4a;
}
@media screen and (max-width: 580px) {
.footer__text > * {
font-size: 0.6rem;
}
.footer__text {
margin-top: 2rem;
}
.fa-heart-o {
font-size: 16px;
}
}
/*# sourceMappingURL=main.css.map */
| 0.31785 | 0.091626 |
* {
font-family: 'Anonymous Pro' ;
}
body {
background-color: #FFF;
height: 100%;
font-size: 16px;
overflow: hidden;
padding: 20px;
}
body p {
font-family: 'News Cycle', sans-serif, 'Tahoma', sans-serif;
font-size: 1.2em;
}
h4 {
font-family: 'Consolas', sans-serif;
font-weight: bold;
font-size: 1.5em;
}
h2 {
font-family: 'Zilla Slab', serif;
font-weight: bold;
}
body a {
text-decoration: none;
color: #999;
}
body a:hover {
text-decoration: none;
color: #f68060;
}
.contact-image img {
width: 100px !important;
margin-bottom: 50px;
}
.highlight-title {
font-size: 25px;
color: #f68060;
}
.logo-pic img {
width: 100px !important;
}
.navbar-top {
text-decoration: none;
font-size: 16px;
font-weight: lighter;
float:right;
margin-top: 50px;
color: #999;
}
.navbar-top li {
display: inline;
padding: 0.5em;
color: #000;
}
.btn-custom {
background-color: #f68060 !important;
color: #474646;
}
.btn-custom:hover {
transition: box-shadow .3s;
box-shadow: 0 0 15px rgba(252, 169, 141);
color: #FFF;
}
.btn-custom:active {
border-top: 10px;
box-shadow: 0 9px #d8a211;
cursor: pointer;
transform: translateY(4px);
}
.page-content-wrapper {
background-color: #fff;
margin-left: 5%;
}
.banner-top img {
border-radius: 50%;
width: 250px;
height: 250px;
}
.body-text {
max-width: 800px;
}
.container-wrapper {
margin-top: 80px;
}
.social-media-icons {
font-size: 40px;
margin-top: 2.4em;
}
.social-media-icons li {
display: inline;
text-decoration: none;
}
.social-media-icons a:hover {
border: none;
color: #f68060;
}
.social-media-icons a {
color: #999;
}
.social-media-icons ul {
padding-left: 0;
}
.sub-title {
background-color: #f2b529;
color: #FFF;
font-size: 16px;
}
.form-control:focus {
border-color: #8c9af2;
}
.btn-primary {
background-color: #354193 !important;
}
.adress-block {
background-color: #f2f1dc;
padding: 1.2em;
border-radius: 8px;
max-width: 800px;
background: repeating-linear-gradient(
45deg,
#cccccc,
#FFF 2px,
#FFF 2px,
#FFF 6px
);
}
a:active {
color: #F2B529;
font-weight: bold;
}
|
contact.css
|
* {
font-family: 'Anonymous Pro' ;
}
body {
background-color: #FFF;
height: 100%;
font-size: 16px;
overflow: hidden;
padding: 20px;
}
body p {
font-family: 'News Cycle', sans-serif, 'Tahoma', sans-serif;
font-size: 1.2em;
}
h4 {
font-family: 'Consolas', sans-serif;
font-weight: bold;
font-size: 1.5em;
}
h2 {
font-family: 'Zilla Slab', serif;
font-weight: bold;
}
body a {
text-decoration: none;
color: #999;
}
body a:hover {
text-decoration: none;
color: #f68060;
}
.contact-image img {
width: 100px !important;
margin-bottom: 50px;
}
.highlight-title {
font-size: 25px;
color: #f68060;
}
.logo-pic img {
width: 100px !important;
}
.navbar-top {
text-decoration: none;
font-size: 16px;
font-weight: lighter;
float:right;
margin-top: 50px;
color: #999;
}
.navbar-top li {
display: inline;
padding: 0.5em;
color: #000;
}
.btn-custom {
background-color: #f68060 !important;
color: #474646;
}
.btn-custom:hover {
transition: box-shadow .3s;
box-shadow: 0 0 15px rgba(252, 169, 141);
color: #FFF;
}
.btn-custom:active {
border-top: 10px;
box-shadow: 0 9px #d8a211;
cursor: pointer;
transform: translateY(4px);
}
.page-content-wrapper {
background-color: #fff;
margin-left: 5%;
}
.banner-top img {
border-radius: 50%;
width: 250px;
height: 250px;
}
.body-text {
max-width: 800px;
}
.container-wrapper {
margin-top: 80px;
}
.social-media-icons {
font-size: 40px;
margin-top: 2.4em;
}
.social-media-icons li {
display: inline;
text-decoration: none;
}
.social-media-icons a:hover {
border: none;
color: #f68060;
}
.social-media-icons a {
color: #999;
}
.social-media-icons ul {
padding-left: 0;
}
.sub-title {
background-color: #f2b529;
color: #FFF;
font-size: 16px;
}
.form-control:focus {
border-color: #8c9af2;
}
.btn-primary {
background-color: #354193 !important;
}
.adress-block {
background-color: #f2f1dc;
padding: 1.2em;
border-radius: 8px;
max-width: 800px;
background: repeating-linear-gradient(
45deg,
#cccccc,
#FFF 2px,
#FFF 2px,
#FFF 6px
);
}
a:active {
color: #F2B529;
font-weight: bold;
}
| 0.370567 | 0.076546 |
@import url("http://fonts.googleapis.com/css?family=Ubuntu:300,400,700,300italic,400italic,700italic");
:focus {
outline: medium none !important;
}
body {
font-family: "Ubuntu", Arial !important;
background-color: #edeeef;
}
ul {
margin: 0;
padding: 0;
}
figure {
margin: 0;
padding: 0;
}
h2 {
font-size: 15px;
color: #a1a1a1;
line-height: 16px;
text-transform: uppercase;
}
p {
color: #5a5a5a;
line-height: 22px;
font-weight: 300;
}
nav ul {
display: inline-block;
list-style: none;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
textarea {
padding: 10px 20px;
box-shadow: inset 0px 4px 7px #ebeced;
background-color: #f9f9f9;
border-color: #c3c5c9;
font-weight: 300;
font-family: "Ubuntu", Arial !important;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='tel']:focus,
textarea:focus {
background-color: #f1f7ff;
}
input[type='text']:invalid,
input[type='password']:invalid,
input[type='email']:invalid,
input[type='tel']:invalid,
textarea:invalid {
background-color: #fff4f1;
color: #f66442;
border-color: #f66442;
}
.tooltip.bottom .tooltip-arrow {
right: 20px;
left: auto !important;
}
.tooltip-inner {
padding: 15px 23px;
-webkit-border-radius: 2px;
-webkit-background-clip: padding-box;
-moz-border-radius: 2px;
-moz-background-clip: padding;
border-radius: 2px;
background-clip: padding-box;
}
.top-form h2 {
color: white;
font-size: 15px;
}
.top-form p {
font-weight: 300;
color: white;
}
.top-form address {
color: white;
font-weight: 300 !important;
}
.top-form address strong {
font-weight: bold !important;
}
.top-form input[type='text'],
.top-form input[type='password'],
.top-form input[type='email'],
.top-form textarea {
padding: 10px 15px;
border-color: #325a95;
}
.top-form input[type='text']::-webkit-input-placeholder,
.top-form input[type='password']::-webkit-input-placeholder,
.top-form input[type='email']::-webkit-input-placeholder,
.top-form textarea::-webkit-input-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']:-moz-placeholder,
.top-form input[type='password']:-moz-placeholder,
.top-form input[type='email']:-moz-placeholder,
.top-form textarea:-moz-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']::-moz-placeholder,
.top-form input[type='password']::-moz-placeholder,
.top-form input[type='email']::-moz-placeholder,
.top-form textarea::-moz-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']:-ms-input-placeholder,
.top-form input[type='password']:-ms-input-placeholder,
.top-form input[type='email']:-ms-input-placeholder,
.top-form textarea:-ms-input-placeholder {
color: #b9b9b9;
}
.top-form input[type='text'],
.top-form input[type='password'],
.top-form input[type='email'] {
height: 40px;
}
.top-form .btn-primary {
background-color: #2b5188;
background-image: none;
font-weight: bold;
font-size: 14px;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
padding: 10px 20px;
float: right;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
text-transform: uppercase;
font-family: "Ubuntu", Arial !important;
}
#hidden-header {
width: 100%;
float: left;
background-image: url('../img/hidden-header.png');
height: 408px;
border-bottom: solid 1px #325280;
margin-top: -409px;
}
#hidden-header .profile-form {
padding-top: 90px;
display: none;
}
#hidden-header .contact-form {
padding-top: 40px;
display: none;
}
header {
width: 100%;
float: left;
background: url('../img/header.png') repeat-x;
height: 51px;
position: relative;
z-index: 1000;
}
header .logo a {
display: inline-block;
}
#homepage-slider {
background-color: #2b5188;
height: 275px;
float: left;
width: 100%;
position: relative;
z-index: 0;
margin-top: -1px;
margin-bottom: -46px;
}
#homepage-slider .container {
position: relative;
height: 236px;
}
#homepage-slider ul {
list-style: none;
}
#homepage-slider ul li {
position: relative;
height: 236px;
}
#homepage-slider .controls {
position: absolute;
bottom: 15px;
left: 0;
z-index: 200;
}
#homepage-slider .controls a {
width: 34px;
height: 34px;
background-image: url('../img/slider-controls.png');
text-indent: -9999px;
text-transform: capitalize;
float: left;
margin-right: 5px;
}
#homepage-slider .controls a.next {
background-position: -34px 0;
}
#homepage-slider .controls a.next:hover {
background-position: -34px -34px;
}
#homepage-slider .controls a.prev {
background-position: 0px 0;
}
#homepage-slider .controls a.prev:hover {
background-position: 0px -34px;
}
#homepage-slider .text-box {
margin-left: 0;
margin-top: 30px;
}
#homepage-slider .text-box h1 a {
font-size: 41px;
line-height: 42px;
font-weight: bold;
margin: 0;
color: white;
}
#homepage-slider .text-box p {
color: white;
font-size: 15px;
}
#homepage-slider .description {
position: absolute;
bottom: 15px;
right: 0;
background-color: #09101b;
text-align: center;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
#homepage-slider .description .left {
float: left;
width: 200px;
}
#homepage-slider .description .right {
width: 100px;
float: left;
border-left: solid 1px #222832;
padding: 15px 0;
}
#homepage-slider .description .title {
float: left;
width: 100%;
border-bottom: solid 1px #222832;
padding: 2px 0;
}
#homepage-slider .description .title .big {
color: white;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
}
#homepage-slider .description .title .small {
color: #b5b7ba;
font-size: 13px;
font-weight: 300;
}
#homepage-slider .description .rooms {
float: left;
width: 100%;
color: #b5b7ba;
font-size: 13px;
font-weight: 300;
padding: 2px 0;
}
#homepage-slider .description .price {
color: white;
}
#homepage-slider .description .price .number {
font-size: 21px;
font-weight: bold;
}
#homepage-slider .description .price .rate {
font-size: 13px;
}
#homepage-slider .bg-image {
text-align: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 0;
height: 100%;
}
#homepage-slider .slider-wrapper {
width: 100%;
height: 275px;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#homepage-slider .controls-wrapper {
width: 100%;
position: absolute;
width: 100%;
top: 0;
left: 0;
}
#homepage-slider .homepage-slider {
width: 100%;
height: 275px;
overflow-y: hidden;
}
#homepage-slider ul li {
height: 275px !important;
}
#page-title {
background-color: #2b5188;
height: 185px;
float: left;
width: 100%;
position: relative;
z-index: 0;
margin-top: -1px;
margin-bottom: -46px;
padding-top: 30px;
}
#page-title.small-height {
margin-bottom: 20px;
height: 145px;
}
#page-title h1 {
color: white;
font-size: 41px;
line-height: 42px;
}
#page-title p {
color: white;
font-size: 15px;
}
#main {
width: 100%;
float: left;
position: relative;
z-index: 1;
}
#main .content-bubble {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
}
#content {
width: 100%;
float: left;
position: relative;
z-index: 1;
background-color: #f6f7f8;
border-top: solid 1px #c3c5c9;
padding-top: 35px;
}
#content.alternate-bg {
background-color: #edeeef;
}
#content.alternate-bg:after {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
content: "";
z-index: 3;
}
footer {
width: 100%;
float: left;
background-color: #fafafa;
border-top: solid 1px #c3c5c9;
padding: 10px 0 20px;
position: relative;
}
footer .footer-bubble {
background-image: url('../img/footer-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
}
#sub-footer {
background-color: #efefef;
width: 100%;
float: left;
border-top: solid 1px #c3c5c9;
padding: 10px 0;
}
#sub-footer .logo a {
display: inline-block;
}
#sub-footer .copyright {
color: #a7a7a7;
text-align: center;
margin-top: 15px;
}
#sub-footer .social-icons {
float: right;
margin-top: 10px;
}
#sub-footer .social-icons a {
width: 32px;
height: 32px;
display: inline-block;
text-indent: -9999px;
text-transform: capitalize;
margin-left: 8px;
background-image: url('../img/social-icons.png');
}
#sub-footer .social-icons a.be {
background-position: 0 0;
}
#sub-footer .social-icons a.star {
background-position: -40px 0;
}
#sub-footer .social-icons a.pinterest {
background-position: -80px 0;
}
#sub-footer .social-icons a.facebook {
background-position: -120px 0;
}
#sub-footer .social-icons a.twitter {
background-position: -160px 0;
}
.header-buttons {
float: right;
border-right: solid 1px #6395de;
}
.header-buttons a {
width: 49px;
height: 49px;
float: left;
background-position: center center;
background-repeat: no-repeat;
text-indent: -9999px;
text-transform: capitalize;
border-bottom: solid 1px transparent;
border-left: solid 1px #6395de;
border-right: solid 1px #2e5289;
}
.header-buttons a:hover {
background-color: #4071bc;
border-left: solid 1px transparent;
}
.header-buttons a.add {
border-left: solid 1px transparent;
background-image: url('../img/header-add.png');
}
.header-buttons a.add:hover {
border-left: solid 1px #2e5289;
}
.header-buttons a.contact {
background-image: url('../img/header-contact.png');
}
.header-buttons a.profile {
background-image: url('../img/header-profile.png');
}
.header-buttons a.closed {
border-top: solid 1px #4073bd;
border-bottom: solid 1px #6395de;
margin-top: -1px;
position: relative;
z-index: 300;
background-color: #4073bd !important;
border-left: solid 1px transparent;
background-image: url('../img/header-close.png') !important;
}
.main-nav {
text-align: center;
}
.main-nav > ul > li {
position: relative;
float: left;
}
.main-nav > ul > li.active a {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li > a {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
padding: 14px 15px;
display: inline-block;
color: white;
-webkit-opacity: 0.5;
-moz-opacity: 0.5;
opacity: 0.5;
text-decoration: none;
}
.main-nav > ul > li > a:hover {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li:hover a {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li:hover > .dropdown-menu {
display: block;
}
.main-nav > ul > li > .dropdown-menu {
top: 90%;
text-align: left;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.main-nav > ul > li > .dropdown-menu li a {
padding: 10px 20px;
color: #5a5a5a;
font-weight: 300;
}
.main-nav > ul > li > .dropdown-menu li a:hover {
background: none;
background-color: #efefef;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu > a:after {
border-color: transparent transparent transparent #414141;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu:hover > a {
background: none;
background-color: #efefef;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu:hover > a:after {
border-color: transparent transparent transparent #a1a1a1;
}
.main-nav > ul > li > .dropdown-menu:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
left: 20px;
position: absolute;
top: -7px;
}
.main-nav > ul > li > .dropdown-menu:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
left: 21px;
position: absolute;
top: -6px;
}
.tab-finder .nav-tabs {
float: left;
width: 100%;
margin-bottom: 0;
border-bottom-color: #c3c5c9;
}
.tab-finder .nav-tabs > .active > a {
border: 1px solid #c3c5c9;
border-bottom: solid 2px white;
border-left: 0px solid transparent;
background-color: white;
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
}
.tab-finder .nav-tabs > .active > a:hover {
background-color: white;
}
.tab-finder .nav-tabs > li {
margin-bottom: -2px;
}
.tab-finder .nav-tabs > li.first-tab > a {
-webkit-border-radius: 4px 0 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 0 0 0;
-moz-background-clip: padding;
border-radius: 4px 0 0 0;
background-clip: padding-box;
border-left: 1px solid #c3c5c9;
}
.tab-finder .nav-tabs > li.last-tab > a {
-webkit-border-radius: 0 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 4px 0 0;
-moz-background-clip: padding;
border-radius: 0 4px 0 0;
background-clip: padding-box;
}
.tab-finder .nav-tabs > li > a {
margin-right: 0px;
background-color: #e2e2e2;
border: 1px solid #c3c5c9;
border-left: 0px solid transparent;
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
color: #b8b8b8;
font-size: 15px;
padding-top: 12px;
padding-bottom: 12px;
}
.tab-finder .nav-tabs > li > a:hover {
background-color: #efefef;
color: #a1a1a1;
}
.tab-finder .nav-tabs li {
width: 25%;
float: left;
text-align: center;
text-transform: uppercase;
}
.tab-finder .tab-content {
float: left;
width: 100%;
background-color: white;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
overflow: visible;
}
.tab-finder .tab-content .inner {
padding: 30px 40px 20px;
border: solid 1px #c3c5c9;
border-top: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.tab-finder .tab-content form {
display: inline-block;
}
.tab-finder .tab-content form input {
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .filter-option {
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .search-string {
width: 628px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 125px;
}
.tab-finder .tab-content form .search-select {
width: 130px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 100px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .search-price.no-margin {
margin-right: 0;
}
.tab-finder .tab-content form .line-divider {
width: 12px;
text-align: center;
height: 50px;
display: inline-block;
color: #c3c5c9;
font-weight: 300;
}
.tab-finder .tab-content form .btn {
width: 238px;
padding-bottom: 10px;
padding-top: 10px;
text-transform: uppercase;
font-weight: bold;
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .btn.search-property {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/<KEY> <KEY>);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
font-size: 16px;
}
.tab-finder .tab-content form .btn.search-property:hover {
background-image: none;
background-color: #4479ca;
}
.bootstrap-select .caret {
background: url('../img/select-caret.png') no-repeat;
border: none;
height: 17px;
width: 8px;
margin-top: 2px;
}
.bootstrap-select .btn {
background-image: none;
background-color: white;
border: solid 1px #c3c5c9;
font-weight: 300 !important;
text-transform: capitalize !important;
}
.bootstrap-select .dropdown-menu {
overflow-y: visible !important;
text-align: right;
min-width: 90px !important;
right: 0;
left: auto;
top: 120%;
}
.bootstrap-select .dropdown-menu > li > a {
padding: 3px 10px;
color: #5a5a5a;
font-weight: 300;
}
.bootstrap-select .dropdown-menu > li > a:hover {
background: none;
background-color: #efefef;
}
.bootstrap-select .dropdown-menu:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 9px;
position: absolute;
top: -7px;
}
.bootstrap-select .dropdown-menu:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 10px;
position: absolute;
top: -6px;
}
.featured-items {
padding-bottom: 20px;
}
.featured-items .controls {
float: right;
margin-right: 0px;
margin-top: -22px;
}
.featured-items .controls a {
width: 16px;
height: 16px;
float: left;
background-image: url('../img/testimonial-controls.png');
text-indent: -9999px;
text-transform: capitalize;
text-decoration: none;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
margin-left: 5px;
}
.featured-items .controls a:hover {
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
opacity: 0.6;
}
.featured-items .controls a.prev {
background-position: 0px 0px;
}
.featured-items .controls a.next {
background-position: -20px 0px;
}
.featured-items .featured-items-slider {
width: 100%;
float: center;
}
.featured-items .featured-items-slider .slides {
list-style: none;
float: center;
width: 100%;
min-height: 270px;
}
.featured-items .featured-item {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
-webkit-box-shadow: 0px 0px 10px #d0d2d5;
-moz-box-shadow: 0px 0px 10px #d0d2d5;
box-shadow: 0px 0px 10px #d0d2d5;
color: 0px 0px 10px #d0d2d5;
}
.featured-items .featured-item:hover h3 a {
color: #4a83db;
}
.featured-items .featured-item:hover .top:before {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item:hover .top:after {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item .bubble {
width: 14px;
height: 9px;
background-image: url('../img/bubble.png');
position: absolute;
bottom: -8px;
right: 20px;
display: none;
}
.featured-items .featured-item .top {
background-color: white;
position: relative;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.featured-items .featured-item .top .inner-border {
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.featured-items .featured-item .top:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -6px;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.featured-items .featured-item .top:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -5px;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.2s ease-in;
-moz-transition: opacity 0.2s ease-in;
-o-transition: opacity 0.2s ease-in;
-ms-transition: opacity 0.2s ease-in;
transition: opacity 0.2s ease-in;
}
.featured-items .featured-item .bottom {
background-color: #efefef;
text-align: center;
display: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.featured-items .featured-item .bottom .inner-border {
border-top: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.featured-items .featured-item .bottom .inner-padding {
padding-bottom: 5px;
}
.featured-items .featured-item .bottom p {
color: #a9a9a9;
}
.featured-items .featured-item .inner-border {
border: solid 1px #c3c5c9;
}
.featured-items .featured-item .inner-padding {
padding: 11px;
}
.featured-items .featured-item figure {
margin-left: -1px;
margin-bottom: 10px;
width: 100%;
height: 130px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
}
.featured-items .featured-item figure:hover .figure-hover {
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
opacity: 0.4;
}
.featured-items .featured-item figure:hover .banner {
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
}
.featured-items .featured-item figure .banner {
background-color: #333333;
padding: 3px 10px;
position: absolute;
right: 0;
top: 0;
color: white;
font-size: 12px;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item figure .figure-hover {
width: 100%;
height: 100%;
background: url('../img/figure-zoom.png') no-repeat center center;
background-color: black;
position: absolute;
z-index: 20;
left: 0;
top: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
text-indent: -9999px;
}
.featured-items .featured-item figure img {
width: 100%;
height: auto;
}
.featured-items .featured-item h3 {
color: #414141;
font-size: 13px;
text-transform: uppercase;
line-height: 20px;
margin: 0;
}
.featured-items .featured-item h3 a {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
color: #414141;
text-decoration: none;
}
.featured-items .featured-item.featured-list {
margin-bottom: 20px;
}
.featured-items .featured-item.featured-list figure {
width: 30%;
height: 130px;
display: inline-block;
vertical-align: top;
}
.featured-items .featured-item.featured-list .right {
width: 65%;
margin-left: 3%;
display: inline-block;
vertical-align: top;
position: relative;
}
.featured-items .featured-item.featured-list .description p {
color: #414141;
font-size: 13px;
}
.featured-items .featured-item.featured-list .top:after {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item.featured-list .top:before {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item.featured-list .bottom {
display: block;
}
.featured-items .featured-item.featured-list .price-wrapper {
position: absolute;
top: 6px;
right: 0px;
}
.featured-items .featured-item.featured-list .bottom .inner-padding {
height: 30px;
}
.featured-items .featured-item.featured-list .bottom p {
float: left;
}
.featured-items .featured-item.featured-list .bottom .star-rating {
float: right;
}
.featured-items .featured-item-wrapper {
margin-bottom: 25px;
}
.featured-items .featured-item-wrapper {
min-height: 270px;
}
.slides li {
display: none;
}
.property-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
}
.property-box .left {
width: 70%;
float: left;
}
.property-box .left figure {
margin-left: -1px;
margin-bottom: 10px;
width: 100%;
min-height: 280px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
float: left;
}
.property-box .left figure .banner {
background-color: #333333;
padding: 3px 10px;
position: absolute;
right: 0;
top: 0;
color: white;
font-size: 12px;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.property-box .left figure img {
width: 100%;
height: auto;
}
.property-box .right {
width: 25%;
margin-left: 5%;
float: left;
}
.property-box .row {
margin-left: 0px;
}
.property-box .top {
padding: 20px 20px 30px;
background-color: white;
position: relative;
border-bottom: solid 1px #c3c5c9;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.property-box .top:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -7px;
}
.property-box .top:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -6px;
}
.property-box .bottom {
background-color: #efefef;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.property-box .bottom .inner {
padding: 10px 20px;
}
.property-box .bottom p {
float: left;
color: #b3b3b3;
font-size: 13px;
margin-bottom: 0;
}
.property-box .bottom .update-box p {
color: #414141;
}
.property-box .bottom .star-rating {
margin-left: 10px;
margin-top: 2px;
}
.property-box h3 {
font-size: 14px;
color: #414141;
margin-top: 0;
line-height: 14px;
}
.property-box h3 span {
font-weight: 300;
color: #a1a1a1;
}
.property-box .gallery {
width: 100%;
}
.property-box .gallery .line {
float: left;
width: 100%;
}
.property-box .gallery .line figure {
width: 46%;
float: left;
margin-left: 8%;
background-color: #edeeef;
margin-bottom: 8%;
}
.property-box .gallery .line figure a {
display: inline-block;
width: 100%;
}
.property-box .gallery .line figure img {
width: 100%;
height: auto;
}
.property-box .gallery .line figure:first-child {
margin-left: 0;
}
.property-box .gallery .more {
color: #cccccc;
width: 100%;
border: solid 3px #e9e9e9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
text-align: center;
text-transform: uppercase;
font-size: 14px;
text-decoration: none;
display: inline-block;
}
.property-box .title-line {
width: 100%;
float: left;
margin-top: 10px;
}
.property-box .title-line h2 {
color: #414141;
font-weight: bold;
font-size: 15px;
display: inline-block;
margin: 0;
}
.property-box .title-line p {
color: #7a7a7a;
font-size: 13px;
display: inline-block;
font-weight: 300;
}
.property-box .title-line .price {
color: #414141;
font-size: 18px;
display: inline-block;
font-weight: bold;
}
.property-box .description {
color: #414141;
font-size: 13px;
width: 100%;
float: left;
}
.property-box table {
width: 100%;
float: left;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-color: #f9f9f9;
color: #414141;
font-weight: 300;
}
.property-box table td {
padding: 10px;
}
.pagination {
text-align: center;
}
.pagination ul {
display: inline-block;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
}
.pagination ul li {
margin: 0 5px;
display: inline-block;
}
.pagination ul li a {
border: solid 1px #c3c5c9;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
color: #5a5a5a;
font-weight: 300;
}
.pagination ul li a:hover {
background-color: #edeeef;
}
.pagination ul li.active a {
color: white;
border-color: #4176c6;
background-color: #4378c7;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
}
.pagination ul li.first-element a {
color: #5a5a5a;
border: none;
background-color: transparent;
}
.pagination ul li.first-element a:before {
display: block;
float: left;
width: 0;
height: 0;
margin-top: 5px;
margin-left: -10px;
border-color: transparent;
border-right-color: #5a5a5a;
border-style: solid;
border-width: 5px 5px 5px 0;
content: " ";
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.pagination ul li.first-element a:hover {
color: #4a83db;
}
.pagination ul li.first-element a:hover:before {
border-right-color: #4a83db;
}
.pagination ul li.last-element a {
border: none;
color: #5a5a5a;
background-color: transparent;
}
.pagination ul li.last-element a:after {
display: block;
float: right;
width: 0;
height: 0;
margin-top: 5px;
margin-right: -10px;
border-color: transparent;
border-left-color: #5a5a5a;
border-style: solid;
border-width: 5px 0 5px 5px;
content: " ";
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.pagination ul li.last-element a:hover {
color: #4a83db;
}
.pagination ul li.last-element a:hover:after {
border-left-color: #4a83db;
}
.testimonial-box .flex-viewport {
float: left;
clear: both;
width: 100%;
}
.testimonial-box .controls {
float: right;
margin-right: 12px;
margin-top: -22px;
}
.testimonial-box .controls a {
width: 16px;
height: 16px;
float: left;
background-image: url('../img/testimonial-controls.png');
text-indent: -9999px;
text-transform: capitalize;
text-decoration: none;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
margin-left: 5px;
}
.testimonial-box .controls a:hover {
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
opacity: 0.6;
}
.testimonial-box .controls a.prev {
background-position: 0px 0px;
}
.testimonial-box .controls a.next {
background-position: -20px 0px;
}
.testimonial-box .slides {
float: left;
clear: both;
width: 100%;
list-style: none;
margin-top: 10px;
}
.testimonial-box .slide-box {
float: left;
}
.testimonial-box .slide-box .text-box {
background-color: white;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
position: relative;
margin-bottom: 20px;
-webkit-box-shadow: 0 -1px 4px #c3c5c9;
-moz-box-shadow: 0 -1px 4px #c3c5c9;
box-shadow: 0 -1px 4px #c3c5c9;
color: 0 -1px 4px #c3c5c9;
margin: 0 10px 10px 5px;
}
.testimonial-box .slide-box .text-box .inner {
padding: 10px;
}
.testimonial-box .slide-box .text-box .bubble {
width: 14px;
height: 9px;
background-image: url('../img/bubble.png');
position: absolute;
bottom: -9px;
right: 20px;
}
.testimonial-box .slide-box .author-box {
float: left;
width: 100%;
}
.testimonial-box .slide-box .author-box figure {
width: 55px;
height: 55px;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
background-color: #c3c5c9;
float: right;
overflow: hidden;
margin-left: 10px;
margin-right: 10px;
}
.testimonial-box .slide-box .author-box figure img {
width: 100%;
height: auto;
}
.testimonial-box .slide-box .author-box .texts {
float: right;
text-align: right;
margin-top: 7px;
}
.testimonial-box .slide-box .author-box .texts .name {
font-weight: bold;
color: #414141;
}
.testimonial-box .slide-box .author-box .texts .position {
color: #b3b3b3;
font-size: 13px;
font-weight: 300;
}
.blog-style article {
margin-bottom: 20px;
}
.blog-style article .text-box {
margin-left: 70px;
}
.blog-style article .text-box h3 {
color: #414141;
font-size: 16px;
line-height: 17px;
margin: 0;
}
.blog-style article .text-box h3 a {
color: #414141;
text-decoration: none;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.blog-style article .text-box h3 a:hover {
color: #4a83db;
}
.blog-style article .text-box .author {
font-size: 13px;
color: #9d9d9d;
font-weight: 300;
margin-bottom: 7px;
display: block;
}
.date-box {
float: left;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
width: 60px;
text-align: center;
overflow: hidden;
-webkit-box-shadow: 0px 0px 5px #d0d2d5;
-moz-box-shadow: 0px 0px 5px #d0d2d5;
box-shadow: 0px 0px 5px #d0d2d5;
color: 0px 0px 5px #d0d2d5;
}
.date-box .day {
background-color: white;
float: left;
width: 100%;
color: #414141;
font-size: 21px;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
font-weight: bold;
padding: 7px 0;
border-bottom: solid 1px #c3c5c9;
}
.date-box .month {
background-color: #efefef;
color: #757575;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
padding: 3px 0;
font-size: 13px;
font-weight: 300;
}
.read-more {
color: #4a83db;
font-weight: bold;
font-size: 13px;
text-transform: uppercase;
text-decoration: none;
}
.read-more:hover {
color: #245db5;
}
.price-wrapper {
float: right;
margin-top: 5px;
}
.price-wrapper .price {
font-size: 18px;
line-height: 19px;
display: inline-block;
color: #414141;
font-weight: bold;
}
.price-wrapper .rate {
display: inline-block;
vertical-align: top;
font-size: 11px;
line-height: 11px;
color: #414141;
font-weight: 300;
}
.star-rating {
float: left;
margin-top: 5px;
}
.star-rating .star {
width: 16px;
hieght: 16px;
background-image: url('../img/stars.png');
background-repeat: no-repeat;
background-position: 0 0;
text-indent: -9999px;
text-transform: capitalize;
border: none;
background-color: transparent;
}
.star-rating .star.active {
background-position: -16px 0;
}
.star-rating .star.blue {
background-position: -32px 0;
}
.widget {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
display: inline-block;
overflow: hidden;
margin-bottom: 20px;
width: 100%;
}
.widget .widget-title {
float: left;
background-color: #edeeef;
width: 100%;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
border-bottom: solid 1px #c3c5c9;
}
.widget .widget-title.uppercase h2 {
text-transform: uppercase;
}
.widget .widget-title .inner {
padding: 3px 20px;
}
.widget .widget-title h2 {
color: #414141;
text-transform: capitalize;
}
.widget .widget-list {
width: 100%;
float: left;
padding: 5px 0;
}
.widget .widget-list li {
width: 100%;
}
.widget .widget-list li a {
padding: 10px 20px;
color: #4a83db;
text-decoration: none;
display: block;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.widget .widget-list li a:hover {
background-color: #f6f7f8;
color: #717171;
}
.widget .widget-content {
background-color: white;
float: left;
width: 100%;
position: relative;
}
.widget .widget-content.top-arrow:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 29px;
position: absolute;
top: -7px;
}
.widget .widget-content.top-arrow:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 30px;
position: absolute;
top: -6px;
}
.widget .widget-content .inner {
padding: 10px 20px;
}
.widget .widget-content form {
margin: 0;
}
.widget .widget-section {
float: left;
width: 100%;
border-bottom: dashed 1px #c3c5c9;
}
.widget .widget-section .inner {
padding: 15px 20px;
}
.widget .widget-section .slider.slider-horizontal {
width: 100% !important;
}
.widget .widget-section.first-half {
width: 50%;
}
.widget .widget-section.first-half .inner {
padding: 15px 10px 15px 20px;
}
.widget .widget-section.second-half {
width: 50%;
}
.widget .widget-section.second-half .inner {
padding: 15px 20px 15px 10px;
}
.widget .widget-buttons {
float: left;
width: 100%;
text-align: center;
}
.widget .widget-buttons .inner {
padding: 0px 20px 15px;
}
.widget .widget-buttons .more-options {
color: #a5a5a5;
font-size: 12px;
text-decoration: none;
background-color: #efefef;
padding: 5px 15px;
display: inline-block;
font-weight: 300;
text-transform: uppercase;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.widget .widget-buttons .btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
margin-top: 30px;
border-color: #4176c6;
margin-bottom: 10px;
}
.widget .widget-buttons .btn:hover {
background-image: none;
background-color: #4479ca;
}
.widget .widget-buttons .btn:focus {
background-image: none;
background-color: #4479ca;
}
.widget input[type='text'] {
padding: 4px 10px;
height: 35px;
}
.widget .measure-type {
position: absolute;
right: 30px;
bottom: 33px;
color: #b9b9b9;
font-size: 14px;
font-weight: 300;
}
.widget .bootstrap-select {
margin-top: 0;
width: 100%;
}
.widget .bootstrap-select .btn {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: block;
width: 100%;
padding-right: 0;
padding-left: 0;
padding-top: 7px;
padding-bottom: 7px;
}
.widget span {
font-family: "Ubuntu", Arial !important;
}
.widget label {
color: #b9b9b9;
font-weight: 300;
text-transform: uppercase;
font-size: 12px;
margin-bottom: 1px;
}
.widget .slider-selection {
background-color: #4a83db;
background-image: none;
}
.widget .slider-track {
border: solid 1px #c3c5c9;
background-color: #efefef;
background-image: none;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
height: 12px !important;
}
.widget .slider-handle {
background-color: white;
background-image: url('../img/slider-handle.png');
background-repeat: no-repeat;
background-position: center center;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
border: solid 1px #c3c5c9;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
}
.widget .slider-handle:hover {
background-color: #edeeef;
}
.top-bar {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
float: left;
margin-bottom: 20px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-weight: 300;
color: #a1a1a1;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.top-bar strong {
color: #414141;
}
.top-bar .text-line {
margin-right: 5px;
}
.top-bar .bar-title {
width: 100%;
float: left;
background-color: #edeeef;
border-bottom: solid 1px #c3c5c9;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.top-bar .inner {
padding: 0px 20px;
}
.top-bar .custom-margin {
margin: 10px 0;
}
.top-bar .bootstrap-select.btn-group {
margin: 0;
}
.top-bar .bootstrap-select .btn {
font-family: "Ubuntu", Arial !important;
padding-top: 7px;
padding-bottom: 7px;
}
.top-bar .view-type {
margin-top: 12px;
}
.top-bar .view-type ul {
list-style: none;
display: inline-block;
margin: 0;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
overflow: hidden;
vertical-align: middle;
}
.top-bar .view-type ul li {
float: left;
}
.top-bar .view-type ul li a {
width: 30px;
height: 30px;
text-indent: -9999px;
float: left;
text-transform: capitalize;
border-right: solid 1px #c3c5c9;
background-position: center center;
background-repeat: no-repeat;
}
.top-bar .view-type ul li a:hover {
background-color: #edeeef;
}
.top-bar .view-type ul li a.grid {
background-image: url('../img/selector-list.png');
}
.top-bar .view-type ul li a.list {
background-image: url('../img/selector-grid.png');
}
.top-bar .view-type ul li a.location {
background-image: url('../img/selector-location.png');
}
.top-bar .view-type ul li.active a {
background-color: #4a83db;
}
.top-bar .view-type ul li.active a.grid {
background-image: url('../img/selector-list-hover.png');
}
.top-bar .view-type ul li.active a.list {
background-image: url('../img/selector-grid-hover.png');
}
.top-bar .view-type ul li.active a.location {
background-image: url('../img/selector-location-hover.png');
}
.top-bar .view-type ul li.last-element a {
border-right: none;
}
.top-bar .results-per-page ul {
list-style: none;
display: inline-block;
margin: 0;
vertical-align: middle;
}
.top-bar .results-per-page ul li {
float: left;
}
.top-bar .results-per-page ul li a {
padding: 5px 10px;
font-weight: bold;
color: #414141;
text-decoration: none;
}
.top-bar .results-per-page ul li a:hover {
color: #4a83db;
}
.top-bar .results-per-page ul li.active a {
color: #4a83db;
}
.top-bar .bar-bottom {
width: 100%;
float: left;
background-color: white;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
#contact-form {
float: left;
width: 100%;
background-color: #edeeef;
border-top: solid 1px #c3c5c9;
padding-top: 30px;
padding-bottom: 30px;
position: relative;
}
#contact-form:after {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
content: "";
z-index: 3;
}
.contact-box {
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
display: inline-block;
}
.contact-box .title-bar {
width: 100%;
float: left;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
background-color: #edeeef;
border-bottom: solid 1px #c3c5c9;
}
.contact-box .title-bar .inner {
padding: 15px 20px;
}
.contact-box .title-bar h2 {
color: #414141;
font-size: 18px;
text-transform: none;
margin: 0;
}
.contact-box .title-bar p {
color: #747575;
font-size: 13px;
margin: 4px 0 0;
}
.contact-box .contact-box-content {
width: 100%;
float: left;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
background-color: white;
}
.contact-box .contact-box-content .inner {
padding: 10px 20px;
}
.contact-box .contact-box-content .half {
width: 48%;
display: inline-block;
float: left;
}
.contact-box .contact-box-content .half.first-half {
margin-right: 4%;
}
.contact-box .contact-box-content input[type='text'],
.contact-box .contact-box-content input[type='password'],
.contact-box .contact-box-content input[type='email'],
.contact-box .contact-box-content input[type='tel'] {
height: 40px;
display: inline-block;
padding: 5px 10px;
}
.contact-box .contact-box-content textarea {
padding: 5px 10px;
}
.contact-box .contact-box-content input[type='submit'].btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB<KEY>
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
margin-top: 20px;
border-color: #4176c6;
margin-bottom: 10px;
font-family: "Ubuntu", Arial !important;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
}
.contact-box .contact-box-content input[type='submit'].btn:hover {
background-image: none;
background-color: #4479ca;
}
.contact-box .contact-box-content label {
font-size: 12px;
color: #b9b9b9;
font-weight: 300;
text-transform: uppercase;
}
.contact-box .contact-box-content label.checkbox {
text-transform: none;
font-size: 13px;
color: #5a5a5a;
}
.custom-multiple-select-filters {
width: 100%;
float: left;
margin-bottom: 4px;
}
.custom-multiple-select-filters span {
display: inline-block;
margin-right: 5px;
vertical-align: middle;
color: #a1a1a1;
font-size: 13px;
}
.custom-multiple-select-filters ul {
display: inline-block;
list-style: none;
vertical-align: middle;
}
.custom-multiple-select-filters ul li {
float: left;
color: #414141;
}
.custom-multiple-select-filters ul li.active a {
color: #4a83db;
}
.custom-multiple-select-filters ul li a {
font-size: 13px;
font-weight: bold;
color: #414141;
padding: 3px 6px;
text-decoration: none;
}
.custom-multiple-select-filters ul li a:hover {
color: #4a83db;
}
.custom-multiple-select-filters ul li a.active {
color: #4a83db;
}
.custom-multiple-select {
border: solid 1px #c3c5c9;
background-color: #f9f9f9;
width: 100%;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
height: 400px;
}
.custom-multiple-select .mCSB_container {
margin-right: 6px;
}
.custom-multiple-select .mCSB_scrollTools {
width: 7px;
}
.custom-multiple-select .mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
}
.custom-multiple-select select {
display: none;
}
.custom-multiple-select ul {
list-style: none;
width: 100%;
float: left;
}
.custom-multiple-select ul li {
float: left;
width: 100%;
cursor: pointer;
}
.custom-multiple-select ul li:after {
background-image: url('../img/ok-grey.png');
width: 17px;
height: 13px;
float: right;
content: ' ';
margin-right: 15px;
margin-top: -37px;
}
.custom-multiple-select ul li .inner-list {
padding: 10px 20px;
}
.custom-multiple-select ul li span {
color: #727272;
font-weight: 300;
font-size: 13px;
}
.custom-multiple-select ul li strong {
color: #727272;
font-size: 13px;
}
.custom-multiple-select ul li.selected {
background-color: #4a83db;
}
.custom-multiple-select ul li.selected:after {
background-image: url('../img/ok-white.png');
}
.custom-multiple-select ul li.selected span {
color: white;
}
.custom-multiple-select ul li.selected strong {
color: white;
}
.author-section {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
background-color: white;
margin-top: 0px;
margin-bottom: 20px;
}
.author-section.big-margins {
margin-top: 20px;
margin-bottom: 40px;
}
.author-section .left {
float: left;
border-right: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 80%;
}
.author-section .left .text {
position: relative;
}
.author-section .left .inner {
padding: 20px;
}
.author-section .left figure {
width: 110px;
height: 110px;
float: left;
margin-right: 20px;
background-color: #dddddd;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
margin-left: 20px;
-webkit-box-shadow: inset 0px 5px 7px #b4b4b4;
-moz-box-shadow: inset 0px 5px 7px #b4b4b4;
box-shadow: inset 0px 5px 7px #b4b4b4;
color: inset 0px 5px 7px #b4b4b4;
overflow: hidden;
}
.author-section .left .follow {
position: absolute;
top: 0px;
right: 0px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,<KEY>IC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 5px 15px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
}
.author-section .left .follow:hover {
background-image: none;
background-color: #4479ca;
}
.author-section .left .follow:focus {
background-image: none;
background-color: #4479ca;
}
.author-section .left .follow.active {
background-color: #f17235;
background-image: none;
border-color: #f17235;
}
.author-section .left .follow.active:hover {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.author-section .left .follow.active:focus {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.author-section .left h2 {
display: inline-block;
font-size: 16px;
color: #414141;
font-weight: bold;
margin: 0;
}
.author-section .left .job-title {
color: #a0a0a0;
font-size: 14px;
display: inline-block;
margin-bottom: 10px;
font-weight: 300;
}
.author-section .left p {
color: #5a5a5a;
font-weight: 300;
}
.author-section .right {
float: left;
width: 20%;
font-size: 14px;
color: #414141;
text-align: center;
}
.author-section .right .listings {
margin-top: 55px;
}
.author-section .right .number {
font-size: 21px;
font-weight: bold;
}
.agent-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
background-color: white;
margin-top: 0px;
margin-bottom: 20px;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.agent-box .text {
position: relative;
margin-left: 155px;
}
.agent-box .inner {
padding: 20px;
}
.agent-box figure {
width: 110px;
height: 110px;
float: left;
margin-right: 20px;
background-color: #dddddd;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
margin-left: 20px;
-webkit-box-shadow: inset 0px 5px 7px #b4b4b4;
-moz-box-shadow: inset 0px 5px 7px #b4b4b4;
box-shadow: inset 0px 5px 7px #b4b4b4;
color: inset 0px 5px 7px #b4b4b4;
overflow: hidden;
}
.agent-box .follow {
position: absolute;
top: 0px;
right: 0px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXN<KEY>
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 5px 15px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
}
.agent-box .follow:hover {
background-image: none;
background-color: #4479ca;
}
.agent-box .follow:focus {
background-image: none;
background-color: #4479ca;
}
.agent-box .follow.active {
background-color: #f17235;
background-image: none;
border-color: #f17235;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
}
.agent-box .follow.active:hover {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.agent-box .follow.active:focus {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.agent-box h2 {
display: inline-block;
font-size: 16px;
color: #414141;
font-weight: bold;
margin: 0;
}
.agent-box .job-title {
color: #a0a0a0;
font-size: 14px;
display: inline-block;
margin-bottom: 10px;
font-weight: 300;
}
.agent-box p {
color: #5a5a5a;
font-weight: 300;
}
.breadcrumb {
background-color: transparent;
padding: 0;
}
.breadcrumb li {
text-shadow: none;
}
.breadcrumb li a {
color: white;
font-size: 15px;
font-weight: 300;
}
.breadcrumb li.active {
color: white;
}
.blog-section article {
float: left;
margin-bottom: 20px;
width: 100%;
}
.blog-section .right {
margin-left: 80px;
}
.blog-section .right .text-box {
margin-left: 0;
}
.blog-section .text-box-bottom {
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
background-color: #efefef;
height: 40px;
border: solid 1px #c3c5c9;
border-top: none;
-webkit-box-shadow: 0 3px 10px #d0d2d5;
-moz-box-shadow: 0 3px 10px #d0d2d5;
box-shadow: 0 3px 10px #d0d2d5;
color: 0 3px 10px #d0d2d5;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 20px;
}
.blog-section .text-box-bottom .inner {
padding: 10px;
}
.blog-section .text-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
margin-left: 80px;
}
.blog-section .text-box.hasBottom {
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
position: relative;
}
.blog-section .text-box.hasBottom:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -7px;
}
.blog-section .text-box.hasBottom:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -6px;
}
.blog-section .text-box .inner {
padding: 20px;
}
.blog-section .text-box .bottom-buttons {
width: 100%;
display: inline-block;
margin-top: 10px;
}
.blog-section .text-box .bottom-buttons .comments-link {
margin-top: 5px;
font-size: 13px;
font-weight: 300;
color: #9d9d9d;
}
.blog-section .text-box .bottom-buttons .learn-more {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 10px 20px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
font-size: 15px;
text-shadow: 0px 0px 1px black;
}
.blog-section .text-box .bottom-buttons .learn-more:hover {
background-image: none;
background-color: #4479ca;
}
.blog-section .text-box .bottom-buttons .learn-more:focus {
background-image: none;
background-color: #4479ca;
}
.blog-section .text-box h3 {
color: #414141;
font-size: 16px;
line-height: 17px;
margin: 0;
}
.blog-section .text-box h3 a {
color: #414141;
text-decoration: none;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.blog-section .text-box h3 a:hover {
color: #4a83db;
}
.blog-section .text-box p {
color: #5a5a5a;
font-weight: 300;
}
.blog-section .text-box .col3 {
float: left;
width: 33.3333%;
}
.blog-section .text-box ul {
padding-left: 20px;
color: #5a5a5a;
font-size: 14px;
font-weight: 300;
}
.blog-section .text-box ul.custom-list {
list-style-image: url('../img/list-style1.png');
}
.blog-section .text-box ul.custom-list-double {
list-style-image: url('../img/list-style2.png');
}
.blog-section .text-box .author {
font-size: 13px;
color: #9d9d9d;
font-weight: 300;
margin-bottom: 7px;
display: block;
}
.blog-section .text-box .author a {
color: #9d9d9d;
}
.blog-section .text-box figure {
display: inline-block;
background-color: #edeeef;
height: 230px;
overflow: hidden;
}
.blog-section .text-box figure.big-figure {
width: 100%;
margin-bottom: 20px;
}
.blog-section .text-box figure.small-figure {
width: 40%;
}
.blog-section .text-box .text {
display: inline-block;
vertical-align: top;
}
.blog-section .text-box .text.big-figure {
width: 100%;
}
.blog-section .text-box .text.small-figure {
width: 54%;
margin-left: 4%;
}
.comments-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
padding-top: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.comments-box > .comment {
border-top: solid 1px #c3c5c9;
}
.comments-box > .comment:first-child {
border-top: none;
}
.comments-box .comment {
width: 100%;
display: inline-block;
}
.comments-box .comment .inner {
padding: 10px 20px 10px;
}
.comments-box .comment figure {
width: 59px;
height: 59px;
float: left;
}
.comments-box .comment .content {
margin-left: 70px;
}
.comments-box .comment h3 {
font-size: 14px;
color: black;
margin: 0;
margin-bottom: 10px;
line-height: 15px;
}
.comments-box .comment h3 a {
color: black;
text-decoration: none;
}
.comments-box .comment p {
color: #5a5a5a;
font-weight: 300;
font-size: 14px;
}
.comments-box .comment .time {
color: #c2c2c2;
font-size: 13px;
font-weight: 300;
}
.comments-box .comment .load-more {
color: #4983d9;
width: 100%;
font-size: 15px;
text-transform: uppercase;
text-decoration: none;
text-align: center;
display: block;
font-weight: bold;
padding: 5px 0;
}
.comment-form {
margin-top: 20px;
margin-bottom: 20px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.comment-form .inner {
padding: 20px;
}
.comment-form .inner > .row {
margin-left: 0;
}
.comment-form .half {
width: 48%;
float: left;
margin-left: 4%;
}
.comment-form .half.first-half {
margin-left: 0;
}
.comment-form .quarter {
width: 25%;
float: left;
margin-top: 10px;
}
.comment-form .quarter3 {
width: 71%;
margin-right: 4%;
float: left;
margin-top: 10px;
}
.comment-form input[type='text'],
.comment-form input[type='password'],
.comment-form input[type='email'],
.comment-form input[type='tel'] {
height: 40px;
display: inline-block;
padding: 5px 10px;
margin-bottom: 17px;
}
.comment-form textarea {
padding: 9px 10px;
}
.comment-form input[type='submit'].btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
margin-bottom: 10px;
font-family: "Ubuntu", Arial !important;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
}
.comment-form input[type='submit'].btn:hover {
background-image: none;
background-color: #4479ca;
}
.alert {
padding-top: 11px;
padding-bottom: 11px;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
text-shadow: none;
margin-bottom: 0;
}
.alert.alert-danger {
font-size: 14px;
color: white;
font-weight: 300;
background-color: #d95349;
border-color: #d95349;
}
.hero-unit {
text-align: center;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
padding: 30px;
margin-top: 30px;
}
.hero-unit h1 {
font-size: 24px;
color: #414141;
line-height: 25px;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0px;
}
.hero-unit p {
font-weight: 300;
color: #5a5a5a;
width: 70%;
display: inline-block;
font-size: 14px;
margin-bottom: 20px;
}
.hero-unit .btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 10px 30px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
font-size: 15px;
text-shadow: 0px 0px 1px black;
}
.hero-unit .btn:hover {
background-image: none;
background-color: #4479ca;
}
.hero-unit .btn:focus {
background-image: none;
background-color: #4479ca;
}
.full-width {
margin-top: 30px;
width: 100%;
float: left;
background-color: white;
position: relative;
z-index: 1;
padding: 20px 0 30px;
border-top: solid 1px #c3c5c9;
}
.full-width h2 {
margin-top: 0;
}
.big-numbers {
list-style: none;
padding-left: 30px;
color: #999999;
font-weight: 300;
}
.big-numbers li {
margin-bottom: 10px;
}
.big-numbers .number {
margin-left: -30px;
font-size: 24px;
font-weight: bold;
color: #5a5a5a;
display: inline-block;
vertical-align: top;
line-height: 27px;
}
.big-numbers .text {
display: inline-block;
vertical-align: top;
margin-left: 5px;
}
.stats5 {
width: 100%;
float: left;
}
.stats5 .stats-box {
width: 18%;
margin-left: 2.5%;
float: left;
background-color: white;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.stats5 .stats-box .inner {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
padding: 10px;
}
.stats5 .stats-box .number {
font-size: 50px;
color: #414141;
line-height: 51px;
display: inline-block;
width: 100%;
text-align: center;
margin-top: 10px;
}
.stats5 .stats-box .text {
font-size: 14px;
color: #414141;
font-weight: 300;
line-height: 15px;
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.stats5 .stats-box:first-child {
margin-left: 0;
}
.about-slider {
float: left;
width: 100%;
}
.description-box {
width: 100%;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-color: white;
float: left;
margin-bottom: 10px;
display: none;
}
.description-box:first-child {
display: block;
}
.description-box .inner {
padding: 20px;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.description-box .inner-container {
width: 100%;
display: inline-block;
}
.description-box figure {
float: left;
width: 40%;
height: 190px;
background-color: #edeeef;
margin-right: 20px;
margin-bottom: 5px;
}
figure img {
width: 100%;
max-height: 100%;
}
.description-box .list-container {
display: inline-block;
}
.description-box h2 {
color: #414141;
margin-top: 0;
margin-bottom: 20px;
}
.description-box ul {
padding-left: 20px;
color: #5a5a5a;
font-size: 14px;
font-weight: 300;
margin-bottom: 10px;
}
.description-box ul a {
color: #4a83db;
}
.description-box ul.custom-list {
list-style-image: url('../img/list-style1.png');
}
.description-box ul.custom-list-double {
list-style-image: url('../img/list-style2.png');
}
.description-controls {
float: left;
width: 100%;
}
.description-controls ul {
float: left;
list-style: none;
}
.description-controls ul li {
width: 100%;
float: left;
margin-bottom: 10px;
}
.description-controls ul li a {
border: solid 1px #c3c5c9;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
background-color: white;
padding: 10px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
text-decoration: none;
color: #414141;
font-weight: 300;
}
.description-controls ul li a:hover {
background-color: #edeeef;
}
.description-controls ul li a.active {
background-color: #4a83db;
color: white;
}
blockquote {
font-size: 18px;
line-height: 25px;
color: #b1b1b1;
border-left: solid 2px #4a83db;
margin-left: 40px;
font-weight: 300;
}
.location-finder {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
background-color: white;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
overflow: hidden;
position: relative;
}
.location-finder .button-slider {
position: absolute;
visibility: visible;
top: 48%;
left: 0%;
background-image: url('../img/button-slider.png');
width: 7px;
height: 17px;
padding: 5px 3px;
-webkit-border-radius: 0 4px 4px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 4px 4px 0;
-moz-background-clip: padding;
border-radius: 0 4px 4px 0;
background-clip: padding-box;
border: solid 1px #c3c5c9;
border-left: none;
background-position: center center;
background-repeat: no-repeat;
z-index: 2000;
background-color: #ffffff;
}
.location-finder #map_canvas {
width: 100%;
height: 750px;
}
.location-finder .left-side {
-webkit-border-radius: 4px 0 4px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 0 4px 0;
-moz-background-clip: padding;
border-radius: 4px 0 4px 0;
background-clip: padding-box;
float: left;
width: 40%;
height: 750px;
overflow-y: auto;
position: relative;
z-index: 200;
top: 0px;
left: 0px;
background-color: white;
}
.location-finder .left-side .mCSB_container {
margin-right: 7px;
}
.location-finder .left-side .mCustomScrollBox > .mCSB_scrollTools {
width: 8px;
}
.location-finder .left-side .mCS-dark-thick > .mCSB_scrollTools .mCSB_draggerRail {
width: 6px;
background-color: white;
border-right: solid 1px #c3c5c9;
}
.location-finder .left-side .mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
background-color: black;
}
.location-finder article {
width: 100%;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top: solid 1px #c3c5c9;
border-right: solid 1px #c3c5c9;
float: left;
cursor: pointer;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.location-finder article:hover {
background-color: #edeeef;
}
.location-finder article:first-child {
border-top: none;
}
.location-finder article figure {
float: left;
width: 40%;
height: 80px;
margin-left: -1px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
background-color: white;
}
.location-finder article figure img {
width: 100%;
height: auto;
}
.location-finder article .text {
float: left;
width: 45%;
margin-left: 5%;
}
.location-finder article h3 {
font-size: 14px;
line-height: 15px;
color: black;
margin: 0;
text-transform: uppercase;
}
.location-finder article p {
color: #747575;
font-size: 13px;
font-weight: 300;
margin-bottom: 20px;
}
.location-finder article .price {
font-size: 18px;
font-weight: bold;
color: #414141;
}
.location-finder .right-side {
float: left;
width: 60%;
position: relative;
}
#clearFilters {
font-size: 12px;
color: #a5a5a5;
font-weight: 300;
width: 100%;
text-align: center;
padding: 3px 0;
float: left;
margin-top: -20px;
text-transform: uppercase;
}
@media (min-width: 1200px) {
.property-box .gallery .line figure, .property-box .gallery .line figure img {
min-height: 80px;
}
.tab-finder .tab-content form .search-string {
width: 800px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 185px;
}
.tab-finder .tab-content form .search-select {
width: 160px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 155px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .btn {
width: 300px;
padding-bottom: 10px;
padding-top: 10px;
}
.agent-box figure {
margin-left: 25px;
}
.comment-form input[type='text'],
.comment-form input[type='password'],
.comment-form input[type='email'],
.comment-form input[type='tel'] {
margin-bottom: 9px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.main-nav > ul > li > a {
padding: 14px 8px;
}
.widget .widget-section.first-half {
width: 100%;
}
.widget .widget-section.first-half .inner {
padding: 15px 20px;
}
.widget .widget-section.second-half {
width: 100%;
}
.widget .widget-section.second-half .inner {
padding: 15px 20px;
}
.tab-finder .tab-content form .search-string {
width: 484px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 55px;
}
.tab-finder .tab-content form .search-select {
width: 115px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 55px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .btn {
width: 144px;
padding-bottom: 10px;
padding-top: 10px;
}
.alert.alert-danger {
padding: 10px;
font-size: 11px;
}
}
@media (min-width: 200px) and (max-width: 767px) {
.stats5 {
float: none;
}
.stats5 .stats-box {
width: 100%;
margin-left: 0;
margin-bottom: 10px;
float: none;
}
.tab-finder .tab-content .inner {
padding: 30px 20px 20px;
}
.tab-finder .tab-content form .search-string {
width: 217px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 217px;
}
.tab-finder .tab-content form .search-select {
width: 260px;
margin-right: 15px;
margin-bottom: 10px;
}
.tab-finder .tab-content form .search-price {
width: 260px;
margin-right: 15px;
margin-bottom: 10px;
height: 45px;
}
.tab-finder .tab-content form .line-divider {
display: none;
}
.tab-finder .tab-content form .btn {
width: 260px;
padding-bottom: 10px;
padding-top: 10px;
}
.blog-section .right {
margin-left: 0;
float: left;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-top: 10px;
}
.blog-section .text-box {
float: left;
margin-left: 0;
margin-top: 10px;
}
.blog-section .text-box .col3 {
width: 100%;
margin-bottom: 10px;
}
.location-finder {
margin-bottom: 10px;
}
.blog-section .text-box figure.small-figure {
width: 100%;
margin-bottom: 20px;
}
.blog-section .text-box .text.small-figure {
margin-left: 0;
width: 100%;
}
.comments-box .comment .content {
float: left;
width: 100%;
margin-left: 0;
}
.comments-box .comment figure {
margin-bottom: 10px;
}
.comment-form .half {
width: 100%;
margin-left: 0;
}
.comment-form .quarter3 {
width: 100%;
}
.comment-form .quarter {
width: 100%;
margin-left: 0;
}
#page-title.small-height {
height: auto;
}
.description-box figure {
width: 100%;
margin-bottom: 20px;
}
.about-slider {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width .span4 {
margin-bottom: 10px;
}
.pagination {
float: left;
width: 100%;
}
.pagination ul li {
margin: 0 1px;
}
.pagination ul li a {
padding: 3px 7px;
font-size: 12px;
}
.featured-items {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.featured-items .featured-item-wrapper {
margin-bottom: 35px;
}
footer {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#sub-footer {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
}
#sub-footer .social-icons {
float: none;
display: inline-block;
}
.tinynav {
display: inline-block;
margin: 0 auto;
}
header {
padding: 0 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
position: relative;
}
header .span3 {
width: 50%;
float: left;
}
header .span6 {
position: absolute;
bottom: -40px;
width: 92%;
}
.header-buttons a {
width: 40px;
}
#homepage-slider {
height: 100px;
}
.tab-finder .nav-tabs > li > a {
word-wrap: break-word;
font-size: 13px;
}
#page-title {
padding-left: 10px;
padding-right: 10px;
height: 210px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#page-title h1 {
margin-top: 15px;
font-size: 30px;
line-height: 31px;
}
.contact-box .contact-box-content .half {
width: 100%;
}
.contact-box .contact-box-content .half.first-half {
margin-right: 0;
}
#contact-form aside {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.featured-items .featured-item.featured-list figure {
width: 100%;
}
.featured-items .featured-item.featured-list .right {
width: 100%;
}
.top-bar .view-type {
width: 100%;
}
.top-bar .results-per-page {
width: 100%;
}
#content {
padding-top: 5px;
}
.property-box .left {
width: 100%;
}
.property-box .right {
width: 100%;
margin-left: 0;
}
.author-section .left {
width: 100%;
border-right: none;
border-bottom: solid 1px #c3c5c9;
}
.author-section .left .text {
float: left;
width: 100%;
margin-top: 10px;
}
.author-section .left figure {
margin-left: 0;
}
.author-section .left .follow {
top: -80px;
}
.author-section .right {
width: 100%;
}
.author-section .right .listings {
margin-top: 20px;
margin-bottom: 20px;
}
#hidden-header {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-x: scroll;
}
#hidden-header .profile-form {
padding-top: 0;
}
#hidden-header .contact-form {
padding-top: 0;
}
}
@media (min-width: 200px) and (max-width: 340px) {
body {
padding: 0;
}
}
|
demo/web/static/css/style.css
|
@import url("http://fonts.googleapis.com/css?family=Ubuntu:300,400,700,300italic,400italic,700italic");
:focus {
outline: medium none !important;
}
body {
font-family: "Ubuntu", Arial !important;
background-color: #edeeef;
}
ul {
margin: 0;
padding: 0;
}
figure {
margin: 0;
padding: 0;
}
h2 {
font-size: 15px;
color: #a1a1a1;
line-height: 16px;
text-transform: uppercase;
}
p {
color: #5a5a5a;
line-height: 22px;
font-weight: 300;
}
nav ul {
display: inline-block;
list-style: none;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
textarea {
padding: 10px 20px;
box-shadow: inset 0px 4px 7px #ebeced;
background-color: #f9f9f9;
border-color: #c3c5c9;
font-weight: 300;
font-family: "Ubuntu", Arial !important;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='tel']:focus,
textarea:focus {
background-color: #f1f7ff;
}
input[type='text']:invalid,
input[type='password']:invalid,
input[type='email']:invalid,
input[type='tel']:invalid,
textarea:invalid {
background-color: #fff4f1;
color: #f66442;
border-color: #f66442;
}
.tooltip.bottom .tooltip-arrow {
right: 20px;
left: auto !important;
}
.tooltip-inner {
padding: 15px 23px;
-webkit-border-radius: 2px;
-webkit-background-clip: padding-box;
-moz-border-radius: 2px;
-moz-background-clip: padding;
border-radius: 2px;
background-clip: padding-box;
}
.top-form h2 {
color: white;
font-size: 15px;
}
.top-form p {
font-weight: 300;
color: white;
}
.top-form address {
color: white;
font-weight: 300 !important;
}
.top-form address strong {
font-weight: bold !important;
}
.top-form input[type='text'],
.top-form input[type='password'],
.top-form input[type='email'],
.top-form textarea {
padding: 10px 15px;
border-color: #325a95;
}
.top-form input[type='text']::-webkit-input-placeholder,
.top-form input[type='password']::-webkit-input-placeholder,
.top-form input[type='email']::-webkit-input-placeholder,
.top-form textarea::-webkit-input-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']:-moz-placeholder,
.top-form input[type='password']:-moz-placeholder,
.top-form input[type='email']:-moz-placeholder,
.top-form textarea:-moz-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']::-moz-placeholder,
.top-form input[type='password']::-moz-placeholder,
.top-form input[type='email']::-moz-placeholder,
.top-form textarea::-moz-placeholder {
color: #b9b9b9;
}
.top-form input[type='text']:-ms-input-placeholder,
.top-form input[type='password']:-ms-input-placeholder,
.top-form input[type='email']:-ms-input-placeholder,
.top-form textarea:-ms-input-placeholder {
color: #b9b9b9;
}
.top-form input[type='text'],
.top-form input[type='password'],
.top-form input[type='email'] {
height: 40px;
}
.top-form .btn-primary {
background-color: #2b5188;
background-image: none;
font-weight: bold;
font-size: 14px;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
padding: 10px 20px;
float: right;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
text-transform: uppercase;
font-family: "Ubuntu", Arial !important;
}
#hidden-header {
width: 100%;
float: left;
background-image: url('../img/hidden-header.png');
height: 408px;
border-bottom: solid 1px #325280;
margin-top: -409px;
}
#hidden-header .profile-form {
padding-top: 90px;
display: none;
}
#hidden-header .contact-form {
padding-top: 40px;
display: none;
}
header {
width: 100%;
float: left;
background: url('../img/header.png') repeat-x;
height: 51px;
position: relative;
z-index: 1000;
}
header .logo a {
display: inline-block;
}
#homepage-slider {
background-color: #2b5188;
height: 275px;
float: left;
width: 100%;
position: relative;
z-index: 0;
margin-top: -1px;
margin-bottom: -46px;
}
#homepage-slider .container {
position: relative;
height: 236px;
}
#homepage-slider ul {
list-style: none;
}
#homepage-slider ul li {
position: relative;
height: 236px;
}
#homepage-slider .controls {
position: absolute;
bottom: 15px;
left: 0;
z-index: 200;
}
#homepage-slider .controls a {
width: 34px;
height: 34px;
background-image: url('../img/slider-controls.png');
text-indent: -9999px;
text-transform: capitalize;
float: left;
margin-right: 5px;
}
#homepage-slider .controls a.next {
background-position: -34px 0;
}
#homepage-slider .controls a.next:hover {
background-position: -34px -34px;
}
#homepage-slider .controls a.prev {
background-position: 0px 0;
}
#homepage-slider .controls a.prev:hover {
background-position: 0px -34px;
}
#homepage-slider .text-box {
margin-left: 0;
margin-top: 30px;
}
#homepage-slider .text-box h1 a {
font-size: 41px;
line-height: 42px;
font-weight: bold;
margin: 0;
color: white;
}
#homepage-slider .text-box p {
color: white;
font-size: 15px;
}
#homepage-slider .description {
position: absolute;
bottom: 15px;
right: 0;
background-color: #09101b;
text-align: center;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
#homepage-slider .description .left {
float: left;
width: 200px;
}
#homepage-slider .description .right {
width: 100px;
float: left;
border-left: solid 1px #222832;
padding: 15px 0;
}
#homepage-slider .description .title {
float: left;
width: 100%;
border-bottom: solid 1px #222832;
padding: 2px 0;
}
#homepage-slider .description .title .big {
color: white;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
}
#homepage-slider .description .title .small {
color: #b5b7ba;
font-size: 13px;
font-weight: 300;
}
#homepage-slider .description .rooms {
float: left;
width: 100%;
color: #b5b7ba;
font-size: 13px;
font-weight: 300;
padding: 2px 0;
}
#homepage-slider .description .price {
color: white;
}
#homepage-slider .description .price .number {
font-size: 21px;
font-weight: bold;
}
#homepage-slider .description .price .rate {
font-size: 13px;
}
#homepage-slider .bg-image {
text-align: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 0;
height: 100%;
}
#homepage-slider .slider-wrapper {
width: 100%;
height: 275px;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#homepage-slider .controls-wrapper {
width: 100%;
position: absolute;
width: 100%;
top: 0;
left: 0;
}
#homepage-slider .homepage-slider {
width: 100%;
height: 275px;
overflow-y: hidden;
}
#homepage-slider ul li {
height: 275px !important;
}
#page-title {
background-color: #2b5188;
height: 185px;
float: left;
width: 100%;
position: relative;
z-index: 0;
margin-top: -1px;
margin-bottom: -46px;
padding-top: 30px;
}
#page-title.small-height {
margin-bottom: 20px;
height: 145px;
}
#page-title h1 {
color: white;
font-size: 41px;
line-height: 42px;
}
#page-title p {
color: white;
font-size: 15px;
}
#main {
width: 100%;
float: left;
position: relative;
z-index: 1;
}
#main .content-bubble {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
}
#content {
width: 100%;
float: left;
position: relative;
z-index: 1;
background-color: #f6f7f8;
border-top: solid 1px #c3c5c9;
padding-top: 35px;
}
#content.alternate-bg {
background-color: #edeeef;
}
#content.alternate-bg:after {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
content: "";
z-index: 3;
}
footer {
width: 100%;
float: left;
background-color: #fafafa;
border-top: solid 1px #c3c5c9;
padding: 10px 0 20px;
position: relative;
}
footer .footer-bubble {
background-image: url('../img/footer-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
}
#sub-footer {
background-color: #efefef;
width: 100%;
float: left;
border-top: solid 1px #c3c5c9;
padding: 10px 0;
}
#sub-footer .logo a {
display: inline-block;
}
#sub-footer .copyright {
color: #a7a7a7;
text-align: center;
margin-top: 15px;
}
#sub-footer .social-icons {
float: right;
margin-top: 10px;
}
#sub-footer .social-icons a {
width: 32px;
height: 32px;
display: inline-block;
text-indent: -9999px;
text-transform: capitalize;
margin-left: 8px;
background-image: url('../img/social-icons.png');
}
#sub-footer .social-icons a.be {
background-position: 0 0;
}
#sub-footer .social-icons a.star {
background-position: -40px 0;
}
#sub-footer .social-icons a.pinterest {
background-position: -80px 0;
}
#sub-footer .social-icons a.facebook {
background-position: -120px 0;
}
#sub-footer .social-icons a.twitter {
background-position: -160px 0;
}
.header-buttons {
float: right;
border-right: solid 1px #6395de;
}
.header-buttons a {
width: 49px;
height: 49px;
float: left;
background-position: center center;
background-repeat: no-repeat;
text-indent: -9999px;
text-transform: capitalize;
border-bottom: solid 1px transparent;
border-left: solid 1px #6395de;
border-right: solid 1px #2e5289;
}
.header-buttons a:hover {
background-color: #4071bc;
border-left: solid 1px transparent;
}
.header-buttons a.add {
border-left: solid 1px transparent;
background-image: url('../img/header-add.png');
}
.header-buttons a.add:hover {
border-left: solid 1px #2e5289;
}
.header-buttons a.contact {
background-image: url('../img/header-contact.png');
}
.header-buttons a.profile {
background-image: url('../img/header-profile.png');
}
.header-buttons a.closed {
border-top: solid 1px #4073bd;
border-bottom: solid 1px #6395de;
margin-top: -1px;
position: relative;
z-index: 300;
background-color: #4073bd !important;
border-left: solid 1px transparent;
background-image: url('../img/header-close.png') !important;
}
.main-nav {
text-align: center;
}
.main-nav > ul > li {
position: relative;
float: left;
}
.main-nav > ul > li.active a {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li > a {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
padding: 14px 15px;
display: inline-block;
color: white;
-webkit-opacity: 0.5;
-moz-opacity: 0.5;
opacity: 0.5;
text-decoration: none;
}
.main-nav > ul > li > a:hover {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li:hover a {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.main-nav > ul > li:hover > .dropdown-menu {
display: block;
}
.main-nav > ul > li > .dropdown-menu {
top: 90%;
text-align: left;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.main-nav > ul > li > .dropdown-menu li a {
padding: 10px 20px;
color: #5a5a5a;
font-weight: 300;
}
.main-nav > ul > li > .dropdown-menu li a:hover {
background: none;
background-color: #efefef;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu > a:after {
border-color: transparent transparent transparent #414141;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu:hover > a {
background: none;
background-color: #efefef;
}
.main-nav > ul > li > .dropdown-menu .dropdown-submenu:hover > a:after {
border-color: transparent transparent transparent #a1a1a1;
}
.main-nav > ul > li > .dropdown-menu:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
left: 20px;
position: absolute;
top: -7px;
}
.main-nav > ul > li > .dropdown-menu:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
left: 21px;
position: absolute;
top: -6px;
}
.tab-finder .nav-tabs {
float: left;
width: 100%;
margin-bottom: 0;
border-bottom-color: #c3c5c9;
}
.tab-finder .nav-tabs > .active > a {
border: 1px solid #c3c5c9;
border-bottom: solid 2px white;
border-left: 0px solid transparent;
background-color: white;
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
}
.tab-finder .nav-tabs > .active > a:hover {
background-color: white;
}
.tab-finder .nav-tabs > li {
margin-bottom: -2px;
}
.tab-finder .nav-tabs > li.first-tab > a {
-webkit-border-radius: 4px 0 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 0 0 0;
-moz-background-clip: padding;
border-radius: 4px 0 0 0;
background-clip: padding-box;
border-left: 1px solid #c3c5c9;
}
.tab-finder .nav-tabs > li.last-tab > a {
-webkit-border-radius: 0 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 4px 0 0;
-moz-background-clip: padding;
border-radius: 0 4px 0 0;
background-clip: padding-box;
}
.tab-finder .nav-tabs > li > a {
margin-right: 0px;
background-color: #e2e2e2;
border: 1px solid #c3c5c9;
border-left: 0px solid transparent;
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
color: #b8b8b8;
font-size: 15px;
padding-top: 12px;
padding-bottom: 12px;
}
.tab-finder .nav-tabs > li > a:hover {
background-color: #efefef;
color: #a1a1a1;
}
.tab-finder .nav-tabs li {
width: 25%;
float: left;
text-align: center;
text-transform: uppercase;
}
.tab-finder .tab-content {
float: left;
width: 100%;
background-color: white;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
overflow: visible;
}
.tab-finder .tab-content .inner {
padding: 30px 40px 20px;
border: solid 1px #c3c5c9;
border-top: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.tab-finder .tab-content form {
display: inline-block;
}
.tab-finder .tab-content form input {
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .filter-option {
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .search-string {
width: 628px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 125px;
}
.tab-finder .tab-content form .search-select {
width: 130px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 100px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .search-price.no-margin {
margin-right: 0;
}
.tab-finder .tab-content form .line-divider {
width: 12px;
text-align: center;
height: 50px;
display: inline-block;
color: #c3c5c9;
font-weight: 300;
}
.tab-finder .tab-content form .btn {
width: 238px;
padding-bottom: 10px;
padding-top: 10px;
text-transform: uppercase;
font-weight: bold;
font-family: "Ubuntu", Arial !important;
}
.tab-finder .tab-content form .btn.search-property {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/<KEY> <KEY>);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
font-size: 16px;
}
.tab-finder .tab-content form .btn.search-property:hover {
background-image: none;
background-color: #4479ca;
}
.bootstrap-select .caret {
background: url('../img/select-caret.png') no-repeat;
border: none;
height: 17px;
width: 8px;
margin-top: 2px;
}
.bootstrap-select .btn {
background-image: none;
background-color: white;
border: solid 1px #c3c5c9;
font-weight: 300 !important;
text-transform: capitalize !important;
}
.bootstrap-select .dropdown-menu {
overflow-y: visible !important;
text-align: right;
min-width: 90px !important;
right: 0;
left: auto;
top: 120%;
}
.bootstrap-select .dropdown-menu > li > a {
padding: 3px 10px;
color: #5a5a5a;
font-weight: 300;
}
.bootstrap-select .dropdown-menu > li > a:hover {
background: none;
background-color: #efefef;
}
.bootstrap-select .dropdown-menu:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 9px;
position: absolute;
top: -7px;
}
.bootstrap-select .dropdown-menu:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 10px;
position: absolute;
top: -6px;
}
.featured-items {
padding-bottom: 20px;
}
.featured-items .controls {
float: right;
margin-right: 0px;
margin-top: -22px;
}
.featured-items .controls a {
width: 16px;
height: 16px;
float: left;
background-image: url('../img/testimonial-controls.png');
text-indent: -9999px;
text-transform: capitalize;
text-decoration: none;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
margin-left: 5px;
}
.featured-items .controls a:hover {
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
opacity: 0.6;
}
.featured-items .controls a.prev {
background-position: 0px 0px;
}
.featured-items .controls a.next {
background-position: -20px 0px;
}
.featured-items .featured-items-slider {
width: 100%;
float: center;
}
.featured-items .featured-items-slider .slides {
list-style: none;
float: center;
width: 100%;
min-height: 270px;
}
.featured-items .featured-item {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
-webkit-box-shadow: 0px 0px 10px #d0d2d5;
-moz-box-shadow: 0px 0px 10px #d0d2d5;
box-shadow: 0px 0px 10px #d0d2d5;
color: 0px 0px 10px #d0d2d5;
}
.featured-items .featured-item:hover h3 a {
color: #4a83db;
}
.featured-items .featured-item:hover .top:before {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item:hover .top:after {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item .bubble {
width: 14px;
height: 9px;
background-image: url('../img/bubble.png');
position: absolute;
bottom: -8px;
right: 20px;
display: none;
}
.featured-items .featured-item .top {
background-color: white;
position: relative;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.featured-items .featured-item .top .inner-border {
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.featured-items .featured-item .top:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -6px;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.featured-items .featured-item .top:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -5px;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity 0.2s ease-in;
-moz-transition: opacity 0.2s ease-in;
-o-transition: opacity 0.2s ease-in;
-ms-transition: opacity 0.2s ease-in;
transition: opacity 0.2s ease-in;
}
.featured-items .featured-item .bottom {
background-color: #efefef;
text-align: center;
display: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.featured-items .featured-item .bottom .inner-border {
border-top: none;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.featured-items .featured-item .bottom .inner-padding {
padding-bottom: 5px;
}
.featured-items .featured-item .bottom p {
color: #a9a9a9;
}
.featured-items .featured-item .inner-border {
border: solid 1px #c3c5c9;
}
.featured-items .featured-item .inner-padding {
padding: 11px;
}
.featured-items .featured-item figure {
margin-left: -1px;
margin-bottom: 10px;
width: 100%;
height: 130px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
}
.featured-items .featured-item figure:hover .figure-hover {
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
opacity: 0.4;
}
.featured-items .featured-item figure:hover .banner {
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
}
.featured-items .featured-item figure .banner {
background-color: #333333;
padding: 3px 10px;
position: absolute;
right: 0;
top: 0;
color: white;
font-size: 12px;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item figure .figure-hover {
width: 100%;
height: 100%;
background: url('../img/figure-zoom.png') no-repeat center center;
background-color: black;
position: absolute;
z-index: 20;
left: 0;
top: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
text-indent: -9999px;
}
.featured-items .featured-item figure img {
width: 100%;
height: auto;
}
.featured-items .featured-item h3 {
color: #414141;
font-size: 13px;
text-transform: uppercase;
line-height: 20px;
margin: 0;
}
.featured-items .featured-item h3 a {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
color: #414141;
text-decoration: none;
}
.featured-items .featured-item.featured-list {
margin-bottom: 20px;
}
.featured-items .featured-item.featured-list figure {
width: 30%;
height: 130px;
display: inline-block;
vertical-align: top;
}
.featured-items .featured-item.featured-list .right {
width: 65%;
margin-left: 3%;
display: inline-block;
vertical-align: top;
position: relative;
}
.featured-items .featured-item.featured-list .description p {
color: #414141;
font-size: 13px;
}
.featured-items .featured-item.featured-list .top:after {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item.featured-list .top:before {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.featured-items .featured-item.featured-list .bottom {
display: block;
}
.featured-items .featured-item.featured-list .price-wrapper {
position: absolute;
top: 6px;
right: 0px;
}
.featured-items .featured-item.featured-list .bottom .inner-padding {
height: 30px;
}
.featured-items .featured-item.featured-list .bottom p {
float: left;
}
.featured-items .featured-item.featured-list .bottom .star-rating {
float: right;
}
.featured-items .featured-item-wrapper {
margin-bottom: 25px;
}
.featured-items .featured-item-wrapper {
min-height: 270px;
}
.slides li {
display: none;
}
.property-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
}
.property-box .left {
width: 70%;
float: left;
}
.property-box .left figure {
margin-left: -1px;
margin-bottom: 10px;
width: 100%;
min-height: 280px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
float: left;
}
.property-box .left figure .banner {
background-color: #333333;
padding: 3px 10px;
position: absolute;
right: 0;
top: 0;
color: white;
font-size: 12px;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
}
.property-box .left figure img {
width: 100%;
height: auto;
}
.property-box .right {
width: 25%;
margin-left: 5%;
float: left;
}
.property-box .row {
margin-left: 0px;
}
.property-box .top {
padding: 20px 20px 30px;
background-color: white;
position: relative;
border-bottom: solid 1px #c3c5c9;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.property-box .top:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -7px;
}
.property-box .top:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -6px;
}
.property-box .bottom {
background-color: #efefef;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.property-box .bottom .inner {
padding: 10px 20px;
}
.property-box .bottom p {
float: left;
color: #b3b3b3;
font-size: 13px;
margin-bottom: 0;
}
.property-box .bottom .update-box p {
color: #414141;
}
.property-box .bottom .star-rating {
margin-left: 10px;
margin-top: 2px;
}
.property-box h3 {
font-size: 14px;
color: #414141;
margin-top: 0;
line-height: 14px;
}
.property-box h3 span {
font-weight: 300;
color: #a1a1a1;
}
.property-box .gallery {
width: 100%;
}
.property-box .gallery .line {
float: left;
width: 100%;
}
.property-box .gallery .line figure {
width: 46%;
float: left;
margin-left: 8%;
background-color: #edeeef;
margin-bottom: 8%;
}
.property-box .gallery .line figure a {
display: inline-block;
width: 100%;
}
.property-box .gallery .line figure img {
width: 100%;
height: auto;
}
.property-box .gallery .line figure:first-child {
margin-left: 0;
}
.property-box .gallery .more {
color: #cccccc;
width: 100%;
border: solid 3px #e9e9e9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
text-align: center;
text-transform: uppercase;
font-size: 14px;
text-decoration: none;
display: inline-block;
}
.property-box .title-line {
width: 100%;
float: left;
margin-top: 10px;
}
.property-box .title-line h2 {
color: #414141;
font-weight: bold;
font-size: 15px;
display: inline-block;
margin: 0;
}
.property-box .title-line p {
color: #7a7a7a;
font-size: 13px;
display: inline-block;
font-weight: 300;
}
.property-box .title-line .price {
color: #414141;
font-size: 18px;
display: inline-block;
font-weight: bold;
}
.property-box .description {
color: #414141;
font-size: 13px;
width: 100%;
float: left;
}
.property-box table {
width: 100%;
float: left;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-color: #f9f9f9;
color: #414141;
font-weight: 300;
}
.property-box table td {
padding: 10px;
}
.pagination {
text-align: center;
}
.pagination ul {
display: inline-block;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
}
.pagination ul li {
margin: 0 5px;
display: inline-block;
}
.pagination ul li a {
border: solid 1px #c3c5c9;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
color: #5a5a5a;
font-weight: 300;
}
.pagination ul li a:hover {
background-color: #edeeef;
}
.pagination ul li.active a {
color: white;
border-color: #4176c6;
background-color: #4378c7;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
}
.pagination ul li.first-element a {
color: #5a5a5a;
border: none;
background-color: transparent;
}
.pagination ul li.first-element a:before {
display: block;
float: left;
width: 0;
height: 0;
margin-top: 5px;
margin-left: -10px;
border-color: transparent;
border-right-color: #5a5a5a;
border-style: solid;
border-width: 5px 5px 5px 0;
content: " ";
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.pagination ul li.first-element a:hover {
color: #4a83db;
}
.pagination ul li.first-element a:hover:before {
border-right-color: #4a83db;
}
.pagination ul li.last-element a {
border: none;
color: #5a5a5a;
background-color: transparent;
}
.pagination ul li.last-element a:after {
display: block;
float: right;
width: 0;
height: 0;
margin-top: 5px;
margin-right: -10px;
border-color: transparent;
border-left-color: #5a5a5a;
border-style: solid;
border-width: 5px 0 5px 5px;
content: " ";
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.pagination ul li.last-element a:hover {
color: #4a83db;
}
.pagination ul li.last-element a:hover:after {
border-left-color: #4a83db;
}
.testimonial-box .flex-viewport {
float: left;
clear: both;
width: 100%;
}
.testimonial-box .controls {
float: right;
margin-right: 12px;
margin-top: -22px;
}
.testimonial-box .controls a {
width: 16px;
height: 16px;
float: left;
background-image: url('../img/testimonial-controls.png');
text-indent: -9999px;
text-transform: capitalize;
text-decoration: none;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
margin-left: 5px;
}
.testimonial-box .controls a:hover {
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
opacity: 0.6;
}
.testimonial-box .controls a.prev {
background-position: 0px 0px;
}
.testimonial-box .controls a.next {
background-position: -20px 0px;
}
.testimonial-box .slides {
float: left;
clear: both;
width: 100%;
list-style: none;
margin-top: 10px;
}
.testimonial-box .slide-box {
float: left;
}
.testimonial-box .slide-box .text-box {
background-color: white;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
position: relative;
margin-bottom: 20px;
-webkit-box-shadow: 0 -1px 4px #c3c5c9;
-moz-box-shadow: 0 -1px 4px #c3c5c9;
box-shadow: 0 -1px 4px #c3c5c9;
color: 0 -1px 4px #c3c5c9;
margin: 0 10px 10px 5px;
}
.testimonial-box .slide-box .text-box .inner {
padding: 10px;
}
.testimonial-box .slide-box .text-box .bubble {
width: 14px;
height: 9px;
background-image: url('../img/bubble.png');
position: absolute;
bottom: -9px;
right: 20px;
}
.testimonial-box .slide-box .author-box {
float: left;
width: 100%;
}
.testimonial-box .slide-box .author-box figure {
width: 55px;
height: 55px;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
background-color: #c3c5c9;
float: right;
overflow: hidden;
margin-left: 10px;
margin-right: 10px;
}
.testimonial-box .slide-box .author-box figure img {
width: 100%;
height: auto;
}
.testimonial-box .slide-box .author-box .texts {
float: right;
text-align: right;
margin-top: 7px;
}
.testimonial-box .slide-box .author-box .texts .name {
font-weight: bold;
color: #414141;
}
.testimonial-box .slide-box .author-box .texts .position {
color: #b3b3b3;
font-size: 13px;
font-weight: 300;
}
.blog-style article {
margin-bottom: 20px;
}
.blog-style article .text-box {
margin-left: 70px;
}
.blog-style article .text-box h3 {
color: #414141;
font-size: 16px;
line-height: 17px;
margin: 0;
}
.blog-style article .text-box h3 a {
color: #414141;
text-decoration: none;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.blog-style article .text-box h3 a:hover {
color: #4a83db;
}
.blog-style article .text-box .author {
font-size: 13px;
color: #9d9d9d;
font-weight: 300;
margin-bottom: 7px;
display: block;
}
.date-box {
float: left;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
width: 60px;
text-align: center;
overflow: hidden;
-webkit-box-shadow: 0px 0px 5px #d0d2d5;
-moz-box-shadow: 0px 0px 5px #d0d2d5;
box-shadow: 0px 0px 5px #d0d2d5;
color: 0px 0px 5px #d0d2d5;
}
.date-box .day {
background-color: white;
float: left;
width: 100%;
color: #414141;
font-size: 21px;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
font-weight: bold;
padding: 7px 0;
border-bottom: solid 1px #c3c5c9;
}
.date-box .month {
background-color: #efefef;
color: #757575;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
padding: 3px 0;
font-size: 13px;
font-weight: 300;
}
.read-more {
color: #4a83db;
font-weight: bold;
font-size: 13px;
text-transform: uppercase;
text-decoration: none;
}
.read-more:hover {
color: #245db5;
}
.price-wrapper {
float: right;
margin-top: 5px;
}
.price-wrapper .price {
font-size: 18px;
line-height: 19px;
display: inline-block;
color: #414141;
font-weight: bold;
}
.price-wrapper .rate {
display: inline-block;
vertical-align: top;
font-size: 11px;
line-height: 11px;
color: #414141;
font-weight: 300;
}
.star-rating {
float: left;
margin-top: 5px;
}
.star-rating .star {
width: 16px;
hieght: 16px;
background-image: url('../img/stars.png');
background-repeat: no-repeat;
background-position: 0 0;
text-indent: -9999px;
text-transform: capitalize;
border: none;
background-color: transparent;
}
.star-rating .star.active {
background-position: -16px 0;
}
.star-rating .star.blue {
background-position: -32px 0;
}
.widget {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
display: inline-block;
overflow: hidden;
margin-bottom: 20px;
width: 100%;
}
.widget .widget-title {
float: left;
background-color: #edeeef;
width: 100%;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
border-bottom: solid 1px #c3c5c9;
}
.widget .widget-title.uppercase h2 {
text-transform: uppercase;
}
.widget .widget-title .inner {
padding: 3px 20px;
}
.widget .widget-title h2 {
color: #414141;
text-transform: capitalize;
}
.widget .widget-list {
width: 100%;
float: left;
padding: 5px 0;
}
.widget .widget-list li {
width: 100%;
}
.widget .widget-list li a {
padding: 10px 20px;
color: #4a83db;
text-decoration: none;
display: block;
font-weight: 300;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.widget .widget-list li a:hover {
background-color: #f6f7f8;
color: #717171;
}
.widget .widget-content {
background-color: white;
float: left;
width: 100%;
position: relative;
}
.widget .widget-content.top-arrow:before {
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 29px;
position: absolute;
top: -7px;
}
.widget .widget-content.top-arrow:after {
border-bottom: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 30px;
position: absolute;
top: -6px;
}
.widget .widget-content .inner {
padding: 10px 20px;
}
.widget .widget-content form {
margin: 0;
}
.widget .widget-section {
float: left;
width: 100%;
border-bottom: dashed 1px #c3c5c9;
}
.widget .widget-section .inner {
padding: 15px 20px;
}
.widget .widget-section .slider.slider-horizontal {
width: 100% !important;
}
.widget .widget-section.first-half {
width: 50%;
}
.widget .widget-section.first-half .inner {
padding: 15px 10px 15px 20px;
}
.widget .widget-section.second-half {
width: 50%;
}
.widget .widget-section.second-half .inner {
padding: 15px 20px 15px 10px;
}
.widget .widget-buttons {
float: left;
width: 100%;
text-align: center;
}
.widget .widget-buttons .inner {
padding: 0px 20px 15px;
}
.widget .widget-buttons .more-options {
color: #a5a5a5;
font-size: 12px;
text-decoration: none;
background-color: #efefef;
padding: 5px 15px;
display: inline-block;
font-weight: 300;
text-transform: uppercase;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.widget .widget-buttons .btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
margin-top: 30px;
border-color: #4176c6;
margin-bottom: 10px;
}
.widget .widget-buttons .btn:hover {
background-image: none;
background-color: #4479ca;
}
.widget .widget-buttons .btn:focus {
background-image: none;
background-color: #4479ca;
}
.widget input[type='text'] {
padding: 4px 10px;
height: 35px;
}
.widget .measure-type {
position: absolute;
right: 30px;
bottom: 33px;
color: #b9b9b9;
font-size: 14px;
font-weight: 300;
}
.widget .bootstrap-select {
margin-top: 0;
width: 100%;
}
.widget .bootstrap-select .btn {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: block;
width: 100%;
padding-right: 0;
padding-left: 0;
padding-top: 7px;
padding-bottom: 7px;
}
.widget span {
font-family: "Ubuntu", Arial !important;
}
.widget label {
color: #b9b9b9;
font-weight: 300;
text-transform: uppercase;
font-size: 12px;
margin-bottom: 1px;
}
.widget .slider-selection {
background-color: #4a83db;
background-image: none;
}
.widget .slider-track {
border: solid 1px #c3c5c9;
background-color: #efefef;
background-image: none;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
height: 12px !important;
}
.widget .slider-handle {
background-color: white;
background-image: url('../img/slider-handle.png');
background-repeat: no-repeat;
background-position: center center;
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
border: solid 1px #c3c5c9;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
}
.widget .slider-handle:hover {
background-color: #edeeef;
}
.top-bar {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
float: left;
margin-bottom: 20px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-weight: 300;
color: #a1a1a1;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.top-bar strong {
color: #414141;
}
.top-bar .text-line {
margin-right: 5px;
}
.top-bar .bar-title {
width: 100%;
float: left;
background-color: #edeeef;
border-bottom: solid 1px #c3c5c9;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
}
.top-bar .inner {
padding: 0px 20px;
}
.top-bar .custom-margin {
margin: 10px 0;
}
.top-bar .bootstrap-select.btn-group {
margin: 0;
}
.top-bar .bootstrap-select .btn {
font-family: "Ubuntu", Arial !important;
padding-top: 7px;
padding-bottom: 7px;
}
.top-bar .view-type {
margin-top: 12px;
}
.top-bar .view-type ul {
list-style: none;
display: inline-block;
margin: 0;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
overflow: hidden;
vertical-align: middle;
}
.top-bar .view-type ul li {
float: left;
}
.top-bar .view-type ul li a {
width: 30px;
height: 30px;
text-indent: -9999px;
float: left;
text-transform: capitalize;
border-right: solid 1px #c3c5c9;
background-position: center center;
background-repeat: no-repeat;
}
.top-bar .view-type ul li a:hover {
background-color: #edeeef;
}
.top-bar .view-type ul li a.grid {
background-image: url('../img/selector-list.png');
}
.top-bar .view-type ul li a.list {
background-image: url('../img/selector-grid.png');
}
.top-bar .view-type ul li a.location {
background-image: url('../img/selector-location.png');
}
.top-bar .view-type ul li.active a {
background-color: #4a83db;
}
.top-bar .view-type ul li.active a.grid {
background-image: url('../img/selector-list-hover.png');
}
.top-bar .view-type ul li.active a.list {
background-image: url('../img/selector-grid-hover.png');
}
.top-bar .view-type ul li.active a.location {
background-image: url('../img/selector-location-hover.png');
}
.top-bar .view-type ul li.last-element a {
border-right: none;
}
.top-bar .results-per-page ul {
list-style: none;
display: inline-block;
margin: 0;
vertical-align: middle;
}
.top-bar .results-per-page ul li {
float: left;
}
.top-bar .results-per-page ul li a {
padding: 5px 10px;
font-weight: bold;
color: #414141;
text-decoration: none;
}
.top-bar .results-per-page ul li a:hover {
color: #4a83db;
}
.top-bar .results-per-page ul li.active a {
color: #4a83db;
}
.top-bar .bar-bottom {
width: 100%;
float: left;
background-color: white;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
#contact-form {
float: left;
width: 100%;
background-color: #edeeef;
border-top: solid 1px #c3c5c9;
padding-top: 30px;
padding-bottom: 30px;
position: relative;
}
#contact-form:after {
background-image: url('../img/content-bubble.png');
width: 15px;
height: 11px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -7px;
content: "";
z-index: 3;
}
.contact-box {
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
display: inline-block;
}
.contact-box .title-bar {
width: 100%;
float: left;
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
background-color: #edeeef;
border-bottom: solid 1px #c3c5c9;
}
.contact-box .title-bar .inner {
padding: 15px 20px;
}
.contact-box .title-bar h2 {
color: #414141;
font-size: 18px;
text-transform: none;
margin: 0;
}
.contact-box .title-bar p {
color: #747575;
font-size: 13px;
margin: 4px 0 0;
}
.contact-box .contact-box-content {
width: 100%;
float: left;
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
background-color: white;
}
.contact-box .contact-box-content .inner {
padding: 10px 20px;
}
.contact-box .contact-box-content .half {
width: 48%;
display: inline-block;
float: left;
}
.contact-box .contact-box-content .half.first-half {
margin-right: 4%;
}
.contact-box .contact-box-content input[type='text'],
.contact-box .contact-box-content input[type='password'],
.contact-box .contact-box-content input[type='email'],
.contact-box .contact-box-content input[type='tel'] {
height: 40px;
display: inline-block;
padding: 5px 10px;
}
.contact-box .contact-box-content textarea {
padding: 5px 10px;
}
.contact-box .contact-box-content input[type='submit'].btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB<KEY>
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
margin-top: 20px;
border-color: #4176c6;
margin-bottom: 10px;
font-family: "Ubuntu", Arial !important;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
}
.contact-box .contact-box-content input[type='submit'].btn:hover {
background-image: none;
background-color: #4479ca;
}
.contact-box .contact-box-content label {
font-size: 12px;
color: #b9b9b9;
font-weight: 300;
text-transform: uppercase;
}
.contact-box .contact-box-content label.checkbox {
text-transform: none;
font-size: 13px;
color: #5a5a5a;
}
.custom-multiple-select-filters {
width: 100%;
float: left;
margin-bottom: 4px;
}
.custom-multiple-select-filters span {
display: inline-block;
margin-right: 5px;
vertical-align: middle;
color: #a1a1a1;
font-size: 13px;
}
.custom-multiple-select-filters ul {
display: inline-block;
list-style: none;
vertical-align: middle;
}
.custom-multiple-select-filters ul li {
float: left;
color: #414141;
}
.custom-multiple-select-filters ul li.active a {
color: #4a83db;
}
.custom-multiple-select-filters ul li a {
font-size: 13px;
font-weight: bold;
color: #414141;
padding: 3px 6px;
text-decoration: none;
}
.custom-multiple-select-filters ul li a:hover {
color: #4a83db;
}
.custom-multiple-select-filters ul li a.active {
color: #4a83db;
}
.custom-multiple-select {
border: solid 1px #c3c5c9;
background-color: #f9f9f9;
width: 100%;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
height: 400px;
}
.custom-multiple-select .mCSB_container {
margin-right: 6px;
}
.custom-multiple-select .mCSB_scrollTools {
width: 7px;
}
.custom-multiple-select .mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
}
.custom-multiple-select select {
display: none;
}
.custom-multiple-select ul {
list-style: none;
width: 100%;
float: left;
}
.custom-multiple-select ul li {
float: left;
width: 100%;
cursor: pointer;
}
.custom-multiple-select ul li:after {
background-image: url('../img/ok-grey.png');
width: 17px;
height: 13px;
float: right;
content: ' ';
margin-right: 15px;
margin-top: -37px;
}
.custom-multiple-select ul li .inner-list {
padding: 10px 20px;
}
.custom-multiple-select ul li span {
color: #727272;
font-weight: 300;
font-size: 13px;
}
.custom-multiple-select ul li strong {
color: #727272;
font-size: 13px;
}
.custom-multiple-select ul li.selected {
background-color: #4a83db;
}
.custom-multiple-select ul li.selected:after {
background-image: url('../img/ok-white.png');
}
.custom-multiple-select ul li.selected span {
color: white;
}
.custom-multiple-select ul li.selected strong {
color: white;
}
.author-section {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
background-color: white;
margin-top: 0px;
margin-bottom: 20px;
}
.author-section.big-margins {
margin-top: 20px;
margin-bottom: 40px;
}
.author-section .left {
float: left;
border-right: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 80%;
}
.author-section .left .text {
position: relative;
}
.author-section .left .inner {
padding: 20px;
}
.author-section .left figure {
width: 110px;
height: 110px;
float: left;
margin-right: 20px;
background-color: #dddddd;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
margin-left: 20px;
-webkit-box-shadow: inset 0px 5px 7px #b4b4b4;
-moz-box-shadow: inset 0px 5px 7px #b4b4b4;
box-shadow: inset 0px 5px 7px #b4b4b4;
color: inset 0px 5px 7px #b4b4b4;
overflow: hidden;
}
.author-section .left .follow {
position: absolute;
top: 0px;
right: 0px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,<KEY>IC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 5px 15px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
}
.author-section .left .follow:hover {
background-image: none;
background-color: #4479ca;
}
.author-section .left .follow:focus {
background-image: none;
background-color: #4479ca;
}
.author-section .left .follow.active {
background-color: #f17235;
background-image: none;
border-color: #f17235;
}
.author-section .left .follow.active:hover {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.author-section .left .follow.active:focus {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.author-section .left h2 {
display: inline-block;
font-size: 16px;
color: #414141;
font-weight: bold;
margin: 0;
}
.author-section .left .job-title {
color: #a0a0a0;
font-size: 14px;
display: inline-block;
margin-bottom: 10px;
font-weight: 300;
}
.author-section .left p {
color: #5a5a5a;
font-weight: 300;
}
.author-section .right {
float: left;
width: 20%;
font-size: 14px;
color: #414141;
text-align: center;
}
.author-section .right .listings {
margin-top: 55px;
}
.author-section .right .number {
font-size: 21px;
font-weight: bold;
}
.agent-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
background-color: white;
margin-top: 0px;
margin-bottom: 20px;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.agent-box .text {
position: relative;
margin-left: 155px;
}
.agent-box .inner {
padding: 20px;
}
.agent-box figure {
width: 110px;
height: 110px;
float: left;
margin-right: 20px;
background-color: #dddddd;
-webkit-border-radius: 100px;
-webkit-background-clip: padding-box;
-moz-border-radius: 100px;
-moz-background-clip: padding;
border-radius: 100px;
background-clip: padding-box;
margin-left: 20px;
-webkit-box-shadow: inset 0px 5px 7px #b4b4b4;
-moz-box-shadow: inset 0px 5px 7px #b4b4b4;
box-shadow: inset 0px 5px 7px #b4b4b4;
color: inset 0px 5px 7px #b4b4b4;
overflow: hidden;
}
.agent-box .follow {
position: absolute;
top: 0px;
right: 0px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXN<KEY>
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 5px 15px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
}
.agent-box .follow:hover {
background-image: none;
background-color: #4479ca;
}
.agent-box .follow:focus {
background-image: none;
background-color: #4479ca;
}
.agent-box .follow.active {
background-color: #f17235;
background-image: none;
border-color: #f17235;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: none;
}
.agent-box .follow.active:hover {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.agent-box .follow.active:focus {
background-image: none;
background-color: #f17235;
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
border-color: #f17235;
}
.agent-box h2 {
display: inline-block;
font-size: 16px;
color: #414141;
font-weight: bold;
margin: 0;
}
.agent-box .job-title {
color: #a0a0a0;
font-size: 14px;
display: inline-block;
margin-bottom: 10px;
font-weight: 300;
}
.agent-box p {
color: #5a5a5a;
font-weight: 300;
}
.breadcrumb {
background-color: transparent;
padding: 0;
}
.breadcrumb li {
text-shadow: none;
}
.breadcrumb li a {
color: white;
font-size: 15px;
font-weight: 300;
}
.breadcrumb li.active {
color: white;
}
.blog-section article {
float: left;
margin-bottom: 20px;
width: 100%;
}
.blog-section .right {
margin-left: 80px;
}
.blog-section .right .text-box {
margin-left: 0;
}
.blog-section .text-box-bottom {
-webkit-border-radius: 0 0 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
background-color: #efefef;
height: 40px;
border: solid 1px #c3c5c9;
border-top: none;
-webkit-box-shadow: 0 3px 10px #d0d2d5;
-moz-box-shadow: 0 3px 10px #d0d2d5;
box-shadow: 0 3px 10px #d0d2d5;
color: 0 3px 10px #d0d2d5;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 20px;
}
.blog-section .text-box-bottom .inner {
padding: 10px;
}
.blog-section .text-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
margin-left: 80px;
}
.blog-section .text-box.hasBottom {
-webkit-border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 4px 0 0;
-moz-background-clip: padding;
border-radius: 4px 4px 0 0;
background-clip: padding-box;
position: relative;
}
.blog-section .text-box.hasBottom:before {
border-top: 7px solid rgba(0, 0, 0, 0.2);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
content: "";
display: inline-block;
right: 20px;
position: absolute;
bottom: -7px;
}
.blog-section .text-box.hasBottom:after {
border-top: 6px solid #FFFFFF;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: "";
display: inline-block;
right: 21px;
position: absolute;
bottom: -6px;
}
.blog-section .text-box .inner {
padding: 20px;
}
.blog-section .text-box .bottom-buttons {
width: 100%;
display: inline-block;
margin-top: 10px;
}
.blog-section .text-box .bottom-buttons .comments-link {
margin-top: 5px;
font-size: 13px;
font-weight: 300;
color: #9d9d9d;
}
.blog-section .text-box .bottom-buttons .learn-more {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 10px 20px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
font-size: 15px;
text-shadow: 0px 0px 1px black;
}
.blog-section .text-box .bottom-buttons .learn-more:hover {
background-image: none;
background-color: #4479ca;
}
.blog-section .text-box .bottom-buttons .learn-more:focus {
background-image: none;
background-color: #4479ca;
}
.blog-section .text-box h3 {
color: #414141;
font-size: 16px;
line-height: 17px;
margin: 0;
}
.blog-section .text-box h3 a {
color: #414141;
text-decoration: none;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.blog-section .text-box h3 a:hover {
color: #4a83db;
}
.blog-section .text-box p {
color: #5a5a5a;
font-weight: 300;
}
.blog-section .text-box .col3 {
float: left;
width: 33.3333%;
}
.blog-section .text-box ul {
padding-left: 20px;
color: #5a5a5a;
font-size: 14px;
font-weight: 300;
}
.blog-section .text-box ul.custom-list {
list-style-image: url('../img/list-style1.png');
}
.blog-section .text-box ul.custom-list-double {
list-style-image: url('../img/list-style2.png');
}
.blog-section .text-box .author {
font-size: 13px;
color: #9d9d9d;
font-weight: 300;
margin-bottom: 7px;
display: block;
}
.blog-section .text-box .author a {
color: #9d9d9d;
}
.blog-section .text-box figure {
display: inline-block;
background-color: #edeeef;
height: 230px;
overflow: hidden;
}
.blog-section .text-box figure.big-figure {
width: 100%;
margin-bottom: 20px;
}
.blog-section .text-box figure.small-figure {
width: 40%;
}
.blog-section .text-box .text {
display: inline-block;
vertical-align: top;
}
.blog-section .text-box .text.big-figure {
width: 100%;
}
.blog-section .text-box .text.small-figure {
width: 54%;
margin-left: 4%;
}
.comments-box {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
padding-top: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.comments-box > .comment {
border-top: solid 1px #c3c5c9;
}
.comments-box > .comment:first-child {
border-top: none;
}
.comments-box .comment {
width: 100%;
display: inline-block;
}
.comments-box .comment .inner {
padding: 10px 20px 10px;
}
.comments-box .comment figure {
width: 59px;
height: 59px;
float: left;
}
.comments-box .comment .content {
margin-left: 70px;
}
.comments-box .comment h3 {
font-size: 14px;
color: black;
margin: 0;
margin-bottom: 10px;
line-height: 15px;
}
.comments-box .comment h3 a {
color: black;
text-decoration: none;
}
.comments-box .comment p {
color: #5a5a5a;
font-weight: 300;
font-size: 14px;
}
.comments-box .comment .time {
color: #c2c2c2;
font-size: 13px;
font-weight: 300;
}
.comments-box .comment .load-more {
color: #4983d9;
width: 100%;
font-size: 15px;
text-transform: uppercase;
text-decoration: none;
text-align: center;
display: block;
font-weight: bold;
padding: 5px 0;
}
.comment-form {
margin-top: 20px;
margin-bottom: 20px;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
}
.comment-form .inner {
padding: 20px;
}
.comment-form .inner > .row {
margin-left: 0;
}
.comment-form .half {
width: 48%;
float: left;
margin-left: 4%;
}
.comment-form .half.first-half {
margin-left: 0;
}
.comment-form .quarter {
width: 25%;
float: left;
margin-top: 10px;
}
.comment-form .quarter3 {
width: 71%;
margin-right: 4%;
float: left;
margin-top: 10px;
}
.comment-form input[type='text'],
.comment-form input[type='password'],
.comment-form input[type='email'],
.comment-form input[type='tel'] {
height: 40px;
display: inline-block;
padding: 5px 10px;
margin-bottom: 17px;
}
.comment-form textarea {
padding: 9px 10px;
}
.comment-form input[type='submit'].btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
margin-bottom: 10px;
font-family: "Ubuntu", Arial !important;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
}
.comment-form input[type='submit'].btn:hover {
background-image: none;
background-color: #4479ca;
}
.alert {
padding-top: 11px;
padding-bottom: 11px;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
text-shadow: none;
margin-bottom: 0;
}
.alert.alert-danger {
font-size: 14px;
color: white;
font-weight: 300;
background-color: #d95349;
border-color: #d95349;
}
.hero-unit {
text-align: center;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: white;
-webkit-box-shadow: 0 0 10px #d0d2d5;
-moz-box-shadow: 0 0 10px #d0d2d5;
box-shadow: 0 0 10px #d0d2d5;
color: 0 0 10px #d0d2d5;
padding: 30px;
margin-top: 30px;
}
.hero-unit h1 {
font-size: 24px;
color: #414141;
line-height: 25px;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0px;
}
.hero-unit p {
font-weight: 300;
color: #5a5a5a;
width: 70%;
display: inline-block;
font-size: 14px;
margin-bottom: 20px;
}
.hero-unit .btn {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIxMDAlIiB4Mj0iMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjODZlMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ3OWNhIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+PC9zdmc+);
background-image: -moz-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -webkit-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: -o-linear-gradient(90deg, #4c86e0 0%, #4479ca 100%);
background-image: linear-gradient(0deg, #4c86e0 0%, #4479ca 100%);
border-color: #4176c6;
padding: 10px 30px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
font-size: 15px;
text-shadow: 0px 0px 1px black;
}
.hero-unit .btn:hover {
background-image: none;
background-color: #4479ca;
}
.hero-unit .btn:focus {
background-image: none;
background-color: #4479ca;
}
.full-width {
margin-top: 30px;
width: 100%;
float: left;
background-color: white;
position: relative;
z-index: 1;
padding: 20px 0 30px;
border-top: solid 1px #c3c5c9;
}
.full-width h2 {
margin-top: 0;
}
.big-numbers {
list-style: none;
padding-left: 30px;
color: #999999;
font-weight: 300;
}
.big-numbers li {
margin-bottom: 10px;
}
.big-numbers .number {
margin-left: -30px;
font-size: 24px;
font-weight: bold;
color: #5a5a5a;
display: inline-block;
vertical-align: top;
line-height: 27px;
}
.big-numbers .text {
display: inline-block;
vertical-align: top;
margin-left: 5px;
}
.stats5 {
width: 100%;
float: left;
}
.stats5 .stats-box {
width: 18%;
margin-left: 2.5%;
float: left;
background-color: white;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.stats5 .stats-box .inner {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
padding: 10px;
}
.stats5 .stats-box .number {
font-size: 50px;
color: #414141;
line-height: 51px;
display: inline-block;
width: 100%;
text-align: center;
margin-top: 10px;
}
.stats5 .stats-box .text {
font-size: 14px;
color: #414141;
font-weight: 300;
line-height: 15px;
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.stats5 .stats-box:first-child {
margin-left: 0;
}
.about-slider {
float: left;
width: 100%;
}
.description-box {
width: 100%;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
background-color: white;
float: left;
margin-bottom: 10px;
display: none;
}
.description-box:first-child {
display: block;
}
.description-box .inner {
padding: 20px;
border: solid 1px #c3c5c9;
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
}
.description-box .inner-container {
width: 100%;
display: inline-block;
}
.description-box figure {
float: left;
width: 40%;
height: 190px;
background-color: #edeeef;
margin-right: 20px;
margin-bottom: 5px;
}
figure img {
width: 100%;
max-height: 100%;
}
.description-box .list-container {
display: inline-block;
}
.description-box h2 {
color: #414141;
margin-top: 0;
margin-bottom: 20px;
}
.description-box ul {
padding-left: 20px;
color: #5a5a5a;
font-size: 14px;
font-weight: 300;
margin-bottom: 10px;
}
.description-box ul a {
color: #4a83db;
}
.description-box ul.custom-list {
list-style-image: url('../img/list-style1.png');
}
.description-box ul.custom-list-double {
list-style-image: url('../img/list-style2.png');
}
.description-controls {
float: left;
width: 100%;
}
.description-controls ul {
float: left;
list-style: none;
}
.description-controls ul li {
width: 100%;
float: left;
margin-bottom: 10px;
}
.description-controls ul li a {
border: solid 1px #c3c5c9;
-webkit-border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 3px;
-moz-background-clip: padding;
border-radius: 3px;
background-clip: padding-box;
background-color: white;
padding: 10px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
text-decoration: none;
color: #414141;
font-weight: 300;
}
.description-controls ul li a:hover {
background-color: #edeeef;
}
.description-controls ul li a.active {
background-color: #4a83db;
color: white;
}
blockquote {
font-size: 18px;
line-height: 25px;
color: #b1b1b1;
border-left: solid 2px #4a83db;
margin-left: 40px;
font-weight: 300;
}
.location-finder {
-webkit-border-radius: 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px;
-moz-background-clip: padding;
border-radius: 4px;
background-clip: padding-box;
border: solid 1px #c3c5c9;
background-color: white;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
float: left;
overflow: hidden;
position: relative;
}
.location-finder .button-slider {
position: absolute;
visibility: visible;
top: 48%;
left: 0%;
background-image: url('../img/button-slider.png');
width: 7px;
height: 17px;
padding: 5px 3px;
-webkit-border-radius: 0 4px 4px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 4px 4px 0;
-moz-background-clip: padding;
border-radius: 0 4px 4px 0;
background-clip: padding-box;
border: solid 1px #c3c5c9;
border-left: none;
background-position: center center;
background-repeat: no-repeat;
z-index: 2000;
background-color: #ffffff;
}
.location-finder #map_canvas {
width: 100%;
height: 750px;
}
.location-finder .left-side {
-webkit-border-radius: 4px 0 4px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 4px 0 4px 0;
-moz-background-clip: padding;
border-radius: 4px 0 4px 0;
background-clip: padding-box;
float: left;
width: 40%;
height: 750px;
overflow-y: auto;
position: relative;
z-index: 200;
top: 0px;
left: 0px;
background-color: white;
}
.location-finder .left-side .mCSB_container {
margin-right: 7px;
}
.location-finder .left-side .mCustomScrollBox > .mCSB_scrollTools {
width: 8px;
}
.location-finder .left-side .mCS-dark-thick > .mCSB_scrollTools .mCSB_draggerRail {
width: 6px;
background-color: white;
border-right: solid 1px #c3c5c9;
}
.location-finder .left-side .mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-border-radius: 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0;
-moz-background-clip: padding;
border-radius: 0;
background-clip: padding-box;
background-color: black;
}
.location-finder article {
width: 100%;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top: solid 1px #c3c5c9;
border-right: solid 1px #c3c5c9;
float: left;
cursor: pointer;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.location-finder article:hover {
background-color: #edeeef;
}
.location-finder article:first-child {
border-top: none;
}
.location-finder article figure {
float: left;
width: 40%;
height: 80px;
margin-left: -1px;
border: solid 1px #c3c5c9;
overflow: hidden;
-webkit-box-shadow: inset 0px 0px 10px #d0d2d5;
-moz-box-shadow: inset 0px 0px 10px #d0d2d5;
box-shadow: inset 0px 0px 10px #d0d2d5;
color: inset 0px 0px 10px #d0d2d5;
position: relative;
background-color: white;
}
.location-finder article figure img {
width: 100%;
height: auto;
}
.location-finder article .text {
float: left;
width: 45%;
margin-left: 5%;
}
.location-finder article h3 {
font-size: 14px;
line-height: 15px;
color: black;
margin: 0;
text-transform: uppercase;
}
.location-finder article p {
color: #747575;
font-size: 13px;
font-weight: 300;
margin-bottom: 20px;
}
.location-finder article .price {
font-size: 18px;
font-weight: bold;
color: #414141;
}
.location-finder .right-side {
float: left;
width: 60%;
position: relative;
}
#clearFilters {
font-size: 12px;
color: #a5a5a5;
font-weight: 300;
width: 100%;
text-align: center;
padding: 3px 0;
float: left;
margin-top: -20px;
text-transform: uppercase;
}
@media (min-width: 1200px) {
.property-box .gallery .line figure, .property-box .gallery .line figure img {
min-height: 80px;
}
.tab-finder .tab-content form .search-string {
width: 800px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 185px;
}
.tab-finder .tab-content form .search-select {
width: 160px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 155px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .btn {
width: 300px;
padding-bottom: 10px;
padding-top: 10px;
}
.agent-box figure {
margin-left: 25px;
}
.comment-form input[type='text'],
.comment-form input[type='password'],
.comment-form input[type='email'],
.comment-form input[type='tel'] {
margin-bottom: 9px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.main-nav > ul > li > a {
padding: 14px 8px;
}
.widget .widget-section.first-half {
width: 100%;
}
.widget .widget-section.first-half .inner {
padding: 15px 20px;
}
.widget .widget-section.second-half {
width: 100%;
}
.widget .widget-section.second-half .inner {
padding: 15px 20px;
}
.tab-finder .tab-content form .search-string {
width: 484px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 55px;
}
.tab-finder .tab-content form .search-select {
width: 115px;
margin-right: 15px;
margin-bottom: 0px;
}
.tab-finder .tab-content form .search-price {
width: 55px;
margin-right: 15px;
margin-bottom: 0;
}
.tab-finder .tab-content form .btn {
width: 144px;
padding-bottom: 10px;
padding-top: 10px;
}
.alert.alert-danger {
padding: 10px;
font-size: 11px;
}
}
@media (min-width: 200px) and (max-width: 767px) {
.stats5 {
float: none;
}
.stats5 .stats-box {
width: 100%;
margin-left: 0;
margin-bottom: 10px;
float: none;
}
.tab-finder .tab-content .inner {
padding: 30px 20px 20px;
}
.tab-finder .tab-content form .search-string {
width: 217px;
margin-right: 15px;
}
.tab-finder .tab-content form .search-year {
width: 217px;
}
.tab-finder .tab-content form .search-select {
width: 260px;
margin-right: 15px;
margin-bottom: 10px;
}
.tab-finder .tab-content form .search-price {
width: 260px;
margin-right: 15px;
margin-bottom: 10px;
height: 45px;
}
.tab-finder .tab-content form .line-divider {
display: none;
}
.tab-finder .tab-content form .btn {
width: 260px;
padding-bottom: 10px;
padding-top: 10px;
}
.blog-section .right {
margin-left: 0;
float: left;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-top: 10px;
}
.blog-section .text-box {
float: left;
margin-left: 0;
margin-top: 10px;
}
.blog-section .text-box .col3 {
width: 100%;
margin-bottom: 10px;
}
.location-finder {
margin-bottom: 10px;
}
.blog-section .text-box figure.small-figure {
width: 100%;
margin-bottom: 20px;
}
.blog-section .text-box .text.small-figure {
margin-left: 0;
width: 100%;
}
.comments-box .comment .content {
float: left;
width: 100%;
margin-left: 0;
}
.comments-box .comment figure {
margin-bottom: 10px;
}
.comment-form .half {
width: 100%;
margin-left: 0;
}
.comment-form .quarter3 {
width: 100%;
}
.comment-form .quarter {
width: 100%;
margin-left: 0;
}
#page-title.small-height {
height: auto;
}
.description-box figure {
width: 100%;
margin-bottom: 20px;
}
.about-slider {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width .span4 {
margin-bottom: 10px;
}
.pagination {
float: left;
width: 100%;
}
.pagination ul li {
margin: 0 1px;
}
.pagination ul li a {
padding: 3px 7px;
font-size: 12px;
}
.featured-items {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.featured-items .featured-item-wrapper {
margin-bottom: 35px;
}
footer {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#sub-footer {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
}
#sub-footer .social-icons {
float: none;
display: inline-block;
}
.tinynav {
display: inline-block;
margin: 0 auto;
}
header {
padding: 0 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
position: relative;
}
header .span3 {
width: 50%;
float: left;
}
header .span6 {
position: absolute;
bottom: -40px;
width: 92%;
}
.header-buttons a {
width: 40px;
}
#homepage-slider {
height: 100px;
}
.tab-finder .nav-tabs > li > a {
word-wrap: break-word;
font-size: 13px;
}
#page-title {
padding-left: 10px;
padding-right: 10px;
height: 210px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#page-title h1 {
margin-top: 15px;
font-size: 30px;
line-height: 31px;
}
.contact-box .contact-box-content .half {
width: 100%;
}
.contact-box .contact-box-content .half.first-half {
margin-right: 0;
}
#contact-form aside {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.featured-items .featured-item.featured-list figure {
width: 100%;
}
.featured-items .featured-item.featured-list .right {
width: 100%;
}
.top-bar .view-type {
width: 100%;
}
.top-bar .results-per-page {
width: 100%;
}
#content {
padding-top: 5px;
}
.property-box .left {
width: 100%;
}
.property-box .right {
width: 100%;
margin-left: 0;
}
.author-section .left {
width: 100%;
border-right: none;
border-bottom: solid 1px #c3c5c9;
}
.author-section .left .text {
float: left;
width: 100%;
margin-top: 10px;
}
.author-section .left figure {
margin-left: 0;
}
.author-section .left .follow {
top: -80px;
}
.author-section .right {
width: 100%;
}
.author-section .right .listings {
margin-top: 20px;
margin-bottom: 20px;
}
#hidden-header {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-x: scroll;
}
#hidden-header .profile-form {
padding-top: 0;
}
#hidden-header .contact-form {
padding-top: 0;
}
}
@media (min-width: 200px) and (max-width: 340px) {
body {
padding: 0;
}
}
| 0.233969 | 0.063164 |
* {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
}
body {
background-color: #DC143C;
}
.container {
background-color: #228B22;
text-align: center;
width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
margin-bottom: 30px;
}
#title {
color: #B3F25C;
padding-top: 30px;
padding-bottom: 30px;
font-size: 50px;
}
.GameOptions,
button,
.InitialFilledButton,
.ModalWindow {
background-color: #B3F25C;
}
#title,
.GameOptions,
.GameOptions button,
.ModalWindow,
.ModalButton,
.footer {
font-family: Raleway;
}
button,
.EmptyButton,
.InitialFilledButton,
.CellSelected,
.CellIncorrect,
.ModalWindow {
color: #FFFFFF;
}
a,
.NumberSelected,
.ModalButton {
background-color: #FFFFFF;
color: #B3F25C;
}
button {
border: none;
padding: 10px 25px 10px;
font-size: 14px;
}
button:focus {
outline: none;
}
.BoardArea {
overflow: auto;
}
.BoardArea,
.GameOptions button:hover {
background-color: #DCFFA5;
}
.SudokuBoard {
height: 386px;
width: 386px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
a {
display: inline-block;
height: 40px;
width: 40px;
text-decoration: none;
font-weight: bold;
border-style: solid;
border-width: 1px;
border-color: #DCFFA5;
line-height: 40px;
}
.InitialFilledButton {
cursor: default;
}
.CellSelected,
.CellIncorrect {
background-color: #FFA091;
}
.EmptyButton.CellSelected {
color: #8B0000;
}
.CellIncorrect.CellSelected {
background-color: #8B0000;
}
.NumberArea {
padding: 20px 0px 20px;
}
.NumberButton {
border-radius: 50%;
padding: 10px 14px 10px;
}
.ModalWindow {
display: none;
text-align: center;
font-size: 18px;
font-weight: 500;
z-index: 1;
border-style: solid;
border-color: #191970;
border-radius: 20px;
top: 50%;
left: 50%;
margin-left: -150px;
margin-top: -65px;
position: fixed;
width: 300px;
height: 130px;
}
.ModalButton {
font-weight: 900;
margin: 0px 20px 0px;
border-radius: 10px;
}
.footer {
font-size: 14px;
color: #589D37;
text-align: center;
}
|
SudokuGame.css
|
* {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
}
body {
background-color: #DC143C;
}
.container {
background-color: #228B22;
text-align: center;
width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
margin-bottom: 30px;
}
#title {
color: #B3F25C;
padding-top: 30px;
padding-bottom: 30px;
font-size: 50px;
}
.GameOptions,
button,
.InitialFilledButton,
.ModalWindow {
background-color: #B3F25C;
}
#title,
.GameOptions,
.GameOptions button,
.ModalWindow,
.ModalButton,
.footer {
font-family: Raleway;
}
button,
.EmptyButton,
.InitialFilledButton,
.CellSelected,
.CellIncorrect,
.ModalWindow {
color: #FFFFFF;
}
a,
.NumberSelected,
.ModalButton {
background-color: #FFFFFF;
color: #B3F25C;
}
button {
border: none;
padding: 10px 25px 10px;
font-size: 14px;
}
button:focus {
outline: none;
}
.BoardArea {
overflow: auto;
}
.BoardArea,
.GameOptions button:hover {
background-color: #DCFFA5;
}
.SudokuBoard {
height: 386px;
width: 386px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
a {
display: inline-block;
height: 40px;
width: 40px;
text-decoration: none;
font-weight: bold;
border-style: solid;
border-width: 1px;
border-color: #DCFFA5;
line-height: 40px;
}
.InitialFilledButton {
cursor: default;
}
.CellSelected,
.CellIncorrect {
background-color: #FFA091;
}
.EmptyButton.CellSelected {
color: #8B0000;
}
.CellIncorrect.CellSelected {
background-color: #8B0000;
}
.NumberArea {
padding: 20px 0px 20px;
}
.NumberButton {
border-radius: 50%;
padding: 10px 14px 10px;
}
.ModalWindow {
display: none;
text-align: center;
font-size: 18px;
font-weight: 500;
z-index: 1;
border-style: solid;
border-color: #191970;
border-radius: 20px;
top: 50%;
left: 50%;
margin-left: -150px;
margin-top: -65px;
position: fixed;
width: 300px;
height: 130px;
}
.ModalButton {
font-weight: 900;
margin: 0px 20px 0px;
border-radius: 10px;
}
.footer {
font-size: 14px;
color: #589D37;
text-align: center;
}
| 0.248534 | 0.067056 |
body {
font-family: Arial, Helvetica, sans-serif;
color: #555;
margin: 0;
padding: 0;
overflow: hidden;
font-size: 10px;
}
.main{
font-size: 1.2rem;
}
.main-overlay{
position:fixed;
top:0;
bottom: 0;
right: 0;
left:0;
background-color:#fff;
z-index:99;
}
.main-overlay__preloader{
width:20rem;
height:20rem;
position:absolute;
left:50%;
top:50%;
background-image:url(./status.gif);
background-repeat:no-repeat;
background-position:center;
margin:-10rem 0 0 -10rem;
}
.main-kanban{
margin: 2rem 7rem;
}
.main-kanban>div{ /*all kanban-tabels*/
position: absolute;
margin-top: 0;
padding:0;
width: 15rem;
border-radius: 5px;
border: solid 1px #999;
box-shadow: 1px 1px 1px #888;
}
.kanbanTable1{
margin-left: 0;
}
.kanbanTable2{
margin-left: 17rem;
}
.kanbanTable3{
margin-left: 34rem;
}
.kanbanTable4{
margin-left: 51rem;
}
.kanbanTable__label{
margin: 5px;
padding: 5px;
background-color: rgba(0, 120, 205, 0.1);
text-align: center;
border-radius: 5px;
}
.kanbanTable__btn_add{
font-size: 0.8rem;
padding:10px;
opacity: 0.7;
cursor: copy;
}
.kanbanTable__btn_add:hover{
opacity: 1;
}
.kanbanTable-list {
display: inline-block;
margin-top:0.5rem;
padding:0;
min-height: 1rem;
width: 100%;
list-style-type: none;
}
/*------List item--------*/
.list-item {
position: relative;
display: inline-block;
margin-top: 0.5rem;
margin-left: 4%;
padding-bottom: 0.3rem;
padding-left: 0.5rem;
width: 84%;
min-height: 20px;
border-radius: 5px;
border: solid 1px #999;
background-color: #fff;
}
.icon_comment, .icon_time{
cursor: pointer;
transform: scale(1.1);
padding: 0 1px 1px 0;
background-color: rgba( 0, 140, 140, 0.3);
border-radius: 5px;
margin: 0 5px;
}
.ui-tooltip {
max-width: 8rem !important;
}
.list-item__color{
content: "";
position: absolute;
top:-1px;
left:-1px;
height: 100%;
width: 1%;
border-radius: 5px 0 0 5px;
padding: 1px;
}
.list-item__header, .list-item__tag, .list-item__date{
display: inline-block;
margin: 0.5rem 1rem 0 0.5rem;
font-size: 0.9rem;
font-weight: bold;
}
.list-item__tag{
font-weight: normal;
color: #999;
}
.list-item__date{
margin-bottom: -1rem;
font-size: 0.7rem;
font-weight: normal;
color: #777;
}
/*------progress bar-------*/
.list-item__progress {
display: inline-block;
margin-left: 0.5rem;
text-align: right;
color: #999;
}
.list-item__progress p {
display: inline-block;
font-size: 0.9rem;
vertical-align: bottom;
margin: 0;
margin-left: 0.5rem;
padding-top: 0;
}
.list-item__progress progress {
display: inline-block;
width: 9rem;
height: 0.9rem;
border: none;
border-radius: 100px;
-webkit-appearance: none;
margin: 0;
padding: 0;
}
.list-item__progress progress::-webkit-progress-bar {
background-color: #999;
padding: 3px;
border-radius: 100px;
}
.list-item__progress progress::-webkit-progress-value {
border-radius: 50px;
background-color: #3970DE;
background-size: 1rem 1rem;
background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent 100%);
}
/*------Window/Options-------*/
.main-window{
position:absolute;
display: none;
left:30%;
top: 2rem;
width:31rem;
height:33rem;
background: #fff;
z-index: 100;
border-radius: 5px;
border: solid 1px #999;
box-shadow: 3px 3px 3px #888;
}
.window__label{
margin: 5px;
padding: 5px;
background-color: rgba(0, 120, 205, 0.1);
text-align: center;
font-weight: bold;
color: #666;
border-radius: 5px;
}
.content-form{
width: 95%;
display: inline-block;
float: right;
margin: 1rem 0;
text-align: right;
font-size: 0.9rem;
color: #A6A6A6;
font-weight: bold;
}
.content-form__input_header, .content-form__input_tag{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
font-size: 0.8rem;
border-radius: 3px;
}
.form-radio_group{
margin-right: 9.3rem;
margin-left: 2rem;
display: inline-block;
float: right;
}
input[type="radio"]{
display: none;
}
input[type="radio"] + label{
display:inline-block;
width:19px;
height:19px;
margin:-1px 5px 0 0;
vertical-align:middle;
cursor:pointer;
border-radius: 50%;
}
input[type="radio"] + label{
opacity: 0.4;
border: 0.5px solid #FFF;
}
input[type="radio"]:checked + label{
opacity: 0.8;
border: 0.5px solid #888 ;
}
input[type="radio"] + label.input_radio_yellow, input[type="radio"]:checked + label.input_radio_yellow{
background-color: yellow;
}
input[type="radio"] + label.input_radio_blue, input[type="radio"]:checked + label.input_radio_blue{
background-color: blue;
}
input[type="radio"] + label.input_radio_green, input[type="radio"]:checked + label.input_radio_green{
background-color: green;
}
input[type="radio"] + label.input_radio_red, input[type="radio"]:checked + label.input_radio_red{
background-color: red;
}
input[type="radio"] + label.input_radio_orange, input[type="radio"]:checked + label.input_radio_orange{
background-color: orange;
}
input[type="radio"] + label.input_radio_none, input[type="radio"]:checked + label.input_radio_none{
background-color: #FFF;
border: 0.5px solid #888 ;
}
.content-form__input_date1, .content-form__input_date2{
width: 5rem;
margin-right: 15rem;
margin-left: 2rem;
display: inline-block;
float: right;
font-size: 0.8rem;
border-radius: 3px;
}
.content-form__input_annot{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
font-size: 0.8rem;
border-radius: 3px;
}
.content-form__slider{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
}
#content-form__handle {
width: 2rem;
height: 1.3rem;
top: 50%;
margin-top: -.8em;
text-align: center;
line-height: 1.6em;
}
.button_group{
width: 88%;
float: right;
display: inline-block;
margin-right: 3rem;
}
.button_custom {
float: right;
display: inline-block;
margin: 0.5rem 2rem 2rem 0;
width: 5rem;
background: #a7d0eb;
padding: 7px 14px;
border-radius: 5px;
color: #253761;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
text-align: center;
vertical-align: middle;
cursor: pointer;
opacity: 0.9;
}
.button_custom:hover {
border-top-color: #86b9d9;
background: #86b9d9;
color: #2b2e36;
}
.button_custom:active {
border-top-color: #1f80b8;
background: #1f80b8;
color: #fff;
}
.window__btn_delete{
display: none;
float: left;
font-size: 0.9rem;
padding: 8px 4px;
}
|
style.css
|
body {
font-family: Arial, Helvetica, sans-serif;
color: #555;
margin: 0;
padding: 0;
overflow: hidden;
font-size: 10px;
}
.main{
font-size: 1.2rem;
}
.main-overlay{
position:fixed;
top:0;
bottom: 0;
right: 0;
left:0;
background-color:#fff;
z-index:99;
}
.main-overlay__preloader{
width:20rem;
height:20rem;
position:absolute;
left:50%;
top:50%;
background-image:url(./status.gif);
background-repeat:no-repeat;
background-position:center;
margin:-10rem 0 0 -10rem;
}
.main-kanban{
margin: 2rem 7rem;
}
.main-kanban>div{ /*all kanban-tabels*/
position: absolute;
margin-top: 0;
padding:0;
width: 15rem;
border-radius: 5px;
border: solid 1px #999;
box-shadow: 1px 1px 1px #888;
}
.kanbanTable1{
margin-left: 0;
}
.kanbanTable2{
margin-left: 17rem;
}
.kanbanTable3{
margin-left: 34rem;
}
.kanbanTable4{
margin-left: 51rem;
}
.kanbanTable__label{
margin: 5px;
padding: 5px;
background-color: rgba(0, 120, 205, 0.1);
text-align: center;
border-radius: 5px;
}
.kanbanTable__btn_add{
font-size: 0.8rem;
padding:10px;
opacity: 0.7;
cursor: copy;
}
.kanbanTable__btn_add:hover{
opacity: 1;
}
.kanbanTable-list {
display: inline-block;
margin-top:0.5rem;
padding:0;
min-height: 1rem;
width: 100%;
list-style-type: none;
}
/*------List item--------*/
.list-item {
position: relative;
display: inline-block;
margin-top: 0.5rem;
margin-left: 4%;
padding-bottom: 0.3rem;
padding-left: 0.5rem;
width: 84%;
min-height: 20px;
border-radius: 5px;
border: solid 1px #999;
background-color: #fff;
}
.icon_comment, .icon_time{
cursor: pointer;
transform: scale(1.1);
padding: 0 1px 1px 0;
background-color: rgba( 0, 140, 140, 0.3);
border-radius: 5px;
margin: 0 5px;
}
.ui-tooltip {
max-width: 8rem !important;
}
.list-item__color{
content: "";
position: absolute;
top:-1px;
left:-1px;
height: 100%;
width: 1%;
border-radius: 5px 0 0 5px;
padding: 1px;
}
.list-item__header, .list-item__tag, .list-item__date{
display: inline-block;
margin: 0.5rem 1rem 0 0.5rem;
font-size: 0.9rem;
font-weight: bold;
}
.list-item__tag{
font-weight: normal;
color: #999;
}
.list-item__date{
margin-bottom: -1rem;
font-size: 0.7rem;
font-weight: normal;
color: #777;
}
/*------progress bar-------*/
.list-item__progress {
display: inline-block;
margin-left: 0.5rem;
text-align: right;
color: #999;
}
.list-item__progress p {
display: inline-block;
font-size: 0.9rem;
vertical-align: bottom;
margin: 0;
margin-left: 0.5rem;
padding-top: 0;
}
.list-item__progress progress {
display: inline-block;
width: 9rem;
height: 0.9rem;
border: none;
border-radius: 100px;
-webkit-appearance: none;
margin: 0;
padding: 0;
}
.list-item__progress progress::-webkit-progress-bar {
background-color: #999;
padding: 3px;
border-radius: 100px;
}
.list-item__progress progress::-webkit-progress-value {
border-radius: 50px;
background-color: #3970DE;
background-size: 1rem 1rem;
background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent 100%);
}
/*------Window/Options-------*/
.main-window{
position:absolute;
display: none;
left:30%;
top: 2rem;
width:31rem;
height:33rem;
background: #fff;
z-index: 100;
border-radius: 5px;
border: solid 1px #999;
box-shadow: 3px 3px 3px #888;
}
.window__label{
margin: 5px;
padding: 5px;
background-color: rgba(0, 120, 205, 0.1);
text-align: center;
font-weight: bold;
color: #666;
border-radius: 5px;
}
.content-form{
width: 95%;
display: inline-block;
float: right;
margin: 1rem 0;
text-align: right;
font-size: 0.9rem;
color: #A6A6A6;
font-weight: bold;
}
.content-form__input_header, .content-form__input_tag{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
font-size: 0.8rem;
border-radius: 3px;
}
.form-radio_group{
margin-right: 9.3rem;
margin-left: 2rem;
display: inline-block;
float: right;
}
input[type="radio"]{
display: none;
}
input[type="radio"] + label{
display:inline-block;
width:19px;
height:19px;
margin:-1px 5px 0 0;
vertical-align:middle;
cursor:pointer;
border-radius: 50%;
}
input[type="radio"] + label{
opacity: 0.4;
border: 0.5px solid #FFF;
}
input[type="radio"]:checked + label{
opacity: 0.8;
border: 0.5px solid #888 ;
}
input[type="radio"] + label.input_radio_yellow, input[type="radio"]:checked + label.input_radio_yellow{
background-color: yellow;
}
input[type="radio"] + label.input_radio_blue, input[type="radio"]:checked + label.input_radio_blue{
background-color: blue;
}
input[type="radio"] + label.input_radio_green, input[type="radio"]:checked + label.input_radio_green{
background-color: green;
}
input[type="radio"] + label.input_radio_red, input[type="radio"]:checked + label.input_radio_red{
background-color: red;
}
input[type="radio"] + label.input_radio_orange, input[type="radio"]:checked + label.input_radio_orange{
background-color: orange;
}
input[type="radio"] + label.input_radio_none, input[type="radio"]:checked + label.input_radio_none{
background-color: #FFF;
border: 0.5px solid #888 ;
}
.content-form__input_date1, .content-form__input_date2{
width: 5rem;
margin-right: 15rem;
margin-left: 2rem;
display: inline-block;
float: right;
font-size: 0.8rem;
border-radius: 3px;
}
.content-form__input_annot{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
font-size: 0.8rem;
border-radius: 3px;
}
.content-form__slider{
width: 16rem;
display: inline-block;
float: right;
margin-right: 4rem;
margin-left: 2rem;
}
#content-form__handle {
width: 2rem;
height: 1.3rem;
top: 50%;
margin-top: -.8em;
text-align: center;
line-height: 1.6em;
}
.button_group{
width: 88%;
float: right;
display: inline-block;
margin-right: 3rem;
}
.button_custom {
float: right;
display: inline-block;
margin: 0.5rem 2rem 2rem 0;
width: 5rem;
background: #a7d0eb;
padding: 7px 14px;
border-radius: 5px;
color: #253761;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
text-align: center;
vertical-align: middle;
cursor: pointer;
opacity: 0.9;
}
.button_custom:hover {
border-top-color: #86b9d9;
background: #86b9d9;
color: #2b2e36;
}
.button_custom:active {
border-top-color: #1f80b8;
background: #1f80b8;
color: #fff;
}
.window__btn_delete{
display: none;
float: left;
font-size: 0.9rem;
padding: 8px 4px;
}
| 0.388502 | 0.068787 |
@CHARSET "UTF-8";
*{
margin:0;
padding:0;
}
#div_body
{
width:100%;
height:1000px;
//background-color:red;
text-align:center;
padding-top:90px;
// overflow:auto;
}
#line_svg
{
width:100%;
height:10px;
// background-color:red;
}
#body_context
{
width:100%;
height:85%;
// background-color:green;
color:#666666;
}
a{
text-decoration:none;
}
#div_top
{
background-color:#aaaaaa;
color:white;
height:80px;
width:100%;
vertical-align:middle;
padding-top:10px;
position:fixed;
}
#logo_img
{
float:left;
margin-left:20px;
margin-right:5px;
padding-top:7px;
width:60px;
height:50px;
//background-color:white;
}
#logo_img_bottom
{
float:left;
margin-left:20px;
margin-right:5px;
padding-top:7px;
width:60px;
height:50px;
}
.logo_svg
{
//padding-left:20px;
// float:left;
width:100%;
height:100%;
}
.logo_text
{
padding-top:10px;
float:left;
font-size:20px;
font-weight:bold;
}
#navigator
{
float:right;
}
#navigator a
{
float:left;
font-size:25px;
padding-top:20px;
padding-right:20px;
}
#navigator a
{
color:#dcdcdc;
}
#navigator a:hover
{
color:white;
}
#div_buttom
{
background-color:#666666;
color:white;
// height:90px;
// width:100%;
vertical-align:middle;
padding-top:10px;
height:100px;
}
#bottom_middle
{
width:74%;
padding-left:13%;
padding-right:13%;
}
#context_bottom
{
float:right;
//text-align:center;
}
#copyright
{
width:100%;
// background-color:red;
text-align:center;
float:left;
padding-top:10px;
}
#thispage
{
color:#cc0000;
}
#left_column
{
height:100%;
// width:15%;
// background-color:blue;
text-align:center;
float:left;
}
#body_middle
{
float:left;
width:920px;
height:100%;
background-color:#dcdcdc;
}
#body_right
{
height:100%;
// width:15%;
// background-color:blue;
float:left;
}
#title_text
{
text-align:left;
margin-top:20px;
font-size:30px;
font-weight:bold;
width:100%;
}
#title_text div span
{
font-size:20px;
color:#bb5500;
}
#title_text div
{
height:32px;
//background-color:green;
border-bottom:3px solid #cccccc;
}
#title_text
{
//line-width:30px;
}
.line_svg
{
width:100%;
height:5px;
background-color:#cccccc;
}
.case_block
{
width:214px;
height:200px;
border:solid 2px #aaaaaa;
margin-top:20px;
margin-left:5px;
margin-right:5px;
float:left;
}
.filter_img
{
width:210px;
height:150px;
position:relative;
z-index:2;
top:-153px;
background-color:gray;
opacity:0.5;
color:white;
//visibility:hidden;
}
.pictureInBlock
{
width:210px;
height:150px;
margin-top:2px;
margin-left:2px;
overflow:hidden;
}
.brief_info
{
width:214px;
margin-top:10px;
}
.imgAdd
{
width:210px;
height:150px;
}
.filterP
{
background-color:black;
color:white;
font-weight:bold;
position:relative;
top:133px;
}
.pic_link
{
width:210px;
height:150px;
// background-color:red;
}
#pages
{
text-align:center;
float:left;
width:100%;
margin-top:20px;
}
#pages a
{
// width:40px;
// height:60px;
margin:5px;
// background-color:red;
// float:left;
color:blue;
}
|
style/shortcases.css
|
@CHARSET "UTF-8";
*{
margin:0;
padding:0;
}
#div_body
{
width:100%;
height:1000px;
//background-color:red;
text-align:center;
padding-top:90px;
// overflow:auto;
}
#line_svg
{
width:100%;
height:10px;
// background-color:red;
}
#body_context
{
width:100%;
height:85%;
// background-color:green;
color:#666666;
}
a{
text-decoration:none;
}
#div_top
{
background-color:#aaaaaa;
color:white;
height:80px;
width:100%;
vertical-align:middle;
padding-top:10px;
position:fixed;
}
#logo_img
{
float:left;
margin-left:20px;
margin-right:5px;
padding-top:7px;
width:60px;
height:50px;
//background-color:white;
}
#logo_img_bottom
{
float:left;
margin-left:20px;
margin-right:5px;
padding-top:7px;
width:60px;
height:50px;
}
.logo_svg
{
//padding-left:20px;
// float:left;
width:100%;
height:100%;
}
.logo_text
{
padding-top:10px;
float:left;
font-size:20px;
font-weight:bold;
}
#navigator
{
float:right;
}
#navigator a
{
float:left;
font-size:25px;
padding-top:20px;
padding-right:20px;
}
#navigator a
{
color:#dcdcdc;
}
#navigator a:hover
{
color:white;
}
#div_buttom
{
background-color:#666666;
color:white;
// height:90px;
// width:100%;
vertical-align:middle;
padding-top:10px;
height:100px;
}
#bottom_middle
{
width:74%;
padding-left:13%;
padding-right:13%;
}
#context_bottom
{
float:right;
//text-align:center;
}
#copyright
{
width:100%;
// background-color:red;
text-align:center;
float:left;
padding-top:10px;
}
#thispage
{
color:#cc0000;
}
#left_column
{
height:100%;
// width:15%;
// background-color:blue;
text-align:center;
float:left;
}
#body_middle
{
float:left;
width:920px;
height:100%;
background-color:#dcdcdc;
}
#body_right
{
height:100%;
// width:15%;
// background-color:blue;
float:left;
}
#title_text
{
text-align:left;
margin-top:20px;
font-size:30px;
font-weight:bold;
width:100%;
}
#title_text div span
{
font-size:20px;
color:#bb5500;
}
#title_text div
{
height:32px;
//background-color:green;
border-bottom:3px solid #cccccc;
}
#title_text
{
//line-width:30px;
}
.line_svg
{
width:100%;
height:5px;
background-color:#cccccc;
}
.case_block
{
width:214px;
height:200px;
border:solid 2px #aaaaaa;
margin-top:20px;
margin-left:5px;
margin-right:5px;
float:left;
}
.filter_img
{
width:210px;
height:150px;
position:relative;
z-index:2;
top:-153px;
background-color:gray;
opacity:0.5;
color:white;
//visibility:hidden;
}
.pictureInBlock
{
width:210px;
height:150px;
margin-top:2px;
margin-left:2px;
overflow:hidden;
}
.brief_info
{
width:214px;
margin-top:10px;
}
.imgAdd
{
width:210px;
height:150px;
}
.filterP
{
background-color:black;
color:white;
font-weight:bold;
position:relative;
top:133px;
}
.pic_link
{
width:210px;
height:150px;
// background-color:red;
}
#pages
{
text-align:center;
float:left;
width:100%;
margin-top:20px;
}
#pages a
{
// width:40px;
// height:60px;
margin:5px;
// background-color:red;
// float:left;
color:blue;
}
| 0.244183 | 0.053675 |
.counter-analog3 span.part {
display: inline-block;
}
.counter-analog3 span.separator {
display: inline-block;
height: 45px;
line-height: 45px;
width: 10px;
vertical-align: middle;
text-align: center;
font-weight: bold;
}
.counter-analog3 span.part span.digit {
display: inline-block;
height: 45px;
line-height: 45px;
width: 33px;
vertical-align: middle;
text-align: center;
font: 0/0 a;
text-shadow: none;
color: transparent;
margin: 0;
}
.counter-analog3 span.part span.digit {
background: transparent url("jquery.counter-analog3.png") 0 0 repeat-y;
}
.counter-analog3 span.part span.digit0 { background-position: 0 0; }
.counter-analog3 span.part span.digit1 { background-position: 0 -270px; }
.counter-analog3 span.part span.digit2 { background-position: 0 -540px; }
.counter-analog3 span.part span.digit3 { background-position: 0 -810px; }
.counter-analog3 span.part span.digit4 { background-position: 0 -1080px; }
.counter-analog3 span.part span.digit5 { background-position: 0 -1350px; }
.counter-analog3 span.part span.digit6 { background-position: 0 -1620px; }
.counter-analog3 span.part span.digit7 { background-position: 0 -1890px; }
.counter-analog3 span.part span.digit8 { background-position: 0 -2160px; }
.counter-analog3 span.part span.digit9 { background-position: 0 -2430px; }
/* UP */
@-webkit-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-moz-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-ms-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-webkit-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-moz-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-ms-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-webkit-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-moz-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-ms-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-webkit-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-moz-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-ms-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-webkit-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-moz-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-ms-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-webkit-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-moz-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-ms-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-webkit-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-moz-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-ms-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-webkit-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-moz-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-ms-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-webkit-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-moz-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-ms-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-webkit-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
@-moz-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
@-ms-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
.counter-analog3 span.part span.digit01 {
-webkit-animation: counter-analog3-01 .3s steps(6, end) 1;
-moz-animation: counter-analog3-01 .3s steps(6, end) 1;
-ms-animation: counter-analog3-01 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit12 {
-webkit-animation: counter-analog3-12 .3s steps(6, end) 1;
-moz-animation: counter-analog3-12 .3s steps(6, end) 1;
-ms-animation: counter-analog3-12 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit23 {
-webkit-animation: counter-analog3-23 .3s steps(6, end) 1;
-moz-animation: counter-analog3-23 .3s steps(6, end) 1;
-ms-animation: counter-analog3-23 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit34 {
-webkit-animation: counter-analog3-34 .3s steps(6, end) 1;
-moz-animation: counter-analog3-34 .3s steps(6, end) 1;
-ms-animation: counter-analog3-34 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit45 {
-webkit-animation: counter-analog3-45 .3s steps(6, end) 1;
-moz-animation: counter-analog3-45 .3s steps(6, end) 1;
-ms-animation: counter-analog3-45 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit56 {
-webkit-animation: counter-analog3-56 .3s steps(6, end) 1;
-moz-animation: counter-analog3-56 .3s steps(6, end) 1;
-ms-animation: counter-analog3-56 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit67 {
-webkit-animation: counter-analog3-67 .3s steps(6, end) 1;
-moz-animation: counter-analog3-67 .3s steps(6, end) 1;
-ms-animation: counter-analog3-67 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit78 {
-webkit-animation: counter-analog3-78 .3s steps(6, end) 1;
-moz-animation: counter-analog3-78 .3s steps(6, end) 1;
-ms-animation: counter-analog3-78 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit89 {
-webkit-animation: counter-analog3-89 .3s steps(6, end) 1;
-moz-animation: counter-analog3-89 .3s steps(6, end) 1;
-ms-animation: counter-analog3-89 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit90 {
-webkit-animation: counter-analog3-90 .3s steps(6, end) 1;
-moz-animation: counter-analog3-90 .3s steps(6, end) 1;
-ms-animation: counter-analog3-90 .3s steps(6, end) 1;
}
/* DOWN */
@-webkit-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-moz-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-ms-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-webkit-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-moz-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-ms-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-webkit-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-moz-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-ms-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-webkit-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-moz-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-ms-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-webkit-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-moz-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-ms-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-webkit-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-moz-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-ms-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-webkit-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-moz-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-ms-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-webkit-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-moz-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-ms-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-webkit-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-moz-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-ms-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-webkit-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
@-moz-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
@-ms-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
.counter-analog3 span.part span.digit10 {
-webkit-animation: counter-analog3-10 .3s steps(6, end) 1;
-moz-animation: counter-analog3-10 .3s steps(6, end) 1;
-ms-animation: counter-analog3-10 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit21 {
-webkit-animation: counter-analog3-21 .3s steps(6, end) 1;
-moz-animation: counter-analog3-21 .3s steps(6, end) 1;
-ms-animation: counter-analog3-21 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit32 {
-webkit-animation: counter-analog3-32 .3s steps(6, end) 1;
-moz-animation: counter-analog3-32 .3s steps(6, end) 1;
-ms-animation: counter-analog3-32 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit43 {
-webkit-animation: counter-analog3-43 .3s steps(6, end) 1;
-moz-animation: counter-analog3-43 .3s steps(6, end) 1;
-ms-animation: counter-analog3-43 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit54 {
-webkit-animation: counter-analog3-54 .3s steps(6, end) 1;
-moz-animation: counter-analog3-54 .3s steps(6, end) 1;
-ms-animation: counter-analog3-54 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit65 {
-webkit-animation: counter-analog3-65 .3s steps(6, end) 1;
-moz-animation: counter-analog3-65 .3s steps(6, end) 1;
-ms-animation: counter-analog3-65 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit76 {
-webkit-animation: counter-analog3-76 .3s steps(6, end) 1;
-moz-animation: counter-analog3-76 .3s steps(6, end) 1;
-ms-animation: counter-analog3-76 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit87 {
-webkit-animation: counter-analog3-87 .3s steps(6, end) 1;
-moz-animation: counter-analog3-87 .3s steps(6, end) 1;
-ms-animation: counter-analog3-87 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit98 {
-webkit-animation: counter-analog3-98 .3s steps(6, end) 1;
-moz-animation: counter-analog3-98 .3s steps(6, end) 1;
-ms-animation: counter-analog3-98 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit09 {
-webkit-animation: counter-analog3-09 .3s steps(6, end) 1;
-moz-animation: counter-analog3-09 .3s steps(6, end) 1;
-ms-animation: counter-analog3-09 .3s steps(6, end) 1;
}
|
third_party/sophilabs-jquery-counter/src/jquery.counter-analog3.css
|
.counter-analog3 span.part {
display: inline-block;
}
.counter-analog3 span.separator {
display: inline-block;
height: 45px;
line-height: 45px;
width: 10px;
vertical-align: middle;
text-align: center;
font-weight: bold;
}
.counter-analog3 span.part span.digit {
display: inline-block;
height: 45px;
line-height: 45px;
width: 33px;
vertical-align: middle;
text-align: center;
font: 0/0 a;
text-shadow: none;
color: transparent;
margin: 0;
}
.counter-analog3 span.part span.digit {
background: transparent url("jquery.counter-analog3.png") 0 0 repeat-y;
}
.counter-analog3 span.part span.digit0 { background-position: 0 0; }
.counter-analog3 span.part span.digit1 { background-position: 0 -270px; }
.counter-analog3 span.part span.digit2 { background-position: 0 -540px; }
.counter-analog3 span.part span.digit3 { background-position: 0 -810px; }
.counter-analog3 span.part span.digit4 { background-position: 0 -1080px; }
.counter-analog3 span.part span.digit5 { background-position: 0 -1350px; }
.counter-analog3 span.part span.digit6 { background-position: 0 -1620px; }
.counter-analog3 span.part span.digit7 { background-position: 0 -1890px; }
.counter-analog3 span.part span.digit8 { background-position: 0 -2160px; }
.counter-analog3 span.part span.digit9 { background-position: 0 -2430px; }
/* UP */
@-webkit-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-moz-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-ms-keyframes counter-analog3-01 { from { background-position: 0 0; }
to { background-position: 0 -270px; }}
@-webkit-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-moz-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-ms-keyframes counter-analog3-12 { from { background-position: 0 -270px; }
to { background-position: 0 -540px; }}
@-webkit-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-moz-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-ms-keyframes counter-analog3-23 { from { background-position: 0 -540px; }
to { background-position: 0 -810px; }}
@-webkit-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-moz-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-ms-keyframes counter-analog3-34 { from { background-position: 0 -810px; }
to { background-position: 0 -1080px; }}
@-webkit-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-moz-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-ms-keyframes counter-analog3-45 { from { background-position: 0 -1080px; }
to { background-position: 0 -1350px; }}
@-webkit-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-moz-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-ms-keyframes counter-analog3-56 { from { background-position: 0 -1350px; }
to { background-position: 0 -1620px; }}
@-webkit-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-moz-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-ms-keyframes counter-analog3-67 { from { background-position: 0 -1620px; }
to { background-position: 0 -1890px; }}
@-webkit-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-moz-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-ms-keyframes counter-analog3-78 { from { background-position: 0 -1890px; }
to { background-position: 0 -2160px; }}
@-webkit-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-moz-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-ms-keyframes counter-analog3-89 { from { background-position: 0 -2160px; }
to { background-position: 0 -2430px; }}
@-webkit-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
@-moz-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
@-ms-keyframes counter-analog3-90 { from { background-position: 0 -2430px; }
to { background-position: 0 -2400px; }}
.counter-analog3 span.part span.digit01 {
-webkit-animation: counter-analog3-01 .3s steps(6, end) 1;
-moz-animation: counter-analog3-01 .3s steps(6, end) 1;
-ms-animation: counter-analog3-01 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit12 {
-webkit-animation: counter-analog3-12 .3s steps(6, end) 1;
-moz-animation: counter-analog3-12 .3s steps(6, end) 1;
-ms-animation: counter-analog3-12 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit23 {
-webkit-animation: counter-analog3-23 .3s steps(6, end) 1;
-moz-animation: counter-analog3-23 .3s steps(6, end) 1;
-ms-animation: counter-analog3-23 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit34 {
-webkit-animation: counter-analog3-34 .3s steps(6, end) 1;
-moz-animation: counter-analog3-34 .3s steps(6, end) 1;
-ms-animation: counter-analog3-34 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit45 {
-webkit-animation: counter-analog3-45 .3s steps(6, end) 1;
-moz-animation: counter-analog3-45 .3s steps(6, end) 1;
-ms-animation: counter-analog3-45 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit56 {
-webkit-animation: counter-analog3-56 .3s steps(6, end) 1;
-moz-animation: counter-analog3-56 .3s steps(6, end) 1;
-ms-animation: counter-analog3-56 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit67 {
-webkit-animation: counter-analog3-67 .3s steps(6, end) 1;
-moz-animation: counter-analog3-67 .3s steps(6, end) 1;
-ms-animation: counter-analog3-67 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit78 {
-webkit-animation: counter-analog3-78 .3s steps(6, end) 1;
-moz-animation: counter-analog3-78 .3s steps(6, end) 1;
-ms-animation: counter-analog3-78 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit89 {
-webkit-animation: counter-analog3-89 .3s steps(6, end) 1;
-moz-animation: counter-analog3-89 .3s steps(6, end) 1;
-ms-animation: counter-analog3-89 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit90 {
-webkit-animation: counter-analog3-90 .3s steps(6, end) 1;
-moz-animation: counter-analog3-90 .3s steps(6, end) 1;
-ms-animation: counter-analog3-90 .3s steps(6, end) 1;
}
/* DOWN */
@-webkit-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-moz-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-ms-keyframes counter-analog3-10 { from { background-position: 0 -270px; }
to { background-position: 0 0; }}
@-webkit-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-moz-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-ms-keyframes counter-analog3-21 { from { background-position: 0 -540px; }
to { background-position: 0 -270px; }}
@-webkit-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-moz-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-ms-keyframes counter-analog3-32 { from { background-position: 0 -810px; }
to { background-position: 0 -540px; }}
@-webkit-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-moz-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-ms-keyframes counter-analog3-43 { from { background-position: 0 -1080px; }
to { background-position: 0 -810px; }}
@-webkit-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-moz-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-ms-keyframes counter-analog3-54 { from { background-position: 0 -1350px; }
to { background-position: 0 -1080px; }}
@-webkit-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-moz-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-ms-keyframes counter-analog3-65 { from { background-position: 0 -1620px; }
to { background-position: 0 -1350px; }}
@-webkit-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-moz-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-ms-keyframes counter-analog3-76 { from { background-position: 0 -1890px; }
to { background-position: 0 -1620px; }}
@-webkit-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-moz-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-ms-keyframes counter-analog3-87 { from { background-position: 0 -2160px; }
to { background-position: 0 -1890px; }}
@-webkit-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-moz-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-ms-keyframes counter-analog3-98 { from { background-position: 0 -2430px; }
to { background-position: 0 -2160px; }}
@-webkit-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
@-moz-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
@-ms-keyframes counter-analog3-09 { from { background-position: 0 -2400px; }
to { background-position: 0 -2430px; }}
.counter-analog3 span.part span.digit10 {
-webkit-animation: counter-analog3-10 .3s steps(6, end) 1;
-moz-animation: counter-analog3-10 .3s steps(6, end) 1;
-ms-animation: counter-analog3-10 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit21 {
-webkit-animation: counter-analog3-21 .3s steps(6, end) 1;
-moz-animation: counter-analog3-21 .3s steps(6, end) 1;
-ms-animation: counter-analog3-21 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit32 {
-webkit-animation: counter-analog3-32 .3s steps(6, end) 1;
-moz-animation: counter-analog3-32 .3s steps(6, end) 1;
-ms-animation: counter-analog3-32 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit43 {
-webkit-animation: counter-analog3-43 .3s steps(6, end) 1;
-moz-animation: counter-analog3-43 .3s steps(6, end) 1;
-ms-animation: counter-analog3-43 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit54 {
-webkit-animation: counter-analog3-54 .3s steps(6, end) 1;
-moz-animation: counter-analog3-54 .3s steps(6, end) 1;
-ms-animation: counter-analog3-54 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit65 {
-webkit-animation: counter-analog3-65 .3s steps(6, end) 1;
-moz-animation: counter-analog3-65 .3s steps(6, end) 1;
-ms-animation: counter-analog3-65 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit76 {
-webkit-animation: counter-analog3-76 .3s steps(6, end) 1;
-moz-animation: counter-analog3-76 .3s steps(6, end) 1;
-ms-animation: counter-analog3-76 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit87 {
-webkit-animation: counter-analog3-87 .3s steps(6, end) 1;
-moz-animation: counter-analog3-87 .3s steps(6, end) 1;
-ms-animation: counter-analog3-87 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit98 {
-webkit-animation: counter-analog3-98 .3s steps(6, end) 1;
-moz-animation: counter-analog3-98 .3s steps(6, end) 1;
-ms-animation: counter-analog3-98 .3s steps(6, end) 1;
}
.counter-analog3 span.part span.digit09 {
-webkit-animation: counter-analog3-09 .3s steps(6, end) 1;
-moz-animation: counter-analog3-09 .3s steps(6, end) 1;
-ms-animation: counter-analog3-09 .3s steps(6, end) 1;
}
| 0.408631 | 0.211163 |
.button-default {
background-color: #fff;
color: black;
}
.button-primary {
background-color: #337ab7;
color: white;
}
.button-danger {
background-color: #D06565;
color: white;
}
.button-success {
background-color: #5cb85c;
color: white;
}
.button-default, .button-danger , .button-primary , .button-success {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 2px;
background-size: 14px;
vertical-align: middle;
cursor: pointer;
text-align: center;
border: none;
padding: 0px;
}
.button-default:hover , .button-danger:hover , .button-primary:hover , .button-success:hover {
opacity: 0.5;
}
.round {
background: #FFB400;
border-radius: 20px;
width: 40px;
height: 40px;
display: inline-block;
float: left;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.center {
margin-left: auto;
margin-right: auto;
}
.float-right {
float: right;
}
.fit-content {
width: intrinsic; /* Safari/WebKit uses a non-standard name */
width: -moz-max-content; /* Firefox/Gecko */
width: -webkit-max-content; /* Chrome */
}
.box-form {
padding: 0 15px;
background-color: white;
border: 1px solid #EFEFEF;
text-align: left;
}
.button-blue {
border: 0;
padding: 10px;
box-sizing: border-box;
width: 100%;
background-color: #8185C7;
color: white;
}
.relative {
position: relative;
}
.block {
display: block;
}
.table {
display: table;
}
.table-cell {
display: table-cell;
}
.display-none {
display: none;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.vertical-align-bottom {
vertical-align: bottom !important;
}
.vertical-align-top {
vertical-align: top !important;
}
.overflow-visible {
overflow: visible !important;
}
.danger-back-color {
background-color: #E84C3D !important;
border-color: #E84C3D !important;
}
.success-back-color {
background-color: #53AA50 !important;
border-color: #53AA50 !important;
}
.cursor-pointer {
cursor: pointer;
}
|
public/css/component-style.css
|
.button-default {
background-color: #fff;
color: black;
}
.button-primary {
background-color: #337ab7;
color: white;
}
.button-danger {
background-color: #D06565;
color: white;
}
.button-success {
background-color: #5cb85c;
color: white;
}
.button-default, .button-danger , .button-primary , .button-success {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 2px;
background-size: 14px;
vertical-align: middle;
cursor: pointer;
text-align: center;
border: none;
padding: 0px;
}
.button-default:hover , .button-danger:hover , .button-primary:hover , .button-success:hover {
opacity: 0.5;
}
.round {
background: #FFB400;
border-radius: 20px;
width: 40px;
height: 40px;
display: inline-block;
float: left;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.center {
margin-left: auto;
margin-right: auto;
}
.float-right {
float: right;
}
.fit-content {
width: intrinsic; /* Safari/WebKit uses a non-standard name */
width: -moz-max-content; /* Firefox/Gecko */
width: -webkit-max-content; /* Chrome */
}
.box-form {
padding: 0 15px;
background-color: white;
border: 1px solid #EFEFEF;
text-align: left;
}
.button-blue {
border: 0;
padding: 10px;
box-sizing: border-box;
width: 100%;
background-color: #8185C7;
color: white;
}
.relative {
position: relative;
}
.block {
display: block;
}
.table {
display: table;
}
.table-cell {
display: table-cell;
}
.display-none {
display: none;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.vertical-align-bottom {
vertical-align: bottom !important;
}
.vertical-align-top {
vertical-align: top !important;
}
.overflow-visible {
overflow: visible !important;
}
.danger-back-color {
background-color: #E84C3D !important;
border-color: #E84C3D !important;
}
.success-back-color {
background-color: #53AA50 !important;
border-color: #53AA50 !important;
}
.cursor-pointer {
cursor: pointer;
}
| 0.498291 | 0.064418 |
.section {
border-bottom: 1px solid #EFEFEF;
}
.main {
border-bottom: none;
}
.below {
margin: 2em 0 0 0;
padding-top: 1em;
}
.com_courses .aside {
float: right;
width: 214px;
padding-top: 1em;
}
.subject {
margin: 1em 0;
margin-right: 235px;
padding: 1.4em;
background: #F7F7F7;
border-top: 1px solid #E3E3E3;
border-bottom: 1px solid #E3E3E3;
}
.com_courses .main .subject {
border: none;
background: transparent;
padding: 1em 0 0 0;
}
.main .subject p:first-child {
margin-top: 0;
}
.main h3 {
display: none;
}
.main .main h3,
.main form h3 {
display: block;
}
.main .subject h1 {
font-size: 1.8em;
}
.main .subject h2 span {
color: #333;
}
.main .subject ul,
.main .subject ol {
padding: 0;
margin: 1em 0;
}
.main .subject ol {
list-style-type: decimal;
}
.main .subject ul {
list-style-type: disc;
}
.main .subject li {
padding: 0;
margin: 0.2em 0 0.2em 2em;
}
.aside p:first-child {
margin-top: 0;
}
#hubForm dl dt {
font-weight: bold;
}
.com_courses #useroptions {
margin:0;
overflow:hidden;
}
.com_courses #useroptions li {
float:right;
margin:0;
}
.icon-fork:before {
content: "\2298";
}
/* IE 7 hacks */
html>body .resource th {
*width: 10em;
}
html>body #section-useroptions {
*margin-bottom: 0;
*padding-bottom: 0;
}
/* IE 6 hacks */
* html ol.comments div.cwrap {
height: 6em;
}
* html #useroptions {
margin-bottom: 0;
padding-bottom: 0;
}
* html .aside p input {
width: 13em;
}
* html #revisionhistory {
clear: none;
float:left;
}
* html .article-toc ul {
height: 300px;
list-style: none;
}
* html .article-toc ul ul {
height: auto;
}
/* Members tab */
.member-sets {
margin-bottom: 2em;
}
.member-sets tfoot td {
border-top: 1px solid #ddd;
text-align: right;
}
.member-sets tfoot td input {
margin-left: 2em;
}
#courselist tbody span.status {
font-weight: bold;
}
#courselist tbody span.member {
color: #66AA00;
}
#courselist tbody span.manager {
color: #ff1177;
}
#courselist tbody span.pending {
color: #AA3300;
}
#courselist tbody span.invitee {
color: #aaaaaa;
}
/* Resources tab */
.results {
list-style: none;
margin: 0 1em 1em 1em;
padding: 0;
position: relative;
}
.results li {
border-bottom: 1px solid #efefef;
padding: 1em 0 1em 1em;
margin: 0;
}
.results p,
.results .details {
margin: 0.5em 0;
padding: 0;
}
.results .title {
margin-left: -1em;
font-weight: bold;
}
/* Resource item listing */
.results .resource {
}
.results .resource .title {
margin-right: 220px;
}
.results .resource .stats {
margin: -1.5em 0 0 0;
float: right;
width: 190px;
background: none;
}
.results .resource .stats p {
color: #999;
font-size: 90%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* Category headers */
.category-header {
position: relative;
padding: 0.5em 0.5em 0.5em 1.5em;
margin: 1em 0 0 0;
color: #fff;
background: #bbb;
}
.category-header small {
position: absolute;
right: 0.5em;
font-size: 1em;
}
.opened {
background: #bbb;
}
/* Misc. */
.category-wrap {
margin-bottom: 2em;
}
.category-wrap>p {
margin: 0 0 1em 0;
padding: 1em 0 1em 0;
}
.moreresults {
margin: 0 1em 2.5em 1em;
padding: 0;
font-weight: bold;
color: #999;
}
.aside .sub-nav,
.aside .sub-nav ul {
margin: 0;
list-style: none;
}
.aside .sub-nav ul {
padding-left: 1em;
}
.aside .sub-nav li.active a {
font-weight: bold;
}
.aside .sub-nav li.active li a {
border: none;
color: #4583A6;
font-weight: normal;
background-position: 0 0.7em;
}
.aside .sub-nav li.active li a:hover {
color: #c00;
background-position: 0.3em 0.7em;
}
/* File manager */
iframe {
border: 1px solid #fff;
margin: 0;
padding: 0;
}
body#attachments,
body#attachments form,
body#attachments fieldset {
background: #fff;
margin: 0;
padding: 0;
border: none;
}
body#attachments iframe {
border: 1px solid #ddd;
margin: 0;
padding: 0;
}
body#attachments h1 {
font-size: 1em;
background: #aaa;
color: #fff;
margin: 0 1.5% 0 0;
padding: 0.2em 0.5em;
border: 1px solid #aaa;
}
/* Members tab */
#course_members {
border:1px solid #F00;
}
|
core/components/com_courses/site/assets/css/courses.css
|
.section {
border-bottom: 1px solid #EFEFEF;
}
.main {
border-bottom: none;
}
.below {
margin: 2em 0 0 0;
padding-top: 1em;
}
.com_courses .aside {
float: right;
width: 214px;
padding-top: 1em;
}
.subject {
margin: 1em 0;
margin-right: 235px;
padding: 1.4em;
background: #F7F7F7;
border-top: 1px solid #E3E3E3;
border-bottom: 1px solid #E3E3E3;
}
.com_courses .main .subject {
border: none;
background: transparent;
padding: 1em 0 0 0;
}
.main .subject p:first-child {
margin-top: 0;
}
.main h3 {
display: none;
}
.main .main h3,
.main form h3 {
display: block;
}
.main .subject h1 {
font-size: 1.8em;
}
.main .subject h2 span {
color: #333;
}
.main .subject ul,
.main .subject ol {
padding: 0;
margin: 1em 0;
}
.main .subject ol {
list-style-type: decimal;
}
.main .subject ul {
list-style-type: disc;
}
.main .subject li {
padding: 0;
margin: 0.2em 0 0.2em 2em;
}
.aside p:first-child {
margin-top: 0;
}
#hubForm dl dt {
font-weight: bold;
}
.com_courses #useroptions {
margin:0;
overflow:hidden;
}
.com_courses #useroptions li {
float:right;
margin:0;
}
.icon-fork:before {
content: "\2298";
}
/* IE 7 hacks */
html>body .resource th {
*width: 10em;
}
html>body #section-useroptions {
*margin-bottom: 0;
*padding-bottom: 0;
}
/* IE 6 hacks */
* html ol.comments div.cwrap {
height: 6em;
}
* html #useroptions {
margin-bottom: 0;
padding-bottom: 0;
}
* html .aside p input {
width: 13em;
}
* html #revisionhistory {
clear: none;
float:left;
}
* html .article-toc ul {
height: 300px;
list-style: none;
}
* html .article-toc ul ul {
height: auto;
}
/* Members tab */
.member-sets {
margin-bottom: 2em;
}
.member-sets tfoot td {
border-top: 1px solid #ddd;
text-align: right;
}
.member-sets tfoot td input {
margin-left: 2em;
}
#courselist tbody span.status {
font-weight: bold;
}
#courselist tbody span.member {
color: #66AA00;
}
#courselist tbody span.manager {
color: #ff1177;
}
#courselist tbody span.pending {
color: #AA3300;
}
#courselist tbody span.invitee {
color: #aaaaaa;
}
/* Resources tab */
.results {
list-style: none;
margin: 0 1em 1em 1em;
padding: 0;
position: relative;
}
.results li {
border-bottom: 1px solid #efefef;
padding: 1em 0 1em 1em;
margin: 0;
}
.results p,
.results .details {
margin: 0.5em 0;
padding: 0;
}
.results .title {
margin-left: -1em;
font-weight: bold;
}
/* Resource item listing */
.results .resource {
}
.results .resource .title {
margin-right: 220px;
}
.results .resource .stats {
margin: -1.5em 0 0 0;
float: right;
width: 190px;
background: none;
}
.results .resource .stats p {
color: #999;
font-size: 90%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* Category headers */
.category-header {
position: relative;
padding: 0.5em 0.5em 0.5em 1.5em;
margin: 1em 0 0 0;
color: #fff;
background: #bbb;
}
.category-header small {
position: absolute;
right: 0.5em;
font-size: 1em;
}
.opened {
background: #bbb;
}
/* Misc. */
.category-wrap {
margin-bottom: 2em;
}
.category-wrap>p {
margin: 0 0 1em 0;
padding: 1em 0 1em 0;
}
.moreresults {
margin: 0 1em 2.5em 1em;
padding: 0;
font-weight: bold;
color: #999;
}
.aside .sub-nav,
.aside .sub-nav ul {
margin: 0;
list-style: none;
}
.aside .sub-nav ul {
padding-left: 1em;
}
.aside .sub-nav li.active a {
font-weight: bold;
}
.aside .sub-nav li.active li a {
border: none;
color: #4583A6;
font-weight: normal;
background-position: 0 0.7em;
}
.aside .sub-nav li.active li a:hover {
color: #c00;
background-position: 0.3em 0.7em;
}
/* File manager */
iframe {
border: 1px solid #fff;
margin: 0;
padding: 0;
}
body#attachments,
body#attachments form,
body#attachments fieldset {
background: #fff;
margin: 0;
padding: 0;
border: none;
}
body#attachments iframe {
border: 1px solid #ddd;
margin: 0;
padding: 0;
}
body#attachments h1 {
font-size: 1em;
background: #aaa;
color: #fff;
margin: 0 1.5% 0 0;
padding: 0.2em 0.5em;
border: 1px solid #aaa;
}
/* Members tab */
#course_members {
border:1px solid #F00;
}
| 0.212968 | 0.146453 |
@charset "utf-8";
/* CSS Document */
.firsrlogin_middle{
height:553px;
width:720px;
border-bottom-style:dashed;
border-color:#7a7a7a;
border-width:1px;
display: inline-block;
}
.firsrlogin_middle-none-line{
height:553px;
width:720px;
display: inline-block;
}
.firstlogin_middle_1{
font-size:12px;
padding-top:11px;
}
.firstlogin_middle_2{
color:#6eb92b;
width:7px;
}
.firstlogin_middle_3{
width:80px;
font-size:13px;
color:#666666;
}
.firstlogin_middle_4{
width:230px;
}
.firstlogin_middle_5{
width:220px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_6{
color:#bbbbbb;
font-size:11px;
}
.firstlogin_middle_7_1{
//width:65px;
}
.firstlogin_middle_dropdown1{
color:#6eb92b;
border:#bbe09d 1px solid;
width:65px;
}
.firstlogin_middle_8{
width:30px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_7_2{
width:45px;
}
.firstlogin_middle_dropdown2{
color:#6eb92b;
border:#bbe09d 1px solid;
width:45px;
}
.firstlogin_middle_9{
width:80px;
}
.firstlogin_middle_10{
width:55px;
}
.firstlogin_middle_dropdown3{
color:#6eb92b;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_1{
width:65px;
}
.firstlogin_middle_11_2{
width:60px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_3{
width:110px;
}
.firstlogin_middle_11_5{
width:105px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_4{
width:70px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_11_6{
width:60px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_11_7{
width:50px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_bottom_picture{
margin-top:46px;
}
/*一下是立达的*/
.firstlogin_middle_3-1{
width:100px;
font-size:13px;
color:#000;
}
.firstlogin_middle_dropdown3-1{
color:#6eb92b;
border:#bbe09d 1px solid;
width:77px;
margin-left:4px;
}
.firstlogin_middle_8-1{
width:120px;
color:#666666;
font-size:13px;
text-align:right;
margin-left:304px;
}
.firstlogin_middle_3-1-wodejifen{
width:80px;
font-size:13px;
color:#666666;
}
|
app/assets/stylesheets/Member-information-firstlogin.css
|
@charset "utf-8";
/* CSS Document */
.firsrlogin_middle{
height:553px;
width:720px;
border-bottom-style:dashed;
border-color:#7a7a7a;
border-width:1px;
display: inline-block;
}
.firsrlogin_middle-none-line{
height:553px;
width:720px;
display: inline-block;
}
.firstlogin_middle_1{
font-size:12px;
padding-top:11px;
}
.firstlogin_middle_2{
color:#6eb92b;
width:7px;
}
.firstlogin_middle_3{
width:80px;
font-size:13px;
color:#666666;
}
.firstlogin_middle_4{
width:230px;
}
.firstlogin_middle_5{
width:220px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_6{
color:#bbbbbb;
font-size:11px;
}
.firstlogin_middle_7_1{
//width:65px;
}
.firstlogin_middle_dropdown1{
color:#6eb92b;
border:#bbe09d 1px solid;
width:65px;
}
.firstlogin_middle_8{
width:30px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_7_2{
width:45px;
}
.firstlogin_middle_dropdown2{
color:#6eb92b;
border:#bbe09d 1px solid;
width:45px;
}
.firstlogin_middle_9{
width:80px;
}
.firstlogin_middle_10{
width:55px;
}
.firstlogin_middle_dropdown3{
color:#6eb92b;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_1{
width:65px;
}
.firstlogin_middle_11_2{
width:60px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_3{
width:110px;
}
.firstlogin_middle_11_5{
width:105px;
border:#bbe09d 1px solid;
}
.firstlogin_middle_11_4{
width:70px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_11_6{
width:60px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_middle_11_7{
width:50px;
color:#6eb92b;
font-size:13px;
text-align:center;
}
.firstlogin_bottom_picture{
margin-top:46px;
}
/*一下是立达的*/
.firstlogin_middle_3-1{
width:100px;
font-size:13px;
color:#000;
}
.firstlogin_middle_dropdown3-1{
color:#6eb92b;
border:#bbe09d 1px solid;
width:77px;
margin-left:4px;
}
.firstlogin_middle_8-1{
width:120px;
color:#666666;
font-size:13px;
text-align:right;
margin-left:304px;
}
.firstlogin_middle_3-1-wodejifen{
width:80px;
font-size:13px;
color:#666666;
}
| 0.113457 | 0.040541 |
.zone-content > .page header h1, .bing-area header h1, .bing-place header h1, .zone-content > h1, .documentation header h1, .article header h1 {
font-size: 36px;
color: #000;
font-family: 'Dosis', SemiBold;
font-weight: 600;
line-height: 36px;
}
/*.zone-content > .page > div:nth-child(2) {
display: inline-block;
}*/
.zone-content > .page > header > h1 {
margin-top: 0px;
float: none;
clear: both;
}
.rss-mini img {
/*margin-top: 24px;*/
margin-left: 10px;
}
/*Lato*/
.text-lato-28 {
font-size: 28px;
color: #000;
font-family: 'Lato', Regular;
letter-spacing: 0.05em;
}
.text-lato-26 {
font-size: 26px;
color: #000;
font-family: 'Lato', Regular;
letter-spacing: 0.05em;
}
.text-lato-24 {
font-size: 24px;
font-family: 'Lato', Bold;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-22 {
font-size: 22px;
font-family: 'Lato', Bold;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-20 {
font-size: 20px;
font-family: 'Lato', Bold;
/*color: #000;*/
letter-spacing: 0.05em;
}
.text-lato-18 {
font-size: 18px;
font-family: 'Lato', Regular;
line-height: 28px;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-16 {
font-size: 16px;
line-height: 24px;
font-family: 'Lato', Regular;
color: #000;
/* letter-spacing: 0.05em;*/
}
.text-lato-14 {
font-size: 14px;
font-family: 'Lato', Regular;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-12 {
font-size: 12px;
font-family: 'Lato', Regular;
color: #000;
letter-spacing: 0.05em;
}
/*Dosis*/
.text-dosis-24 {
font-size: 24px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
.text-dosis-28 {
font-size: 28px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
/*Sidebar*/
.sidebar {
width: 31%;
float: right;
margin: -55px 0px 0px 0px;
padding: 19px 0px;
background-color: #f0f4f5;
}
.sidebar .label {
padding: 37px 20px 7px 20px;
}
.sidebar > .label:first-child {
padding: 7px 20px 7px 20px !important;
}
.sidebar > .list {
list-style-type: none;
margin: 0px;
padding: 0px;
font-weight: 700;
}
.sidebar > .list > li {
padding: 6px 20px;
color: #009ed9;
cursor: pointer;
letter-spacing: normal;
}
.sidebar > .list > li:hover {
color: #000;
background-color: #e3e7e8;
}
.sidebar > .list > li.active {
background-color: #e3e7e8;
}
.sidebar > .list > li.active a {
color: #000 !important;
}
.sidebar .text {
padding: 5px 20px;
}
.sidebar .button {
padding: 20px 20px 0px 20px;
clear: both;
float: left;
width: 87%;
}
.sidebar .info {
padding-left: 20px;
}
.sidebar .info p {
margin: 0px;
}
/*Button*/
.button {
display: inline-block;
}
.button a {
clear: both;
display: block;
text-align: center;
text-transform: uppercase;
color: #fff;
text-decoration: none;
font-weight: 700;
}
.button.micro {
line-height: 24px;
font-size: 14px;
}
.button.micro a {
border-bottom: 3px solid #0071a0 !important;
}
.button.mini {
line-height: 36px;
font-size: 14px;
}
.button.micro a {
border-bottom: 4px solid #0071a0 !important;
}
.button.small {
line-height: 45px;
font-size: 16px;
}
.button.medium {
line-height: 49px;
font-size: 16px;
}
.button.big {
line-height: 56px;
font-size: 20px;
}
.button.learn-more {
line-height: 46px;
font-size: 20px;
font-family: 'Lato', Regular;
}
a.blue {
background-color: #00a3c4;
border-bottom: 5px solid #0071a0;
}
a.yellow {
background-color: #f18700;
border-bottom: 5px solid #884d00;
}
a.gray {
background-color: #5f6972;
border-bottom: 5px solid #3c454c;
}
a.dark-green {
background-color: #5eb825;
border-bottom: 5px solid #306e0b;
}
a.fiolet {
background-color: #7d5dcc;
border-bottom: 5px solid #50368d;
}
a.red {
background-color: #01c19c;
border-bottom: 5px solid #00735f;
}
a.light-green {
background-color: #e0001a;
border-bottom: 5px solid #84000e;
}
/*emphasize*/
.data-emphasize {
color: #009ed9;
}
.header-emphasize {
padding-bottom: 25px;
line-height: 40px;
color: #00a3c4 !important;
}
/*after-header*/
.after-header {
padding-right: 60px;
}
.after-header p {
padding-bottom: 26px;
}
.intro {
width: 68%;
float: left;
}
.intro p {
margin: 0px 0px;
}
.separ-zone {
display: inline-block;
}
.dash {
float: left;
margin-left: -25px;
}
/*----------------------- new Home page ----------------------*/
.home-header img {
margin-top: 50px;
margin-bottom: 24px;
}
.steps-123 {
position: relative;
margin-top: 25px;
margin-bottom: 84px;
}
.platform {
width: 100%;
border-collapse: collapse;
margin-top: 56px;
}
.platform img {
float: left;
padding-bottom: 60px;
padding-right: 20px;
}
.platform p {
padding-right: 60px;
}
.platform td {
text-align: left;
padding-top: 24px;
}
.platform td a {
font-weight: 600;
}
.after-slider .everything {
text-align: left;
}
.title {
font-weight: 600;
}
.title span {
color: #a4aeb6;
font-weight: normal;
font-size: 18px;
}
.learn-more {
width: 210px;
}
.everything strong {
display: inline-block;
line-height: 45px;
float: left;
margin-right: 37px;
}
.steps-123 div {
width: 421px;
margin-bottom: 76px;
margin-top: 10px;
}
.steps-123 p {
margin-top: 2px;
}
.steps-1, .steps-3 {
margin-left: 524px;
}
.steps-2 {
margin-left: 15px;
}
.steps-123 img {
position: absolute;
left: 321px;
top: -2px;
}
/*----------------------Home page----------------------*/
.home-header {
/*padding-top: 30px;*/
color: #000;
font-size: 44px;
text-align: center;
font-family: 'Dosis', Semibold;
margin-top: 33px;
}
.home-header strong {
font-weight: 600;
}
.subheader {
padding-top: 15px;
font-family: 'Lato', Bold;
font-size: 22px;
color: #00a3c4;
padding-bottom: 20px;
}
.after-slider .subheader {
padding-top: 15px;
font-family: 'Lato', Bold;
font-size: 24px;
color: #00a3c4;
}
.wrap-download {
text-align: center;
padding-top: 22px;
padding-bottom: 53px;
}
.wrap-download a.download-now {
margin: 0 auto;
font-family: 'LATO' 'Black';
font-size: 20px;
display: inline-block;
height: 61px;
line-height: 61px;
text-align: center;
width: 300px;
text-transform: uppercase;
color: #fff;
background-image: url(/Media/Default/Home/button-inactive.png);
background-repeat: repeat-x;
text-decoration: none;
font-weight: bold;
letter-spacing: 1px;
}
.wrap-download a.try-servicebus {
margin: 0 auto;
font-family: 'LATO' 'Black';
font-size: 20px;
display: inline-block;
height: 61px;
line-height: 61px;
text-align: center;
width: 300px;
text-transform: uppercase;
color: #fff;
background-image: url(/Media/Default/Home/button-inactive-grey.png);
background-repeat: repeat-x;
text-decoration: none;
font-weight: bold;
letter-spacing: 1px;
}
.image_carousel .clearfix a {
position: absolute;
width: 740px;
height: 82px;
top: 22px;
}
p.or {
padding: 0px 22px;
display: inline-block;
margin: 0px;
font-size: 24px;
color: #b1e9fc;
text-align: center;
font-family: 'Dosis', Semibold;
font-weight: bold;
}
.wrap-download a.download-now:hover {
background-image: url(/Media/Default/Home/button-hover.png);
}
.wrap-download a.download-now:active {
background-image: url(/Media/Default/Home/button-active.png);
}
.wrap-download a.try-servicebus:hover {
background-image: url(/Media/Default/Home/button-hover-grey.png);
}
.wrap-download a.try-servicebus:active {
background-image: url(/Media/Default/Home/button-active-grey.png);
}
.after-slider {
/*padding-top: 71px;*/
color: #000;
font-size: 36px;
clear: both;
text-align: center;
font-family: 'Dosis', Semibold;
}
.footer-header {
/*padding-top: 30px;*/
color: #000;
font-size: 36px;
clear: both;
text-align: left;
font-family: 'Dosis', Semibold;
padding-left: 25px;
}
.footer-header p {
margin: 26px 0px 10px 0px;
}
.footer-header p strong {
line-height: 18px;
font-size: 18px;
font-family: 'Lato', Regular;
}
.footer-header ul {
font-size: 18px;
font-family: 'Lato', Regular;
padding: 0px 18px;
margin: 0px;
color: #009ed9;
line-height: 40px;
font-weight: bold;
}
.particular-footer {
text-align: left;
width: 1024px;
margin-top: 65px;
}
.particular-footer .first-block {
float: left;
width: 42%;
margin-right: 100px;
}
.particular-footer .second-block {
float: left;
width: 42%;
}
.news-content {
padding-top: 36px;
color: #000;
font-size: 16px;
font-family: 'Lato', 'Black';
padding-left: 25px;
}
.news-content p {
margin: 0px;
line-height: 24px;
}
.news-content p strong {
line-height: 18px;
font-size: 18px;
font-family: 'Lato', Regular;
}
.news-content p {
line-height: 19px;
font-size: 14px;
font-family: 'Lato', Regular;
}
.news-content .date {
font-size: 14px;
color: #919e9e;
padding-bottom: 4px;
line-height: 24px;
font-family: 'Lato', 'Bold';
font-weight: 600;
}
.news-content .link {
font-size: 18px;
font-family: 'Lato', Bold;
color: #009ed9;
line-height: 40px;
font-weight: bold;
}
/*----------------------Blog---------------------------*/
.blog {
display: inline-block;
}
.blog > header > h1 {
float: left;
margin-top: 0px;
}
/*posts list */
.blog > ul {
list-style-type: none;
padding: 10px 0px;
margin: 0px;
float: left;
}
.blog > ul > li {
margin: 0px 0px 60px 0px;
}
.blog > header > h1 {
color: #000;
font-size: 36px;
font-family: 'Dosis', Semibold;
font-weight: 600;
margin-bottom: 40px;
}
.blog-posts {
border-bottom: 1px solid #929e9e;
}
.blog .pager {
font-size: 18px;
font-weight: bold;
/*width: 100%;*/
}
.blog .pager a {
color: #009ed9;
background-color: transparent;
}
.blog .pager .first {
/*float: left;*/
}
.blog .pager .last {
/*float: right;*/
}
.blog .pager .first a {
/*background-image: url('/media/default/blogpost/poligonleft.png');
background-repeat: no-repeat;*/
/*padding-left: 20px;
background-position-y: 10px;*/
}
.blog .pager .last a {
/*background-image: url('/media/default/blogpost/poligonright.png');
background-position: 112px 12px;
background-repeat: no-repeat;
padding-right: 20px;*/
}
.blog-post > header > h1 {
color: #000;
font-size: 24px;
/*font-family: 'Dosis', Semibold;*/
margin: 0px 0px 5px 0px;
}
.blog-post > header > h1 > a {
color: #000;
text-decoration: none;
}
.blog-post > header > h1 > a:hover {
text-decoration: underline;
}
.blog-post > p {
color: #000;
font-size: 16px;
margin: 0px 0px 0px 0px;
padding: 10px 0px 0px 0px;
line-height: 24px;
}
.blog-post .tags > span {
color: #919e9e;
font-size: 14px;
margin: 10px 8px 10px 0px;
font-weight: bold;
}
.blog-post .share > span {
color: #919e9e;
font-size: 14px;
margin: 10px 8px 10px 0px;
font-weight: bold;
}
.blog-post .tags > a {
padding: 6px 10px;
background-color: #caefff;
color: #009ed9;
text-decoration: none;
font-family: 'Lato', Regular;
font-size: 14px;
font-weight: bold;
cursor: pointer;
line-height: 42px;
margin-left: 10px;
}
.blog-post .share > a {
padding: 6px 20px 6px 25px;
color: #009ed9;
font-family: 'Lato', Regular;
font-size: 14px;
font-weight: bold;
cursor: pointer;
line-height: 42px;
margin-left: 10px;
}
.blog-post .share > .facebook {
background: url('/media/default/blogpost/facebookicon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .share > .googleplus {
background: url('/media/default/blogpost/google1icon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .share > .twitter {
background: url('/media/default/blogpost/twittericon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .tags > a:hover {
color: #000000;
}
.blog-post .tags {
margin: 18px 0px 0px 0px;
padding: 0px;
}
.blog-post .share {
margin: 0px;
padding: 0px;
}
.published {
color: #919e9e;
font-size: 14px;
margin: 4px 0px 0px 0px;
font-weight: bold;
float: left;
}
/*Comments*/
.comments {
list-style: none;
padding-left: 0px;
}
.comments p {
margin: 0px;
}
.comments h4 {
margin: 5px 0px 0px 0px;
height: 20px;
}
.comments .data {
color: #929e9e;
}
.comments .who {
float: right;
}
.comments .when {
float: left;
}
.comments li {
padding: 15px;
margin: 10px 0px;
}
.comments li:nth-child(even) {
background-color: #f0f4f5;
}
.comments li:nth-child(odd) {
background-color: #caefff;
}
.note-data {
color: #929e9e;
float: right;
margin-top: -38px;
}
.addComments {
font-weight: bold;
}
/*.what {
margin-bottom: 50px;
}
.what ol {
list-style-type: none;
}
.what ol li > label {
float: left;
margin-right: 30px;
}
.what ol li > textarea {
width: 433px;
margin-bottom: 8px;
}
.what ol li > .primaryAction {
float: right;
margin-right: 10px;
}*/
/*archives*/
.archive-trail a, .read-more a {
font-weight: bold;
}
.zone > ul {
list-style: none;
padding: 0px;
}
.metadata .commentcount {
font-weight: 600;
color: #009ed9;
margin-left: 10px;
}
.metadata .data {
color: #919e9e;
font-weight: 600;
}
/*----------------------------About us-----------------------------*/
.about-us {
clear: both;
}
/*.leader .text {
font-size: 14px;
line-height: 20px;
padding: 18px 0px;
padding-right: 50px;
}*/
.leadership .header {
padding: 32px 0px 0px 0px;
}
.leadership {
float: left;
margin-bottom: 80px;
}
.leadership table td {
vertical-align: top;
}
.leader {
padding-top: 29px;
width: 85%;
}
.leader > img {
float: left;
padding-top: 0px;
}
.leader > .credential {
padding-top: 0px;
margin-left: 85px;
padding-bottom: 10px;
}
.leader > .credential > p {
margin: 8px 0px 2px 0px;
}
.leader > .credential > p > strong {
font-size: 24px;
color: #000;
}
.leader > .credential > span {
color: #919e9e;
font-size: 18px;
}
.leader > .text {
font-size: 16px;
}
.leader > .text p {
margin: 20px 0px;
}
/*----------------------On-site training-----------------------*/
.content-training {
margin-top: 25px;
}
.content-training > div {
width: 50%;
float: left;
}
.quote {
margin-top: -4px;
}
.inner-quote {
width: 367px;
float: right;
background-color: #f0f4f5;
padding: 20px 40px 20px 20px;
margin-bottom: 105px;
line-height: 20px;
}
.inner-quote img.triangle {
position: relative;
top: 58px;
float: right;
margin-right: 20px;
}
.inner-quote span {
margin-left: 10px;
}
.form-horizontal .control-group {
margin-bottom: 16px;
}
.form-horizontal .control-label {
float: left;
width: 120px;
padding-top: 5px;
text-align: left;
color: #929e9e;
}
.form-horizontal .controls {
margin-left: 120px;
}
.form-horizontal input {
background-color: #ffffff;
display: inline-block;
height: 32px;
padding: 4px 6px;
margin-bottom: 10px;
line-height: 32px;
vertical-align: middle;
width: 355px;
font-size: 16px;
}
.form-horizontal button {
/*float: left;*/
clear: both;
display: block;
height: 49px;
line-height: 44px;
text-align: center;
text-transform: uppercase;
color: #fff;
background-repeat: repeat-x;
text-decoration: none;
font-weight: 700;
border: none;
width: 190px;
background-color: #009ed9;
border-bottom: 5px solid #0071a0;
}
.form-horizontal button:hover {
cursor: pointer;
}
.required {
color: #929e9e;
}
.form-horizontal .control-group2 {
float: left;
margin-bottom: 16px;
}
.form-horizontal .control-group1 {
clear: both;
height: 71px;
}
.form-horizontal .controls2 {
margin-left: 120px;
}
.form-horizontal .controls2 input {
width: 200px;
}
/*-----------------------Support solution--------------------------*/
.plan-table table {
width: 100%;
margin-top: 42px;
border-collapse: collapse;
margin-bottom: 48px;
}
.solution .header {
padding-top: 137px;
}
.white {
background-color: #fff;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
}
.bronze {
background-color: #e7deb5;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.silver {
background-color: #f0f4f5;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.gold {
background-color: #fff94d;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.plan .text {
width: 60%;
padding-right: 50px;
}
.plan .text p {
margin: 24px 0px;
}
.buy {
text-align: center;
vertical-align: bottom;
}
.buy .button {
width: 158px;
}
.white div {
font-size: 18px;
font-family: 'Lato', Regular;
line-height: 36px;
color: #96a1a1;
letter-spacing: 0.08em;
font-weight: 600;
padding-left: 45px;
}
.white .number {
background-image: url(/Media/Default/Support/number-gray.png);
background-repeat: no-repeat;
}
.white .email {
background-image: url(/Media/Default/Support/email-gray.png);
background-repeat: no-repeat;
}
.white .time {
background-image: url(/Media/Default/Support/time-gray.png);
background-repeat: no-repeat;
}
.white .phone {
background-image: url(/Media/Default/Support/phone-gray.png);
background-repeat: no-repeat;
}
.white .price {
background-image: url(/Media/Default/Support/price-gray.png);
background-repeat: no-repeat;
}
.table-h24 {
font-size: 24px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
.table-h18 {
font-size: 18px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.07em;
}
.text-lato-24 span {
font-weight: bold;
}
.contact-cell {
text-align: center;
line-height: 24px;
font-size: 20px;
color: #434343;
font-family: 'Lato', Bold;
font-weight: 600;
letter-spacing: 0.05em;
}
.contact-cell a {
margin-top: 5px;
display: inline-block;
}
.check {
display: inline-block;
background-image: url(/Media/Default/Support/check.png);
background-repeat: no-repeat;
height: 26px;
width: 26px;
}
/*------------------------ Download----------------------*/
.downloads {
float: left;
margin-bottom: 106px;
}
.download-image-set {
margin: 11px 0px 31px 0px;
}
.download-image-set .first-mage {
display: inline-block;
vertical-align: middle;
width: 347px;
padding-top: 5px;
}
.first-button {
width: 240px;
}
.second-button {
width: 260px;
margin-left: 16px;
}
.downloads .header {
padding-top: 21px;
padding-bottom: 17px;
}
.downloads .download-image-set {
margin: 30px 0px 5px 0px;
}
.version-history {
margin-left: 350px;
}
/*------------------------------Studio------------------------------*/
.nservices-images table {
width: 100%;
}
.nservices-images table tr td:first-child {
text-align: left;
}
.nservices-images table tr td:last-child {
text-align: right;
}
.feature, .getting-started-images {
display: inline-block;
}
.feature .header, .getting-started-images .header {
padding: 27px 0px;
letter-spacing: 0.05em;
}
.getting-started-images .images-set a {
padding: 0px 14px;
}
.getting-started-images .images-set a:first-child {
padding-left: 0px;
}
.getting-started-images .images-set a:last-child {
padding-right: 0px;
}
.getting-started-images .images-set {
padding: 12px 0px;
}
.feature .lists {
float: left;
width: 50%;
}
.feature .lists > ul {
font-weight: bold;
padding-left: 20px;
}
.feature .lists:last-child > ul {
margin-left: 50px;
}
.lists header {
font-weight: bold;
letter-spacing: 0.08em;
}
.lists ul {
margin: 3px 0px;
line-height: 28px;
/*width: 78%;*/
}
/*-----------------------Courses and events---------------------------*/
.bing-area > header {
/*margin-top: 10px;*/
}
.bing-area > header > h1 {
float: left;
margin-top: 0px;
}
.courses-event .header {
padding: 25px 0px 20px 0px;
width: 972px;
}
.courses-event .events-tables {
margin: 20px 0px;
width: 100%;
}
.courses-event .events-tables table {
width: 100%;
border-collapse: collapse;
line-height: 42px;
margin-top: 6px;
}
.courses-event .events-tables table tbody tr, .courses-event .events-tables table thead tr {
border-bottom: 1px solid #919e9e;
}
.courses-event .table-header-red {
background-image: url('/Media/Default/Courses and events/redpoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .table-header-green {
background-image: url('/Media/Default/Courses and events/greenpoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .table-header-blue {
background-image: url('/Media/Default/Courses and events/bluepoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .more-info {
color: #009ed9;
letter-spacing: 0.07em;
}
.courses-event .events-tables .button {
width: 95px;
float: right;
}
.courses-event .events-tables table thead {
color: #919e9e;
font-size: 18px;
}
.courses-event {
float: left;
margin-bottom: 66px;
}
.courses-event .events-tables table .adres {
font-weight: 600;
}
/*-----------------------------Hands-on labs------------------------*/
.getting-started {
line-height: 24px;
}
.getting-started div:first-child ul {
padding: 5px 20px;
color: #009ed9;
font-weight: 600;
}
.getting-started ul li {
margin: 0px 0px;
}
.getting-started > div {
margin: 13px 0px;
width: 100%;
}
.getting-started > div:nth-child(2) p {
margin: 22px 0px;
}
.getting-started .header {
display: block;
font-weight: 600;
}
.getting-started .labs {
margin-top: 35px;
}
.getting-started .labs .header {
margin: 15px 0px;
}
.getting-started thead {
font-size: 17px;
color: #919e9e;
letter-spacing: 0.05em;
line-height: 37px;
}
.getting-started table {
width: 100%;
border-collapse: collapse;
text-align: left;
}
.getting-started table th {
text-align: left;
}
.getting-started table th:first-child {
width: 108px;
}
.getting-started table th:nth-child(2) {
width: 197px;
}
.getting-started table ul {
padding: 0px 15px;
margin: 8px 0px;
line-height: 29px;
}
.getting-started table tbody tr {
border-top: 1px solid #919e9e;
}
.getting-started table tbody td:first-child, .getting-started table tbody td:nth-child(2) {
vertical-align: top;
line-height: 40px;
font-weight: 600;
}
.getting-started table tbody td:last-child > div {
width: 130px;
}
.getting-started .pull-left > .header {
padding-bottom: 10px;
}
/*--------------------------------------Careers----------------------------------------*/
.careers .sidebar .text img {
margin-top: 15px;
}
.careers .sidebar .text a {
position: relative;
top: -7px;
margin-left: 7px;
font-weight: 700;
}
/*----------------------------------------404 error---------------------------------------------*/
.error-404 {
margin: 56px 0px 0px 0px;
}
.error-404 > img {
float: left;
margin-top: 72px;
}
.error-404 > .body-text {
display: inline-block;
width: 804px;
text-align: center;
font-family: 'Dosis', Semibold;
font-weight: 600;
}
.error-404 > .body-text h1 {
color: #000;
font-size: 64px;
margin: 43px 0px 33px 0px;
font-weight: 600;
}
.error-404 > .body-text p {
color: #009ed9;
font-size: 24px;
margin: 6px 0px;
}
.error-404 .big-search .button {
width: 215px;
font-family: 'Lato', Regular;
float: right;
}
.error-404 .big-search input {
margin-left: 63px;
width: 432px;
}
.big-search input {
font-family: 'Lato', Regular;
font-size: 24px;
font-style: italic;
float: left;
border: 0px;
outline: 0px;
margin: 10px 0px 0px 0px;
padding: 0px;
border-bottom: 1px solid #919e9e;
line-height: 36px;
height: 36px;
}
.documentation .big-search input {
width: 570px;
}
.big-search {
margin-top: 32px;
}
div big-search-button > img {
padding-top: 4px;
margin: 0px;
padding: 0px;
}
div .big-search-button {
border: 0px;
margin: 0px;
margin-top: 8px;
margin-left: 3px;
cursor: pointer;
float: left;
display: inline;
background-color: #fff;
padding: 0px;
padding-top: 3px;
}
/*------------------------Documentation--------------------------*/
.documentation > ul {
list-style: none;
padding: 0px;
}
.documentation > ul ul {
list-style: initial;
color: #009ed9;
padding: 0px 0px 0px 20px;
width: 45%;
float: left;
}
.documentation > ul > li {
font-size: 16px;
}
.documentation > ul ul > li {
font-weight: 600;
}
.article-bread {
font-weight: 600;
font-size: 16px;
margin-top: 3px;
float: left;
margin-left: 10px;
}
/*---------------------------------ServiceMatrix-------------------------------------*/
.matrix-image-text {
float: left;
text-align: center;
font-size: 16px;
font-weight: 600;
color: #a4aeb6;
width: 100%;
}
.matrix-after-images {
width: 60%;
margin-bottom: 56px;
}
|
RobPearson.NServiceBusSpike/RobPearson.NServiceBusSpike.ECommerce/Content/Content.css
|
.zone-content > .page header h1, .bing-area header h1, .bing-place header h1, .zone-content > h1, .documentation header h1, .article header h1 {
font-size: 36px;
color: #000;
font-family: 'Dosis', SemiBold;
font-weight: 600;
line-height: 36px;
}
/*.zone-content > .page > div:nth-child(2) {
display: inline-block;
}*/
.zone-content > .page > header > h1 {
margin-top: 0px;
float: none;
clear: both;
}
.rss-mini img {
/*margin-top: 24px;*/
margin-left: 10px;
}
/*Lato*/
.text-lato-28 {
font-size: 28px;
color: #000;
font-family: 'Lato', Regular;
letter-spacing: 0.05em;
}
.text-lato-26 {
font-size: 26px;
color: #000;
font-family: 'Lato', Regular;
letter-spacing: 0.05em;
}
.text-lato-24 {
font-size: 24px;
font-family: 'Lato', Bold;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-22 {
font-size: 22px;
font-family: 'Lato', Bold;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-20 {
font-size: 20px;
font-family: 'Lato', Bold;
/*color: #000;*/
letter-spacing: 0.05em;
}
.text-lato-18 {
font-size: 18px;
font-family: 'Lato', Regular;
line-height: 28px;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-16 {
font-size: 16px;
line-height: 24px;
font-family: 'Lato', Regular;
color: #000;
/* letter-spacing: 0.05em;*/
}
.text-lato-14 {
font-size: 14px;
font-family: 'Lato', Regular;
color: #000;
letter-spacing: 0.05em;
}
.text-lato-12 {
font-size: 12px;
font-family: 'Lato', Regular;
color: #000;
letter-spacing: 0.05em;
}
/*Dosis*/
.text-dosis-24 {
font-size: 24px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
.text-dosis-28 {
font-size: 28px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
/*Sidebar*/
.sidebar {
width: 31%;
float: right;
margin: -55px 0px 0px 0px;
padding: 19px 0px;
background-color: #f0f4f5;
}
.sidebar .label {
padding: 37px 20px 7px 20px;
}
.sidebar > .label:first-child {
padding: 7px 20px 7px 20px !important;
}
.sidebar > .list {
list-style-type: none;
margin: 0px;
padding: 0px;
font-weight: 700;
}
.sidebar > .list > li {
padding: 6px 20px;
color: #009ed9;
cursor: pointer;
letter-spacing: normal;
}
.sidebar > .list > li:hover {
color: #000;
background-color: #e3e7e8;
}
.sidebar > .list > li.active {
background-color: #e3e7e8;
}
.sidebar > .list > li.active a {
color: #000 !important;
}
.sidebar .text {
padding: 5px 20px;
}
.sidebar .button {
padding: 20px 20px 0px 20px;
clear: both;
float: left;
width: 87%;
}
.sidebar .info {
padding-left: 20px;
}
.sidebar .info p {
margin: 0px;
}
/*Button*/
.button {
display: inline-block;
}
.button a {
clear: both;
display: block;
text-align: center;
text-transform: uppercase;
color: #fff;
text-decoration: none;
font-weight: 700;
}
.button.micro {
line-height: 24px;
font-size: 14px;
}
.button.micro a {
border-bottom: 3px solid #0071a0 !important;
}
.button.mini {
line-height: 36px;
font-size: 14px;
}
.button.micro a {
border-bottom: 4px solid #0071a0 !important;
}
.button.small {
line-height: 45px;
font-size: 16px;
}
.button.medium {
line-height: 49px;
font-size: 16px;
}
.button.big {
line-height: 56px;
font-size: 20px;
}
.button.learn-more {
line-height: 46px;
font-size: 20px;
font-family: 'Lato', Regular;
}
a.blue {
background-color: #00a3c4;
border-bottom: 5px solid #0071a0;
}
a.yellow {
background-color: #f18700;
border-bottom: 5px solid #884d00;
}
a.gray {
background-color: #5f6972;
border-bottom: 5px solid #3c454c;
}
a.dark-green {
background-color: #5eb825;
border-bottom: 5px solid #306e0b;
}
a.fiolet {
background-color: #7d5dcc;
border-bottom: 5px solid #50368d;
}
a.red {
background-color: #01c19c;
border-bottom: 5px solid #00735f;
}
a.light-green {
background-color: #e0001a;
border-bottom: 5px solid #84000e;
}
/*emphasize*/
.data-emphasize {
color: #009ed9;
}
.header-emphasize {
padding-bottom: 25px;
line-height: 40px;
color: #00a3c4 !important;
}
/*after-header*/
.after-header {
padding-right: 60px;
}
.after-header p {
padding-bottom: 26px;
}
.intro {
width: 68%;
float: left;
}
.intro p {
margin: 0px 0px;
}
.separ-zone {
display: inline-block;
}
.dash {
float: left;
margin-left: -25px;
}
/*----------------------- new Home page ----------------------*/
.home-header img {
margin-top: 50px;
margin-bottom: 24px;
}
.steps-123 {
position: relative;
margin-top: 25px;
margin-bottom: 84px;
}
.platform {
width: 100%;
border-collapse: collapse;
margin-top: 56px;
}
.platform img {
float: left;
padding-bottom: 60px;
padding-right: 20px;
}
.platform p {
padding-right: 60px;
}
.platform td {
text-align: left;
padding-top: 24px;
}
.platform td a {
font-weight: 600;
}
.after-slider .everything {
text-align: left;
}
.title {
font-weight: 600;
}
.title span {
color: #a4aeb6;
font-weight: normal;
font-size: 18px;
}
.learn-more {
width: 210px;
}
.everything strong {
display: inline-block;
line-height: 45px;
float: left;
margin-right: 37px;
}
.steps-123 div {
width: 421px;
margin-bottom: 76px;
margin-top: 10px;
}
.steps-123 p {
margin-top: 2px;
}
.steps-1, .steps-3 {
margin-left: 524px;
}
.steps-2 {
margin-left: 15px;
}
.steps-123 img {
position: absolute;
left: 321px;
top: -2px;
}
/*----------------------Home page----------------------*/
.home-header {
/*padding-top: 30px;*/
color: #000;
font-size: 44px;
text-align: center;
font-family: 'Dosis', Semibold;
margin-top: 33px;
}
.home-header strong {
font-weight: 600;
}
.subheader {
padding-top: 15px;
font-family: 'Lato', Bold;
font-size: 22px;
color: #00a3c4;
padding-bottom: 20px;
}
.after-slider .subheader {
padding-top: 15px;
font-family: 'Lato', Bold;
font-size: 24px;
color: #00a3c4;
}
.wrap-download {
text-align: center;
padding-top: 22px;
padding-bottom: 53px;
}
.wrap-download a.download-now {
margin: 0 auto;
font-family: 'LATO' 'Black';
font-size: 20px;
display: inline-block;
height: 61px;
line-height: 61px;
text-align: center;
width: 300px;
text-transform: uppercase;
color: #fff;
background-image: url(/Media/Default/Home/button-inactive.png);
background-repeat: repeat-x;
text-decoration: none;
font-weight: bold;
letter-spacing: 1px;
}
.wrap-download a.try-servicebus {
margin: 0 auto;
font-family: 'LATO' 'Black';
font-size: 20px;
display: inline-block;
height: 61px;
line-height: 61px;
text-align: center;
width: 300px;
text-transform: uppercase;
color: #fff;
background-image: url(/Media/Default/Home/button-inactive-grey.png);
background-repeat: repeat-x;
text-decoration: none;
font-weight: bold;
letter-spacing: 1px;
}
.image_carousel .clearfix a {
position: absolute;
width: 740px;
height: 82px;
top: 22px;
}
p.or {
padding: 0px 22px;
display: inline-block;
margin: 0px;
font-size: 24px;
color: #b1e9fc;
text-align: center;
font-family: 'Dosis', Semibold;
font-weight: bold;
}
.wrap-download a.download-now:hover {
background-image: url(/Media/Default/Home/button-hover.png);
}
.wrap-download a.download-now:active {
background-image: url(/Media/Default/Home/button-active.png);
}
.wrap-download a.try-servicebus:hover {
background-image: url(/Media/Default/Home/button-hover-grey.png);
}
.wrap-download a.try-servicebus:active {
background-image: url(/Media/Default/Home/button-active-grey.png);
}
.after-slider {
/*padding-top: 71px;*/
color: #000;
font-size: 36px;
clear: both;
text-align: center;
font-family: 'Dosis', Semibold;
}
.footer-header {
/*padding-top: 30px;*/
color: #000;
font-size: 36px;
clear: both;
text-align: left;
font-family: 'Dosis', Semibold;
padding-left: 25px;
}
.footer-header p {
margin: 26px 0px 10px 0px;
}
.footer-header p strong {
line-height: 18px;
font-size: 18px;
font-family: 'Lato', Regular;
}
.footer-header ul {
font-size: 18px;
font-family: 'Lato', Regular;
padding: 0px 18px;
margin: 0px;
color: #009ed9;
line-height: 40px;
font-weight: bold;
}
.particular-footer {
text-align: left;
width: 1024px;
margin-top: 65px;
}
.particular-footer .first-block {
float: left;
width: 42%;
margin-right: 100px;
}
.particular-footer .second-block {
float: left;
width: 42%;
}
.news-content {
padding-top: 36px;
color: #000;
font-size: 16px;
font-family: 'Lato', 'Black';
padding-left: 25px;
}
.news-content p {
margin: 0px;
line-height: 24px;
}
.news-content p strong {
line-height: 18px;
font-size: 18px;
font-family: 'Lato', Regular;
}
.news-content p {
line-height: 19px;
font-size: 14px;
font-family: 'Lato', Regular;
}
.news-content .date {
font-size: 14px;
color: #919e9e;
padding-bottom: 4px;
line-height: 24px;
font-family: 'Lato', 'Bold';
font-weight: 600;
}
.news-content .link {
font-size: 18px;
font-family: 'Lato', Bold;
color: #009ed9;
line-height: 40px;
font-weight: bold;
}
/*----------------------Blog---------------------------*/
.blog {
display: inline-block;
}
.blog > header > h1 {
float: left;
margin-top: 0px;
}
/*posts list */
.blog > ul {
list-style-type: none;
padding: 10px 0px;
margin: 0px;
float: left;
}
.blog > ul > li {
margin: 0px 0px 60px 0px;
}
.blog > header > h1 {
color: #000;
font-size: 36px;
font-family: 'Dosis', Semibold;
font-weight: 600;
margin-bottom: 40px;
}
.blog-posts {
border-bottom: 1px solid #929e9e;
}
.blog .pager {
font-size: 18px;
font-weight: bold;
/*width: 100%;*/
}
.blog .pager a {
color: #009ed9;
background-color: transparent;
}
.blog .pager .first {
/*float: left;*/
}
.blog .pager .last {
/*float: right;*/
}
.blog .pager .first a {
/*background-image: url('/media/default/blogpost/poligonleft.png');
background-repeat: no-repeat;*/
/*padding-left: 20px;
background-position-y: 10px;*/
}
.blog .pager .last a {
/*background-image: url('/media/default/blogpost/poligonright.png');
background-position: 112px 12px;
background-repeat: no-repeat;
padding-right: 20px;*/
}
.blog-post > header > h1 {
color: #000;
font-size: 24px;
/*font-family: 'Dosis', Semibold;*/
margin: 0px 0px 5px 0px;
}
.blog-post > header > h1 > a {
color: #000;
text-decoration: none;
}
.blog-post > header > h1 > a:hover {
text-decoration: underline;
}
.blog-post > p {
color: #000;
font-size: 16px;
margin: 0px 0px 0px 0px;
padding: 10px 0px 0px 0px;
line-height: 24px;
}
.blog-post .tags > span {
color: #919e9e;
font-size: 14px;
margin: 10px 8px 10px 0px;
font-weight: bold;
}
.blog-post .share > span {
color: #919e9e;
font-size: 14px;
margin: 10px 8px 10px 0px;
font-weight: bold;
}
.blog-post .tags > a {
padding: 6px 10px;
background-color: #caefff;
color: #009ed9;
text-decoration: none;
font-family: 'Lato', Regular;
font-size: 14px;
font-weight: bold;
cursor: pointer;
line-height: 42px;
margin-left: 10px;
}
.blog-post .share > a {
padding: 6px 20px 6px 25px;
color: #009ed9;
font-family: 'Lato', Regular;
font-size: 14px;
font-weight: bold;
cursor: pointer;
line-height: 42px;
margin-left: 10px;
}
.blog-post .share > .facebook {
background: url('/media/default/blogpost/facebookicon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .share > .googleplus {
background: url('/media/default/blogpost/google1icon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .share > .twitter {
background: url('/media/default/blogpost/twittericon.png');
background-repeat: no-repeat;
background-position-y: 4px;
}
.blog-post .tags > a:hover {
color: #000000;
}
.blog-post .tags {
margin: 18px 0px 0px 0px;
padding: 0px;
}
.blog-post .share {
margin: 0px;
padding: 0px;
}
.published {
color: #919e9e;
font-size: 14px;
margin: 4px 0px 0px 0px;
font-weight: bold;
float: left;
}
/*Comments*/
.comments {
list-style: none;
padding-left: 0px;
}
.comments p {
margin: 0px;
}
.comments h4 {
margin: 5px 0px 0px 0px;
height: 20px;
}
.comments .data {
color: #929e9e;
}
.comments .who {
float: right;
}
.comments .when {
float: left;
}
.comments li {
padding: 15px;
margin: 10px 0px;
}
.comments li:nth-child(even) {
background-color: #f0f4f5;
}
.comments li:nth-child(odd) {
background-color: #caefff;
}
.note-data {
color: #929e9e;
float: right;
margin-top: -38px;
}
.addComments {
font-weight: bold;
}
/*.what {
margin-bottom: 50px;
}
.what ol {
list-style-type: none;
}
.what ol li > label {
float: left;
margin-right: 30px;
}
.what ol li > textarea {
width: 433px;
margin-bottom: 8px;
}
.what ol li > .primaryAction {
float: right;
margin-right: 10px;
}*/
/*archives*/
.archive-trail a, .read-more a {
font-weight: bold;
}
.zone > ul {
list-style: none;
padding: 0px;
}
.metadata .commentcount {
font-weight: 600;
color: #009ed9;
margin-left: 10px;
}
.metadata .data {
color: #919e9e;
font-weight: 600;
}
/*----------------------------About us-----------------------------*/
.about-us {
clear: both;
}
/*.leader .text {
font-size: 14px;
line-height: 20px;
padding: 18px 0px;
padding-right: 50px;
}*/
.leadership .header {
padding: 32px 0px 0px 0px;
}
.leadership {
float: left;
margin-bottom: 80px;
}
.leadership table td {
vertical-align: top;
}
.leader {
padding-top: 29px;
width: 85%;
}
.leader > img {
float: left;
padding-top: 0px;
}
.leader > .credential {
padding-top: 0px;
margin-left: 85px;
padding-bottom: 10px;
}
.leader > .credential > p {
margin: 8px 0px 2px 0px;
}
.leader > .credential > p > strong {
font-size: 24px;
color: #000;
}
.leader > .credential > span {
color: #919e9e;
font-size: 18px;
}
.leader > .text {
font-size: 16px;
}
.leader > .text p {
margin: 20px 0px;
}
/*----------------------On-site training-----------------------*/
.content-training {
margin-top: 25px;
}
.content-training > div {
width: 50%;
float: left;
}
.quote {
margin-top: -4px;
}
.inner-quote {
width: 367px;
float: right;
background-color: #f0f4f5;
padding: 20px 40px 20px 20px;
margin-bottom: 105px;
line-height: 20px;
}
.inner-quote img.triangle {
position: relative;
top: 58px;
float: right;
margin-right: 20px;
}
.inner-quote span {
margin-left: 10px;
}
.form-horizontal .control-group {
margin-bottom: 16px;
}
.form-horizontal .control-label {
float: left;
width: 120px;
padding-top: 5px;
text-align: left;
color: #929e9e;
}
.form-horizontal .controls {
margin-left: 120px;
}
.form-horizontal input {
background-color: #ffffff;
display: inline-block;
height: 32px;
padding: 4px 6px;
margin-bottom: 10px;
line-height: 32px;
vertical-align: middle;
width: 355px;
font-size: 16px;
}
.form-horizontal button {
/*float: left;*/
clear: both;
display: block;
height: 49px;
line-height: 44px;
text-align: center;
text-transform: uppercase;
color: #fff;
background-repeat: repeat-x;
text-decoration: none;
font-weight: 700;
border: none;
width: 190px;
background-color: #009ed9;
border-bottom: 5px solid #0071a0;
}
.form-horizontal button:hover {
cursor: pointer;
}
.required {
color: #929e9e;
}
.form-horizontal .control-group2 {
float: left;
margin-bottom: 16px;
}
.form-horizontal .control-group1 {
clear: both;
height: 71px;
}
.form-horizontal .controls2 {
margin-left: 120px;
}
.form-horizontal .controls2 input {
width: 200px;
}
/*-----------------------Support solution--------------------------*/
.plan-table table {
width: 100%;
margin-top: 42px;
border-collapse: collapse;
margin-bottom: 48px;
}
.solution .header {
padding-top: 137px;
}
.white {
background-color: #fff;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
}
.bronze {
background-color: #e7deb5;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.silver {
background-color: #f0f4f5;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.gold {
background-color: #fff94d;
height: 60px;
border-bottom: 3px solid white;
width: 25%;
text-align: center;
}
.plan .text {
width: 60%;
padding-right: 50px;
}
.plan .text p {
margin: 24px 0px;
}
.buy {
text-align: center;
vertical-align: bottom;
}
.buy .button {
width: 158px;
}
.white div {
font-size: 18px;
font-family: 'Lato', Regular;
line-height: 36px;
color: #96a1a1;
letter-spacing: 0.08em;
font-weight: 600;
padding-left: 45px;
}
.white .number {
background-image: url(/Media/Default/Support/number-gray.png);
background-repeat: no-repeat;
}
.white .email {
background-image: url(/Media/Default/Support/email-gray.png);
background-repeat: no-repeat;
}
.white .time {
background-image: url(/Media/Default/Support/time-gray.png);
background-repeat: no-repeat;
}
.white .phone {
background-image: url(/Media/Default/Support/phone-gray.png);
background-repeat: no-repeat;
}
.white .price {
background-image: url(/Media/Default/Support/price-gray.png);
background-repeat: no-repeat;
}
.table-h24 {
font-size: 24px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.05em;
}
.table-h18 {
font-size: 18px;
font-family: 'Dosis', Semibold;
color: #000;
text-align: left;
font-weight: 600;
letter-spacing: 0.07em;
}
.text-lato-24 span {
font-weight: bold;
}
.contact-cell {
text-align: center;
line-height: 24px;
font-size: 20px;
color: #434343;
font-family: 'Lato', Bold;
font-weight: 600;
letter-spacing: 0.05em;
}
.contact-cell a {
margin-top: 5px;
display: inline-block;
}
.check {
display: inline-block;
background-image: url(/Media/Default/Support/check.png);
background-repeat: no-repeat;
height: 26px;
width: 26px;
}
/*------------------------ Download----------------------*/
.downloads {
float: left;
margin-bottom: 106px;
}
.download-image-set {
margin: 11px 0px 31px 0px;
}
.download-image-set .first-mage {
display: inline-block;
vertical-align: middle;
width: 347px;
padding-top: 5px;
}
.first-button {
width: 240px;
}
.second-button {
width: 260px;
margin-left: 16px;
}
.downloads .header {
padding-top: 21px;
padding-bottom: 17px;
}
.downloads .download-image-set {
margin: 30px 0px 5px 0px;
}
.version-history {
margin-left: 350px;
}
/*------------------------------Studio------------------------------*/
.nservices-images table {
width: 100%;
}
.nservices-images table tr td:first-child {
text-align: left;
}
.nservices-images table tr td:last-child {
text-align: right;
}
.feature, .getting-started-images {
display: inline-block;
}
.feature .header, .getting-started-images .header {
padding: 27px 0px;
letter-spacing: 0.05em;
}
.getting-started-images .images-set a {
padding: 0px 14px;
}
.getting-started-images .images-set a:first-child {
padding-left: 0px;
}
.getting-started-images .images-set a:last-child {
padding-right: 0px;
}
.getting-started-images .images-set {
padding: 12px 0px;
}
.feature .lists {
float: left;
width: 50%;
}
.feature .lists > ul {
font-weight: bold;
padding-left: 20px;
}
.feature .lists:last-child > ul {
margin-left: 50px;
}
.lists header {
font-weight: bold;
letter-spacing: 0.08em;
}
.lists ul {
margin: 3px 0px;
line-height: 28px;
/*width: 78%;*/
}
/*-----------------------Courses and events---------------------------*/
.bing-area > header {
/*margin-top: 10px;*/
}
.bing-area > header > h1 {
float: left;
margin-top: 0px;
}
.courses-event .header {
padding: 25px 0px 20px 0px;
width: 972px;
}
.courses-event .events-tables {
margin: 20px 0px;
width: 100%;
}
.courses-event .events-tables table {
width: 100%;
border-collapse: collapse;
line-height: 42px;
margin-top: 6px;
}
.courses-event .events-tables table tbody tr, .courses-event .events-tables table thead tr {
border-bottom: 1px solid #919e9e;
}
.courses-event .table-header-red {
background-image: url('/Media/Default/Courses and events/redpoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .table-header-green {
background-image: url('/Media/Default/Courses and events/greenpoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .table-header-blue {
background-image: url('/Media/Default/Courses and events/bluepoint.png');
background-repeat: no-repeat;
padding-left: 35px;
}
.courses-event .more-info {
color: #009ed9;
letter-spacing: 0.07em;
}
.courses-event .events-tables .button {
width: 95px;
float: right;
}
.courses-event .events-tables table thead {
color: #919e9e;
font-size: 18px;
}
.courses-event {
float: left;
margin-bottom: 66px;
}
.courses-event .events-tables table .adres {
font-weight: 600;
}
/*-----------------------------Hands-on labs------------------------*/
.getting-started {
line-height: 24px;
}
.getting-started div:first-child ul {
padding: 5px 20px;
color: #009ed9;
font-weight: 600;
}
.getting-started ul li {
margin: 0px 0px;
}
.getting-started > div {
margin: 13px 0px;
width: 100%;
}
.getting-started > div:nth-child(2) p {
margin: 22px 0px;
}
.getting-started .header {
display: block;
font-weight: 600;
}
.getting-started .labs {
margin-top: 35px;
}
.getting-started .labs .header {
margin: 15px 0px;
}
.getting-started thead {
font-size: 17px;
color: #919e9e;
letter-spacing: 0.05em;
line-height: 37px;
}
.getting-started table {
width: 100%;
border-collapse: collapse;
text-align: left;
}
.getting-started table th {
text-align: left;
}
.getting-started table th:first-child {
width: 108px;
}
.getting-started table th:nth-child(2) {
width: 197px;
}
.getting-started table ul {
padding: 0px 15px;
margin: 8px 0px;
line-height: 29px;
}
.getting-started table tbody tr {
border-top: 1px solid #919e9e;
}
.getting-started table tbody td:first-child, .getting-started table tbody td:nth-child(2) {
vertical-align: top;
line-height: 40px;
font-weight: 600;
}
.getting-started table tbody td:last-child > div {
width: 130px;
}
.getting-started .pull-left > .header {
padding-bottom: 10px;
}
/*--------------------------------------Careers----------------------------------------*/
.careers .sidebar .text img {
margin-top: 15px;
}
.careers .sidebar .text a {
position: relative;
top: -7px;
margin-left: 7px;
font-weight: 700;
}
/*----------------------------------------404 error---------------------------------------------*/
.error-404 {
margin: 56px 0px 0px 0px;
}
.error-404 > img {
float: left;
margin-top: 72px;
}
.error-404 > .body-text {
display: inline-block;
width: 804px;
text-align: center;
font-family: 'Dosis', Semibold;
font-weight: 600;
}
.error-404 > .body-text h1 {
color: #000;
font-size: 64px;
margin: 43px 0px 33px 0px;
font-weight: 600;
}
.error-404 > .body-text p {
color: #009ed9;
font-size: 24px;
margin: 6px 0px;
}
.error-404 .big-search .button {
width: 215px;
font-family: 'Lato', Regular;
float: right;
}
.error-404 .big-search input {
margin-left: 63px;
width: 432px;
}
.big-search input {
font-family: 'Lato', Regular;
font-size: 24px;
font-style: italic;
float: left;
border: 0px;
outline: 0px;
margin: 10px 0px 0px 0px;
padding: 0px;
border-bottom: 1px solid #919e9e;
line-height: 36px;
height: 36px;
}
.documentation .big-search input {
width: 570px;
}
.big-search {
margin-top: 32px;
}
div big-search-button > img {
padding-top: 4px;
margin: 0px;
padding: 0px;
}
div .big-search-button {
border: 0px;
margin: 0px;
margin-top: 8px;
margin-left: 3px;
cursor: pointer;
float: left;
display: inline;
background-color: #fff;
padding: 0px;
padding-top: 3px;
}
/*------------------------Documentation--------------------------*/
.documentation > ul {
list-style: none;
padding: 0px;
}
.documentation > ul ul {
list-style: initial;
color: #009ed9;
padding: 0px 0px 0px 20px;
width: 45%;
float: left;
}
.documentation > ul > li {
font-size: 16px;
}
.documentation > ul ul > li {
font-weight: 600;
}
.article-bread {
font-weight: 600;
font-size: 16px;
margin-top: 3px;
float: left;
margin-left: 10px;
}
/*---------------------------------ServiceMatrix-------------------------------------*/
.matrix-image-text {
float: left;
text-align: center;
font-size: 16px;
font-weight: 600;
color: #a4aeb6;
width: 100%;
}
.matrix-after-images {
width: 60%;
margin-bottom: 56px;
}
| 0.302906 | 0.068537 |
body
{
background: #C8CFD9;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
/* Details that modify the navigation bar */
#navigationBar
{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
}
/* Allows items to float to the left */
li
{
float: left;
}
/* Styles and aligns each item in navigation bar */
li a
{
display: block;
color: white;
text-align: center;
padding: 25px 25px;
text-decoration: none;
font-weight: 250;
letter-spacing: .02em;
}
/* Hover effect whenever your mouse is over an item in the navigation bar */
li a:hover
{
background-color: #001f4d;
}
/* Traybourne Container */
#TraybourneContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(77, 155, 250, 0.3);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Traybourne image */
#Traybourne
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Traybourne Information */
#TraybourneInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Noah Container */
#NoahContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(191, 140, 63, 0.1);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Noah image */
#Noah
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Noah Information */
#NoahInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Spencer Container */
#SpencerContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(38, 28, 12, 0.15);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Spencer image */
#Spencer
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Spencer Information */
#SpencerInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Langqing Container */
#LangqingContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(250, 154, 10, 0.25);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Langqing image */
#Langqing
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Langqing Information */
#LangqingInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Miguel Container */
#MiguelContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
background-color:rgba(249, 235, 214, 0.3);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Miguel image */
#Miguel
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Miguel Information */
#MiguelInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Styles the footer */
#footer
{
bottom: 0;
padding: 20px;
left: 0;
width: 100%;
position: fixed;
background-color: black;
color: white;
font-weight: 250;
letter-spacing: .02em;
}
|
css/teamInformation.css
|
body
{
background: #C8CFD9;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
/* Details that modify the navigation bar */
#navigationBar
{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
}
/* Allows items to float to the left */
li
{
float: left;
}
/* Styles and aligns each item in navigation bar */
li a
{
display: block;
color: white;
text-align: center;
padding: 25px 25px;
text-decoration: none;
font-weight: 250;
letter-spacing: .02em;
}
/* Hover effect whenever your mouse is over an item in the navigation bar */
li a:hover
{
background-color: #001f4d;
}
/* Traybourne Container */
#TraybourneContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(77, 155, 250, 0.3);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Traybourne image */
#Traybourne
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Traybourne Information */
#TraybourneInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Noah Container */
#NoahContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(191, 140, 63, 0.1);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Noah image */
#Noah
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Noah Information */
#NoahInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Spencer Container */
#SpencerContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(38, 28, 12, 0.15);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Spencer image */
#Spencer
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Spencer Information */
#SpencerInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Langqing Container */
#LangqingContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
background-color:rgba(250, 154, 10, 0.25);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Langqing image */
#Langqing
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Langqing Information */
#LangqingInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Miguel Container */
#MiguelContainer
{
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
background-color:rgba(249, 235, 214, 0.3);
padding: 40px;
border-radius: 30px;
width: 60%;
}
/* Miguel image */
#Miguel
{
display: inline-block;
margin-right: auto;
border-radius: 50%;
}
/* Miguel Information */
#MiguelInfo
{
display: inline-block;
padding-left: 100px;
font-family: Verdana;
font-size: 22px;
font-weight: 350;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
letter-spacing: .02em;
}
/* Styles the footer */
#footer
{
bottom: 0;
padding: 20px;
left: 0;
width: 100%;
position: fixed;
background-color: black;
color: white;
font-weight: 250;
letter-spacing: .02em;
}
| 0.373304 | 0.08141 |
@font-face{
font-family: 'Roboto';
src:"../fonts/roboto-v16-vietnamese_latin-ext-regular.woff2";
font-weight: normal;
display: swap;
}
@font-face{
font-family: 'Roboto';
src:"../fonts/Roboto-Medium.woff2";
font-weight: 500;
display: swap;
}
@font-face{
font-family: 'Roboto';
src:"../fonts/Roboto-Bold.woff2";
font-weight: 700;
display: swap;
}
body {
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
ul {
list-style-type: none;
padding-left: 0;
}
ul li a{
display: inline-block;
text-decoration: none;
color: white;
font-size: 12px;
}
textarea {
resize: initial;
}
input{
outline: none;
}
.hidden{
display: none !important;
}
.txt-center{
text-align: center;
}
.manufacturer{
display: flex;
flex-wrap: wrap;
}
.manufacturer .form-check{
width: 50%;
}
.suggestion-title{
margin-bottom: 0px;
}
.list-group-item{
color: #2767A5;
background: transparent;
border: none;
padding: 7px 30px;
border-bottom: 0.5px solid #D4D4D4;
}
.list-group li:last-child{
border-bottom:none;
}
.form-check-input:checked {
background-color: #2767A5;
border-color: #2767A5;
}
ul.pagination li {
background: none;
border-radius: 5px;
margin: 0px 10px;
padding: 10px;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
ul.pagination li p{
font-weight: bold;
font-size: 16px;
line-height: 19px;
letter-spacing: 0.03em;
color: #2767A5;
display: block;
margin-bottom: 0;
}
.pagination{
margin-bottom: 0;
align-items: center;
}
ul.pagination li.active{
background: #2767A5;
}
ul.pagination li.active p{
color: #FFFFFF;
}
.pagination [rel|=next], .pagination [rel|=prev] {
color: #FFFFFF;
}
.pagination .page{
background: #D5D5D5;
border-radius: 8px;
width: 25px;
height: 25px;
}
nav.navbar.navbar-expand.navbar-light {
background: #ffffff;
}
.menu-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
.navbar-light.menu-toggler-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 17' width='27' height='17' fill='none' %3e%3cpath stroke='rgba%2839, 103, 165, 100%29' stroke-linecap='round'stroke-width='2' stroke-linejoin='round' d='M1.83325 1.20898H25.1666M1.83325 8.50065H25.1666M1.83325 15.7923H25.1666'/%3e%3c/svg%3e");
}
.main-container {
padding: 0 6%;
margin-left: 0;
margin-right: auto;
}
.footer-container {
/*width: 95%;*/
margin: auto;
padding-top: 61px;
clear: both;
background: #F8F9FC;
}
.list-item-suggest .list-group .item-suggest:nth-child(n+6){
display: none!important;
}
.li-output-tag:nth-child(n+4){
display: none!important;
}
input.form-control.me-2 {
width: 251px;
height: 40px;
background: #EEEEEE;
border-radius: 5px;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 16px;
color: #909090;
border: none;
}
.navbar .justify-content-sm-center{
padding-right: 30px;
}
.navbar .container-fluid .cart-btn{
width: 75px;
height: 35px;
}
.justify-content-sm-center .pd-15{
padding: 0 15px;
}
.btn .badge {
margin-left: 9px;
}
.navbar-light .navbar-nav .nav-link {
color: #595959;
font-style: normal;
font-weight: 500;
font-size: 92%;
line-height: 19px;
}
.text-grey{
color: #595959;
}
.text-orange{
color: #F9971C;
}
.text-blue{
color: #2767A5;
}
.bg-blue{
background: #2767A5;
}
.bg-gray{
background: #eeeeee;
}
.navbar-light .navbar-nav .nav-link:hover {
color: #2767A5;
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link.active {
color: #2767A5;
}
.btn-outline-primary {
color: #909090;
border-color: #eeeeee;
background-color: #eeeeee;
}
.btn-outline-primary:hover {
color: #909090;
border-color: #eeeeee;
background-color: #eeeeee;
}
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem #eeeeee;
}
.btn-outline-gray {
color: #595959;
border: 2px solid #E3E9ED;
}
.btn-search{
width: 40px;
height: 40px;
left: 492px;
top: 46px;
padding: 9px;
background: #EEEEEE;
border-radius: 5px;
}
.item-wrapper .item-body .float-start,.item-wrapper .item-body .float-end,.item-body h3,.item-body .item-price{
padding: 0;
}
.item-body .float-end .item-code{
margin-bottom: 0;
}
.btn-outline-gray:hover {
color: #2767A5;
border: 2px solid #2767A5;
}
.btn-outline-gray.active {
color: #2767A5;
border: 2px solid #2767A5;
}
.price .price-new{
margin-right: 12px;
}
.btn-outline-gray .active {
color: #2767A5;
border: 2px solid #2767A5;
}
.apply-button{
background: #fff;
padding: 11px;
display: flex;
align-items: center;
justify-content: space-between;
}
.apply-button button{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
background: #EEEEEE;
height: 35px;
font-weight: 500;
font-size: 12.5781px;
line-height: 15px;
text-transform: uppercase;
width: 48%;
color: #2767A5;
border: none;
}
.apply-button button.active{
background: #2767A5;
color: #FFFFFF;
}
.cart-btn {
background: #eeeeee;
}
.price_re{
text-align: center;
}
.cart-badge {
background-color: #F9971C;
}
.breadcrumb-item + .breadcrumb-item::before {
float: left;
padding-right: 0.5rem;
color: #595959;
content: url("../images/icon/angle-right.png");
}
.no-found{
text-align: center;
}
.no-found p{
margin-top: 1rem;
}
.breadcrumb-item.active {
color: #2767A5;
}
ol.breadcrumb.pt-4 {
margin-bottom: 6px;
}
.body-page {
padding-top: 25px;
}
.banner img {
border-radius: 5px;
}
.card {
border: 1px solid rgba(196, 196, 196, 0.3);
box-sizing: border-box;
text-align: center;
}
.item {
position: relative;
box-sizing: border-box;
}
.item-wrapper {
margin: 15px;
/*border: 1px solid rgba(196, 196, 196, 0.3);*/
}
.item-top {
border-top: 1px solid rgba(196, 196, 196, 0.3);
border-left: 1px solid rgba(196, 196, 196, 0.3);
border-right: 1px solid rgba(196, 196, 196, 0.3);
}
.item-body {
flex: 1 1 auto;
padding: 1rem 1rem;
border-left: 1px solid rgba(196, 196, 196, 0.3);
border-right: 1px solid rgba(196, 196, 196, 0.3);
}
.item-footer {
flex: 1 1 auto;
padding: 10px 5px;
border: 1px solid rgba(196, 196, 196, 0.3);
height: 57px;
}
.item-img {
position: relative;
display: block;
margin-top: 24px;
margin-left: auto;
margin-right: auto;
}
.item-title {
font-style: normal;
font-weight: bold;
font-size: 13px;
color: #000000;
line-height: 19px;
text-align: justify;
text-transform: uppercase;
text-decoration: none;
}
.item-code {
float: right;
width: 100%;
font-size: 10px;
text-align: center;
color: #595959;
background: #D4D4D4;
border-radius: 3px;
padding: 2px;
}
.price {
margin: 0 0 10px 0;
line-height: 24px;
color: #FF0800;
font-size: 16px;
font-weight: 600;
}
.price .price-old {
line-height: 20px;
padding: 0 5px;
display: inline-block;
text-decoration: line-through;
color: #C4C4C4;
}
.price .price-new, .price span.price {
color: #FF0800;
font-size: 1.3rem;
}
.item-status {
color: #2CC067;
}
.add-to-cart {
text-align: right;
}
.sale-tag {
width: 73px;
height: 30px;
background: url("../images/icon/vector_3.png") no-repeat;
background-size: 73px 30px;
z-index: 1;
overflow: hidden;
position: absolute;
top: 16px;
margin-left: -12px;
}
.sale-tag span{
color: #ffffff;
text-align: center;
padding: 13px;
line-height: 32px;
}
.bonus-gift {
padding: 0;
font-size: 13px;
}
.bonus-gift p {
padding-left: 10px;
}
/*ratting star*/
.rating {
color: #D5D5D5;
}
.rating-num{
color: #595959;
}
.checked {
filter: invert(12%) sepia(41%) saturate(4212%) hue-rotate(353deg) brightness(105%) contrast(89%);
}
.banner-recom{
display: flex;
justify-content: space-between;
}
.banner-recom .item{
width: 48%;
}
.banner-recom .banner-bg{
position: absolute;
height: 100%;
width: 100%;
}
.slide-text{
position: inherit;
width: 60%;
float: left;
padding-left: 30px;
padding-top: 20px;
}
.slide-text p{
margin: 0;
font-style: normal;
font-size: 13px;
}
.slide-image{
position: inherit;
width: 40%;
float: left;
}
.brand-container{
width: 95%;
margin: auto;
background: #FFFFFF;
box-shadow: 0px 2.72135px 13.6068px rgb(0 0 0 / 28%);
border-radius: 17.0084px;
}
.btn-seemore{
width: 111px;
height: 40px;
border: 2px solid #E3E9ED;
box-sizing: border-box;
border-radius: 5px;
}
.btn-seemore span{
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 16px;
letter-spacing: 0.03em;
text-transform: capitalize;
color: #595959;
}
.view-all{
font-size: 16px;line-height: 19px;
}
.view-all span{
padding-right: 15px;
}
.slide-text a.seemore{
margin-top: 13px;
font-size: 13px;
}
.slide-text a.seemore span{
margin-left: 12px;
padding-top: 2px;
}
.slide-image .img-fluid{
padding: 17px 0;
}
.slide-text .text-blue{
font-weight: bold;
}
/*dropdown*/
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
/*background-color: #FFFFFF;
overflow: auto;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
border-radius: 5px;
z-index: 2;
padding: 10px;*/
}
.result-search{
margin-top: -8px;
background: #FFFFFF;
border: 0.5px solid #EEEEEE;
box-sizing: border-box;
border-radius: 10px;
overflow: auto;
z-index: 2;
width: 436px;
}
div#filter1{
width: 286px;
border: 1.39757px solid #E3E9ED;
box-sizing: border-box;
border-radius: 6.98783px;
margin-top: -2px;
}
div#stock-filter{
padding: 9px 13px;
margin-left: 305px;
width: 195px;
height: 61px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
border-radius: 3px;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
button#filter1-btn{
text-align: left;
}
.dropdown a:hover {background-color: #ddd;}
.filter1-btn-width{
width: 286px;
}
.show {
display: block;
}
/*accordion*/
.accordion {
background-color: #FFFFFF;
color: #595959;
cursor: pointer;
padding: 11px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
font-weight: bold;
transition: 0.4s;
border-top: 1px solid #D5D5D5;
}
.accordion.active:after {
content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 10 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.44095 4.18239L4.94704 0.988281L1.45313 4.18239' stroke='%23595959' stroke-width='1.39757' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
transform: scaleY(1);
}
.accordion:after {
content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 10 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.44095 4.18239L4.94704 0.988281L1.45313 4.18239' stroke='%23595959' stroke-width='1.39757' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.panel {
max-height: 0;
transition: max-height 0.2s ease-out;
padding: 5px 18px;
display: none;
background-color: white;
overflow: hidden;
}
.range-slider{
-webkit-appearance: none;
width: 100%;
height: 6px;
background: rgba(39, 103, 165, 0.3);
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 13px;
height: 13px;
border-radius: 50%;
background: #2767A5;
cursor: pointer;
}
.range-slider::-moz-range-thumb {
width: 13px;
height: 13px;
border-radius: 50%;
background: #2767A5;
cursor: pointer;
}
.ui-slider-range.ui-corner-all.ui-widget-header.ui-slider-range-min {
background-color: #2767A5;
}
.ui-state-default, .ui-widget-content .ui-state-default{
width: 15px;
height: 15px;
border: 1px solid #2767A5;
border-radius: 15px;
background: #2767A5;
font-weight: normal;
color: #454545;
}
input#range-price {
color: #fff;
background-color: #2767A5;
}
button#stock-filter-btn {
margin-left: 15px;
width: 195px;
}
.ic-menu {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
div#suggestion-box{
padding: 0;
min-width: 436px;
z-index: 10;
}
.item-info .item-info-title p{
font-size: 14px;
line-height: 16px;
color: #211D1E;
}
.suggestion-title{
padding: 13px 20px 11px;
}
#suggestion-box .ic-top-result{
margin-left: 178px;
}
.item-info .item-info-title{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 16px;
color: #211D1E;
padding-bottom: 0;
}
label.error {
text-align: left !important;
color: #ff2f2f !important;
font-size: 14px;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.no-result{
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
label.error:before {
content: "!";
display: inline-block;
width: 18px;
height: 18px;
text-align: center;
border-radius: 50%;
background: red;
position: relative;
color: #fff;
line-height: 20px;
font-size: 13px;
font-family: "Roboto-Bold";
margin-right: 5px;
}
.item-info .item-info-title p{
margin-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.item-info .price{
padding: 8px 16px 0;
margin-bottom: 0;
}
.item-info .price .price-new{
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 16px;
color: #595959;
}
.item-info .price .price-old{
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 14px;
text-decoration-line: line-through;
color: #595959;
}
.item-info .item-gift img{
width: 15px;height: 15px;
margin-right: 7px;
}
.item-info .item-gift{
padding-left: 16px;
}
.item-info .item-gift span{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 150%;
color: #FF0800;
}
.list-item-suggest .list-group .item-suggest{
border-bottom: 0.5px solid #D4D4D4;
align-items: center;
}
.list-item-suggest .list-group .item-suggest:last-child{
border-bottom: none;
}
.list-item-suggest{
margin-bottom: 10px;
}
.suggestion-body .list-group .list-group-item a{
color: #2767A5;
font-size: 14px;
line-height: 16px;
padding: 0;
display: inline;
}
#filter2-btn:hover #filter2{
display: block;
}
.show-view{
display: block;
z-index: 3;
}
.body-page #filter2{
width: 125px;
height: 73px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
border-radius: 5px;
padding: 12px 16px;
}
.mgl-3{
margin-left: 3.4rem;
}
.slide-text .slide-text-intro{
font-size: 20px;
line-height: 23px;
}
.slide-text .slide-text-title{
font-size: 24px;
line-height: 28px;
padding-bottom: 15px;
padding-top: 15px;
text-transform: capitalize;
}
.slide-text .slide-text-sapo{
font-style: normal;
font-weight: normal;
font-size: 13px;
line-height: 175%;
text-align: justify;
}
.slide-text .slide-text-recom{
font-size: 12.2904px;
line-height: 14px;
margin-bottom: 5px;
}
.slide-text .slide-text-price{
font-weight: bold;
font-size: 20.4841px;
line-height: 24px;
text-transform: capitalize;
color: #F1BA17;
}
.slide-text .slide-text-item{
font-style: normal;
font-size: 24px;
line-height: 33px;
text-transform: capitalize;
}
.btn.btn-outline-gray {
font-size: 14px;
line-height: 16px;
letter-spacing: 0.03em;
}
#filter1 .accordion{
font-size: 14px;
line-height: 16px;
}
.form-check{
font-size: 13px;
line-height: 15px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 16px;
line-height: 19px;
}
.navbar-light .navbar-nav .nav-link{
display: inline-block;
font-weight: 500;
font-size: 16px;
line-height: 19px;
}
.btn .badge{
width: 30px;
height: 26px;
border-radius: 5px;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 22px;
padding: 2px 10px;
}
.navbar .navbar-brand img{
width: 131px;height: 39px;
}
.item-code{
width: 85.66px;
height: 20.23px;
}
.footer-title{
margin-top: 61px;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 160.9%;
}
.footer-sapo{
font-size: 14px;
line-height: 160.9%;
}
.info-company strong,.info-company li{
font-size: 14px;
line-height: 170.9%;
}
ul#footer{
flex-wrap: wrap;
justify-content: center;
}
ul#footer li a{
font-size: 14px;
line-height: 160.9%;
}
ul#footer .list-group-item{
border-bottom:none;
}
ul#footer span{
margin: auto;
color: #fff;
}
ul#footer li a:hover{
color: #87ceeb;
}
.footer .title-info{
display: none;
}
.btn .badge{
top: -3px;
}
.form-search-mobile{
display: none;
}
.list-filter button{
margin-right: 15px;
}
.footer{
background: #F8F9FC;
}
.footer .mt-5.bg-blue{
display: flex;
justify-content: center;
align-items: center;
}
.brand-hp{
padding-top: 5px !important;
}
.filter-tablet{
display: none;
}
.filter-modal{
width: 143px;
}
.modal-fade {
overflow: hidden;
}
.modal-content.container-modal{
max-width: 664px;
padding: 18px 24px;
}
.modal-footer,.modal-header,.modal-body{
border-bottom: none;
border-top: none;
padding: 0px;
}
.modal-title{
font-size: 16px;
line-height: 19px;
letter-spacing: 0.03em;
color: #595959;
}
.btn-modal-exit,.btn-modal-close{
border: none;
background-color: #fff;
}
.all-view{
display: none !important;
}
.fade.show{
background: rgba(0, 0, 0, 0.4);
}
.slide-text .slide-text-sapo{
display: inline-block;
}
#suggestion-box2 .icon-top-result{
text-align: center !important;
}
.ml-0{
margin-left: 0 !important;
}
.ml-9 {
margin-left: 5rem;
}
.ft1-btn-width{
width: 286px !important;
}
.mb-cart-item .change-325{
display: flex;
}
.title-product{
font-weight: 500;
font-size: 13px;
line-height: 150%;
text-align: justify;
text-transform: capitalize;
color: #000000;
padding: 0;
height: 2.2rem;
overflow: hidden;
text-overflow: ellipsis;
}
.item-body .add-to-cart button{
background: none;
border: none;
}
.item-img{
max-height: 200px;
}
.item-suggest img{
max-width: 60px;
}
.color-red{
color: #FF0800;
}
.name-search{
font-weight: bold;
font-size: 22px;
line-height: 26px;
text-transform: uppercase;
color: #211D1E;
}
.top-cate{
font-weight: bold;
font-size: 20px;
line-height: 23px;
text-transform: uppercase;
color: #211D1E;
}
.breadcrumb-home{
color: #595959;
text-decoration: none;
}
.container-modal-cart{
padding: 30px;
}
.container-modal-cart .modal-body{
margin-top: 25px;
}
.modal-title-cart{
font-weight: 500;
font-size: 16.4966px;
line-height: 19px;
color: #211D1E;
margin-bottom: 0;
}
.modal-cart-dialog .modal-body{
display: flex;
}
.modal-cart-dialog .modal-body .mb-left{
border: 0.824832px solid #D5D5D5;
box-sizing: border-box;
border-radius: 1.64966px;
width: 60%;
}
.modal-cart-dialog .modal-body .mb-right{
width: 40%;
margin-left: 2rem;
}
.modal-cart-dialog .mb-left .no-cart{
font-size: 13px;
line-height: 15px;
text-align: center;
color: #909090;
margin-top: 40%;
}
.mb-right .info-cart{
background: #EFF3FC;
padding: 13px 20px;
}
.mb-right .info-cart .info-cart-title{
font-weight: 500;
font-size: 16.4966px;
line-height: 19px;
color: #211D1E;
}
.modal-num-item span,.modal-total span{
font-size: 13px;
line-height: 15px;
color: #211D1E;
}
.modal-num-item span:last-child{
font-weight: bold;
float: right;
color: #2767A5;
}
.modal-total span:last-child{
font-weight: bold;
float: right;
color: #FF0800;
}
.info-cart .modal-cart-vat span{
font-size: 9.89798px;
line-height: 12px;
color: #909090;
float: right;
}
.info-cart .modal-cart-vat{
display: flow-root;
}
.info-cart .info-cart-btn{
margin-top: 20px;
display: grid;
}
.info-cart-btn button{
height: 39px;
font-weight: bold;
font-size: 14.847px;
line-height: 17px;
text-align: center;
text-transform: uppercase;
margin-bottom: 16px;
border: none;
width: 100%;
}
.info-cart-btn .btn-cart{
color: #FFFFFF;
background: #979797;
}
.info-cart-btn .btn-cart.active{
background: #2767A5;
}
.info-cart-btn button{
color: #FFFFFF;
background: #979797;
}
.info-cart-btn .btn-del-cart.active{
background: #F9971C;
}
.info-cart-btn .btn-view-item{
background: #FFFFFF;
border: 1.23725px solid #2767A5;
box-sizing: border-box;
color: #2767A5;
}
.mb-right .info-pay{
padding: 14px;
}
.mb-right .info-pay .info-pay-deli p{
font-size: 13px;
line-height: 15px;
text-align: center;
color: #595959;
display: flex;
}
.mb-right .info-pay .info-pay-deli i{
width: 16.5px;
height: 16.5px;
background: #00B05F;
border-radius: 50%;
margin-right: 16px;
}
.modal-cart-pay{
font-weight: bold;
font-size: 7.98655px;
line-height: 9px;
text-transform: uppercase;
display: flex;
color: #2767A5;
}
.modal-cart-pay p{
display: flex;
width: 25%;
justify-content: center;
align-items: center;
}
.modal-cart-pay i{
margin-right: 5.6px;
}
.modal-cart-dialog .modal-body .mb-left.active{
border: none;
border-radius: none;
}
.modal-cart-dialog .mb-left.active .no-cart{
display: none;
}
.mb-left .mb-cart-item{
display: flex;
}
.mb-cart-item-img{
width: 20%;
}
.mb-cart-item-img img{
width: 100%;
}
.mb-cart-title{
font-size: 15px;
line-height: 20px;
color: #2767A5;
overflow: hidden;
text-overflow: ellipsis;
}
.mb-cart-gift{
font-size: 12px;
line-height: 150%;
color: #FF0800;
}
.mb-cart-gift i{
width: 12.37px;height: 12.37px;margin-right: 5px;
}
.mb-cart-price{
font-weight: bold;
font-size: 14.8411px;
line-height: 20px;
color: #2767A5;
}
.mb-cart-num{
display: flex;
align-items: center;
}
.mb-cart-num button{
width: 18.14px;
height: 18.14px;
background: #DDDFE6;
border: none;
font-size: small;
color: #2767A5;
}
.mb-cart-num input::placeholder{
color: #2767A5;
}
.mb-cart-num input{
width: 12px;
height: fit-content;
border: none;
margin: auto 9px;
font-weight: 600;
font-size: 12.5578px;
line-height: 17px;
color: #2767A5;
}
.mb-cart-item {
padding: 10px 15px;
border: 0.824503px solid #D4D4D4;
box-sizing: border-box;
border-radius: 1.64901px;
align-items: center;
}
.mb-cart-item-info a{
text-decoration: none;
}
.mb-cart-item-info {
margin-left: 8px;
width: 60%;
}
.mb-cart-item-info p{
margin-bottom: 3px;
}
.mb-cart-del{
margin: auto;
width: 5%;
}
.mb-cart-del button{
border: none;
background: none;
}
.mb-cart-item{
margin-bottom: 1rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.info-company a{
color: #000000;
}
@media(max-width:1920px){
.slide-text .slide-text-intro{
font-size: 30px;
line-height: 35px;
}
.slide-text .slide-text-title{
font-size: 35px;
line-height: 41px;
}
.slide-text .slide-text-sapo,.slide-text a.seemore{
font-size: 18px;
}
.slide-text .ic-cricle-right,.slide-text .ic-cricle-right-white{
font-size: 24px;
}
.slide-text .slide-text-recom{
font-size: 18px;
line-height: 21px;
}
.slide-text .slide-text-price{
font-size: 30px;
line-height: 35px;
}
.slide-text .slide-text-item{
font-size: 35px;
line-height: 41px;
}
.navbar-light .navbar-nav .nav-link{
font-weight: 500;
font-size: 20px;
line-height: 23px;
}
.navbar-brand{
margin-right: 58px;
}
input.form-control.me-2{
width: 395px;
font-size: 16px;
line-height: 19px;
}
.navbar-expand-lg .navbar-nav .nav-link{
padding: 0 15px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 20px;
line-height: 23px;
}
.navbar .container-fluid .cart-btn{
width: 109px;height: 45px;
}
.cart-btn{
border-radius: 12px;
padding-right: 0;
justify-content: center;
}
.cart-btn span{
font-size: 24px;
line-height: 33px;
width: 44px;
height: 37px;
border-radius: 8px;
}
.btn .badge{
right: -2px;
}
.badge{
padding: 2px 15px;
}
.btn.btn-outline-gray {
font-size: 17px;
line-height: 20px;
letter-spacing: 0.03em;
height: 48px;
}
button#stock-filter-btn{
width: 232px;
}
button#filter1-btn{
width: 182px;
}
button#filter1-btn.filter1-btn-width,div#filter1{
width: 409px;
}
#filter1 .accordion{
font-size: 18px;
line-height: 21px;
padding: 24px 26px;
}
#filter1 .accordion i{
margin-right: 23px;
}
.form-check{
font-size: 18px;
line-height: 21px;
margin-bottom: 15px;
}
.mgl-3 {
margin-left: 7rem;
}
.body-page #filter2{
width: 143px;height: 88px;
padding: 15px 20px;
}
div#stock-filter{
margin-left: 26.8rem;
width: 232px;
height: 88px;
padding: 15px 22px;
}
.view-all{
font-size: 24px;line-height: 28px;
}
h3 .item-title{
font-size: 20px;
line-height: 150%;
}
h4{
font-size: 32px;
line-height: 37px;
}
h5{
font-size: 30px;
line-height: 35px;
}
.item-body .float-end .item-code{
font-size: 10px;line-height: 12px;
}
.price .price-new{
font-size: 32px;
line-height: 37px;
}
.price .price-old{
font-size: 22px;
line-height: 26px;
}
.sale-tag{
background: url('../images/icon/Vector_18_1920.png');
width: 110px;
height: 45px;
padding: 7px;
}
.sale-tag span{
font-size: 25px;
line-height: 29px;
}
.item-body .item-status span{
font-size: 16px;
line-height: 22px;
}
.item-wrapper .item-footer{
height: 97px;
padding: 23px 19px;
}
.item-wrapper .item-footer .bonus-gift p{
font-size: 18px;
line-height: 150%;
}
.btn-seemore{
width: 163px;
height: 48px;
}
.btn-seemore a{
text-decoration: none;
}
.btn-seemore span{
font-size: 20px;
line-height: 23px;
}
.rating-num{
font-size: 18px;
line-height: 21px;
}
.item-code{
width: 85.66px;
height: 20.23px;
font-size: 10px;
line-height: 12px;
padding: 4px 11px;
}
.footer-title{
font-size: 36px;
}
.footer-sapo{
font-size: 24px;
}
.info-company strong,.info-company li{
font-size: 20px;
}
ul#footer li a{
font-size: 16px;
}
.navbar .navbar-brand img{
width: 217px;height: 64px;
}
.btn .badge{
width: 44px;
height: 37px;
padding: 2px 15px;
font-size: 24px;
line-height: 33px;
border-radius: 8px;
}
.ml-9{
margin-left: 9.5rem;
}
.owl-carousel .nav-btn{
top: 175px !important;
}
.ft1-btn-width{
width: 409px !important;
}
.modal-cart-dialog{
max-width: 60%;
}
.title-product{
font-size: 20px;
line-height: 150%;
}
.name-search{
font-size: 32px;
line-height: 37px;
}
.top-cate{
font-size: 30px;
line-height: 35px;
}
.breadcrumb-home{
font-size: 20px;
line-height: 23px;
}
}
@media(max-width:1854px){
.slide-text .slide-text-intro{
font-size: 20px;
line-height: 23px;
}
.slide-text .slide-text-title{
font-size: 24px;
line-height: 28px;
}
.btn .badge {
margin-left: 8px;
}
.btn .badge {
top: -3px;
}
.footer-title{
font-size: 24px;
line-height: 160.9%;
}
.footer-sapo,.info-company strong, .info-company li{
font-size: 14px;
line-height: 160.9%;
}
h3 .item-title {
font-size: 13px;
}
.view-all{
font-size: 16px;line-height: 19px;
}
h4{
font-size: 22px;
line-height: 26px;
}
h5{
font-size: 20px;
line-height: 23px;
}
.item-body .float-end .item-code{
font-size: 8px;line-height: 12px;
}
.item-wrapper .item-footer .bonus-gift p {
font-size: 13px;
line-height: 150%;
}
.item-body .item-status span {
font-size: 13px;
line-height: 15px;
}
.rating-num {
font-size: 11.8826px;
line-height: 14px;
}
.btn-seemore span {
font-size: 14px;
line-height: 16px;
}
.btn-seemore {
width: 111px;
height: 40px;
}
.item-wrapper .item-footer {
padding: 10px 5px;
height: 57px;
}
.price .price-new {
font-size: 20px;
line-height: 23px;
}
.price .price-old {
font-size: 13px;
line-height: 15px;
}
.sale-tag {
width: 73px;
height: 30px;
background: url("../images/icon/vector_3.png") no-repeat;
background-size: 73px 30px;
z-index: 1;
overflow: hidden;
position: absolute;
top: 16px;
padding: 4px;
}
.sale-tag span{
color: #ffffff;
text-align: center;
font-size: 16px;
line-height: 22px;
}
.slide-text .slide-text-sapo, .slide-text a.seemore {
font-size: 13px;
}
.slide-text .slide-text-recom {
font-size: 12.2904px;
line-height: 14px;
margin-bottom: 5px;
}
.slide-text .slide-text-price {
font-size: 20.4841px;
line-height: 24px;
}
.slide-text .slide-text-item {
font-size: 24px;
line-height: 33px;
}
.navbar .navbar-brand img {
width: 131px;
height: 39px;
}
input.form-control.me-2 {
width: 251px;
font-size: 14px;
line-height: 16px;
}
.navbar-brand {
margin-right: 1rem;
}
.navbar-light .navbar-nav .nav-link {
font-weight: 500;
font-size: 16px;
line-height: 19px;
padding: 8px;
}
.navbar .container-fluid .cart-btn {
width: 75px;
height: 35px;
}
.cart-btn{
border-radius: 5px;
}
.form-search{
margin-right: 15px;
}
.btn .badge {
top: -2px;
right: 3px;
}
.btn.btn-outline-gray{
height: 40px;
}
button#filter1-btn {
width: 145px;
}
.btn.btn-outline-gray {
font-size: 14px;
line-height: 16px;
letter-spacing: 0.03em;
}
nav .breadcrumb .breadcrumb-item {
font-size: 16px;
line-height: 19px;
}
.btn .badge {
width: 30px;
height: 26px;
border-radius: 5px;
font-size: 16px;
line-height: 22px;
padding: 2px 10px;
}
ul#footer li a {
font-size: 14px;
}
button#stock-filter-btn {
width: 195px;
}
.mgl-3 {
margin-left: 3.4rem;
}
.body-page #filter2 {
width: 125px;
height: 73px;
padding: 12px 16px;
}
.form-check {
font-size: 13px;
line-height: 15px;
margin-bottom: 0.125rem;
}
button#filter1-btn.filter1-btn-width, div#filter1 {
width: 286px;
}
#filter1 .accordion {
font-size: 14px;
line-height: 16px;
cursor: pointer;
padding: 11px;
}
div#stock-filter {
margin-left: 305px;
width: 195px;
height: 61px;
padding: 9px 13px;
}
.ml-9{
margin-left: 6.5rem;
}
.owl-carousel .nav-btn{
top: 120px !important;
}
.ft1-btn-width{
width: 286px !important;
}
.title-product{
font-size: 13px;
line-height: 150%;
}
.name-search{
font-size: 22px;
line-height: 26px;
}
.top-cate{
font-size: 20px;
line-height: 23px;
}
.breadcrumb-home{
font-size: 16px;
line-height: 19px;
}
}
@media(max-width: 1366px){
.ml-9 {
margin-left: 5rem;
}
}
@media (max-width: 1310px){
.navbar-expand-lg .navbar-toggler {
display: block;
padding: 0;
border: none;
}
.collapse:not(.show) {
display: none;
}
.navbar-expand-lg .navbar-nav {
flex-direction: column;
}
.navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
}
.navbar .logo-form{
display: block;
flex-direction: column;
}
.navbar .justify-content-sm-center{
padding-right: 0;
}
.form-search{
display: none;
}
.form-search-mobile{
display: flex;
justify-content: center;
margin-top: 23px;
}
#suggestion-box2{
padding-left: 20px;
padding-top: 37px;
z-index: 5;
}
input.form-control.me-2{
width: 364px;
}
.navbar-collapse.collapse.show{
position: absolute;
width: 222px;
top: 50px;
background: #FFFFFF;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
border-radius: 12px;
z-index: 10;
}
.show#navbar-menu ul li{
padding: 12px 20px;
border-bottom: 0.5px solid #F0F0F0;
}
.show#navbar-menu ul li:last-of-type{
border-bottom: none;
}
.mgl-3 {
margin-left: 5rem;
}
h3 .item-title{
font-size: 13px;
line-height: 150%;
}
h4{
font-size: 22px;
line-height: 26px;
}
h5{
font-size: 20px;
line-height: 23px;
}
.price .price-new{
font-size: 20px;
line-height: 23px;
}
.price .price-old{
font-size: 13px;
line-height: 15px;
}
.item-body .item-status span{
font-size: 16px;
line-height: 22px;
}
.item-wrapper .item-footer{
height: 61px;
padding: 15px 13px;
}
.item-wrapper .item-footer .bonus-gift p{
font-size: 12px;
}
.btn-seemore span{
font-size: 14px;
line-height: 16px;
}
.footer .list-group .list-group-item{
padding: 7px 10px;
}
.brand-container{
padding: 10px !important;
height: 78px;
}
.slide-text .ic-cricle-right, .slide-text .ic-cricle-right-white{
font-size: 0px;
}
.modal-cart-dialog{
max-width: 90%;
}
}
@media(max-width: 768px){
.slide-text .slide-text-title{
padding: 7px 0px;
}
.slide-text a.seemore{
margin-top: 0px;
}
.footer-sapo{
display: grid;
}
.footer-sapo i{
display: none;
}
.footer .list-group{
flex-direction: inherit;
}
.footer .list-group .list-group-item{
padding: 7px 10px;
}
.info-company-first,.info-company-last{
order: 1;
}
.info-company-mid{
order: 2;
margin-top: 15px;
}
.text-lg-end{
text-align: right!important;
}
.regist{
padding: 0 25px;
}
.footer .mt-5.bg-blue{
margin-top: 10px !important;
}
.footer-title{
margin-top: 18px;
font-size: 20px;
line-height: 160.9%;
}
.footer-sapo,.info-company strong, .info-company li{
font-size: 14px;
line-height: 160.9%;
}
.footer .mt-5.info-company{
margin-top: 0px !important;
}
.body-page.pd0{
padding-top: 0px;
}
.body-page .mt0{
margin-top: 0px !important;
}
.body-page .ft1{
margin-top: 1rem !important;
}
.body-page .ft1,.body-page .ft2{
display: none;
}
.span-footer{
display: none;
}
.brand-container{
padding: 0px !important;
height: 60px;
}
.filter-tablet{
display: block;
}
.modal-dialog {
max-width: 664px;
}
.modal-body .btn.btn-outline-gray {
margin-top: 15px;
margin-right: 15px;
}
.filter-modal-1{
display: flex;
}
.modal-content .filter-modal-1 .filter-modal-last button{
margin-right: 0;
}
.modal-content .filter-modal-1 .filter-modal-last{
text-align: right!important;
}
.modal-content-list{
margin-top: 15px;
background: #EFF3FC;
padding: 15px 15px 9px 15px;
}
.modal-content-list p{
border-bottom: 0.698783px solid #D4D4D4;
}
.modal-content-list .accordion2:after{
content: url("../images/icon/angle-down.png");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.modal-content-list .accordion2.active:after{
content: url("../images/icon/modal-angle-up.png");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.modal-footer-btn{
width: 299px;
height: 35px;
flex: none;
order: 0;
flex-grow: 1;
font-size: 12.5781px;
line-height: 15px;
text-transform: uppercase;
color: #2767A5;
background: #EEEEEE;
border: 1px solid #2767A5;
box-sizing: border-box;
}
.modal-footer-fisrt{
background: #2767A5;
color: #FFFFFF;
}
.modal-footer>*{
margin-top: 9px;
}
.modal-footer{
margin-top: 9px;
border-top: 0.698783px solid #D4D4D4;
}
.modal-content-list .input-group input{
color: #2767A5;
}
div#stock-filter2 {
padding: 9px 13px;
width: 181px;
height: 61px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
border-radius: 3px;
}
#modal-filter-2 {
width: 125px;
height: 73px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
border-radius: 5px;
padding: 12px 16px;
}
.mgl-3 {
margin-left: 1.5rem;
}
.s-flex{
display: flex;
}
.mgl-3 {
margin-left: 0;
right: 0;
}
.mt-0-md{
margin-top: 0px !important;
}
.modal-cart-dialog{
max-width: 80%;
}
.modal-cart-dialog .modal-body{
display: block !important;
}
.modal-cart-dialog .modal-body .mb-left,.modal-cart-dialog .modal-body .mb-right{
width: 100% !important;
margin-left: 0 !important;
margin-bottom: 15px;
}
.modal-total span:last-child{
font-size: 15px;line-height: 18px;
}
.mb-right .info-pay{
width: 55%;
}
.modal-cart-dialog .mb-left .no-cart{
padding: 20%;
margin-top: 0 !important;
}
.banner-recom{
flex-wrap: wrap;
justify-content: center;
}
.banner-recom .item{
width: 80%;
}
.banner-recom .item:first-child{
margin-bottom: 10px;
}
}
@media(max-width: 425px){
.info-company-last.text-lg-end{
text-align: left!important;
}
.info-company-mid .protected{
width: 56px;height: 61px;
}
.regist.protect{
text-align: center;
}
.mb-cart-item-info{
width: 75%;
}
.slide-text .slide-text-intro{
font-size: 12.5585px;
line-height: 15px;
}
.slide-text .slide-text-title{
font-size: 15.0703px;
line-height: 18px;
}
.slide-text .slide-text-sapo{
font-size: 8.16306px;
line-height: 175%;
}
.slide-text a.seemore{
font-size: 7.7175px;
line-height: 9px;
}
ul#footer{
display: block;
margin-bottom: 15px;
}
.footer .list-group .list-group-item {
padding: 5px 10px;
}
ul#footer span {
display: none;
}
.footer .title-info{
display: block;
padding: 10px 20px;
}
.footer .title-info p{
font-weight: bold;
font-size: 16px;
line-height: 180%;
color: #FFFFFF;
margin-bottom: 8px;
}
.filter-modal {
width: 100%;
}
.filter-tablet .btn.btn-outline-gray{
border: 1.5px solid #2767A5;
color: #2767A5;
}
.filter-modal-1{
display: block;
}
.modal-body .btn.btn-outline-gray {
height: 32px;
margin-top: 5px;
margin-right: 5px;
}
.modal-footer-btn {
width: 139px;
}
h4{
font-size: 18px;
line-height: 21px;
}
h5{
font-size: 16px;
line-height: 19px;
}
.view-all{
display: none !important;
}
.all-view{
display: block !important;
text-align: center;
}
.owl-carousel .nav-btn{
top: 70px !important;
}
.slide-text .slide-text-recom{
font-size: 10px;
line-height: 15px;
}
.slide-text .slide-text-price {
font-size: 14px;
line-height: 19px;
}
.slide-text .slide-text-item {
font-size: 15px;
line-height: 20px;
}
.navbar .container-fluid.p-md-0{
padding: 0;
}
input.form-control.me-2{
width: 269.5px;
height: 29.62px;
}
.btn-search{
width: 30px;
height: 30px;
padding: 5px;
}
.result-search{
max-width: 343px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 14px;
line-height: 16px;
}
.main-container nav{
margin-bottom: 16px;
}
.navbar .container-fluid .cart-btn{
width: 35px;
height: 35px;
}
.btn .badge{
position: absolute;
border-radius: 50%;
font-size: 10px;
line-height: 14px;
width: 14px;
height: 14px;
padding: 0px 4px;
top: 13px;
right: 3px;
}
.cart-btn{
padding-left: 0;
}
.form-search-mobile{
margin-top: 0;
}
.slide-text{
padding-left: 20px;
padding-top: 20px;
}
.slide-text a.seemore span{
margin-left: 8px;
padding-top: 4px;
}
.modal-cart-dialog{
max-width: 100%;
}
.mb-right .info-pay{
width: 100%;
}
.mb-left .mb-cart-item{
flex-wrap: wrap;
}
.title-product{
font-size: 13px;
line-height: 150%;
}
.name-search{
font-size: 18px;
line-height: 21px;
}
.top-cate{
font-size: 16px;
line-height: 19px;
}
.breadcrumb-home{
font-size: 14px;
line-height: 16px;
}
ul.pagination li{
margin: 0 3px;
width: 30px;
height: 30px;
}
li.breadcrumb-item.active {
margin-top: 5px;
}
}
@media(max-width: 375px){
.info-company-first{
order: 1;
}
.info-company-last{
order: 2;
}
.info-company-mid{
order: 3;
}
.slide-text{
padding-left: 20px;
padding-top: 5px;
}
.slide-text .slide-text-recom{
margin-bottom: 0px;
}
.owl-carousel .prev-slide, .owl-carousel .next-slide{
right: -35px;
}
.owl-carousel .prev-slide{
left: -35px;
}
}
@media(max-width: 320px){
.slide-text .slide-text-intro,.slide-text .slide-text-recom {
font-size: 10px;
line-height: 10px;
}
.slide-text .slide-text-title {
font-size: 12px;
line-height: 14px;
padding: 4px 0px;
}
.slide-text .slide-text-sapo {
font-size: 8.16306px;
line-height: 10px;
}
.slide-text .slide-text-price {
font-size: 12px;
line-height: 18px;
}
.slide-text .slide-text-item {
font-size: 12px;
line-height: 14px;
}
.owl-carousel .nav-btn {
top: 50px !important;
}
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
@media(min-width: 1521px){
.modal-title-cart,.mb-right .info-cart .info-cart-title{
font-size: 20px;line-height: 23px;
}
.modal-num-item span, .modal-total span,.modal-num-item span:last-child,.mb-right .info-pay .info-pay-deli p{
font-size: 16px;line-height: 19px;
}
.modal-total span:last-child,.info-cart-btn button,.mb-cart-title,.mb-cart-price{
font-size: 18px;
line-height: 21px;
}
.info-cart .modal-cart-vat span{
font-size: 12px;
line-height: 14px;
}
.modal-cart-pay{
font-size: 10px;
line-height: 14px;
}
.mb-right .info-pay .info-pay-deli i{
width: 20px;height: 20px;
}
.mb-cart-gift{
font-size: 14px;
line-height: 150%;
}
.mb-cart-gift i{
width: 15px;height: 15px;
}
.mb-cart-num input,.mb-cart-num input::placeholder{
font-size: 15.2308px;
line-height: 18px;
}
.mb-cart-item-info p{
margin-bottom: 7px;
}
}
|
css/home.css
|
@font-face{
font-family: 'Roboto';
src:"../fonts/roboto-v16-vietnamese_latin-ext-regular.woff2";
font-weight: normal;
display: swap;
}
@font-face{
font-family: 'Roboto';
src:"../fonts/Roboto-Medium.woff2";
font-weight: 500;
display: swap;
}
@font-face{
font-family: 'Roboto';
src:"../fonts/Roboto-Bold.woff2";
font-weight: 700;
display: swap;
}
body {
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
ul {
list-style-type: none;
padding-left: 0;
}
ul li a{
display: inline-block;
text-decoration: none;
color: white;
font-size: 12px;
}
textarea {
resize: initial;
}
input{
outline: none;
}
.hidden{
display: none !important;
}
.txt-center{
text-align: center;
}
.manufacturer{
display: flex;
flex-wrap: wrap;
}
.manufacturer .form-check{
width: 50%;
}
.suggestion-title{
margin-bottom: 0px;
}
.list-group-item{
color: #2767A5;
background: transparent;
border: none;
padding: 7px 30px;
border-bottom: 0.5px solid #D4D4D4;
}
.list-group li:last-child{
border-bottom:none;
}
.form-check-input:checked {
background-color: #2767A5;
border-color: #2767A5;
}
ul.pagination li {
background: none;
border-radius: 5px;
margin: 0px 10px;
padding: 10px;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
ul.pagination li p{
font-weight: bold;
font-size: 16px;
line-height: 19px;
letter-spacing: 0.03em;
color: #2767A5;
display: block;
margin-bottom: 0;
}
.pagination{
margin-bottom: 0;
align-items: center;
}
ul.pagination li.active{
background: #2767A5;
}
ul.pagination li.active p{
color: #FFFFFF;
}
.pagination [rel|=next], .pagination [rel|=prev] {
color: #FFFFFF;
}
.pagination .page{
background: #D5D5D5;
border-radius: 8px;
width: 25px;
height: 25px;
}
nav.navbar.navbar-expand.navbar-light {
background: #ffffff;
}
.menu-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
.navbar-light.menu-toggler-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 17' width='27' height='17' fill='none' %3e%3cpath stroke='rgba%2839, 103, 165, 100%29' stroke-linecap='round'stroke-width='2' stroke-linejoin='round' d='M1.83325 1.20898H25.1666M1.83325 8.50065H25.1666M1.83325 15.7923H25.1666'/%3e%3c/svg%3e");
}
.main-container {
padding: 0 6%;
margin-left: 0;
margin-right: auto;
}
.footer-container {
/*width: 95%;*/
margin: auto;
padding-top: 61px;
clear: both;
background: #F8F9FC;
}
.list-item-suggest .list-group .item-suggest:nth-child(n+6){
display: none!important;
}
.li-output-tag:nth-child(n+4){
display: none!important;
}
input.form-control.me-2 {
width: 251px;
height: 40px;
background: #EEEEEE;
border-radius: 5px;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 16px;
color: #909090;
border: none;
}
.navbar .justify-content-sm-center{
padding-right: 30px;
}
.navbar .container-fluid .cart-btn{
width: 75px;
height: 35px;
}
.justify-content-sm-center .pd-15{
padding: 0 15px;
}
.btn .badge {
margin-left: 9px;
}
.navbar-light .navbar-nav .nav-link {
color: #595959;
font-style: normal;
font-weight: 500;
font-size: 92%;
line-height: 19px;
}
.text-grey{
color: #595959;
}
.text-orange{
color: #F9971C;
}
.text-blue{
color: #2767A5;
}
.bg-blue{
background: #2767A5;
}
.bg-gray{
background: #eeeeee;
}
.navbar-light .navbar-nav .nav-link:hover {
color: #2767A5;
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link.active {
color: #2767A5;
}
.btn-outline-primary {
color: #909090;
border-color: #eeeeee;
background-color: #eeeeee;
}
.btn-outline-primary:hover {
color: #909090;
border-color: #eeeeee;
background-color: #eeeeee;
}
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem #eeeeee;
}
.btn-outline-gray {
color: #595959;
border: 2px solid #E3E9ED;
}
.btn-search{
width: 40px;
height: 40px;
left: 492px;
top: 46px;
padding: 9px;
background: #EEEEEE;
border-radius: 5px;
}
.item-wrapper .item-body .float-start,.item-wrapper .item-body .float-end,.item-body h3,.item-body .item-price{
padding: 0;
}
.item-body .float-end .item-code{
margin-bottom: 0;
}
.btn-outline-gray:hover {
color: #2767A5;
border: 2px solid #2767A5;
}
.btn-outline-gray.active {
color: #2767A5;
border: 2px solid #2767A5;
}
.price .price-new{
margin-right: 12px;
}
.btn-outline-gray .active {
color: #2767A5;
border: 2px solid #2767A5;
}
.apply-button{
background: #fff;
padding: 11px;
display: flex;
align-items: center;
justify-content: space-between;
}
.apply-button button{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
background: #EEEEEE;
height: 35px;
font-weight: 500;
font-size: 12.5781px;
line-height: 15px;
text-transform: uppercase;
width: 48%;
color: #2767A5;
border: none;
}
.apply-button button.active{
background: #2767A5;
color: #FFFFFF;
}
.cart-btn {
background: #eeeeee;
}
.price_re{
text-align: center;
}
.cart-badge {
background-color: #F9971C;
}
.breadcrumb-item + .breadcrumb-item::before {
float: left;
padding-right: 0.5rem;
color: #595959;
content: url("../images/icon/angle-right.png");
}
.no-found{
text-align: center;
}
.no-found p{
margin-top: 1rem;
}
.breadcrumb-item.active {
color: #2767A5;
}
ol.breadcrumb.pt-4 {
margin-bottom: 6px;
}
.body-page {
padding-top: 25px;
}
.banner img {
border-radius: 5px;
}
.card {
border: 1px solid rgba(196, 196, 196, 0.3);
box-sizing: border-box;
text-align: center;
}
.item {
position: relative;
box-sizing: border-box;
}
.item-wrapper {
margin: 15px;
/*border: 1px solid rgba(196, 196, 196, 0.3);*/
}
.item-top {
border-top: 1px solid rgba(196, 196, 196, 0.3);
border-left: 1px solid rgba(196, 196, 196, 0.3);
border-right: 1px solid rgba(196, 196, 196, 0.3);
}
.item-body {
flex: 1 1 auto;
padding: 1rem 1rem;
border-left: 1px solid rgba(196, 196, 196, 0.3);
border-right: 1px solid rgba(196, 196, 196, 0.3);
}
.item-footer {
flex: 1 1 auto;
padding: 10px 5px;
border: 1px solid rgba(196, 196, 196, 0.3);
height: 57px;
}
.item-img {
position: relative;
display: block;
margin-top: 24px;
margin-left: auto;
margin-right: auto;
}
.item-title {
font-style: normal;
font-weight: bold;
font-size: 13px;
color: #000000;
line-height: 19px;
text-align: justify;
text-transform: uppercase;
text-decoration: none;
}
.item-code {
float: right;
width: 100%;
font-size: 10px;
text-align: center;
color: #595959;
background: #D4D4D4;
border-radius: 3px;
padding: 2px;
}
.price {
margin: 0 0 10px 0;
line-height: 24px;
color: #FF0800;
font-size: 16px;
font-weight: 600;
}
.price .price-old {
line-height: 20px;
padding: 0 5px;
display: inline-block;
text-decoration: line-through;
color: #C4C4C4;
}
.price .price-new, .price span.price {
color: #FF0800;
font-size: 1.3rem;
}
.item-status {
color: #2CC067;
}
.add-to-cart {
text-align: right;
}
.sale-tag {
width: 73px;
height: 30px;
background: url("../images/icon/vector_3.png") no-repeat;
background-size: 73px 30px;
z-index: 1;
overflow: hidden;
position: absolute;
top: 16px;
margin-left: -12px;
}
.sale-tag span{
color: #ffffff;
text-align: center;
padding: 13px;
line-height: 32px;
}
.bonus-gift {
padding: 0;
font-size: 13px;
}
.bonus-gift p {
padding-left: 10px;
}
/*ratting star*/
.rating {
color: #D5D5D5;
}
.rating-num{
color: #595959;
}
.checked {
filter: invert(12%) sepia(41%) saturate(4212%) hue-rotate(353deg) brightness(105%) contrast(89%);
}
.banner-recom{
display: flex;
justify-content: space-between;
}
.banner-recom .item{
width: 48%;
}
.banner-recom .banner-bg{
position: absolute;
height: 100%;
width: 100%;
}
.slide-text{
position: inherit;
width: 60%;
float: left;
padding-left: 30px;
padding-top: 20px;
}
.slide-text p{
margin: 0;
font-style: normal;
font-size: 13px;
}
.slide-image{
position: inherit;
width: 40%;
float: left;
}
.brand-container{
width: 95%;
margin: auto;
background: #FFFFFF;
box-shadow: 0px 2.72135px 13.6068px rgb(0 0 0 / 28%);
border-radius: 17.0084px;
}
.btn-seemore{
width: 111px;
height: 40px;
border: 2px solid #E3E9ED;
box-sizing: border-box;
border-radius: 5px;
}
.btn-seemore span{
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 16px;
letter-spacing: 0.03em;
text-transform: capitalize;
color: #595959;
}
.view-all{
font-size: 16px;line-height: 19px;
}
.view-all span{
padding-right: 15px;
}
.slide-text a.seemore{
margin-top: 13px;
font-size: 13px;
}
.slide-text a.seemore span{
margin-left: 12px;
padding-top: 2px;
}
.slide-image .img-fluid{
padding: 17px 0;
}
.slide-text .text-blue{
font-weight: bold;
}
/*dropdown*/
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
/*background-color: #FFFFFF;
overflow: auto;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
border-radius: 5px;
z-index: 2;
padding: 10px;*/
}
.result-search{
margin-top: -8px;
background: #FFFFFF;
border: 0.5px solid #EEEEEE;
box-sizing: border-box;
border-radius: 10px;
overflow: auto;
z-index: 2;
width: 436px;
}
div#filter1{
width: 286px;
border: 1.39757px solid #E3E9ED;
box-sizing: border-box;
border-radius: 6.98783px;
margin-top: -2px;
}
div#stock-filter{
padding: 9px 13px;
margin-left: 305px;
width: 195px;
height: 61px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
border-radius: 3px;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
button#filter1-btn{
text-align: left;
}
.dropdown a:hover {background-color: #ddd;}
.filter1-btn-width{
width: 286px;
}
.show {
display: block;
}
/*accordion*/
.accordion {
background-color: #FFFFFF;
color: #595959;
cursor: pointer;
padding: 11px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
font-weight: bold;
transition: 0.4s;
border-top: 1px solid #D5D5D5;
}
.accordion.active:after {
content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 10 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.44095 4.18239L4.94704 0.988281L1.45313 4.18239' stroke='%23595959' stroke-width='1.39757' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
transform: scaleY(1);
}
.accordion:after {
content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 10 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.44095 4.18239L4.94704 0.988281L1.45313 4.18239' stroke='%23595959' stroke-width='1.39757' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.panel {
max-height: 0;
transition: max-height 0.2s ease-out;
padding: 5px 18px;
display: none;
background-color: white;
overflow: hidden;
}
.range-slider{
-webkit-appearance: none;
width: 100%;
height: 6px;
background: rgba(39, 103, 165, 0.3);
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 13px;
height: 13px;
border-radius: 50%;
background: #2767A5;
cursor: pointer;
}
.range-slider::-moz-range-thumb {
width: 13px;
height: 13px;
border-radius: 50%;
background: #2767A5;
cursor: pointer;
}
.ui-slider-range.ui-corner-all.ui-widget-header.ui-slider-range-min {
background-color: #2767A5;
}
.ui-state-default, .ui-widget-content .ui-state-default{
width: 15px;
height: 15px;
border: 1px solid #2767A5;
border-radius: 15px;
background: #2767A5;
font-weight: normal;
color: #454545;
}
input#range-price {
color: #fff;
background-color: #2767A5;
}
button#stock-filter-btn {
margin-left: 15px;
width: 195px;
}
.ic-menu {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
div#suggestion-box{
padding: 0;
min-width: 436px;
z-index: 10;
}
.item-info .item-info-title p{
font-size: 14px;
line-height: 16px;
color: #211D1E;
}
.suggestion-title{
padding: 13px 20px 11px;
}
#suggestion-box .ic-top-result{
margin-left: 178px;
}
.item-info .item-info-title{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 16px;
color: #211D1E;
padding-bottom: 0;
}
label.error {
text-align: left !important;
color: #ff2f2f !important;
font-size: 14px;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.no-result{
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
label.error:before {
content: "!";
display: inline-block;
width: 18px;
height: 18px;
text-align: center;
border-radius: 50%;
background: red;
position: relative;
color: #fff;
line-height: 20px;
font-size: 13px;
font-family: "Roboto-Bold";
margin-right: 5px;
}
.item-info .item-info-title p{
margin-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.item-info .price{
padding: 8px 16px 0;
margin-bottom: 0;
}
.item-info .price .price-new{
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 16px;
color: #595959;
}
.item-info .price .price-old{
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 14px;
text-decoration-line: line-through;
color: #595959;
}
.item-info .item-gift img{
width: 15px;height: 15px;
margin-right: 7px;
}
.item-info .item-gift{
padding-left: 16px;
}
.item-info .item-gift span{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 150%;
color: #FF0800;
}
.list-item-suggest .list-group .item-suggest{
border-bottom: 0.5px solid #D4D4D4;
align-items: center;
}
.list-item-suggest .list-group .item-suggest:last-child{
border-bottom: none;
}
.list-item-suggest{
margin-bottom: 10px;
}
.suggestion-body .list-group .list-group-item a{
color: #2767A5;
font-size: 14px;
line-height: 16px;
padding: 0;
display: inline;
}
#filter2-btn:hover #filter2{
display: block;
}
.show-view{
display: block;
z-index: 3;
}
.body-page #filter2{
width: 125px;
height: 73px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
border-radius: 5px;
padding: 12px 16px;
}
.mgl-3{
margin-left: 3.4rem;
}
.slide-text .slide-text-intro{
font-size: 20px;
line-height: 23px;
}
.slide-text .slide-text-title{
font-size: 24px;
line-height: 28px;
padding-bottom: 15px;
padding-top: 15px;
text-transform: capitalize;
}
.slide-text .slide-text-sapo{
font-style: normal;
font-weight: normal;
font-size: 13px;
line-height: 175%;
text-align: justify;
}
.slide-text .slide-text-recom{
font-size: 12.2904px;
line-height: 14px;
margin-bottom: 5px;
}
.slide-text .slide-text-price{
font-weight: bold;
font-size: 20.4841px;
line-height: 24px;
text-transform: capitalize;
color: #F1BA17;
}
.slide-text .slide-text-item{
font-style: normal;
font-size: 24px;
line-height: 33px;
text-transform: capitalize;
}
.btn.btn-outline-gray {
font-size: 14px;
line-height: 16px;
letter-spacing: 0.03em;
}
#filter1 .accordion{
font-size: 14px;
line-height: 16px;
}
.form-check{
font-size: 13px;
line-height: 15px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 16px;
line-height: 19px;
}
.navbar-light .navbar-nav .nav-link{
display: inline-block;
font-weight: 500;
font-size: 16px;
line-height: 19px;
}
.btn .badge{
width: 30px;
height: 26px;
border-radius: 5px;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 22px;
padding: 2px 10px;
}
.navbar .navbar-brand img{
width: 131px;height: 39px;
}
.item-code{
width: 85.66px;
height: 20.23px;
}
.footer-title{
margin-top: 61px;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 160.9%;
}
.footer-sapo{
font-size: 14px;
line-height: 160.9%;
}
.info-company strong,.info-company li{
font-size: 14px;
line-height: 170.9%;
}
ul#footer{
flex-wrap: wrap;
justify-content: center;
}
ul#footer li a{
font-size: 14px;
line-height: 160.9%;
}
ul#footer .list-group-item{
border-bottom:none;
}
ul#footer span{
margin: auto;
color: #fff;
}
ul#footer li a:hover{
color: #87ceeb;
}
.footer .title-info{
display: none;
}
.btn .badge{
top: -3px;
}
.form-search-mobile{
display: none;
}
.list-filter button{
margin-right: 15px;
}
.footer{
background: #F8F9FC;
}
.footer .mt-5.bg-blue{
display: flex;
justify-content: center;
align-items: center;
}
.brand-hp{
padding-top: 5px !important;
}
.filter-tablet{
display: none;
}
.filter-modal{
width: 143px;
}
.modal-fade {
overflow: hidden;
}
.modal-content.container-modal{
max-width: 664px;
padding: 18px 24px;
}
.modal-footer,.modal-header,.modal-body{
border-bottom: none;
border-top: none;
padding: 0px;
}
.modal-title{
font-size: 16px;
line-height: 19px;
letter-spacing: 0.03em;
color: #595959;
}
.btn-modal-exit,.btn-modal-close{
border: none;
background-color: #fff;
}
.all-view{
display: none !important;
}
.fade.show{
background: rgba(0, 0, 0, 0.4);
}
.slide-text .slide-text-sapo{
display: inline-block;
}
#suggestion-box2 .icon-top-result{
text-align: center !important;
}
.ml-0{
margin-left: 0 !important;
}
.ml-9 {
margin-left: 5rem;
}
.ft1-btn-width{
width: 286px !important;
}
.mb-cart-item .change-325{
display: flex;
}
.title-product{
font-weight: 500;
font-size: 13px;
line-height: 150%;
text-align: justify;
text-transform: capitalize;
color: #000000;
padding: 0;
height: 2.2rem;
overflow: hidden;
text-overflow: ellipsis;
}
.item-body .add-to-cart button{
background: none;
border: none;
}
.item-img{
max-height: 200px;
}
.item-suggest img{
max-width: 60px;
}
.color-red{
color: #FF0800;
}
.name-search{
font-weight: bold;
font-size: 22px;
line-height: 26px;
text-transform: uppercase;
color: #211D1E;
}
.top-cate{
font-weight: bold;
font-size: 20px;
line-height: 23px;
text-transform: uppercase;
color: #211D1E;
}
.breadcrumb-home{
color: #595959;
text-decoration: none;
}
.container-modal-cart{
padding: 30px;
}
.container-modal-cart .modal-body{
margin-top: 25px;
}
.modal-title-cart{
font-weight: 500;
font-size: 16.4966px;
line-height: 19px;
color: #211D1E;
margin-bottom: 0;
}
.modal-cart-dialog .modal-body{
display: flex;
}
.modal-cart-dialog .modal-body .mb-left{
border: 0.824832px solid #D5D5D5;
box-sizing: border-box;
border-radius: 1.64966px;
width: 60%;
}
.modal-cart-dialog .modal-body .mb-right{
width: 40%;
margin-left: 2rem;
}
.modal-cart-dialog .mb-left .no-cart{
font-size: 13px;
line-height: 15px;
text-align: center;
color: #909090;
margin-top: 40%;
}
.mb-right .info-cart{
background: #EFF3FC;
padding: 13px 20px;
}
.mb-right .info-cart .info-cart-title{
font-weight: 500;
font-size: 16.4966px;
line-height: 19px;
color: #211D1E;
}
.modal-num-item span,.modal-total span{
font-size: 13px;
line-height: 15px;
color: #211D1E;
}
.modal-num-item span:last-child{
font-weight: bold;
float: right;
color: #2767A5;
}
.modal-total span:last-child{
font-weight: bold;
float: right;
color: #FF0800;
}
.info-cart .modal-cart-vat span{
font-size: 9.89798px;
line-height: 12px;
color: #909090;
float: right;
}
.info-cart .modal-cart-vat{
display: flow-root;
}
.info-cart .info-cart-btn{
margin-top: 20px;
display: grid;
}
.info-cart-btn button{
height: 39px;
font-weight: bold;
font-size: 14.847px;
line-height: 17px;
text-align: center;
text-transform: uppercase;
margin-bottom: 16px;
border: none;
width: 100%;
}
.info-cart-btn .btn-cart{
color: #FFFFFF;
background: #979797;
}
.info-cart-btn .btn-cart.active{
background: #2767A5;
}
.info-cart-btn button{
color: #FFFFFF;
background: #979797;
}
.info-cart-btn .btn-del-cart.active{
background: #F9971C;
}
.info-cart-btn .btn-view-item{
background: #FFFFFF;
border: 1.23725px solid #2767A5;
box-sizing: border-box;
color: #2767A5;
}
.mb-right .info-pay{
padding: 14px;
}
.mb-right .info-pay .info-pay-deli p{
font-size: 13px;
line-height: 15px;
text-align: center;
color: #595959;
display: flex;
}
.mb-right .info-pay .info-pay-deli i{
width: 16.5px;
height: 16.5px;
background: #00B05F;
border-radius: 50%;
margin-right: 16px;
}
.modal-cart-pay{
font-weight: bold;
font-size: 7.98655px;
line-height: 9px;
text-transform: uppercase;
display: flex;
color: #2767A5;
}
.modal-cart-pay p{
display: flex;
width: 25%;
justify-content: center;
align-items: center;
}
.modal-cart-pay i{
margin-right: 5.6px;
}
.modal-cart-dialog .modal-body .mb-left.active{
border: none;
border-radius: none;
}
.modal-cart-dialog .mb-left.active .no-cart{
display: none;
}
.mb-left .mb-cart-item{
display: flex;
}
.mb-cart-item-img{
width: 20%;
}
.mb-cart-item-img img{
width: 100%;
}
.mb-cart-title{
font-size: 15px;
line-height: 20px;
color: #2767A5;
overflow: hidden;
text-overflow: ellipsis;
}
.mb-cart-gift{
font-size: 12px;
line-height: 150%;
color: #FF0800;
}
.mb-cart-gift i{
width: 12.37px;height: 12.37px;margin-right: 5px;
}
.mb-cart-price{
font-weight: bold;
font-size: 14.8411px;
line-height: 20px;
color: #2767A5;
}
.mb-cart-num{
display: flex;
align-items: center;
}
.mb-cart-num button{
width: 18.14px;
height: 18.14px;
background: #DDDFE6;
border: none;
font-size: small;
color: #2767A5;
}
.mb-cart-num input::placeholder{
color: #2767A5;
}
.mb-cart-num input{
width: 12px;
height: fit-content;
border: none;
margin: auto 9px;
font-weight: 600;
font-size: 12.5578px;
line-height: 17px;
color: #2767A5;
}
.mb-cart-item {
padding: 10px 15px;
border: 0.824503px solid #D4D4D4;
box-sizing: border-box;
border-radius: 1.64901px;
align-items: center;
}
.mb-cart-item-info a{
text-decoration: none;
}
.mb-cart-item-info {
margin-left: 8px;
width: 60%;
}
.mb-cart-item-info p{
margin-bottom: 3px;
}
.mb-cart-del{
margin: auto;
width: 5%;
}
.mb-cart-del button{
border: none;
background: none;
}
.mb-cart-item{
margin-bottom: 1rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.info-company a{
color: #000000;
}
@media(max-width:1920px){
.slide-text .slide-text-intro{
font-size: 30px;
line-height: 35px;
}
.slide-text .slide-text-title{
font-size: 35px;
line-height: 41px;
}
.slide-text .slide-text-sapo,.slide-text a.seemore{
font-size: 18px;
}
.slide-text .ic-cricle-right,.slide-text .ic-cricle-right-white{
font-size: 24px;
}
.slide-text .slide-text-recom{
font-size: 18px;
line-height: 21px;
}
.slide-text .slide-text-price{
font-size: 30px;
line-height: 35px;
}
.slide-text .slide-text-item{
font-size: 35px;
line-height: 41px;
}
.navbar-light .navbar-nav .nav-link{
font-weight: 500;
font-size: 20px;
line-height: 23px;
}
.navbar-brand{
margin-right: 58px;
}
input.form-control.me-2{
width: 395px;
font-size: 16px;
line-height: 19px;
}
.navbar-expand-lg .navbar-nav .nav-link{
padding: 0 15px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 20px;
line-height: 23px;
}
.navbar .container-fluid .cart-btn{
width: 109px;height: 45px;
}
.cart-btn{
border-radius: 12px;
padding-right: 0;
justify-content: center;
}
.cart-btn span{
font-size: 24px;
line-height: 33px;
width: 44px;
height: 37px;
border-radius: 8px;
}
.btn .badge{
right: -2px;
}
.badge{
padding: 2px 15px;
}
.btn.btn-outline-gray {
font-size: 17px;
line-height: 20px;
letter-spacing: 0.03em;
height: 48px;
}
button#stock-filter-btn{
width: 232px;
}
button#filter1-btn{
width: 182px;
}
button#filter1-btn.filter1-btn-width,div#filter1{
width: 409px;
}
#filter1 .accordion{
font-size: 18px;
line-height: 21px;
padding: 24px 26px;
}
#filter1 .accordion i{
margin-right: 23px;
}
.form-check{
font-size: 18px;
line-height: 21px;
margin-bottom: 15px;
}
.mgl-3 {
margin-left: 7rem;
}
.body-page #filter2{
width: 143px;height: 88px;
padding: 15px 20px;
}
div#stock-filter{
margin-left: 26.8rem;
width: 232px;
height: 88px;
padding: 15px 22px;
}
.view-all{
font-size: 24px;line-height: 28px;
}
h3 .item-title{
font-size: 20px;
line-height: 150%;
}
h4{
font-size: 32px;
line-height: 37px;
}
h5{
font-size: 30px;
line-height: 35px;
}
.item-body .float-end .item-code{
font-size: 10px;line-height: 12px;
}
.price .price-new{
font-size: 32px;
line-height: 37px;
}
.price .price-old{
font-size: 22px;
line-height: 26px;
}
.sale-tag{
background: url('../images/icon/Vector_18_1920.png');
width: 110px;
height: 45px;
padding: 7px;
}
.sale-tag span{
font-size: 25px;
line-height: 29px;
}
.item-body .item-status span{
font-size: 16px;
line-height: 22px;
}
.item-wrapper .item-footer{
height: 97px;
padding: 23px 19px;
}
.item-wrapper .item-footer .bonus-gift p{
font-size: 18px;
line-height: 150%;
}
.btn-seemore{
width: 163px;
height: 48px;
}
.btn-seemore a{
text-decoration: none;
}
.btn-seemore span{
font-size: 20px;
line-height: 23px;
}
.rating-num{
font-size: 18px;
line-height: 21px;
}
.item-code{
width: 85.66px;
height: 20.23px;
font-size: 10px;
line-height: 12px;
padding: 4px 11px;
}
.footer-title{
font-size: 36px;
}
.footer-sapo{
font-size: 24px;
}
.info-company strong,.info-company li{
font-size: 20px;
}
ul#footer li a{
font-size: 16px;
}
.navbar .navbar-brand img{
width: 217px;height: 64px;
}
.btn .badge{
width: 44px;
height: 37px;
padding: 2px 15px;
font-size: 24px;
line-height: 33px;
border-radius: 8px;
}
.ml-9{
margin-left: 9.5rem;
}
.owl-carousel .nav-btn{
top: 175px !important;
}
.ft1-btn-width{
width: 409px !important;
}
.modal-cart-dialog{
max-width: 60%;
}
.title-product{
font-size: 20px;
line-height: 150%;
}
.name-search{
font-size: 32px;
line-height: 37px;
}
.top-cate{
font-size: 30px;
line-height: 35px;
}
.breadcrumb-home{
font-size: 20px;
line-height: 23px;
}
}
@media(max-width:1854px){
.slide-text .slide-text-intro{
font-size: 20px;
line-height: 23px;
}
.slide-text .slide-text-title{
font-size: 24px;
line-height: 28px;
}
.btn .badge {
margin-left: 8px;
}
.btn .badge {
top: -3px;
}
.footer-title{
font-size: 24px;
line-height: 160.9%;
}
.footer-sapo,.info-company strong, .info-company li{
font-size: 14px;
line-height: 160.9%;
}
h3 .item-title {
font-size: 13px;
}
.view-all{
font-size: 16px;line-height: 19px;
}
h4{
font-size: 22px;
line-height: 26px;
}
h5{
font-size: 20px;
line-height: 23px;
}
.item-body .float-end .item-code{
font-size: 8px;line-height: 12px;
}
.item-wrapper .item-footer .bonus-gift p {
font-size: 13px;
line-height: 150%;
}
.item-body .item-status span {
font-size: 13px;
line-height: 15px;
}
.rating-num {
font-size: 11.8826px;
line-height: 14px;
}
.btn-seemore span {
font-size: 14px;
line-height: 16px;
}
.btn-seemore {
width: 111px;
height: 40px;
}
.item-wrapper .item-footer {
padding: 10px 5px;
height: 57px;
}
.price .price-new {
font-size: 20px;
line-height: 23px;
}
.price .price-old {
font-size: 13px;
line-height: 15px;
}
.sale-tag {
width: 73px;
height: 30px;
background: url("../images/icon/vector_3.png") no-repeat;
background-size: 73px 30px;
z-index: 1;
overflow: hidden;
position: absolute;
top: 16px;
padding: 4px;
}
.sale-tag span{
color: #ffffff;
text-align: center;
font-size: 16px;
line-height: 22px;
}
.slide-text .slide-text-sapo, .slide-text a.seemore {
font-size: 13px;
}
.slide-text .slide-text-recom {
font-size: 12.2904px;
line-height: 14px;
margin-bottom: 5px;
}
.slide-text .slide-text-price {
font-size: 20.4841px;
line-height: 24px;
}
.slide-text .slide-text-item {
font-size: 24px;
line-height: 33px;
}
.navbar .navbar-brand img {
width: 131px;
height: 39px;
}
input.form-control.me-2 {
width: 251px;
font-size: 14px;
line-height: 16px;
}
.navbar-brand {
margin-right: 1rem;
}
.navbar-light .navbar-nav .nav-link {
font-weight: 500;
font-size: 16px;
line-height: 19px;
padding: 8px;
}
.navbar .container-fluid .cart-btn {
width: 75px;
height: 35px;
}
.cart-btn{
border-radius: 5px;
}
.form-search{
margin-right: 15px;
}
.btn .badge {
top: -2px;
right: 3px;
}
.btn.btn-outline-gray{
height: 40px;
}
button#filter1-btn {
width: 145px;
}
.btn.btn-outline-gray {
font-size: 14px;
line-height: 16px;
letter-spacing: 0.03em;
}
nav .breadcrumb .breadcrumb-item {
font-size: 16px;
line-height: 19px;
}
.btn .badge {
width: 30px;
height: 26px;
border-radius: 5px;
font-size: 16px;
line-height: 22px;
padding: 2px 10px;
}
ul#footer li a {
font-size: 14px;
}
button#stock-filter-btn {
width: 195px;
}
.mgl-3 {
margin-left: 3.4rem;
}
.body-page #filter2 {
width: 125px;
height: 73px;
padding: 12px 16px;
}
.form-check {
font-size: 13px;
line-height: 15px;
margin-bottom: 0.125rem;
}
button#filter1-btn.filter1-btn-width, div#filter1 {
width: 286px;
}
#filter1 .accordion {
font-size: 14px;
line-height: 16px;
cursor: pointer;
padding: 11px;
}
div#stock-filter {
margin-left: 305px;
width: 195px;
height: 61px;
padding: 9px 13px;
}
.ml-9{
margin-left: 6.5rem;
}
.owl-carousel .nav-btn{
top: 120px !important;
}
.ft1-btn-width{
width: 286px !important;
}
.title-product{
font-size: 13px;
line-height: 150%;
}
.name-search{
font-size: 22px;
line-height: 26px;
}
.top-cate{
font-size: 20px;
line-height: 23px;
}
.breadcrumb-home{
font-size: 16px;
line-height: 19px;
}
}
@media(max-width: 1366px){
.ml-9 {
margin-left: 5rem;
}
}
@media (max-width: 1310px){
.navbar-expand-lg .navbar-toggler {
display: block;
padding: 0;
border: none;
}
.collapse:not(.show) {
display: none;
}
.navbar-expand-lg .navbar-nav {
flex-direction: column;
}
.navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
}
.navbar .logo-form{
display: block;
flex-direction: column;
}
.navbar .justify-content-sm-center{
padding-right: 0;
}
.form-search{
display: none;
}
.form-search-mobile{
display: flex;
justify-content: center;
margin-top: 23px;
}
#suggestion-box2{
padding-left: 20px;
padding-top: 37px;
z-index: 5;
}
input.form-control.me-2{
width: 364px;
}
.navbar-collapse.collapse.show{
position: absolute;
width: 222px;
top: 50px;
background: #FFFFFF;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
border-radius: 12px;
z-index: 10;
}
.show#navbar-menu ul li{
padding: 12px 20px;
border-bottom: 0.5px solid #F0F0F0;
}
.show#navbar-menu ul li:last-of-type{
border-bottom: none;
}
.mgl-3 {
margin-left: 5rem;
}
h3 .item-title{
font-size: 13px;
line-height: 150%;
}
h4{
font-size: 22px;
line-height: 26px;
}
h5{
font-size: 20px;
line-height: 23px;
}
.price .price-new{
font-size: 20px;
line-height: 23px;
}
.price .price-old{
font-size: 13px;
line-height: 15px;
}
.item-body .item-status span{
font-size: 16px;
line-height: 22px;
}
.item-wrapper .item-footer{
height: 61px;
padding: 15px 13px;
}
.item-wrapper .item-footer .bonus-gift p{
font-size: 12px;
}
.btn-seemore span{
font-size: 14px;
line-height: 16px;
}
.footer .list-group .list-group-item{
padding: 7px 10px;
}
.brand-container{
padding: 10px !important;
height: 78px;
}
.slide-text .ic-cricle-right, .slide-text .ic-cricle-right-white{
font-size: 0px;
}
.modal-cart-dialog{
max-width: 90%;
}
}
@media(max-width: 768px){
.slide-text .slide-text-title{
padding: 7px 0px;
}
.slide-text a.seemore{
margin-top: 0px;
}
.footer-sapo{
display: grid;
}
.footer-sapo i{
display: none;
}
.footer .list-group{
flex-direction: inherit;
}
.footer .list-group .list-group-item{
padding: 7px 10px;
}
.info-company-first,.info-company-last{
order: 1;
}
.info-company-mid{
order: 2;
margin-top: 15px;
}
.text-lg-end{
text-align: right!important;
}
.regist{
padding: 0 25px;
}
.footer .mt-5.bg-blue{
margin-top: 10px !important;
}
.footer-title{
margin-top: 18px;
font-size: 20px;
line-height: 160.9%;
}
.footer-sapo,.info-company strong, .info-company li{
font-size: 14px;
line-height: 160.9%;
}
.footer .mt-5.info-company{
margin-top: 0px !important;
}
.body-page.pd0{
padding-top: 0px;
}
.body-page .mt0{
margin-top: 0px !important;
}
.body-page .ft1{
margin-top: 1rem !important;
}
.body-page .ft1,.body-page .ft2{
display: none;
}
.span-footer{
display: none;
}
.brand-container{
padding: 0px !important;
height: 60px;
}
.filter-tablet{
display: block;
}
.modal-dialog {
max-width: 664px;
}
.modal-body .btn.btn-outline-gray {
margin-top: 15px;
margin-right: 15px;
}
.filter-modal-1{
display: flex;
}
.modal-content .filter-modal-1 .filter-modal-last button{
margin-right: 0;
}
.modal-content .filter-modal-1 .filter-modal-last{
text-align: right!important;
}
.modal-content-list{
margin-top: 15px;
background: #EFF3FC;
padding: 15px 15px 9px 15px;
}
.modal-content-list p{
border-bottom: 0.698783px solid #D4D4D4;
}
.modal-content-list .accordion2:after{
content: url("../images/icon/angle-down.png");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.modal-content-list .accordion2.active:after{
content: url("../images/icon/modal-angle-up.png");
float: right;
margin-left: 5px;
transform: scaleY(-1);
}
.modal-footer-btn{
width: 299px;
height: 35px;
flex: none;
order: 0;
flex-grow: 1;
font-size: 12.5781px;
line-height: 15px;
text-transform: uppercase;
color: #2767A5;
background: #EEEEEE;
border: 1px solid #2767A5;
box-sizing: border-box;
}
.modal-footer-fisrt{
background: #2767A5;
color: #FFFFFF;
}
.modal-footer>*{
margin-top: 9px;
}
.modal-footer{
margin-top: 9px;
border-top: 0.698783px solid #D4D4D4;
}
.modal-content-list .input-group input{
color: #2767A5;
}
div#stock-filter2 {
padding: 9px 13px;
width: 181px;
height: 61px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
border-radius: 3px;
}
#modal-filter-2 {
width: 125px;
height: 73px;
background: #FFFFFF;
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
border-radius: 5px;
padding: 12px 16px;
}
.mgl-3 {
margin-left: 1.5rem;
}
.s-flex{
display: flex;
}
.mgl-3 {
margin-left: 0;
right: 0;
}
.mt-0-md{
margin-top: 0px !important;
}
.modal-cart-dialog{
max-width: 80%;
}
.modal-cart-dialog .modal-body{
display: block !important;
}
.modal-cart-dialog .modal-body .mb-left,.modal-cart-dialog .modal-body .mb-right{
width: 100% !important;
margin-left: 0 !important;
margin-bottom: 15px;
}
.modal-total span:last-child{
font-size: 15px;line-height: 18px;
}
.mb-right .info-pay{
width: 55%;
}
.modal-cart-dialog .mb-left .no-cart{
padding: 20%;
margin-top: 0 !important;
}
.banner-recom{
flex-wrap: wrap;
justify-content: center;
}
.banner-recom .item{
width: 80%;
}
.banner-recom .item:first-child{
margin-bottom: 10px;
}
}
@media(max-width: 425px){
.info-company-last.text-lg-end{
text-align: left!important;
}
.info-company-mid .protected{
width: 56px;height: 61px;
}
.regist.protect{
text-align: center;
}
.mb-cart-item-info{
width: 75%;
}
.slide-text .slide-text-intro{
font-size: 12.5585px;
line-height: 15px;
}
.slide-text .slide-text-title{
font-size: 15.0703px;
line-height: 18px;
}
.slide-text .slide-text-sapo{
font-size: 8.16306px;
line-height: 175%;
}
.slide-text a.seemore{
font-size: 7.7175px;
line-height: 9px;
}
ul#footer{
display: block;
margin-bottom: 15px;
}
.footer .list-group .list-group-item {
padding: 5px 10px;
}
ul#footer span {
display: none;
}
.footer .title-info{
display: block;
padding: 10px 20px;
}
.footer .title-info p{
font-weight: bold;
font-size: 16px;
line-height: 180%;
color: #FFFFFF;
margin-bottom: 8px;
}
.filter-modal {
width: 100%;
}
.filter-tablet .btn.btn-outline-gray{
border: 1.5px solid #2767A5;
color: #2767A5;
}
.filter-modal-1{
display: block;
}
.modal-body .btn.btn-outline-gray {
height: 32px;
margin-top: 5px;
margin-right: 5px;
}
.modal-footer-btn {
width: 139px;
}
h4{
font-size: 18px;
line-height: 21px;
}
h5{
font-size: 16px;
line-height: 19px;
}
.view-all{
display: none !important;
}
.all-view{
display: block !important;
text-align: center;
}
.owl-carousel .nav-btn{
top: 70px !important;
}
.slide-text .slide-text-recom{
font-size: 10px;
line-height: 15px;
}
.slide-text .slide-text-price {
font-size: 14px;
line-height: 19px;
}
.slide-text .slide-text-item {
font-size: 15px;
line-height: 20px;
}
.navbar .container-fluid.p-md-0{
padding: 0;
}
input.form-control.me-2{
width: 269.5px;
height: 29.62px;
}
.btn-search{
width: 30px;
height: 30px;
padding: 5px;
}
.result-search{
max-width: 343px;
}
nav .breadcrumb .breadcrumb-item{
font-size: 14px;
line-height: 16px;
}
.main-container nav{
margin-bottom: 16px;
}
.navbar .container-fluid .cart-btn{
width: 35px;
height: 35px;
}
.btn .badge{
position: absolute;
border-radius: 50%;
font-size: 10px;
line-height: 14px;
width: 14px;
height: 14px;
padding: 0px 4px;
top: 13px;
right: 3px;
}
.cart-btn{
padding-left: 0;
}
.form-search-mobile{
margin-top: 0;
}
.slide-text{
padding-left: 20px;
padding-top: 20px;
}
.slide-text a.seemore span{
margin-left: 8px;
padding-top: 4px;
}
.modal-cart-dialog{
max-width: 100%;
}
.mb-right .info-pay{
width: 100%;
}
.mb-left .mb-cart-item{
flex-wrap: wrap;
}
.title-product{
font-size: 13px;
line-height: 150%;
}
.name-search{
font-size: 18px;
line-height: 21px;
}
.top-cate{
font-size: 16px;
line-height: 19px;
}
.breadcrumb-home{
font-size: 14px;
line-height: 16px;
}
ul.pagination li{
margin: 0 3px;
width: 30px;
height: 30px;
}
li.breadcrumb-item.active {
margin-top: 5px;
}
}
@media(max-width: 375px){
.info-company-first{
order: 1;
}
.info-company-last{
order: 2;
}
.info-company-mid{
order: 3;
}
.slide-text{
padding-left: 20px;
padding-top: 5px;
}
.slide-text .slide-text-recom{
margin-bottom: 0px;
}
.owl-carousel .prev-slide, .owl-carousel .next-slide{
right: -35px;
}
.owl-carousel .prev-slide{
left: -35px;
}
}
@media(max-width: 320px){
.slide-text .slide-text-intro,.slide-text .slide-text-recom {
font-size: 10px;
line-height: 10px;
}
.slide-text .slide-text-title {
font-size: 12px;
line-height: 14px;
padding: 4px 0px;
}
.slide-text .slide-text-sapo {
font-size: 8.16306px;
line-height: 10px;
}
.slide-text .slide-text-price {
font-size: 12px;
line-height: 18px;
}
.slide-text .slide-text-item {
font-size: 12px;
line-height: 14px;
}
.owl-carousel .nav-btn {
top: 50px !important;
}
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
@media(min-width: 1521px){
.modal-title-cart,.mb-right .info-cart .info-cart-title{
font-size: 20px;line-height: 23px;
}
.modal-num-item span, .modal-total span,.modal-num-item span:last-child,.mb-right .info-pay .info-pay-deli p{
font-size: 16px;line-height: 19px;
}
.modal-total span:last-child,.info-cart-btn button,.mb-cart-title,.mb-cart-price{
font-size: 18px;
line-height: 21px;
}
.info-cart .modal-cart-vat span{
font-size: 12px;
line-height: 14px;
}
.modal-cart-pay{
font-size: 10px;
line-height: 14px;
}
.mb-right .info-pay .info-pay-deli i{
width: 20px;height: 20px;
}
.mb-cart-gift{
font-size: 14px;
line-height: 150%;
}
.mb-cart-gift i{
width: 15px;height: 15px;
}
.mb-cart-num input,.mb-cart-num input::placeholder{
font-size: 15.2308px;
line-height: 18px;
}
.mb-cart-item-info p{
margin-bottom: 7px;
}
}
| 0.284874 | 0.073863 |
@charset "UTF-8";
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.discoveryResultEntry.bordered {
border: 1px solid #DFDFDF; }
.detailsPopupList {
list-style-type: none;
margin: 0;
padding: 0; }
.discoveryResultEntry {
list-style-type: none;
border-bottom: 1px solid #DFDFDF;
background: white;
padding: 5px;
margin: 5px 0;
max-width: 350px;
position: relative; }
.discoveryResultEntry.bordered {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry.addToCartHidden .discoveryResultEntryAddToCartContainer {
display: none; }
.discoveryResultEntry .boldBig {
font-weight: bold;
font-size: 10pt; }
.discoveryResultEntry .discoveryResultEntryThumb {
height: 60px;
width: 60px;
float: left;
margin-left: 5px;
margin-top: 5px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
display: block; }
.discoveryResultEntry .discoveryResultEntryThumb.noCursor {
cursor: default; }
.discoveryResultEntry .discoveryResultEntryContextMenu {
display: none; }
.discoveryResultEntry .discoveryResultEntryContextClicker {
display: none; }
.discoveryResultEntry .discoveryResultEntryDetailsList {
padding: 0;
display: inline-block;
margin: 0 0 0 10px;
color: #444; }
.discoveryResultEntry .discoveryResultEntryDetailsList li {
margin: 0; }
.discoveryResultEntry.noLabel .discoveryResultEntryContextClicker {
top: 10px; }
.discoveryResultEntryActionsContainer {
width: 100%;
clear: both;
padding-top: 5px;
min-height: 35px; }
.discoveryResultEntryInfoButton.active {
color: blue; }
.discoveryResultEntryDownloadIcon {
float: right; }
.discoveryResultEntryMapImageThumb, .discoveryResultEntryDownloadIcon, .discoveryResultEntryAddToCartContainer, .discoveryResultEntryPreviewContainer, .discoveryResultEntryInfoButton, .discoveryResultEntryRemoveIcon {
padding: 6px;
cursor: pointer;
background: #F8F8FF;
border: 1px solid #DFDFDF;
-webkit-border-radius: 2px 2px 2px 2px;
-moz-border-radius: 2px 2px 2px 2px;
-ms-border-radius: 2px 2px 2px 2px;
border-radius: 2px 2px 2px 2px;
opacity: .6;
margin-right: 10px; }
.discoveryResultEntryMapImageThumb:hover, .discoveryResultEntryDownloadIcon:hover, .discoveryResultEntryAddToCartContainer:hover, .discoveryResultEntryPreviewContainer:hover, .discoveryResultEntryInfoButton:hover, .discoveryResultEntryRemoveIcon:hover {
opacity: .8; }
.discoveryResultEntryMapImageThumb.enabled, .discoveryResultEntryDownloadIcon.enabled, .discoveryResultEntryAddToCartContainer.enabled, .discoveryResultEntryPreviewContainer.enabled, .discoveryResultEntryInfoButton.enabled, .discoveryResultEntryRemoveIcon.enabled {
opacity: 1; }
.discoveryResultEntryMapImageThumb .fa, .discoveryResultEntryDownloadIcon .fa, .discoveryResultEntryAddToCartContainer .fa, .discoveryResultEntryPreviewContainer .fa, .discoveryResultEntryInfoButton .fa, .discoveryResultEntryRemoveIcon .fa {
margin-right: 3px; }
.discoveryResultEntryDownloadableIcon, .discoveryResultEntryPayIcon {
position: absolute;
right: 5px;
top: 5px;
padding: 6px;
width: 25px; }
.discoveryResultEntryDownloadableIcon.fa-usd, .discoveryResultEntryPayIcon.fa-usd {
padding-left: 7px; }
.discoveryResultEntryAddToCartContainer, .discoveryResultEntryRemoveIcon {
float: right; }
.discoveryResultEntryInfoButton, .discoveryResultEntryPreviewContainer, .discoveryResultEntryMapImageThumb {
float: left; }
.discoveryResultEntryInfoButton.active, .discoveryResultEntryPreviewContainer.active, .discoveryResultEntryAddToCartContainer.active {
background: #485566;
color: white;
opacity: 1.0;
border: 1px solid #485566; }
.discoveryResultEntryRemoveIcon {
background: white; }
.discoveryResultEntryRemoveIcon:hover {
color: red; }
.discoveryResultEntryPreviewIcon {
font-size: 11pt;
vertical-align: middle; }
.discoveryResultEntryDownloadSize {
font-size: 8pt;
margin-left: 5px;
color: #ADADAD; }
.discoveryResultEntryDownloadContainer {
text-align: right;
margin-right: 5px;
margin-top: 7px; }
.discoveryResultEntryDownloadContainer .fa {
margin-right: 5px; }
.discoveryResultEntryDownloadContainer .linkEntry {
text-decoration: underline;
cursor: pointer;
margin: 0 3px; }
.discoveryResultEntryDownloadContainer .linkEntry:hover {
color: blue; }
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 <NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); } }
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); } }
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp; }
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@-webkit-keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut; }
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown; }
.imageDiscoverySearchFilter {
margin-top: 20px; }
.imageDiscoverySearchFilter .dijitArrowButtonInner {
width: 28px;
height: 28px !important; }
.imageDiscoverySearchFilter .searchFilterLabel {
margin-bottom: 5px; }
.imageDiscoverySearchFilter .searchFilterLabel .icon {
margin-right: 5px; }
.imageDiscoverySearchFilter .startDateContainer {
margin-left: 3%; }
.imageDiscoverySearchFilter .startDateContainer, .imageDiscoverySearchFilter .endDateContainer {
width: 47%;
display: inline-block; }
.imageDiscoverySearchFilter .cloudCoverFilter {
width: 75%;
margin-left: 12.5%;
margin-top: 10px; }
.imageDiscoverySearchFilter .searchFilter .dijitArrowButtonInner, .imageDiscoverySearchFilter .searchFilter .dijitArrowButtonContainer {
width: 20px !important; }
.imageDiscoverySearchFilter .searchFilter .dijitArrowButtonInner {
padding: 6px 7px !important; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.reportingUserDrawIconContainer {
height: 32px;
width: 32px;
float: right;
margin-top: -5px; }
.pdfExportTitleEntry {
margin-bottom: 7px; }
.reportTypeSelect {
margin-bottom: 10pt; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.portalLoginClickContent {
position: absolute;
right: 0;
height: 20px;
margin-right: 20px;
cursor: pointer;
text-decoration: underline; }
.portalAccountLockIcon {
display: inline-block; }
.portalWebMapPublishTextBox {
width: 80%; }
.portalUploadFormContainer {
min-height: 210px; }
.portalUploadButtonContainer, .portalSubmitShareButtonContainer {
margin: 10px;
float: right; }
.portalGroupShareList {
list-style-type: none; }
.portalPublishShareWithLabel {
margin-bottom: 5px; }
.portalUploadFolderSelect {
width: 83%; }
.publishToPortalUrlLabel {
float: left; }
.portalPublisherActionsContent {
height: 20px; }
.portalUploadFormContainer .dijitSelect {
width: 81%; }
.portalUploadFormContainer .dijitSelect .dijitDownArrowButton {
width: 20px; }
.portalPublisherLoggedOutContent {
width: 100%;
text-align: center;
font-size: 12pt;
color: blue;
text-decoration: underline;
opacity: 0.4;
cursor: pointer;
margin: 20px auto auto; }
.portalPublisherLoggedOutContent:hover {
opacity: 0.7; }
.portalPublisherLoggedOutContent.enabled {
opacity: 1; }
.portalUploadSuccessContainer .fa {
margin-right: 2px; }
.portalUploadViewItemLink {
text-align: center;
color: blue;
text-decoration: underline;
cursor: pointer;
opacity: 0.6;
font-size: 11pt;
margin: 25px auto auto; }
.portalUploadViewItemLink:hover {
opacity: 0.8; }
.portalUploadViewItemLink.enabled {
opacity: 1; }
.portalPublisherThrobber {
position: absolute;
top: 10px;
right: 10px; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.downloadListWidgetContainer {
height: 95%;
overflow: auto;
margin-top: 10px; }
.downloadListThrobber {
position: absolute;
right: 10px;
top: 10px; }
.imageExportUserDrawRectangleButton {
vertical-align: middle;
float: right;
margin-right: 10%; }
.imageryDownloadUserDrawIconContainer {
height: 32px;
width: 32px;
float: right;
margin-right: 10px;
margin-top: -5px; }
.imageryDownloadLinkList {
list-style-type: none;
background: white;
border: 1px solid #DFDFDF;
margin: 5px 0 0;
padding: 0; }
.imageryDownloadLinkList li {
padding: 3px; }
.imageryDownloadListContainer {
overflow: auto; }
.exportDownloadListSizeValue {
font-size: 8pt;
color: black;
margin-left: 3px; }
.downloadServiceEntry {
margin: 5px 3px; }
.imageryDownloadAllContainer, .imageryDownloadAllLink {
height: 35px; }
.imageryDownloadAllContainer, .imageryDownloadAllLink {
color: blue;
text-decoration: underline;
cursor: pointer; }
.imageryDownloadAllInFlightText {
margin-left: 5px;
line-height: 30px;
color: blue;
position: absolute;
left: 55px; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer, .imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadDetailsContainer {
border: 1px solid #DFDFDF; }
.cartCheckoutStatusModalUnderlay {
height: 100%;
width: 100%;
background: black;
position: absolute;
z-index: 4005;
top: 0;
left: 0;
opacity: .7; }
.cartCheckoutStatusModalUnderlay.hidden, .cartCheckoutStatusModalUnderlay .hidden {
display: none; }
.imageDiscoveryCartCheckoutWidget {
width: 60%;
height: 70%;
top: 10%;
left: 20%;
background: white;
z-index: 4006;
position: absolute;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
border: 1px #dfdfdf; }
.imageDiscoveryCartCheckoutWidget.hidden, .imageDiscoveryCartCheckoutWidget .hidden {
display: none; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer {
width: 97%;
height: 70%;
margin-left: 1.5%;
margin-top: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
-ms-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
cursor: pointer;
background: ghostwhite;
height: 20px;
padding: 5px;
border: 1px solid #DFDFDF;
border-bottom: 0;
opacity: 0.4; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab:hover {
opacity: 0.7; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab.enabled {
opacity: 1; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab.selected {
border-bottom-width: 1px; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabContentContainer {
position: relative;
min-height: 225px;
width: 98%;
height: 100%;
margin-top: 5px;
border: 1px solid #DFDFDF;
background: ghostwhite; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabContentContainer .checkoutWidgetTabContent {
padding: 10px;
height: 90%; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon {
float: right;
cursor: pointer;
opacity: 0.6;
font-size: 12pt;
color: gray;
margin-top: -10px;
margin-right: 25px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon:hover {
opacity: 0.9; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon.enabled {
opacity: 1; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer {
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
background: white;
width: 38%;
margin-left: 1%;
height: 70%;
margin-top: 2.5%;
overflow: auto;
padding: 0 10px; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer .fa {
margin-right: 5px;
font-size: 13pt;
color: #0C070E; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusCloseButton {
float: right;
margin-right: 20px;
width: 100px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusCloseButton.errorState {
background: red; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageContainerHeader {
font-size: 12pt;
padding-top: 5px;
text-align: center; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList {
color: gray;
padding: 5px;
margin: 5px 0 0; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList li {
margin: 10px 0; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList li .bottomBordered {
padding-bottom: 5px;
border-bottom: 1px dashed gray;
padding-top: 5px;
height: 30px;
font-weight: bold; }
.imageDiscoveryCartCheckoutWidget .checkoutCompleteContainer {
font-size: 14pt;
color: blue;
text-align: center;
height: 50px;
margin-top: 10px; }
.imageDiscoveryCartCheckoutWidget .progressBarOuterContainer {
width: 40%;
margin-left: 60%; }
.imageDiscoveryCartCheckoutWidget .progressBarOuterContainer .dijitProgressBarEmpty {
overflow: visible; }
.imageDiscoveryCartCheckoutWidget .orderReviewContainer {
overflow: auto;
height: 90%;
max-width: 500px;
padding: 0 5px; }
.imageDiscoveryCartCheckoutWidget .orderReviewContainer .orderReviewHeader {
margin: 10px 0;
font-size: 12pt; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer {
text-align: right;
width: 90%;
margin-top: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer .cancelCheckoutButton {
background: #D80000;
margin-right: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer .checkoutActionButtonContainer {
height: 50px;
padding-top: 5px; }
.imageDiscoveryCartCheckoutWidget .checkoutOuterContainer {
border: 1px solid #ededed;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
background: #FBFBFB;
position: relative;
height: 100%; }
.imageDiscoveryCartCheckoutWidget .checkoutContent {
height: 75%;
width: 100%;
padding: 1%; }
.imageDiscoveryCartCheckoutWidget .checkoutTallyContainer {
height: 90%;
width: 55%;
float: left;
overflow: auto;
overflow-x: hidden; }
.imageDiscoveryCartCheckoutWidget .checkoutTallyContainer .checkoutTotalItemsContainer {
color: gray; }
.imageDiscoveryCartCheckoutWidget .downloadConfirmationHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutTotalCostContainer {
font-size: 11pt;
margin-right: 5px;
margin-bottom: 15px;
background: white;
border: 1px solid #DFDFDF;
padding: 5px;
border-left: 0;
margin-left: -1px; }
.imageDiscoveryCartCheckoutWidget .checkoutTotalArea {
margin-right: 30px; }
.imageDiscoveryCartCheckoutWidget .checkoutOrderReferenceContainer {
float: left;
margin-left: 30px;
text-align: left; }
.imageDiscoveryCartCheckoutWidget .startCheckoutButton {
min-width: 155px; }
.imageDiscoveryCartCheckoutWidget .startCheckoutButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCartCheckoutWidget .nameYourOrderLabel {
font-size: 9pt;
color: gray;
margin-bottom: 3px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer {
float: right;
height: 100%;
width: 44%;
margin-right: 1%; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadDetailsContainer {
margin-top: 10px;
background: white;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
color: gray;
padding: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer {
cursor: pointer;
font-size: 13pt;
margin-right: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer i {
margin-right: 3px;
font-size: 40pt; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer:hover {
color: blue; }
.esriOAuthSignInDialog {
z-index: 9999 !important; }
.portalPublisherLabel {
margin: 8px 0;
color: #514E4E; }
.publicShareContainer {
margin-bottom: 5px; }
.portalSaveButton {
width: 70px;
margin-top: 10px; }
.portalSaveButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imagerySearchSourcesWidget {
padding: 5px;
background: #F8F8FF;
border: 1px solid #DFDFDF; }
.imagerySearchSourcesListEntry {
cursor: pointer;
margin: 5px 0; }
.imagerySearchSourcesListEntry .fa {
min-width: 15px;
color: blue; }
.imagerySearchSourcesListEntry .fa.red {
color: red; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageDiscoveryResultEntriesFilterContainer .smallText {
font-size: 8pt; }
.imageDiscoveryResultEntriesFilterContainer .resultTypeFilter {
position: absolute;
right: 0;
top: 20px;
width: 52%; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter {
margin-bottom: 10px; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter.cloudCoverFilter .cloudCoverSliderContainer {
margin-top: 10px; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter.cartResultFilter {
border-bottom: 1px dashed #DFDFDF;
padding-bottom: 10px; }
.imageDiscoveryResultEntriesFilterContainer .dateFilterValuesContainer {
margin-bottom: 5px; }
.imageDiscoveryResultEntriesFilterContainer .dateFilterValuesContainer .dateRangeLabel {
margin-bottom: 3px; }
.imageDiscoveryResultEntriesFilterContainer .cloudCoverSliderValueContainer {
float: right;
width: 25px; }
.imageDiscoveryResultEntriesFilterContainer .clearPreviewsContainer {
border-top: 1px dashed #DFDFDF;
padding-top: 5px;
cursor: pointer;
text-align: right;
color: blue; }
.imageDiscoveryResultEntriesFilterContainer .clearPreviewsContainer:hover {
text-decoration: underline; }
.imageDiscoveryResultEntriesFilterContainer .noDashedBorder .clearPreviewsContainer, .imageDiscoveryResultEntriesFilterContainer .noDashedBorder .cartResultFilter {
border-bottom: 0; }
.imageDiscoveryResultEntriesFilterContainer .iconPlatformFilterEntryContainer {
margin: 5px 0;
color: gray; }
.imageDiscoveryResultEntriesFilterContainer .iconPlatformFilterEntryContainer input {
vertical-align: middle;
margin-right: 5px; }
.imageDiscoveryResultEntriesSortContainer .imageDiscoveryResultEntriesSortLabel {
font-size: 8pt; }
.imageDiscoveryResultEntriesSortContainer .dijitSelect {
margin-top: 3px;
width: 90%;
background: white;
margin-left: 10px;
min-width: 14em; }
.imageDiscoveryResultEntriesSortContainer .dijitSelect .dijitArrowButtonContainer {
width: 25px; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.dojoDndAvatarHeader {
display: none; }
.reorderPreviewThumbContainer {
margin: auto;
text-align: center;
position: relative; }
.reorderPreviewThumbContainer .reorderArrow {
position: absolute;
left: -7px;
top: -8px;
color: #485566; }
.reorderPreviewThumbContainer .reorderArrow:hover {
color: blue; }
.reorderPreviewThumbContainer .reorderCart {
display: block;
padding: 2px;
color: blue;
cursor: pointer; }
.reorderPreviewThumbContainer .reorderCart.remove {
color: red; }
.reorderPreviewThumbContainer .removeIcon {
position: absolute;
right: 8px;
bottom: 7px;
font-size: 11pt;
z-index: 1;
color: #D80000;
opacity: 0.4; }
.reorderPreviewThumbContainer .removeIcon:hover {
opacity: 0.6; }
.reorderPreviewThumbContainer .removeIcon.enabled {
opacity: 1; }
.reorderPreviewThumbContainer .reorderPreviewActionsContainer {
position: absolute;
left: 8px;
bottom: 5px;
z-index: 1; }
.reorderPreviewThumbContainer .reorderPreviewSensorLabel {
font-size: 8pt;
margin-bottom: 2px; }
.reorderPreviewThumbOuter {
position: relative;
background: #F8F8FF;
padding: 5px;
margin: 5px;
border: 1px solid #DFDFDF;
cursor: move;
opacity: .8; }
.reorderPreviewThumb {
width: 90px;
height: 90px; }
.reorderPreviewPopoutContainer {
padding: 5px !important;
max-height: 60%;
overflow: auto;
width: 100%; }
.reorderPreviewPopoutContainer .dojoDndItem, .reorderPreviewPopoutContainer .dojoDndItemOver {
background: none;
padding: 0;
margin: 0; }
.reorderPreviewPopoutContainer .dojoDndItem {
border: 1px solid white; }
.reorderPreviewPopoutContainer .dojoDndItemOver {
border: 1px solid white; }
.reorderPreviewPopoutContainer .dojoDndItemOver .reorderPreviewThumbOuter {
opacity: 1; }
.reorderPreviewPopoutContainer .reorderPreviewLoadingSpinnerContainerOuter {
width: 90%;
height: 20px;
color: #328AE7; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageAnalysisWidget {
width: 90%;
margin-left: 5%;
padding: 5%; }
.imageAnalysisEntry {
margin: 10px 0; }
.analysisLayerWidgetContainer {
margin-bottom: 10px;
border-top: 0; }
.analysisLabel {
color: gray;
margin: 5px 0; }
.bandReorderBandIndexLbl {
color: gray;
margin-right: 3px; }
.bandReorderEntry {
margin: 5px 0; }
.bandReorderApplyButton, .bandReorderClearButton {
width: 40%;
font-size: 10pt !important;
display: inline-block; }
.bandReorderApplyButton {
float: right; }
.bandReorderClearButton {
float: left; }
.bandWidgetButtonContainer {
width: 80%;
margin-left: 10%;
height: 30px;
margin-top: 10px; }
.imageAnalysisTabContainer {
width: 97%;
height: 80%;
margin-left: 1.5%; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
-ms-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
cursor: pointer;
background: ghostwhite;
height: 20px;
padding: 5px;
border: 1px solid #DFDFDF;
border-bottom: 0;
opacity: 0.4; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab:hover {
opacity: 0.7; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab.enabled {
opacity: 1; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab.selected {
border-bottom-width: 1px; }
.imageAnalysisTabContent {
border: 1px solid #DFDFDF;
padding: 10px;
margin-top: 5px; }
.imageAnalysisTabContent.noBorder {
border: 0; }
.discoveryPopoutContainer {
-webkit-box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2);
box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2); }
.discoveryOverlayContainer {
position: absolute;
top: 45px;
width: 100%; }
.discoveryPopoutContainer {
background: white;
border-radius: 3px 0 0 3px;
border: 1px solid #DFDFDF;
padding: 10px; }
.discoveryPopoutContainer.hidden, .discoveryPopoutContainer .hidden {
display: none; }
.imageDiscoveryResultsWidget {
height: 100%; }
.imageDiscoveryResultsWidget .toggleFilterVisibilityContainer {
cursor: pointer; }
.imageDiscoveryResultsWidget .resultEntriesContainer {
height: 98%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid {
border: 0;
height: 95%;
width: 100%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid .dgrid-content {
height: 93%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid .dgrid-scroller {
margin-top: 0; }
.resultConfigureContainer {
margin-bottom: 5px; }
.resultConfigureContainer i {
font-size: 14pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: white;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.resultConfigureContainer i.active {
color: #FFEF00; }
.resultConfigureContainer i.clearResultsIcon {
background: #D80000;
float: right;
padding: 5px 0;
text-align: center; }
.noSearchResultsMessage {
color: #FFF;
background-color: #5E7A83;
border-color: gray;
padding: 20px;
font-size: 11pt;
margin-top: 15%;
border-radius: 3px 3px 3px 3px; }
/*!
* 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
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url("./font/fonts/fontawesome-webfont.eot?v=4.0.3");
src: url("./font/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("./font/fonts/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("./font/fonts/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("./font/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
font-weight: normal;
font-style: normal; }
.fa {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333em;
line-height: 0.75em;
vertical-align: -15%; }
.fa-2x {
font-size: 2em; }
.fa-3x {
font-size: 3em; }
.fa-4x {
font-size: 4em; }
.fa-5x {
font-size: 5em; }
.fa-fw {
width: 1.28571em;
text-align: center; }
.fa-ul {
padding-left: 0;
margin-left: 2.14286em;
list-style-type: none; }
.fa-ul > li {
position: relative; }
.fa-li {
position: absolute;
left: -2.14286em;
width: 2.14286em;
top: 0.14286em;
text-align: center; }
.fa-li.fa-lg {
left: -1.85714em; }
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eee;
border-radius: .1em; }
.pull-right {
float: right; }
.pull-left {
float: left; }
.fa.pull-left {
margin-right: .3em; }
.fa.pull-right {
margin-left: .3em; }
.fa-spin {
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear; }
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg); }
100% {
-moz-transform: rotate(359deg); } }
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(359deg); } }
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg); }
100% {
-o-transform: rotate(359deg); } }
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg); }
100% {
-ms-transform: rotate(359deg); } }
@keyframes spin {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(359deg); } }
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg); }
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg); }
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg); }
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1); }
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1); }
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle; }
.fa-stack-1x, .fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center; }
.fa-stack-1x {
line-height: inherit; }
.fa-stack-2x {
font-size: 2em; }
.fa-inverse {
color: #fff; }
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: ""; }
.fa-music:before {
content: ""; }
.fa-search:before {
content: ""; }
.fa-envelope-o:before {
content: ""; }
.fa-heart:before {
content: ""; }
.fa-star:before {
content: ""; }
.fa-star-o:before {
content: ""; }
.fa-user:before {
content: ""; }
.fa-film:before {
content: ""; }
.fa-th-large:before {
content: ""; }
.fa-th:before {
content: ""; }
.fa-th-list:before {
content: ""; }
.fa-check:before {
content: ""; }
.fa-times:before {
content: ""; }
.fa-search-plus:before {
content: ""; }
.fa-search-minus:before {
content: ""; }
.fa-power-off:before {
content: ""; }
.fa-signal:before {
content: ""; }
.fa-gear:before,
.fa-cog:before {
content: ""; }
.fa-trash-o:before {
content: ""; }
.fa-home:before {
content: ""; }
.fa-file-o:before {
content: ""; }
.fa-clock-o:before {
content: ""; }
.fa-road:before {
content: ""; }
.fa-download:before {
content: ""; }
.fa-arrow-circle-o-down:before {
content: ""; }
.fa-arrow-circle-o-up:before {
content: ""; }
.fa-inbox:before {
content: ""; }
.fa-play-circle-o:before {
content: ""; }
.fa-rotate-right:before,
.fa-repeat:before {
content: ""; }
.fa-refresh:before {
content: ""; }
.fa-list-alt:before {
content: ""; }
.fa-lock:before {
content: ""; }
.fa-flag:before {
content: ""; }
.fa-headphones:before {
content: ""; }
.fa-volume-off:before {
content: ""; }
.fa-volume-down:before {
content: ""; }
.fa-volume-up:before {
content: ""; }
.fa-qrcode:before {
content: ""; }
.fa-barcode:before {
content: ""; }
.fa-tag:before {
content: ""; }
.fa-tags:before {
content: ""; }
.fa-book:before {
content: ""; }
.fa-bookmark:before {
content: ""; }
.fa-print:before {
content: ""; }
.fa-camera:before {
content: ""; }
.fa-font:before {
content: ""; }
.fa-bold:before {
content: ""; }
.fa-italic:before {
content: ""; }
.fa-text-height:before {
content: ""; }
.fa-text-width:before {
content: ""; }
.fa-align-left:before {
content: ""; }
.fa-align-center:before {
content: ""; }
.fa-align-right:before {
content: ""; }
.fa-align-justify:before {
content: ""; }
.fa-list:before {
content: ""; }
.fa-dedent:before,
.fa-outdent:before {
content: ""; }
.fa-indent:before {
content: ""; }
.fa-video-camera:before {
content: ""; }
.fa-picture-o:before {
content: ""; }
.fa-pencil:before {
content: ""; }
.fa-map-marker:before {
content: ""; }
.fa-adjust:before {
content: ""; }
.fa-tint:before {
content: ""; }
.fa-edit:before,
.fa-pencil-square-o:before {
content: ""; }
.fa-share-square-o:before {
content: ""; }
.fa-check-square-o:before {
content: ""; }
.fa-arrows:before {
content: ""; }
.fa-step-backward:before {
content: ""; }
.fa-fast-backward:before {
content: ""; }
.fa-backward:before {
content: ""; }
.fa-play:before {
content: ""; }
.fa-pause:before {
content: ""; }
.fa-stop:before {
content: ""; }
.fa-forward:before {
content: ""; }
.fa-fast-forward:before {
content: ""; }
.fa-step-forward:before {
content: ""; }
.fa-eject:before {
content: ""; }
.fa-chevron-left:before {
content: ""; }
.fa-chevron-right:before {
content: ""; }
.fa-plus-circle:before {
content: ""; }
.fa-minus-circle:before {
content: ""; }
.fa-times-circle:before {
content: ""; }
.fa-check-circle:before {
content: ""; }
.fa-question-circle:before {
content: ""; }
.fa-info-circle:before {
content: ""; }
.fa-crosshairs:before {
content: ""; }
.fa-times-circle-o:before {
content: ""; }
.fa-check-circle-o:before {
content: ""; }
.fa-ban:before {
content: ""; }
.fa-arrow-left:before {
content: ""; }
.fa-arrow-right:before {
content: ""; }
.fa-arrow-up:before {
content: ""; }
.fa-arrow-down:before {
content: ""; }
.fa-mail-forward:before,
.fa-share:before {
content: ""; }
.fa-expand:before {
content: ""; }
.fa-compress:before {
content: ""; }
.fa-plus:before {
content: ""; }
.fa-minus:before {
content: ""; }
.fa-asterisk:before {
content: ""; }
.fa-exclamation-circle:before {
content: ""; }
.fa-gift:before {
content: ""; }
.fa-leaf:before {
content: ""; }
.fa-fire:before {
content: ""; }
.fa-eye:before {
content: ""; }
.fa-eye-slash:before {
content: ""; }
.fa-warning:before,
.fa-exclamation-triangle:before {
content: ""; }
.fa-plane:before {
content: ""; }
.fa-calendar:before {
content: ""; }
.fa-random:before {
content: ""; }
.fa-comment:before {
content: ""; }
.fa-magnet:before {
content: ""; }
.fa-chevron-up:before {
content: ""; }
.fa-chevron-down:before {
content: ""; }
.fa-retweet:before {
content: ""; }
.fa-shopping-cart:before {
content: ""; }
.fa-folder:before {
content: ""; }
.fa-folder-open:before {
content: ""; }
.fa-arrows-v:before {
content: ""; }
.fa-arrows-h:before {
content: ""; }
.fa-bar-chart-o:before {
content: ""; }
.fa-twitter-square:before {
content: ""; }
.fa-facebook-square:before {
content: ""; }
.fa-camera-retro:before {
content: ""; }
.fa-key:before {
content: ""; }
.fa-gears:before,
.fa-cogs:before {
content: ""; }
.fa-comments:before {
content: ""; }
.fa-thumbs-o-up:before {
content: ""; }
.fa-thumbs-o-down:before {
content: ""; }
.fa-star-half:before {
content: ""; }
.fa-heart-o:before {
content: ""; }
.fa-sign-out:before {
content: ""; }
.fa-linkedin-square:before {
content: ""; }
.fa-thumb-tack:before {
content: ""; }
.fa-external-link:before {
content: ""; }
.fa-sign-in:before {
content: ""; }
.fa-trophy:before {
content: ""; }
.fa-github-square:before {
content: ""; }
.fa-upload:before {
content: ""; }
.fa-lemon-o:before {
content: ""; }
.fa-phone:before {
content: ""; }
.fa-square-o:before {
content: ""; }
.fa-bookmark-o:before {
content: ""; }
.fa-phone-square:before {
content: ""; }
.fa-twitter:before {
content: ""; }
.fa-facebook:before {
content: ""; }
.fa-github:before {
content: ""; }
.fa-unlock:before {
content: ""; }
.fa-credit-card:before {
content: ""; }
.fa-rss:before {
content: ""; }
.fa-hdd-o:before {
content: ""; }
.fa-bullhorn:before {
content: ""; }
.fa-bell:before {
content: ""; }
.fa-certificate:before {
content: ""; }
.fa-hand-o-right:before {
content: ""; }
.fa-hand-o-left:before {
content: ""; }
.fa-hand-o-up:before {
content: ""; }
.fa-hand-o-down:before {
content: ""; }
.fa-arrow-circle-left:before {
content: ""; }
.fa-arrow-circle-right:before {
content: ""; }
.fa-arrow-circle-up:before {
content: ""; }
.fa-arrow-circle-down:before {
content: ""; }
.fa-globe:before {
content: ""; }
.fa-wrench:before {
content: ""; }
.fa-tasks:before {
content: ""; }
.fa-filter:before {
content: ""; }
.fa-briefcase:before {
content: ""; }
.fa-arrows-alt:before {
content: ""; }
.fa-group:before,
.fa-users:before {
content: ""; }
.fa-chain:before,
.fa-link:before {
content: ""; }
.fa-cloud:before {
content: ""; }
.fa-flask:before {
content: ""; }
.fa-cut:before,
.fa-scissors:before {
content: ""; }
.fa-copy:before,
.fa-files-o:before {
content: ""; }
.fa-paperclip:before {
content: ""; }
.fa-save:before,
.fa-floppy-o:before {
content: ""; }
.fa-square:before {
content: ""; }
.fa-bars:before {
content: ""; }
.fa-list-ul:before {
content: ""; }
.fa-list-ol:before {
content: ""; }
.fa-strikethrough:before {
content: ""; }
.fa-underline:before {
content: ""; }
.fa-table:before {
content: ""; }
.fa-magic:before {
content: ""; }
.fa-truck:before {
content: ""; }
.fa-pinterest:before {
content: ""; }
.fa-pinterest-square:before {
content: ""; }
.fa-google-plus-square:before {
content: ""; }
.fa-google-plus:before {
content: ""; }
.fa-money:before {
content: ""; }
.fa-caret-down:before {
content: ""; }
.fa-caret-up:before {
content: ""; }
.fa-caret-left:before {
content: ""; }
.fa-caret-right:before {
content: ""; }
.fa-columns:before {
content: ""; }
.fa-unsorted:before,
.fa-sort:before {
content: ""; }
.fa-sort-down:before,
.fa-sort-asc:before {
content: ""; }
.fa-sort-up:before,
.fa-sort-desc:before {
content: ""; }
.fa-envelope:before {
content: ""; }
.fa-linkedin:before {
content: ""; }
.fa-rotate-left:before,
.fa-undo:before {
content: ""; }
.fa-legal:before,
.fa-gavel:before {
content: ""; }
.fa-dashboard:before,
.fa-tachometer:before {
content: ""; }
.fa-comment-o:before {
content: ""; }
.fa-comments-o:before {
content: ""; }
.fa-flash:before,
.fa-bolt:before {
content: ""; }
.fa-sitemap:before {
content: ""; }
.fa-umbrella:before {
content: ""; }
.fa-paste:before,
.fa-clipboard:before {
content: ""; }
.fa-lightbulb-o:before {
content: ""; }
.fa-exchange:before {
content: ""; }
.fa-cloud-download:before {
content: ""; }
.fa-cloud-upload:before {
content: ""; }
.fa-user-md:before {
content: ""; }
.fa-stethoscope:before {
content: ""; }
.fa-suitcase:before {
content: ""; }
.fa-bell-o:before {
content: ""; }
.fa-coffee:before {
content: ""; }
.fa-cutlery:before {
content: ""; }
.fa-file-text-o:before {
content: ""; }
.fa-building-o:before {
content: ""; }
.fa-hospital-o:before {
content: ""; }
.fa-ambulance:before {
content: ""; }
.fa-medkit:before {
content: ""; }
.fa-fighter-jet:before {
content: ""; }
.fa-beer:before {
content: ""; }
.fa-h-square:before {
content: ""; }
.fa-plus-square:before {
content: ""; }
.fa-angle-double-left:before {
content: ""; }
.fa-angle-double-right:before {
content: ""; }
.fa-angle-double-up:before {
content: ""; }
.fa-angle-double-down:before {
content: ""; }
.fa-angle-left:before {
content: ""; }
.fa-angle-right:before {
content: ""; }
.fa-angle-up:before {
content: ""; }
.fa-angle-down:before {
content: ""; }
.fa-desktop:before {
content: ""; }
.fa-laptop:before {
content: ""; }
.fa-tablet:before {
content: ""; }
.fa-mobile-phone:before,
.fa-mobile:before {
content: ""; }
.fa-circle-o:before {
content: ""; }
.fa-quote-left:before {
content: ""; }
.fa-quote-right:before {
content: ""; }
.fa-spinner:before {
content: ""; }
.fa-circle:before {
content: ""; }
.fa-mail-reply:before,
.fa-reply:before {
content: ""; }
.fa-github-alt:before {
content: ""; }
.fa-folder-o:before {
content: ""; }
.fa-folder-open-o:before {
content: ""; }
.fa-smile-o:before {
content: ""; }
.fa-frown-o:before {
content: ""; }
.fa-meh-o:before {
content: ""; }
.fa-gamepad:before {
content: ""; }
.fa-keyboard-o:before {
content: ""; }
.fa-flag-o:before {
content: ""; }
.fa-flag-checkered:before {
content: ""; }
.fa-terminal:before {
content: ""; }
.fa-code:before {
content: ""; }
.fa-reply-all:before {
content: ""; }
.fa-mail-reply-all:before {
content: ""; }
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: ""; }
.fa-location-arrow:before {
content: ""; }
.fa-crop:before {
content: ""; }
.fa-code-fork:before {
content: ""; }
.fa-unlink:before,
.fa-chain-broken:before {
content: ""; }
.fa-question:before {
content: ""; }
.fa-info:before {
content: ""; }
.fa-exclamation:before {
content: ""; }
.fa-superscript:before {
content: ""; }
.fa-subscript:before {
content: ""; }
.fa-eraser:before {
content: ""; }
.fa-puzzle-piece:before {
content: ""; }
.fa-microphone:before {
content: ""; }
.fa-microphone-slash:before {
content: ""; }
.fa-shield:before {
content: ""; }
.fa-calendar-o:before {
content: ""; }
.fa-fire-extinguisher:before {
content: ""; }
.fa-rocket:before {
content: ""; }
.fa-maxcdn:before {
content: ""; }
.fa-chevron-circle-left:before {
content: ""; }
.fa-chevron-circle-right:before {
content: ""; }
.fa-chevron-circle-up:before {
content: ""; }
.fa-chevron-circle-down:before {
content: ""; }
.fa-html5:before {
content: ""; }
.fa-css3:before {
content: ""; }
.fa-anchor:before {
content: ""; }
.fa-unlock-alt:before {
content: ""; }
.fa-bullseye:before {
content: ""; }
.fa-ellipsis-h:before {
content: ""; }
.fa-ellipsis-v:before {
content: ""; }
.fa-rss-square:before {
content: ""; }
.fa-play-circle:before {
content: ""; }
.fa-ticket:before {
content: ""; }
.fa-minus-square:before {
content: ""; }
.fa-minus-square-o:before {
content: ""; }
.fa-level-up:before {
content: ""; }
.fa-level-down:before {
content: ""; }
.fa-check-square:before {
content: ""; }
.fa-pencil-square:before {
content: ""; }
.fa-external-link-square:before {
content: ""; }
.fa-share-square:before {
content: ""; }
.fa-compass:before {
content: ""; }
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: ""; }
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: ""; }
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: ""; }
.fa-euro:before,
.fa-eur:before {
content: ""; }
.fa-gbp:before {
content: ""; }
.fa-dollar:before,
.fa-usd:before {
content: ""; }
.fa-rupee:before,
.fa-inr:before {
content: ""; }
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: ""; }
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: ""; }
.fa-won:before,
.fa-krw:before {
content: ""; }
.fa-bitcoin:before,
.fa-btc:before {
content: ""; }
.fa-file:before {
content: ""; }
.fa-file-text:before {
content: ""; }
.fa-sort-alpha-asc:before {
content: ""; }
.fa-sort-alpha-desc:before {
content: ""; }
.fa-sort-amount-asc:before {
content: ""; }
.fa-sort-amount-desc:before {
content: ""; }
.fa-sort-numeric-asc:before {
content: ""; }
.fa-sort-numeric-desc:before {
content: ""; }
.fa-thumbs-up:before {
content: ""; }
.fa-thumbs-down:before {
content: ""; }
.fa-youtube-square:before {
content: ""; }
.fa-youtube:before {
content: ""; }
.fa-xing:before {
content: ""; }
.fa-xing-square:before {
content: ""; }
.fa-youtube-play:before {
content: ""; }
.fa-dropbox:before {
content: ""; }
.fa-stack-overflow:before {
content: ""; }
.fa-instagram:before {
content: ""; }
.fa-flickr:before {
content: ""; }
.fa-adn:before {
content: ""; }
.fa-bitbucket:before {
content: ""; }
.fa-bitbucket-square:before {
content: ""; }
.fa-tumblr:before {
content: ""; }
.fa-tumblr-square:before {
content: ""; }
.fa-long-arrow-down:before {
content: ""; }
.fa-long-arrow-up:before {
content: ""; }
.fa-long-arrow-left:before {
content: ""; }
.fa-long-arrow-right:before {
content: ""; }
.fa-apple:before {
content: ""; }
.fa-windows:before {
content: ""; }
.fa-android:before {
content: ""; }
.fa-linux:before {
content: ""; }
.fa-dribbble:before {
content: ""; }
.fa-skype:before {
content: ""; }
.fa-foursquare:before {
content: ""; }
.fa-trello:before {
content: ""; }
.fa-female:before {
content: ""; }
.fa-male:before {
content: ""; }
.fa-gittip:before {
content: ""; }
.fa-sun-o:before {
content: ""; }
.fa-moon-o:before {
content: ""; }
.fa-archive:before {
content: ""; }
.fa-bug:before {
content: ""; }
.fa-vk:before {
content: ""; }
.fa-weibo:before {
content: ""; }
.fa-renren:before {
content: ""; }
.fa-pagelines:before {
content: ""; }
.fa-stack-exchange:before {
content: ""; }
.fa-arrow-circle-o-right:before {
content: ""; }
.fa-arrow-circle-o-left:before {
content: ""; }
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: ""; }
.fa-dot-circle-o:before {
content: ""; }
.fa-wheelchair:before {
content: ""; }
.fa-vimeo-square:before {
content: ""; }
.fa-turkish-lira:before,
.fa-try:before {
content: ""; }
.fa-plus-square-o:before {
content: ""; }
.esriSignInDialog {
z-index: 9999 !important; }
.dijitTooltipDialogPopup {
z-index: 5000 !important; }
.dijitTooltip, .dijitMenuPopup {
z-index: 9999 !important; }
.jimu-widget-image-discovery {
height: 98%;
width: 100%;
min-width: 332px;
max-width: 332px; }
.jimu-widget-image-discovery .discoveryLogo {
background: url(../images/discovery-logo.png);
height: 62px;
width: 178px;
text-align: center;
margin: 25px auto auto; }
.jimu-widget-image-discovery.hidden, .jimu-widget-image-discovery .hidden {
display: none; }
.jimu-widget-image-discovery .progressBarContainer {
width: 100%; }
.jimu-widget-image-discovery .imageDiscoveryActionsContainer {
min-height: 45px;
width: 100%; }
.jimu-widget-image-discovery .resultsWidgetContainer {
height: 100%;
overflow: auto; }
.jimu-widget-image-discovery .resultsWidgetContainer .imageDiscoveryResultsWidgetContainer {
height: 87%;
width: 98%; }
.clearDrawAreaIcon, .clearResultsIcon {
background: #D80000;
padding: 5px 0; }
.imageDiscoverySearchIcon {
opacity: .6;
font-size: 15pt;
padding: 5px 0 5px 2px;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.imageDiscoverySearchIcon.active {
color: #FFEF00; }
.imageDiscoverySearchIcon:hover {
opacity: .8; }
.imageDiscoverySearchIcon.enabled {
opacity: 1; }
.imageDiscoveryCheckoutContainer {
width: 100%;
background: white;
position: relative; }
.imageDiscoveryCheckoutContainer .jimu-btn {
padding: 6px; }
.imageDiscoveryCheckoutContainer .clearButton {
float: left;
background: #D80000; }
.imageDiscoveryCheckoutContainer .reviewButton {
min-width: 150px;
position: absolute;
right: 0;
top: 20px; }
.imageDiscoveryCheckoutContainer .reviewButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry {
margin: 2px 0; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry.cartItemCountLabel {
float: right;
margin-right: 10px; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry.cartItemTotalCostEntry {
padding-top: 8px; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailLabel {
margin-right: 3px; }
.imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
margin: 0;
padding: 5px; }
.imageDiscoveryBeforeSearchInfo ul li, .imageDiscoveryDuringSearchInfo ul li {
margin: 10px 0; }
.imageDiscoveryBeforeSearchInfo ul li .tutorialMarkerIcon, .imageDiscoveryDuringSearchInfo ul li .tutorialMarkerIcon {
color: #485566;
font-size: 14pt;
margin-right: 3px; }
.imageDiscoveryBeforeSearchInfo ul li .searchInfoExtraTextList, .imageDiscoveryDuringSearchInfo ul li .searchInfoExtraTextList {
padding: 0;
margin: 0 0 0 30px; }
.imageDiscoveryBeforeSearchInfo ul li .tutorialHeaderText, .imageDiscoveryDuringSearchInfo ul li .tutorialHeaderText {
font-weight: bold;
margin-top: 20px; }
.imageDiscoveryMessage {
margin-left: 7px; }
.imageDiscoveryMessage .fa {
margin-right: 3px; }
.imageDiscoveryMessage .header {
font-size: 12pt;
margin-bottom: 5px; }
.genericDiscoveryButton {
opacity: .6;
opacity: .6;
font-size: 14pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
cursor: pointer; }
.genericDiscoveryButton:hover {
opacity: .8; }
.genericDiscoveryButton.enabled {
opacity: 1; }
.genericDiscoveryButton.errorButton {
background: #D80000; }
.discoverLabel {
margin: 10px 0;
color: gray; }
.imageDiscoveryActionsContainer {
height: 65px; }
.discoveryIcon {
cursor: pointer;
background: url(../images/discoverSprite.png);
height: 32px;
width: 32px;
float: left;
margin: 0 10px; }
.discoveryIcon.byExtentUnselected {
background-position: 0 0; }
.discoveryIcon.byExtentSelected {
background-position: 0 -96px; }
.discoveryIcon.byBoundsUnselected {
background-position: 0 -32px; }
.discoveryIcon.byBoundsSelected {
background-position: 0 -128px; }
.discoveryIcon.byUploadUnselected {
background-position: 0 -64px; }
.discoveryIcon.byUploadSelected {
background-position: 0 -160px; }
.discoveryIcon.byPointUnselected {
background-position: 0 -193px; }
.discoveryIcon.byPointSelected {
background-position: 0 -224px; }
.discoveryIcon.byRectangleUnselected {
background-position: 0 -257px; }
.discoveryIcon.byRectangleSelected {
background-position: 0 -290px; }
.discoveryPointAdvancedToggleContainer {
height: 20px;
cursor: pointer; }
.discoveryActionSearchByBoundsInputs, .discoveryActionSearchByPointInputs {
width: 100%;
background: ghostwhite;
border: 1px solid #DFDFDF;
border-radius: 5px 5px 5px 5px;
padding: 7px;
min-height: 125px; }
.searchByBoundsDescriptionLbl {
font-size: 9pt;
text-align: left;
margin-left: 10%; }
.searchByUTMEntry {
margin: 5px 0 5px 20%;
text-align: left; }
.searchByBoundsInputUTMLbl {
float: left;
width: 80px;
font-size: 9pt; }
.searchByBoundsRadioLbl {
vertical-align: middle; }
.searchByBoundsContentsContainer {
margin-top: 10px; }
.searchByPointUnitsSelect {
margin: 10px 0; }
.searchByBoundsHeaderLbl, .pointBufferHeaderLbl {
text-align: left;
margin: 5px 0 3px 3px;
font-size: 9pt; }
.searchByBoundsInputLbl {
font-size: 9pt;
margin-left: 7px;
margin-right: 2px; }
.searchByBoundsInputDMSLbl {
font-size: 9pt; }
.searchByBoundsActionContainer {
float: right;
margin-right: 5%;
margin-top: 10px; }
.imageDiscoveryFindButton {
position: absolute;
top: 10px;
right: 10px; }
.imageDiscoveryFindButton .fa {
margin-right: 3px;
color: white; }
.imageDiscoveryFindButton .imageDiscoveryFindText {
font-size: 8pt; }
.pointToRectangleIcon {
font-size: 12pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.pointToRectangleIcon.active {
color: #FFEF00; }
.imageDiscoverySearchFilter .startDateContainer * .dijitArrowButtonInner, .imageDiscoverySearchFilter .endDateContainer * .dijitArrowButtonInner {
border-right: 1px solid #b5bcc7; }
/*# sourceMappingURL=style.css.map */
|
ImageDiscovery/css/style.css
|
@charset "UTF-8";
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.discoveryResultEntry.bordered {
border: 1px solid #DFDFDF; }
.detailsPopupList {
list-style-type: none;
margin: 0;
padding: 0; }
.discoveryResultEntry {
list-style-type: none;
border-bottom: 1px solid #DFDFDF;
background: white;
padding: 5px;
margin: 5px 0;
max-width: 350px;
position: relative; }
.discoveryResultEntry.bordered {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry.addToCartHidden .discoveryResultEntryAddToCartContainer {
display: none; }
.discoveryResultEntry .boldBig {
font-weight: bold;
font-size: 10pt; }
.discoveryResultEntry .discoveryResultEntryThumb {
height: 60px;
width: 60px;
float: left;
margin-left: 5px;
margin-top: 5px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
display: block; }
.discoveryResultEntry .discoveryResultEntryThumb.noCursor {
cursor: default; }
.discoveryResultEntry .discoveryResultEntryContextMenu {
display: none; }
.discoveryResultEntry .discoveryResultEntryContextClicker {
display: none; }
.discoveryResultEntry .discoveryResultEntryDetailsList {
padding: 0;
display: inline-block;
margin: 0 0 0 10px;
color: #444; }
.discoveryResultEntry .discoveryResultEntryDetailsList li {
margin: 0; }
.discoveryResultEntry.noLabel .discoveryResultEntryContextClicker {
top: 10px; }
.discoveryResultEntryActionsContainer {
width: 100%;
clear: both;
padding-top: 5px;
min-height: 35px; }
.discoveryResultEntryInfoButton.active {
color: blue; }
.discoveryResultEntryDownloadIcon {
float: right; }
.discoveryResultEntryMapImageThumb, .discoveryResultEntryDownloadIcon, .discoveryResultEntryAddToCartContainer, .discoveryResultEntryPreviewContainer, .discoveryResultEntryInfoButton, .discoveryResultEntryRemoveIcon {
padding: 6px;
cursor: pointer;
background: #F8F8FF;
border: 1px solid #DFDFDF;
-webkit-border-radius: 2px 2px 2px 2px;
-moz-border-radius: 2px 2px 2px 2px;
-ms-border-radius: 2px 2px 2px 2px;
border-radius: 2px 2px 2px 2px;
opacity: .6;
margin-right: 10px; }
.discoveryResultEntryMapImageThumb:hover, .discoveryResultEntryDownloadIcon:hover, .discoveryResultEntryAddToCartContainer:hover, .discoveryResultEntryPreviewContainer:hover, .discoveryResultEntryInfoButton:hover, .discoveryResultEntryRemoveIcon:hover {
opacity: .8; }
.discoveryResultEntryMapImageThumb.enabled, .discoveryResultEntryDownloadIcon.enabled, .discoveryResultEntryAddToCartContainer.enabled, .discoveryResultEntryPreviewContainer.enabled, .discoveryResultEntryInfoButton.enabled, .discoveryResultEntryRemoveIcon.enabled {
opacity: 1; }
.discoveryResultEntryMapImageThumb .fa, .discoveryResultEntryDownloadIcon .fa, .discoveryResultEntryAddToCartContainer .fa, .discoveryResultEntryPreviewContainer .fa, .discoveryResultEntryInfoButton .fa, .discoveryResultEntryRemoveIcon .fa {
margin-right: 3px; }
.discoveryResultEntryDownloadableIcon, .discoveryResultEntryPayIcon {
position: absolute;
right: 5px;
top: 5px;
padding: 6px;
width: 25px; }
.discoveryResultEntryDownloadableIcon.fa-usd, .discoveryResultEntryPayIcon.fa-usd {
padding-left: 7px; }
.discoveryResultEntryAddToCartContainer, .discoveryResultEntryRemoveIcon {
float: right; }
.discoveryResultEntryInfoButton, .discoveryResultEntryPreviewContainer, .discoveryResultEntryMapImageThumb {
float: left; }
.discoveryResultEntryInfoButton.active, .discoveryResultEntryPreviewContainer.active, .discoveryResultEntryAddToCartContainer.active {
background: #485566;
color: white;
opacity: 1.0;
border: 1px solid #485566; }
.discoveryResultEntryRemoveIcon {
background: white; }
.discoveryResultEntryRemoveIcon:hover {
color: red; }
.discoveryResultEntryPreviewIcon {
font-size: 11pt;
vertical-align: middle; }
.discoveryResultEntryDownloadSize {
font-size: 8pt;
margin-left: 5px;
color: #ADADAD; }
.discoveryResultEntryDownloadContainer {
text-align: right;
margin-right: 5px;
margin-top: 7px; }
.discoveryResultEntryDownloadContainer .fa {
margin-right: 5px; }
.discoveryResultEntryDownloadContainer .linkEntry {
text-decoration: underline;
cursor: pointer;
margin: 0 3px; }
.discoveryResultEntryDownloadContainer .linkEntry:hover {
color: blue; }
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 <NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); } }
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); } }
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp; }
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@-webkit-keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut; }
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown; }
.imageDiscoverySearchFilter {
margin-top: 20px; }
.imageDiscoverySearchFilter .dijitArrowButtonInner {
width: 28px;
height: 28px !important; }
.imageDiscoverySearchFilter .searchFilterLabel {
margin-bottom: 5px; }
.imageDiscoverySearchFilter .searchFilterLabel .icon {
margin-right: 5px; }
.imageDiscoverySearchFilter .startDateContainer {
margin-left: 3%; }
.imageDiscoverySearchFilter .startDateContainer, .imageDiscoverySearchFilter .endDateContainer {
width: 47%;
display: inline-block; }
.imageDiscoverySearchFilter .cloudCoverFilter {
width: 75%;
margin-left: 12.5%;
margin-top: 10px; }
.imageDiscoverySearchFilter .searchFilter .dijitArrowButtonInner, .imageDiscoverySearchFilter .searchFilter .dijitArrowButtonContainer {
width: 20px !important; }
.imageDiscoverySearchFilter .searchFilter .dijitArrowButtonInner {
padding: 6px 7px !important; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.reportingUserDrawIconContainer {
height: 32px;
width: 32px;
float: right;
margin-top: -5px; }
.pdfExportTitleEntry {
margin-bottom: 7px; }
.reportTypeSelect {
margin-bottom: 10pt; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.portalLoginClickContent {
position: absolute;
right: 0;
height: 20px;
margin-right: 20px;
cursor: pointer;
text-decoration: underline; }
.portalAccountLockIcon {
display: inline-block; }
.portalWebMapPublishTextBox {
width: 80%; }
.portalUploadFormContainer {
min-height: 210px; }
.portalUploadButtonContainer, .portalSubmitShareButtonContainer {
margin: 10px;
float: right; }
.portalGroupShareList {
list-style-type: none; }
.portalPublishShareWithLabel {
margin-bottom: 5px; }
.portalUploadFolderSelect {
width: 83%; }
.publishToPortalUrlLabel {
float: left; }
.portalPublisherActionsContent {
height: 20px; }
.portalUploadFormContainer .dijitSelect {
width: 81%; }
.portalUploadFormContainer .dijitSelect .dijitDownArrowButton {
width: 20px; }
.portalPublisherLoggedOutContent {
width: 100%;
text-align: center;
font-size: 12pt;
color: blue;
text-decoration: underline;
opacity: 0.4;
cursor: pointer;
margin: 20px auto auto; }
.portalPublisherLoggedOutContent:hover {
opacity: 0.7; }
.portalPublisherLoggedOutContent.enabled {
opacity: 1; }
.portalUploadSuccessContainer .fa {
margin-right: 2px; }
.portalUploadViewItemLink {
text-align: center;
color: blue;
text-decoration: underline;
cursor: pointer;
opacity: 0.6;
font-size: 11pt;
margin: 25px auto auto; }
.portalUploadViewItemLink:hover {
opacity: 0.8; }
.portalUploadViewItemLink.enabled {
opacity: 1; }
.portalPublisherThrobber {
position: absolute;
top: 10px;
right: 10px; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.downloadListWidgetContainer {
height: 95%;
overflow: auto;
margin-top: 10px; }
.downloadListThrobber {
position: absolute;
right: 10px;
top: 10px; }
.imageExportUserDrawRectangleButton {
vertical-align: middle;
float: right;
margin-right: 10%; }
.imageryDownloadUserDrawIconContainer {
height: 32px;
width: 32px;
float: right;
margin-right: 10px;
margin-top: -5px; }
.imageryDownloadLinkList {
list-style-type: none;
background: white;
border: 1px solid #DFDFDF;
margin: 5px 0 0;
padding: 0; }
.imageryDownloadLinkList li {
padding: 3px; }
.imageryDownloadListContainer {
overflow: auto; }
.exportDownloadListSizeValue {
font-size: 8pt;
color: black;
margin-left: 3px; }
.downloadServiceEntry {
margin: 5px 3px; }
.imageryDownloadAllContainer, .imageryDownloadAllLink {
height: 35px; }
.imageryDownloadAllContainer, .imageryDownloadAllLink {
color: blue;
text-decoration: underline;
cursor: pointer; }
.imageryDownloadAllInFlightText {
margin-left: 5px;
line-height: 30px;
color: blue;
position: absolute;
left: 55px; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer, .imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadDetailsContainer {
border: 1px solid #DFDFDF; }
.cartCheckoutStatusModalUnderlay {
height: 100%;
width: 100%;
background: black;
position: absolute;
z-index: 4005;
top: 0;
left: 0;
opacity: .7; }
.cartCheckoutStatusModalUnderlay.hidden, .cartCheckoutStatusModalUnderlay .hidden {
display: none; }
.imageDiscoveryCartCheckoutWidget {
width: 60%;
height: 70%;
top: 10%;
left: 20%;
background: white;
z-index: 4006;
position: absolute;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
border: 1px #dfdfdf; }
.imageDiscoveryCartCheckoutWidget.hidden, .imageDiscoveryCartCheckoutWidget .hidden {
display: none; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer {
width: 97%;
height: 70%;
margin-left: 1.5%;
margin-top: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
-ms-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
cursor: pointer;
background: ghostwhite;
height: 20px;
padding: 5px;
border: 1px solid #DFDFDF;
border-bottom: 0;
opacity: 0.4; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab:hover {
opacity: 0.7; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab.enabled {
opacity: 1; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabs .checkoutWidgetTab.selected {
border-bottom-width: 1px; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabContentContainer {
position: relative;
min-height: 225px;
width: 98%;
height: 100%;
margin-top: 5px;
border: 1px solid #DFDFDF;
background: ghostwhite; }
.imageDiscoveryCartCheckoutWidget .checkoutWidgetTabContainer .checkoutWidgetTabContentContainer .checkoutWidgetTabContent {
padding: 10px;
height: 90%; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon {
float: right;
cursor: pointer;
opacity: 0.6;
font-size: 12pt;
color: gray;
margin-top: -10px;
margin-right: 25px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon:hover {
opacity: 0.9; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader .closeIcon.enabled {
opacity: 1; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer {
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
background: white;
width: 38%;
margin-left: 1%;
height: 70%;
margin-top: 2.5%;
overflow: auto;
padding: 0 10px; }
.imageDiscoveryCartCheckoutWidget .cartItemsCheckoutMessageContainer .fa {
margin-right: 5px;
font-size: 13pt;
color: #0C070E; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusCloseButton {
float: right;
margin-right: 20px;
width: 100px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusCloseButton.errorState {
background: red; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageContainerHeader {
font-size: 12pt;
padding-top: 5px;
text-align: center; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList {
color: gray;
padding: 5px;
margin: 5px 0 0; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList li {
margin: 10px 0; }
.imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList li .bottomBordered {
padding-bottom: 5px;
border-bottom: 1px dashed gray;
padding-top: 5px;
height: 30px;
font-weight: bold; }
.imageDiscoveryCartCheckoutWidget .checkoutCompleteContainer {
font-size: 14pt;
color: blue;
text-align: center;
height: 50px;
margin-top: 10px; }
.imageDiscoveryCartCheckoutWidget .progressBarOuterContainer {
width: 40%;
margin-left: 60%; }
.imageDiscoveryCartCheckoutWidget .progressBarOuterContainer .dijitProgressBarEmpty {
overflow: visible; }
.imageDiscoveryCartCheckoutWidget .orderReviewContainer {
overflow: auto;
height: 90%;
max-width: 500px;
padding: 0 5px; }
.imageDiscoveryCartCheckoutWidget .orderReviewContainer .orderReviewHeader {
margin: 10px 0;
font-size: 12pt; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer {
text-align: right;
width: 90%;
margin-top: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer .cancelCheckoutButton {
background: #D80000;
margin-right: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutActionsContainer .checkoutActionButtonContainer {
height: 50px;
padding-top: 5px; }
.imageDiscoveryCartCheckoutWidget .checkoutOuterContainer {
border: 1px solid #ededed;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
background: #FBFBFB;
position: relative;
height: 100%; }
.imageDiscoveryCartCheckoutWidget .checkoutContent {
height: 75%;
width: 100%;
padding: 1%; }
.imageDiscoveryCartCheckoutWidget .checkoutTallyContainer {
height: 90%;
width: 55%;
float: left;
overflow: auto;
overflow-x: hidden; }
.imageDiscoveryCartCheckoutWidget .checkoutTallyContainer .checkoutTotalItemsContainer {
color: gray; }
.imageDiscoveryCartCheckoutWidget .downloadConfirmationHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutStatusHeader {
font-size: 11pt;
height: 25px;
width: 100%;
margin-top: 10px;
line-height: 15px;
color: gray;
padding-left: 20px; }
.imageDiscoveryCartCheckoutWidget .checkoutTotalCostContainer {
font-size: 11pt;
margin-right: 5px;
margin-bottom: 15px;
background: white;
border: 1px solid #DFDFDF;
padding: 5px;
border-left: 0;
margin-left: -1px; }
.imageDiscoveryCartCheckoutWidget .checkoutTotalArea {
margin-right: 30px; }
.imageDiscoveryCartCheckoutWidget .checkoutOrderReferenceContainer {
float: left;
margin-left: 30px;
text-align: left; }
.imageDiscoveryCartCheckoutWidget .startCheckoutButton {
min-width: 155px; }
.imageDiscoveryCartCheckoutWidget .startCheckoutButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCartCheckoutWidget .nameYourOrderLabel {
font-size: 9pt;
color: gray;
margin-bottom: 3px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer {
float: right;
height: 100%;
width: 44%;
margin-right: 1%; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadDetailsContainer {
margin-top: 10px;
background: white;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
-ms-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
color: gray;
padding: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer {
cursor: pointer;
font-size: 13pt;
margin-right: 15px; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer i {
margin-right: 3px;
font-size: 40pt; }
.imageDiscoveryCartCheckoutWidget .checkoutDownloadRightContainer .checkoutDownloadAllItemsContainer:hover {
color: blue; }
.esriOAuthSignInDialog {
z-index: 9999 !important; }
.portalPublisherLabel {
margin: 8px 0;
color: #514E4E; }
.publicShareContainer {
margin-bottom: 5px; }
.portalSaveButton {
width: 70px;
margin-top: 10px; }
.portalSaveButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imagerySearchSourcesWidget {
padding: 5px;
background: #F8F8FF;
border: 1px solid #DFDFDF; }
.imagerySearchSourcesListEntry {
cursor: pointer;
margin: 5px 0; }
.imagerySearchSourcesListEntry .fa {
min-width: 15px;
color: blue; }
.imagerySearchSourcesListEntry .fa.red {
color: red; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageDiscoveryResultEntriesFilterContainer .smallText {
font-size: 8pt; }
.imageDiscoveryResultEntriesFilterContainer .resultTypeFilter {
position: absolute;
right: 0;
top: 20px;
width: 52%; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter {
margin-bottom: 10px; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter.cloudCoverFilter .cloudCoverSliderContainer {
margin-top: 10px; }
.imageDiscoveryResultEntriesFilterContainer .taskingResultFilter.cartResultFilter {
border-bottom: 1px dashed #DFDFDF;
padding-bottom: 10px; }
.imageDiscoveryResultEntriesFilterContainer .dateFilterValuesContainer {
margin-bottom: 5px; }
.imageDiscoveryResultEntriesFilterContainer .dateFilterValuesContainer .dateRangeLabel {
margin-bottom: 3px; }
.imageDiscoveryResultEntriesFilterContainer .cloudCoverSliderValueContainer {
float: right;
width: 25px; }
.imageDiscoveryResultEntriesFilterContainer .clearPreviewsContainer {
border-top: 1px dashed #DFDFDF;
padding-top: 5px;
cursor: pointer;
text-align: right;
color: blue; }
.imageDiscoveryResultEntriesFilterContainer .clearPreviewsContainer:hover {
text-decoration: underline; }
.imageDiscoveryResultEntriesFilterContainer .noDashedBorder .clearPreviewsContainer, .imageDiscoveryResultEntriesFilterContainer .noDashedBorder .cartResultFilter {
border-bottom: 0; }
.imageDiscoveryResultEntriesFilterContainer .iconPlatformFilterEntryContainer {
margin: 5px 0;
color: gray; }
.imageDiscoveryResultEntriesFilterContainer .iconPlatformFilterEntryContainer input {
vertical-align: middle;
margin-right: 5px; }
.imageDiscoveryResultEntriesSortContainer .imageDiscoveryResultEntriesSortLabel {
font-size: 8pt; }
.imageDiscoveryResultEntriesSortContainer .dijitSelect {
margin-top: 3px;
width: 90%;
background: white;
margin-left: 10px;
min-width: 14em; }
.imageDiscoveryResultEntriesSortContainer .dijitSelect .dijitArrowButtonContainer {
width: 25px; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.dojoDndAvatarHeader {
display: none; }
.reorderPreviewThumbContainer {
margin: auto;
text-align: center;
position: relative; }
.reorderPreviewThumbContainer .reorderArrow {
position: absolute;
left: -7px;
top: -8px;
color: #485566; }
.reorderPreviewThumbContainer .reorderArrow:hover {
color: blue; }
.reorderPreviewThumbContainer .reorderCart {
display: block;
padding: 2px;
color: blue;
cursor: pointer; }
.reorderPreviewThumbContainer .reorderCart.remove {
color: red; }
.reorderPreviewThumbContainer .removeIcon {
position: absolute;
right: 8px;
bottom: 7px;
font-size: 11pt;
z-index: 1;
color: #D80000;
opacity: 0.4; }
.reorderPreviewThumbContainer .removeIcon:hover {
opacity: 0.6; }
.reorderPreviewThumbContainer .removeIcon.enabled {
opacity: 1; }
.reorderPreviewThumbContainer .reorderPreviewActionsContainer {
position: absolute;
left: 8px;
bottom: 5px;
z-index: 1; }
.reorderPreviewThumbContainer .reorderPreviewSensorLabel {
font-size: 8pt;
margin-bottom: 2px; }
.reorderPreviewThumbOuter {
position: relative;
background: #F8F8FF;
padding: 5px;
margin: 5px;
border: 1px solid #DFDFDF;
cursor: move;
opacity: .8; }
.reorderPreviewThumb {
width: 90px;
height: 90px; }
.reorderPreviewPopoutContainer {
padding: 5px !important;
max-height: 60%;
overflow: auto;
width: 100%; }
.reorderPreviewPopoutContainer .dojoDndItem, .reorderPreviewPopoutContainer .dojoDndItemOver {
background: none;
padding: 0;
margin: 0; }
.reorderPreviewPopoutContainer .dojoDndItem {
border: 1px solid white; }
.reorderPreviewPopoutContainer .dojoDndItemOver {
border: 1px solid white; }
.reorderPreviewPopoutContainer .dojoDndItemOver .reorderPreviewThumbOuter {
opacity: 1; }
.reorderPreviewPopoutContainer .reorderPreviewLoadingSpinnerContainerOuter {
width: 90%;
height: 20px;
color: #328AE7; }
.imageDiscoveryCartCheckoutWidget {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.imageryDownloadLinkList, .imagerySearchSourcesWidget, .resultConfigureContainer i, .imageDiscoverySearchIcon, .genericDiscoveryButton, .pointToRectangleIcon {
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-ms-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px; }
.discoveryResultEntry .discoveryResultEntryDetailsList, .imageDiscoveryCartCheckoutWidget .checkoutMessageContainer .checkoutMessageList, .imageDiscoveryCartCheckoutWidget .orderReviewContainer, .imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
list-style-type: none; }
.imageAnalysisWidget {
width: 90%;
margin-left: 5%;
padding: 5%; }
.imageAnalysisEntry {
margin: 10px 0; }
.analysisLayerWidgetContainer {
margin-bottom: 10px;
border-top: 0; }
.analysisLabel {
color: gray;
margin: 5px 0; }
.bandReorderBandIndexLbl {
color: gray;
margin-right: 3px; }
.bandReorderEntry {
margin: 5px 0; }
.bandReorderApplyButton, .bandReorderClearButton {
width: 40%;
font-size: 10pt !important;
display: inline-block; }
.bandReorderApplyButton {
float: right; }
.bandReorderClearButton {
float: left; }
.bandWidgetButtonContainer {
width: 80%;
margin-left: 10%;
height: 30px;
margin-top: 10px; }
.imageAnalysisTabContainer {
width: 97%;
height: 80%;
margin-left: 1.5%; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
-ms-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
cursor: pointer;
background: ghostwhite;
height: 20px;
padding: 5px;
border: 1px solid #DFDFDF;
border-bottom: 0;
opacity: 0.4; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab:hover {
opacity: 0.7; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab.enabled {
opacity: 1; }
.imageAnalysisTabContainer .imageAnalysisTabs .imageAnalysisTab.selected {
border-bottom-width: 1px; }
.imageAnalysisTabContent {
border: 1px solid #DFDFDF;
padding: 10px;
margin-top: 5px; }
.imageAnalysisTabContent.noBorder {
border: 0; }
.discoveryPopoutContainer {
-webkit-box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2);
box-shadow: -2px 8px 5px rgba(0, 0, 0, 0.2); }
.discoveryOverlayContainer {
position: absolute;
top: 45px;
width: 100%; }
.discoveryPopoutContainer {
background: white;
border-radius: 3px 0 0 3px;
border: 1px solid #DFDFDF;
padding: 10px; }
.discoveryPopoutContainer.hidden, .discoveryPopoutContainer .hidden {
display: none; }
.imageDiscoveryResultsWidget {
height: 100%; }
.imageDiscoveryResultsWidget .toggleFilterVisibilityContainer {
cursor: pointer; }
.imageDiscoveryResultsWidget .resultEntriesContainer {
height: 98%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid {
border: 0;
height: 95%;
width: 100%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid .dgrid-content {
height: 93%; }
.imageDiscoveryResultsWidget .resultEntriesContainer .dgrid .dgrid-scroller {
margin-top: 0; }
.resultConfigureContainer {
margin-bottom: 5px; }
.resultConfigureContainer i {
font-size: 14pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: white;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.resultConfigureContainer i.active {
color: #FFEF00; }
.resultConfigureContainer i.clearResultsIcon {
background: #D80000;
float: right;
padding: 5px 0;
text-align: center; }
.noSearchResultsMessage {
color: #FFF;
background-color: #5E7A83;
border-color: gray;
padding: 20px;
font-size: 11pt;
margin-top: 15%;
border-radius: 3px 3px 3px 3px; }
/*!
* 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
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url("./font/fonts/fontawesome-webfont.eot?v=4.0.3");
src: url("./font/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("./font/fonts/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("./font/fonts/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("./font/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
font-weight: normal;
font-style: normal; }
.fa {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333em;
line-height: 0.75em;
vertical-align: -15%; }
.fa-2x {
font-size: 2em; }
.fa-3x {
font-size: 3em; }
.fa-4x {
font-size: 4em; }
.fa-5x {
font-size: 5em; }
.fa-fw {
width: 1.28571em;
text-align: center; }
.fa-ul {
padding-left: 0;
margin-left: 2.14286em;
list-style-type: none; }
.fa-ul > li {
position: relative; }
.fa-li {
position: absolute;
left: -2.14286em;
width: 2.14286em;
top: 0.14286em;
text-align: center; }
.fa-li.fa-lg {
left: -1.85714em; }
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eee;
border-radius: .1em; }
.pull-right {
float: right; }
.pull-left {
float: left; }
.fa.pull-left {
margin-right: .3em; }
.fa.pull-right {
margin-left: .3em; }
.fa-spin {
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear; }
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg); }
100% {
-moz-transform: rotate(359deg); } }
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(359deg); } }
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg); }
100% {
-o-transform: rotate(359deg); } }
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg); }
100% {
-ms-transform: rotate(359deg); } }
@keyframes spin {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(359deg); } }
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg); }
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg); }
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg); }
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1); }
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1); }
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle; }
.fa-stack-1x, .fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center; }
.fa-stack-1x {
line-height: inherit; }
.fa-stack-2x {
font-size: 2em; }
.fa-inverse {
color: #fff; }
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: ""; }
.fa-music:before {
content: ""; }
.fa-search:before {
content: ""; }
.fa-envelope-o:before {
content: ""; }
.fa-heart:before {
content: ""; }
.fa-star:before {
content: ""; }
.fa-star-o:before {
content: ""; }
.fa-user:before {
content: ""; }
.fa-film:before {
content: ""; }
.fa-th-large:before {
content: ""; }
.fa-th:before {
content: ""; }
.fa-th-list:before {
content: ""; }
.fa-check:before {
content: ""; }
.fa-times:before {
content: ""; }
.fa-search-plus:before {
content: ""; }
.fa-search-minus:before {
content: ""; }
.fa-power-off:before {
content: ""; }
.fa-signal:before {
content: ""; }
.fa-gear:before,
.fa-cog:before {
content: ""; }
.fa-trash-o:before {
content: ""; }
.fa-home:before {
content: ""; }
.fa-file-o:before {
content: ""; }
.fa-clock-o:before {
content: ""; }
.fa-road:before {
content: ""; }
.fa-download:before {
content: ""; }
.fa-arrow-circle-o-down:before {
content: ""; }
.fa-arrow-circle-o-up:before {
content: ""; }
.fa-inbox:before {
content: ""; }
.fa-play-circle-o:before {
content: ""; }
.fa-rotate-right:before,
.fa-repeat:before {
content: ""; }
.fa-refresh:before {
content: ""; }
.fa-list-alt:before {
content: ""; }
.fa-lock:before {
content: ""; }
.fa-flag:before {
content: ""; }
.fa-headphones:before {
content: ""; }
.fa-volume-off:before {
content: ""; }
.fa-volume-down:before {
content: ""; }
.fa-volume-up:before {
content: ""; }
.fa-qrcode:before {
content: ""; }
.fa-barcode:before {
content: ""; }
.fa-tag:before {
content: ""; }
.fa-tags:before {
content: ""; }
.fa-book:before {
content: ""; }
.fa-bookmark:before {
content: ""; }
.fa-print:before {
content: ""; }
.fa-camera:before {
content: ""; }
.fa-font:before {
content: ""; }
.fa-bold:before {
content: ""; }
.fa-italic:before {
content: ""; }
.fa-text-height:before {
content: ""; }
.fa-text-width:before {
content: ""; }
.fa-align-left:before {
content: ""; }
.fa-align-center:before {
content: ""; }
.fa-align-right:before {
content: ""; }
.fa-align-justify:before {
content: ""; }
.fa-list:before {
content: ""; }
.fa-dedent:before,
.fa-outdent:before {
content: ""; }
.fa-indent:before {
content: ""; }
.fa-video-camera:before {
content: ""; }
.fa-picture-o:before {
content: ""; }
.fa-pencil:before {
content: ""; }
.fa-map-marker:before {
content: ""; }
.fa-adjust:before {
content: ""; }
.fa-tint:before {
content: ""; }
.fa-edit:before,
.fa-pencil-square-o:before {
content: ""; }
.fa-share-square-o:before {
content: ""; }
.fa-check-square-o:before {
content: ""; }
.fa-arrows:before {
content: ""; }
.fa-step-backward:before {
content: ""; }
.fa-fast-backward:before {
content: ""; }
.fa-backward:before {
content: ""; }
.fa-play:before {
content: ""; }
.fa-pause:before {
content: ""; }
.fa-stop:before {
content: ""; }
.fa-forward:before {
content: ""; }
.fa-fast-forward:before {
content: ""; }
.fa-step-forward:before {
content: ""; }
.fa-eject:before {
content: ""; }
.fa-chevron-left:before {
content: ""; }
.fa-chevron-right:before {
content: ""; }
.fa-plus-circle:before {
content: ""; }
.fa-minus-circle:before {
content: ""; }
.fa-times-circle:before {
content: ""; }
.fa-check-circle:before {
content: ""; }
.fa-question-circle:before {
content: ""; }
.fa-info-circle:before {
content: ""; }
.fa-crosshairs:before {
content: ""; }
.fa-times-circle-o:before {
content: ""; }
.fa-check-circle-o:before {
content: ""; }
.fa-ban:before {
content: ""; }
.fa-arrow-left:before {
content: ""; }
.fa-arrow-right:before {
content: ""; }
.fa-arrow-up:before {
content: ""; }
.fa-arrow-down:before {
content: ""; }
.fa-mail-forward:before,
.fa-share:before {
content: ""; }
.fa-expand:before {
content: ""; }
.fa-compress:before {
content: ""; }
.fa-plus:before {
content: ""; }
.fa-minus:before {
content: ""; }
.fa-asterisk:before {
content: ""; }
.fa-exclamation-circle:before {
content: ""; }
.fa-gift:before {
content: ""; }
.fa-leaf:before {
content: ""; }
.fa-fire:before {
content: ""; }
.fa-eye:before {
content: ""; }
.fa-eye-slash:before {
content: ""; }
.fa-warning:before,
.fa-exclamation-triangle:before {
content: ""; }
.fa-plane:before {
content: ""; }
.fa-calendar:before {
content: ""; }
.fa-random:before {
content: ""; }
.fa-comment:before {
content: ""; }
.fa-magnet:before {
content: ""; }
.fa-chevron-up:before {
content: ""; }
.fa-chevron-down:before {
content: ""; }
.fa-retweet:before {
content: ""; }
.fa-shopping-cart:before {
content: ""; }
.fa-folder:before {
content: ""; }
.fa-folder-open:before {
content: ""; }
.fa-arrows-v:before {
content: ""; }
.fa-arrows-h:before {
content: ""; }
.fa-bar-chart-o:before {
content: ""; }
.fa-twitter-square:before {
content: ""; }
.fa-facebook-square:before {
content: ""; }
.fa-camera-retro:before {
content: ""; }
.fa-key:before {
content: ""; }
.fa-gears:before,
.fa-cogs:before {
content: ""; }
.fa-comments:before {
content: ""; }
.fa-thumbs-o-up:before {
content: ""; }
.fa-thumbs-o-down:before {
content: ""; }
.fa-star-half:before {
content: ""; }
.fa-heart-o:before {
content: ""; }
.fa-sign-out:before {
content: ""; }
.fa-linkedin-square:before {
content: ""; }
.fa-thumb-tack:before {
content: ""; }
.fa-external-link:before {
content: ""; }
.fa-sign-in:before {
content: ""; }
.fa-trophy:before {
content: ""; }
.fa-github-square:before {
content: ""; }
.fa-upload:before {
content: ""; }
.fa-lemon-o:before {
content: ""; }
.fa-phone:before {
content: ""; }
.fa-square-o:before {
content: ""; }
.fa-bookmark-o:before {
content: ""; }
.fa-phone-square:before {
content: ""; }
.fa-twitter:before {
content: ""; }
.fa-facebook:before {
content: ""; }
.fa-github:before {
content: ""; }
.fa-unlock:before {
content: ""; }
.fa-credit-card:before {
content: ""; }
.fa-rss:before {
content: ""; }
.fa-hdd-o:before {
content: ""; }
.fa-bullhorn:before {
content: ""; }
.fa-bell:before {
content: ""; }
.fa-certificate:before {
content: ""; }
.fa-hand-o-right:before {
content: ""; }
.fa-hand-o-left:before {
content: ""; }
.fa-hand-o-up:before {
content: ""; }
.fa-hand-o-down:before {
content: ""; }
.fa-arrow-circle-left:before {
content: ""; }
.fa-arrow-circle-right:before {
content: ""; }
.fa-arrow-circle-up:before {
content: ""; }
.fa-arrow-circle-down:before {
content: ""; }
.fa-globe:before {
content: ""; }
.fa-wrench:before {
content: ""; }
.fa-tasks:before {
content: ""; }
.fa-filter:before {
content: ""; }
.fa-briefcase:before {
content: ""; }
.fa-arrows-alt:before {
content: ""; }
.fa-group:before,
.fa-users:before {
content: ""; }
.fa-chain:before,
.fa-link:before {
content: ""; }
.fa-cloud:before {
content: ""; }
.fa-flask:before {
content: ""; }
.fa-cut:before,
.fa-scissors:before {
content: ""; }
.fa-copy:before,
.fa-files-o:before {
content: ""; }
.fa-paperclip:before {
content: ""; }
.fa-save:before,
.fa-floppy-o:before {
content: ""; }
.fa-square:before {
content: ""; }
.fa-bars:before {
content: ""; }
.fa-list-ul:before {
content: ""; }
.fa-list-ol:before {
content: ""; }
.fa-strikethrough:before {
content: ""; }
.fa-underline:before {
content: ""; }
.fa-table:before {
content: ""; }
.fa-magic:before {
content: ""; }
.fa-truck:before {
content: ""; }
.fa-pinterest:before {
content: ""; }
.fa-pinterest-square:before {
content: ""; }
.fa-google-plus-square:before {
content: ""; }
.fa-google-plus:before {
content: ""; }
.fa-money:before {
content: ""; }
.fa-caret-down:before {
content: ""; }
.fa-caret-up:before {
content: ""; }
.fa-caret-left:before {
content: ""; }
.fa-caret-right:before {
content: ""; }
.fa-columns:before {
content: ""; }
.fa-unsorted:before,
.fa-sort:before {
content: ""; }
.fa-sort-down:before,
.fa-sort-asc:before {
content: ""; }
.fa-sort-up:before,
.fa-sort-desc:before {
content: ""; }
.fa-envelope:before {
content: ""; }
.fa-linkedin:before {
content: ""; }
.fa-rotate-left:before,
.fa-undo:before {
content: ""; }
.fa-legal:before,
.fa-gavel:before {
content: ""; }
.fa-dashboard:before,
.fa-tachometer:before {
content: ""; }
.fa-comment-o:before {
content: ""; }
.fa-comments-o:before {
content: ""; }
.fa-flash:before,
.fa-bolt:before {
content: ""; }
.fa-sitemap:before {
content: ""; }
.fa-umbrella:before {
content: ""; }
.fa-paste:before,
.fa-clipboard:before {
content: ""; }
.fa-lightbulb-o:before {
content: ""; }
.fa-exchange:before {
content: ""; }
.fa-cloud-download:before {
content: ""; }
.fa-cloud-upload:before {
content: ""; }
.fa-user-md:before {
content: ""; }
.fa-stethoscope:before {
content: ""; }
.fa-suitcase:before {
content: ""; }
.fa-bell-o:before {
content: ""; }
.fa-coffee:before {
content: ""; }
.fa-cutlery:before {
content: ""; }
.fa-file-text-o:before {
content: ""; }
.fa-building-o:before {
content: ""; }
.fa-hospital-o:before {
content: ""; }
.fa-ambulance:before {
content: ""; }
.fa-medkit:before {
content: ""; }
.fa-fighter-jet:before {
content: ""; }
.fa-beer:before {
content: ""; }
.fa-h-square:before {
content: ""; }
.fa-plus-square:before {
content: ""; }
.fa-angle-double-left:before {
content: ""; }
.fa-angle-double-right:before {
content: ""; }
.fa-angle-double-up:before {
content: ""; }
.fa-angle-double-down:before {
content: ""; }
.fa-angle-left:before {
content: ""; }
.fa-angle-right:before {
content: ""; }
.fa-angle-up:before {
content: ""; }
.fa-angle-down:before {
content: ""; }
.fa-desktop:before {
content: ""; }
.fa-laptop:before {
content: ""; }
.fa-tablet:before {
content: ""; }
.fa-mobile-phone:before,
.fa-mobile:before {
content: ""; }
.fa-circle-o:before {
content: ""; }
.fa-quote-left:before {
content: ""; }
.fa-quote-right:before {
content: ""; }
.fa-spinner:before {
content: ""; }
.fa-circle:before {
content: ""; }
.fa-mail-reply:before,
.fa-reply:before {
content: ""; }
.fa-github-alt:before {
content: ""; }
.fa-folder-o:before {
content: ""; }
.fa-folder-open-o:before {
content: ""; }
.fa-smile-o:before {
content: ""; }
.fa-frown-o:before {
content: ""; }
.fa-meh-o:before {
content: ""; }
.fa-gamepad:before {
content: ""; }
.fa-keyboard-o:before {
content: ""; }
.fa-flag-o:before {
content: ""; }
.fa-flag-checkered:before {
content: ""; }
.fa-terminal:before {
content: ""; }
.fa-code:before {
content: ""; }
.fa-reply-all:before {
content: ""; }
.fa-mail-reply-all:before {
content: ""; }
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: ""; }
.fa-location-arrow:before {
content: ""; }
.fa-crop:before {
content: ""; }
.fa-code-fork:before {
content: ""; }
.fa-unlink:before,
.fa-chain-broken:before {
content: ""; }
.fa-question:before {
content: ""; }
.fa-info:before {
content: ""; }
.fa-exclamation:before {
content: ""; }
.fa-superscript:before {
content: ""; }
.fa-subscript:before {
content: ""; }
.fa-eraser:before {
content: ""; }
.fa-puzzle-piece:before {
content: ""; }
.fa-microphone:before {
content: ""; }
.fa-microphone-slash:before {
content: ""; }
.fa-shield:before {
content: ""; }
.fa-calendar-o:before {
content: ""; }
.fa-fire-extinguisher:before {
content: ""; }
.fa-rocket:before {
content: ""; }
.fa-maxcdn:before {
content: ""; }
.fa-chevron-circle-left:before {
content: ""; }
.fa-chevron-circle-right:before {
content: ""; }
.fa-chevron-circle-up:before {
content: ""; }
.fa-chevron-circle-down:before {
content: ""; }
.fa-html5:before {
content: ""; }
.fa-css3:before {
content: ""; }
.fa-anchor:before {
content: ""; }
.fa-unlock-alt:before {
content: ""; }
.fa-bullseye:before {
content: ""; }
.fa-ellipsis-h:before {
content: ""; }
.fa-ellipsis-v:before {
content: ""; }
.fa-rss-square:before {
content: ""; }
.fa-play-circle:before {
content: ""; }
.fa-ticket:before {
content: ""; }
.fa-minus-square:before {
content: ""; }
.fa-minus-square-o:before {
content: ""; }
.fa-level-up:before {
content: ""; }
.fa-level-down:before {
content: ""; }
.fa-check-square:before {
content: ""; }
.fa-pencil-square:before {
content: ""; }
.fa-external-link-square:before {
content: ""; }
.fa-share-square:before {
content: ""; }
.fa-compass:before {
content: ""; }
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: ""; }
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: ""; }
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: ""; }
.fa-euro:before,
.fa-eur:before {
content: ""; }
.fa-gbp:before {
content: ""; }
.fa-dollar:before,
.fa-usd:before {
content: ""; }
.fa-rupee:before,
.fa-inr:before {
content: ""; }
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: ""; }
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: ""; }
.fa-won:before,
.fa-krw:before {
content: ""; }
.fa-bitcoin:before,
.fa-btc:before {
content: ""; }
.fa-file:before {
content: ""; }
.fa-file-text:before {
content: ""; }
.fa-sort-alpha-asc:before {
content: ""; }
.fa-sort-alpha-desc:before {
content: ""; }
.fa-sort-amount-asc:before {
content: ""; }
.fa-sort-amount-desc:before {
content: ""; }
.fa-sort-numeric-asc:before {
content: ""; }
.fa-sort-numeric-desc:before {
content: ""; }
.fa-thumbs-up:before {
content: ""; }
.fa-thumbs-down:before {
content: ""; }
.fa-youtube-square:before {
content: ""; }
.fa-youtube:before {
content: ""; }
.fa-xing:before {
content: ""; }
.fa-xing-square:before {
content: ""; }
.fa-youtube-play:before {
content: ""; }
.fa-dropbox:before {
content: ""; }
.fa-stack-overflow:before {
content: ""; }
.fa-instagram:before {
content: ""; }
.fa-flickr:before {
content: ""; }
.fa-adn:before {
content: ""; }
.fa-bitbucket:before {
content: ""; }
.fa-bitbucket-square:before {
content: ""; }
.fa-tumblr:before {
content: ""; }
.fa-tumblr-square:before {
content: ""; }
.fa-long-arrow-down:before {
content: ""; }
.fa-long-arrow-up:before {
content: ""; }
.fa-long-arrow-left:before {
content: ""; }
.fa-long-arrow-right:before {
content: ""; }
.fa-apple:before {
content: ""; }
.fa-windows:before {
content: ""; }
.fa-android:before {
content: ""; }
.fa-linux:before {
content: ""; }
.fa-dribbble:before {
content: ""; }
.fa-skype:before {
content: ""; }
.fa-foursquare:before {
content: ""; }
.fa-trello:before {
content: ""; }
.fa-female:before {
content: ""; }
.fa-male:before {
content: ""; }
.fa-gittip:before {
content: ""; }
.fa-sun-o:before {
content: ""; }
.fa-moon-o:before {
content: ""; }
.fa-archive:before {
content: ""; }
.fa-bug:before {
content: ""; }
.fa-vk:before {
content: ""; }
.fa-weibo:before {
content: ""; }
.fa-renren:before {
content: ""; }
.fa-pagelines:before {
content: ""; }
.fa-stack-exchange:before {
content: ""; }
.fa-arrow-circle-o-right:before {
content: ""; }
.fa-arrow-circle-o-left:before {
content: ""; }
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: ""; }
.fa-dot-circle-o:before {
content: ""; }
.fa-wheelchair:before {
content: ""; }
.fa-vimeo-square:before {
content: ""; }
.fa-turkish-lira:before,
.fa-try:before {
content: ""; }
.fa-plus-square-o:before {
content: ""; }
.esriSignInDialog {
z-index: 9999 !important; }
.dijitTooltipDialogPopup {
z-index: 5000 !important; }
.dijitTooltip, .dijitMenuPopup {
z-index: 9999 !important; }
.jimu-widget-image-discovery {
height: 98%;
width: 100%;
min-width: 332px;
max-width: 332px; }
.jimu-widget-image-discovery .discoveryLogo {
background: url(../images/discovery-logo.png);
height: 62px;
width: 178px;
text-align: center;
margin: 25px auto auto; }
.jimu-widget-image-discovery.hidden, .jimu-widget-image-discovery .hidden {
display: none; }
.jimu-widget-image-discovery .progressBarContainer {
width: 100%; }
.jimu-widget-image-discovery .imageDiscoveryActionsContainer {
min-height: 45px;
width: 100%; }
.jimu-widget-image-discovery .resultsWidgetContainer {
height: 100%;
overflow: auto; }
.jimu-widget-image-discovery .resultsWidgetContainer .imageDiscoveryResultsWidgetContainer {
height: 87%;
width: 98%; }
.clearDrawAreaIcon, .clearResultsIcon {
background: #D80000;
padding: 5px 0; }
.imageDiscoverySearchIcon {
opacity: .6;
font-size: 15pt;
padding: 5px 0 5px 2px;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.imageDiscoverySearchIcon.active {
color: #FFEF00; }
.imageDiscoverySearchIcon:hover {
opacity: .8; }
.imageDiscoverySearchIcon.enabled {
opacity: 1; }
.imageDiscoveryCheckoutContainer {
width: 100%;
background: white;
position: relative; }
.imageDiscoveryCheckoutContainer .jimu-btn {
padding: 6px; }
.imageDiscoveryCheckoutContainer .clearButton {
float: left;
background: #D80000; }
.imageDiscoveryCheckoutContainer .reviewButton {
min-width: 150px;
position: absolute;
right: 0;
top: 20px; }
.imageDiscoveryCheckoutContainer .reviewButton.pending {
background: gray;
opacity: .6;
cursor: default; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry {
margin: 2px 0; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry.cartItemCountLabel {
float: right;
margin-right: 10px; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailsEntry.cartItemTotalCostEntry {
padding-top: 8px; }
.imageDiscoveryCheckoutContainer .orderDetailsContainer .orderDetailLabel {
margin-right: 3px; }
.imageDiscoveryBeforeSearchInfo ul, .imageDiscoveryDuringSearchInfo ul {
margin: 0;
padding: 5px; }
.imageDiscoveryBeforeSearchInfo ul li, .imageDiscoveryDuringSearchInfo ul li {
margin: 10px 0; }
.imageDiscoveryBeforeSearchInfo ul li .tutorialMarkerIcon, .imageDiscoveryDuringSearchInfo ul li .tutorialMarkerIcon {
color: #485566;
font-size: 14pt;
margin-right: 3px; }
.imageDiscoveryBeforeSearchInfo ul li .searchInfoExtraTextList, .imageDiscoveryDuringSearchInfo ul li .searchInfoExtraTextList {
padding: 0;
margin: 0 0 0 30px; }
.imageDiscoveryBeforeSearchInfo ul li .tutorialHeaderText, .imageDiscoveryDuringSearchInfo ul li .tutorialHeaderText {
font-weight: bold;
margin-top: 20px; }
.imageDiscoveryMessage {
margin-left: 7px; }
.imageDiscoveryMessage .fa {
margin-right: 3px; }
.imageDiscoveryMessage .header {
font-size: 12pt;
margin-bottom: 5px; }
.genericDiscoveryButton {
opacity: .6;
opacity: .6;
font-size: 14pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
cursor: pointer; }
.genericDiscoveryButton:hover {
opacity: .8; }
.genericDiscoveryButton.enabled {
opacity: 1; }
.genericDiscoveryButton.errorButton {
background: #D80000; }
.discoverLabel {
margin: 10px 0;
color: gray; }
.imageDiscoveryActionsContainer {
height: 65px; }
.discoveryIcon {
cursor: pointer;
background: url(../images/discoverSprite.png);
height: 32px;
width: 32px;
float: left;
margin: 0 10px; }
.discoveryIcon.byExtentUnselected {
background-position: 0 0; }
.discoveryIcon.byExtentSelected {
background-position: 0 -96px; }
.discoveryIcon.byBoundsUnselected {
background-position: 0 -32px; }
.discoveryIcon.byBoundsSelected {
background-position: 0 -128px; }
.discoveryIcon.byUploadUnselected {
background-position: 0 -64px; }
.discoveryIcon.byUploadSelected {
background-position: 0 -160px; }
.discoveryIcon.byPointUnselected {
background-position: 0 -193px; }
.discoveryIcon.byPointSelected {
background-position: 0 -224px; }
.discoveryIcon.byRectangleUnselected {
background-position: 0 -257px; }
.discoveryIcon.byRectangleSelected {
background-position: 0 -290px; }
.discoveryPointAdvancedToggleContainer {
height: 20px;
cursor: pointer; }
.discoveryActionSearchByBoundsInputs, .discoveryActionSearchByPointInputs {
width: 100%;
background: ghostwhite;
border: 1px solid #DFDFDF;
border-radius: 5px 5px 5px 5px;
padding: 7px;
min-height: 125px; }
.searchByBoundsDescriptionLbl {
font-size: 9pt;
text-align: left;
margin-left: 10%; }
.searchByUTMEntry {
margin: 5px 0 5px 20%;
text-align: left; }
.searchByBoundsInputUTMLbl {
float: left;
width: 80px;
font-size: 9pt; }
.searchByBoundsRadioLbl {
vertical-align: middle; }
.searchByBoundsContentsContainer {
margin-top: 10px; }
.searchByPointUnitsSelect {
margin: 10px 0; }
.searchByBoundsHeaderLbl, .pointBufferHeaderLbl {
text-align: left;
margin: 5px 0 3px 3px;
font-size: 9pt; }
.searchByBoundsInputLbl {
font-size: 9pt;
margin-left: 7px;
margin-right: 2px; }
.searchByBoundsInputDMSLbl {
font-size: 9pt; }
.searchByBoundsActionContainer {
float: right;
margin-right: 5%;
margin-top: 10px; }
.imageDiscoveryFindButton {
position: absolute;
top: 10px;
right: 10px; }
.imageDiscoveryFindButton .fa {
margin-right: 3px;
color: white; }
.imageDiscoveryFindButton .imageDiscoveryFindText {
font-size: 8pt; }
.pointToRectangleIcon {
font-size: 12pt;
padding: 5px 0;
text-align: center;
min-width: 28px;
color: #F8F8FF;
background: #485566;
margin-right: 5px;
cursor: pointer; }
.pointToRectangleIcon.active {
color: #FFEF00; }
.imageDiscoverySearchFilter .startDateContainer * .dijitArrowButtonInner, .imageDiscoverySearchFilter .endDateContainer * .dijitArrowButtonInner {
border-right: 1px solid #b5bcc7; }
/*# sourceMappingURL=style.css.map */
| 0.317215 | 0.048858 |
@mixin timing-function {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes Toastify__bounceInRight {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
@keyframes Toastify__bounceInLeft {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes Toastify__bounceInUp {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes Toastify__bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
@keyframes Toastify__bounceInDown {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
Toastify__bounce-enter {
&--top-left,
&--bottom-left {
animation-name: Toastify__bounceInLeft;
}
&--top-right,
&--bottom-right {
animation-name: Toastify__bounceInRight;
}
&--top-center {
animation-name: Toastify__bounceInDown;
}
&--bottom-center {
animation-name: Toastify__bounceInUp;
}
}
Toastify__bounce-exit {
&--top-left,
&--bottom-left {
animation-name: Toastify__bounceOutLeft;
}
&--top-right,
&--bottom-right {
animation-name: Toastify__bounceOutRight;
}
&--top-center {
animation-name: Toastify__bounceOutUp;
}
&--bottom-center {
animation-name: Toastify__bounceOutDown;
}
}
|
containers/Layout/styles/toast/animations/_bounce.css
|
@mixin timing-function {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes Toastify__bounceInRight {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
@keyframes Toastify__bounceInLeft {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes Toastify__bounceInUp {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes Toastify__bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
@keyframes Toastify__bounceInDown {
from,
60%,
75%,
90%,
to {
@include timing-function;
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
@keyframes Toastify__bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
Toastify__bounce-enter {
&--top-left,
&--bottom-left {
animation-name: Toastify__bounceInLeft;
}
&--top-right,
&--bottom-right {
animation-name: Toastify__bounceInRight;
}
&--top-center {
animation-name: Toastify__bounceInDown;
}
&--bottom-center {
animation-name: Toastify__bounceInUp;
}
}
Toastify__bounce-exit {
&--top-left,
&--bottom-left {
animation-name: Toastify__bounceOutLeft;
}
&--top-right,
&--bottom-right {
animation-name: Toastify__bounceOutRight;
}
&--top-center {
animation-name: Toastify__bounceOutUp;
}
&--bottom-center {
animation-name: Toastify__bounceOutDown;
}
}
| 0.576184 | 0.308112 |
body{
margin:0;
padding: 0;
}
body,html{
width:100%;
height: 100%
}
.total{
width:100%;
height:100%;
/* position: relative;*/
}
.topper{
width: 100%;
height:75px;
background:url(../img/nav_bg.gif) repeat-x;
background-size: 100% 100%;
}
.one{
width:15%;
height: 100%;
float: left;
}
.one img{
width:90%;
height:60%;
margin-left: 5%;
margin-top: 7%;
}
.mid{
width: 69%;
height: 100%;
float: left;
}
/*.mid ul li{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
.mid ul li{
width: 90px;
float: left;
}
.mid img{
width: 30%;
height: 30px;
margin-top: 12%;
margin-left:35%;
}
.mid span{
width:90px;
height:25px;
line-height:25px;
border-radius: 4px 4px 0 0;
color: white;padding: 2px 10px;
text-align:center;
display:block;
}
.cha1{
height: 30px !important;
background: white !important;
color: black !important;
border-radius: 2px;
}
.midul>li>a{
display: block;
}
.midul>li:hover .changecolor{
width: 90px;
height: 25px;
background: white;
color: black;
display: block;
}
.mid ul li a{
text-decoration: none;
}
.next{
display: none;
width: 90px;
height:60px;
position: absolute;
margin-left: -40px
}
.next > li{
text-align: center;
}
.next > ul > li > a{
display: block;
width: 90px;
height: 40px;
color: black;
font-size: 12px;
background:#DBD3D3;
border-radius: 0 0 3px 3px;
text-align: center;
padding: 10px 5px;
z-index: 1999;
}
.mid li:hover .next{
display:block;
}
.next:hover .changecolor{
background: #fff;
}
.photo1:hover{
background: url(../images/sec1.png);
background-size: 100% 100%;
}
.photo2:hover{
background: url(../images/sec2.png);
background-size: 100% 100%;
}
.photo3:hover{
background: url(../images/sec3.png);
background-size: 100% 100%;
}
.photo4:hover{
background: url(../images/sec4.png);
background-size: 100% 100%;
}
.photo5:hover{
background: url(../images/sec5.png);
background-size: 100% 100%;
}*/
.two{
width:16%;
height: 100%;
float: right;
}
.two ul {
list-style: none;
margin: 0px;
}
.two ul li {
width:60px;
float:left;
padding:25px 5px;
}
.two ul li a span{
font-size: 18px;
color: white;
}
.le_1{
width:50px;
height: 50px;
}
.le_1 img{
width: 100%;
height: 100%;
border-radius: 100%;
margin-top: -12px;
}
/*头部结束*/
.box{
width:100%;
/*height:89%;*/
}
.sidebar-collapse{
width: 15%;
/*height:89%;*/
position:absolute;
top:75px;
bottom: 0px;
float: left;
background-color:#f9f9f9;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0.1);
}
.sidebar-collapse .nav > li > a {
padding: 15px 15px;
text-indent:3%;
font-size:16px;
color:gray;
padding: 15px 25px;
}
.sidebar-collapse .nav .lione > a{
box-shadow:0px 0px 3px #ccc inset;
}
.sidebar-collapse .nav > li > a:hover{
color:#2896ef;
}
.lione > a > span{
color:gray;
}
.lione > a > span:nth-child(2n){
color:gray;
font-size:10px;
margin-left:10px;
margin-top: 8px;
}
.lione > a > span:nth-child(2n):hover{
transform:rotate(90deg);
-ms-transform:rotate(90deg); /* IE 9 */
-webkit-transform:rotate(90deg); /* Safari and Chrome */
}
.out{
background-color:#f9f9f9;
}
.out1 span{
font-size:12px;
}
.sidebar-collapse .nav > li > a:hover{
background-color:#63b7dc;
outline: 0;
}
.nav-second-level{
display: none;
}
.nav-second-level > li > a{
background-color:white;
line-height:10px;
}
.nav-second-level > li > a > span{
margin-left: 10px;
}
#ifr{
border: none;
width: 85%;
/*height: 89%;*/
left:15%;
top:75px;
position: absolute;
float: left;
/* background-image: url(../images/wel.gif);
background-position: 50% 50%;
background-size: 70%;
background-repeat: no-repeat;*/
}
#date{
width: 100%;
height:50px;
color: #2896ef;
line-height: 50px;
background:#f9f9f9;
font-size: 20px;
text-align: center;
}
@media (max-width: 1200px){
.sidebar-collapse .nav > li > a {
font-size: 12px;
}
}
@media (max-width: 1000px){
.sidebar-collapse .nav > li > a {
font-size: 11px;
}
.two{
display: none;
}
}
@media (max-width: 800px){
#date {
font-size:16px;
}
.lione > a > span:nth-child(2n){
display: none;
}
}
|
css/index.css
|
body{
margin:0;
padding: 0;
}
body,html{
width:100%;
height: 100%
}
.total{
width:100%;
height:100%;
/* position: relative;*/
}
.topper{
width: 100%;
height:75px;
background:url(../img/nav_bg.gif) repeat-x;
background-size: 100% 100%;
}
.one{
width:15%;
height: 100%;
float: left;
}
.one img{
width:90%;
height:60%;
margin-left: 5%;
margin-top: 7%;
}
.mid{
width: 69%;
height: 100%;
float: left;
}
/*.mid ul li{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
.mid ul li{
width: 90px;
float: left;
}
.mid img{
width: 30%;
height: 30px;
margin-top: 12%;
margin-left:35%;
}
.mid span{
width:90px;
height:25px;
line-height:25px;
border-radius: 4px 4px 0 0;
color: white;padding: 2px 10px;
text-align:center;
display:block;
}
.cha1{
height: 30px !important;
background: white !important;
color: black !important;
border-radius: 2px;
}
.midul>li>a{
display: block;
}
.midul>li:hover .changecolor{
width: 90px;
height: 25px;
background: white;
color: black;
display: block;
}
.mid ul li a{
text-decoration: none;
}
.next{
display: none;
width: 90px;
height:60px;
position: absolute;
margin-left: -40px
}
.next > li{
text-align: center;
}
.next > ul > li > a{
display: block;
width: 90px;
height: 40px;
color: black;
font-size: 12px;
background:#DBD3D3;
border-radius: 0 0 3px 3px;
text-align: center;
padding: 10px 5px;
z-index: 1999;
}
.mid li:hover .next{
display:block;
}
.next:hover .changecolor{
background: #fff;
}
.photo1:hover{
background: url(../images/sec1.png);
background-size: 100% 100%;
}
.photo2:hover{
background: url(../images/sec2.png);
background-size: 100% 100%;
}
.photo3:hover{
background: url(../images/sec3.png);
background-size: 100% 100%;
}
.photo4:hover{
background: url(../images/sec4.png);
background-size: 100% 100%;
}
.photo5:hover{
background: url(../images/sec5.png);
background-size: 100% 100%;
}*/
.two{
width:16%;
height: 100%;
float: right;
}
.two ul {
list-style: none;
margin: 0px;
}
.two ul li {
width:60px;
float:left;
padding:25px 5px;
}
.two ul li a span{
font-size: 18px;
color: white;
}
.le_1{
width:50px;
height: 50px;
}
.le_1 img{
width: 100%;
height: 100%;
border-radius: 100%;
margin-top: -12px;
}
/*头部结束*/
.box{
width:100%;
/*height:89%;*/
}
.sidebar-collapse{
width: 15%;
/*height:89%;*/
position:absolute;
top:75px;
bottom: 0px;
float: left;
background-color:#f9f9f9;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0.1);
}
.sidebar-collapse .nav > li > a {
padding: 15px 15px;
text-indent:3%;
font-size:16px;
color:gray;
padding: 15px 25px;
}
.sidebar-collapse .nav .lione > a{
box-shadow:0px 0px 3px #ccc inset;
}
.sidebar-collapse .nav > li > a:hover{
color:#2896ef;
}
.lione > a > span{
color:gray;
}
.lione > a > span:nth-child(2n){
color:gray;
font-size:10px;
margin-left:10px;
margin-top: 8px;
}
.lione > a > span:nth-child(2n):hover{
transform:rotate(90deg);
-ms-transform:rotate(90deg); /* IE 9 */
-webkit-transform:rotate(90deg); /* Safari and Chrome */
}
.out{
background-color:#f9f9f9;
}
.out1 span{
font-size:12px;
}
.sidebar-collapse .nav > li > a:hover{
background-color:#63b7dc;
outline: 0;
}
.nav-second-level{
display: none;
}
.nav-second-level > li > a{
background-color:white;
line-height:10px;
}
.nav-second-level > li > a > span{
margin-left: 10px;
}
#ifr{
border: none;
width: 85%;
/*height: 89%;*/
left:15%;
top:75px;
position: absolute;
float: left;
/* background-image: url(../images/wel.gif);
background-position: 50% 50%;
background-size: 70%;
background-repeat: no-repeat;*/
}
#date{
width: 100%;
height:50px;
color: #2896ef;
line-height: 50px;
background:#f9f9f9;
font-size: 20px;
text-align: center;
}
@media (max-width: 1200px){
.sidebar-collapse .nav > li > a {
font-size: 12px;
}
}
@media (max-width: 1000px){
.sidebar-collapse .nav > li > a {
font-size: 11px;
}
.two{
display: none;
}
}
@media (max-width: 800px){
#date {
font-size:16px;
}
.lione > a > span:nth-child(2n){
display: none;
}
}
| 0.161155 | 0.058696 |
div.olMap {
z-index: 0;
padding: 0px !important;
margin: 0px !important;
cursor: default;
}
div.olMapViewport {
text-align: left;
}
div.olLayerDiv {
-moz-user-select: none;
}
.olControlAttribution {
font-size: smaller;
right: 3px;
bottom: 4.5em;
position: absolute;
display: block;
}
.olControlScale {
right: 3px;
bottom: 3em;
display: block;
position: absolute;
font-size: smaller;
}
.olControlScaleLine {
display: block;
position: absolute;
left: 10px;
bottom: 15px;
font-size: xx-small;
}
.olControlScaleLineBottom {
border: solid 2px black;
border-bottom: none;
margin-top: -2px;
text-align: center;
}
.olControlScaleLineTop {
border: solid 2px black;
border-top: none;
text-align: center;
}
.olControlPermalink {
right: 3px;
bottom: 1.5em;
display: block;
position: absolute;
font-size: smaller;
}
div.olControlMousePosition {
bottom: 0em;
right: 3px;
display: block;
position: absolute;
font-family: Arial;
font-size: smaller;
}
.olControlOverviewMapContainer {
position: absolute;
bottom: 0px;
right: 0px;
}
.olControlOverviewMapElement {
padding: 10px 18px 10px 10px;
background-color: #00008B;
-moz-border-radius: 1em 0 0 0;
}
.olControlOverviewMapMinimizeButton {
right: 0px;
bottom: 80px;
}
.olControlOverviewMapMaximizeButton {
right: 0px;
bottom: 80px;
}
.olControlOverviewMapExtentRectangle {
overflow: hidden;
background-image: url("/media/blank.gif");
cursor: move;
border: 2px dotted red;
}
.olControlOverviewMapRectReplacement {
overflow: hidden;
cursor: move;
background-image: url("/media/overview_replacement.gif");
background-repeat: no-repeat;
background-position: center;
}
.olLayerGeoRSSDescription {
float: left;
width: 100%;
overflow: auto;
font-size: 1.0em;
}
.olLayerGeoRSSClose {
float: right;
color: gray;
font-size: 1.2em;
margin-right: 6px;
font-family: sans-serif;
}
.olLayerGeoRSSTitle {
float: left;
font-size: 1.2em;
}
.olPopupContent {
padding: 5px;
overflow: auto;
}
.olControlNavToolbar {
width: 0px;
height: 0px;
}
.olControlNavToolbar div {
display: block;
width: 28px;
height: 28px;
top: 300px;
left: 6px;
position: relative;
}
/*.olControlNavigationHistory {
background-repeat: no-repeat;
width: 24px;
height: 24px;
}*/
.olControlNavToolbar .olControlNavigationItemActive {
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlNavigationItemInactive {
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlZoomBoxItemActive {
background-color: orange;
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlZoomBoxItemInactive {
background-repeat: no-repeat;
}
.olControlEditingToolbar {
float: right;
right: 0px;
height: 30px;
width: 200px;
}
.olControlEditingToolbar div {
background-image: url("/media/editing_tool_bar.png");
background-repeat: no-repeat;
float: right;
width: 24px;
height: 24px;
margin: 5px;
}
.olControlEditingToolbar .olControlNavigationItemActive {
background-position: -103px -23px;
}
.olControlEditingToolbar .olControlNavigationItemInactive {
background-position: -103px -0px;
}
.olControlEditingToolbar .olControlDrawFeaturePointItemActive {
background-position: -77px -23px;
}
.olControlEditingToolbar .olControlDrawFeaturePointItemInactive {
background-position: -77px -0px;
}
.olControlEditingToolbar .olControlDrawFeaturePathItemInactive {
background-position: -51px 0px;
}
.olControlEditingToolbar .olControlDrawFeaturePathItemActive {
background-position: -51px -23px;
}
.olControlEditingToolbar .olControlDrawFeaturePolygonItemInactive {
background-position: -26px 0px;
}
.olControlEditingToolbar .olControlDrawFeaturePolygonItemActive {
background-position: -26px -23px;
}
div.olControlSaveFeaturesItemActive {
background-image: url(/media/save_features_on.png);
background-repeat: no-repeat;
background-position: 0px 1px;
}
div.olControlSaveFeaturesItemInactive {
background-image: url(/media/save_features_off.png);
background-repeat: no-repeat;
background-position: 0px 1px;
}
.olHandlerBoxZoomBox {
border: 2px solid red;
position: absolute;
background-color: white;
opacity: 0.50;
font-size: 1px;
filter: alpha(opacity = 50);
}
.olHandlerBoxSelectFeature {
border: 2px solid blue;
position: absolute;
background-color: white;
opacity: 0.50;
font-size: 1px;
filter: alpha(opacity = 50);
}
.olControlPanPanel {
top: 10px;
left: 5px;
}
.olControlPanPanel div {
background-image: url(/media/pan-panel.png);
height: 18px;
width: 18px;
cursor: pointer;
position: absolute;
}
.olControlPanPanel .olControlPanNorthItemInactive {
top: 0px;
left: 9px;
background-position: 0px 0px;
}
.olControlPanPanel .olControlPanSouthItemInactive {
top: 36px;
left: 9px;
background-position: 18px 0px;
}
.olControlPanPanel .olControlPanWestItemInactive {
position: absolute;
top: 18px;
left: 0px;
background-position: 0px 18px;
}
.olControlPanPanel .olControlPanEastItemInactive {
top: 18px;
left: 18px;
background-position: 18px 18px;
}
.olControlZoomPanel {
top: 71px;
left: 14px;
}
.olControlZoomPanel div {
background-image: url(/media/zoom-panel.png);
position: absolute;
height: 18px;
width: 18px;
cursor: pointer;
}
.olControlZoomPanel .olControlZoomInItemInactive {
top: 0px;
left: 0px;
background-position: 0px 0px;
}
.olControlZoomPanel .olControlZoomToMaxExtentItemInactive {
top: 18px;
left: 0px;
background-position: 0px -18px;
}
.olControlZoomPanel .olControlZoomOutItemInactive {
top: 36px;
left: 0px;
background-position: 0px 18px;
}
.olPopupCloseBox {
background: url("/media/close.gif") no-repeat;
cursor: pointer;
}
.olFramedCloudPopupContent {
padding: 5px;
overflow: auto;
}
.olControlNoSelect {
-moz-user-select: none;
}
.olImageLoadError {
background-color: pink;
opacity: 0.5;
filter: alpha(opacity = 50); /* IE */
}
/**
* Cursor styles
*/
.olCursorWait {
cursor: wait;
}
.olDragDown {
cursor: move;
}
.olDrawBox {
cursor: crosshair;
}
.olControlDragFeatureOver {
cursor: move;
}
.olControlDragFeatureActive.olControlDragFeatureOver.olDragDown {
cursor: -moz-grabbing;
}
/**
* Layer switcher
*/
.olControlLayerSwitcher {
position: absolute;
top: 25px;
right: 0px;
width: 20em;
font-family: sans-serif;
font-weight: bold;
margin-top: 3px;
margin-left: 3px;
margin-bottom: 3px;
font-size: smaller;
color: white;
background-color: transparent;
}
.olControlLayerSwitcher .layersDiv {
padding-top: 5px;
padding-left: 10px;
padding-bottom: 5px;
padding-right: 75px;
background-color: darkblue;
width: 100%;
height: 100%;
}
.olControlLayerSwitcher .layersDiv .baseLbl,.olControlLayerSwitcher .layersDiv .dataLbl
{
margin-top: 3px;
margin-left: 3px;
margin-bottom: 3px;
}
.olControlLayerSwitcher .layersDiv .baseLayersDiv,.olControlLayerSwitcher .layersDiv .dataLayersDiv
{
padding-left: 10px;
}
.olControlLayerSwitcher .maximizeDiv,.olControlLayerSwitcher .minimizeDiv
{
top: 5px;
right: 0px;
}
|
js/openlayers/OpenLayers-2.11/theme/default/style.css
|
div.olMap {
z-index: 0;
padding: 0px !important;
margin: 0px !important;
cursor: default;
}
div.olMapViewport {
text-align: left;
}
div.olLayerDiv {
-moz-user-select: none;
}
.olControlAttribution {
font-size: smaller;
right: 3px;
bottom: 4.5em;
position: absolute;
display: block;
}
.olControlScale {
right: 3px;
bottom: 3em;
display: block;
position: absolute;
font-size: smaller;
}
.olControlScaleLine {
display: block;
position: absolute;
left: 10px;
bottom: 15px;
font-size: xx-small;
}
.olControlScaleLineBottom {
border: solid 2px black;
border-bottom: none;
margin-top: -2px;
text-align: center;
}
.olControlScaleLineTop {
border: solid 2px black;
border-top: none;
text-align: center;
}
.olControlPermalink {
right: 3px;
bottom: 1.5em;
display: block;
position: absolute;
font-size: smaller;
}
div.olControlMousePosition {
bottom: 0em;
right: 3px;
display: block;
position: absolute;
font-family: Arial;
font-size: smaller;
}
.olControlOverviewMapContainer {
position: absolute;
bottom: 0px;
right: 0px;
}
.olControlOverviewMapElement {
padding: 10px 18px 10px 10px;
background-color: #00008B;
-moz-border-radius: 1em 0 0 0;
}
.olControlOverviewMapMinimizeButton {
right: 0px;
bottom: 80px;
}
.olControlOverviewMapMaximizeButton {
right: 0px;
bottom: 80px;
}
.olControlOverviewMapExtentRectangle {
overflow: hidden;
background-image: url("/media/blank.gif");
cursor: move;
border: 2px dotted red;
}
.olControlOverviewMapRectReplacement {
overflow: hidden;
cursor: move;
background-image: url("/media/overview_replacement.gif");
background-repeat: no-repeat;
background-position: center;
}
.olLayerGeoRSSDescription {
float: left;
width: 100%;
overflow: auto;
font-size: 1.0em;
}
.olLayerGeoRSSClose {
float: right;
color: gray;
font-size: 1.2em;
margin-right: 6px;
font-family: sans-serif;
}
.olLayerGeoRSSTitle {
float: left;
font-size: 1.2em;
}
.olPopupContent {
padding: 5px;
overflow: auto;
}
.olControlNavToolbar {
width: 0px;
height: 0px;
}
.olControlNavToolbar div {
display: block;
width: 28px;
height: 28px;
top: 300px;
left: 6px;
position: relative;
}
/*.olControlNavigationHistory {
background-repeat: no-repeat;
width: 24px;
height: 24px;
}*/
.olControlNavToolbar .olControlNavigationItemActive {
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlNavigationItemInactive {
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlZoomBoxItemActive {
background-color: orange;
background-repeat: no-repeat;
}
.olControlNavToolbar .olControlZoomBoxItemInactive {
background-repeat: no-repeat;
}
.olControlEditingToolbar {
float: right;
right: 0px;
height: 30px;
width: 200px;
}
.olControlEditingToolbar div {
background-image: url("/media/editing_tool_bar.png");
background-repeat: no-repeat;
float: right;
width: 24px;
height: 24px;
margin: 5px;
}
.olControlEditingToolbar .olControlNavigationItemActive {
background-position: -103px -23px;
}
.olControlEditingToolbar .olControlNavigationItemInactive {
background-position: -103px -0px;
}
.olControlEditingToolbar .olControlDrawFeaturePointItemActive {
background-position: -77px -23px;
}
.olControlEditingToolbar .olControlDrawFeaturePointItemInactive {
background-position: -77px -0px;
}
.olControlEditingToolbar .olControlDrawFeaturePathItemInactive {
background-position: -51px 0px;
}
.olControlEditingToolbar .olControlDrawFeaturePathItemActive {
background-position: -51px -23px;
}
.olControlEditingToolbar .olControlDrawFeaturePolygonItemInactive {
background-position: -26px 0px;
}
.olControlEditingToolbar .olControlDrawFeaturePolygonItemActive {
background-position: -26px -23px;
}
div.olControlSaveFeaturesItemActive {
background-image: url(/media/save_features_on.png);
background-repeat: no-repeat;
background-position: 0px 1px;
}
div.olControlSaveFeaturesItemInactive {
background-image: url(/media/save_features_off.png);
background-repeat: no-repeat;
background-position: 0px 1px;
}
.olHandlerBoxZoomBox {
border: 2px solid red;
position: absolute;
background-color: white;
opacity: 0.50;
font-size: 1px;
filter: alpha(opacity = 50);
}
.olHandlerBoxSelectFeature {
border: 2px solid blue;
position: absolute;
background-color: white;
opacity: 0.50;
font-size: 1px;
filter: alpha(opacity = 50);
}
.olControlPanPanel {
top: 10px;
left: 5px;
}
.olControlPanPanel div {
background-image: url(/media/pan-panel.png);
height: 18px;
width: 18px;
cursor: pointer;
position: absolute;
}
.olControlPanPanel .olControlPanNorthItemInactive {
top: 0px;
left: 9px;
background-position: 0px 0px;
}
.olControlPanPanel .olControlPanSouthItemInactive {
top: 36px;
left: 9px;
background-position: 18px 0px;
}
.olControlPanPanel .olControlPanWestItemInactive {
position: absolute;
top: 18px;
left: 0px;
background-position: 0px 18px;
}
.olControlPanPanel .olControlPanEastItemInactive {
top: 18px;
left: 18px;
background-position: 18px 18px;
}
.olControlZoomPanel {
top: 71px;
left: 14px;
}
.olControlZoomPanel div {
background-image: url(/media/zoom-panel.png);
position: absolute;
height: 18px;
width: 18px;
cursor: pointer;
}
.olControlZoomPanel .olControlZoomInItemInactive {
top: 0px;
left: 0px;
background-position: 0px 0px;
}
.olControlZoomPanel .olControlZoomToMaxExtentItemInactive {
top: 18px;
left: 0px;
background-position: 0px -18px;
}
.olControlZoomPanel .olControlZoomOutItemInactive {
top: 36px;
left: 0px;
background-position: 0px 18px;
}
.olPopupCloseBox {
background: url("/media/close.gif") no-repeat;
cursor: pointer;
}
.olFramedCloudPopupContent {
padding: 5px;
overflow: auto;
}
.olControlNoSelect {
-moz-user-select: none;
}
.olImageLoadError {
background-color: pink;
opacity: 0.5;
filter: alpha(opacity = 50); /* IE */
}
/**
* Cursor styles
*/
.olCursorWait {
cursor: wait;
}
.olDragDown {
cursor: move;
}
.olDrawBox {
cursor: crosshair;
}
.olControlDragFeatureOver {
cursor: move;
}
.olControlDragFeatureActive.olControlDragFeatureOver.olDragDown {
cursor: -moz-grabbing;
}
/**
* Layer switcher
*/
.olControlLayerSwitcher {
position: absolute;
top: 25px;
right: 0px;
width: 20em;
font-family: sans-serif;
font-weight: bold;
margin-top: 3px;
margin-left: 3px;
margin-bottom: 3px;
font-size: smaller;
color: white;
background-color: transparent;
}
.olControlLayerSwitcher .layersDiv {
padding-top: 5px;
padding-left: 10px;
padding-bottom: 5px;
padding-right: 75px;
background-color: darkblue;
width: 100%;
height: 100%;
}
.olControlLayerSwitcher .layersDiv .baseLbl,.olControlLayerSwitcher .layersDiv .dataLbl
{
margin-top: 3px;
margin-left: 3px;
margin-bottom: 3px;
}
.olControlLayerSwitcher .layersDiv .baseLayersDiv,.olControlLayerSwitcher .layersDiv .dataLayersDiv
{
padding-left: 10px;
}
.olControlLayerSwitcher .maximizeDiv,.olControlLayerSwitcher .minimizeDiv
{
top: 5px;
right: 0px;
}
| 0.318591 | 0.111725 |
body{
padding: 0;
margin-top: 0;
box-sizing: border-box;
font-family: 'Montserrat' , sans-serif;
}
img {
max-width: 100%;
height: auto;
}
h1{
padding: 0 25px 0 0;
margin-top: 0;
font-size: 2.5em;
font-family: 'Cinzel' , serif;
color: rgb(241, 239, 239);
text-shadow: 2px 2px 8px #000;
}
.button{
text-decoration: none;
padding: 8px;
font-size: .8em;
color: #ddd;
background: #d3001d;
border-radius: 3px;
}
/* Desarrollo Layout - GRID LAYOUT STYLES */
/* Grid-Container - Contenedor Padre */
.container{
display: grid;
/* Definimos 6 columnas que contienen 7 lineas para posicionar elementos */
grid-template-columns: repeat(6, 1fr);
/* Ajustamos el ancho de las filas automaticamente */
grid-auto-rows: minmax(10px , auto);
}
/* Contenedor de elementos */
main {
background: url("/css-grid-responsive/src/img/carrete-3-1280x853.jpg") center;
background-size: cover;
padding: 5rem 2rem;
/* Definimos la longitud del Grid-item - Elemento HIJO descendiente de Grid-Container que los almacena */
grid-column: 1 / 7;
/* Convertimos el elemento 'grid-item' en otro Grid-Container */
display: grid;
/* Cada "Grid-Item" que añadamos al 'Grid-Container' que tendra estas caracteristicas de ajuste */
grid-template-columns: repeat(auto-fit,minmax(280px , 1fr));
/* Centra los elementos 'grid-items' dentro del contenenedor en dirección vertical */
align-items: center;
}
/* Grid-item - Elemento dentro "Main" centrado mediante 'align-items' */
article{
font-family: 'Montserrat', sans-serif;
font-size: 1.4em;
text-shadow: 2px 2px 8px #000;
}
.paragraph{
color: rgb(241, 239, 239);
}
/* Grid-item - Contenedor de elementos */
section {
/* Indicamos la amplitud que tendra 'Grid-Item' */
grid-column: 1 / 7; /* Ocupa todo el ancho */
/* Creamos otro contenedor de elementos dentro del 'Grid-Container' */
display: grid;
/* Cada 'grid-item' se ajustará al ancho del contenedor
y tendra como minimo 330px al reducir la pantalla */
grid-template-columns: repeat(auto-fit, minmax(330px,auto));
/* Centramos contenedor de los elementos en horizontal */
justify-content: center;
}
/* Tarjeta basica aparece descripcion de los elementos */
.card {
width: 300px;
padding: 12px;
color: #333;
border: 1px solid #aaa;
border-radius: 3px;
margin-top: 12px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Imagen principal de la portada de la Tarjeta */
.overlay {
/* Creamos otro 'Grid-Container' para distribuir los elementos 'grid-items'*/
display: grid;
/* Le damos a la columna una anchura fija */
grid-template-columns: 1fr;
/* Ajustamos el ancho de la fila del
elemento a las dimensiones de la imagen teniendo
un minimo de 2px */
grid-auto-rows: minmax(2px , auto);
/* Ajustamos el 'grid-item' en la parte baja del contenedor */
align-items: end;
}
.variety1{
/* Establecemos las medidas del grid-item almacena la imagen
Le asignamos un ancho y una alto en relacion al Grid-Container que lo alberga
en este caso 'overlay' */
grid-column: 1;
grid-row: 1;
z-index: 1;
width: 100%;
height: auto;
}
.variety2{
/* Establecemos las medidas del grid-item almacena la imagen
Le asignamos un ancho y una alto en relacion al Grid-Container que lo alberga
en este caso 'overlay' */
grid-column: 1;
grid-row: 1;
height: 1.3em;
padding: 10px;
z-index: 2;
color: #eee;
font-size: 1.2em;
background-color: rgba(24, 24, 24, 0.7);
}
.description {
margin-top: 10px;
}
footer {
/* Asignamos todo el ancho a la pagina */
grid-column: 1 / 7;
background-color: #d3001d;
color: #eee;
margin-top: 18px;
padding-left: 18px;
}
|
css-grid-concept-basic/css-grid-james-madison-uni/grid-5-responsive-layout-without-media-queries/src/css/css-grid-without-queries-films.css
|
body{
padding: 0;
margin-top: 0;
box-sizing: border-box;
font-family: 'Montserrat' , sans-serif;
}
img {
max-width: 100%;
height: auto;
}
h1{
padding: 0 25px 0 0;
margin-top: 0;
font-size: 2.5em;
font-family: 'Cinzel' , serif;
color: rgb(241, 239, 239);
text-shadow: 2px 2px 8px #000;
}
.button{
text-decoration: none;
padding: 8px;
font-size: .8em;
color: #ddd;
background: #d3001d;
border-radius: 3px;
}
/* Desarrollo Layout - GRID LAYOUT STYLES */
/* Grid-Container - Contenedor Padre */
.container{
display: grid;
/* Definimos 6 columnas que contienen 7 lineas para posicionar elementos */
grid-template-columns: repeat(6, 1fr);
/* Ajustamos el ancho de las filas automaticamente */
grid-auto-rows: minmax(10px , auto);
}
/* Contenedor de elementos */
main {
background: url("/css-grid-responsive/src/img/carrete-3-1280x853.jpg") center;
background-size: cover;
padding: 5rem 2rem;
/* Definimos la longitud del Grid-item - Elemento HIJO descendiente de Grid-Container que los almacena */
grid-column: 1 / 7;
/* Convertimos el elemento 'grid-item' en otro Grid-Container */
display: grid;
/* Cada "Grid-Item" que añadamos al 'Grid-Container' que tendra estas caracteristicas de ajuste */
grid-template-columns: repeat(auto-fit,minmax(280px , 1fr));
/* Centra los elementos 'grid-items' dentro del contenenedor en dirección vertical */
align-items: center;
}
/* Grid-item - Elemento dentro "Main" centrado mediante 'align-items' */
article{
font-family: 'Montserrat', sans-serif;
font-size: 1.4em;
text-shadow: 2px 2px 8px #000;
}
.paragraph{
color: rgb(241, 239, 239);
}
/* Grid-item - Contenedor de elementos */
section {
/* Indicamos la amplitud que tendra 'Grid-Item' */
grid-column: 1 / 7; /* Ocupa todo el ancho */
/* Creamos otro contenedor de elementos dentro del 'Grid-Container' */
display: grid;
/* Cada 'grid-item' se ajustará al ancho del contenedor
y tendra como minimo 330px al reducir la pantalla */
grid-template-columns: repeat(auto-fit, minmax(330px,auto));
/* Centramos contenedor de los elementos en horizontal */
justify-content: center;
}
/* Tarjeta basica aparece descripcion de los elementos */
.card {
width: 300px;
padding: 12px;
color: #333;
border: 1px solid #aaa;
border-radius: 3px;
margin-top: 12px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Imagen principal de la portada de la Tarjeta */
.overlay {
/* Creamos otro 'Grid-Container' para distribuir los elementos 'grid-items'*/
display: grid;
/* Le damos a la columna una anchura fija */
grid-template-columns: 1fr;
/* Ajustamos el ancho de la fila del
elemento a las dimensiones de la imagen teniendo
un minimo de 2px */
grid-auto-rows: minmax(2px , auto);
/* Ajustamos el 'grid-item' en la parte baja del contenedor */
align-items: end;
}
.variety1{
/* Establecemos las medidas del grid-item almacena la imagen
Le asignamos un ancho y una alto en relacion al Grid-Container que lo alberga
en este caso 'overlay' */
grid-column: 1;
grid-row: 1;
z-index: 1;
width: 100%;
height: auto;
}
.variety2{
/* Establecemos las medidas del grid-item almacena la imagen
Le asignamos un ancho y una alto en relacion al Grid-Container que lo alberga
en este caso 'overlay' */
grid-column: 1;
grid-row: 1;
height: 1.3em;
padding: 10px;
z-index: 2;
color: #eee;
font-size: 1.2em;
background-color: rgba(24, 24, 24, 0.7);
}
.description {
margin-top: 10px;
}
footer {
/* Asignamos todo el ancho a la pagina */
grid-column: 1 / 7;
background-color: #d3001d;
color: #eee;
margin-top: 18px;
padding-left: 18px;
}
| 0.329284 | 0.163245 |
@import url('https://fonts.googleapis.com/css?family=Italianno');
/*Type Box Style for contact form page*/
.inputstl {
padding: 9px;
border: solid 1px #4B718B;
outline: 0;
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #CDDBE4), to(#FFFFFF));
background: -moz-linear-gradient(top, #FFFFFF, #CDDBE4 1px, #FFFFFF 25px);
box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
/*NAV BAR Background color*/
.menucls {
background-color: white;
border-color: black; /*Border color of button on mobile*/
}
/*Buon Appetito set text color*/
.menucls .navbar-brand {
color: black;
}
/*Buon Appetito hover text color*/
/*.menucls .navbar-brand:hover, .menucls .navbar-brand:focus {
color: white;
}*/
/*i have no idea what this does*/
.menucls .navbar-text {
color: black;
}
/*NAV BAR text color*/
.menucls .navbar-nav > li > a {
color: black;
}
/*Nav text color hover*/
.menucls .navbar-nav > li > a:hover, .menucls .navbar-nav > li > a:focus {
color: white;
}
/*.menucls .navbar-nav > li > .dropdown-menu {
background-color: pink;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > a {
color: orange;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > a:hover,
.menucls .navbar-nav > li > .dropdown-menu > li > a:focus {
color: black;
background-color: blue;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > .divider {
background-color: #69899f;
}*/
.menucls .navbar-nav > .active > a, .menucls .navbar-nav > .active > a:hover, .menucls .navbar-nav > .active > a:focus {
color: white; /*NAV text color current page*/
background-color: grey; /*NAV background color current page*/
}
/*.menucls .navbar-nav > .open > a, .menucls .navbar-nav > .open > a:hover, .menucls .navbar-nav > .open > a:focus {
color: #e5dbdb;
background-color: #425766;
}*/
/*mobile nav button color*/
.menucls .navbar-toggle {
border-color: grey;
}
/*mobile nav button color*/
.menucls .navbar-toggle:hover, .menucls .navbar-toggle:focus {
background-color: grey;
}
/*NAV bar mobile button color*/
.menucls .navbar-toggle .icon-bar {
background-color: black;
}
/*.menucls .navbar-collapse,
.menucls .navbar-form {
border-color: purple;
}*/
/*.menucls .navbar-link {
color: red;
}*/
/*.menucls .navbar-link:hover {
color: blue;
}*/
@media (max-width: 400px) { /*max width of nav bar before it turns to mobile nav bar*/
/*.menucls .navbar-nav .open .dropdown-menu > li > a {
color: purple;
}*/
/*.menucls .navbar-nav .open .dropdown-menu > li > a:hover, .menucls .navbar-nav .open .dropdown-menu > li > a:focus {
color: green;
}*/
/*.menucls .navbar-nav .open .dropdown-menu > .active > a, .menucls .navbar-nav .open .dropdown-menu > .active > a:hover, .menucls .navbar-nav .open .dropdown-menu > .active > a:focus {
color: green;
background-color: green;
}*/
}
/*NAV text size*/
nav ul {
font-size: 1.25em;
}
a.restfont {
font-family: 'Italianno', cursive;
font-size: 2.5em;
}
.centerblock {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: black;
opacity: .5;
padding: 20px;
color: white
}
.textbox {
padding: 20px;
}
.contact {
text-align: center;
}
.banner {
position: relative;
}
|
css/italian2.css
|
@import url('https://fonts.googleapis.com/css?family=Italianno');
/*Type Box Style for contact form page*/
.inputstl {
padding: 9px;
border: solid 1px #4B718B;
outline: 0;
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #CDDBE4), to(#FFFFFF));
background: -moz-linear-gradient(top, #FFFFFF, #CDDBE4 1px, #FFFFFF 25px);
box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
/*NAV BAR Background color*/
.menucls {
background-color: white;
border-color: black; /*Border color of button on mobile*/
}
/*Buon Appetito set text color*/
.menucls .navbar-brand {
color: black;
}
/*Buon Appetito hover text color*/
/*.menucls .navbar-brand:hover, .menucls .navbar-brand:focus {
color: white;
}*/
/*i have no idea what this does*/
.menucls .navbar-text {
color: black;
}
/*NAV BAR text color*/
.menucls .navbar-nav > li > a {
color: black;
}
/*Nav text color hover*/
.menucls .navbar-nav > li > a:hover, .menucls .navbar-nav > li > a:focus {
color: white;
}
/*.menucls .navbar-nav > li > .dropdown-menu {
background-color: pink;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > a {
color: orange;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > a:hover,
.menucls .navbar-nav > li > .dropdown-menu > li > a:focus {
color: black;
background-color: blue;
}*/
/*.menucls .navbar-nav > li > .dropdown-menu > li > .divider {
background-color: #69899f;
}*/
.menucls .navbar-nav > .active > a, .menucls .navbar-nav > .active > a:hover, .menucls .navbar-nav > .active > a:focus {
color: white; /*NAV text color current page*/
background-color: grey; /*NAV background color current page*/
}
/*.menucls .navbar-nav > .open > a, .menucls .navbar-nav > .open > a:hover, .menucls .navbar-nav > .open > a:focus {
color: #e5dbdb;
background-color: #425766;
}*/
/*mobile nav button color*/
.menucls .navbar-toggle {
border-color: grey;
}
/*mobile nav button color*/
.menucls .navbar-toggle:hover, .menucls .navbar-toggle:focus {
background-color: grey;
}
/*NAV bar mobile button color*/
.menucls .navbar-toggle .icon-bar {
background-color: black;
}
/*.menucls .navbar-collapse,
.menucls .navbar-form {
border-color: purple;
}*/
/*.menucls .navbar-link {
color: red;
}*/
/*.menucls .navbar-link:hover {
color: blue;
}*/
@media (max-width: 400px) { /*max width of nav bar before it turns to mobile nav bar*/
/*.menucls .navbar-nav .open .dropdown-menu > li > a {
color: purple;
}*/
/*.menucls .navbar-nav .open .dropdown-menu > li > a:hover, .menucls .navbar-nav .open .dropdown-menu > li > a:focus {
color: green;
}*/
/*.menucls .navbar-nav .open .dropdown-menu > .active > a, .menucls .navbar-nav .open .dropdown-menu > .active > a:hover, .menucls .navbar-nav .open .dropdown-menu > .active > a:focus {
color: green;
background-color: green;
}*/
}
/*NAV text size*/
nav ul {
font-size: 1.25em;
}
a.restfont {
font-family: 'Italianno', cursive;
font-size: 2.5em;
}
.centerblock {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: black;
opacity: .5;
padding: 20px;
color: white
}
.textbox {
padding: 20px;
}
.contact {
text-align: center;
}
.banner {
position: relative;
}
| 0.329823 | 0.049199 |
@font-face {
font-family: Phosphate;
src: url(../fonts/Phosphate.ttf);
}
@font-face{
font-family: Helvetica;
src: url(../fonts/hel.ttf);
}
/* introductie */
/* Voeg jouw css hieraan toe */
html,body {
height: auto;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
letter-spacing: -.022em;
font-synthesis: none;
-moz-font-feature-settings: 'kern';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #333;
line-height: 1.5em;
padding: 25px;
display: flex;
flex-direction: column;
align-items: center;
}
body h1 {
font-family: Phosphate;
font-size: 4em;
height: 1.6em;
line-height: 1.6em;
width: auto;
display: inline-block;
color: #FBFADF;
background-color: #B3DBCF
}
article{
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
}
article p {
display: inline-block;
}
article h2 {
text-align: center;
}
#titel_first{
font-family: phosphate;
font-size: 55px;
color: black
}
#titel_second{
font-family: phosphate;
font-size: 41px;
color: black;
margin-top:67px;
}
#logo {
width: 45%;
display: inline-block;
}
#titel_container{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 45%;
}
#titel_container div{
display: flex;
flex-direction: column;
}
#text_container {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 45%;
}
.tekst_preview{
width: 39%
}
#bold {
Font-family: Helvetica;
}
#light {
font-family: Helvetica;
}
#colors {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 75%;
}
#colors div {
height: 25%;
width:15%;
text-align: center;
}
#colors div:nth-child(1){
background-color: #B3DBCF;
}
#colors div:nth-child(2){
background-color: #FBFADF;
}
#colors div:nth-child(3){
background-color:#c0c316;
}
#colors div:nth-child(4){
background-color:#e25613;
}
#navigatie{
width: 30%;
}
#homeknop:hover{
width: 30%;
}
#tipi:hover{
width: 35%;
}
#hut:hover{
width: 40%;
}
#kopen:hover{
width:40%;
}
|
pages/css/pages.css
|
@font-face {
font-family: Phosphate;
src: url(../fonts/Phosphate.ttf);
}
@font-face{
font-family: Helvetica;
src: url(../fonts/hel.ttf);
}
/* introductie */
/* Voeg jouw css hieraan toe */
html,body {
height: auto;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
letter-spacing: -.022em;
font-synthesis: none;
-moz-font-feature-settings: 'kern';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #333;
line-height: 1.5em;
padding: 25px;
display: flex;
flex-direction: column;
align-items: center;
}
body h1 {
font-family: Phosphate;
font-size: 4em;
height: 1.6em;
line-height: 1.6em;
width: auto;
display: inline-block;
color: #FBFADF;
background-color: #B3DBCF
}
article{
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
}
article p {
display: inline-block;
}
article h2 {
text-align: center;
}
#titel_first{
font-family: phosphate;
font-size: 55px;
color: black
}
#titel_second{
font-family: phosphate;
font-size: 41px;
color: black;
margin-top:67px;
}
#logo {
width: 45%;
display: inline-block;
}
#titel_container{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 45%;
}
#titel_container div{
display: flex;
flex-direction: column;
}
#text_container {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 45%;
}
.tekst_preview{
width: 39%
}
#bold {
Font-family: Helvetica;
}
#light {
font-family: Helvetica;
}
#colors {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 75%;
}
#colors div {
height: 25%;
width:15%;
text-align: center;
}
#colors div:nth-child(1){
background-color: #B3DBCF;
}
#colors div:nth-child(2){
background-color: #FBFADF;
}
#colors div:nth-child(3){
background-color:#c0c316;
}
#colors div:nth-child(4){
background-color:#e25613;
}
#navigatie{
width: 30%;
}
#homeknop:hover{
width: 30%;
}
#tipi:hover{
width: 35%;
}
#hut:hover{
width: 40%;
}
#kopen:hover{
width:40%;
}
| 0.217587 | 0.067608 |
@-webkit-keyframes autofill{
to {
background: transparent;
}
}
input:-webkit-autofill{
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
.tender-pop{
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_bg.png) no-repeat center center;
height: 500px;
background-size: contain;
}
.tender-pop-main {
height: 500px;
overflow: hidden;
}
.tender-pop .tender-pop-title {
padding-top: 138px;
font-size: 28px;
text-align: center;
color: #50ac6a;
line-height: 36px;
padding-left: 5px;
position: relative;
}
.tender-pop .tender-pop-title em{
z-index: 9;
position: relative;
font-weight: 600;
}
.tender-pop .tender-pop-title .title-bg-col{
background: #e9f6ed;
display: block;
width: 95%;
height: 20px;
position: absolute;
bottom: 0px;
left: 9px;
z-index: 0;
}
.tender-pop .tender-pop-mfsj .title-bg-col{
width: 260px;
left: 50%;
margin-left: -128px;
}
.tender-pop .tender-pop-mfbj .title-bg-col{
width: 228px;
left: 50%;
margin-left: -112px;
}
.tilte-wid{
margin: 0 auto;
text-align: left;
}
.tender-price-result-box {
padding: 9px 40px 0;
}
.tender-pop-applypeople {
margin: 2px auto 0;
color: #666;
padding-left: 10px;
text-align: center;
}
.num-man {
color: #feb338;
}
.tender-form-list {
padding: 16px 40px 10px;
}
.tender-form-list .tender-form-item {
text-align: left;
}
.tender-form-item {
text-align: center;
height: 32px;
line-height: 32px;
font-size: 14px;
position: relative;
color: #666;
margin-bottom: 20px;
}
.height_area{
margin-bottom: 17px;
}
.tender-phone{
margin-bottom: 16px;
}
.tender-form-select {
width: 232px;
height: 34px;
padding-left: 6px;
font-size: 14px;
color: #666;
border: 1px solid #dddddd;
vertical-align: middle;
padding-bottom: 8px \0;
*padding-left: 0px;
*padding-top: 9px;
*padding-bottom: 9px;
*position: relative;
/* *top: 8px; */
}
.tender-form-select.province {
width: 111px;
margin-left: 20px;
}
.tender-form-select.city {
margin-left: 10px;
}
input.tender-form-input {
width: 212px;
padding: 5px 9px 6px;
border: 1px solid #dddddd;
vertical-align: middle;
left: 98px;
margin-left: 20px;
}
input.tender-form-phone{
margin-left: 10px;
}
.tender-form-font {
position: absolute;
left: 106px;
*left: 104px;
top: 1px;
color: #999;
}
.tender-form-sup {
position: absolute;
right: 100px;
color: #333;
}
.tender-pop-buttom {
width: 120px;
height: 36px;
background-color: #ff6000;
display: block;
margin: 0 auto;
color: white;
cursor: pointer;
}
.tender-form-footer {
width: 232px;
margin: 0 auto 13px;
font-size: 12px;
color: #999;
height: 18px;
line-height: 18px;
}
.tender-form-explain {
color: #feb338;
padding-left: 12px;
}
.tender-form-check {
height: 24px;
color: #999;
}
.tender-form-check span {
margin-left: 5px;
}
.tender-form-item .style-budget-em {
width: 20px;
height: 20px;
display: inline-block;
background-position: -2px -312px;
vertical-align: middle;
}
.tender-pop .form_error {
position: absolute;
left: 94px;
top: 25px;
color: #ff6666;
font-size: 12px;
}
.tender-pop .form_error .ico_error {
width: 13px;
height: 13px;
background: url(http://img.to8to.com/to8to_img/global.png?v=20160512) no-repeat;
background-position: -51px -165px;
margin-right: 5px;
vertical-align: middle;
}
.tender-huxing .select {
width: 255px;
padding-left: 5px;
height: 34px;
border-color: rgb(221, 221, 221);
}
.tender-huxing .select_s {
border: none;
margin-right: 0;
margin-left: 0;
border: 1px solid rgb(221, 221, 221);
width: 111px;
outline: none;
}
.tender-huxing .select_s_s {
width: 74px;
margin-bottom: 10px;
}
.tender-huxing {
height: 79px;
}
.tender-huxing div {
width: 235px;
float: right;
display: inline-block;
position: absolute;
top: 3px;
left: 96px;
}
.tender-pop-buttom, .tender-form-footer {
text-align: center;
}
.tender-huxing .select-margin {
margin-left: 5px;
}
.tender-huxing .select-long-margin {
margin-left: 10px;
}
.tender-pop-mfbj .style-budget-title, .tender-pop-mfsj .style-budget-title {
font-weight: 900;
}
.tender-form-item .worn-font {
color: #feb338;
position: relative;
top: 3px;
font-size: 24px;
vertical-align: middle;
margin-right: 10px;
}
.tender-pop-tabs {
position: absolute;
left: -40px;
top: 50%;
margin-top: -78px;
cursor: pointer;
}
.tender-pop-tabs li {
position: relative;
display: block;
width: 40px;
height: 50%;
}
.tender-pop-tabs li span {
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat;
display: block;
height: 100px;
width: 40px;
}
.tender-pop-tabs li.active.btn-mfbj-list span{
background-position: 0 -400px;
}
.tender-pop-tabs li.btn-mfbj-list span{
background-position: -42px -400px;
}
.tender-pop-tabs li.btn-mfsj-list span{
background-position: -128px -400px;
}
.tender-pop-tabs li.active.btn-mfsj-list span{
background-position: -86px -400px;
}
.tender-pop-con {
display: none;
}
.tender-pop-logo {
position: absolute;
height: 153px;
width: 144px;
top: -116px;
left: 20px;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat 0 0;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat 0 0;
}
.tender-price-result li {
height: 40px;
}
.tender-price-result {
width: 292px;
margin: 0 auto;
padding: 22px 0;
border: 1px solid #ddd;
}
.tender-price-result li span {
float: left;
width: 48%;
height: 40px;
line-height: 40px;
text-align: right;
font-size: 14px;
color: #666;
}
.tender-price-result li strong {
float: right;
width: 52%;
height: 40px;
line-height: 40px;
margin-left: 0;
font-weight: normal;
font-size: 12px;
}
.tender-price-result em {
text-align: center;
padding: 0 18px 0 12px;
font-weight: bold;
font-size: 14px;
}
.tender-price-ad {
margin: 40px 67px 0;
}
.tender-price-ad p {
width: 310px;
margin: 0 auto;
color: #999;
font-size: 12px;
}
.tender-price-ad span {
color: #feb338;
}
.tender-price-ad a {
display: block;
width: 170px;
height: 20px;
text-align: center;
margin-left: 80px;
margin-top: 22px;
color: #01af63;
line-height: 28px;
}
.tender-price-ad em {
display: inline-block;
width: 202px;
height: 36px;
position: relative;
bottom: 45px;
right: 16px;
top: -32px;
cursor: pointer;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat -2px -163px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -2px -163px;
}
.tender-form-check a, .zzfw span {
color: #feb338;
}
.tender-mfsjinit-img {
padding: 152px 72px 0;
}
.tender-mfsjinit-img em {
width: 340px;
height: 291px;
display: block;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat -1px -102px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -33px -346px;
}
.tender-result-text, .tender-result-explain {
text-align: center;
}
.tender-result-text {
font-size: 16px;
color: #333;
}
.tender-pop-mfsj .mflf {
display: block;
width: 115px;
height: 115px;
margin: 0 auto;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat -644px 0px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -238px -14px;
}
.tender-result-explain {
margin-top: 2px;
color: #feb338;
}
.tender-form-item.mall em {
display: block;
height: 92px;
width: 357px;
margin: 0 auto;
cursor: pointer;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat -2px -215px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -2px -215px;
}
.tender-result-mfsj .tender-form-item {
height: auto;
}
.mar-bot-6{
margin-bottom: 6px;
}
.mr-bot-12{
margin-bottom: 12px;
}
.tender-title-count {
color: #feb338;
width: 95px;
text-align: center;
display: inline-block;
*display: inline;
*zoom:1;
}
.tender-result-text span{
color: #68c192;
}
.tender-pop-title.littlefont .tender-title-text {
font-size: 14px;
color: #333;
font-weight: normal;
}
.tender-mfsj-btn {
position: relative;
display: block;
margin: 18px auto 12px;
width: 120px;
height: 40px;
color: #fff;
}
.tender-mfsj-btn em {
display: block;
width: 101px;
height: 38px;
line-height: 38px;
cursor: pointer;
text-align: center;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat 0px 0px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -412px -347px;
}
.tender-mfsj-btn.no-allow em {
background-position: 0px -48px;
cursor: not-allowed;
}
.tender-pop-right .littlefont {
padding-top: 142px;
font-size: 22px;
font-weight: bold;
color: #333;
}
.tender-pop-mfbj .new-init-yusuan {
padding-top: 25px;
padding-bottom: 30px;
}
.tender-pop-mfbj .new-init-yusuan li {
height: 26px;
}
.tender-pop-left {
float: left;
width: 490px;
/* border-right: 1px solid #ddd; */
height: 500px;
+height: 460px;
position: relative;
}
.mfsj-left-lien{
height: 332px;
width: 1px;
background: #73c579;
position: absolute;
right: -10px;
top: 168px;
}
.tender-pop-right {
float: right;
width: 470px;
height: 500px;
margin-right: 40px;
+height: 460px;
}
.to8to_zj {
margin-left: 10px;
color: #bbb;
font-size: 14px;
}
.dn {
display: none;
}
.submit-box{
position: absolute;
top: 208px;
left: 437px;
width: 125px;
height: 139px;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-btn.png) no-repeat;
z-index: 9;
overflow: hidden;
margin-top: 0;
}
.ico-line-top{
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-top.png) no-repeat center center;
width: 38px;
height: 47px;
position: absolute;
top: 164px;
left: 480px;
display: block;
}
.ico-line-bottom{
height: 154px;
width: 1px;
display: block;
position: absolute;
top: 346px;
left: 500px;
background: #f6c03f;
}
.no-allow .tender-recalc {
cursor: not-allowed;
}
.tender-calc-btn,
.tender-calc-btn.again {
position: absolute;
top: 25px;
left: 16px;
width: 90px;
height: 90px;
z-index: 15;
background: #f6c03f;
background-position: 0 0;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 45px;
}
.mfbjcalc-btn-ie {
position: absolute;
top: 0px;
left: 0px;
width: 125px;
height: 139px;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-btn.png) no-repeat;
background-size: contain;
}
.mfbjcalc-btn-ie img{
margin-top: 7px;
}
.tender-recalc {
position: absolute;
top: 20px;
left: 23px;
font-size: 16px;
width: 45px;
height: 45px;
color: #fff;
/* line-height: 90px; */
text-align: center;
cursor: pointer;
}
.old-circle-animate{
position: absolute;
top: 15px;
right: 8px;
width: 110px;
height: 110px;
-webkit-border-radius:50%;
border-radius: 50%;
background: #fde5ba;
z-index: 12;
-webkit-animation:scale-three2 1.5s ease infinite;
-moz-animation:scale-three2 1.5s ease infinite;
-o-animation:scale-three2 1.5s ease infinite;
animation:scale-three2 1.5s ease infinite;
animation-fill-mode: both;
}
@keyframes scale-three2{
0%{
transform:scale(1);
opacity: 0.8;
}
100%{
transform:scale(1.3);
opacity:0;
}
}
@-webkit-keyframes scale-three2{
0%{
-webkit-transform:scale(1);
opacity: 0.7;
}
100%{
-webkit-transform:scale(1.3);
opacity:0;
}
}
@-moz-keyframes scale-three2 {
0%{
-moz-transform:scale(1);
opacity: 0.7;
}
100%{
-moz-transform:scale(1.3);
opacity:0;
}
}
@-o-keyframes scale-three2 {
0%{
-o-transform:scale(1);
opacity: 0.7;
}
100%{
-o-transform:scale(1.3);
opacity:0;
}
}
/* 鍏嶈垂璁捐 */
.tender-init-mfsj .tender-form-list {
width: 360px;
margin: 0px auto 0;
}
.tender-init-mfsj .tender-form-footer {
margin: 0 97px 13px;
}
.tender-init-mfsj .tender-form-explain {
text-align: center;
}
.tender-init-mfsj .tender-form-item, .tender-pop-company .tender-form-item {
margin-bottom: 20px;
}
.tender-init-mfsj .tender-form-select.province {
width: 123px;
}
.tender-init-mfsj .tender-form-input {
width: 236px;
}
/* 瑁呬慨鍏徃 */
.tender-pop-company .tender-price-result li span {
width: 55%;
}
.tender-pop-company .tender-price-result li strong {
width: 45%;
}
.tender-company-result {
width: 340px;
margin-left: 40px;
margin-bottom: 10px;
display: none;
}
.tender-company-result-list {
height: 70px;
padding: 9px 0 9px 10px;
margin-bottom: 5px;
border: 1px solid #ddd;
}
.tender-company-result-list dt {
float: left;
width: 70px;
height: 70px;
}
.tender-company-result-list dd {
float: left;
width: 258px;
height: 70px;
}
.tender-company-result-list dt a {
display: block;
width: 68px;
height: 68px;
border: 1px solid #ddd;
}
.tender-company-result-list dt img {
display: block;
width: 100%;
height: 100%;
}
.tender-company-name {
float: left;
width: 127px;
padding: 0 10px;
}
.tender-company-name h4 {
width: 127px;
height: 28px;
margin-bottom: 5px;
line-height: 28px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: normal;
}
.tender-company-name h4 a {
font-size: 14px;
color: #333;
}
.tender-company-name p {
height: 20px;
line-height: 20px;
color: #999;
font-size: 12px;
}
.tender-company-name p span, .tender-company-detail p span {
color: #f36f20;
}
.tender-company-detail {
float: left;
width: 98px;
padding-left: 10px;
border-left: 1px solid #ddd;
font-size: 12px;
}
.tender-company-detail p {
height: 22px;
line-height: 22px;
color: #666;
}
.tender-pop-company .tender-form-explain {
text-align: center;
}
/* 瑁呬慨鏉愭枡 */
.tender-material-result {
overflow: hidden;
width: 348px;
height: 248px;
margin: 20px auto 0;
border: 1px solid #eee;
}
.tender-material-table {
width: 351px;
height: 251px;
}
.tender-material-table li {
float: left;
width: 154px;
height: 41px;
padding-left: 20px;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
line-height: 41px;
font-size: 12px;
color: #999;
}
.tender-material-table li span {
float: left;
width: 72px;
color: #666;
}
.tender-material-table li strong {
float: left;
padding-right: 5px;
color: #333;
font-family: 'Arial';
font-size: 14px;
text-align: center;
}
.tender-pop-material .tender-price-ad {
margin: 20px auto 0;
}
.tender-pop-material .tender-price-ad p {
width: 350px;
}
/* 妤肩洏涓嬫媺妗� */
.tender-loupan-box {
width: 230px;
border:1px solid #eee;
position: absolute;
margin-top: -1px;
height: 100px;
overflow-y: auto;
overflow-x:hidden;
display: none;
background-color: #FFF;
top: 38px;
left: 86px;
z-index: 10;
}
.tender-loupan-box li{
padding:0 10px;
height: 34px;
line-height: 34px;
width: 288px;
overflow: hidden;
white-space: nowrap;
text-overflow:ellipsis;
cursor: pointer;
}
.tender-loupan-box ul li:hover{
background-color: #F8F8F8;
color: #333;
}
/*閫傞厤鏁堟灉鍥炬姤浠烽〉*/
.tender-pop-showImg{
width: 240px;
height: 145px;
margin: 7px auto;
text-align: center;
border:5px solid #fff;
}
.tender-pop-showImg img{
display: inline;
max-width: 240px;
max-height: 145px;
}
.tender-price-newResult{
margin:0 auto;
height: 51px;
width: 298px;
background-color: #FFF9F6;
border: 1px solid #FFE4DA;
text-align: center;
padding:12px 3px;
}
.tender-price-newResult li{
display:inline-block;
width:114px;
margin:-7px 0px -8px;
text-align: left;
float:left;
}
.tender-price-imgad{
margin-top:24px;
}
.tender-price-newResult li strong{
line-height: 40px;
font-weight:normal;
}
.tender-price-newResult .to8to_zj{
font-size:12px;
}
/* 寮规瑙嗛 */
.tender-video {
display: none;
}
.tender-video-title {
padding-top: 45px;
font-size: 22px;
text-align: center;
line-height: 36px;
padding-right: 27px;
}
.tender-video-wrapper {
width: 360px;
height: 200px;
margin-left: 45px;
margin-top: 21px;
margin-bottom: 33px;
position: relative;
}
.tender-video-tip {
line-height: 27px;
font-size: 14px;
padding-right: 27px;
text-align: center;
}
.tender-video-num {
color: #ff6000;
}
.video-first-text {
display: block;
}
.tender-video-wrapper-hand {
display: none;
position: absolute;
right: -8px;
bottom: -8px;
}
.tender-video-wrapper-btn {
position: absolute;
right: 8px;
bottom: 8px;
display: block;
width: 35px;
height: 35px;
}
/*鏂扮増鏁堟灉鍥捐鎯呴〉 by fidermo.hu 2016/11/04*/
.newbj-select-province{
width:155px;
height:38px;
font-size:14px;
border:1px solid #e3e3e3;
}
.newbj-province-margin{
margin-right:10px;
}
input.newbj-square,
input.newbj-phone{
width:300px;
height:21px;
}
.newbj-tips-font{
left:11px;
}
.newbj-form-sup{
right:6px;
}
.newbj-tender-huxing select{
width:60px;
height:38px;
font-size:14px;
border:1px solid #e3e3e3;
}
.newbj-right-margin{
margin-right:5px;
}
.newbj-calcBn{
width: 120px;
height: 36px;
margin: 0 auto;
background-color: #f36f20;
font-size:14px;
color: #fff;
text-align: center;
line-height: 36px;
cursor:pointer;
margin-top: -6px;
}
.newbj-result-server{
margin-top: 8px;
text-align: center;
font-size: 18px;
}
.newbj-result-design{
margin-top: 6px;
text-align: center;
font-size: 14px;
color:red;
font-weight:bold;
}
.newbj-result-jpg{
display: block;
width: 299px;
height: 115px;
margin: 0 auto;
margin-top: 17px;
}
.newbj-form-item .form_error{
left:0px;
}
.result-title{
margin-top: 35px;
text-align: center;
font-size: 22px;
font-weight: bold;
color: black;
}
.slide-container{
position: relative;
width: 320px;
margin: 0 auto;
margin-top: 24px;
}
.result-bottom{
height: 25px;
font-size: 14px;
color: #333;
text-align: center;
margin:10px 0px -10px;
}
.lastPic,
.nextPic{
width: 24px;
height: 30px;
position: absolute;
background-color: #000;
opacity: 0.5;
filter: alpha(opacity=50);
top: 56%;
margin-top: -25px;
z-index: 2;
}
.lastPic:hover,
.nextPic:hover{
opacity:0.75;
}
.lastPic{
left:0px;
}
.nextPic{
right:0px;
}
.lastPic span,
.nextPic span{
display: block;
width: 11px;
height: 20px;
margin: 5px auto;
line-height: 99em;
overflow: hidden;
font-size: 0;
background: url(http://img.to8to.com/decorate_gallery/images/png/banner.png?v=1411559744) no-repeat;
}
.lastPic span{
background-position:0px 0px;
}
.nextPic span{
background-position:-12px 0px;
}
.slider-newBJ{
position: relative;
bottom: 19px;
z-index: 2;
width: 56px;
margin: 0 auto;
}
.slider-newBJ li{
width: 10px;
height: 10px;
float: left;
margin: 0 2px;
}
.slider-newBJ li a{
display: block;
width: 10px;
height: 10px;
background-position: 0 -21px;
overflow: hidden;
opacity: 0.5;
filter: alpha(opacity=50);
background: url(http://img.to8to.com/decorate_gallery/images/png/banner.png?v=1411559745) no-repeat;
background-position: 0px -21px;
}
.slider-newBJ li a.slider-On{
background-position: -17px -21px;
opacity: 1;
}
/*.tender-price-ad .region-phone{
color:red;
font-weight: bold;
}*/
.tender-price-ad .newBJ-result-text{
width: 390px;
color: #feb338;
font-size: 12px;
}
.Result-newBJ-right{
width:320px;
height:240px;
}
.Result-newBJ-right img{
width:320px;
height:240px;
}
.tender-price-ad .newBJ-result-warn{
margin:0;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗笁鐗�*/
.pop-weixin-consult{
width: 338px;
height: 80px;
border: 1px solid #009cff;
position: relative;
margin: 43px 0 0 26px;
display: none;
}
.pop-weixin-consult-xgt{
margin: 26px 0 0 83px;
}
.pop-weixin2-consult{
display: none;
width: 356px;
margin: 74px 0 0 37px;
}
.pop-weixin2-consult img{
width: 356px;
height: 224px;
}
.con-bj-new2 .con_bj_res {
width: 356px;
padding: 45px 40px 0 0;
color: #333;
font-size: 14px;
}
.zxbj-weixin2-point{
font-size: 18px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
text-align: right;
}
.pop-weixin2-consult .attention2{
color: #fe4800;
text-align: center;
margin-bottom: 31px;
font-size: 12px;
}
.pop-weixin-consult .zxbj-weixin-portrait-left{
position: absolute;
width: 120px;
height: 92px;
top: -30px;
left: 3px;
z-index: 6;
}
.pop-weixin-consult .zxbj-weixin-portrait-left img {
width: 135px;
height: 95px;
z-index: 10;
}
.pop-weixin-consult .zxbj-weixin-portrait-text{
position: absolute;
top: 39px;
left: 19px;
z-index: 6;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .zxbj-weixin-point{
font-size: 12px;
color: #5abcfd;
margin: 4px 0 0 -9px;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .zxbj-weixin-zxgw{
font-size: 12px;
color: #fff;
}
.pop-weixin-consult .zxbj-weixin-portrait-title{
position: absolute;
z-index: 6;
top: 20px;
left: 135px;
font-size: 14px;
color: #333;
}
.pop-weixin-consult .zxbj-weixin-portrait-title .portrait-title2 {
margin-top: -3px;
}
.pop-weixin-consult .zxbj-weixin-portrait-btn {
position: absolute;
top: 17px;
right: 12px;
}
.pop-weixin-consult .zxbj-weixin-portrait-btn img {
width: 100px;
height: 50px;
cursor: pointer;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .weixin-zxgw-name{
font-size: 12px;
color: #fe4800;
}
.pop-weixin-consult .zxbj-weixin-portrait-right{
display: none;
position: absolute;
right: 17px;
top: -90px;
width: 90px;
height: 114px;
background-color: #fff;
z-index: 10;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-weixin-code {
right: 0;
top: 0;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281448') no-repeat;
background-position: -523px -306px;
width: 74px;
height: 74px;
border: 1px solid #fff;
border-top: 0;
border-right: 0;
margin: 7px 0 0 7px;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-wx-icon{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281448') no-repeat -1px -176px;
width: 16px;
height: 12px;
top: 3px;
left: -17px;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-wx-guide {
position: relative;
font-size: 12px;
color: #333;
margin-left: 23px;
}
.pop-weixin-consult-dg .zxbj-weixin-portrait-right .zxbj-weixin-code{
background-position: -1px -80px;
}
.pop-weixin-consult .portrait-right-bg {
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612291639') no-repeat -240px -584px;
width: 90px;
height: 114px;
position: absolute;
top: 0px;
left: 0;
padding-top: 1px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box{
position: relative;
width: 356px;
height: 222px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title1{
position: absolute;
font-size: 18px;
font-weight: bold;
color: #01af63;
top: -6px;
left: 72px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-bg{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -244px -78px;
width: 356px;
height: 222px;
z-index: 15;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-show{
position: absolute;
top: 43px;
left: 60px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-left{
float: left;
margin-right: 35px;
position: relative;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-right{
float: left;
margin-top: -2px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1{
font-size: 12px;
color: #333;
margin: 7px 0 0 -28px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1-name{
font-size: 12px;
color: #fe4800;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p2{
font-size: 12px;
color: #333;
margin-left: -18px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3{
position: relative;
font-size: 12px;
font-weight: bold;
color: #333;
margin: 7px 0 0 15px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3 .zxbj-wx-icon{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -1px -176px;
width: 16px;
height: 12px;
left: -21px;
top: 2px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-portrait{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/wxxh_portrait.gif?v=201612292110');
width: 138px;
height: 100px;
z-index: 20;
margin: -8px 0 0 -39px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-code{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201703021628') no-repeat;
background-position: -1px -584px;
width: 110px;
height: 110px;
z-index: 20;
}
.pop-weixin2-consult-dg .zxbj-weixin2-fruit-box .fruit-show-code{
background-position: 0 -190px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .pop-fruit-show-arrow{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -23px -175px;
width: 23px;
height: 14px;
top: 37px;
left: 103px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title2{
font-size: 14px;
position: absolute;
bottom: 2px;
left: 10px;
color: #fff;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-title2-fff000{
font-weight: bold;
color: #fff000;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-title2-b{
font-weight: bold;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗洓鐗� fidermo.hu 17/1/14 start*/
.pop-specialcity{
height: 73px;
margin-bottom: 0;
}
.pop-label{
float: left;
width: 81px;
padding-right: 5px;
line-height: 34px;
color: #333;
text-align: left;
margin-left: 0;
font-size: 14px;
}
.pop-label-start{
color: #feb338;
position: relative;
top: 3px;
font-size: 24px;
vertical-align: middle;
margin-right: 9px;
}
.pop-label-text{
margin-top:-19px;
}
.pop-specialcity .pop-element{
width:259px;
margin-left:84px;
}
.pop-text-wrap{
position: relative;
}
.pop-specialcity .pop-text-wrap .tender-form-input{
width: 237px;
height: 32px;
padding-top: 11px;
border: 0;
background: url("http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423") -451px -522px no-repeat;
}
.pop-specialcity .pop-text-wrap .tender-form-font{
top:9px;
left:12px;
}
.pop-choosebjway{
height:20px;
}
.pop-choosebjway li{
position: relative;
float:left;
padding-left:20px;
margin-left:16px;
cursor:pointer;
line-height:19px;
}
.pop-choosebjway em{
position:absolute;
display: block;
width:15px;
height:15px;
left:0px;
top:3px;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423') no-repeat -451px -470px;
}
.pop-blueradio{
color:#5ABCFD;
}
.pop-blueradio em{
background-position:-468px -488px;
}
.pre-pop-fruit-show-arrow{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -23px -175px;
width: 23px;
height: 14px;
top: 100px;
left: 190px;
}
/*寰俊寮曞鍗曠嫭鏍峰紡*/
.pop-suspend-wechat{
display: none;
position:absolute;
width:370px;
height:223px;
bottom:70px;
right:43px;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423') no-repeat -450px -572px;
}
.pop-suspend-wechat p{
height:19px;
line-height:19px;
}
.pop-sus-head{
font-weight: bold;
text-align: center;
font-size: 18px;
margin-top: 21px;
}
.pop-sus-headimg{
float: left;
width: 170px;
height: 134px;
margin-left: 21px;
margin-top: 22px;
}
.pop-headdetail{
position: relative;
z-index: 1;
width: 91px;
height: 90px;
margin: 0 auto;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -447px -805px;
}
.pop-worddetail{
position: relative;
z-index: 2;
height: 29px;
width: 140px;
margin: 0 auto;
margin-top: -11px;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -573px -835px;
}
.pop-sus-headimg p{
color: #5ABCFD;
text-align: center;
font-size: 12px;
}
.pop-worddetail p{
text-align: center;
color: #fff;
font-size: 13px;
line-height: 25px;
}
.pop-sus-quocode{
float: right;
width: 105px;
height: 131px;
font-size: 12px;
text-align: center;
margin-right:46px;
margin-top:17px;
}
.pop-sus-quocode div{
height: 100px;
margin-bottom: 5px;
border: 1px solid #eee;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201703021618) no-repeat -821px -283px;
}
.pop-element .pop-choosebjway,
.pop-element .pop-suspend-wechat{
display: none;
}
.pop-specialcity .pop-element .pop-choosebjway{
display: block;
}
/*鍙充晶璁$畻鎶ヤ环鏍�*/
.pop-calc-disabled,
a.pop-calc-disabled:hover,
a.pop-calc-disabled:active{
background: #fefefe url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -635px -271px;
pointer-events:none;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗洓鐗� fidermo.hu 17/1/14 end*/
/*閿欒鎻愮ず鏍峰紡閿欎綅闂 hank.lan 17/3/21*/
.pop-specialcity .pop-text-wrap .form_error{
left: 0;
top: 35px;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗簲鐗� hank.lan 澧炲姞骞垮窞 鍗椾含 鍚堣偉 鏃犻敗 姝︽眽 闀挎矙*/
.fruit-show-code1{
display: none;
border: 1px solid #e8e8e8;
}
.fruit-show-code1 img{
width: 108px;
height: 108px;
display: block;
}
/* 鐑偣骞垮憡 */
.hotad-contain .littlefont {
padding-top: 62px;
}
.hotad-contain .tender-price-result-box {
position: relative;
margin-top: -8px;
}
.hotad-contain .tender-price-result-box .tender-price-result{
position:relative;
width:340px;
height:108px;
}
.tender-price-result-box .pop-hotad-result{
display: none;
height: 0;
overflow: hidden;
}
.hotad-contain .tender-price-result-box .pop-hotad-result{
display: block;
position: absolute;
bottom:12px;
left:83px;
height:50px;
padding-top:13px;
color:#999;
line-height:24px;
letter-spacing:1px;
font-size:12px;
text-align:left;
border-top:1px solid #e1e1e1;
}
.hotad-cl em,
.hotad-rg em,
.hotad-sj em,
.hotad-zj em{
display: inline-block;
width: 55px;
font-style: normal;
margin-left: 10px;
margin-right: 10px;
padding: 0;
font-weight: 400;
text-align: center;
font-size: 18px;
color: #feb338;
}
.hotad-contain .tender-price-result .hotad-cl,
.hotad-contain .tender-price-result .hotad-rg{
position:absolute;
left:18px;
}
.hotad-contain .tender-price-result .hotad-sj,
.hotad-contain .tender-price-result .hotad-zj{
position:absolute;
right:0px;
}
.hotad-contain .tender-price-result .hotad-cl,
.hotad-contain .tender-price-result .hotad-sj{
top:17px;
}
.hotad-contain .tender-price-result .hotad-rg,
.hotad-contain .tender-price-result .hotad-zj{
top:57px;
}
.hotad-contain .tender-price-result li span{
width:58px;
}
.hotad-contain .tender-price-result li strong{
width:106px;
}
.hotad-contain .tender-price-result em{
display: inline;
width: auto;
margin: 0;
padding: 0 6px 0 2px;
font-size: 14px;
font-weight: 700;
}
.pop-result-hotad,
.pop-wechat-ad{
display:none;
position:relative;
width:339px;
height:0;
margin:0 auto;
margin-top:23px;
overflow:hidden;
}
.hotad-contain .pop-result-hotad,
.hotad-contain .pop-weixin2-consult .pop-wechat-ad{
display: block;
height:60px;
}
.hotad-contain .pop-weixin2-consult .attention2{
display: none;
}
.hotad-contain .pop-result-hotad img,
.hotad-contain .pop-wechat-ad img{
width:100%;
}
.hotad-contain .pop-result-hotad p,
.hotad-contain .pop-wechat-ad p{
position:absolute;
right:0;
bottom:0;
width:35px;
height:16px;
line-height:16px;
color:#fff;
font-size:12px;
background: #000;
filter:alpha(opacity=70);
opacity: .7;
text-align:center;
}
.hotad-contain .pop-weixin2-consult{
margin-top:75px;
}
.pop-wechat-hotad{
display: none;
width: 370px;
padding-top: 30px;
font-size: 14px;
color:#999;
margin:0 auto;
text-align:center;
}
.pop-wechat-hotad .wechat-img{
width:69px;
height:69px;
margin:0 auto;
background:url(//img.to8to.com/to8to_img/wx_xh/zxbj_wxxh.png?v=20170428) no-repeat -384px 0;
}
.pop-wechat-hotad .wechat-message{
width:100%;
text-align:center;
color:#333;
font-size:20px;
margin-top:21px;
}
.pop-wechat-hotad .wechat-text{
margin-top:20px;
}
.pop-wechat-hotad .wechat-recall{
color:#ff5200;
margin-top:11px;
margin-bottom:68px;
}
.pop-hotad-result .call-phone{
color:#fe5f00;
}
.pop-weixin2-hotad .zxbj-weixin2-point{
display: none;
}
/* 瀹℃牳淇℃伅鏍峰紡 */
.pop-check-frame .tender-pop-left,
.pop-check-info{
display: none;
}
.pop-check-frame .tender-pop-right{
float: left;
margin-left: 16px;
padding-right: 10px;
position: relative;
/* border-right: 1px solid #E8E8E8; */
}
.pop-check-frame .pop-check-info{
display: block;
position: relative;
float: left;
width: 375px;
margin: 148px 0 0 52px;
color: #333;
font-size: 14px;
}
.pop-check-info h3{
font-size:18px;
color:#333;
}
.pop-check-info h3 span{
font-size:12px;
color:#feb338;
}
.pop-check-info .check_question{
padding: 0;
font-size:14px;
color:#999;
background: transparent;
}
.pop-check-info .house-type{
margin-top: 12px;
}
.pop-check-info .decorate-time{
margin-top: 6px;
}
.pop-check-info .plot-name{
margin-top: 15px;
}
.check-house{
float:left;
width:110px;
height:100px;
}
.check-house-last{
margin-top:-4px;
}
.check-house,
.check-time{
cursor:pointer;
}
.check-house div{
width:80px;
height:85px;
margin:0 auto;
}
.decorate-time .check-time{
float:left;
margin-top:12px;
}
.check-house div,
.check-house p i,
.check-time p i{
background:url(//img.to8to.com/to8to_img/zxbj/zxbjcontainer.png?v=20170508) no-repeat -529px -164px;
}
.check-house .old-house{
background-position-X:-655px;
}
.check-house .little-change{
background-position:-779px -171px;
}
.check-house p,
.check-time p{
position: relative;
text-indent: 15px;
font-size:12px;
color:#333;
}
.pop-check-info .check-house p{
margin-left: 27px;
margin-top: -6px;
}
.pop-check-info .check-house-last p{
margin-top:-2px;
}
.check-time p{
text-indent:18px;
margin-left:13px;
}
.check-time-next p{
margin-left:27px;
}
.check-house p i,
.check-time p i{
position: absolute;
width:15px;
height:15px;
left: 0;
top: 3px;
background-position: -560px -258px;
}
.check-house.on p i,
.check-time.on p i{
background-position: -535px -258px;
}
.plot-name .check_question{
float:left;
margin-top: 5px;
}
.plot-name input{
width:229px;
height:30px;
text-indent:6px;
border:1px solid #e8e8e8;
}
.check-upload,
.check-upload:hover{
display: block;
width: 80px;
height: 32px;
background-color: #FF701A;
color: #fff;
text-align: center;
line-height: 32px;
margin: 0 auto;
margin-top: 28px;
}
.pop-check-info .complate-form{
display: none;
position: absolute;
top: 148px;
left: 90px;
width: 180px;
height: 42px;
background: #000;
filter:alpha(opacity=60);
opacity: .6;
text-align: center;
line-height: 42px;
font-size:14px;
color:#fff;
}
.check-right-line{
display: none;
height: 332px;
width: 1px;
background: #73c579;
position: absolute;
right: -4px;
top: 168px;
}
.pop-check-frame .tender-pop-right .check-right-line{
display: block;
}
/* 鏅€氱粨鏋滄€� */
.pop-check-frame .tender-pop-right .littlefont{
padding-top: 142px;
}
.pop-check-frame .tender-pop-right .littlefont .price-result-title{
font-size: 18px;
/* font-weight:normal; */
}
.pop-check-frame .tender-price-result-box{
padding-top: 10px;
}
.pop-check-frame .tender-price-result{
width: 306px;
padding: 13px 0;
}
.pop-check-frame .tender-price-result li span{
width: 44%;
}
.pop-check-frame .tender-price-result li strong{
width: 56%;
}
.pop-check-frame .tender-price-ad{
margin-left: 78px;
}
/* 寰俊灏忓彿缁撴灉鎬� */
.pop-check-frame .pop-weixin2-consult{
margin-top: 148px;
*padding-top: 148px;
}
.pop-check-frame .zxbj-weixin2-point{
text-align: center;
font-weight: normal;
}
.pop-check-frame .pop-weixin2-consult .attention2{
margin-top: -4px;
margin-bottom: 0;
color: #feb338;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box{
width: 357px;
height: 248px;
margin-top: 16px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-bg{
width: 357px;
height: 244px;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh_check.png?v=201705111615) no-repeat -322px -252px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title1{
color: #05c679;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-show{
top: 56px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1{
margin-top: 2px;
margin-left: -13px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1-name{
color: #05c679;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p2{
margin-top: 2px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-right{
margin-top: -4px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3{
margin-top: 9px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title2{
bottom: 7px;
}
/* 瀹℃牳淇℃伅缁撴灉寮圭獥 */
.check_pop_succ{
display: none;
z-index:10000;
}
.check_pop_succ,
.check_pop_succ .check_grey_layer{
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
}
.check_pop_succ .check_grey_layer{
background: #000;
filter:alpha(opacity=60);
opacity: .6;
}
.check_pop_succ .check_pop_tip{
position: absolute;
top:248px;
z-index: 2;
width: 320px;
height: 237px;
background-color:#fff;
border-radius:4px;
text-align:center;
}
.check_pop_tip .check_pop_img{
width:69px;
height:69px;
margin:0 auto;
margin-top:20px;
background: url(//img.to8to.com/to8to_img/wx_xh/zxbj_wxxh.png?v=20170428) -384px 0 no-repeat;
}
.check_pop_tip .check_pop_text{
font-size:16px;
color:#333;
}
.check_pop_tip .check_pop_recall{
margin-top:4px;
font-size:12px;
color:#999;
}
.check_pop_tip .check_pop_recall span{
color:#fe6022;
}
.check_pop_tip .close_check_pop,
.check_pop_tip .close_check_pop:hover{
display: block;
width:100px;
height:32px;
line-height:32px;
font-size:12px;
color:#666;
border-radius:2px;
border:1px solid #E8E8E8;
margin:0 auto;
margin-top:18px;
}
.pop-check-info .check-upload, .pop-check-info .check-upload:hover{
background-color: #feb338;
}
.window_box .window_box_title a{
z-index: 99;
}
|
static/index/css/public/common_tender_pop.css
|
@-webkit-keyframes autofill{
to {
background: transparent;
}
}
input:-webkit-autofill{
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
.tender-pop{
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_bg.png) no-repeat center center;
height: 500px;
background-size: contain;
}
.tender-pop-main {
height: 500px;
overflow: hidden;
}
.tender-pop .tender-pop-title {
padding-top: 138px;
font-size: 28px;
text-align: center;
color: #50ac6a;
line-height: 36px;
padding-left: 5px;
position: relative;
}
.tender-pop .tender-pop-title em{
z-index: 9;
position: relative;
font-weight: 600;
}
.tender-pop .tender-pop-title .title-bg-col{
background: #e9f6ed;
display: block;
width: 95%;
height: 20px;
position: absolute;
bottom: 0px;
left: 9px;
z-index: 0;
}
.tender-pop .tender-pop-mfsj .title-bg-col{
width: 260px;
left: 50%;
margin-left: -128px;
}
.tender-pop .tender-pop-mfbj .title-bg-col{
width: 228px;
left: 50%;
margin-left: -112px;
}
.tilte-wid{
margin: 0 auto;
text-align: left;
}
.tender-price-result-box {
padding: 9px 40px 0;
}
.tender-pop-applypeople {
margin: 2px auto 0;
color: #666;
padding-left: 10px;
text-align: center;
}
.num-man {
color: #feb338;
}
.tender-form-list {
padding: 16px 40px 10px;
}
.tender-form-list .tender-form-item {
text-align: left;
}
.tender-form-item {
text-align: center;
height: 32px;
line-height: 32px;
font-size: 14px;
position: relative;
color: #666;
margin-bottom: 20px;
}
.height_area{
margin-bottom: 17px;
}
.tender-phone{
margin-bottom: 16px;
}
.tender-form-select {
width: 232px;
height: 34px;
padding-left: 6px;
font-size: 14px;
color: #666;
border: 1px solid #dddddd;
vertical-align: middle;
padding-bottom: 8px \0;
*padding-left: 0px;
*padding-top: 9px;
*padding-bottom: 9px;
*position: relative;
/* *top: 8px; */
}
.tender-form-select.province {
width: 111px;
margin-left: 20px;
}
.tender-form-select.city {
margin-left: 10px;
}
input.tender-form-input {
width: 212px;
padding: 5px 9px 6px;
border: 1px solid #dddddd;
vertical-align: middle;
left: 98px;
margin-left: 20px;
}
input.tender-form-phone{
margin-left: 10px;
}
.tender-form-font {
position: absolute;
left: 106px;
*left: 104px;
top: 1px;
color: #999;
}
.tender-form-sup {
position: absolute;
right: 100px;
color: #333;
}
.tender-pop-buttom {
width: 120px;
height: 36px;
background-color: #ff6000;
display: block;
margin: 0 auto;
color: white;
cursor: pointer;
}
.tender-form-footer {
width: 232px;
margin: 0 auto 13px;
font-size: 12px;
color: #999;
height: 18px;
line-height: 18px;
}
.tender-form-explain {
color: #feb338;
padding-left: 12px;
}
.tender-form-check {
height: 24px;
color: #999;
}
.tender-form-check span {
margin-left: 5px;
}
.tender-form-item .style-budget-em {
width: 20px;
height: 20px;
display: inline-block;
background-position: -2px -312px;
vertical-align: middle;
}
.tender-pop .form_error {
position: absolute;
left: 94px;
top: 25px;
color: #ff6666;
font-size: 12px;
}
.tender-pop .form_error .ico_error {
width: 13px;
height: 13px;
background: url(http://img.to8to.com/to8to_img/global.png?v=20160512) no-repeat;
background-position: -51px -165px;
margin-right: 5px;
vertical-align: middle;
}
.tender-huxing .select {
width: 255px;
padding-left: 5px;
height: 34px;
border-color: rgb(221, 221, 221);
}
.tender-huxing .select_s {
border: none;
margin-right: 0;
margin-left: 0;
border: 1px solid rgb(221, 221, 221);
width: 111px;
outline: none;
}
.tender-huxing .select_s_s {
width: 74px;
margin-bottom: 10px;
}
.tender-huxing {
height: 79px;
}
.tender-huxing div {
width: 235px;
float: right;
display: inline-block;
position: absolute;
top: 3px;
left: 96px;
}
.tender-pop-buttom, .tender-form-footer {
text-align: center;
}
.tender-huxing .select-margin {
margin-left: 5px;
}
.tender-huxing .select-long-margin {
margin-left: 10px;
}
.tender-pop-mfbj .style-budget-title, .tender-pop-mfsj .style-budget-title {
font-weight: 900;
}
.tender-form-item .worn-font {
color: #feb338;
position: relative;
top: 3px;
font-size: 24px;
vertical-align: middle;
margin-right: 10px;
}
.tender-pop-tabs {
position: absolute;
left: -40px;
top: 50%;
margin-top: -78px;
cursor: pointer;
}
.tender-pop-tabs li {
position: relative;
display: block;
width: 40px;
height: 50%;
}
.tender-pop-tabs li span {
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat;
display: block;
height: 100px;
width: 40px;
}
.tender-pop-tabs li.active.btn-mfbj-list span{
background-position: 0 -400px;
}
.tender-pop-tabs li.btn-mfbj-list span{
background-position: -42px -400px;
}
.tender-pop-tabs li.btn-mfsj-list span{
background-position: -128px -400px;
}
.tender-pop-tabs li.active.btn-mfsj-list span{
background-position: -86px -400px;
}
.tender-pop-con {
display: none;
}
.tender-pop-logo {
position: absolute;
height: 153px;
width: 144px;
top: -116px;
left: 20px;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat 0 0;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat 0 0;
}
.tender-price-result li {
height: 40px;
}
.tender-price-result {
width: 292px;
margin: 0 auto;
padding: 22px 0;
border: 1px solid #ddd;
}
.tender-price-result li span {
float: left;
width: 48%;
height: 40px;
line-height: 40px;
text-align: right;
font-size: 14px;
color: #666;
}
.tender-price-result li strong {
float: right;
width: 52%;
height: 40px;
line-height: 40px;
margin-left: 0;
font-weight: normal;
font-size: 12px;
}
.tender-price-result em {
text-align: center;
padding: 0 18px 0 12px;
font-weight: bold;
font-size: 14px;
}
.tender-price-ad {
margin: 40px 67px 0;
}
.tender-price-ad p {
width: 310px;
margin: 0 auto;
color: #999;
font-size: 12px;
}
.tender-price-ad span {
color: #feb338;
}
.tender-price-ad a {
display: block;
width: 170px;
height: 20px;
text-align: center;
margin-left: 80px;
margin-top: 22px;
color: #01af63;
line-height: 28px;
}
.tender-price-ad em {
display: inline-block;
width: 202px;
height: 36px;
position: relative;
bottom: 45px;
right: 16px;
top: -32px;
cursor: pointer;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat -2px -163px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -2px -163px;
}
.tender-form-check a, .zzfw span {
color: #feb338;
}
.tender-mfsjinit-img {
padding: 152px 72px 0;
}
.tender-mfsjinit-img em {
width: 340px;
height: 291px;
display: block;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat -1px -102px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -33px -346px;
}
.tender-result-text, .tender-result-explain {
text-align: center;
}
.tender-result-text {
font-size: 16px;
color: #333;
}
.tender-pop-mfsj .mflf {
display: block;
width: 115px;
height: 115px;
margin: 0 auto;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat -644px 0px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -238px -14px;
}
.tender-result-explain {
margin-top: 2px;
color: #feb338;
}
.tender-form-item.mall em {
display: block;
height: 92px;
width: 357px;
margin: 0 auto;
cursor: pointer;
background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.png) no-repeat -2px -215px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -2px -215px;
}
.tender-result-mfsj .tender-form-item {
height: auto;
}
.mar-bot-6{
margin-bottom: 6px;
}
.mr-bot-12{
margin-bottom: 12px;
}
.tender-title-count {
color: #feb338;
width: 95px;
text-align: center;
display: inline-block;
*display: inline;
*zoom:1;
}
.tender-result-text span{
color: #68c192;
}
.tender-pop-title.littlefont .tender-title-text {
font-size: 14px;
color: #333;
font-weight: normal;
}
.tender-mfsj-btn {
position: relative;
display: block;
margin: 18px auto 12px;
width: 120px;
height: 40px;
color: #fff;
}
.tender-mfsj-btn em {
display: block;
width: 101px;
height: 38px;
line-height: 38px;
cursor: pointer;
text-align: center;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/tender_list_bg.png) no-repeat 0px 0px;
_background: url(http://img.to8to.com/to8to_img/xgt/xgt_xqy.gif) no-repeat -412px -347px;
}
.tender-mfsj-btn.no-allow em {
background-position: 0px -48px;
cursor: not-allowed;
}
.tender-pop-right .littlefont {
padding-top: 142px;
font-size: 22px;
font-weight: bold;
color: #333;
}
.tender-pop-mfbj .new-init-yusuan {
padding-top: 25px;
padding-bottom: 30px;
}
.tender-pop-mfbj .new-init-yusuan li {
height: 26px;
}
.tender-pop-left {
float: left;
width: 490px;
/* border-right: 1px solid #ddd; */
height: 500px;
+height: 460px;
position: relative;
}
.mfsj-left-lien{
height: 332px;
width: 1px;
background: #73c579;
position: absolute;
right: -10px;
top: 168px;
}
.tender-pop-right {
float: right;
width: 470px;
height: 500px;
margin-right: 40px;
+height: 460px;
}
.to8to_zj {
margin-left: 10px;
color: #bbb;
font-size: 14px;
}
.dn {
display: none;
}
.submit-box{
position: absolute;
top: 208px;
left: 437px;
width: 125px;
height: 139px;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-btn.png) no-repeat;
z-index: 9;
overflow: hidden;
margin-top: 0;
}
.ico-line-top{
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-top.png) no-repeat center center;
width: 38px;
height: 47px;
position: absolute;
top: 164px;
left: 480px;
display: block;
}
.ico-line-bottom{
height: 154px;
width: 1px;
display: block;
position: absolute;
top: 346px;
left: 500px;
background: #f6c03f;
}
.no-allow .tender-recalc {
cursor: not-allowed;
}
.tender-calc-btn,
.tender-calc-btn.again {
position: absolute;
top: 25px;
left: 16px;
width: 90px;
height: 90px;
z-index: 15;
background: #f6c03f;
background-position: 0 0;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 45px;
}
.mfbjcalc-btn-ie {
position: absolute;
top: 0px;
left: 0px;
width: 125px;
height: 139px;
background: url(http://img.to8to.com/to8to_img/zxbj/common_tender/ico-line-btn.png) no-repeat;
background-size: contain;
}
.mfbjcalc-btn-ie img{
margin-top: 7px;
}
.tender-recalc {
position: absolute;
top: 20px;
left: 23px;
font-size: 16px;
width: 45px;
height: 45px;
color: #fff;
/* line-height: 90px; */
text-align: center;
cursor: pointer;
}
.old-circle-animate{
position: absolute;
top: 15px;
right: 8px;
width: 110px;
height: 110px;
-webkit-border-radius:50%;
border-radius: 50%;
background: #fde5ba;
z-index: 12;
-webkit-animation:scale-three2 1.5s ease infinite;
-moz-animation:scale-three2 1.5s ease infinite;
-o-animation:scale-three2 1.5s ease infinite;
animation:scale-three2 1.5s ease infinite;
animation-fill-mode: both;
}
@keyframes scale-three2{
0%{
transform:scale(1);
opacity: 0.8;
}
100%{
transform:scale(1.3);
opacity:0;
}
}
@-webkit-keyframes scale-three2{
0%{
-webkit-transform:scale(1);
opacity: 0.7;
}
100%{
-webkit-transform:scale(1.3);
opacity:0;
}
}
@-moz-keyframes scale-three2 {
0%{
-moz-transform:scale(1);
opacity: 0.7;
}
100%{
-moz-transform:scale(1.3);
opacity:0;
}
}
@-o-keyframes scale-three2 {
0%{
-o-transform:scale(1);
opacity: 0.7;
}
100%{
-o-transform:scale(1.3);
opacity:0;
}
}
/* 鍏嶈垂璁捐 */
.tender-init-mfsj .tender-form-list {
width: 360px;
margin: 0px auto 0;
}
.tender-init-mfsj .tender-form-footer {
margin: 0 97px 13px;
}
.tender-init-mfsj .tender-form-explain {
text-align: center;
}
.tender-init-mfsj .tender-form-item, .tender-pop-company .tender-form-item {
margin-bottom: 20px;
}
.tender-init-mfsj .tender-form-select.province {
width: 123px;
}
.tender-init-mfsj .tender-form-input {
width: 236px;
}
/* 瑁呬慨鍏徃 */
.tender-pop-company .tender-price-result li span {
width: 55%;
}
.tender-pop-company .tender-price-result li strong {
width: 45%;
}
.tender-company-result {
width: 340px;
margin-left: 40px;
margin-bottom: 10px;
display: none;
}
.tender-company-result-list {
height: 70px;
padding: 9px 0 9px 10px;
margin-bottom: 5px;
border: 1px solid #ddd;
}
.tender-company-result-list dt {
float: left;
width: 70px;
height: 70px;
}
.tender-company-result-list dd {
float: left;
width: 258px;
height: 70px;
}
.tender-company-result-list dt a {
display: block;
width: 68px;
height: 68px;
border: 1px solid #ddd;
}
.tender-company-result-list dt img {
display: block;
width: 100%;
height: 100%;
}
.tender-company-name {
float: left;
width: 127px;
padding: 0 10px;
}
.tender-company-name h4 {
width: 127px;
height: 28px;
margin-bottom: 5px;
line-height: 28px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: normal;
}
.tender-company-name h4 a {
font-size: 14px;
color: #333;
}
.tender-company-name p {
height: 20px;
line-height: 20px;
color: #999;
font-size: 12px;
}
.tender-company-name p span, .tender-company-detail p span {
color: #f36f20;
}
.tender-company-detail {
float: left;
width: 98px;
padding-left: 10px;
border-left: 1px solid #ddd;
font-size: 12px;
}
.tender-company-detail p {
height: 22px;
line-height: 22px;
color: #666;
}
.tender-pop-company .tender-form-explain {
text-align: center;
}
/* 瑁呬慨鏉愭枡 */
.tender-material-result {
overflow: hidden;
width: 348px;
height: 248px;
margin: 20px auto 0;
border: 1px solid #eee;
}
.tender-material-table {
width: 351px;
height: 251px;
}
.tender-material-table li {
float: left;
width: 154px;
height: 41px;
padding-left: 20px;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
line-height: 41px;
font-size: 12px;
color: #999;
}
.tender-material-table li span {
float: left;
width: 72px;
color: #666;
}
.tender-material-table li strong {
float: left;
padding-right: 5px;
color: #333;
font-family: 'Arial';
font-size: 14px;
text-align: center;
}
.tender-pop-material .tender-price-ad {
margin: 20px auto 0;
}
.tender-pop-material .tender-price-ad p {
width: 350px;
}
/* 妤肩洏涓嬫媺妗� */
.tender-loupan-box {
width: 230px;
border:1px solid #eee;
position: absolute;
margin-top: -1px;
height: 100px;
overflow-y: auto;
overflow-x:hidden;
display: none;
background-color: #FFF;
top: 38px;
left: 86px;
z-index: 10;
}
.tender-loupan-box li{
padding:0 10px;
height: 34px;
line-height: 34px;
width: 288px;
overflow: hidden;
white-space: nowrap;
text-overflow:ellipsis;
cursor: pointer;
}
.tender-loupan-box ul li:hover{
background-color: #F8F8F8;
color: #333;
}
/*閫傞厤鏁堟灉鍥炬姤浠烽〉*/
.tender-pop-showImg{
width: 240px;
height: 145px;
margin: 7px auto;
text-align: center;
border:5px solid #fff;
}
.tender-pop-showImg img{
display: inline;
max-width: 240px;
max-height: 145px;
}
.tender-price-newResult{
margin:0 auto;
height: 51px;
width: 298px;
background-color: #FFF9F6;
border: 1px solid #FFE4DA;
text-align: center;
padding:12px 3px;
}
.tender-price-newResult li{
display:inline-block;
width:114px;
margin:-7px 0px -8px;
text-align: left;
float:left;
}
.tender-price-imgad{
margin-top:24px;
}
.tender-price-newResult li strong{
line-height: 40px;
font-weight:normal;
}
.tender-price-newResult .to8to_zj{
font-size:12px;
}
/* 寮规瑙嗛 */
.tender-video {
display: none;
}
.tender-video-title {
padding-top: 45px;
font-size: 22px;
text-align: center;
line-height: 36px;
padding-right: 27px;
}
.tender-video-wrapper {
width: 360px;
height: 200px;
margin-left: 45px;
margin-top: 21px;
margin-bottom: 33px;
position: relative;
}
.tender-video-tip {
line-height: 27px;
font-size: 14px;
padding-right: 27px;
text-align: center;
}
.tender-video-num {
color: #ff6000;
}
.video-first-text {
display: block;
}
.tender-video-wrapper-hand {
display: none;
position: absolute;
right: -8px;
bottom: -8px;
}
.tender-video-wrapper-btn {
position: absolute;
right: 8px;
bottom: 8px;
display: block;
width: 35px;
height: 35px;
}
/*鏂扮増鏁堟灉鍥捐鎯呴〉 by fidermo.hu 2016/11/04*/
.newbj-select-province{
width:155px;
height:38px;
font-size:14px;
border:1px solid #e3e3e3;
}
.newbj-province-margin{
margin-right:10px;
}
input.newbj-square,
input.newbj-phone{
width:300px;
height:21px;
}
.newbj-tips-font{
left:11px;
}
.newbj-form-sup{
right:6px;
}
.newbj-tender-huxing select{
width:60px;
height:38px;
font-size:14px;
border:1px solid #e3e3e3;
}
.newbj-right-margin{
margin-right:5px;
}
.newbj-calcBn{
width: 120px;
height: 36px;
margin: 0 auto;
background-color: #f36f20;
font-size:14px;
color: #fff;
text-align: center;
line-height: 36px;
cursor:pointer;
margin-top: -6px;
}
.newbj-result-server{
margin-top: 8px;
text-align: center;
font-size: 18px;
}
.newbj-result-design{
margin-top: 6px;
text-align: center;
font-size: 14px;
color:red;
font-weight:bold;
}
.newbj-result-jpg{
display: block;
width: 299px;
height: 115px;
margin: 0 auto;
margin-top: 17px;
}
.newbj-form-item .form_error{
left:0px;
}
.result-title{
margin-top: 35px;
text-align: center;
font-size: 22px;
font-weight: bold;
color: black;
}
.slide-container{
position: relative;
width: 320px;
margin: 0 auto;
margin-top: 24px;
}
.result-bottom{
height: 25px;
font-size: 14px;
color: #333;
text-align: center;
margin:10px 0px -10px;
}
.lastPic,
.nextPic{
width: 24px;
height: 30px;
position: absolute;
background-color: #000;
opacity: 0.5;
filter: alpha(opacity=50);
top: 56%;
margin-top: -25px;
z-index: 2;
}
.lastPic:hover,
.nextPic:hover{
opacity:0.75;
}
.lastPic{
left:0px;
}
.nextPic{
right:0px;
}
.lastPic span,
.nextPic span{
display: block;
width: 11px;
height: 20px;
margin: 5px auto;
line-height: 99em;
overflow: hidden;
font-size: 0;
background: url(http://img.to8to.com/decorate_gallery/images/png/banner.png?v=1411559744) no-repeat;
}
.lastPic span{
background-position:0px 0px;
}
.nextPic span{
background-position:-12px 0px;
}
.slider-newBJ{
position: relative;
bottom: 19px;
z-index: 2;
width: 56px;
margin: 0 auto;
}
.slider-newBJ li{
width: 10px;
height: 10px;
float: left;
margin: 0 2px;
}
.slider-newBJ li a{
display: block;
width: 10px;
height: 10px;
background-position: 0 -21px;
overflow: hidden;
opacity: 0.5;
filter: alpha(opacity=50);
background: url(http://img.to8to.com/decorate_gallery/images/png/banner.png?v=1411559745) no-repeat;
background-position: 0px -21px;
}
.slider-newBJ li a.slider-On{
background-position: -17px -21px;
opacity: 1;
}
/*.tender-price-ad .region-phone{
color:red;
font-weight: bold;
}*/
.tender-price-ad .newBJ-result-text{
width: 390px;
color: #feb338;
font-size: 12px;
}
.Result-newBJ-right{
width:320px;
height:240px;
}
.Result-newBJ-right img{
width:320px;
height:240px;
}
.tender-price-ad .newBJ-result-warn{
margin:0;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗笁鐗�*/
.pop-weixin-consult{
width: 338px;
height: 80px;
border: 1px solid #009cff;
position: relative;
margin: 43px 0 0 26px;
display: none;
}
.pop-weixin-consult-xgt{
margin: 26px 0 0 83px;
}
.pop-weixin2-consult{
display: none;
width: 356px;
margin: 74px 0 0 37px;
}
.pop-weixin2-consult img{
width: 356px;
height: 224px;
}
.con-bj-new2 .con_bj_res {
width: 356px;
padding: 45px 40px 0 0;
color: #333;
font-size: 14px;
}
.zxbj-weixin2-point{
font-size: 18px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
text-align: right;
}
.pop-weixin2-consult .attention2{
color: #fe4800;
text-align: center;
margin-bottom: 31px;
font-size: 12px;
}
.pop-weixin-consult .zxbj-weixin-portrait-left{
position: absolute;
width: 120px;
height: 92px;
top: -30px;
left: 3px;
z-index: 6;
}
.pop-weixin-consult .zxbj-weixin-portrait-left img {
width: 135px;
height: 95px;
z-index: 10;
}
.pop-weixin-consult .zxbj-weixin-portrait-text{
position: absolute;
top: 39px;
left: 19px;
z-index: 6;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .zxbj-weixin-point{
font-size: 12px;
color: #5abcfd;
margin: 4px 0 0 -9px;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .zxbj-weixin-zxgw{
font-size: 12px;
color: #fff;
}
.pop-weixin-consult .zxbj-weixin-portrait-title{
position: absolute;
z-index: 6;
top: 20px;
left: 135px;
font-size: 14px;
color: #333;
}
.pop-weixin-consult .zxbj-weixin-portrait-title .portrait-title2 {
margin-top: -3px;
}
.pop-weixin-consult .zxbj-weixin-portrait-btn {
position: absolute;
top: 17px;
right: 12px;
}
.pop-weixin-consult .zxbj-weixin-portrait-btn img {
width: 100px;
height: 50px;
cursor: pointer;
}
.pop-weixin-consult .zxbj-weixin-portrait-text .weixin-zxgw-name{
font-size: 12px;
color: #fe4800;
}
.pop-weixin-consult .zxbj-weixin-portrait-right{
display: none;
position: absolute;
right: 17px;
top: -90px;
width: 90px;
height: 114px;
background-color: #fff;
z-index: 10;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-weixin-code {
right: 0;
top: 0;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281448') no-repeat;
background-position: -523px -306px;
width: 74px;
height: 74px;
border: 1px solid #fff;
border-top: 0;
border-right: 0;
margin: 7px 0 0 7px;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-wx-icon{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281448') no-repeat -1px -176px;
width: 16px;
height: 12px;
top: 3px;
left: -17px;
}
.pop-weixin-consult .zxbj-weixin-portrait-right .zxbj-wx-guide {
position: relative;
font-size: 12px;
color: #333;
margin-left: 23px;
}
.pop-weixin-consult-dg .zxbj-weixin-portrait-right .zxbj-weixin-code{
background-position: -1px -80px;
}
.pop-weixin-consult .portrait-right-bg {
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612291639') no-repeat -240px -584px;
width: 90px;
height: 114px;
position: absolute;
top: 0px;
left: 0;
padding-top: 1px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box{
position: relative;
width: 356px;
height: 222px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title1{
position: absolute;
font-size: 18px;
font-weight: bold;
color: #01af63;
top: -6px;
left: 72px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-bg{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -244px -78px;
width: 356px;
height: 222px;
z-index: 15;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-show{
position: absolute;
top: 43px;
left: 60px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-left{
float: left;
margin-right: 35px;
position: relative;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-right{
float: left;
margin-top: -2px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1{
font-size: 12px;
color: #333;
margin: 7px 0 0 -28px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1-name{
font-size: 12px;
color: #fe4800;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p2{
font-size: 12px;
color: #333;
margin-left: -18px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3{
position: relative;
font-size: 12px;
font-weight: bold;
color: #333;
margin: 7px 0 0 15px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3 .zxbj-wx-icon{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -1px -176px;
width: 16px;
height: 12px;
left: -21px;
top: 2px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-portrait{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/wxxh_portrait.gif?v=201612292110');
width: 138px;
height: 100px;
z-index: 20;
margin: -8px 0 0 -39px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-code{
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201703021628') no-repeat;
background-position: -1px -584px;
width: 110px;
height: 110px;
z-index: 20;
}
.pop-weixin2-consult-dg .zxbj-weixin2-fruit-box .fruit-show-code{
background-position: 0 -190px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .pop-fruit-show-arrow{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -23px -175px;
width: 23px;
height: 14px;
top: 37px;
left: 103px;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title2{
font-size: 14px;
position: absolute;
bottom: 2px;
left: 10px;
color: #fff;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-title2-fff000{
font-weight: bold;
color: #fff000;
}
.pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-title2-b{
font-weight: bold;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗洓鐗� fidermo.hu 17/1/14 start*/
.pop-specialcity{
height: 73px;
margin-bottom: 0;
}
.pop-label{
float: left;
width: 81px;
padding-right: 5px;
line-height: 34px;
color: #333;
text-align: left;
margin-left: 0;
font-size: 14px;
}
.pop-label-start{
color: #feb338;
position: relative;
top: 3px;
font-size: 24px;
vertical-align: middle;
margin-right: 9px;
}
.pop-label-text{
margin-top:-19px;
}
.pop-specialcity .pop-element{
width:259px;
margin-left:84px;
}
.pop-text-wrap{
position: relative;
}
.pop-specialcity .pop-text-wrap .tender-form-input{
width: 237px;
height: 32px;
padding-top: 11px;
border: 0;
background: url("http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423") -451px -522px no-repeat;
}
.pop-specialcity .pop-text-wrap .tender-form-font{
top:9px;
left:12px;
}
.pop-choosebjway{
height:20px;
}
.pop-choosebjway li{
position: relative;
float:left;
padding-left:20px;
margin-left:16px;
cursor:pointer;
line-height:19px;
}
.pop-choosebjway em{
position:absolute;
display: block;
width:15px;
height:15px;
left:0px;
top:3px;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423') no-repeat -451px -470px;
}
.pop-blueradio{
color:#5ABCFD;
}
.pop-blueradio em{
background-position:-468px -488px;
}
.pre-pop-fruit-show-arrow{
position: absolute;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201612281533') no-repeat -23px -175px;
width: 23px;
height: 14px;
top: 100px;
left: 190px;
}
/*寰俊寮曞鍗曠嫭鏍峰紡*/
.pop-suspend-wechat{
display: none;
position:absolute;
width:370px;
height:223px;
bottom:70px;
right:43px;
background: url('http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423') no-repeat -450px -572px;
}
.pop-suspend-wechat p{
height:19px;
line-height:19px;
}
.pop-sus-head{
font-weight: bold;
text-align: center;
font-size: 18px;
margin-top: 21px;
}
.pop-sus-headimg{
float: left;
width: 170px;
height: 134px;
margin-left: 21px;
margin-top: 22px;
}
.pop-headdetail{
position: relative;
z-index: 1;
width: 91px;
height: 90px;
margin: 0 auto;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -447px -805px;
}
.pop-worddetail{
position: relative;
z-index: 2;
height: 29px;
width: 140px;
margin: 0 auto;
margin-top: -11px;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -573px -835px;
}
.pop-sus-headimg p{
color: #5ABCFD;
text-align: center;
font-size: 12px;
}
.pop-worddetail p{
text-align: center;
color: #fff;
font-size: 13px;
line-height: 25px;
}
.pop-sus-quocode{
float: right;
width: 105px;
height: 131px;
font-size: 12px;
text-align: center;
margin-right:46px;
margin-top:17px;
}
.pop-sus-quocode div{
height: 100px;
margin-bottom: 5px;
border: 1px solid #eee;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201703021618) no-repeat -821px -283px;
}
.pop-element .pop-choosebjway,
.pop-element .pop-suspend-wechat{
display: none;
}
.pop-specialcity .pop-element .pop-choosebjway{
display: block;
}
/*鍙充晶璁$畻鎶ヤ环鏍�*/
.pop-calc-disabled,
a.pop-calc-disabled:hover,
a.pop-calc-disabled:active{
background: #fefefe url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh.png?v=201701131423) no-repeat -635px -271px;
pointer-events:none;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗洓鐗� fidermo.hu 17/1/14 end*/
/*閿欒鎻愮ず鏍峰紡閿欎綅闂 hank.lan 17/3/21*/
.pop-specialcity .pop-text-wrap .form_error{
left: 0;
top: 35px;
}
/*寮曞鍏虫敞寰俊灏忓彿 绗簲鐗� hank.lan 澧炲姞骞垮窞 鍗椾含 鍚堣偉 鏃犻敗 姝︽眽 闀挎矙*/
.fruit-show-code1{
display: none;
border: 1px solid #e8e8e8;
}
.fruit-show-code1 img{
width: 108px;
height: 108px;
display: block;
}
/* 鐑偣骞垮憡 */
.hotad-contain .littlefont {
padding-top: 62px;
}
.hotad-contain .tender-price-result-box {
position: relative;
margin-top: -8px;
}
.hotad-contain .tender-price-result-box .tender-price-result{
position:relative;
width:340px;
height:108px;
}
.tender-price-result-box .pop-hotad-result{
display: none;
height: 0;
overflow: hidden;
}
.hotad-contain .tender-price-result-box .pop-hotad-result{
display: block;
position: absolute;
bottom:12px;
left:83px;
height:50px;
padding-top:13px;
color:#999;
line-height:24px;
letter-spacing:1px;
font-size:12px;
text-align:left;
border-top:1px solid #e1e1e1;
}
.hotad-cl em,
.hotad-rg em,
.hotad-sj em,
.hotad-zj em{
display: inline-block;
width: 55px;
font-style: normal;
margin-left: 10px;
margin-right: 10px;
padding: 0;
font-weight: 400;
text-align: center;
font-size: 18px;
color: #feb338;
}
.hotad-contain .tender-price-result .hotad-cl,
.hotad-contain .tender-price-result .hotad-rg{
position:absolute;
left:18px;
}
.hotad-contain .tender-price-result .hotad-sj,
.hotad-contain .tender-price-result .hotad-zj{
position:absolute;
right:0px;
}
.hotad-contain .tender-price-result .hotad-cl,
.hotad-contain .tender-price-result .hotad-sj{
top:17px;
}
.hotad-contain .tender-price-result .hotad-rg,
.hotad-contain .tender-price-result .hotad-zj{
top:57px;
}
.hotad-contain .tender-price-result li span{
width:58px;
}
.hotad-contain .tender-price-result li strong{
width:106px;
}
.hotad-contain .tender-price-result em{
display: inline;
width: auto;
margin: 0;
padding: 0 6px 0 2px;
font-size: 14px;
font-weight: 700;
}
.pop-result-hotad,
.pop-wechat-ad{
display:none;
position:relative;
width:339px;
height:0;
margin:0 auto;
margin-top:23px;
overflow:hidden;
}
.hotad-contain .pop-result-hotad,
.hotad-contain .pop-weixin2-consult .pop-wechat-ad{
display: block;
height:60px;
}
.hotad-contain .pop-weixin2-consult .attention2{
display: none;
}
.hotad-contain .pop-result-hotad img,
.hotad-contain .pop-wechat-ad img{
width:100%;
}
.hotad-contain .pop-result-hotad p,
.hotad-contain .pop-wechat-ad p{
position:absolute;
right:0;
bottom:0;
width:35px;
height:16px;
line-height:16px;
color:#fff;
font-size:12px;
background: #000;
filter:alpha(opacity=70);
opacity: .7;
text-align:center;
}
.hotad-contain .pop-weixin2-consult{
margin-top:75px;
}
.pop-wechat-hotad{
display: none;
width: 370px;
padding-top: 30px;
font-size: 14px;
color:#999;
margin:0 auto;
text-align:center;
}
.pop-wechat-hotad .wechat-img{
width:69px;
height:69px;
margin:0 auto;
background:url(//img.to8to.com/to8to_img/wx_xh/zxbj_wxxh.png?v=20170428) no-repeat -384px 0;
}
.pop-wechat-hotad .wechat-message{
width:100%;
text-align:center;
color:#333;
font-size:20px;
margin-top:21px;
}
.pop-wechat-hotad .wechat-text{
margin-top:20px;
}
.pop-wechat-hotad .wechat-recall{
color:#ff5200;
margin-top:11px;
margin-bottom:68px;
}
.pop-hotad-result .call-phone{
color:#fe5f00;
}
.pop-weixin2-hotad .zxbj-weixin2-point{
display: none;
}
/* 瀹℃牳淇℃伅鏍峰紡 */
.pop-check-frame .tender-pop-left,
.pop-check-info{
display: none;
}
.pop-check-frame .tender-pop-right{
float: left;
margin-left: 16px;
padding-right: 10px;
position: relative;
/* border-right: 1px solid #E8E8E8; */
}
.pop-check-frame .pop-check-info{
display: block;
position: relative;
float: left;
width: 375px;
margin: 148px 0 0 52px;
color: #333;
font-size: 14px;
}
.pop-check-info h3{
font-size:18px;
color:#333;
}
.pop-check-info h3 span{
font-size:12px;
color:#feb338;
}
.pop-check-info .check_question{
padding: 0;
font-size:14px;
color:#999;
background: transparent;
}
.pop-check-info .house-type{
margin-top: 12px;
}
.pop-check-info .decorate-time{
margin-top: 6px;
}
.pop-check-info .plot-name{
margin-top: 15px;
}
.check-house{
float:left;
width:110px;
height:100px;
}
.check-house-last{
margin-top:-4px;
}
.check-house,
.check-time{
cursor:pointer;
}
.check-house div{
width:80px;
height:85px;
margin:0 auto;
}
.decorate-time .check-time{
float:left;
margin-top:12px;
}
.check-house div,
.check-house p i,
.check-time p i{
background:url(//img.to8to.com/to8to_img/zxbj/zxbjcontainer.png?v=20170508) no-repeat -529px -164px;
}
.check-house .old-house{
background-position-X:-655px;
}
.check-house .little-change{
background-position:-779px -171px;
}
.check-house p,
.check-time p{
position: relative;
text-indent: 15px;
font-size:12px;
color:#333;
}
.pop-check-info .check-house p{
margin-left: 27px;
margin-top: -6px;
}
.pop-check-info .check-house-last p{
margin-top:-2px;
}
.check-time p{
text-indent:18px;
margin-left:13px;
}
.check-time-next p{
margin-left:27px;
}
.check-house p i,
.check-time p i{
position: absolute;
width:15px;
height:15px;
left: 0;
top: 3px;
background-position: -560px -258px;
}
.check-house.on p i,
.check-time.on p i{
background-position: -535px -258px;
}
.plot-name .check_question{
float:left;
margin-top: 5px;
}
.plot-name input{
width:229px;
height:30px;
text-indent:6px;
border:1px solid #e8e8e8;
}
.check-upload,
.check-upload:hover{
display: block;
width: 80px;
height: 32px;
background-color: #FF701A;
color: #fff;
text-align: center;
line-height: 32px;
margin: 0 auto;
margin-top: 28px;
}
.pop-check-info .complate-form{
display: none;
position: absolute;
top: 148px;
left: 90px;
width: 180px;
height: 42px;
background: #000;
filter:alpha(opacity=60);
opacity: .6;
text-align: center;
line-height: 42px;
font-size:14px;
color:#fff;
}
.check-right-line{
display: none;
height: 332px;
width: 1px;
background: #73c579;
position: absolute;
right: -4px;
top: 168px;
}
.pop-check-frame .tender-pop-right .check-right-line{
display: block;
}
/* 鏅€氱粨鏋滄€� */
.pop-check-frame .tender-pop-right .littlefont{
padding-top: 142px;
}
.pop-check-frame .tender-pop-right .littlefont .price-result-title{
font-size: 18px;
/* font-weight:normal; */
}
.pop-check-frame .tender-price-result-box{
padding-top: 10px;
}
.pop-check-frame .tender-price-result{
width: 306px;
padding: 13px 0;
}
.pop-check-frame .tender-price-result li span{
width: 44%;
}
.pop-check-frame .tender-price-result li strong{
width: 56%;
}
.pop-check-frame .tender-price-ad{
margin-left: 78px;
}
/* 寰俊灏忓彿缁撴灉鎬� */
.pop-check-frame .pop-weixin2-consult{
margin-top: 148px;
*padding-top: 148px;
}
.pop-check-frame .zxbj-weixin2-point{
text-align: center;
font-weight: normal;
}
.pop-check-frame .pop-weixin2-consult .attention2{
margin-top: -4px;
margin-bottom: 0;
color: #feb338;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box{
width: 357px;
height: 248px;
margin-top: 16px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-bg{
width: 357px;
height: 244px;
background: url(http://static.to8to.com/img/to8to_img/wx_xh/zxbj_wxxh_check.png?v=201705111615) no-repeat -322px -252px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title1{
color: #05c679;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-show{
top: 56px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1{
margin-top: 2px;
margin-left: -13px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p1-name{
color: #05c679;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p2{
margin-top: 2px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-right{
margin-top: -4px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .fruit-show-p3{
margin-top: 9px;
}
.pop-check-frame .pop-weixin2-consult .zxbj-weixin2-fruit-box .weixin2-fruit-title2{
bottom: 7px;
}
/* 瀹℃牳淇℃伅缁撴灉寮圭獥 */
.check_pop_succ{
display: none;
z-index:10000;
}
.check_pop_succ,
.check_pop_succ .check_grey_layer{
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
}
.check_pop_succ .check_grey_layer{
background: #000;
filter:alpha(opacity=60);
opacity: .6;
}
.check_pop_succ .check_pop_tip{
position: absolute;
top:248px;
z-index: 2;
width: 320px;
height: 237px;
background-color:#fff;
border-radius:4px;
text-align:center;
}
.check_pop_tip .check_pop_img{
width:69px;
height:69px;
margin:0 auto;
margin-top:20px;
background: url(//img.to8to.com/to8to_img/wx_xh/zxbj_wxxh.png?v=20170428) -384px 0 no-repeat;
}
.check_pop_tip .check_pop_text{
font-size:16px;
color:#333;
}
.check_pop_tip .check_pop_recall{
margin-top:4px;
font-size:12px;
color:#999;
}
.check_pop_tip .check_pop_recall span{
color:#fe6022;
}
.check_pop_tip .close_check_pop,
.check_pop_tip .close_check_pop:hover{
display: block;
width:100px;
height:32px;
line-height:32px;
font-size:12px;
color:#666;
border-radius:2px;
border:1px solid #E8E8E8;
margin:0 auto;
margin-top:18px;
}
.pop-check-info .check-upload, .pop-check-info .check-upload:hover{
background-color: #feb338;
}
.window_box .window_box_title a{
z-index: 99;
}
| 0.393385 | 0.100834 |
==================== */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Karla:wght@400;700&display=swap");
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
:root {
--dark-violet: hsl(256, 26%, 20%);
--grayish-blue: hsl(216, 30%, 68%);
--very-dark-violet: hsl(270, 9%, 17%);
--dark-grayish-violet: hsl(273, 4%, 51%);
--very-light-gray: hsl(0, 0%, 98%);
--fw-reg: 400;
--fw-bold: 700;
}
body {
margin: 0;
font-size: 1rem;
line-height: 1.6;
font-family: "Karla", sans-serif;
overflow-x: hidden;
}
img {
max-width: 100%;
}
h1,
h2,
h3,
h4 {
margin: 0;
font-family: "DM Serif Display", sans-serif;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul a {
text-decoration: none;
}
.btn {
background: transparent;
border: 2px solid var(--very-light-gray);
padding: 1em 6em;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 16px;
font-family: "Karla", sans-serif;
cursor: pointer;
}
.container {
width: 90%;
margin: 0 auto;
max-width: 1100px;
}
#desktop-pattern-right,
#desktop-pattern-left,
#intro-img-desktop,
#desktop-action-pattern,
#desktop-footer-pattern,
#hamburger-close {
display: none;
}
/* Navigation ====
================ */
header {
padding: 1em 0;
position: relative;
}
#hamburger,
#hamburger-close {
position: absolute;
right: 0;
top: 10px;
cursor: pointer;
}
.navbar {
visibility: hidden;
position: absolute;
height: 0;
}
.navbar-visible {
visibility: visible;
position: relative;
height: auto;
}
.nav-list {
margin: 1em -2em;
text-align: center;
background: var(--very-dark-violet);
position: relative;
height: 100vh;
padding: 1.5em 0;
}
.nav-item {
padding-top: 2em;
}
.nav-link {
color: var(--very-light-gray);
text-transform: uppercase;
font-size: 1.5rem;
}
#mobile-nav-pattern {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.btn-accent {
padding: 0.5em 2.5em;
}
/* Hero ======
============= */
.hero {
text-align: center;
background: var(--dark-violet);
}
.hero-content {
text-align: center;
padding: 5rem 0 6rem 0;
position: relative;
}
.hero-heading {
color: var(--very-light-gray);
font-size: 3rem;
line-height: 1;
position: relative;
z-index: 4;
}
.hero-info {
margin: 1.5em auto;
width: 95%;
color: var(--very-light-gray);
}
.hero-link {
color: var(--very-light-gray);
padding: 0.6em 1.8em;
display: block;
width: 50%;
margin: 2.5em auto 0;
}
.hero-link:hover,
.hero-link:focus {
background: var(--very-light-gray);
color: var(--dark-violet);
}
#mobile-pattern-right {
position: absolute;
right: -6%;
bottom: -38%;
}
#mobile-pattern-left {
position: absolute;
left: -6%;
top: -1.5%;
z-index: 1;
}
/* Main Section ===
================= */
.main {
text-align: center;
padding: 12em 0;
}
.main-heading {
font-size: 3rem;
position: relative;
display: inline-block;
margin-bottom: 1em;
}
.main-heading:after {
content: "";
display: block;
position: absolute;
top: -50%;
left: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
height: 1px;
width: 50%;
background: var(--dark-violet);
}
.card + .card {
margin-top: 4em;
}
.card .card-title {
margin-top: 1em;
font-size: 1.75rem;
}
.card .card-info {
color: var(--dark-grayish-violet);
}
/* Call to action ===
================== */
.call-to-action {
margin-top: 8rem;
padding: 4em 3em;
background: var(--dark-violet);
position: relative;
}
.call-to-action .call-to-action-headline {
font-size: 2.5rem;
color: var(--very-light-gray);
line-height: 1.1;
margin-bottom: 1em;
position: relative;
z-index: 1;
}
.call-to-action .cta-btn {
display: inline-block;
padding: 0.5em 1.25em;
color: var(--very-light-gray);
}
.call-to-action .cta-btn:hover,
.call-to-action .cta-btn:focus {
background: var(--very-light-gray);
color: var(--dark-violet);
}
.call-to-action #mobile-action-pattern {
position: absolute;
height: 100%;
right: 0;
top: 0;
z-index: 0;
}
/* Footer =====
============= */
.footer {
background: var(--very-light-gray);
position: relative;
padding-bottom: 5em;
}
.footer #mobile-footer-pattern {
position: absolute;
top: 0;
left: 0;
}
.footer .footer-container {
text-align: center;
}
.footer .footer-head {
padding: 5em 0 2em 0;
position: relative;
}
.footer .footer-head::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: #837d88;
}
.footer .footer-head .social-icons {
margin-top: 1.5em;
}
.footer .footer-head .social-icons .social-icon {
margin: 0 0.35em;
cursor: pointer;
}
.footer .footer-head .social-icons .social-icon:hover, .footer .footer-head .social-icons .social-icon:focus {
fill: var(--very-dark-violet);
}
.footer-links-container {
margin-top: 2em;
}
.footer-list {
text-transform: uppercase;
letter-spacing: 1px;
margin: 2em auto;
}
.footer-item {
margin: 0.5em auto;
position: relative;
display: block;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.footer-item a {
color: var(--very-dark-violet);
font-size: 14px;
font-weight: 700;
}
.footer-item a::after {
content: "";
display: block;
position: absolute;
top: 80%;
left: 0;
height: 1px;
background: var(--very-dark-violet);
width: 0%;
opacity: 0;
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.footer-item a:hover::after, .footer-item a:focus::after {
opacity: 1;
width: 100%;
}
.footer-item-accent {
margin-bottom: 2em;
color: #837d88;
font-weight: 700;
}
/* Media queries ===
================= */
@media (min-width: 375px) {
/* Hero ====
========== */
#intro-img-mobile {
display: none;
}
#intro-img-desktop {
display: inline-block;
margin: 1em 0;
}
#mobile-pattern-left {
top: 0;
}
#mobile-pattern-right {
bottom: -15%;
}
}
@media (min-width: 680px) {
/* Navigation ==
============== */
#hamburger,
#hamburger-close,
#mobile-nav-pattern {
display: none;
}
.navbar {
visibility: visible;
height: auto;
position: relative;
}
header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 1.75em 0;
}
.nav-list {
background: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: auto;
margin: 0;
padding: 0;
}
.nav-item {
padding-top: 0;
margin-left: 2em;
}
.nav-link {
font-size: 0.85rem;
font-weight: var(--fw-bold);
color: var(--dark-grayish-violet);
}
.nav-link:hover,
.nav-link:focus {
color: var(--very-dark-violet);
}
.btn-accent {
padding: 0.5em 1.5em;
border: 2px solid var(--very-dark-violet);
color: var(--very-dark-violet);
}
.btn-accent:hover,
.btn-accent:focus {
color: var(--very-light-gray);
background: var(--very-dark-violet);
}
/* Hero ====
=========== */
.hero {
position: relative;
}
#mobile-pattern-right,
#mobile-pattern-left {
display: none;
}
#desktop-pattern-right,
#desktop-pattern-left {
display: block;
position: absolute;
}
#desktop-pattern-right {
top: 0;
right: 0;
height: 50%;
}
#desktop-pattern-left {
left: 0;
bottom: -25%;
height: 50%;
}
.hero-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
text-align: left;
}
.image-container {
width: 50%;
}
.hero-details {
width: 44%;
position: relative;
}
.hero-details::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 30%;
height: 1px;
background: var(--very-light-gray);
}
.hero-heading {
margin-top: 1em;
}
.hero-info {
margin: 2em 0;
}
.hero-link {
margin: 0;
padding: 0.35em 1.5em;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
/* Main ====
========== */
.main {
text-align: left;
}
.main .main-icon-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding-top: 2em;
}
.main .main-icon-container .card {
margin: 0;
width: 30%;
}
.main .main-heading:after {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
/* Call to action ==
================ */
#mobile-action-pattern {
display: none;
}
.call-to-action {
position: relative;
padding: 4em;
}
#desktop-action-pattern {
display: block;
position: absolute;
right: 0;
top: 0;
height: 100%;
z-index: 0;
}
.call-to-action-details {
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;
}
.call-to-action-details .call-to-action-headline {
margin: 0;
font-size: 3rem;
width: 50%;
}
.cta-btn {
position: relative;
margin: 0;
padding: 0.35em 1.5em;
z-index: 1;
}
/* Footer ====
============ */
#mobile-footer-pattern {
display: none;
}
#desktop-footer-pattern {
display: block;
position: absolute;
top: 0;
left: 0;
}
.footer-head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.footer-links-container {
padding: 1.5em 10em 0 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.footer-container {
text-align: left;
}
.footer-list {
margin: 0;
}
.footer-item {
margin: 0 0 0.75em 0;
text-align: left;
}
.footer-item-accent {
margin-bottom: 2em;
}
}
@media (min-width: 1000px) {
/* Hero ====
========== */
.hero-heading {
font-size: 4rem;
}
.hero-content {
position: relative;
}
.image-container {
position: absolute;
right: 0;
}
.hero {
padding-bottom: 2.5em;
}
}
@media (min-width: 1200px) {
#desktop-pattern-right {
top: 0;
right: 0;
height: 100%;
}
#desktop-pattern-left {
left: 0;
bottom: -55%;
height: 90%;
}
.main {
margin-top: 10rem;
}
}
/*# sourceMappingURL=main.css.map */
|
insure-landing-page-master/main.css
|
==================== */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Karla:wght@400;700&display=swap");
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
:root {
--dark-violet: hsl(256, 26%, 20%);
--grayish-blue: hsl(216, 30%, 68%);
--very-dark-violet: hsl(270, 9%, 17%);
--dark-grayish-violet: hsl(273, 4%, 51%);
--very-light-gray: hsl(0, 0%, 98%);
--fw-reg: 400;
--fw-bold: 700;
}
body {
margin: 0;
font-size: 1rem;
line-height: 1.6;
font-family: "Karla", sans-serif;
overflow-x: hidden;
}
img {
max-width: 100%;
}
h1,
h2,
h3,
h4 {
margin: 0;
font-family: "DM Serif Display", sans-serif;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul a {
text-decoration: none;
}
.btn {
background: transparent;
border: 2px solid var(--very-light-gray);
padding: 1em 6em;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 16px;
font-family: "Karla", sans-serif;
cursor: pointer;
}
.container {
width: 90%;
margin: 0 auto;
max-width: 1100px;
}
#desktop-pattern-right,
#desktop-pattern-left,
#intro-img-desktop,
#desktop-action-pattern,
#desktop-footer-pattern,
#hamburger-close {
display: none;
}
/* Navigation ====
================ */
header {
padding: 1em 0;
position: relative;
}
#hamburger,
#hamburger-close {
position: absolute;
right: 0;
top: 10px;
cursor: pointer;
}
.navbar {
visibility: hidden;
position: absolute;
height: 0;
}
.navbar-visible {
visibility: visible;
position: relative;
height: auto;
}
.nav-list {
margin: 1em -2em;
text-align: center;
background: var(--very-dark-violet);
position: relative;
height: 100vh;
padding: 1.5em 0;
}
.nav-item {
padding-top: 2em;
}
.nav-link {
color: var(--very-light-gray);
text-transform: uppercase;
font-size: 1.5rem;
}
#mobile-nav-pattern {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.btn-accent {
padding: 0.5em 2.5em;
}
/* Hero ======
============= */
.hero {
text-align: center;
background: var(--dark-violet);
}
.hero-content {
text-align: center;
padding: 5rem 0 6rem 0;
position: relative;
}
.hero-heading {
color: var(--very-light-gray);
font-size: 3rem;
line-height: 1;
position: relative;
z-index: 4;
}
.hero-info {
margin: 1.5em auto;
width: 95%;
color: var(--very-light-gray);
}
.hero-link {
color: var(--very-light-gray);
padding: 0.6em 1.8em;
display: block;
width: 50%;
margin: 2.5em auto 0;
}
.hero-link:hover,
.hero-link:focus {
background: var(--very-light-gray);
color: var(--dark-violet);
}
#mobile-pattern-right {
position: absolute;
right: -6%;
bottom: -38%;
}
#mobile-pattern-left {
position: absolute;
left: -6%;
top: -1.5%;
z-index: 1;
}
/* Main Section ===
================= */
.main {
text-align: center;
padding: 12em 0;
}
.main-heading {
font-size: 3rem;
position: relative;
display: inline-block;
margin-bottom: 1em;
}
.main-heading:after {
content: "";
display: block;
position: absolute;
top: -50%;
left: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
height: 1px;
width: 50%;
background: var(--dark-violet);
}
.card + .card {
margin-top: 4em;
}
.card .card-title {
margin-top: 1em;
font-size: 1.75rem;
}
.card .card-info {
color: var(--dark-grayish-violet);
}
/* Call to action ===
================== */
.call-to-action {
margin-top: 8rem;
padding: 4em 3em;
background: var(--dark-violet);
position: relative;
}
.call-to-action .call-to-action-headline {
font-size: 2.5rem;
color: var(--very-light-gray);
line-height: 1.1;
margin-bottom: 1em;
position: relative;
z-index: 1;
}
.call-to-action .cta-btn {
display: inline-block;
padding: 0.5em 1.25em;
color: var(--very-light-gray);
}
.call-to-action .cta-btn:hover,
.call-to-action .cta-btn:focus {
background: var(--very-light-gray);
color: var(--dark-violet);
}
.call-to-action #mobile-action-pattern {
position: absolute;
height: 100%;
right: 0;
top: 0;
z-index: 0;
}
/* Footer =====
============= */
.footer {
background: var(--very-light-gray);
position: relative;
padding-bottom: 5em;
}
.footer #mobile-footer-pattern {
position: absolute;
top: 0;
left: 0;
}
.footer .footer-container {
text-align: center;
}
.footer .footer-head {
padding: 5em 0 2em 0;
position: relative;
}
.footer .footer-head::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: #837d88;
}
.footer .footer-head .social-icons {
margin-top: 1.5em;
}
.footer .footer-head .social-icons .social-icon {
margin: 0 0.35em;
cursor: pointer;
}
.footer .footer-head .social-icons .social-icon:hover, .footer .footer-head .social-icons .social-icon:focus {
fill: var(--very-dark-violet);
}
.footer-links-container {
margin-top: 2em;
}
.footer-list {
text-transform: uppercase;
letter-spacing: 1px;
margin: 2em auto;
}
.footer-item {
margin: 0.5em auto;
position: relative;
display: block;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.footer-item a {
color: var(--very-dark-violet);
font-size: 14px;
font-weight: 700;
}
.footer-item a::after {
content: "";
display: block;
position: absolute;
top: 80%;
left: 0;
height: 1px;
background: var(--very-dark-violet);
width: 0%;
opacity: 0;
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.footer-item a:hover::after, .footer-item a:focus::after {
opacity: 1;
width: 100%;
}
.footer-item-accent {
margin-bottom: 2em;
color: #837d88;
font-weight: 700;
}
/* Media queries ===
================= */
@media (min-width: 375px) {
/* Hero ====
========== */
#intro-img-mobile {
display: none;
}
#intro-img-desktop {
display: inline-block;
margin: 1em 0;
}
#mobile-pattern-left {
top: 0;
}
#mobile-pattern-right {
bottom: -15%;
}
}
@media (min-width: 680px) {
/* Navigation ==
============== */
#hamburger,
#hamburger-close,
#mobile-nav-pattern {
display: none;
}
.navbar {
visibility: visible;
height: auto;
position: relative;
}
header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 1.75em 0;
}
.nav-list {
background: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: auto;
margin: 0;
padding: 0;
}
.nav-item {
padding-top: 0;
margin-left: 2em;
}
.nav-link {
font-size: 0.85rem;
font-weight: var(--fw-bold);
color: var(--dark-grayish-violet);
}
.nav-link:hover,
.nav-link:focus {
color: var(--very-dark-violet);
}
.btn-accent {
padding: 0.5em 1.5em;
border: 2px solid var(--very-dark-violet);
color: var(--very-dark-violet);
}
.btn-accent:hover,
.btn-accent:focus {
color: var(--very-light-gray);
background: var(--very-dark-violet);
}
/* Hero ====
=========== */
.hero {
position: relative;
}
#mobile-pattern-right,
#mobile-pattern-left {
display: none;
}
#desktop-pattern-right,
#desktop-pattern-left {
display: block;
position: absolute;
}
#desktop-pattern-right {
top: 0;
right: 0;
height: 50%;
}
#desktop-pattern-left {
left: 0;
bottom: -25%;
height: 50%;
}
.hero-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
text-align: left;
}
.image-container {
width: 50%;
}
.hero-details {
width: 44%;
position: relative;
}
.hero-details::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 30%;
height: 1px;
background: var(--very-light-gray);
}
.hero-heading {
margin-top: 1em;
}
.hero-info {
margin: 2em 0;
}
.hero-link {
margin: 0;
padding: 0.35em 1.5em;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
/* Main ====
========== */
.main {
text-align: left;
}
.main .main-icon-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding-top: 2em;
}
.main .main-icon-container .card {
margin: 0;
width: 30%;
}
.main .main-heading:after {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
/* Call to action ==
================ */
#mobile-action-pattern {
display: none;
}
.call-to-action {
position: relative;
padding: 4em;
}
#desktop-action-pattern {
display: block;
position: absolute;
right: 0;
top: 0;
height: 100%;
z-index: 0;
}
.call-to-action-details {
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;
}
.call-to-action-details .call-to-action-headline {
margin: 0;
font-size: 3rem;
width: 50%;
}
.cta-btn {
position: relative;
margin: 0;
padding: 0.35em 1.5em;
z-index: 1;
}
/* Footer ====
============ */
#mobile-footer-pattern {
display: none;
}
#desktop-footer-pattern {
display: block;
position: absolute;
top: 0;
left: 0;
}
.footer-head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.footer-links-container {
padding: 1.5em 10em 0 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.footer-container {
text-align: left;
}
.footer-list {
margin: 0;
}
.footer-item {
margin: 0 0 0.75em 0;
text-align: left;
}
.footer-item-accent {
margin-bottom: 2em;
}
}
@media (min-width: 1000px) {
/* Hero ====
========== */
.hero-heading {
font-size: 4rem;
}
.hero-content {
position: relative;
}
.image-container {
position: absolute;
right: 0;
}
.hero {
padding-bottom: 2.5em;
}
}
@media (min-width: 1200px) {
#desktop-pattern-right {
top: 0;
right: 0;
height: 100%;
}
#desktop-pattern-left {
left: 0;
bottom: -55%;
height: 90%;
}
.main {
margin-top: 10rem;
}
}
/*# sourceMappingURL=main.css.map */
| 0.316475 | 0.065276 |
.header {
padding: 15px;
text-align: center;
background: #AD102F;
color: white;
font-size: 26px;
font-family: 'Poppins', sans-serif;
}
body {
background: white;
padding-left: 200px;
}
.sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: auto;
top: 0;
left: 0;
background-color: #AD102F;
overflow-x: hidden;
padding: 80px 40px 60px 40px;
text-align: center;
float: left;
}
.sidenav a {
padding: 6px 8px 6px 8px;
text-decoration: none;
font-size: 25px;
color: #ffffff;
display: block;
}
a {
color:#ffffff;
}
/* .sidenav a:hover {
color: #f1f1f1;
} */
.main {
margin-left: 160px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/* create a recipe */
.createRecipe {
text-align: left;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
padding-bottom: 40px
}
.createRecipe h2 {
text-align: center;
}
#add {
position: relative;
}
#add button {
position: absolute;
bottom: 0;
}
/* search bar */
/* .sbx-custom {
display: inline-block;
position: relative;
width: 500px;
height: 51px;
white-space: nowrap;
box-sizing: border-box;
font-size: 14px;
}
.sbx-custom__wrapper {
width: 100%;
height: 100%;
}
.sbx-custom__input {
display: inline-block;
-webkit-transition: box-shadow .4s ease, background .4s ease;
transition: box-shadow .4s ease, background .4s ease;
border: 0;
border-radius: 31px;
box-shadow: inset 0 0 0 2px #7A0B21;
background: #FFFFFF;
padding: 0;
padding-right: 41px;
padding-left: 51px;
width: 100%;
height: 100%;
vertical-align: middle;
white-space: normal;
font-size: inherit;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
display: none;
}
.sbx-custom__input:hover {
box-shadow: inset 0 0 0 2px #4b0714;
}
.sbx-custom__input:focus, .sbx-custom__input:active {
outline: 0;
box-shadow: inset 0 0 0 2px #BB4960;
background: #FFFFFF;
}
.sbx-custom__input::-webkit-input-placeholder {
color: #BBBBBB;
}
.sbx-custom__input::-moz-placeholder {
color: #BBBBBB;
}
.sbx-custom__input:-ms-input-placeholder {
color: #BBBBBB;
}
.sbx-custom__input::placeholder {
color: #BBBBBB;
}
.sbx-custom__submit {
position: absolute;
top: 0;
right: inherit;
left: 0;
margin: 0;
border: 0;
border-radius: 30px 0 0 30px;
background-color: rgba(255, 255, 255, 0);
padding: 0;
width: 51px;
height: 100%;
vertical-align: middle;
text-align: center;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sbx-custom__submit::before {
display: inline-block;
margin-right: -4px;
height: 100%;
vertical-align: middle;
content: '';
}
.sbx-custom__submit:hover, .sbx-custom__submit:active {
cursor: pointer;
}
.sbx-custom__submit:focus {
outline: 0;
}
.sbx-custom__submit svg {
width: 31px;
height: 31px;
vertical-align: middle;
fill: #10AD8E;
}
.sbx-custom__reset {
display: none;
position: absolute;
top: 12px;
right: 12px;
margin: 0;
border: 0;
background: none;
cursor: pointer;
padding: 0;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
fill: rgba(0, 0, 0, 0.5);
}
.sbx-custom__reset:focus {
outline: 0;
}
.sbx-custom__reset svg {
display: block;
margin: 4px;
width: 19px;
height: 19px;
}
.sbx-custom__input:valid ~ .sbx-custom__reset {
display: block;
-webkit-animation-name: sbx-reset-in;
animation-name: sbx-reset-in;
-webkit-animation-duration: .15s;
animation-duration: .15s;
}
@-webkit-keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
} */
|
styles.css
|
.header {
padding: 15px;
text-align: center;
background: #AD102F;
color: white;
font-size: 26px;
font-family: 'Poppins', sans-serif;
}
body {
background: white;
padding-left: 200px;
}
.sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: auto;
top: 0;
left: 0;
background-color: #AD102F;
overflow-x: hidden;
padding: 80px 40px 60px 40px;
text-align: center;
float: left;
}
.sidenav a {
padding: 6px 8px 6px 8px;
text-decoration: none;
font-size: 25px;
color: #ffffff;
display: block;
}
a {
color:#ffffff;
}
/* .sidenav a:hover {
color: #f1f1f1;
} */
.main {
margin-left: 160px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/* create a recipe */
.createRecipe {
text-align: left;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
padding-bottom: 40px
}
.createRecipe h2 {
text-align: center;
}
#add {
position: relative;
}
#add button {
position: absolute;
bottom: 0;
}
/* search bar */
/* .sbx-custom {
display: inline-block;
position: relative;
width: 500px;
height: 51px;
white-space: nowrap;
box-sizing: border-box;
font-size: 14px;
}
.sbx-custom__wrapper {
width: 100%;
height: 100%;
}
.sbx-custom__input {
display: inline-block;
-webkit-transition: box-shadow .4s ease, background .4s ease;
transition: box-shadow .4s ease, background .4s ease;
border: 0;
border-radius: 31px;
box-shadow: inset 0 0 0 2px #7A0B21;
background: #FFFFFF;
padding: 0;
padding-right: 41px;
padding-left: 51px;
width: 100%;
height: 100%;
vertical-align: middle;
white-space: normal;
font-size: inherit;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
display: none;
}
.sbx-custom__input:hover {
box-shadow: inset 0 0 0 2px #4b0714;
}
.sbx-custom__input:focus, .sbx-custom__input:active {
outline: 0;
box-shadow: inset 0 0 0 2px #BB4960;
background: #FFFFFF;
}
.sbx-custom__input::-webkit-input-placeholder {
color: #BBBBBB;
}
.sbx-custom__input::-moz-placeholder {
color: #BBBBBB;
}
.sbx-custom__input:-ms-input-placeholder {
color: #BBBBBB;
}
.sbx-custom__input::placeholder {
color: #BBBBBB;
}
.sbx-custom__submit {
position: absolute;
top: 0;
right: inherit;
left: 0;
margin: 0;
border: 0;
border-radius: 30px 0 0 30px;
background-color: rgba(255, 255, 255, 0);
padding: 0;
width: 51px;
height: 100%;
vertical-align: middle;
text-align: center;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sbx-custom__submit::before {
display: inline-block;
margin-right: -4px;
height: 100%;
vertical-align: middle;
content: '';
}
.sbx-custom__submit:hover, .sbx-custom__submit:active {
cursor: pointer;
}
.sbx-custom__submit:focus {
outline: 0;
}
.sbx-custom__submit svg {
width: 31px;
height: 31px;
vertical-align: middle;
fill: #10AD8E;
}
.sbx-custom__reset {
display: none;
position: absolute;
top: 12px;
right: 12px;
margin: 0;
border: 0;
background: none;
cursor: pointer;
padding: 0;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
fill: rgba(0, 0, 0, 0.5);
}
.sbx-custom__reset:focus {
outline: 0;
}
.sbx-custom__reset svg {
display: block;
margin: 4px;
width: 19px;
height: 19px;
}
.sbx-custom__input:valid ~ .sbx-custom__reset {
display: block;
-webkit-animation-name: sbx-reset-in;
animation-name: sbx-reset-in;
-webkit-animation-duration: .15s;
animation-duration: .15s;
}
@-webkit-keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
} */
| 0.421314 | 0.069321 |
@font-face {
font-family: 'Komikax';
src: url('../fonts/KOMIKAX.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
html, body {
font-family: 'Komikax', sans-serif;
font-size: 0.8rem;
height: 100%;
margin: 0;
}
*, *:before, *:after {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
background: linear-gradient(to right, #3479a9, #4845a9);
color: #eeeeee;
width: 100%;
}
.date {
font-size: 1em;
left: 0;
margin: 0.1em 0 0 0.5em;
position: fixed;
top: 0;
}
.task {
align-items: center;
background-color: white;
border-bottom-width: 0;
border-bottom-style: solid;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: #000;
display: flex;
height: 3em;
margin: 0.2em 0;
width: 15em;
}
.task-details {
align-items: center;
color: #373737;
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 0.3em;
position: relative;
text-align: center;
width: 100%;
}
.task-icon {
height: auto;
margin: 0.4em;
max-height: 75%;
max-width: 80%;
}
.tasks-period {
background-color: yellow;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: black;
font-size: 1.2em;
letter-spacing: 0.04em;
min-width: 6em;
padding: 0.3em 0.8em 0.5em 1em;
text-align: center;
}
.planning {
display: grid;
font-size: 1rem;
grid-template-columns: 1fr 2fr 2fr 2fr;
grid-template-rows: [row1-start] 9vh [row1-end] auto [last-line];
height: 100vh;
}
.planning > * {
align-items: center;
display: flex;
justify-content: center;
text-align: center;
}
.planning-period-morning {
grid-column: 2 / 3;
}
.planning-period-noon {
grid-column: 3 / 4;
}
.planning-period-evening {
grid-column: 4 / 5;
}
.planning-member:nth-child(7n+1), .planning-tasks:nth-child(7n+2), .planning-tasks:nth-child(7n+3), .planning-tasks:nth-child(7n+4) {
background-color: #3479a9;
}
.planning-member .task-member {
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
margin: 1em 0;
max-height: 10em;
}
.planning-tasks {
display: flex;
flex-direction: column;
}
.planning-task {
background-color: white;
border: 0;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: black;
cursor: pointer;
font-family: inherit;
font-size: 0.8em;
letter-spacing: 0.04em;
margin: 0 0 1em 0;
min-width: 15em;
padding: 0.3em 0.8em 0.5em 1em;
text-align: center;
}
.planning-task-active {
background-color: #adff64;
}
|
public/css/main.css
|
@font-face {
font-family: 'Komikax';
src: url('../fonts/KOMIKAX.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
html, body {
font-family: 'Komikax', sans-serif;
font-size: 0.8rem;
height: 100%;
margin: 0;
}
*, *:before, *:after {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
background: linear-gradient(to right, #3479a9, #4845a9);
color: #eeeeee;
width: 100%;
}
.date {
font-size: 1em;
left: 0;
margin: 0.1em 0 0 0.5em;
position: fixed;
top: 0;
}
.task {
align-items: center;
background-color: white;
border-bottom-width: 0;
border-bottom-style: solid;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: #000;
display: flex;
height: 3em;
margin: 0.2em 0;
width: 15em;
}
.task-details {
align-items: center;
color: #373737;
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 0.3em;
position: relative;
text-align: center;
width: 100%;
}
.task-icon {
height: auto;
margin: 0.4em;
max-height: 75%;
max-width: 80%;
}
.tasks-period {
background-color: yellow;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: black;
font-size: 1.2em;
letter-spacing: 0.04em;
min-width: 6em;
padding: 0.3em 0.8em 0.5em 1em;
text-align: center;
}
.planning {
display: grid;
font-size: 1rem;
grid-template-columns: 1fr 2fr 2fr 2fr;
grid-template-rows: [row1-start] 9vh [row1-end] auto [last-line];
height: 100vh;
}
.planning > * {
align-items: center;
display: flex;
justify-content: center;
text-align: center;
}
.planning-period-morning {
grid-column: 2 / 3;
}
.planning-period-noon {
grid-column: 3 / 4;
}
.planning-period-evening {
grid-column: 4 / 5;
}
.planning-member:nth-child(7n+1), .planning-tasks:nth-child(7n+2), .planning-tasks:nth-child(7n+3), .planning-tasks:nth-child(7n+4) {
background-color: #3479a9;
}
.planning-member .task-member {
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
margin: 1em 0;
max-height: 10em;
}
.planning-tasks {
display: flex;
flex-direction: column;
}
.planning-task {
background-color: white;
border: 0;
box-shadow: 0.1em 0.2em 0.2em rgba(0, 0, 0, 0.6);
color: black;
cursor: pointer;
font-family: inherit;
font-size: 0.8em;
letter-spacing: 0.04em;
margin: 0 0 1em 0;
min-width: 15em;
padding: 0.3em 0.8em 0.5em 1em;
text-align: center;
}
.planning-task-active {
background-color: #adff64;
}
| 0.506836 | 0.175326 |
body {
background: #FFF;
font-family: Arial, Helvetica, sans-serif;
}
body, page {
margin: 0;
box-shadow: 0;
}
page {
background: white;
display: block;
margin: 0 auto;
margin-bottom: 0.5cm;
}
h1 {
font-size: 14px !important;
text-align: center;
margin-top: 0;
font-weight: bold;
text-transform: uppercase;
}
h4.box-title {
color: #000;
text-decoration: none;
border-bottom: solid thin #666;
font-size: 14px;
width: 100%;
}
a {
color: #000;
text-decoration: none;
}
/* page */
page[size="A4"] {
width: 21cm;
min-height: 29.7cm;
}
page[size="A4"][layout="portrait"] {
width: 21cm;
min-height: 29.7cm;
height: auto;
}
page[size="A4"][layout="landscape"] {
width: 29.7cm;
min-height: 21cm;
height: auto;
}
page[size="A3"] {
width: 29.7cm;
height: 42cm;
}
page[size="A3"][layout="portrait"] {
width: 42cm;
min-height: 29.7cm;
height: auto;
}
page[size="A3"][layout="landscape"] {
width: 42cm;
min-height: 29.7cm;
height: auto;
}
/* Kertas A2 */
page[size="A2"] {
width: 42cm;
height: 59.8cm;
}
page[size="A2"][layout="portrait"] {
width: 59.8cm;
min-height: 42cm;
height: auto;
}
page[size="A5"] {
width: 14.8cm;
height: 21cm;
}
page[size="A5"][layout="portrait"] {
height: 21cm;
width: 14.8cm;
}
/* Table */
table {
width: 100%;
}
/* tabel header */
table.header {
text-align: left !important;
font-size: 12px;
margin-bottom: 5mm;
padding: 5px;
}
.header img {
max-width: 100px;
}
.header h2 {
margin-bottom:0;
}
table.header, .header td, .header th, .header th h1 {
text-align: left !important;
border: solid 1px #eee;
border-collapse: collapse;
padding: 5px;
vertical-align: top !important;
}
.header td .tengah {
text-align: center;
vertical-align: central;
font-size: 24px !important;
font-weight: bold;
}
/* cetak */
.cetak {
padding: 0.5cm;
}
.cetak .bawah {
margin-top: 30px;
border-bottom: 10px;
text-align: left;
position: absolute;
font-size: 10px;
}
.setengah {
width: 12.6cm;
}
/* printer */
table.printer {
border: solid 2px #000;
border-collapse:collapse;
font-size: 11px;
margin-bottom: 2mm;
}
.abu, .bg-gray {
background-color: #eee;
}
.printer th {
background-color: #EEE;
text-align: left !important;
text-transform: capitalize;
}
.printer th, .printer td {
border: solid 1px #000;
padding: 1mm 2mm;
}
.printer td {
vertical-align: top;
}
tr.text-center {
text-align: center;
vertical-align: top;
}
.bg-dark {
background-color: #999;
}
hr {
margin: 1mm 0;
}
h3 {
font-weight: bold;
margin: 0;
font-size: 12px;
}
tr.tengah {
font-weight: bold;
text-align: center;
vertical-align: middle;
}
.text-center, td.text-center, th.text-center {
text-align: center !important;
}
.text-strong, td.text-strong {
font-weight: bold !important;
}
tr.kiri {
text-align: left;
vertical-align: top;
}
td.center {
text-align: center !important;
max-width: 2cm;
}
tr.kiri td {
padding: 2mm;
}`
/* Tabel atas */
table.atas {
margin-top: 0mm;
text-transform: uppercase;
}
.atas tr, .atas td {
border-bottom: dotted thin #f5f5f5;
text-align: right;
vertical-align: bottom;
padding: 2mm 3mm;
height: 4mm;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}
/* tabel bawah */
table.bawah {
margin-left: 4cm;
margin-top: 1mm;
width: 8.5cm;
text-transform: uppercase;
}
.bawah tr, .bawah td {
border-bottom: dotted thin #f5f5f5;
text-align: left;
vertical-align: bottom;
padding: 2mm 3mm;
height: 4mm;
font-size: 12px;
font-weight: bold;
}
td.perihal {
height: 1.3cm;
vertical-align: top !important;
}
td.index {
width: 3cm;
}
td.bg-primary, td.bg-danger {
background-color: #EEE !important;
color: #000;
font-weight: bold;
}
td.bg-info, tr.bginfo {
background-color: #80ccff;
}
td.bg-primary, tr.bginfo, td.bg-danger {
background-color: #EEE !important;
color: #000;
font-weight: bold;
}
td.bg-info, tr.bginfo {
background-color: #80ccff;
}
td, th {
-webkit-print-color-adjust: exact;
}
/* Rahasia */
.rahasia {
padding: 5px;
border: 2px solid black;
width: 4cm;
float: right;
display: block;
margin-bottom: 5px;
font-size: 11px;
}
|
public/public/css/css-print.css
|
body {
background: #FFF;
font-family: Arial, Helvetica, sans-serif;
}
body, page {
margin: 0;
box-shadow: 0;
}
page {
background: white;
display: block;
margin: 0 auto;
margin-bottom: 0.5cm;
}
h1 {
font-size: 14px !important;
text-align: center;
margin-top: 0;
font-weight: bold;
text-transform: uppercase;
}
h4.box-title {
color: #000;
text-decoration: none;
border-bottom: solid thin #666;
font-size: 14px;
width: 100%;
}
a {
color: #000;
text-decoration: none;
}
/* page */
page[size="A4"] {
width: 21cm;
min-height: 29.7cm;
}
page[size="A4"][layout="portrait"] {
width: 21cm;
min-height: 29.7cm;
height: auto;
}
page[size="A4"][layout="landscape"] {
width: 29.7cm;
min-height: 21cm;
height: auto;
}
page[size="A3"] {
width: 29.7cm;
height: 42cm;
}
page[size="A3"][layout="portrait"] {
width: 42cm;
min-height: 29.7cm;
height: auto;
}
page[size="A3"][layout="landscape"] {
width: 42cm;
min-height: 29.7cm;
height: auto;
}
/* Kertas A2 */
page[size="A2"] {
width: 42cm;
height: 59.8cm;
}
page[size="A2"][layout="portrait"] {
width: 59.8cm;
min-height: 42cm;
height: auto;
}
page[size="A5"] {
width: 14.8cm;
height: 21cm;
}
page[size="A5"][layout="portrait"] {
height: 21cm;
width: 14.8cm;
}
/* Table */
table {
width: 100%;
}
/* tabel header */
table.header {
text-align: left !important;
font-size: 12px;
margin-bottom: 5mm;
padding: 5px;
}
.header img {
max-width: 100px;
}
.header h2 {
margin-bottom:0;
}
table.header, .header td, .header th, .header th h1 {
text-align: left !important;
border: solid 1px #eee;
border-collapse: collapse;
padding: 5px;
vertical-align: top !important;
}
.header td .tengah {
text-align: center;
vertical-align: central;
font-size: 24px !important;
font-weight: bold;
}
/* cetak */
.cetak {
padding: 0.5cm;
}
.cetak .bawah {
margin-top: 30px;
border-bottom: 10px;
text-align: left;
position: absolute;
font-size: 10px;
}
.setengah {
width: 12.6cm;
}
/* printer */
table.printer {
border: solid 2px #000;
border-collapse:collapse;
font-size: 11px;
margin-bottom: 2mm;
}
.abu, .bg-gray {
background-color: #eee;
}
.printer th {
background-color: #EEE;
text-align: left !important;
text-transform: capitalize;
}
.printer th, .printer td {
border: solid 1px #000;
padding: 1mm 2mm;
}
.printer td {
vertical-align: top;
}
tr.text-center {
text-align: center;
vertical-align: top;
}
.bg-dark {
background-color: #999;
}
hr {
margin: 1mm 0;
}
h3 {
font-weight: bold;
margin: 0;
font-size: 12px;
}
tr.tengah {
font-weight: bold;
text-align: center;
vertical-align: middle;
}
.text-center, td.text-center, th.text-center {
text-align: center !important;
}
.text-strong, td.text-strong {
font-weight: bold !important;
}
tr.kiri {
text-align: left;
vertical-align: top;
}
td.center {
text-align: center !important;
max-width: 2cm;
}
tr.kiri td {
padding: 2mm;
}`
/* Tabel atas */
table.atas {
margin-top: 0mm;
text-transform: uppercase;
}
.atas tr, .atas td {
border-bottom: dotted thin #f5f5f5;
text-align: right;
vertical-align: bottom;
padding: 2mm 3mm;
height: 4mm;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}
/* tabel bawah */
table.bawah {
margin-left: 4cm;
margin-top: 1mm;
width: 8.5cm;
text-transform: uppercase;
}
.bawah tr, .bawah td {
border-bottom: dotted thin #f5f5f5;
text-align: left;
vertical-align: bottom;
padding: 2mm 3mm;
height: 4mm;
font-size: 12px;
font-weight: bold;
}
td.perihal {
height: 1.3cm;
vertical-align: top !important;
}
td.index {
width: 3cm;
}
td.bg-primary, td.bg-danger {
background-color: #EEE !important;
color: #000;
font-weight: bold;
}
td.bg-info, tr.bginfo {
background-color: #80ccff;
}
td.bg-primary, tr.bginfo, td.bg-danger {
background-color: #EEE !important;
color: #000;
font-weight: bold;
}
td.bg-info, tr.bginfo {
background-color: #80ccff;
}
td, th {
-webkit-print-color-adjust: exact;
}
/* Rahasia */
.rahasia {
padding: 5px;
border: 2px solid black;
width: 4cm;
float: right;
display: block;
margin-bottom: 5px;
font-size: 11px;
}
| 0.36376 | 0.069542 |
/* Font size of 2.0 is too big, I'll reduce it */
body {font-size: 1.9rem;}
/* Adding some text shadow*/
.site-head {text-shadow: 2px 2px #234;}
.site-head a {color:#eee;}
/* The font is too large in the post view. Revert to small size*/
.post-header .blog-title {font-size:inherit;}
/* Reduce font size and add line-height*/
pre{
font-size: 0.75em;
line-height: 1.4em;
}
/* Author styling */
.author {margin-bottom:1em;}
.author header{
float:left;
width: 80px;
}
.author article{
margin-left:80px;
min-height: 80px;
padding-left:20px;
}
img.profile {
width:80px;
height:auto;
border-radius: 50px;
}
.page-title {
color: #0072C1;
margin-bottom: 25px;
}
.project-list {
list-style-type: none;
list-style-position: inside;
margin: 0;
padding: 0;
}
.project-item {
margin: 10px auto;
width: 80%;
max-width: 900px;
background-color: white;
overflow: hidden;
padding: 10px 50px;
}
.project-link {
color: black;
text-decoration: none;
}
.top-bar {
background-color: white;
}
.top-bar:after {
clear: both;
}
.top-bar:before,
.top-bar:after {
display: table;
line-height: 0;
content: "";
}
.top-bar-item {
padding-top: 16px ;
padding-bottom: 10px ;
padding-left: 30px ;
padding-right: 30px ;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
color: #0072C1;
float: left;
font-size: 18px;
text-decoration: none;
}
.top-bar-item:hover {
background-color: #eee;
}
.top-bar-title {
font-size: 24px;
font-weight: 800;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
color: #0072C1;
float: left;
text-decoration: none;
}
.image-left {
float:left;
margin: 0.5em 1em;
margin-top: 30px;
}
.image-right {
float:right;
margin: 0.5em 1em;
margin-top: 30px;
}
.image-right-p {
float:right;
margin: 0.5em 1em;
margin-top: 0px;
}
columns {
display: inline-block;
width: 100%;
clear: both;
margin-top: -20px;
margin-bottom: -20px;
}
columns .highlight {
display: table-cell;
width: 47.5%;
height: 100%
padding-left: 2.5%;
padding-right: 2.5%;
float: left;
}
.text {
width: auto;
margin: 1em;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.graph-container {
max-width: 600px;
height: 600px;
margin: auto;
}
.graph-container-box {
max-width: 600px;
margin: auto;
}
.color-red {
color: #f00;
}
.color-blue {
color: #00f;
}
.graph-image > img {
width: 200px;
}
h5 {
color: #555;
margin-bottom: auto;
}
|
assets/css/main.css
|
/* Font size of 2.0 is too big, I'll reduce it */
body {font-size: 1.9rem;}
/* Adding some text shadow*/
.site-head {text-shadow: 2px 2px #234;}
.site-head a {color:#eee;}
/* The font is too large in the post view. Revert to small size*/
.post-header .blog-title {font-size:inherit;}
/* Reduce font size and add line-height*/
pre{
font-size: 0.75em;
line-height: 1.4em;
}
/* Author styling */
.author {margin-bottom:1em;}
.author header{
float:left;
width: 80px;
}
.author article{
margin-left:80px;
min-height: 80px;
padding-left:20px;
}
img.profile {
width:80px;
height:auto;
border-radius: 50px;
}
.page-title {
color: #0072C1;
margin-bottom: 25px;
}
.project-list {
list-style-type: none;
list-style-position: inside;
margin: 0;
padding: 0;
}
.project-item {
margin: 10px auto;
width: 80%;
max-width: 900px;
background-color: white;
overflow: hidden;
padding: 10px 50px;
}
.project-link {
color: black;
text-decoration: none;
}
.top-bar {
background-color: white;
}
.top-bar:after {
clear: both;
}
.top-bar:before,
.top-bar:after {
display: table;
line-height: 0;
content: "";
}
.top-bar-item {
padding-top: 16px ;
padding-bottom: 10px ;
padding-left: 30px ;
padding-right: 30px ;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
color: #0072C1;
float: left;
font-size: 18px;
text-decoration: none;
}
.top-bar-item:hover {
background-color: #eee;
}
.top-bar-title {
font-size: 24px;
font-weight: 800;
padding-top: 15px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
color: #0072C1;
float: left;
text-decoration: none;
}
.image-left {
float:left;
margin: 0.5em 1em;
margin-top: 30px;
}
.image-right {
float:right;
margin: 0.5em 1em;
margin-top: 30px;
}
.image-right-p {
float:right;
margin: 0.5em 1em;
margin-top: 0px;
}
columns {
display: inline-block;
width: 100%;
clear: both;
margin-top: -20px;
margin-bottom: -20px;
}
columns .highlight {
display: table-cell;
width: 47.5%;
height: 100%
padding-left: 2.5%;
padding-right: 2.5%;
float: left;
}
.text {
width: auto;
margin: 1em;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.graph-container {
max-width: 600px;
height: 600px;
margin: auto;
}
.graph-container-box {
max-width: 600px;
margin: auto;
}
.color-red {
color: #f00;
}
.color-blue {
color: #00f;
}
.graph-image > img {
width: 200px;
}
h5 {
color: #555;
margin-bottom: auto;
}
| 0.616705 | 0.106226 |
#search-result {
-moz-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -moz-filter 0.5s ease;
-webkit-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -webkit-filter 0.5s ease;
-ms-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -ms-filter 0.5s ease;
transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
position: relative;
}
#search-result:after {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: opacity 0.5s ease, visibility 0.5s;
-webkit-transition: opacity 0.5s ease, visibility 0.5s;
-ms-transition: opacity 0.5s ease, visibility 0.5s;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.5);
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #search-result:after {
background: rgba(36, 38, 41, 0.8);
}
body.modal-active #search-result {
-moz-filter: blur(8px);
-webkit-filter: blur(8px);
-ms-filter: blur(8px);
filter: blur(8px);
}
body.modal-active #search-result:after {
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
opacity: 1;
visibility: visible;
z-index: 10003;
}
#search-result:before {
-moz-animation: spinner 1s infinite linear !important;
-webkit-animation: spinner 1s infinite linear !important;
-ms-animation: spinner 1s infinite linear !important;
animation: spinner 1s infinite linear !important;
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
-webkit-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
-ms-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
background: no-repeat center;
background-size: contain;
content: '';
display: block;
font-size: 2em;
height: 2em;
left: 50%;
line-height: 2em;
margin: -1em 0 0 -1em;
opacity: 0;
position: fixed;
text-align: center;
top: 75%;
visibility: hidden;
width: 2em;
}
body.loading #search-result:before {
-moz-transition: opacity 1s ease-out !important;
-webkit-transition: opacity 1s ease-out !important;
-ms-transition: opacity 1s ease-out !important;
transition: opacity 1s ease-out !important;
-moz-transition-delay: 0.5s !important;
-webkit-transition-delay: 0.5s !important;
-ms-transition-delay: 0.5s !important;
transition-delay: 0.5s !important;
opacity: 0.25;
top: 50%;
visibility: visible;
}
/* Search Result */
#search_results {
-moz-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -moz-filter 0.5s ease;
-webkit-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -webkit-filter 0.5s ease;
-ms-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -ms-filter 0.5s ease;
transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
#search_results .thumb {
-moz-transition: opacity 1.25s ease-in-out;
-webkit-transition: opacity 1.25s ease-in-out;
-ms-transition: opacity 1.25s ease-in-out;
transition: opacity 1.25s ease-in-out;
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
opacity: 1;
overflow: hidden;
position: relative;
}
#search_results .thumb:after {
background-image: -moz-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: -webkit-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: -ms-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
background-size: cover;
content: '';
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#search_results .thumb > .image {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
background: no-repeat center;
background-size: cover;
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#search_results .thumb > h2 {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
bottom: 1.875em;
font-size: 0.8em;
left: 2.1875em;
margin: 0;
position: absolute;
z-index: 1;
}
#search_results .thumb > p {
display: none;
}
#search_results:after {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: opacity 0.5s ease, visibility 0.5s;
-webkit-transition: opacity 0.5s ease, visibility 0.5s;
-ms-transition: opacity 0.5s ease, visibility 0.5s;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.25);
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #search_results:after {
background: rgba(36, 38, 41, 0.55);
}
body.content-active #search_results {
-moz-filter: blur(6px);
-webkit-filter: blur(6px);
-ms-filter: blur(6px);
filter: blur(6px);
}
body.content-active #search_results:after {
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
opacity: 1;
visibility: visible;
}
body.loading #search_results .thumb {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
opacity: 0;
}
#search_results .thumb {
-moz-transition-delay: 2.525s;
-webkit-transition-delay: 2.525s;
-ms-transition-delay: 2.525s;
transition-delay: 2.525s;
height: calc(40vh - 2em);
min-height: 20em;
width: 25%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
#search_results .thumb:nth-child(10) {
-moz-transition-delay: 2s;
-webkit-transition-delay: 2s;
-ms-transition-delay: 2s;
transition-delay: 2s;
}
#search_results .thumb:nth-child(11) {
-moz-transition-delay: 2.15s;
-webkit-transition-delay: 2.15s;
-ms-transition-delay: 2.15s;
transition-delay: 2.15s;
}
#search_results .thumb:nth-child(12) {
-moz-transition-delay: 2.3s;
-webkit-transition-delay: 2.3s;
-ms-transition-delay: 2.3s;
transition-delay: 2.3s;
}
@media screen and (max-width: 1680px) {
#search_results .thumb {
-moz-transition-delay: 2.075s;
-webkit-transition-delay: 2.075s;
-ms-transition-delay: 2.075s;
transition-delay: 2.075s;
height: calc(40vh - 2em);
min-height: 20em;
width: 33.33333%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
}
@media screen and (max-width: 1280px) {
#search_results .thumb {
-moz-transition-delay: 1.625s;
-webkit-transition-delay: 1.625s;
-ms-transition-delay: 1.625s;
transition-delay: 1.625s;
height: calc(40vh - 2em);
min-height: 20em;
width: 50%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
}
@media screen and (max-width: 980px) {
#search_results .thumb {
-moz-transition-delay: 2.075s;
-webkit-transition-delay: 2.075s;
-ms-transition-delay: 2.075s;
transition-delay: 2.075s;
height: calc(28.57143vh - 1.33333em);
min-height: 18em;
width: 50%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
}
@media screen and (max-width: 480px) {
#search_results .thumb {
-moz-transition-delay: 1.175s;
-webkit-transition-delay: 1.175s;
-ms-transition-delay: 1.175s;
transition-delay: 1.175s;
height: calc(40vh - 2em);
min-height: 18em;
width: 100%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
}
|
nectr/static/css/search_results.css
|
#search-result {
-moz-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -moz-filter 0.5s ease;
-webkit-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -webkit-filter 0.5s ease;
-ms-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -ms-filter 0.5s ease;
transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
position: relative;
}
#search-result:after {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: opacity 0.5s ease, visibility 0.5s;
-webkit-transition: opacity 0.5s ease, visibility 0.5s;
-ms-transition: opacity 0.5s ease, visibility 0.5s;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.5);
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #search-result:after {
background: rgba(36, 38, 41, 0.8);
}
body.modal-active #search-result {
-moz-filter: blur(8px);
-webkit-filter: blur(8px);
-ms-filter: blur(8px);
filter: blur(8px);
}
body.modal-active #search-result:after {
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
opacity: 1;
visibility: visible;
z-index: 10003;
}
#search-result:before {
-moz-animation: spinner 1s infinite linear !important;
-webkit-animation: spinner 1s infinite linear !important;
-ms-animation: spinner 1s infinite linear !important;
animation: spinner 1s infinite linear !important;
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
-webkit-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
-ms-transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
background: no-repeat center;
background-size: contain;
content: '';
display: block;
font-size: 2em;
height: 2em;
left: 50%;
line-height: 2em;
margin: -1em 0 0 -1em;
opacity: 0;
position: fixed;
text-align: center;
top: 75%;
visibility: hidden;
width: 2em;
}
body.loading #search-result:before {
-moz-transition: opacity 1s ease-out !important;
-webkit-transition: opacity 1s ease-out !important;
-ms-transition: opacity 1s ease-out !important;
transition: opacity 1s ease-out !important;
-moz-transition-delay: 0.5s !important;
-webkit-transition-delay: 0.5s !important;
-ms-transition-delay: 0.5s !important;
transition-delay: 0.5s !important;
opacity: 0.25;
top: 50%;
visibility: visible;
}
/* Search Result */
#search_results {
-moz-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -moz-filter 0.5s ease;
-webkit-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -webkit-filter 0.5s ease;
-ms-transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, -ms-filter 0.5s ease;
transition: -moz-filter 0.5s ease, -webkit-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
#search_results .thumb {
-moz-transition: opacity 1.25s ease-in-out;
-webkit-transition: opacity 1.25s ease-in-out;
-ms-transition: opacity 1.25s ease-in-out;
transition: opacity 1.25s ease-in-out;
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
opacity: 1;
overflow: hidden;
position: relative;
}
#search_results .thumb:after {
background-image: -moz-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: -webkit-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: -ms-linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
background-image: linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
background-size: cover;
content: '';
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#search_results .thumb > .image {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
background: no-repeat center;
background-size: cover;
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#search_results .thumb > h2 {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
bottom: 1.875em;
font-size: 0.8em;
left: 2.1875em;
margin: 0;
position: absolute;
z-index: 1;
}
#search_results .thumb > p {
display: none;
}
#search_results:after {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
-moz-transition: opacity 0.5s ease, visibility 0.5s;
-webkit-transition: opacity 0.5s ease, visibility 0.5s;
-ms-transition: opacity 0.5s ease, visibility 0.5s;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.25);
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #search_results:after {
background: rgba(36, 38, 41, 0.55);
}
body.content-active #search_results {
-moz-filter: blur(6px);
-webkit-filter: blur(6px);
-ms-filter: blur(6px);
filter: blur(6px);
}
body.content-active #search_results:after {
-moz-pointer-events: auto;
-webkit-pointer-events: auto;
-ms-pointer-events: auto;
pointer-events: auto;
opacity: 1;
visibility: visible;
}
body.loading #search_results .thumb {
-moz-pointer-events: none;
-webkit-pointer-events: none;
-ms-pointer-events: none;
pointer-events: none;
opacity: 0;
}
#search_results .thumb {
-moz-transition-delay: 2.525s;
-webkit-transition-delay: 2.525s;
-ms-transition-delay: 2.525s;
transition-delay: 2.525s;
height: calc(40vh - 2em);
min-height: 20em;
width: 25%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
#search_results .thumb:nth-child(10) {
-moz-transition-delay: 2s;
-webkit-transition-delay: 2s;
-ms-transition-delay: 2s;
transition-delay: 2s;
}
#search_results .thumb:nth-child(11) {
-moz-transition-delay: 2.15s;
-webkit-transition-delay: 2.15s;
-ms-transition-delay: 2.15s;
transition-delay: 2.15s;
}
#search_results .thumb:nth-child(12) {
-moz-transition-delay: 2.3s;
-webkit-transition-delay: 2.3s;
-ms-transition-delay: 2.3s;
transition-delay: 2.3s;
}
@media screen and (max-width: 1680px) {
#search_results .thumb {
-moz-transition-delay: 2.075s;
-webkit-transition-delay: 2.075s;
-ms-transition-delay: 2.075s;
transition-delay: 2.075s;
height: calc(40vh - 2em);
min-height: 20em;
width: 33.33333%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
}
@media screen and (max-width: 1280px) {
#search_results .thumb {
-moz-transition-delay: 1.625s;
-webkit-transition-delay: 1.625s;
-ms-transition-delay: 1.625s;
transition-delay: 1.625s;
height: calc(40vh - 2em);
min-height: 20em;
width: 50%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
}
@media screen and (max-width: 980px) {
#search_results .thumb {
-moz-transition-delay: 2.075s;
-webkit-transition-delay: 2.075s;
-ms-transition-delay: 2.075s;
transition-delay: 2.075s;
height: calc(28.57143vh - 1.33333em);
min-height: 18em;
width: 50%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
#search_results .thumb:nth-child(4) {
-moz-transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-ms-transition-delay: 1.1s;
transition-delay: 1.1s;
}
#search_results .thumb:nth-child(5) {
-moz-transition-delay: 1.25s;
-webkit-transition-delay: 1.25s;
-ms-transition-delay: 1.25s;
transition-delay: 1.25s;
}
#search_results .thumb:nth-child(6) {
-moz-transition-delay: 1.4s;
-webkit-transition-delay: 1.4s;
-ms-transition-delay: 1.4s;
transition-delay: 1.4s;
}
#search_results .thumb:nth-child(7) {
-moz-transition-delay: 1.55s;
-webkit-transition-delay: 1.55s;
-ms-transition-delay: 1.55s;
transition-delay: 1.55s;
}
#search_results .thumb:nth-child(8) {
-moz-transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-ms-transition-delay: 1.7s;
transition-delay: 1.7s;
}
#search_results .thumb:nth-child(9) {
-moz-transition-delay: 1.85s;
-webkit-transition-delay: 1.85s;
-ms-transition-delay: 1.85s;
transition-delay: 1.85s;
}
}
@media screen and (max-width: 480px) {
#search_results .thumb {
-moz-transition-delay: 1.175s;
-webkit-transition-delay: 1.175s;
-ms-transition-delay: 1.175s;
transition-delay: 1.175s;
height: calc(40vh - 2em);
min-height: 18em;
width: 100%;
}
#search_results .thumb:nth-child(1) {
-moz-transition-delay: 0.65s;
-webkit-transition-delay: 0.65s;
-ms-transition-delay: 0.65s;
transition-delay: 0.65s;
}
#search_results .thumb:nth-child(2) {
-moz-transition-delay: 0.8s;
-webkit-transition-delay: 0.8s;
-ms-transition-delay: 0.8s;
transition-delay: 0.8s;
}
#search_results .thumb:nth-child(3) {
-moz-transition-delay: 0.95s;
-webkit-transition-delay: 0.95s;
-ms-transition-delay: 0.95s;
transition-delay: 0.95s;
}
}
| 0.422028 | 0.044452 |
blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset, img {
border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
font-style: normal;
font-weight: normal;
}
ol, ul {
list-style: none;
}
caption, th {
text-align: left;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal;
}
q::before,q::after {
content: '';
}
abbr, acronym {
border: 0;
}
body {
font: 12px/1.5 '微软雅黑', tahoma,arial,'Hiragino Sans GB',宋体,sans-serif;
}
.clearfix::after {
visibility: hidden;
display: block;
font-size: 0;
content: '';
clear: both;
height: 0;
}
.clearfix {
zoom: 1;
}
.text-ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#G-lightbox-mask {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000;
opacity: 0.5;
filter: alpha(opacity=50);
z-index: 10000;
}
#G-lightbox-popup {
display: none;
position: fixed;
width: 400px;
left: 50%;
top: 50px;
z-index:10001;
margin-left: -200px;
}
#G-lightbox-popup .lightbox-pic-view {
position: relative;
border: 5px solid #fff;
border-radius: 3px;
overflow: hidden;
background: #fff url(./icon/loading.gif) no-repeat center center;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-btn {
position: absolute;
top: 0;
width: 40%;
height: 100%;
z-index: 1;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-prev-btn {
left: 0;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-next-btn {
right: 0;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-prev-btn-show {
background: url('./icon/prev.png') no-repeat left center;
cursor: pointer;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-next-btn-show {
background: url('./icon/next.png') no-repeat right center;
cursor: pointer;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-image {
display: block;
}
#G-lightbox-popup .lightbox-pic-caption {
position: relative;
z-index: 2;
margin: 0 5px;
margin-top: -60px;
background-color: rgba(0, 0, 0, .5);
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-caption-area {
color: #fff;
padding: 10px 5px;
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-caption-area .lightbox-of-index {
color: #999;
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-close-btn {
position: absolute;
right: 10px;
top: 13px;
width: 27px;
height: 27px;
background: url(./icon/close.png) no-repeat center center;
}
|
前端案例收集/jquery/lightbox/lightbox.css
|
blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset, img {
border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
font-style: normal;
font-weight: normal;
}
ol, ul {
list-style: none;
}
caption, th {
text-align: left;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal;
}
q::before,q::after {
content: '';
}
abbr, acronym {
border: 0;
}
body {
font: 12px/1.5 '微软雅黑', tahoma,arial,'Hiragino Sans GB',宋体,sans-serif;
}
.clearfix::after {
visibility: hidden;
display: block;
font-size: 0;
content: '';
clear: both;
height: 0;
}
.clearfix {
zoom: 1;
}
.text-ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#G-lightbox-mask {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000;
opacity: 0.5;
filter: alpha(opacity=50);
z-index: 10000;
}
#G-lightbox-popup {
display: none;
position: fixed;
width: 400px;
left: 50%;
top: 50px;
z-index:10001;
margin-left: -200px;
}
#G-lightbox-popup .lightbox-pic-view {
position: relative;
border: 5px solid #fff;
border-radius: 3px;
overflow: hidden;
background: #fff url(./icon/loading.gif) no-repeat center center;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-btn {
position: absolute;
top: 0;
width: 40%;
height: 100%;
z-index: 1;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-prev-btn {
left: 0;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-next-btn {
right: 0;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-prev-btn-show {
background: url('./icon/prev.png') no-repeat left center;
cursor: pointer;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-next-btn-show {
background: url('./icon/next.png') no-repeat right center;
cursor: pointer;
}
#G-lightbox-popup .lightbox-pic-view .lightbox-image {
display: block;
}
#G-lightbox-popup .lightbox-pic-caption {
position: relative;
z-index: 2;
margin: 0 5px;
margin-top: -60px;
background-color: rgba(0, 0, 0, .5);
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-caption-area {
color: #fff;
padding: 10px 5px;
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-caption-area .lightbox-of-index {
color: #999;
}
#G-lightbox-popup .lightbox-pic-caption .lightbox-close-btn {
position: absolute;
right: 10px;
top: 13px;
width: 27px;
height: 27px;
background: url(./icon/close.png) no-repeat center center;
}
| 0.38943 | 0.105995 |
html,
body {
width: 100%;
height: 100%;
}
body {
font-family: 'Muli', 'Helvetica', 'Arial', 'sans-serif';
}
a {
color: #fdcc52;
-webkit-transition: all .35s;
transition: all .35s;
}
a:hover, a:focus {
color: #fcbd20;
}
hr {
max-width: 100px;
margin: 25px auto 0;
border-width: 1px;
border-color: rgba(34, 34, 34, 0.1);
}
hr.light {
border-color: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
section h2 {
font-size: 50px;
}
#mainNav {
border-color: rgba(34, 34, 34, 0.05);
background-color: white;
-webkit-transition: all .35s;
transition: all .35s;
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
#mainNav .navbar-brand {
color: #fdcc52;
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: #fcbd20;
}
#mainNav .navbar-toggler {
font-size: 12px;
padding: 8px 10px;
color: #222222;
}
#mainNav .navbar-nav > li > a {
font-size: 11px;
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
letter-spacing: 2px;
text-transform: uppercase;
}
#mainNav .navbar-nav > li > a.active {
color: #fdcc52 !important;
background-color: transparent;
}
#mainNav .navbar-nav > li > a.active:hover {
background-color: transparent;
}
#mainNav .navbar-nav > li > a,
#mainNav .navbar-nav > li > a:focus {
color: #222222;
}
#mainNav .navbar-nav > li > a:hover,
#mainNav .navbar-nav > li > a:focus:hover {
color: #fdcc52;
}
@media (min-width: 992px) {
#mainNav {
border-color: transparent;
background-color: transparent;
}
#mainNav .navbar-brand {
color: fade(white, 70%);
}
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: white;
}
#mainNav .navbar-nav > li > a,
#mainNav .navbar-nav > li > a:focus {
color: rgba(255, 255, 255, 0.7);
}
#mainNav .navbar-nav > li > a:hover,
#mainNav .navbar-nav > li > a:focus:hover {
color: white;
}
#mainNav.navbar-shrink {
border-color: rgba(34, 34, 34, 0.1);
background-color: white;
}
#mainNav.navbar-shrink .navbar-brand {
color: #222222;
}
#mainNav.navbar-shrink .navbar-brand:hover, #mainNav.navbar-shrink .navbar-brand:focus {
color: #fdcc52;
}
#mainNav.navbar-shrink .navbar-nav > li > a,
#mainNav.navbar-shrink .navbar-nav > li > a:focus {
color: #222222;
}
#mainNav.navbar-shrink .navbar-nav > li > a:hover,
#mainNav.navbar-shrink .navbar-nav > li > a:focus:hover {
color: #fdcc52;
}
}
header.masthead {
position: relative;
width: 100%;
padding-top: 150px;
padding-bottom: 100px;
color: white;
}
header.masthead .header-content {
max-width: 500px;
margin-bottom: 100px;
text-align: center;
}
header.masthead .header-content h1 {
font-size: 30px;
}
header.masthead .device-container {
max-width: 325px;
margin-right: auto;
margin-left: auto;
}
header.masthead .device-container .screen img {
border-radius: 3px;
}
@media (min-width: 992px) {
header.masthead {
height: 100vh;
min-height: 775px;
padding-top: 0;
padding-bottom: 0;
}
header.masthead .header-content {
margin-bottom: 0;
text-align: left;
}
header.masthead .header-content h1 {
font-size: 50px;
}
header.masthead .device-container {
max-width: 325px;
}
}
section.contact {
text-align: center;
}
section.contact h2 {
margin-top: 0;
margin-bottom: 25px;
}
section.contact h2 i {
color: #dd4b39;
}
section.contact ul.list-social {
margin-bottom: 0;
}
section.contact ul.list-social li a {
font-size: 40px;
line-height: 80px;
display: block;
width: 80px;
height: 80px;
color: white;
border-radius: 100%;
}
section.contact ul.list-social li.social-twitter a {
background-color: #1da1f2;
}
section.contact ul.list-social li.social-twitter a:hover {
background-color: #0d95e8;
}
section.contact ul.list-social li.social-facebook a {
background-color: #3b5998;
}
section.contact ul.list-social li.social-facebook a:hover {
background-color: #344e86;
}
section.contact ul.list-social li.social-google-plus a {
background-color: #dd4b39;
}
section.contact ul.list-social li.social-google-plus a:hover {
background-color: #d73925;
}
footer {
color: rgba(255, 255, 255, 0.9);
text-align: center;
}
footer p {
font-size: 18px;
margin: 0;
}
footer ul {
margin-bottom: 0;
}
footer a {
margin-right: 20px;
font-size: 30px;
color: rgba(255, 255, 255, 0.3);
}
footer a:hover, footer a:focus, footer a:active, footer a.active {
text-decoration: none;
}
@media (min-width: 992px) {
footer a {
font-size: 20px;
}
}
/* Project Orangutan Matter
* Author <NAME>
* Date March 2019
*/
/* Color */
* {
outline: none;
}
body {
font-family: "Josefin Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6, .baumans, .shaky-link {
font-family: "Baumans", sans-serif;
margin: 0;
}
h2 {
color: #000;
margin-bottom: 30px;
text-align: center;
z-index: 99999999;
}
@media (min-width: 768px) {
h2 {
display: block;
left: 2%;
height: 130px;
margin-bottom: 0;
position: absolute;
top: 30px;
width: 130px;
}
h2 .text {
display: block;
font-size: 25px;
line-height: 130px;
position: absolute;
text-align: center;
vertical-align: middle;
width: 100%;
z-index: 9999;
}
}
.circle {
border-radius: 50%;
display: block;
height: 100%;
position: absolute;
-webkit-transition: visibility .5s;
/* Safari */
transition: visibility .5s;
visibility: hidden;
width: 100%;
z-index: 9;
}
.rounded-thumbnail {
border-radius: 50%;
}
p {
font-size: 16px;
}
.fa {
font-size: 40px;
margin: 5px;
}
blockquote {
font-size: 23px;
border: none;
padding: 20px 70px;
position: relative;
text-align: left;
}
blockquote .small-text {
font-size: 17px;
}
blockquote .brush-stroke {
position: absolute;
left: -9px;
top: -22px;
}
@media (max-width: 767px) {
blockquote {
padding: 30px 0 0 30px;
}
blockquote .brush-stroke {
display: block;
width: 121px;
top: -7px;
}
}
.relative {
position: relative;
}
.justify, .justify p {
text-align: justify;
}
.white {
color: #fff;
}
.bg-white {
background-color: #fff;
}
.orange, a.orange {
color: #d6290f;
}
.bg-orange {
background-color: #d6290f;
color: #fff;
}
.bg-orange-light {
background-color: #E74C3C;
}
.dark {
color: #040000;
}
.bg-dark {
background-color: #040000;
color: #fff;
}
.bg-black {
background-color: #000;
color: #fff;
}
.spacing-m-t {
margin-top: 30px;
}
.spacing-m-b {
margin-bottom: 30px;
}
.spacing-p-t {
padding-top: 80px;
}
.spacing-p-t-double {
padding-top: 120px;
}
.spacing-p-b {
padding-bottom: 80px;
}
.spacing-p-b-double {
padding-bottom: 120px;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
section {
overflow: hidden;
position: relative;
}
@media (max-width: 767px) {
.mobile-white {
color: #fff;
}
.mobile-orange {
color: #d6290f;
}
.circle {
border-radius: 0;
height: 1px !important;
margin: 30px 0;
opacity: 0.9;
width: 100% !important;
}
}
header {
background-color: #ccc;
position: relative;
width: 100%;
}
header nav {
color: white;
font-size: 20px;
background-color: #d6290f;
bottom: 0;
height: 0;
opacity: 0;
overflow: hidden;
right: -100%;
top: 0;
position: fixed;
width: 30%;
z-index: 9999;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
header nav ul {
padding: 0;
margin: 0;
}
header nav ul li {
list-style: none;
text-decoration: none;
padding: 0;
text-align: center;
}
header nav ul li a {
color: #fff;
display: block;
padding: 10px 20px;
border-bottom: 1px solid #E74C3C;
}
header nav ul li a:hover {
background-color: #E74C3C;
color: #fff;
text-decoration: none;
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
#burger-link {
background-color: transparent;
border: none;
display: block;
height: 40px;
width: 40px;
position: fixed;
margin-top: 20px;
outline: none;
right: 20px;
z-index: 9999999999999;
}
#burger-link:hover {
background: transparent;
}
#burger-link .icon-bar {
background-color: #d6290f;
display: block;
-webkit-transition: all 0.5s east-in-out;
transition: all 0.5s east-in-out;
height: 3px;
width: 25px;
position: absolute;
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
#burger-link .icon-bar.first {
top: 9px;
}
#burger-link .icon-bar.middle {
top: 18px;
}
#burger-link .icon-bar.last {
bottom: 9px;
}
header:not(.toggled) #burger-link {
border-radius: 40px;
position: absolute;
}
header.toggled #burger-link {
position: fixed;
}
header.toggled #burger-link .icon-bar {
background-color: #fff;
}
header.toggled #burger-link .icon-bar.first {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
right: 6px;
top: 17px;
width: 30px;
}
header.toggled #burger-link .icon-bar.middle {
display: none;
}
header.toggled #burger-link .icon-bar.last {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 4px;
bottom: 20px;
width: 30px;
}
header.toggled nav {
border-left: 1px solid #E74C3C;
height: auto;
opacity: 1;
right: 0;
z-index: 999999999;
}
header.toggled nav ul {
padding-top: 100px;
}
.container__social-media {
display: block;
right: 25px;
top: 50px;
position: absolute;
z-index: 9999999;
}
.container__social-media .link__social-media {
display: block;
margin: 10px;
}
@media (min-width: 992px) {
.container__social-media {
right: 60px;
top: 25px;
}
.container__social-media .link__social-media {
display: inline-block;
}
}
/* BG */
.bg-canvas {
background: url(../img/binary.png) repeat center;
background-size: 5%;
min-height: 250px;
position: relative;
background-attachment: fixed;
background-position: center;
background-repeat: repeat;
}
.main-img {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
.btn-success {
background: #d6290f;
}
.btn-orange {
color: #fff;
background: #d6290f;
background: #E74C3C;
border-color: #d6290f;
width: 100%;
max-width: 400px;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:visited, .btn-orange:active {
background-color: #E74C3C;
border-color: #fff;
}
.sub-logo-text {
position: absolute;
left: 69px;
bottom: -2px;
padding: 0;
font-size: 10px;
border-bottom: 1px solid #d6290f;
}
/* Form - contact */
.help-block ul {
list-style: none;
padding: 0;
margin: 0;
}
.help-block ul li {
padding: 5px;
background-color: #E74C3C;
color: #fff;
}
canvas {
height: 500px;
width: 100%;
position: relative;
}
section {
overflow: hidden;
position: relative;
}
#circle1 {
display: block;
background-color: white;
}
h1 {
margin-top: 30px;
}
#brand {
background-color: transparent;
border: none;
border-radius: 50px;
display: block;
height: 60px;
position: absolute;
left: 20px;
top: 20px;
width: 80px;
z-index: 9999;
}
@media (min-width: 992px) {
#brand {
position: fixed;
width: 160px;
}
}
#brand img {
width: 100%;
}
.frills-paint {
background: transparent url(../img/black-ground-splash-paint.png) no-repeat;
background-size: 100%;
background-position: top center;
min-height: 100px;
}
@media (min-width: 992px) {
.frills-paint {
min-height: 220px;
}
}
.fixed-parallax .image {
position: relative;
height: auto;
min-height: 40vh;
background-position: center 20px;
background-repeat: no-repeat;
background-size: 50%;
}
@media (min-width: 768px) {
.fixed-parallax .image {
background-attachment: fixed;
height: 90vh;
background-size: inherit;
}
}
.fixed-parallax .image.one {
background-image: url("https://raw.githubusercontent.com/chrispxpx/codepen-poc-images/master/pxpx-rocket-black.png");
}
.fixed-parallax .image.two {
background-image: url("https://raw.githubusercontent.com/chrispxpx/codepen-poc-images/master/pxpx-rocket-black-invert.png");
}
.fixed-parallax .image.text-black {
background-image: url(../img/jack-text-black.png);
}
.fixed-parallax .image.text-white {
background-image: url(../img/jack-text-white.jpg);
}
.fixed-parallax .image.brand-orange-text {
background-image: url(../img/orangutan-logo-no-text.png);
}
.fixed-parallax .image.video-game-poster {
background-image: url(../img/jack-game-awake-1-scene-yellow-blue-background-jack-character.jpg);
background-image: url(../img/JACK-Game-Poster.jpg);
background-size: 100%;
}
.fixed-parallax .image.bg__character {
background-image: url(../img/orangutan-matter-jack-video-game-cicada-character.png);
background-image: url(../img/jack-game-poster.png);
background-size: 100%;
}
.fixed-parallax .fixed-parallax-image--inside {
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: block;
position: absolute;
width: 50%;
height: auto;
z-index: 999999;
}
@media (min-width: 992px) {
.fixed-parallax .fixed-parallax-image--inside {
width: 70%;
}
}
.acrylics-texture-background-tile {
background-image: url(../img/acrylics-texture-background-tile.jpg);
}
.bg-primary {
background: #fdcc52;
background: -webkit-gradient(linear, left top, left bottom, from(#fdcc52), to(#fdc539));
background: linear-gradient(#fdcc52, #fdc539);
}
.text-primary {
color: #fdcc52;
}
.no-gutter > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.btn-outline {
color: white;
border: 1px solid;
border-color: white;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
color: white;
border-color: #fdcc52;
background-color: #fdcc52;
}
.btn {
border-radius: 300px;
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
letter-spacing: 2px;
text-transform: uppercase;
}
.btn-xl {
font-size: 11px;
padding: 15px 45px;
}
|
css/main.css
|
html,
body {
width: 100%;
height: 100%;
}
body {
font-family: 'Muli', 'Helvetica', 'Arial', 'sans-serif';
}
a {
color: #fdcc52;
-webkit-transition: all .35s;
transition: all .35s;
}
a:hover, a:focus {
color: #fcbd20;
}
hr {
max-width: 100px;
margin: 25px auto 0;
border-width: 1px;
border-color: rgba(34, 34, 34, 0.1);
}
hr.light {
border-color: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
section h2 {
font-size: 50px;
}
#mainNav {
border-color: rgba(34, 34, 34, 0.05);
background-color: white;
-webkit-transition: all .35s;
transition: all .35s;
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
#mainNav .navbar-brand {
color: #fdcc52;
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 200;
letter-spacing: 1px;
}
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: #fcbd20;
}
#mainNav .navbar-toggler {
font-size: 12px;
padding: 8px 10px;
color: #222222;
}
#mainNav .navbar-nav > li > a {
font-size: 11px;
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
letter-spacing: 2px;
text-transform: uppercase;
}
#mainNav .navbar-nav > li > a.active {
color: #fdcc52 !important;
background-color: transparent;
}
#mainNav .navbar-nav > li > a.active:hover {
background-color: transparent;
}
#mainNav .navbar-nav > li > a,
#mainNav .navbar-nav > li > a:focus {
color: #222222;
}
#mainNav .navbar-nav > li > a:hover,
#mainNav .navbar-nav > li > a:focus:hover {
color: #fdcc52;
}
@media (min-width: 992px) {
#mainNav {
border-color: transparent;
background-color: transparent;
}
#mainNav .navbar-brand {
color: fade(white, 70%);
}
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: white;
}
#mainNav .navbar-nav > li > a,
#mainNav .navbar-nav > li > a:focus {
color: rgba(255, 255, 255, 0.7);
}
#mainNav .navbar-nav > li > a:hover,
#mainNav .navbar-nav > li > a:focus:hover {
color: white;
}
#mainNav.navbar-shrink {
border-color: rgba(34, 34, 34, 0.1);
background-color: white;
}
#mainNav.navbar-shrink .navbar-brand {
color: #222222;
}
#mainNav.navbar-shrink .navbar-brand:hover, #mainNav.navbar-shrink .navbar-brand:focus {
color: #fdcc52;
}
#mainNav.navbar-shrink .navbar-nav > li > a,
#mainNav.navbar-shrink .navbar-nav > li > a:focus {
color: #222222;
}
#mainNav.navbar-shrink .navbar-nav > li > a:hover,
#mainNav.navbar-shrink .navbar-nav > li > a:focus:hover {
color: #fdcc52;
}
}
header.masthead {
position: relative;
width: 100%;
padding-top: 150px;
padding-bottom: 100px;
color: white;
}
header.masthead .header-content {
max-width: 500px;
margin-bottom: 100px;
text-align: center;
}
header.masthead .header-content h1 {
font-size: 30px;
}
header.masthead .device-container {
max-width: 325px;
margin-right: auto;
margin-left: auto;
}
header.masthead .device-container .screen img {
border-radius: 3px;
}
@media (min-width: 992px) {
header.masthead {
height: 100vh;
min-height: 775px;
padding-top: 0;
padding-bottom: 0;
}
header.masthead .header-content {
margin-bottom: 0;
text-align: left;
}
header.masthead .header-content h1 {
font-size: 50px;
}
header.masthead .device-container {
max-width: 325px;
}
}
section.contact {
text-align: center;
}
section.contact h2 {
margin-top: 0;
margin-bottom: 25px;
}
section.contact h2 i {
color: #dd4b39;
}
section.contact ul.list-social {
margin-bottom: 0;
}
section.contact ul.list-social li a {
font-size: 40px;
line-height: 80px;
display: block;
width: 80px;
height: 80px;
color: white;
border-radius: 100%;
}
section.contact ul.list-social li.social-twitter a {
background-color: #1da1f2;
}
section.contact ul.list-social li.social-twitter a:hover {
background-color: #0d95e8;
}
section.contact ul.list-social li.social-facebook a {
background-color: #3b5998;
}
section.contact ul.list-social li.social-facebook a:hover {
background-color: #344e86;
}
section.contact ul.list-social li.social-google-plus a {
background-color: #dd4b39;
}
section.contact ul.list-social li.social-google-plus a:hover {
background-color: #d73925;
}
footer {
color: rgba(255, 255, 255, 0.9);
text-align: center;
}
footer p {
font-size: 18px;
margin: 0;
}
footer ul {
margin-bottom: 0;
}
footer a {
margin-right: 20px;
font-size: 30px;
color: rgba(255, 255, 255, 0.3);
}
footer a:hover, footer a:focus, footer a:active, footer a.active {
text-decoration: none;
}
@media (min-width: 992px) {
footer a {
font-size: 20px;
}
}
/* Project Orangutan Matter
* Author <NAME>
* Date March 2019
*/
/* Color */
* {
outline: none;
}
body {
font-family: "Josefin Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6, .baumans, .shaky-link {
font-family: "Baumans", sans-serif;
margin: 0;
}
h2 {
color: #000;
margin-bottom: 30px;
text-align: center;
z-index: 99999999;
}
@media (min-width: 768px) {
h2 {
display: block;
left: 2%;
height: 130px;
margin-bottom: 0;
position: absolute;
top: 30px;
width: 130px;
}
h2 .text {
display: block;
font-size: 25px;
line-height: 130px;
position: absolute;
text-align: center;
vertical-align: middle;
width: 100%;
z-index: 9999;
}
}
.circle {
border-radius: 50%;
display: block;
height: 100%;
position: absolute;
-webkit-transition: visibility .5s;
/* Safari */
transition: visibility .5s;
visibility: hidden;
width: 100%;
z-index: 9;
}
.rounded-thumbnail {
border-radius: 50%;
}
p {
font-size: 16px;
}
.fa {
font-size: 40px;
margin: 5px;
}
blockquote {
font-size: 23px;
border: none;
padding: 20px 70px;
position: relative;
text-align: left;
}
blockquote .small-text {
font-size: 17px;
}
blockquote .brush-stroke {
position: absolute;
left: -9px;
top: -22px;
}
@media (max-width: 767px) {
blockquote {
padding: 30px 0 0 30px;
}
blockquote .brush-stroke {
display: block;
width: 121px;
top: -7px;
}
}
.relative {
position: relative;
}
.justify, .justify p {
text-align: justify;
}
.white {
color: #fff;
}
.bg-white {
background-color: #fff;
}
.orange, a.orange {
color: #d6290f;
}
.bg-orange {
background-color: #d6290f;
color: #fff;
}
.bg-orange-light {
background-color: #E74C3C;
}
.dark {
color: #040000;
}
.bg-dark {
background-color: #040000;
color: #fff;
}
.bg-black {
background-color: #000;
color: #fff;
}
.spacing-m-t {
margin-top: 30px;
}
.spacing-m-b {
margin-bottom: 30px;
}
.spacing-p-t {
padding-top: 80px;
}
.spacing-p-t-double {
padding-top: 120px;
}
.spacing-p-b {
padding-bottom: 80px;
}
.spacing-p-b-double {
padding-bottom: 120px;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
section {
overflow: hidden;
position: relative;
}
@media (max-width: 767px) {
.mobile-white {
color: #fff;
}
.mobile-orange {
color: #d6290f;
}
.circle {
border-radius: 0;
height: 1px !important;
margin: 30px 0;
opacity: 0.9;
width: 100% !important;
}
}
header {
background-color: #ccc;
position: relative;
width: 100%;
}
header nav {
color: white;
font-size: 20px;
background-color: #d6290f;
bottom: 0;
height: 0;
opacity: 0;
overflow: hidden;
right: -100%;
top: 0;
position: fixed;
width: 30%;
z-index: 9999;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
header nav ul {
padding: 0;
margin: 0;
}
header nav ul li {
list-style: none;
text-decoration: none;
padding: 0;
text-align: center;
}
header nav ul li a {
color: #fff;
display: block;
padding: 10px 20px;
border-bottom: 1px solid #E74C3C;
}
header nav ul li a:hover {
background-color: #E74C3C;
color: #fff;
text-decoration: none;
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
#burger-link {
background-color: transparent;
border: none;
display: block;
height: 40px;
width: 40px;
position: fixed;
margin-top: 20px;
outline: none;
right: 20px;
z-index: 9999999999999;
}
#burger-link:hover {
background: transparent;
}
#burger-link .icon-bar {
background-color: #d6290f;
display: block;
-webkit-transition: all 0.5s east-in-out;
transition: all 0.5s east-in-out;
height: 3px;
width: 25px;
position: absolute;
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
#burger-link .icon-bar.first {
top: 9px;
}
#burger-link .icon-bar.middle {
top: 18px;
}
#burger-link .icon-bar.last {
bottom: 9px;
}
header:not(.toggled) #burger-link {
border-radius: 40px;
position: absolute;
}
header.toggled #burger-link {
position: fixed;
}
header.toggled #burger-link .icon-bar {
background-color: #fff;
}
header.toggled #burger-link .icon-bar.first {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
right: 6px;
top: 17px;
width: 30px;
}
header.toggled #burger-link .icon-bar.middle {
display: none;
}
header.toggled #burger-link .icon-bar.last {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 4px;
bottom: 20px;
width: 30px;
}
header.toggled nav {
border-left: 1px solid #E74C3C;
height: auto;
opacity: 1;
right: 0;
z-index: 999999999;
}
header.toggled nav ul {
padding-top: 100px;
}
.container__social-media {
display: block;
right: 25px;
top: 50px;
position: absolute;
z-index: 9999999;
}
.container__social-media .link__social-media {
display: block;
margin: 10px;
}
@media (min-width: 992px) {
.container__social-media {
right: 60px;
top: 25px;
}
.container__social-media .link__social-media {
display: inline-block;
}
}
/* BG */
.bg-canvas {
background: url(../img/binary.png) repeat center;
background-size: 5%;
min-height: 250px;
position: relative;
background-attachment: fixed;
background-position: center;
background-repeat: repeat;
}
.main-img {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
.btn-success {
background: #d6290f;
}
.btn-orange {
color: #fff;
background: #d6290f;
background: #E74C3C;
border-color: #d6290f;
width: 100%;
max-width: 400px;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:visited, .btn-orange:active {
background-color: #E74C3C;
border-color: #fff;
}
.sub-logo-text {
position: absolute;
left: 69px;
bottom: -2px;
padding: 0;
font-size: 10px;
border-bottom: 1px solid #d6290f;
}
/* Form - contact */
.help-block ul {
list-style: none;
padding: 0;
margin: 0;
}
.help-block ul li {
padding: 5px;
background-color: #E74C3C;
color: #fff;
}
canvas {
height: 500px;
width: 100%;
position: relative;
}
section {
overflow: hidden;
position: relative;
}
#circle1 {
display: block;
background-color: white;
}
h1 {
margin-top: 30px;
}
#brand {
background-color: transparent;
border: none;
border-radius: 50px;
display: block;
height: 60px;
position: absolute;
left: 20px;
top: 20px;
width: 80px;
z-index: 9999;
}
@media (min-width: 992px) {
#brand {
position: fixed;
width: 160px;
}
}
#brand img {
width: 100%;
}
.frills-paint {
background: transparent url(../img/black-ground-splash-paint.png) no-repeat;
background-size: 100%;
background-position: top center;
min-height: 100px;
}
@media (min-width: 992px) {
.frills-paint {
min-height: 220px;
}
}
.fixed-parallax .image {
position: relative;
height: auto;
min-height: 40vh;
background-position: center 20px;
background-repeat: no-repeat;
background-size: 50%;
}
@media (min-width: 768px) {
.fixed-parallax .image {
background-attachment: fixed;
height: 90vh;
background-size: inherit;
}
}
.fixed-parallax .image.one {
background-image: url("https://raw.githubusercontent.com/chrispxpx/codepen-poc-images/master/pxpx-rocket-black.png");
}
.fixed-parallax .image.two {
background-image: url("https://raw.githubusercontent.com/chrispxpx/codepen-poc-images/master/pxpx-rocket-black-invert.png");
}
.fixed-parallax .image.text-black {
background-image: url(../img/jack-text-black.png);
}
.fixed-parallax .image.text-white {
background-image: url(../img/jack-text-white.jpg);
}
.fixed-parallax .image.brand-orange-text {
background-image: url(../img/orangutan-logo-no-text.png);
}
.fixed-parallax .image.video-game-poster {
background-image: url(../img/jack-game-awake-1-scene-yellow-blue-background-jack-character.jpg);
background-image: url(../img/JACK-Game-Poster.jpg);
background-size: 100%;
}
.fixed-parallax .image.bg__character {
background-image: url(../img/orangutan-matter-jack-video-game-cicada-character.png);
background-image: url(../img/jack-game-poster.png);
background-size: 100%;
}
.fixed-parallax .fixed-parallax-image--inside {
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: block;
position: absolute;
width: 50%;
height: auto;
z-index: 999999;
}
@media (min-width: 992px) {
.fixed-parallax .fixed-parallax-image--inside {
width: 70%;
}
}
.acrylics-texture-background-tile {
background-image: url(../img/acrylics-texture-background-tile.jpg);
}
.bg-primary {
background: #fdcc52;
background: -webkit-gradient(linear, left top, left bottom, from(#fdcc52), to(#fdc539));
background: linear-gradient(#fdcc52, #fdc539);
}
.text-primary {
color: #fdcc52;
}
.no-gutter > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.btn-outline {
color: white;
border: 1px solid;
border-color: white;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
color: white;
border-color: #fdcc52;
background-color: #fdcc52;
}
.btn {
border-radius: 300px;
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
letter-spacing: 2px;
text-transform: uppercase;
}
.btn-xl {
font-size: 11px;
padding: 15px 45px;
}
| 0.302082 | 0.060975 |
@media only screen and (max-device-width: 850px) and (orientation : portrait) {
#LoginForm button {
margin-right: 0px;
}
#RegistrationForm .input.checkbox input[type="checkbox"] {
margin-top: 8px;
}
.ui-dialog {
width: 98% ! important;
max-width: 450px ! important;
}
body.categories .blog-post-wrapper,
body.manufacturers.detail .blog-post-wrapper,
body.pages.home .blog-post-wrapper,
body.blog_posts.index .blog-post-wrapper,
body.carts.order_successful .blog-post-wrapper {
width: 46% ! important;
margin-right: 2% ! important;
margin-left: 2%;
height: 234px;
}
body.categories .blog-wrapper,
body.manufacturers.detail .blog-wrapper {
height: 265px;
}
body.blog_posts.detail .blog-wrapper,
body.blog_posts.detail .blog-post-wrapper {
height: 234px;
}
.blog-post-wrapper img.blog-post-image {
height: 100px;
}
.blog-post-wrapper span.date {
display: none;
}
.product-wrapper .price {
margin-bottom: 5px ! important;
}
.product-wrapper .deposit {
margin-left: 0 ! important;
float: left ! important;
font-size: 12px ! important;
margin-bottom: 5px ! important;
}
div.second-column {
padding-right: 6px ! important;
}
div.third-column {
padding-left: 6px ! important;
padding-right: 0px ! important;
}
.product-wrapper .amount-wrapper {
margin-bottom: 5px ! important;
}
body.blog_posts.detail p.neighbors a {
width: 100% ! important;
margin-bottom: 5px ! important;
}
a.blog-post-wrapper .img-wrapper {
min-height: 100px ! important;
}
.carts span.product-name-wrapper {
width: 190px ! important;
}
body.carts .cart:not(#cart) .product {
padding-top: 10px;
}
body.carts .cart:not(#cart) span.amount {
margin-left: -8px;
padding-right: 100px; /* to move short products names to next row */
}
body.carts .cart:not(#cart) span.right {
position: static;
}
body.carts .cart:not(#cart) .image {
margin-top: 0;
}
body.carts .cart:not(#cart) .input.checkbox label {
font-size: 13px;
}
}
|
webroot/css/mobile-frontend-portrait.css
|
@media only screen and (max-device-width: 850px) and (orientation : portrait) {
#LoginForm button {
margin-right: 0px;
}
#RegistrationForm .input.checkbox input[type="checkbox"] {
margin-top: 8px;
}
.ui-dialog {
width: 98% ! important;
max-width: 450px ! important;
}
body.categories .blog-post-wrapper,
body.manufacturers.detail .blog-post-wrapper,
body.pages.home .blog-post-wrapper,
body.blog_posts.index .blog-post-wrapper,
body.carts.order_successful .blog-post-wrapper {
width: 46% ! important;
margin-right: 2% ! important;
margin-left: 2%;
height: 234px;
}
body.categories .blog-wrapper,
body.manufacturers.detail .blog-wrapper {
height: 265px;
}
body.blog_posts.detail .blog-wrapper,
body.blog_posts.detail .blog-post-wrapper {
height: 234px;
}
.blog-post-wrapper img.blog-post-image {
height: 100px;
}
.blog-post-wrapper span.date {
display: none;
}
.product-wrapper .price {
margin-bottom: 5px ! important;
}
.product-wrapper .deposit {
margin-left: 0 ! important;
float: left ! important;
font-size: 12px ! important;
margin-bottom: 5px ! important;
}
div.second-column {
padding-right: 6px ! important;
}
div.third-column {
padding-left: 6px ! important;
padding-right: 0px ! important;
}
.product-wrapper .amount-wrapper {
margin-bottom: 5px ! important;
}
body.blog_posts.detail p.neighbors a {
width: 100% ! important;
margin-bottom: 5px ! important;
}
a.blog-post-wrapper .img-wrapper {
min-height: 100px ! important;
}
.carts span.product-name-wrapper {
width: 190px ! important;
}
body.carts .cart:not(#cart) .product {
padding-top: 10px;
}
body.carts .cart:not(#cart) span.amount {
margin-left: -8px;
padding-right: 100px; /* to move short products names to next row */
}
body.carts .cart:not(#cart) span.right {
position: static;
}
body.carts .cart:not(#cart) .image {
margin-top: 0;
}
body.carts .cart:not(#cart) .input.checkbox label {
font-size: 13px;
}
}
| 0.359139 | 0.133896 |
.hero h1{
font-weight:900;
color:white;
text-transform:uppercase;
}
.vc_parallax-inner:before {
/* background: rgb(0, 0, 0); */
content: "";
background: linear-gradient(90deg, rgba(0, 0, 0, 0.5625) 0%, rgba(0, 0, 0, 0.0375) 100%);
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.dropdown-toggle::after {
border-top: .2em solid;
border-right: .2em solid transparent;
border-left: .2em solid transparent;
position: relative;
top: 2px;
left: 1px;
}
li:not(.btn) a.nav-link {
padding-right: 40px !important;
}
/* header#masthead.is_transparent {
background: rgba(0, 0, 0, 0.5);
} */
@media all and (max-width: 1470px) and (min-width:1000px) {}
@media all and (max-width: 999px) and (min-width:600px) {}
@media all and (max-width: 600px) and (min-width:200px) {
.menu-cart{
display:none;
}
}
/*
FOR PRODUCTION
*/
/*
a.post-edit-link, #vc_load-inline-editor {
background: grey;
padding: 4px 20px;
border-radius: 4px;
color: white;
font-size: 10px;
margin-right: 10px;
}
#menu-primary{
align-items:center;
}
header#masthead {
background-color: white;
}
nav.navbar a img {
max-height: 60px;
}
header#masthead {
padding: 0;
}
body:not(.theme-preset-active) #masthead .navbar-nav>li>a {
color:black;
}
body:not(.theme-preset-active) #masthead .navbar-nav>li>a:hover,
body:not(.theme-preset-active) #masthead .navbar-nav>li.current_page_item>a{
color:#cdcdcd;
}
#page #content.site-content {
padding-bottom: 3.75rem;
padding-top: 4.125rem;
} */
/*
footer always at bottom fix
*/
/* html, body{
height:100%;
}
#page {
min-height: 100%;
position: relative;
}
#footer {
position: relative;
bottom: 0;
left: 0;
width: 100%;
} */
/*
sticky header css
*/
/* header#masthead.sticky{
padding: 0;
position: fixed;
z-index: 9999;
left: 0;
right: 0;
}
#primary, #secondary{
margin-top:140px;
} */
/*
NOT USED FOR PRODUCTION
*/
|
inc/assets/css/theme-styles-development.css
|
.hero h1{
font-weight:900;
color:white;
text-transform:uppercase;
}
.vc_parallax-inner:before {
/* background: rgb(0, 0, 0); */
content: "";
background: linear-gradient(90deg, rgba(0, 0, 0, 0.5625) 0%, rgba(0, 0, 0, 0.0375) 100%);
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.dropdown-toggle::after {
border-top: .2em solid;
border-right: .2em solid transparent;
border-left: .2em solid transparent;
position: relative;
top: 2px;
left: 1px;
}
li:not(.btn) a.nav-link {
padding-right: 40px !important;
}
/* header#masthead.is_transparent {
background: rgba(0, 0, 0, 0.5);
} */
@media all and (max-width: 1470px) and (min-width:1000px) {}
@media all and (max-width: 999px) and (min-width:600px) {}
@media all and (max-width: 600px) and (min-width:200px) {
.menu-cart{
display:none;
}
}
/*
FOR PRODUCTION
*/
/*
a.post-edit-link, #vc_load-inline-editor {
background: grey;
padding: 4px 20px;
border-radius: 4px;
color: white;
font-size: 10px;
margin-right: 10px;
}
#menu-primary{
align-items:center;
}
header#masthead {
background-color: white;
}
nav.navbar a img {
max-height: 60px;
}
header#masthead {
padding: 0;
}
body:not(.theme-preset-active) #masthead .navbar-nav>li>a {
color:black;
}
body:not(.theme-preset-active) #masthead .navbar-nav>li>a:hover,
body:not(.theme-preset-active) #masthead .navbar-nav>li.current_page_item>a{
color:#cdcdcd;
}
#page #content.site-content {
padding-bottom: 3.75rem;
padding-top: 4.125rem;
} */
/*
footer always at bottom fix
*/
/* html, body{
height:100%;
}
#page {
min-height: 100%;
position: relative;
}
#footer {
position: relative;
bottom: 0;
left: 0;
width: 100%;
} */
/*
sticky header css
*/
/* header#masthead.sticky{
padding: 0;
position: fixed;
z-index: 9999;
left: 0;
right: 0;
}
#primary, #secondary{
margin-top:140px;
} */
/*
NOT USED FOR PRODUCTION
*/
| 0.287368 | 0.077448 |
@import "../js/dojo/resources/dojo.css";
/*
@import "../js/dijit/themes/tundra/tundra.css";
@import "../js/dojox/grid/resources/Grid.css"
@import "../js/dojox/grid/resources/tundraGrid.css";
@import "../js/dijit/themes/soria/soria.css";
@import "../js/dojox/grid/resources/soriaGrid.css";
*/
@import "../js/dijit/themes/claro/claro.css";
@import "../js/dojox/grid/resources/claroGrid.css";
/*
@import "../js/dijit/themes/soria/soria.css";
@import "../js/dojox/grid/resources/soriaGrid.css";
@import "../js/dijit/themes/soria/nihilo.css";
@import "../js/dojox/grid/resources/nihiloGrid.css";
*/
html, body{
width: 100%; /* make the body expand to fill the visible window */
height: 100%;
/*overflow: hidden; /* erase window level scrollbars */
padding: 0 0 0 0;
margin: 0px 0 0px 0;
font: 10pt Arial,Myriad,Tahoma,Verdana,sans-serif;
background-color: #BEC3C6;
background: url(../images/bg.jpg) repeat-x #BEC3C6;;
}
#main{
margin: 0 auto;
/*width:900px;*/
height: 100%;
/*min-height: 550px;*/
padding: 0 0 0 0;
}
.uploadBtn{
border:1px solid #333333;
/*border-color:#366dba;*/
background: #ededed url(../js/dijit/themes/tundra/images/buttonActive.png) bottom repeat-x;
/*font-size:14px;*/
width:201px;
height:30px;
vertical-align:middle; /* emulates a <button> if node is not */
text-align:center;
}
.uploadHover{
border-color: #a5beda;
border-bottom-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
cursor:pointer;
}
.uploadPress{
background:#CCC;
}
.uploadDisabled{
background-image:none;
background-color:#666;
color:#999;
border:1px solid #999;
}
#banner {
background-color: #333333;
background: -webkit-gradient(linear, left top, left 25, from(#000000), color-stop(4%, #444), to(#000000));
background: -moz-linear-gradient(top, #000000, #444 1px, #000000 25px);
color: #333;
height: 32px;
padding:0;
border:none;
/*padding:3px; */
}
#banner .title{
font-size:1.5em;
font-weight:bold;
color:#fff;
padding-top:4px;
}
#banner .home-link {
display:block;
float:left;
width: 40px;
margin: 2px 4px;
height:100%;
background: url(../images/home-icon.png) no-repeat;
}
#banner .user-name {
padding: 8px 15px;
float:right;
color:#fff;
font-weight:bold;
border-left: 1px solid #666;
border-right: 1px solid #666;
cursor: pointer;
}
#banner .user-name:hover {
background: #444;
}
#banner .short-name{
font-size:1.0em;
font-weight:normal;
color:#fff;
padding:8px;
float:right;
}
.user-info {
position:absolute;
top:32px;
right:0;
width: 150px;
height: 68px;
background: #fff;
padding: 10px;
z-index:6;
border: 1px solid #888888;
border-top: none;
-moz-border-radius: 0 0 6px 6px;
-webkit-border-radius: 0 0 6px 6px;
-moz-box-shadow: -2px 6px 4px rgba(0, 0, 0, 0.3);
display:none;
}
#top{
background-color: #333333;
color: #ffffff;
padding:0px;
border: 0;
background: url(../images/top.gif) repeat-x;
height: 37px;
}
#top-left{
height: 37px;
width: 25px;
background: url(../images/top-left.gif);
float: left;
}
#top-right{
height: 37px;
width: 90px;
background: url(../images/top-right.gif);
float: right;
}
#footer {
background-color: #333333;
color: #ffffff;
padding:0px;
border: 0;
background: url(../images/bottom.gif);
height: 37px;
}
#bottom-left {
height: 37px;
width: 25px;
background: url(../images/bottom-left.gif);
float: left;
}
#bottom-right {
height: 37px;
width: 90px;
background: url(../images/bottom-right.gif);
float: right;
}
.dijitTextBox,
.dijitValidationTextBox
.dijitTextBox,
.dijit.FilteringSelect,
.tundra .dijitTextArea.myField,
.dijitComboBox
{
width:400px;
margin:5px 0 0 0;
}
.dijitTimeTextBox,.dijitDateTextBox
{
width:110px;
}
.claro .dojoxGridRow {
line-height: 21px;
}
/* list of messages
TODO: If i add the rules below as a plain tr/td it seems to mess up accordion, tree, etc. ???
*/
#listPane tr:hover, #listPane td:hover, .dijitTreeContent:hover {
background-color: #ededed;
color: #333;
cursor: pointer;
}
#listPane tr, #listPane td { cursor: pointer; }
table.demoTable {
border-collapse: collapse;
}
th {
background-color: #4f8ce5;
color: #666;
font-weight:: bold !important;
margin:0;
padding:3px;
background-image:url('../js/dijit/themes/tundra/images/titleBar.png');
background-position:0px -1px;
}
.dijitRtl caption,
.dijitRtl th {
text-align:right;
}
th .arrowNode {
position:relative;
float:left;
top:4px;
left:4px;
width:16px;
height:16px;
}
.dijitRtl th .arrowNode{
float:right;
}
th.arrowUp .arrowNode {
margin-right: 5px;
margin-top: -4px;
margin-bottom: 5px;
width: 15px;
height:15px;
background:transparent url("../js/dijit/themes/tundra/images/spriteRoundedIconsSmall.png") -45px top no-repeat;
}
th.arrowDown .arrowNode {
margin-right: 5px;
margin-top: -4px;
margin-bottom: 5px;
width: 15px;
height:15px;
background:transparent url("../js/dijit/themes/tundra/images/spriteRoundedIconsSmall.png") -15px top no-repeat;
}
.demoTable td { padding:3px; }
.demoTable {
border-spacing:0;
padding:0; margin:0;
width:98%;
}
.oddRow {
background-color: #f2f5f9;
}
.selectedRow {
background-color: black;
}
#message {
padding: 8px;
}
/* Icons */
.mailIconCancel,
.mailIconOptions,
.mailIconFolderDocuments,
.mailIconFolderInbox,
.mailIconFolderSent,
.mailIconGetMail,
.mailIconNewMessage,
.mailIconMailbox,
.mailIconOk,
.mailIconTrashcanFull {
background-image: url('../images/icons.png'); /* mail icons sprite image */
background-repeat: no-repeat;
width: 16px;
height: 16px;
text-align: center;
padding-right:4px;
}
.dj_ie6 .mailIconCancel,
.dj_ie6 .mailIconOptions,
.dj_ie6 .mailIconFolderDocuments,
.dj_ie6 .mailIconFolderInbox,
.dj_ie6 .mailIconFolderSent,
.dj_ie6 .mailIconGetMail,
.dj_ie6 .mailIconNewMessage,
.dj_ie6 .mailIconMailbox,
.dj_ie6 .mailIconOk,
.dj_ie6 .mailIconTrashcanFull {
background-image: url('../images/icons.gif');
}
.mailIconCancel { background-position: 0px; }
.mailIconOptions { background-position: -22px; }
.mailIconFolderDocuments { background-position: -44px; }
.mailIconFolderInbox { background-position: -66px; }
.mailIconFolderSent { background-position: -88px; }
.mailIconGetMail { background-position: -110px; }
.mailIconNewMessage { background-position: -132px; }
.mailIconMailbox { background-position: -154px; }
.mailIconOk { background-position: -176px; }
.mailIconTrashcanFull { background-position: -198px; }
/* page inline styles */
#inbox .dijitSplitterH { height: 5px }
#inbox .dijitSplitterV { width: 5px }
#preLoader {
width:100%; height:100%; margin:0; padding:0;
position:absolute; top:0; left:0;
background:#fff url('../js/dojox/image/resources/images/loading.gif') no-repeat center center;
z-index:999;
}
#preLoader p {
color:#ededed;
font:72pt Arial,san-serif;
font-weight:bold;
}
/* buttons on Contact tab for filtering list of contacts to a given letter */
.contactIndex, .contactIndexAll {
margin: 0.5em;
color: blue;
font-style: italic;
vertical-align: middle;
cursor: pointer;
}
.contactIndexAll {
/* for the word ALL that appears before and after the letters A-Z */
color: purple;
}
.contactIndexSelected {
/* the most recently selected letter gets this class too */
color: red;
}
.error-message{
padding:2px;
border: red 1px solid;
color: red;
margin-left: 20px;
}
|
rollout/web/src/main/html/css/dataset.css
|
@import "../js/dojo/resources/dojo.css";
/*
@import "../js/dijit/themes/tundra/tundra.css";
@import "../js/dojox/grid/resources/Grid.css"
@import "../js/dojox/grid/resources/tundraGrid.css";
@import "../js/dijit/themes/soria/soria.css";
@import "../js/dojox/grid/resources/soriaGrid.css";
*/
@import "../js/dijit/themes/claro/claro.css";
@import "../js/dojox/grid/resources/claroGrid.css";
/*
@import "../js/dijit/themes/soria/soria.css";
@import "../js/dojox/grid/resources/soriaGrid.css";
@import "../js/dijit/themes/soria/nihilo.css";
@import "../js/dojox/grid/resources/nihiloGrid.css";
*/
html, body{
width: 100%; /* make the body expand to fill the visible window */
height: 100%;
/*overflow: hidden; /* erase window level scrollbars */
padding: 0 0 0 0;
margin: 0px 0 0px 0;
font: 10pt Arial,Myriad,Tahoma,Verdana,sans-serif;
background-color: #BEC3C6;
background: url(../images/bg.jpg) repeat-x #BEC3C6;;
}
#main{
margin: 0 auto;
/*width:900px;*/
height: 100%;
/*min-height: 550px;*/
padding: 0 0 0 0;
}
.uploadBtn{
border:1px solid #333333;
/*border-color:#366dba;*/
background: #ededed url(../js/dijit/themes/tundra/images/buttonActive.png) bottom repeat-x;
/*font-size:14px;*/
width:201px;
height:30px;
vertical-align:middle; /* emulates a <button> if node is not */
text-align:center;
}
.uploadHover{
border-color: #a5beda;
border-bottom-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
cursor:pointer;
}
.uploadPress{
background:#CCC;
}
.uploadDisabled{
background-image:none;
background-color:#666;
color:#999;
border:1px solid #999;
}
#banner {
background-color: #333333;
background: -webkit-gradient(linear, left top, left 25, from(#000000), color-stop(4%, #444), to(#000000));
background: -moz-linear-gradient(top, #000000, #444 1px, #000000 25px);
color: #333;
height: 32px;
padding:0;
border:none;
/*padding:3px; */
}
#banner .title{
font-size:1.5em;
font-weight:bold;
color:#fff;
padding-top:4px;
}
#banner .home-link {
display:block;
float:left;
width: 40px;
margin: 2px 4px;
height:100%;
background: url(../images/home-icon.png) no-repeat;
}
#banner .user-name {
padding: 8px 15px;
float:right;
color:#fff;
font-weight:bold;
border-left: 1px solid #666;
border-right: 1px solid #666;
cursor: pointer;
}
#banner .user-name:hover {
background: #444;
}
#banner .short-name{
font-size:1.0em;
font-weight:normal;
color:#fff;
padding:8px;
float:right;
}
.user-info {
position:absolute;
top:32px;
right:0;
width: 150px;
height: 68px;
background: #fff;
padding: 10px;
z-index:6;
border: 1px solid #888888;
border-top: none;
-moz-border-radius: 0 0 6px 6px;
-webkit-border-radius: 0 0 6px 6px;
-moz-box-shadow: -2px 6px 4px rgba(0, 0, 0, 0.3);
display:none;
}
#top{
background-color: #333333;
color: #ffffff;
padding:0px;
border: 0;
background: url(../images/top.gif) repeat-x;
height: 37px;
}
#top-left{
height: 37px;
width: 25px;
background: url(../images/top-left.gif);
float: left;
}
#top-right{
height: 37px;
width: 90px;
background: url(../images/top-right.gif);
float: right;
}
#footer {
background-color: #333333;
color: #ffffff;
padding:0px;
border: 0;
background: url(../images/bottom.gif);
height: 37px;
}
#bottom-left {
height: 37px;
width: 25px;
background: url(../images/bottom-left.gif);
float: left;
}
#bottom-right {
height: 37px;
width: 90px;
background: url(../images/bottom-right.gif);
float: right;
}
.dijitTextBox,
.dijitValidationTextBox
.dijitTextBox,
.dijit.FilteringSelect,
.tundra .dijitTextArea.myField,
.dijitComboBox
{
width:400px;
margin:5px 0 0 0;
}
.dijitTimeTextBox,.dijitDateTextBox
{
width:110px;
}
.claro .dojoxGridRow {
line-height: 21px;
}
/* list of messages
TODO: If i add the rules below as a plain tr/td it seems to mess up accordion, tree, etc. ???
*/
#listPane tr:hover, #listPane td:hover, .dijitTreeContent:hover {
background-color: #ededed;
color: #333;
cursor: pointer;
}
#listPane tr, #listPane td { cursor: pointer; }
table.demoTable {
border-collapse: collapse;
}
th {
background-color: #4f8ce5;
color: #666;
font-weight:: bold !important;
margin:0;
padding:3px;
background-image:url('../js/dijit/themes/tundra/images/titleBar.png');
background-position:0px -1px;
}
.dijitRtl caption,
.dijitRtl th {
text-align:right;
}
th .arrowNode {
position:relative;
float:left;
top:4px;
left:4px;
width:16px;
height:16px;
}
.dijitRtl th .arrowNode{
float:right;
}
th.arrowUp .arrowNode {
margin-right: 5px;
margin-top: -4px;
margin-bottom: 5px;
width: 15px;
height:15px;
background:transparent url("../js/dijit/themes/tundra/images/spriteRoundedIconsSmall.png") -45px top no-repeat;
}
th.arrowDown .arrowNode {
margin-right: 5px;
margin-top: -4px;
margin-bottom: 5px;
width: 15px;
height:15px;
background:transparent url("../js/dijit/themes/tundra/images/spriteRoundedIconsSmall.png") -15px top no-repeat;
}
.demoTable td { padding:3px; }
.demoTable {
border-spacing:0;
padding:0; margin:0;
width:98%;
}
.oddRow {
background-color: #f2f5f9;
}
.selectedRow {
background-color: black;
}
#message {
padding: 8px;
}
/* Icons */
.mailIconCancel,
.mailIconOptions,
.mailIconFolderDocuments,
.mailIconFolderInbox,
.mailIconFolderSent,
.mailIconGetMail,
.mailIconNewMessage,
.mailIconMailbox,
.mailIconOk,
.mailIconTrashcanFull {
background-image: url('../images/icons.png'); /* mail icons sprite image */
background-repeat: no-repeat;
width: 16px;
height: 16px;
text-align: center;
padding-right:4px;
}
.dj_ie6 .mailIconCancel,
.dj_ie6 .mailIconOptions,
.dj_ie6 .mailIconFolderDocuments,
.dj_ie6 .mailIconFolderInbox,
.dj_ie6 .mailIconFolderSent,
.dj_ie6 .mailIconGetMail,
.dj_ie6 .mailIconNewMessage,
.dj_ie6 .mailIconMailbox,
.dj_ie6 .mailIconOk,
.dj_ie6 .mailIconTrashcanFull {
background-image: url('../images/icons.gif');
}
.mailIconCancel { background-position: 0px; }
.mailIconOptions { background-position: -22px; }
.mailIconFolderDocuments { background-position: -44px; }
.mailIconFolderInbox { background-position: -66px; }
.mailIconFolderSent { background-position: -88px; }
.mailIconGetMail { background-position: -110px; }
.mailIconNewMessage { background-position: -132px; }
.mailIconMailbox { background-position: -154px; }
.mailIconOk { background-position: -176px; }
.mailIconTrashcanFull { background-position: -198px; }
/* page inline styles */
#inbox .dijitSplitterH { height: 5px }
#inbox .dijitSplitterV { width: 5px }
#preLoader {
width:100%; height:100%; margin:0; padding:0;
position:absolute; top:0; left:0;
background:#fff url('../js/dojox/image/resources/images/loading.gif') no-repeat center center;
z-index:999;
}
#preLoader p {
color:#ededed;
font:72pt Arial,san-serif;
font-weight:bold;
}
/* buttons on Contact tab for filtering list of contacts to a given letter */
.contactIndex, .contactIndexAll {
margin: 0.5em;
color: blue;
font-style: italic;
vertical-align: middle;
cursor: pointer;
}
.contactIndexAll {
/* for the word ALL that appears before and after the letters A-Z */
color: purple;
}
.contactIndexSelected {
/* the most recently selected letter gets this class too */
color: red;
}
.error-message{
padding:2px;
border: red 1px solid;
color: red;
margin-left: 20px;
}
| 0.102226 | 0.040999 |
html {
font-family: sans-serif;
font-size: 16px;
}
body {
margin: 0px;
padding: 0px;
}
textarea {
width: calc(100% - 13px);
background-color: #18181F;
border: 1px solid #F5EEE2;
color: #F5EEE2;
padding: 5px;
height: 30px;
}
#main {
display: grid;
grid-template-columns: 395px 50% auto;
background-color: #18181F;
color: #F5EEE2;
height: 100vh;
}
#info {
display: grid;
grid-template-rows: 60px auto;
padding-bottom: 15px;
}
#info > div {
padding: 15px 20px 0px 15px;
}
#info > #name {
background-color: #F5EEE2;
color: #323844;
font-size: 1.5rem;
font-weight: 700;
}
#info > .rows {
display: grid;
grid-template-rows: 415px auto;
grid-row-gap: 15px;
}
.tabs {
display: grid;
grid-template-rows: 30px auto;
grid-row-gap: 15px;
}
.tabs > .head {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(25px, max-content));
grid-column-gap: 25px;
font-size: 0.9rem;
}
.tabs > .head > div {
padding: 0px 10px;
height: 25px;
cursor: pointer;
}
.tabs > .head > div:hover,
.tabs > .head > div.active {
border-bottom: 1px solid #3399FF;
}
.tabs > .body {
background-color: #323844;
font-size: 0.9rem;
padding: 10px;
}
#info #map {
overflow: hidden;
}
#info #map table {
width: 100%;
height: 100%;
}
#info #map td {
box-sizing: border-box;
}
#info #map-rooms {
background-color: #F5EEE2;
padding: 10px;
}
#info #map .map-room {
background-color: #F5EEE2;
/* WARNING
*
* 25/22px is critical for the box sizing to
* maintain the same dimensions for all rooms.
*
* Anything lower or higher will cause
* the room to distort when text is added.
*
*/
height: 25px;
width: 22px;
}
#info #map .map-room.active {
background-color: #3399FF;
border: 4px double #18181F;
}
#info #map .map-room.active-inner-bottom {
border-bottom: 1px solid #C0C0C0;
}
#info #map .map-room.active-inner-right {
border-right: 1px solid #C0C0C0;
}
#info #map .map-room.loc {
text-align: center;
color: #18181F;
}
#info #map #map-name {
vertical-align: bottom;
height: 30px;
}
#info #map #map-nav {
font-size: 0.8rem;
vertical-align: top;
text-align: center;
padding-left: 10px;
width: 50px;
}
#info #map #map-nav #map-compass {
font-size: 2.0rem;
margin-top: -5px;
}
#info #map #map-nav #map-compass > span {
font-weight: bold;
}
@-moz-document url-prefix() {
#info #map #map-nav #map-compass {
margin-top: -12px;
font-weight: bold;
}
}
#info #map #map-nav .map-icon {
font-size: 0.8rem;
padding: 4px;
display: inline-block;
margin-bottom: 8px;
background-color: #3399FF;
border: 4px double #18181F;
color: #18181F;
height: 13px;
width: 13px;
}
#info #map #map-nav .map-icon > .map-icon-you {
margin-top: -1px;
}
#info #map #map-nav .map-icon > .map-icon-group {
margin-top: -2px;
}
#view {
background-color: #323844;
font-size: 0.9rem;
line-height: 1.5;
display: grid;
grid-template-rows: auto 50px;
grid-row-gap: 15px;
align-items: end;
padding: 15px;
}
#chat {
display: grid;
grid-template-rows: 100%;
}
#chat > div {
padding: 15px 15px 0px 20px;
}
#chat > .rows {
display: grid;
grid-template-rows: 100%;
}
#chat .channel {
display: grid;
grid-template-rows: auto 50px;
grid-row-gap: 15px;
align-items: end;
padding: 15px;
}
|
client/index.css
|
html {
font-family: sans-serif;
font-size: 16px;
}
body {
margin: 0px;
padding: 0px;
}
textarea {
width: calc(100% - 13px);
background-color: #18181F;
border: 1px solid #F5EEE2;
color: #F5EEE2;
padding: 5px;
height: 30px;
}
#main {
display: grid;
grid-template-columns: 395px 50% auto;
background-color: #18181F;
color: #F5EEE2;
height: 100vh;
}
#info {
display: grid;
grid-template-rows: 60px auto;
padding-bottom: 15px;
}
#info > div {
padding: 15px 20px 0px 15px;
}
#info > #name {
background-color: #F5EEE2;
color: #323844;
font-size: 1.5rem;
font-weight: 700;
}
#info > .rows {
display: grid;
grid-template-rows: 415px auto;
grid-row-gap: 15px;
}
.tabs {
display: grid;
grid-template-rows: 30px auto;
grid-row-gap: 15px;
}
.tabs > .head {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(25px, max-content));
grid-column-gap: 25px;
font-size: 0.9rem;
}
.tabs > .head > div {
padding: 0px 10px;
height: 25px;
cursor: pointer;
}
.tabs > .head > div:hover,
.tabs > .head > div.active {
border-bottom: 1px solid #3399FF;
}
.tabs > .body {
background-color: #323844;
font-size: 0.9rem;
padding: 10px;
}
#info #map {
overflow: hidden;
}
#info #map table {
width: 100%;
height: 100%;
}
#info #map td {
box-sizing: border-box;
}
#info #map-rooms {
background-color: #F5EEE2;
padding: 10px;
}
#info #map .map-room {
background-color: #F5EEE2;
/* WARNING
*
* 25/22px is critical for the box sizing to
* maintain the same dimensions for all rooms.
*
* Anything lower or higher will cause
* the room to distort when text is added.
*
*/
height: 25px;
width: 22px;
}
#info #map .map-room.active {
background-color: #3399FF;
border: 4px double #18181F;
}
#info #map .map-room.active-inner-bottom {
border-bottom: 1px solid #C0C0C0;
}
#info #map .map-room.active-inner-right {
border-right: 1px solid #C0C0C0;
}
#info #map .map-room.loc {
text-align: center;
color: #18181F;
}
#info #map #map-name {
vertical-align: bottom;
height: 30px;
}
#info #map #map-nav {
font-size: 0.8rem;
vertical-align: top;
text-align: center;
padding-left: 10px;
width: 50px;
}
#info #map #map-nav #map-compass {
font-size: 2.0rem;
margin-top: -5px;
}
#info #map #map-nav #map-compass > span {
font-weight: bold;
}
@-moz-document url-prefix() {
#info #map #map-nav #map-compass {
margin-top: -12px;
font-weight: bold;
}
}
#info #map #map-nav .map-icon {
font-size: 0.8rem;
padding: 4px;
display: inline-block;
margin-bottom: 8px;
background-color: #3399FF;
border: 4px double #18181F;
color: #18181F;
height: 13px;
width: 13px;
}
#info #map #map-nav .map-icon > .map-icon-you {
margin-top: -1px;
}
#info #map #map-nav .map-icon > .map-icon-group {
margin-top: -2px;
}
#view {
background-color: #323844;
font-size: 0.9rem;
line-height: 1.5;
display: grid;
grid-template-rows: auto 50px;
grid-row-gap: 15px;
align-items: end;
padding: 15px;
}
#chat {
display: grid;
grid-template-rows: 100%;
}
#chat > div {
padding: 15px 15px 0px 20px;
}
#chat > .rows {
display: grid;
grid-template-rows: 100%;
}
#chat .channel {
display: grid;
grid-template-rows: auto 50px;
grid-row-gap: 15px;
align-items: end;
padding: 15px;
}
| 0.189334 | 0.081739 |
.row {
margin-bottom: 15px;
}
.container {
padding-top: 40px;
}
header .container {
padding-top: 20px;
}
.remove-link {
margin-left: 20px;
}
header {
margin-bottom: 20px;
}
header .line {
width: 100%;
height: 8px;
background-color: #51bcb6;
}
header .logo {
height: 53px;
width: 120px;
}
header .sharedLinks {
}
header .headerLinks {
float: right;
}
header .headerLinks li {
font-family: 'Raleway', sans-serif;
text-transform: uppercase;
text-decoration: underline;
cursor: pointer;
font-size: 10px;
list-style: none;
margin: 0;
float: left;
}
header .headerLinks li.sharedLinks {
margin-right: 10px;
}
header .headerLinks a,
header .headerLinks a:visited {
color: black;
}
h3,
h4 {
font-family: 'Raleway', sans-serif;
font-size: 18px;
margin-bottom: 30px;
}
h3 {
text-transform: uppercase;
color: #4c468d;
}
h4 {
color: #787a7a;
margin-bottom: 0px;
}
img.profileImage {
width: 193px;
height: 193px;
border: 1px solid #afafaf;
margin: 0 30px 30px 0;
}
label {
font-family: 'Raleway', sans-serif;
font-size: 18px;
color: #4c468d;
text-transform: uppercase;
}
.link-list-container .card {
max-width: 750px;
margin-bottom: 20px;
}
.link-list-container .card .btn-primary {
background-color: ;
}
.link-list-container .card h5 {
color: #787a7a;
}
.link-list-container .card-header {
font-family: 'Raleway', sans-serif;
}
.link-list-container {
padding-left: 0px;
}
.links-container .row {
margin-bottom: 50px;
}
.link-list-container .link {
border: 1px solid #afafaf;
min-height: 100px;
}
.link-list-container .link .content:hover h4 {
color: #51bcb6;
}
.link-list-container .link .image {
background-size: auto 200%;
background-repeat: no-repeat;
background-position: center;
}
.link-list-container .link .content {
padding: 15px 10px 15px 20px;
cursor: pointer;
}
.link.row {
margin-bottom: 20px;
}
.link-list-container .link .content .badge-secondary,
.share-btn,
.link-list-container .card h5 .badge-secondary {
background-color: #51bcb6;
}
.link-list-container .card .btn-primary {
background-color: #4c468d;
}
.link-list-container .link .content .badge-secondary,
.link-list-container .card h5 .badge-secondary {
position: relative;
top: -3px;
}
.share-btn,
.link-list-container .card .btn-primary {
color: white;
border: none;
}
.share-btn:hover,
.link-list-container .card .btn-primary:hover {
background-color: #4b428d;
color: white;
}
.link-list-container {
padding-top: 0;
}
.link-list-container .link .content p {
font-family: 'Raleway', sans-serif;
margin: 0;
/* These are technically the same, but use both */
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
/* This is the dangerous one in WebKit, as it breaks things wherever */
word-break: break-all;
/* Instead use this non-standard one: */
word-break: break-word;
/* Adds a hyphen where the word breaks, if supported (No Blink) */
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.link-list-container .card p.url,
.link-list-container .card p.dateAdded {
color: #afafaf;
font-size: 11px;
font-style: italic;
margin-bottom: 5px;
}
@media (max-width: 767px) {
.link-list-container .link .content {
padding: 10px;
}
.link-list-container .link .image {
display: none;
}
.link-list-container .delete {
height: 50px;
border-top: 1px solid #afafaf;
border-left: none;
}
}
#loginForm {
margin-bottom: 20px;
}
.alert {
margin-top: 20px;
}
.lds-default {
display: inline-block;
position: relative;
width: 64px;
height: 64px;
}
.lds-default div {
position: absolute;
width: 5px;
height: 5px;
background: #4c468d;
border-radius: 50%;
animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
animation-delay: 0s;
top: 29px;
left: 53px;
}
.lds-default div:nth-child(2) {
animation-delay: -0.1s;
top: 18px;
left: 50px;
}
.lds-default div:nth-child(3) {
animation-delay: -0.2s;
top: 9px;
left: 41px;
}
.lds-default div:nth-child(4) {
animation-delay: -0.3s;
top: 6px;
left: 29px;
}
.lds-default div:nth-child(5) {
animation-delay: -0.4s;
top: 9px;
left: 18px;
}
.lds-default div:nth-child(6) {
animation-delay: -0.5s;
top: 18px;
left: 9px;
}
.lds-default div:nth-child(7) {
animation-delay: -0.6s;
top: 29px;
left: 6px;
}
.lds-default div:nth-child(8) {
animation-delay: -0.7s;
top: 41px;
left: 9px;
}
.lds-default div:nth-child(9) {
animation-delay: -0.8s;
top: 50px;
left: 18px;
}
.lds-default div:nth-child(10) {
animation-delay: -0.9s;
top: 53px;
left: 29px;
}
.lds-default div:nth-child(11) {
animation-delay: -1s;
top: 50px;
left: 41px;
}
.lds-default div:nth-child(12) {
animation-delay: -1.1s;
top: 41px;
left: 50px;
}
@keyframes lds-default {
0%,
20%,
80%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
.list-filter {
margin-bottom: 20px;
}
.list-filter .nav-link {
color: #4c468d;
text-transform: uppercase;
cursor: pointer;
font-family: 'Raleway', sans-serif;
}
.list-filter .nav-link.active {
color: #51bcb6;
}
|
src/index.css
|
.row {
margin-bottom: 15px;
}
.container {
padding-top: 40px;
}
header .container {
padding-top: 20px;
}
.remove-link {
margin-left: 20px;
}
header {
margin-bottom: 20px;
}
header .line {
width: 100%;
height: 8px;
background-color: #51bcb6;
}
header .logo {
height: 53px;
width: 120px;
}
header .sharedLinks {
}
header .headerLinks {
float: right;
}
header .headerLinks li {
font-family: 'Raleway', sans-serif;
text-transform: uppercase;
text-decoration: underline;
cursor: pointer;
font-size: 10px;
list-style: none;
margin: 0;
float: left;
}
header .headerLinks li.sharedLinks {
margin-right: 10px;
}
header .headerLinks a,
header .headerLinks a:visited {
color: black;
}
h3,
h4 {
font-family: 'Raleway', sans-serif;
font-size: 18px;
margin-bottom: 30px;
}
h3 {
text-transform: uppercase;
color: #4c468d;
}
h4 {
color: #787a7a;
margin-bottom: 0px;
}
img.profileImage {
width: 193px;
height: 193px;
border: 1px solid #afafaf;
margin: 0 30px 30px 0;
}
label {
font-family: 'Raleway', sans-serif;
font-size: 18px;
color: #4c468d;
text-transform: uppercase;
}
.link-list-container .card {
max-width: 750px;
margin-bottom: 20px;
}
.link-list-container .card .btn-primary {
background-color: ;
}
.link-list-container .card h5 {
color: #787a7a;
}
.link-list-container .card-header {
font-family: 'Raleway', sans-serif;
}
.link-list-container {
padding-left: 0px;
}
.links-container .row {
margin-bottom: 50px;
}
.link-list-container .link {
border: 1px solid #afafaf;
min-height: 100px;
}
.link-list-container .link .content:hover h4 {
color: #51bcb6;
}
.link-list-container .link .image {
background-size: auto 200%;
background-repeat: no-repeat;
background-position: center;
}
.link-list-container .link .content {
padding: 15px 10px 15px 20px;
cursor: pointer;
}
.link.row {
margin-bottom: 20px;
}
.link-list-container .link .content .badge-secondary,
.share-btn,
.link-list-container .card h5 .badge-secondary {
background-color: #51bcb6;
}
.link-list-container .card .btn-primary {
background-color: #4c468d;
}
.link-list-container .link .content .badge-secondary,
.link-list-container .card h5 .badge-secondary {
position: relative;
top: -3px;
}
.share-btn,
.link-list-container .card .btn-primary {
color: white;
border: none;
}
.share-btn:hover,
.link-list-container .card .btn-primary:hover {
background-color: #4b428d;
color: white;
}
.link-list-container {
padding-top: 0;
}
.link-list-container .link .content p {
font-family: 'Raleway', sans-serif;
margin: 0;
/* These are technically the same, but use both */
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
/* This is the dangerous one in WebKit, as it breaks things wherever */
word-break: break-all;
/* Instead use this non-standard one: */
word-break: break-word;
/* Adds a hyphen where the word breaks, if supported (No Blink) */
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.link-list-container .card p.url,
.link-list-container .card p.dateAdded {
color: #afafaf;
font-size: 11px;
font-style: italic;
margin-bottom: 5px;
}
@media (max-width: 767px) {
.link-list-container .link .content {
padding: 10px;
}
.link-list-container .link .image {
display: none;
}
.link-list-container .delete {
height: 50px;
border-top: 1px solid #afafaf;
border-left: none;
}
}
#loginForm {
margin-bottom: 20px;
}
.alert {
margin-top: 20px;
}
.lds-default {
display: inline-block;
position: relative;
width: 64px;
height: 64px;
}
.lds-default div {
position: absolute;
width: 5px;
height: 5px;
background: #4c468d;
border-radius: 50%;
animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
animation-delay: 0s;
top: 29px;
left: 53px;
}
.lds-default div:nth-child(2) {
animation-delay: -0.1s;
top: 18px;
left: 50px;
}
.lds-default div:nth-child(3) {
animation-delay: -0.2s;
top: 9px;
left: 41px;
}
.lds-default div:nth-child(4) {
animation-delay: -0.3s;
top: 6px;
left: 29px;
}
.lds-default div:nth-child(5) {
animation-delay: -0.4s;
top: 9px;
left: 18px;
}
.lds-default div:nth-child(6) {
animation-delay: -0.5s;
top: 18px;
left: 9px;
}
.lds-default div:nth-child(7) {
animation-delay: -0.6s;
top: 29px;
left: 6px;
}
.lds-default div:nth-child(8) {
animation-delay: -0.7s;
top: 41px;
left: 9px;
}
.lds-default div:nth-child(9) {
animation-delay: -0.8s;
top: 50px;
left: 18px;
}
.lds-default div:nth-child(10) {
animation-delay: -0.9s;
top: 53px;
left: 29px;
}
.lds-default div:nth-child(11) {
animation-delay: -1s;
top: 50px;
left: 41px;
}
.lds-default div:nth-child(12) {
animation-delay: -1.1s;
top: 41px;
left: 50px;
}
@keyframes lds-default {
0%,
20%,
80%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
.list-filter {
margin-bottom: 20px;
}
.list-filter .nav-link {
color: #4c468d;
text-transform: uppercase;
cursor: pointer;
font-family: 'Raleway', sans-serif;
}
.list-filter .nav-link.active {
color: #51bcb6;
}
| 0.403097 | 0.072735 |
html {
cursor: url("../img/pizzaIcon.png"), auto;
}
body {
margin: 0;
padding: 0;
background: url("../img/fireBackground.jpg") no-repeat center fixed;
color: #000;
z-index: -20;
font-family: serif;
}
#pizzaOrder, #output, h1, h3 {
background-color: rgba(225, 225, 225, 0.8);
}
#pizzaOrder {
height: 100%;
}
h1 {
margin: 10px auto;
text-align: center;
width: 600px;
border: 4px solid #24662A;
border-radius: 10px;
}
h3 {
margin: 10px auto;
text-align: center;
width: 200px;
border: 4px solid #EDDFD1;
border-radius: 10px;
}
#pizzaOrder {
margin: 0 0 -3px;
padding-bottom: 0;
border: 4px solid #C72100;
border-radius: 10px;
cursor: default;
}
#output {
display: none;
margin: 0;
padding-top: 0;
border: 4px solid #C72100;
border-radius: 10px;
}
#orderBtn {
border: 1px solid #000;
margin: auto;
width: 75px;
float: right;
position: relative;
top: -250px;
}
li {
list-style: none;
}
.totalCost {
background: rgba(232, 131, 127, 0.8);
border-radius: 3px;
width: 150px;
padding: 3px;
font-size: 16px;
}
/*FOR THE DYNAMIC PIZZA*/
#dynamicPizza {
background: url("../img/pizzaBackgroundClean.png") no-repeat;
height: 350px;
width: 350px;
z-index: -10;
position: fixed;
top: 280px;
left: 560px;
}
.arugula {
background: url("../img/arugula.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 400px;
left: 620px;
}
.spinach {
background: url("../img/spinach.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 380px;
left: 680px;
}
.olives {
background: url("../img/olives.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 450px;
left: 760px;
}
.mushrooms {
background: url("../img/mushroom.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 350px;
left: 740px;
}
.calabrian {
background: url("../img/calabrianChili.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 425px;
left: 725px;
}
.goat {
background: url("../img/goatCheese.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 450px;
left: 625px;
}
.feta {
background: url("../img/feta.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 500px;
left: 650px;
}
.pepperoni {
background: url("../img/pepperoni.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 480px;
left: 720px;
}
.meatballs {
background: url("../img/meatballs.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 400px;
left: 770px;
}
.porchetta {
background: url("../img/porchetta.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 325px;
left: 650px;
}
|
css/styles.css
|
html {
cursor: url("../img/pizzaIcon.png"), auto;
}
body {
margin: 0;
padding: 0;
background: url("../img/fireBackground.jpg") no-repeat center fixed;
color: #000;
z-index: -20;
font-family: serif;
}
#pizzaOrder, #output, h1, h3 {
background-color: rgba(225, 225, 225, 0.8);
}
#pizzaOrder {
height: 100%;
}
h1 {
margin: 10px auto;
text-align: center;
width: 600px;
border: 4px solid #24662A;
border-radius: 10px;
}
h3 {
margin: 10px auto;
text-align: center;
width: 200px;
border: 4px solid #EDDFD1;
border-radius: 10px;
}
#pizzaOrder {
margin: 0 0 -3px;
padding-bottom: 0;
border: 4px solid #C72100;
border-radius: 10px;
cursor: default;
}
#output {
display: none;
margin: 0;
padding-top: 0;
border: 4px solid #C72100;
border-radius: 10px;
}
#orderBtn {
border: 1px solid #000;
margin: auto;
width: 75px;
float: right;
position: relative;
top: -250px;
}
li {
list-style: none;
}
.totalCost {
background: rgba(232, 131, 127, 0.8);
border-radius: 3px;
width: 150px;
padding: 3px;
font-size: 16px;
}
/*FOR THE DYNAMIC PIZZA*/
#dynamicPizza {
background: url("../img/pizzaBackgroundClean.png") no-repeat;
height: 350px;
width: 350px;
z-index: -10;
position: fixed;
top: 280px;
left: 560px;
}
.arugula {
background: url("../img/arugula.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 400px;
left: 620px;
}
.spinach {
background: url("../img/spinach.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 380px;
left: 680px;
}
.olives {
background: url("../img/olives.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 450px;
left: 760px;
}
.mushrooms {
background: url("../img/mushroom.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 350px;
left: 740px;
}
.calabrian {
background: url("../img/calabrianChili.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 425px;
left: 725px;
}
.goat {
background: url("../img/goatCheese.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 450px;
left: 625px;
}
.feta {
background: url("../img/feta.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 500px;
left: 650px;
}
.pepperoni {
background: url("../img/pepperoni.png") no-repeat;
height: 50px;
width: 40px;
display: inline-block;
position: fixed;
top: 480px;
left: 720px;
}
.meatballs {
background: url("../img/meatballs.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 400px;
left: 770px;
}
.porchetta {
background: url("../img/porchetta.png") no-repeat;
height: 50px;
width: 50px;
display: inline-block;
position: fixed;
top: 325px;
left: 650px;
}
| 0.270095 | 0.083853 |
*,
*::after,
*::before {
padding: 0;
margin: 0;
-webkit-box-sizing: inherit;
box-sizing: inherit;
outline: none;
}
html {
font-size: 62.5%;
}
body {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow-x: hidden;
position: relative;
}
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
line-height: 1.7;
color: #9e9aa7;
}
.btn:link, .btn:visited {
text-decoration: none;
text-align: center;
font-size: 1.6rem;
display: inline-block;
border-radius: 5rem;
background-color: #2acfcf;
color: #fff;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.btn:hover {
-webkit-transform: translateY(-0.2rem);
transform: translateY(-0.2rem);
-webkit-filter: opacity(0.5);
filter: opacity(0.5);
}
.btn:active {
-webkit-transform: translateY(-0.1rem);
transform: translateY(-0.1rem);
}
.btn--sm {
padding: 0.5rem 2rem;
}
.btn--lg {
padding: 1rem 3.5rem;
}
.btn-sqaure {
width: 20%;
padding: 1rem 2rem;
font-size: 1.6rem;
border-radius: 0.4rem;
border-color: #2acfcf;
background-color: #2acfcf;
color: #fff;
outline: none;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.btn-sqaure {
width: 100%;
}
}
.btn-sqaure:hover {
-webkit-transform: translateY(-0.2rem);
transform: translateY(-0.2rem);
-webkit-filter: opacity(0.8);
filter: opacity(0.8);
}
.btn-sqaure:active {
-webkit-transform: translateY(-0.1rem);
transform: translateY(-0.1rem);
}
.btn-sqaure:disabled {
background-color: #bfbfbf;
border-color: #bfbfbf;
cursor: wait;
}
.btn-mobile {
background: none;
border: none;
display: none;
}
@media screen and (max-width: 768px) {
.btn-mobile {
display: block;
}
}
.card {
background-color: #fff;
font-size: 1.4rem;
width: 32%;
height: 100%;
padding: 6rem 3.5rem 3rem;
border-radius: 0.4rem;
position: relative;
}
@media screen and (max-width: 768px) {
.card {
width: 60%;
}
}
@media screen and (max-width: 475px) {
.card {
width: 100%;
}
}
.card__box-img {
background-color: #3b3054;
width: 7rem;
height: 7rem;
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;
border-radius: 5rem;
position: absolute;
top: -3.5rem;
}
.card__text h3 {
font-size: 1.8rem;
color: #3b3054;
font-weight: 700;
margin-bottom: 1.5rem;
}
.card::before {
content: '';
display: inline-block;
width: 4rem;
height: 0.5rem;
background-color: #2acfcf;
position: absolute;
top: 50%;
right: -4rem;
}
@media screen and (max-width: 768px) {
.card::before {
top: -4rem;
left: 5rem;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
}
@media screen and (max-width: 768px) {
.card--1::before {
display: none;
}
}
.card--2 {
margin-top: 4rem;
}
.card--3 {
margin-top: 8rem;
}
@media screen and (max-width: 768px) {
.card--3 {
margin-top: 4rem;
}
}
.card--3::before {
display: none;
}
@media screen and (max-width: 768px) {
.card--3::before {
display: block;
}
}
.container {
width: 100%;
max-width: 110rem;
margin: 0 auto;
padding: 0 2.5rem;
}
.container--flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 768px) {
.container--flex {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
}
.header {
min-height: 5rem;
padding: 2rem 0;
font-size: 1.6rem;
}
.header__logo {
margin-right: 4rem;
}
.header .navigation {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.header .navigation {
display: none;
}
}
@media screen and (max-width: 768px) {
.header .navigation.active {
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-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
position: absolute;
top: 8rem;
left: 0;
right: 0;
height: 100vh;
background: rgba(0, 0, 0, 0.1);
padding: 2rem;
z-index: 20;
}
.header .navigation.active nav {
width: 100%;
background-color: #3b3054;
padding: 4rem 4rem 2rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
.header .navigation.active .navigation__menu {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 0;
}
.header .navigation.active .navigation__menu-item a:link,
.header .navigation.active .navigation__menu-item a:visited {
color: #fff;
margin-bottom: 2rem;
}
.header .navigation.active .navigation__menu:last-child {
border-bottom: 1px solid #bfbfbf;
}
.header .navigation.active .navigation__buttons {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
border-bottom-left-radius: 0.5rem;
border-bottom-right-radius: 0.5rem;
background-color: #3b3054;
padding: 0 4rem 4rem;
}
.header .navigation.active .navigation__buttons-item:link, .header .navigation.active .navigation__buttons-item:visited {
color: #fff;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation.active .navigation__buttons .btn-xl {
padding: 1rem;
width: 100%;
}
}
.header .navigation__menu {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
}
.header .navigation__menu-item a:link,
.header .navigation__menu-item a:visited {
text-decoration: none;
display: inline-block;
padding: 0.5rem;
color: #9e9aa7;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation__menu-item a:link:hover,
.header .navigation__menu-item a:visited:hover {
color: #3b3054;
}
.header .navigation__buttons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
}
.header .navigation__buttons-item:link, .header .navigation__buttons-item:visited {
text-decoration: none;
display: inline-block;
padding: 0.5rem;
color: #9e9aa7;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation__buttons-item:link:hover, .header .navigation__buttons-item:visited:hover {
color: #3b3054;
}
.footer {
background-color: #232127;
padding: 6rem 0;
}
.footer-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.footer-box {
-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;
gap: 4rem;
}
}
.footer-box__logo {
height: 3.5rem;
}
.footer-box__logo svg path {
fill: #fff;
}
.footer-box__navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 1.4rem;
gap: 6rem;
}
@media screen and (max-width: 475px) {
.footer-box__navigation {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 3rem;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
}
.footer-box__navigation ul {
list-style: none;
color: #fff;
}
@media screen and (max-width: 475px) {
.footer-box__navigation ul li {
text-align: center;
}
}
.footer-box__navigation ul li a {
display: inline-block;
color: #bfbfbf;
text-decoration: none;
padding: 0.5rem;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.footer-box__navigation ul li a:hover {
color: #2acfcf;
}
.footer-box__navigation ul li:first-child {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.footer-box__social-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 2rem;
}
.footer-box__social-link a svg path {
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.footer-box__social-link a:hover svg path {
fill: #2acfcf;
}
.hero {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 1.6rem;
gap: 2rem;
padding: 4rem 2.5rem;
margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
.hero {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: auto;
}
}
.hero__text-box {
max-width: 40%;
padding: 3rem 0;
}
@media screen and (max-width: 768px) {
.hero__text-box {
text-align: center;
max-width: 70%;
padding: 3rem 2rem;
}
}
@media screen and (max-width: 475px) {
.hero__text-box {
max-width: 100%;
}
}
.hero__text-box h1 {
font-size: 5.4rem;
color: #232127;
line-height: 1.2;
margin-bottom: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
.hero__text-box h1 {
font-size: 4rem;
}
}
@media screen and (max-width: 768px) {
.hero__text-box h1 {
font-size: 4rem;
}
}
@media screen and (max-width: 475px) {
.hero__text-box h1 {
font-size: 2.8rem;
}
}
.hero__text-box p {
margin-bottom: 3rem;
}
.hero__box-img {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 4rem 0;
width: 100%;
}
.hero img {
position: relative;
width: 130%;
right: -10%;
}
.section-form {
background-color: #eff0f5;
padding: 2rem;
}
.section-form .container {
padding: 0 0.4rem;
}
.section-form .form-box {
background: #3b3054 url("../images/bg-shorten-desktop.svg") no-repeat center center;
padding: 3.5rem 4rem 2rem;
margin-top: -6.5rem;
margin-bottom: 2rem;
border-radius: 0.4rem;
position: relative;
z-index: 10;
}
@media screen and (max-width: 768px) {
.section-form .form-box {
padding: 3.5rem 2.5rem 2rem;
}
}
.section-form .form-box__group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
margin-bottom: 0.5rem;
position: relative;
}
@media screen and (max-width: 768px) {
.section-form .form-box__group {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1.5rem;
}
}
.section-form .form-box__group input {
width: 85%;
font-size: 1.6rem;
padding: 1rem;
border-radius: 0.4rem;
border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
.section-form .form-box__group input {
width: 100%;
}
}
.section-form .form-box__group input:invalid {
border-color: #f46262;
}
.section-form .form-box__span {
font-size: 1.2rem;
color: red;
}
.section-form .form-box__span--error {
display: none;
}
.section-form .box-link {
background-color: #fff;
border-radius: 0.4rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 1.5rem 2.5rem;
margin-bottom: 2rem;
font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
.section-form .box-link {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1rem;
}
}
.section-form .box-link__item {
width: 60%;
}
@media screen and (max-width: 768px) {
.section-form .box-link__item {
padding: 0.4rem 0;
border-bottom: 2px solid #eff0f5;
width: 100%;
}
}
.section-form .box-link__item a {
color: #3b3054;
text-decoration: none;
font-weight: 500;
}
.section-form .box-link__group {
width: 40%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group {
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1rem;
}
}
.section-form .box-link__group a {
display: inline-block;
margin-right: 2rem;
color: #2acfcf;
text-decoration: none;
font-weight: 500;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group a {
width: 100%;
margin-right: 0;
}
}
.section-form .box-link__group button {
padding: 0.5rem 2rem;
background-color: #2acfcf;
border-color: #2acfcf;
color: #fff;
border-radius: 0.4rem;
font-size: 1.5rem;
cursor: pointer;
outline: none;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group button {
width: 100%;
padding: 1rem 2rem;
}
}
.section-form .box-link__group button:hover {
-webkit-filter: opacity(0.5);
filter: opacity(0.5);
}
.section-form .box-link__group button:focus {
opacity: 1;
background-color: #3b3054;
border-color: #3b3054;
font-weight: 700;
}
.statistics {
background-color: #eff0f5;
padding: 3rem 0 8rem;
}
.statistics-box {
width: 41%;
margin: 0 auto 8rem;
text-align: center;
}
@media screen and (max-width: 768px) {
.statistics-box {
width: 100%;
}
}
.statistics-box__heading {
font-size: 3rem;
color: #232127;
margin-bottom: 1rem;
}
@media screen and (max-width: 475px) {
.statistics-box__heading {
font-size: 2.2rem;
}
}
.statistics-box__paragraph {
font-size: 1.5rem;
}
.statistics .cards-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
gap: 2rem;
}
@media screen and (max-width: 768px) {
.statistics .cards-container {
-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;
}
}
.boost {
background: #3b3054 url("../images/bg-boost-desktop.svg") no-repeat center center;
background-color: #3b3054;
padding: 6rem 0;
}
.boost__box-text {
text-align: center;
}
.boost__box-text h2 {
font-size: 3rem;
color: #fff;
margin-bottom: 3rem;
}
@media screen and (max-width: 475px) {
.boost__box-text h2 {
font-size: 2.2rem;
}
}
.attribution {
font-size: 11px;
text-align: center;
background-color: #232127;
}
.attribution a {
color: #bfbfbf;
}
/*# sourceMappingURL=style.css.map */
|
css/style.css
|
*,
*::after,
*::before {
padding: 0;
margin: 0;
-webkit-box-sizing: inherit;
box-sizing: inherit;
outline: none;
}
html {
font-size: 62.5%;
}
body {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow-x: hidden;
position: relative;
}
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
line-height: 1.7;
color: #9e9aa7;
}
.btn:link, .btn:visited {
text-decoration: none;
text-align: center;
font-size: 1.6rem;
display: inline-block;
border-radius: 5rem;
background-color: #2acfcf;
color: #fff;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.btn:hover {
-webkit-transform: translateY(-0.2rem);
transform: translateY(-0.2rem);
-webkit-filter: opacity(0.5);
filter: opacity(0.5);
}
.btn:active {
-webkit-transform: translateY(-0.1rem);
transform: translateY(-0.1rem);
}
.btn--sm {
padding: 0.5rem 2rem;
}
.btn--lg {
padding: 1rem 3.5rem;
}
.btn-sqaure {
width: 20%;
padding: 1rem 2rem;
font-size: 1.6rem;
border-radius: 0.4rem;
border-color: #2acfcf;
background-color: #2acfcf;
color: #fff;
outline: none;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.btn-sqaure {
width: 100%;
}
}
.btn-sqaure:hover {
-webkit-transform: translateY(-0.2rem);
transform: translateY(-0.2rem);
-webkit-filter: opacity(0.8);
filter: opacity(0.8);
}
.btn-sqaure:active {
-webkit-transform: translateY(-0.1rem);
transform: translateY(-0.1rem);
}
.btn-sqaure:disabled {
background-color: #bfbfbf;
border-color: #bfbfbf;
cursor: wait;
}
.btn-mobile {
background: none;
border: none;
display: none;
}
@media screen and (max-width: 768px) {
.btn-mobile {
display: block;
}
}
.card {
background-color: #fff;
font-size: 1.4rem;
width: 32%;
height: 100%;
padding: 6rem 3.5rem 3rem;
border-radius: 0.4rem;
position: relative;
}
@media screen and (max-width: 768px) {
.card {
width: 60%;
}
}
@media screen and (max-width: 475px) {
.card {
width: 100%;
}
}
.card__box-img {
background-color: #3b3054;
width: 7rem;
height: 7rem;
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;
border-radius: 5rem;
position: absolute;
top: -3.5rem;
}
.card__text h3 {
font-size: 1.8rem;
color: #3b3054;
font-weight: 700;
margin-bottom: 1.5rem;
}
.card::before {
content: '';
display: inline-block;
width: 4rem;
height: 0.5rem;
background-color: #2acfcf;
position: absolute;
top: 50%;
right: -4rem;
}
@media screen and (max-width: 768px) {
.card::before {
top: -4rem;
left: 5rem;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
}
@media screen and (max-width: 768px) {
.card--1::before {
display: none;
}
}
.card--2 {
margin-top: 4rem;
}
.card--3 {
margin-top: 8rem;
}
@media screen and (max-width: 768px) {
.card--3 {
margin-top: 4rem;
}
}
.card--3::before {
display: none;
}
@media screen and (max-width: 768px) {
.card--3::before {
display: block;
}
}
.container {
width: 100%;
max-width: 110rem;
margin: 0 auto;
padding: 0 2.5rem;
}
.container--flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 768px) {
.container--flex {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
}
.header {
min-height: 5rem;
padding: 2rem 0;
font-size: 1.6rem;
}
.header__logo {
margin-right: 4rem;
}
.header .navigation {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.header .navigation {
display: none;
}
}
@media screen and (max-width: 768px) {
.header .navigation.active {
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-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
position: absolute;
top: 8rem;
left: 0;
right: 0;
height: 100vh;
background: rgba(0, 0, 0, 0.1);
padding: 2rem;
z-index: 20;
}
.header .navigation.active nav {
width: 100%;
background-color: #3b3054;
padding: 4rem 4rem 2rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
.header .navigation.active .navigation__menu {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 0;
}
.header .navigation.active .navigation__menu-item a:link,
.header .navigation.active .navigation__menu-item a:visited {
color: #fff;
margin-bottom: 2rem;
}
.header .navigation.active .navigation__menu:last-child {
border-bottom: 1px solid #bfbfbf;
}
.header .navigation.active .navigation__buttons {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
border-bottom-left-radius: 0.5rem;
border-bottom-right-radius: 0.5rem;
background-color: #3b3054;
padding: 0 4rem 4rem;
}
.header .navigation.active .navigation__buttons-item:link, .header .navigation.active .navigation__buttons-item:visited {
color: #fff;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation.active .navigation__buttons .btn-xl {
padding: 1rem;
width: 100%;
}
}
.header .navigation__menu {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
}
.header .navigation__menu-item a:link,
.header .navigation__menu-item a:visited {
text-decoration: none;
display: inline-block;
padding: 0.5rem;
color: #9e9aa7;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation__menu-item a:link:hover,
.header .navigation__menu-item a:visited:hover {
color: #3b3054;
}
.header .navigation__buttons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
}
.header .navigation__buttons-item:link, .header .navigation__buttons-item:visited {
text-decoration: none;
display: inline-block;
padding: 0.5rem;
color: #9e9aa7;
font-weight: 700;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.header .navigation__buttons-item:link:hover, .header .navigation__buttons-item:visited:hover {
color: #3b3054;
}
.footer {
background-color: #232127;
padding: 6rem 0;
}
.footer-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.footer-box {
-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;
gap: 4rem;
}
}
.footer-box__logo {
height: 3.5rem;
}
.footer-box__logo svg path {
fill: #fff;
}
.footer-box__navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 1.4rem;
gap: 6rem;
}
@media screen and (max-width: 475px) {
.footer-box__navigation {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 3rem;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
}
.footer-box__navigation ul {
list-style: none;
color: #fff;
}
@media screen and (max-width: 475px) {
.footer-box__navigation ul li {
text-align: center;
}
}
.footer-box__navigation ul li a {
display: inline-block;
color: #bfbfbf;
text-decoration: none;
padding: 0.5rem;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.footer-box__navigation ul li a:hover {
color: #2acfcf;
}
.footer-box__navigation ul li:first-child {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.footer-box__social-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 2rem;
}
.footer-box__social-link a svg path {
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.footer-box__social-link a:hover svg path {
fill: #2acfcf;
}
.hero {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 1.6rem;
gap: 2rem;
padding: 4rem 2.5rem;
margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
.hero {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: auto;
}
}
.hero__text-box {
max-width: 40%;
padding: 3rem 0;
}
@media screen and (max-width: 768px) {
.hero__text-box {
text-align: center;
max-width: 70%;
padding: 3rem 2rem;
}
}
@media screen and (max-width: 475px) {
.hero__text-box {
max-width: 100%;
}
}
.hero__text-box h1 {
font-size: 5.4rem;
color: #232127;
line-height: 1.2;
margin-bottom: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
.hero__text-box h1 {
font-size: 4rem;
}
}
@media screen and (max-width: 768px) {
.hero__text-box h1 {
font-size: 4rem;
}
}
@media screen and (max-width: 475px) {
.hero__text-box h1 {
font-size: 2.8rem;
}
}
.hero__text-box p {
margin-bottom: 3rem;
}
.hero__box-img {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 4rem 0;
width: 100%;
}
.hero img {
position: relative;
width: 130%;
right: -10%;
}
.section-form {
background-color: #eff0f5;
padding: 2rem;
}
.section-form .container {
padding: 0 0.4rem;
}
.section-form .form-box {
background: #3b3054 url("../images/bg-shorten-desktop.svg") no-repeat center center;
padding: 3.5rem 4rem 2rem;
margin-top: -6.5rem;
margin-bottom: 2rem;
border-radius: 0.4rem;
position: relative;
z-index: 10;
}
@media screen and (max-width: 768px) {
.section-form .form-box {
padding: 3.5rem 2.5rem 2rem;
}
}
.section-form .form-box__group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 2rem;
margin-bottom: 0.5rem;
position: relative;
}
@media screen and (max-width: 768px) {
.section-form .form-box__group {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1.5rem;
}
}
.section-form .form-box__group input {
width: 85%;
font-size: 1.6rem;
padding: 1rem;
border-radius: 0.4rem;
border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
.section-form .form-box__group input {
width: 100%;
}
}
.section-form .form-box__group input:invalid {
border-color: #f46262;
}
.section-form .form-box__span {
font-size: 1.2rem;
color: red;
}
.section-form .form-box__span--error {
display: none;
}
.section-form .box-link {
background-color: #fff;
border-radius: 0.4rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 1.5rem 2.5rem;
margin-bottom: 2rem;
font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
.section-form .box-link {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1rem;
}
}
.section-form .box-link__item {
width: 60%;
}
@media screen and (max-width: 768px) {
.section-form .box-link__item {
padding: 0.4rem 0;
border-bottom: 2px solid #eff0f5;
width: 100%;
}
}
.section-form .box-link__item a {
color: #3b3054;
text-decoration: none;
font-weight: 500;
}
.section-form .box-link__group {
width: 40%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group {
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1rem;
}
}
.section-form .box-link__group a {
display: inline-block;
margin-right: 2rem;
color: #2acfcf;
text-decoration: none;
font-weight: 500;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group a {
width: 100%;
margin-right: 0;
}
}
.section-form .box-link__group button {
padding: 0.5rem 2rem;
background-color: #2acfcf;
border-color: #2acfcf;
color: #fff;
border-radius: 0.4rem;
font-size: 1.5rem;
cursor: pointer;
outline: none;
}
@media screen and (max-width: 768px) {
.section-form .box-link__group button {
width: 100%;
padding: 1rem 2rem;
}
}
.section-form .box-link__group button:hover {
-webkit-filter: opacity(0.5);
filter: opacity(0.5);
}
.section-form .box-link__group button:focus {
opacity: 1;
background-color: #3b3054;
border-color: #3b3054;
font-weight: 700;
}
.statistics {
background-color: #eff0f5;
padding: 3rem 0 8rem;
}
.statistics-box {
width: 41%;
margin: 0 auto 8rem;
text-align: center;
}
@media screen and (max-width: 768px) {
.statistics-box {
width: 100%;
}
}
.statistics-box__heading {
font-size: 3rem;
color: #232127;
margin-bottom: 1rem;
}
@media screen and (max-width: 475px) {
.statistics-box__heading {
font-size: 2.2rem;
}
}
.statistics-box__paragraph {
font-size: 1.5rem;
}
.statistics .cards-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
gap: 2rem;
}
@media screen and (max-width: 768px) {
.statistics .cards-container {
-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;
}
}
.boost {
background: #3b3054 url("../images/bg-boost-desktop.svg") no-repeat center center;
background-color: #3b3054;
padding: 6rem 0;
}
.boost__box-text {
text-align: center;
}
.boost__box-text h2 {
font-size: 3rem;
color: #fff;
margin-bottom: 3rem;
}
@media screen and (max-width: 475px) {
.boost__box-text h2 {
font-size: 2.2rem;
}
}
.attribution {
font-size: 11px;
text-align: center;
background-color: #232127;
}
.attribution a {
color: #bfbfbf;
}
/*# sourceMappingURL=style.css.map */
| 0.449393 | 0.058239 |
.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: 0;
padding: 0;
}
.flexslider .slides > li {
display: none;
-webkit-backface-visibility: hidden;
position: relative;
}
.flexslider .slides img {
width: 100%;
display: block;
}
.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;
}
.flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-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 {
text-decoration:none;
display: block;
width: 37px;
height: 62px;
position: absolute;
top: 50%;
margin-top:29px;
z-index: 10;
overflow: hidden;
opacity: 1;
cursor: pointer;
text-indent: -9999px;
}
.flex-direction-nav .flex-prev {
left: 2%;
background-position: 0 center;
}
.flex-direction-nav .flex-next {
right: 2%;
background-position: right center;
}
.flex-direction-nav .flex-disabled {
opacity: 0!important;
filter:alpha(opacity=0);
cursor: default;
}
.flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: 'f004';
}
.flex-pauseplay a:hover {
opacity: 1;
}
.flex-pauseplay a.flex-play:before {
content: 'f003';
}
.flex-control-nav {
width: 100%;
position: absolute;
z-index: 99;
bottom: 25px;
text-align: center;
}
.flex-control-nav li {
margin: 0 3px;
display: inline-block;
zoom: 1;
*display: inline;
}
.flex-control-paging li a {
width: 33px;
height: 3px;
display: block;
background: #FFF;
cursor: pointer;
text-indent: -9999px;
}
.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
background:#e1531c;
}
.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;
cursor: pointer;
}
.flex-control-thumbs img:hover {
opacity: 1;
}
.flex-control-thumbs .flex-active {
opacity: 1;
cursor: default;
}
.flex-caption {
position: absolute;
top: 40%;
width: 100%;
text-align: center;
}
.flex-caption h3 {
color: #FFF;
font-size: 36px;
width: 80%;
margin: 0 auto;
text-shadow:1px 1px 1px rgba(0,0,0,.4);
font-family: 'museo300';
}
.flex-caption span {
color: #FFF;
font-size: 24px;
width: 50%;
margin: 0 auto;
text-shadow:1px 1px 1px rgba(0,0,0,.4);
font-family: 'museo900';
}
@media (max-width: 480px) {
/* celular vertical*/
.flex-caption {
display: none;
}
}
@media (min-width:481px) and (max-width: 768px) {
/* celular horizontal*/
.flex-caption {
top: 20%;
}
.flex-caption h3 {
font-size: 20px;
}
.flex-caption span {
font-size: 16px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
/*tablet vertical*/
}
@media screen and (max-width: 1199px) {
}
|
public/css/flexslider.css
|
.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: 0;
padding: 0;
}
.flexslider .slides > li {
display: none;
-webkit-backface-visibility: hidden;
position: relative;
}
.flexslider .slides img {
width: 100%;
display: block;
}
.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;
}
.flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-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 {
text-decoration:none;
display: block;
width: 37px;
height: 62px;
position: absolute;
top: 50%;
margin-top:29px;
z-index: 10;
overflow: hidden;
opacity: 1;
cursor: pointer;
text-indent: -9999px;
}
.flex-direction-nav .flex-prev {
left: 2%;
background-position: 0 center;
}
.flex-direction-nav .flex-next {
right: 2%;
background-position: right center;
}
.flex-direction-nav .flex-disabled {
opacity: 0!important;
filter:alpha(opacity=0);
cursor: default;
}
.flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: 'f004';
}
.flex-pauseplay a:hover {
opacity: 1;
}
.flex-pauseplay a.flex-play:before {
content: 'f003';
}
.flex-control-nav {
width: 100%;
position: absolute;
z-index: 99;
bottom: 25px;
text-align: center;
}
.flex-control-nav li {
margin: 0 3px;
display: inline-block;
zoom: 1;
*display: inline;
}
.flex-control-paging li a {
width: 33px;
height: 3px;
display: block;
background: #FFF;
cursor: pointer;
text-indent: -9999px;
}
.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
background:#e1531c;
}
.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;
cursor: pointer;
}
.flex-control-thumbs img:hover {
opacity: 1;
}
.flex-control-thumbs .flex-active {
opacity: 1;
cursor: default;
}
.flex-caption {
position: absolute;
top: 40%;
width: 100%;
text-align: center;
}
.flex-caption h3 {
color: #FFF;
font-size: 36px;
width: 80%;
margin: 0 auto;
text-shadow:1px 1px 1px rgba(0,0,0,.4);
font-family: 'museo300';
}
.flex-caption span {
color: #FFF;
font-size: 24px;
width: 50%;
margin: 0 auto;
text-shadow:1px 1px 1px rgba(0,0,0,.4);
font-family: 'museo900';
}
@media (max-width: 480px) {
/* celular vertical*/
.flex-caption {
display: none;
}
}
@media (min-width:481px) and (max-width: 768px) {
/* celular horizontal*/
.flex-caption {
top: 20%;
}
.flex-caption h3 {
font-size: 20px;
}
.flex-caption span {
font-size: 16px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
/*tablet vertical*/
}
@media screen and (max-width: 1199px) {
}
| 0.362292 | 0.056966 |
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');
body{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
/* DISTANCIA DOS BOTOES DO NAV PARA OS CANTOS */
@media only screen and (min-width: 993px) {
.container{
width: 90%;
}
}
/* NAV TRANSPARENTE */
#navindex{
position: fixed;
background: rgba(0,0,0,0.2);
z-index: 10000;
}
.slider{
z-index: 1;
}
#navindex li a:hover{
background: #26a69a;
}
/* NAV NORMAL */
nav{
position: fixed;
}
/* EFEITO DOS BOTOES DO MENU */
.item{
position: relative;
}
.item:hover:before{
content: '';
position: absolute;
width: 100%;
height: 3px;
top: 10px;
left: 0;
background: white;
animation: animab 2s;
}
@keyframes animab {
0%{
transform: scale(0);
}
50%{
transform: scale(1);
}
}
.item:hover:after{
content: '';
position: absolute;
width: 100%;
height: 3px;
bottom: 10px;
left: 0;
background: white;
animation: animaa 2s;
}
@keyframes animaa {
0%{
transform: scale(0);
}
50%{
transform: scale(1);
}
}
/* SOMBREAMENTO DO TEXTO DO SLIDER */
div ul li div h1{
text-shadow: 0.1em 0.1em 0.2em black;
padding-top: 120px;
font-weight: 800;
color: #fff;
text-transform: uppercase;
font-size: 5rem;
}
/* EFEITO DOS CARTOES SIMPLES */
.cartao h5{
padding: 10px 0px;
}
.cartao{
transition: .5s;
}
.cartao:hover i , h5{
color: #020902;
}
.cartao:hover{
transform: scale(1.13);
background: #fff;
}
.h5services{
font-family: "quicksand";
}
.h5services2{
font-family: "quicksand";
color: rgba(2, 9, 2, 0.51);
font-size: 18px;
}
div div div div div img{
width:167px;
height:144px;
padding:15px;
margin:0 auto 20px;
overflow:hidden;
border:2px solid #DDD
}
div div div div div img:hover{
border:2px solid #73535f;
transition:all 0.5s;
}
/* IMAGEM BACKGROUNG após cards */
#about {
height: 100vh;
background-image: url(../imagens/mesa05.jpg);
background-position: center;
background-size: auto 100%;
background-repeat: no-repeat;
background-blend-mode: lighten;
height: 700px;
}
.caixabranca{
width: 500px;
height: 250px;
}
section div div div h1{
font-family: quicksand_bold;
text-shadow: 0.1em 0.1em 0.2em black;
color: white;
font-size: 46px;
}
section div div div div h4{
font-family: quicksand;
color: rgba(2, 9, 2, 0.64);
font-size: 22px;
}
section div div div div{
padding: 10px;
padding-left: 15px;
padding-right: 15px;
}
.botao1{
width: 160px;
height: 60px;
background: rgba(0,0,0,0.2);
font-family: quicksand_bold;
border: 3px solid #f4ffec;
color: #f4ffec;
}
.botao2{
width: 160px;
height: 60px;
background: rgba(0,0,0,0.2);
font-family: quicksand_bold;
border: 3px solid #f4ffec;
}
.botao1:hover{
background: white;
color: black;
}
.botao2:hover{
background: white;
color: black;
}
.zoom:hover{
transform: scale(1.07);
}
.zoom{
transition: .5s;
}
/* FONTS */
@font-face {
font-family: 'quicksand';
src: url('../fonts/quicksand.woff2') format('woff2'),
url('../fonts/quicksand.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'quicksand_bold';
src: url('../fonts/quicksand_bold.woff2') format('woff2'),
url('../fonts/quicksand_bold.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.quicksandbold{
font-family: quicksand_bold;
}
.quicksand{
font-family: quicksand;
}
/* parallax */
.parallaxtext{
font-family: quicksand_bold;
font-size: 40px;
border-radius: 50px;
width: 500px;
height: 100px;
padding-top: 10px;
right: 50px;
}
.parallaxh1{
font-weight: 800;
color: #fff;
text-transform: uppercase;
font-size: 8rem;
}
.parallaximglarge{
width: 80%;
padding-left: 200px;
}
/* TESTE PARALLAX */
.teste{
top: 200px;
font-size: 40px;
height: 90px;
padding: 10px;
font-weight: 800;
background: rgba(0,0,0,0.2);
text-shadow: 0.1em 0.1em 0.2em black;
}
/* SOCIAL APPS */
.ulsocial{
position: relative;
margin: 0;
padding: 0;
display: flex;
top: 30px;
}
.ulsocial li{
position: relative;
list-style: none;
width: 60px;
height: 60px;
margin: 0 30px;
transform: rotate(-30deg) skew(25deg);
background: #ccc;
}
.ulsocial li span{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
transition: 0.5s;
display: flex !important;
align-items: center;
justify-content: center;
color: #fff;
font-size: 30px !important;
}
.ulsocial li:hover span:nth-child(5){
transform: translate(40px, -40px);
opacity: 1;
}
.ulsocial li:hover span:nth-child(4){
transform: translate(30px, -30px);
opacity: .8;
}
.ulsocial li:hover span:nth-child(3){
transform: translate(20px, -20px);
opacity: .6;
}
.ulsocial li:hover span:nth-child(2){
transform: translate(10px, -10px);
opacity: .4;
}
.ulsocial li:hover span:nth-child(1){
transform: translate(0,0);
opacity: .6;
}
.ulsocial li:nth-child(1) span{
background: #0a8618;
}
.ulsocial li:nth-child(2) span{
background: #3b5999;
}
.ulsocial li:nth-child(3) span{
background: #e4405f;
}
.ulsocial li:nth-child(4) span{
background: #0077b5;
}
/* SOCIAL APPS PAGINA CONTATO */
.ulsocial2{
position: absolute;
left: 50%;
transform: translate(-50%,-50%);
margin: 0;
padding: 0;
display: flex;
}
.ulsocial2 li{
list-style: none;
}
.ulsocial2 li a{
display: block;
position: relative;
width: 70px;
height: 70px;
line-height: 70px;
font-size: 40px;
text-align: center;
text-decoration: none;
color: #262626;
margin: 0 10px;
transition: .5s;
}
.ulsocial2 li a span{
position: absolute;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(1),
.ulsocial2 li a span:nth-child(3){
width: 100%;
height: 2px;
background: #262626;
}
.ulsocial2 li a span:nth-child(1){
top: 0;
left: 0;
transform-origin: right;
}
.ulsocial2 li a:hover span:nth-child(1){
transform: scaleX(0);
transform-origin: left;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(3){
bottom: 0;
left: 0;
transform-origin: left;
}
.ulsocial2 li a:hover span:nth-child(3){
transform: scaleX(0);
transform-origin: right;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(2),
.ulsocial2 li a span:nth-child(4){
width: 2px;
height: 100%;
background: #262626;
}
.ulsocial2 li a span:nth-child(2){
top: 0;
left: 0;
transform: scaleY(0);
transform-origin: bottom;
}
.ulsocial2 li a:hover span:nth-child(2){
transform: scaleY(1);
transform-origin: top;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(4){
top: 0;
right: 0;
transform: scaleY(0);
transform-origin: top;
}
.ulsocial2 li a:hover span:nth-child(4){
transform: scaleY(1);
transform-origin: bottom;
transition: transform .5s;
}
/* Slider2 */
.slider2 {
position: relative;
height: 400px;
width: 100%;
z-index: 1;
}
.slider2.fullscreen {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.slider2.fullscreen ul.slides {
height: 100%;
}
.slider2.fullscreen ul.indicators {
z-index: 2;
bottom: 30px;
}
.slider2 .slides {
background-color: #9e9e9e;
margin: 0;
height: 400px;
}
.slider2 .slides li {
opacity: 0;
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: inherit;
overflow: hidden;
}
.slider2 .slides li img {
height: 100%;
width: 100%;
background-size: cover;
background-position: center;
}
.slider2 .slides li .caption {
color: #fff;
position: absolute;
top: 15%;
left: 15%;
width: 70%;
opacity: 0;
}
.slider2 .slides li .caption p {
color: #e0e0e0;
}
.slider2 .slides li.active {
z-index: 2;
}
.slider2 .indicators {
position: absolute;
text-align: center;
left: 0;
right: 0;
bottom: 0;
margin: 0;
}
.slider2 .indicators .indicator-item {
display: inline-block;
position: relative;
cursor: pointer;
height: 16px;
width: 16px;
margin: 0 12px;
background-color: #e0e0e0;
-webkit-transition: background-color .3s;
transition: background-color .3s;
border-radius: 50%;
}
.slider2 .indicators .indicator-item.active {
background-color: #4CAF50;
}
/* PAGINA DICAS */
.containerdicas{
position: relative;
width: 100%;
}
.containerdicas .sectiondicas{
position: sticky;
top: 0;
width: 100%;
height: 100vh;
background: #000;
}
.containerdicas .sectiondicas:nth-child(1){
background: url("../imagens/dicas_01.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(2){
background: url("../imagens/dicas_02.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(3){
background: url("../imagens/dicas_03.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(4){
background: url("../imagens/dicas_04.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(5){
background: url("../imagens/dicas_05.jpg");
background-size: cover;
}
@media (max-width: 993px){
.slides h1{
font-size: 30px;
}
section div div div h1{
font-size: 26px;
}
.caixabranca{
width: 160px;
height: 380px;
}
section div div div div h4{
font-size: 15px;
}
.parallax-pages{
height: 300px !important;
}
.parallaxh1{
font-size: 4rem;
}
.parallaximg{
width: 99%;
padding-top: 100px;
}
.parallaxtext{
width: 30%;
}
.servicostitulo{
font-size:30px;
}
.imglogo{
padding-top: 10px;
}
.teste{
top: 200px;
font-size: 20px;
height: 100px;
font-weight: 600;
line-height: 1.0;
}
}
|
css/custom.css
|
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');
body{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
/* DISTANCIA DOS BOTOES DO NAV PARA OS CANTOS */
@media only screen and (min-width: 993px) {
.container{
width: 90%;
}
}
/* NAV TRANSPARENTE */
#navindex{
position: fixed;
background: rgba(0,0,0,0.2);
z-index: 10000;
}
.slider{
z-index: 1;
}
#navindex li a:hover{
background: #26a69a;
}
/* NAV NORMAL */
nav{
position: fixed;
}
/* EFEITO DOS BOTOES DO MENU */
.item{
position: relative;
}
.item:hover:before{
content: '';
position: absolute;
width: 100%;
height: 3px;
top: 10px;
left: 0;
background: white;
animation: animab 2s;
}
@keyframes animab {
0%{
transform: scale(0);
}
50%{
transform: scale(1);
}
}
.item:hover:after{
content: '';
position: absolute;
width: 100%;
height: 3px;
bottom: 10px;
left: 0;
background: white;
animation: animaa 2s;
}
@keyframes animaa {
0%{
transform: scale(0);
}
50%{
transform: scale(1);
}
}
/* SOMBREAMENTO DO TEXTO DO SLIDER */
div ul li div h1{
text-shadow: 0.1em 0.1em 0.2em black;
padding-top: 120px;
font-weight: 800;
color: #fff;
text-transform: uppercase;
font-size: 5rem;
}
/* EFEITO DOS CARTOES SIMPLES */
.cartao h5{
padding: 10px 0px;
}
.cartao{
transition: .5s;
}
.cartao:hover i , h5{
color: #020902;
}
.cartao:hover{
transform: scale(1.13);
background: #fff;
}
.h5services{
font-family: "quicksand";
}
.h5services2{
font-family: "quicksand";
color: rgba(2, 9, 2, 0.51);
font-size: 18px;
}
div div div div div img{
width:167px;
height:144px;
padding:15px;
margin:0 auto 20px;
overflow:hidden;
border:2px solid #DDD
}
div div div div div img:hover{
border:2px solid #73535f;
transition:all 0.5s;
}
/* IMAGEM BACKGROUNG após cards */
#about {
height: 100vh;
background-image: url(../imagens/mesa05.jpg);
background-position: center;
background-size: auto 100%;
background-repeat: no-repeat;
background-blend-mode: lighten;
height: 700px;
}
.caixabranca{
width: 500px;
height: 250px;
}
section div div div h1{
font-family: quicksand_bold;
text-shadow: 0.1em 0.1em 0.2em black;
color: white;
font-size: 46px;
}
section div div div div h4{
font-family: quicksand;
color: rgba(2, 9, 2, 0.64);
font-size: 22px;
}
section div div div div{
padding: 10px;
padding-left: 15px;
padding-right: 15px;
}
.botao1{
width: 160px;
height: 60px;
background: rgba(0,0,0,0.2);
font-family: quicksand_bold;
border: 3px solid #f4ffec;
color: #f4ffec;
}
.botao2{
width: 160px;
height: 60px;
background: rgba(0,0,0,0.2);
font-family: quicksand_bold;
border: 3px solid #f4ffec;
}
.botao1:hover{
background: white;
color: black;
}
.botao2:hover{
background: white;
color: black;
}
.zoom:hover{
transform: scale(1.07);
}
.zoom{
transition: .5s;
}
/* FONTS */
@font-face {
font-family: 'quicksand';
src: url('../fonts/quicksand.woff2') format('woff2'),
url('../fonts/quicksand.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'quicksand_bold';
src: url('../fonts/quicksand_bold.woff2') format('woff2'),
url('../fonts/quicksand_bold.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.quicksandbold{
font-family: quicksand_bold;
}
.quicksand{
font-family: quicksand;
}
/* parallax */
.parallaxtext{
font-family: quicksand_bold;
font-size: 40px;
border-radius: 50px;
width: 500px;
height: 100px;
padding-top: 10px;
right: 50px;
}
.parallaxh1{
font-weight: 800;
color: #fff;
text-transform: uppercase;
font-size: 8rem;
}
.parallaximglarge{
width: 80%;
padding-left: 200px;
}
/* TESTE PARALLAX */
.teste{
top: 200px;
font-size: 40px;
height: 90px;
padding: 10px;
font-weight: 800;
background: rgba(0,0,0,0.2);
text-shadow: 0.1em 0.1em 0.2em black;
}
/* SOCIAL APPS */
.ulsocial{
position: relative;
margin: 0;
padding: 0;
display: flex;
top: 30px;
}
.ulsocial li{
position: relative;
list-style: none;
width: 60px;
height: 60px;
margin: 0 30px;
transform: rotate(-30deg) skew(25deg);
background: #ccc;
}
.ulsocial li span{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
transition: 0.5s;
display: flex !important;
align-items: center;
justify-content: center;
color: #fff;
font-size: 30px !important;
}
.ulsocial li:hover span:nth-child(5){
transform: translate(40px, -40px);
opacity: 1;
}
.ulsocial li:hover span:nth-child(4){
transform: translate(30px, -30px);
opacity: .8;
}
.ulsocial li:hover span:nth-child(3){
transform: translate(20px, -20px);
opacity: .6;
}
.ulsocial li:hover span:nth-child(2){
transform: translate(10px, -10px);
opacity: .4;
}
.ulsocial li:hover span:nth-child(1){
transform: translate(0,0);
opacity: .6;
}
.ulsocial li:nth-child(1) span{
background: #0a8618;
}
.ulsocial li:nth-child(2) span{
background: #3b5999;
}
.ulsocial li:nth-child(3) span{
background: #e4405f;
}
.ulsocial li:nth-child(4) span{
background: #0077b5;
}
/* SOCIAL APPS PAGINA CONTATO */
.ulsocial2{
position: absolute;
left: 50%;
transform: translate(-50%,-50%);
margin: 0;
padding: 0;
display: flex;
}
.ulsocial2 li{
list-style: none;
}
.ulsocial2 li a{
display: block;
position: relative;
width: 70px;
height: 70px;
line-height: 70px;
font-size: 40px;
text-align: center;
text-decoration: none;
color: #262626;
margin: 0 10px;
transition: .5s;
}
.ulsocial2 li a span{
position: absolute;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(1),
.ulsocial2 li a span:nth-child(3){
width: 100%;
height: 2px;
background: #262626;
}
.ulsocial2 li a span:nth-child(1){
top: 0;
left: 0;
transform-origin: right;
}
.ulsocial2 li a:hover span:nth-child(1){
transform: scaleX(0);
transform-origin: left;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(3){
bottom: 0;
left: 0;
transform-origin: left;
}
.ulsocial2 li a:hover span:nth-child(3){
transform: scaleX(0);
transform-origin: right;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(2),
.ulsocial2 li a span:nth-child(4){
width: 2px;
height: 100%;
background: #262626;
}
.ulsocial2 li a span:nth-child(2){
top: 0;
left: 0;
transform: scaleY(0);
transform-origin: bottom;
}
.ulsocial2 li a:hover span:nth-child(2){
transform: scaleY(1);
transform-origin: top;
transition: transform .5s;
}
.ulsocial2 li a span:nth-child(4){
top: 0;
right: 0;
transform: scaleY(0);
transform-origin: top;
}
.ulsocial2 li a:hover span:nth-child(4){
transform: scaleY(1);
transform-origin: bottom;
transition: transform .5s;
}
/* Slider2 */
.slider2 {
position: relative;
height: 400px;
width: 100%;
z-index: 1;
}
.slider2.fullscreen {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.slider2.fullscreen ul.slides {
height: 100%;
}
.slider2.fullscreen ul.indicators {
z-index: 2;
bottom: 30px;
}
.slider2 .slides {
background-color: #9e9e9e;
margin: 0;
height: 400px;
}
.slider2 .slides li {
opacity: 0;
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: inherit;
overflow: hidden;
}
.slider2 .slides li img {
height: 100%;
width: 100%;
background-size: cover;
background-position: center;
}
.slider2 .slides li .caption {
color: #fff;
position: absolute;
top: 15%;
left: 15%;
width: 70%;
opacity: 0;
}
.slider2 .slides li .caption p {
color: #e0e0e0;
}
.slider2 .slides li.active {
z-index: 2;
}
.slider2 .indicators {
position: absolute;
text-align: center;
left: 0;
right: 0;
bottom: 0;
margin: 0;
}
.slider2 .indicators .indicator-item {
display: inline-block;
position: relative;
cursor: pointer;
height: 16px;
width: 16px;
margin: 0 12px;
background-color: #e0e0e0;
-webkit-transition: background-color .3s;
transition: background-color .3s;
border-radius: 50%;
}
.slider2 .indicators .indicator-item.active {
background-color: #4CAF50;
}
/* PAGINA DICAS */
.containerdicas{
position: relative;
width: 100%;
}
.containerdicas .sectiondicas{
position: sticky;
top: 0;
width: 100%;
height: 100vh;
background: #000;
}
.containerdicas .sectiondicas:nth-child(1){
background: url("../imagens/dicas_01.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(2){
background: url("../imagens/dicas_02.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(3){
background: url("../imagens/dicas_03.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(4){
background: url("../imagens/dicas_04.jpg");
background-size: cover;
}
.containerdicas .sectiondicas:nth-child(5){
background: url("../imagens/dicas_05.jpg");
background-size: cover;
}
@media (max-width: 993px){
.slides h1{
font-size: 30px;
}
section div div div h1{
font-size: 26px;
}
.caixabranca{
width: 160px;
height: 380px;
}
section div div div div h4{
font-size: 15px;
}
.parallax-pages{
height: 300px !important;
}
.parallaxh1{
font-size: 4rem;
}
.parallaximg{
width: 99%;
padding-top: 100px;
}
.parallaxtext{
width: 30%;
}
.servicostitulo{
font-size:30px;
}
.imglogo{
padding-top: 10px;
}
.teste{
top: 200px;
font-size: 20px;
height: 100px;
font-weight: 600;
line-height: 1.0;
}
}
| 0.286568 | 0.086246 |
.title-l{
font-size: 6em;
}
.title-m{
font-size: 2.4em;
}
.text-wrapper {
text-align: center;
}
.animated-words {
display: flex;
justify-content: center;
}
.animated-words span:nth-child(2) {
-webkit-animation-delay: 2s;
-ms-animation-delay: 2s;
animation-delay: 2s;
color: #ffffff;
}
.animated-words span:nth-child(3) {
-webkit-animation-delay: 4s;
-ms-animation-delay: 4s;
animation-delay: 4s;
color: #ffffff;
}
.animated-words span:nth-child(4) {
-webkit-animation-delay: 6s;
-ms-animation-delay: 6s;
animation-delay: 6s;
color: #ffffff;
}
.animated-words span:nth-child(5) {
-webkit-animation-delay: 8s;
-ms-animation-delay: 8s;
animation-delay: 8s;
color: #ffffff;
}
.animated-words span {
position: absolute;
opacity: 0;
overflow: hidden;
color: #ffffff;
-webkit-animation: animateWord 10s linear infinite 0s;
-ms-animation: animateWord 10s linear infinite 0s;
animation: animateWord 10s linear infinite 0s;
}
@keyframes animateWord {
0% { opacity: 0; }
2% { opacity: 0; -webkit-transform: translateY(30px); }
5% { opacity: 1; -webkit-transform: translateY(0px);}
17% { opacity: 1; -webkit-transform: translateY(0px); }
20% { opacity: 0; -webkit-transform: translateY(-30px); }
80% { opacity: 0; }
100% { opacity: 0; }
}
.t-anim{
width: 100%;
}
.h-anim {
height: 2.4em;
}
@media only screen{
.h-anim {
height: 3.5em;
}
}
@media only screen and (max-width: 510px) {
.h-anim {
height: 3.2em;
}
}
.nav-col {
/*below is purple*/
/*color: #1b39a8;*/
color:#ffc30f;
font-size: 1.1em;
font-family: arial;
}
.burger-col{
color: #000000;
border: 10px;
}
.is-active{
font-weight: bold;
/* bad practice BUT IT WORKS */
color:#ffc30f !important;
}
.hero-bg {
/* background-color: rgba(27, 57, 168, 0.4); */
background-color: rgba(0, 0, 0, 0.4);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 50% 22%;
}
.hero-img {
background-image: url('../../assets/profile.png');
background-size: contain;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 50% 10%;
}
.hero.is-info {
/* color: #ffc30f; */
color: #000000;
}
.header-radius {
border-radius: 0% 0% 15% 15%;
}
.top-margin-navbar {
margin-top: 15px;
size: 2em;
}
|
src/components/Navbar/Navbar.css
|
.title-l{
font-size: 6em;
}
.title-m{
font-size: 2.4em;
}
.text-wrapper {
text-align: center;
}
.animated-words {
display: flex;
justify-content: center;
}
.animated-words span:nth-child(2) {
-webkit-animation-delay: 2s;
-ms-animation-delay: 2s;
animation-delay: 2s;
color: #ffffff;
}
.animated-words span:nth-child(3) {
-webkit-animation-delay: 4s;
-ms-animation-delay: 4s;
animation-delay: 4s;
color: #ffffff;
}
.animated-words span:nth-child(4) {
-webkit-animation-delay: 6s;
-ms-animation-delay: 6s;
animation-delay: 6s;
color: #ffffff;
}
.animated-words span:nth-child(5) {
-webkit-animation-delay: 8s;
-ms-animation-delay: 8s;
animation-delay: 8s;
color: #ffffff;
}
.animated-words span {
position: absolute;
opacity: 0;
overflow: hidden;
color: #ffffff;
-webkit-animation: animateWord 10s linear infinite 0s;
-ms-animation: animateWord 10s linear infinite 0s;
animation: animateWord 10s linear infinite 0s;
}
@keyframes animateWord {
0% { opacity: 0; }
2% { opacity: 0; -webkit-transform: translateY(30px); }
5% { opacity: 1; -webkit-transform: translateY(0px);}
17% { opacity: 1; -webkit-transform: translateY(0px); }
20% { opacity: 0; -webkit-transform: translateY(-30px); }
80% { opacity: 0; }
100% { opacity: 0; }
}
.t-anim{
width: 100%;
}
.h-anim {
height: 2.4em;
}
@media only screen{
.h-anim {
height: 3.5em;
}
}
@media only screen and (max-width: 510px) {
.h-anim {
height: 3.2em;
}
}
.nav-col {
/*below is purple*/
/*color: #1b39a8;*/
color:#ffc30f;
font-size: 1.1em;
font-family: arial;
}
.burger-col{
color: #000000;
border: 10px;
}
.is-active{
font-weight: bold;
/* bad practice BUT IT WORKS */
color:#ffc30f !important;
}
.hero-bg {
/* background-color: rgba(27, 57, 168, 0.4); */
background-color: rgba(0, 0, 0, 0.4);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 50% 22%;
}
.hero-img {
background-image: url('../../assets/profile.png');
background-size: contain;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 50% 10%;
}
.hero.is-info {
/* color: #ffc30f; */
color: #000000;
}
.header-radius {
border-radius: 0% 0% 15% 15%;
}
.top-margin-navbar {
margin-top: 15px;
size: 2em;
}
| 0.434941 | 0.124665 |
body {
margin: 0 auto;
width: 100%;
font-family: "Source Sans Pro", sans-serif;
background: #21232E;
}
.landing-logo, .footer .footer-wrap .footer_logo {
color: #fff;
padding: 5% 0;
}
.landing-logo img, .footer .footer-wrap .footer_logo img {
float: left;
}
.landing-logo p, .footer .footer-wrap .footer_logo p {
font-weight: bold;
margin: 3px 10px;
padding: 0 50px;
font-size: 20px;
}
.landing-logo p span, .footer .footer-wrap .footer_logo p span {
display: block;
font-size: 10px;
margin-left: 5px;
}
.header {
height: 100vh;
background-image: url(../img/m-h-night.jpg);
background-size: 100% 100%;
-webkit-clip-path: inset(0% 0 0% 0 round 0 0% 35% 0%);
}
.header .header-wrap {
width: 50%;
margin: 0 auto 0 10%;
}
.header .header_heading {
width: 50%;
font-size: 50px;
font-weight: bold;
}
.header .header_heading:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 210px;
height: 20px;
top: 260px;
}
.header .header_text {
white-space: pre-line;
font-family: 'Hind', sans-serif;
color: #fff;
}
.header .header_button {
background: #E3AC00;
color: white;
padding: 10px 30px;
border: none;
margin-top: 30px;
border-radius: 10%;
font-weight: bold;
}
.section {
width: 80%;
margin: 0 auto;
}
.section .section_text {
text-align: center;
font-size: 30px;
font-weight: bold;
}
.section .section_text:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 135px;
height: 10px;
top: 710px;
left: 680px;
}
.section .section_card_wrap {
display: inline-block;
padding-bottom: 100px;
}
.section .section_card_wrap .section_card {
width: 30%;
float: left;
background: #3B3F50;
color: white;
margin-left: 20px;
text-align: center;
padding: 5px;
border-radius: 3%;
}
.section .section_card_wrap .section_card img {
width: 90%;
height: auto;
padding: 15px;
}
.section .section_card_wrap .section_card_text {
padding: 5px;
font-family: "Source Sans Pro", sans-serif;
color: #a0a0a0;
}
.section .section_card_wrap .section_card_heading {
font-size: 20px;
margin: 5px;
z-index: 9;
position: relative;
font-weight: bold;
}
.section .section_card_wrap .section_card_heading .section_card_underline {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 150px;
height: 10px;
top: 15px;
left: 80px;
z-index: -1;
}
.section .section_banner {
width: 70%;
margin: 0 auto;
height: 150px;
background: linear-gradient(45deg, #E1A902, #942E51);
position: relative;
top: 60px;
border-radius: 3%;
}
.section .section_banner .section_banner_text_wrap {
width: 65%;
float: left;
padding: 2% 0 0 10%;
}
.section .section_banner .section_banner_text {
color: #a0a0a0;
}
.section .section_banner .section_banner_heading {
margin-top: 5px;
font-size: 30px;
font-weight: bold;
z-index: 1;
position: relative;
color: #fff;
}
.section .section_banner .section_banner_heading:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 65px;
height: 15px;
top: 20px;
left: 120px;
}
.section .section_banner .section_banner_button {
background: #E3AC00;
color: white;
padding: 10px 40px;
border: none;
margin-top: 50px;
border-radius: 5%;
font-weight: bold;
}
.footer {
background: #3B3F50;
font-family: "Source Sans Pro", sans-serif;
color: #a0a0a0;
height: 200px;
}
.footer .footer-wrap {
width: 80%;
margin: 0 auto;
padding-top: 50px;
}
.footer .footer-wrap .footer_logo {
width: 20%;
float: left;
padding-top: 40px;
color: #a0a0a0;
}
.footer .footer-wrap .footer_text {
float: left;
width: 30%;
padding-top: 20px;
padding-left: 10%;
}
.footer .footer-wrap .footer-cr {
float: left;
width: 20%;
padding-top: 45px;
padding-left: 15%;
}
/*# sourceMappingURL=style2.css.map */
|
simple-site-9/scss/style2.css
|
body {
margin: 0 auto;
width: 100%;
font-family: "Source Sans Pro", sans-serif;
background: #21232E;
}
.landing-logo, .footer .footer-wrap .footer_logo {
color: #fff;
padding: 5% 0;
}
.landing-logo img, .footer .footer-wrap .footer_logo img {
float: left;
}
.landing-logo p, .footer .footer-wrap .footer_logo p {
font-weight: bold;
margin: 3px 10px;
padding: 0 50px;
font-size: 20px;
}
.landing-logo p span, .footer .footer-wrap .footer_logo p span {
display: block;
font-size: 10px;
margin-left: 5px;
}
.header {
height: 100vh;
background-image: url(../img/m-h-night.jpg);
background-size: 100% 100%;
-webkit-clip-path: inset(0% 0 0% 0 round 0 0% 35% 0%);
}
.header .header-wrap {
width: 50%;
margin: 0 auto 0 10%;
}
.header .header_heading {
width: 50%;
font-size: 50px;
font-weight: bold;
}
.header .header_heading:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 210px;
height: 20px;
top: 260px;
}
.header .header_text {
white-space: pre-line;
font-family: 'Hind', sans-serif;
color: #fff;
}
.header .header_button {
background: #E3AC00;
color: white;
padding: 10px 30px;
border: none;
margin-top: 30px;
border-radius: 10%;
font-weight: bold;
}
.section {
width: 80%;
margin: 0 auto;
}
.section .section_text {
text-align: center;
font-size: 30px;
font-weight: bold;
}
.section .section_text:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 135px;
height: 10px;
top: 710px;
left: 680px;
}
.section .section_card_wrap {
display: inline-block;
padding-bottom: 100px;
}
.section .section_card_wrap .section_card {
width: 30%;
float: left;
background: #3B3F50;
color: white;
margin-left: 20px;
text-align: center;
padding: 5px;
border-radius: 3%;
}
.section .section_card_wrap .section_card img {
width: 90%;
height: auto;
padding: 15px;
}
.section .section_card_wrap .section_card_text {
padding: 5px;
font-family: "Source Sans Pro", sans-serif;
color: #a0a0a0;
}
.section .section_card_wrap .section_card_heading {
font-size: 20px;
margin: 5px;
z-index: 9;
position: relative;
font-weight: bold;
}
.section .section_card_wrap .section_card_heading .section_card_underline {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 150px;
height: 10px;
top: 15px;
left: 80px;
z-index: -1;
}
.section .section_banner {
width: 70%;
margin: 0 auto;
height: 150px;
background: linear-gradient(45deg, #E1A902, #942E51);
position: relative;
top: 60px;
border-radius: 3%;
}
.section .section_banner .section_banner_text_wrap {
width: 65%;
float: left;
padding: 2% 0 0 10%;
}
.section .section_banner .section_banner_text {
color: #a0a0a0;
}
.section .section_banner .section_banner_heading {
margin-top: 5px;
font-size: 30px;
font-weight: bold;
z-index: 1;
position: relative;
color: #fff;
}
.section .section_banner .section_banner_heading:after {
content: "";
display: block;
position: absolute;
background-color: #FF4E33;
z-index: -1;
width: 65px;
height: 15px;
top: 20px;
left: 120px;
}
.section .section_banner .section_banner_button {
background: #E3AC00;
color: white;
padding: 10px 40px;
border: none;
margin-top: 50px;
border-radius: 5%;
font-weight: bold;
}
.footer {
background: #3B3F50;
font-family: "Source Sans Pro", sans-serif;
color: #a0a0a0;
height: 200px;
}
.footer .footer-wrap {
width: 80%;
margin: 0 auto;
padding-top: 50px;
}
.footer .footer-wrap .footer_logo {
width: 20%;
float: left;
padding-top: 40px;
color: #a0a0a0;
}
.footer .footer-wrap .footer_text {
float: left;
width: 30%;
padding-top: 20px;
padding-left: 10%;
}
.footer .footer-wrap .footer-cr {
float: left;
width: 20%;
padding-top: 45px;
padding-left: 15%;
}
/*# sourceMappingURL=style2.css.map */
| 0.400398 | 0.07579 |
@charset "utf-8";
.layerpopup { z-index:9999999 }
.layerpopup .modal-content { background:none; border:none; width:400px; margin:0 auto; padding:0 !important; }
.layerpopup .modal-content > div { position:relative; margin:0 !important; min-height:185px; padding:0 0 30px 0 !important; background-color:#fff; border-radius:10px; text-align:center; }
.layerpopup .modal-content .txt { padding:45px 0 0 0; font-size:20px; color:#5e636c; font-weight:300; line-height:26px; }
.layerpopup .modal-content .btnbox { margin:30px 0 0 0; }
.layerpopup .modal-content .btnbox button { margin:0 0 0 2px; display:inline-block; vertical-align:middle; cursor:pointer; width:145px; padding:12px 0; line-height:18px; border:none; font-size:18px; font-weight:300; color:#fff; outline:none; border-radius:5px; background-color:#06a9b7; }
.layerpopup .modal-content .btnbox button.btn_cancel { background-color:#999ea7; }
@media screen and (max-width:480px){
.layerpopup .modal-content { width:300px; }
.layerpopup .modal-content > div { min-height:170px; }
.layerpopup .modal-content .txt { padding:40px 0 0 0; font-size:18px; }
.layerpopup. modal-content .btnbox { margin:25px 0 0 0; }
.layerpopup .modal-content .btnbox button { width:115px; padding:10px 0; line-height:16px;font-size:16px; }
}
@media screen and (max-width:320px){
.layerpopup .modal-content { width:260px; }
.layerpopup .modal-content > div { min-height:160px; }
.layerpopup .modal-content .btnbox button { width:110px; }
}
.titlebox { position:relative; }
.titlebox .tit { color:#5e636c; font-size:30px; line-height:30px; font-weight:200; }
.titlebox .tit strong { font-weight:400; font-size:40px; line-height:40px; }
.titlebox .tit img { vertical-align:top; margin:4px 28px 0 0; }
.titlebox .location { position:absolute; bottom:0; right:0; font-weight:300; color:#5e636c; font-size:14px; line-height:15px; padding:0 0 0 23px; background:url(../img/common/icon_home.png) left 2px no-repeat;}
.titlebox .location span { font-weight:200; display:inline-block; margin:0 10px; }
.titlebox .location strong { font-weight:400; }
.dashboard { margin:33px 0 0 0; }
.dashboard:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .d_box { float:left; min-height:260px; margin:0 0 0 2.5%; background-color:#fff; border-radius:8px; box-shadow:5px 5px 8px 0 #d7dcde,0 -5px 8px 0 #d7dcde; }
.dashboard .d_box.box_1 { width:38%; margin:0; }
.dashboard .d_box.box_1.box_1m { width:52.5%; }
.dashboard .d_box.box_2 { width:12%; }
.dashboard .d_box.box_3 { width:45%; }
.dashboard .d_box.box_3.box_2m { width:45%; }
.dashboard .d_box.box_m1 { width:26.5%; margin:0; }
.dashboard .d_box.box_m1.box_1m { width:29.8%; }
.dashboard .d_box.box_m2 { width:26.5%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m2.box_2m { width:29.8%; }
.dashboard .d_box.box_m3 { width:6%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4 { width:39.2%; margin:0 0 0 0.6%; }
.dashboard .titbox { position:relative; height:59px; border-bottom:1px solid #e7ebee; margin:0 0 20px 0; }
.dashboard .titbox .tit { position:absolute; left:44px; top:50%; transform:translateY(-50%); color:#5e636c;font-size:16px; line-height:16px; font-weight:200; }
.dashboard .d_box.box_2 .tit { left:40px; }
.dashboard .d_box.box_m .titbox .tit { left:32px; }
.dashboard .d_box.box_m3 .titbox .tit { left:22px; }
.dashboard .titbox .tit span { font-weight:200; display:inline-block; margin:0 6px; }
.dashboard .titbox .tit span.stxt { font-weight:400; color:#06a9b7; font-size:18px; }
.dashboard .titbox .tit strong {font-weight:400; font-size:22px; line-height:22px; text-transform:uppercase; }
.dashboard .titbox .tit strong.stit { text-transform:capitalize;}
.dashboard .titbox .tit.initial strong { text-transform:capitalize; }
.dashboard .titbox .txt_ip { text-align:center; color:#5e636c; font-size:16px; font-weight:300; letter-spacing:1px; padding:25px 0 0 0; margin:0 0 0 8%; }
.dashboard .titbox .state { position:absolute; top:50%; right:29px; transform:translateY(-50%); width:13px; height:13px; border-radius:15px; }
.dashboard .d_box.box_m .titbox .state { right:20px; }
.dashboard .titbox .state.color_b { background: radial-gradient( #26c6d4, #0d8f9b, #06a9b7 ); }
.dashboard .titbox .state.color_y { background: radial-gradient( #fce697, #c09703, #ffc800 ); }
.dashboard .titbox .state.color_r { background: radial-gradient( #ff779d, #b00f3b, #fc1656 ); }
.dashboard .titbox .state.color_g { background: radial-gradient( #8598b9, #454a54, #5e636c ); }
.dashboard .box_cont { padding:0 0 20px 0; }
.dashboard .box_cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 60px; display:inline-block; color:#888; font-size:22px; line-height:22px; font-weight:300; letter-spacing:-1px; vertical-align:top; }
.dashboard .d_box.box_m .lbox { padding:42px 0 0 18px; }
.dashboard .box_cont .lbox strong { display:inline-block; margin:0 6px 0 0; color:#5e636c; font-size:70px; line-height:70px; font-weight:400; letter-spacing:-1px; }
.dashboard .box_cont .lbox strong.txt_3n { font-size:55px; line-height:75px; }
.dashboard .box_cont .lbox span { display:inline-block; margin:0 4px; font-weight:100; }
.dashboard .box_cont .rbox { float:right; padding:16px 55px 0 0; display:inline-block; vertical-align:top; }
.dashboard .d_box.box_m .rbox { padding:16px 20px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:76px; height:106px; border-radius:10px; display:inline-block; margin:0 0 0 10px; text-align:center;}
.dashboard .box_cont .rbox .numbox .num:first-child { margin:0; }
.dashboard .box_cont .rbox .numbox .num.boxrd { border-radius:40px; }
.dashboard .d_box.box_m .rbox .numbox .num { margin:0 0 0 1px; }
.dashboard .box_cont .rbox .numbox .num span { color:#fff; font-size:60px; line-height:60px; font-weight:400; display:inline-block; padding:36px 0 0 0; letter-spacing:-1px; }
.dashboard .box_cont .rbox .numbox .num span.txt_3n { font-size:40px; line-height:75px; }
.dashboard .box_cont .rbox .txt { margin:8px 0 0 0; text-align:right; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard .box_cont .cbox { float:left; width:calc(100% - 190px); margin:0 0 0 40px; vertical-align:top; }
.dashboard .box_cont .cbox .sc_box { height:128px; }
.dashboard .box_cont .cbox .tcbox { padding:0 0 8px 0 !important; }
.dashboard .d_box.box_m .cbox { width:calc(100% - 140px); margin:0 0 0 30px; }
.dashboard .box_cont .cbox ul { padding:0; }
.dashboard .box_cont .cbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .box_cont .cbox li { float:left; margin:0 15px 8px 0; width:88px; height:56px; text-align:center; color:#fff;font-size:16px; line-height:16px; font-weight:400; }
.dashboard .box_cont .cbox li span { padding:28px 0 0 0; color:#fff;font-size:16px; line-height:16px; font-weight:400; display:inline-block; }
.dashboard .box_cont .cbox li a { display:block; }
.dashboard .box_cont .cbox li.bg_b { background:url(../img/common/bg_db_1.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_y { background:url(../img/common/bg_db_2.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_r { background:url(../img/common/bg_db_3.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_g { background:url(../img/common/bg_db_4.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_n { background:url(../img/common/bg_db_n.png) center center no-repeat; }
.dashboard .box_cont .cbox .txt { text-align:right; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard .num_txt { text-align:center; padding:53px 0 0 0; color:#5e636c;font-size:70px; line-height:70px; font-weight:400; }
.dashboard.dashboard_cont { margin:2.5% 0 0 0; }
.dashboard.dashboard_cont .d_box.box_b1 { width:62%; margin:0; min-height:440px; }
.dashboard.dashboard_cont .d_box.box_b2 { width:35.5%; min-height:440px; }
.dashboard.dashboard_cont .d_box.box_w100 { width:100%; margin:0; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 44px 2.5% 44px; text-align:center; }
.dashboard.dashboard_cont .d_box.box_b2 .map { border-radius:10px; background-color:#e7ebee; }
.dashboard.dashboard_cont .d_box.box_b2 .map img { max-width:400px; width:100%; }
.dashboard.dashboard_cont .top_info { position:absolute; top:50%; right:29px; transform:translateY(-50%); z-index:99; }
.dashboard.dashboard_cont .top_info > ul > li { position:relative; display:inline-block; margin:0 0 0 67px; color:#5e636c;font-size:14px; line-height:14px; font-weight:300; }
.dashboard.dashboard_cont .top_info > ul > li:before { content:''; display:block; width:8px; height:7px; background:url(../img/contents/icon_down.png) center center no-repeat; position:absolute; right:-14px; top:3px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:0 0 0 39px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child:before { background:none; }
.dashboard.dashboard_cont .top_info > ul > li a {color:#5e636c;font-size:14px; line-height:14px; }
.dashboard.dashboard_cont .top_info > ul > li img { vertical-align:middle; }
.dashboard.dashboard_cont .top_info > ul > li .infobox { display:none; position:absolute; left:50%; top:23px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
/*.dashboard.dashboard_cont .top_info > ul > li .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom: 7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }*/
.dashboard.dashboard_cont .top_info > ul > li .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; background:none; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box p { margin:0 0 5px 0; color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li { margin:8px 0 2px 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li:first-child { margin:0; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > strong { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul { padding:0 0 0 12px; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul > li { margin:8px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .ds_cont { padding:0 43px 2.5% 43px; margin-left:-13px; }
.dashboard.dashboard_cont .ds_cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .s_list {}
.dashboard.dashboard_cont .ds_cont .s_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .stitle { width:100%; clear:both; float:none; margin:1% 0 1% 13px; padding:25px 0 0 27px; font-size:16px; line-height:16px; color:#888; letter-spacing:-0.5px; font-weight:400; background:url(../img/contents/icon_file.png) left 25px no-repeat; }
.dashboard.dashboard_cont .ds_cont .stitle:first-child { padding:0 0 0 27px; background-position:left top; }
.dashboard.dashboard_cont .ds_cont .stitle span { margin:0 10px; display:inline-block; font-size:18px; line-height:18px; color:#dedede; letter-spacing:-1px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .stitle strong { font-size:18px; line-height:18px; color:#06a9b7; font-weight:500; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:252px; height:259px; border:1px solid #d8dee2; background-color:#e7ebee; border-radius:20px; margin:13px 0 0 13px; }
.dashboard.dashboard_cont .ds_cont .areabox.on,
.dashboard.dashboard_cont .ds_cont .areabox.active { border:1px solid #06a9b7; background-color:#fff; box-shadow:5px 5px 8px 0 #ededed,0 -5px 8px 0 #ededed; transition:all 0.4s ease-in-out; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 23px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top { position:relative; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox { position:relative; padding:0 0 0 50px; background:url(../img/contents/icon_disk.png) left top no-repeat; min-height:37px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .tit { color:#5e636c; font-size:18px; line-height:18px; font-weight:400; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .txt { margin:7px 0 0 0; color:#838890; font-size:14px; line-height:14px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .txt > span { display:inline-block; width:6px; height:6px; margin:0 5px 0 3px; border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state { position:absolute; top:0; right:-10px; width:13px; height:13px; border-radius:15px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_b { background: radial-gradient( #26c6d4, #0d8f9b, #06a9b7 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_y { background: radial-gradient( #fce697, #c09703, #ffc800 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_r { background: radial-gradient( #ff779d, #b00f3b, #fc1656 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_g { background: radial-gradient( #8598b9, #454a54, #5e636c ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox { margin:18px 0 0 0; color:#5e636c;font-size:16px; line-height:16px; font-weight:300; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox strong {font-size:20px; line-height:20px; font-weight:400; margin:0 10px 0 3px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox span.num {font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox span.line { margin:0 4px; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numinfo { margin:10px 0 0 -4px; height:21px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numinfo .num { text-align:center; display:inline-block; padding:3px 0; color:#838890;font-size:14px; line-height:13px; font-weight:200; border:1px solid #e9edf0; border-radius:3px; width:47%; margin:0 0 0 4px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox { padding:6px 0 0 0; margin-left:-6px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot { float:left; margin:6px 0 0 6px; width:36px; height:48px; border-radius:10px; text-align:center; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot span { padding:16px 0 0 0; color:#fff;font-size:24px; line-height:24px; font-weight:400; display:inline-block; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot a { display:block; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add { position:relative; display:block; height:226px;}
.dashboard.dashboard_cont .ds_cont .areabox .btn_add:after { content:''; display:block; width:12px; height:64px; background-color:rgba(0,0,0, .5); position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add:before { content:''; display:block; width:64px; height:12px; background-color:rgba(0,0,0, .5); position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add span { overflow:hidden; text-indent:-9999em; display:block; }
@media screen and (max-width:1785px){
.dashboard .d_box.box_1 { width:70%; }
.dashboard .d_box.box_2 { width:27.5%; }
.dashboard .d_box.box_3,
.dashboard .d_box.box_1.box_1m,
.dashboard .d_box.box_3.box_2m { width:100%; margin:2.5% 0 0 0; }
.dashboard .d_box.box_m1 { width:40%; margin:0; }
.dashboard .d_box.box_m2 { width:40%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m3 { width:18.8%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4 { width:100%; margin:0.6% 0 0 0; }
.dashboard .d_box.box_m1.box_1m { width:49.7%; }
.dashboard .d_box.box_m2.box_2m { width:49.7%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4.box_3m { width:100%; margin:0.6% 0 0 0; }
.dashboard.dashboard_cont .d_box.box_b1 { width:100%; margin:0; min-height:auto; }
.dashboard.dashboard_cont .d_box.box_b2 { width:100%; margin:2.5% 0 0 0; min-height:auto; }
}
@media screen and (max-width:1600px){
.dashboard .titbox .txt_ip { text-align:left; margin:0; padding:52px 0 0 0; }
}
@media screen and (max-width:1400px){
.dashboard .d_box.box_m1 { width:49.7%; margin:0; }
.dashboard .d_box.box_m2 { width:49.7%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m3 { width:15.8%; margin:0.6% 0 0 0; }
.dashboard .d_box.box_m4 { width:83.6%; margin:0.6% 0 0 0.6%; }
}
@media screen and (max-width:1200px){
.dashboard .titbox .tit { left:30px; }
.dashboard .d_box.box_2 .tit { left:26px; }
.dashboard .d_box.box_m .titbox .tit { left:26px; }
.dashboard .d_box.box_m3 .titbox .tit { left:18px; }
.dashboard .d_box.box_m1 { width:100%; margin:0; }
.dashboard .d_box.box_m2 { width:100%; margin:1% 0 0 0; }
.dashboard .d_box.box_m3 { width:15.8%; margin:1% 0 0 0; }
.dashboard .d_box.box_m4 { width:83.6%; margin:1% 0 0 0.6%; }
.dashboard .d_box.box_m1.box_1m { width:100%; margin:0; }
.dashboard .d_box.box_m2.box_2m { width:100%; margin:1% 0 0 0; }
.dashboard .d_box.box_m4.box_3m { width:100%; margin:1% 0 0 0; }
.dashboard .titbox .state { right:20px; }
.dashboard .d_box.box_m .titbox .state { right:15px; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 40px; }
.dashboard .box_cont .rbox { float:right; padding:16px 40px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 8px; }
.dashboard .box_cont .cbox { width:calc(100% - 190px); margin:0 0 0 10px; }
.dashboard.dashboard_cont .top_info { right:20px; }
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 45px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 30px 3% 30px; }
.dashboard.dashboard_cont .ds_cont { padding:0 30px 2.5% 30px; }
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:768px){
.titlebox .location span { margin:0 6px; }
.dashboard { margin:28px 0 0 0; }
.dashboard .d_box.box_1 { width:100%; }
.dashboard .d_box.box_2 { width:100%; margin:2.5% 0 0 0;}
.dashboard .d_box.box_m2 { width:100%; margin:2% 0 0 0; }
.dashboard .d_box.box_m3 { width:100%; margin:2% 0 0 0; min-height:160px; }
.dashboard .d_box.box_m4 { width:100%; margin:2% 0 0 0; }
.dashboard .titbox .tit { left:20px; }
.dashboard .d_box.box_2 .tit { left:20px; }
.dashboard .d_box.box_m .titbox .tit { left:20px; }
.dashboard .d_box.box_m3 .titbox .tit { left:20px; }
.dashboard .titbox .state { right:15px; }
.dashboard .num_txt { padding:10px 0 20px 0; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 20px; }
.dashboard .box_cont .rbox { float:right; padding:16px 20px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 6px; }
.dashboard .box_cont .cbox { width:calc(100% - 135px); margin:0 0 0 10px; }
.dashboard.dashboard_cont .top_info { right:15px; }
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 30px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:0 0 0 20px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 20px 3% 20px; }
.dashboard.dashboard_cont .ds_cont { padding:0 20px 2.5% 20px; margin-left:-10px; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:244px; height:259px; margin:10px 0 0 10px; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 19px; }
}
@media screen and (max-width:640px){
.titlebox .location { position:absolute; bottom:0; right:0; }
.titlebox .tit { padding:0 0 30px 0; text-align:center; font-size:24px; line-height:24px; }
.titlebox .tit strong { font-size:34px; line-height:34px; }
.titlebox .tit img { margin:4px 24px 0 0; }
.dashboard { margin:20px 0 0 0; }
.dashboard .titbox .tit { left:15px; }
.dashboard .titbox .tit span { margin:0 3px; }
.dashboard .titbox .tit span:nth-of-type(1) { display:block; margin:0 3px 0 0; width:0; height:0; overflow:hidden; text-indent:-9999em; }
.dashboard .titbox .tit span.stxt { display:inline-block; margin:0 0 0 10px; font-size:14px; width:auto; height:auto; text-indent:0; vertical-align:bottom; }
.dashboard .d_box.box_m .titbox .tit { left:15px; }
.dashboard .d_box.box_2 .tit { left:15px; }
.dashboard .titbox .state { right:15px; }
.dashboard .box_cont .lbox { float:none; clear:both; display:block; padding:0 20px 0 20px; text-align:center; }
.dashboard .d_box.box_m .lbox { padding:0 20px 0 20px; }
.dashboard .box_cont .rbox { float:none; clear:both; display:block; padding:10px 20px 0 20px; text-align:center; }
.dashboard .d_box.box_m .rbox { padding:10px 20px 0 20px; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 6px; }
.dashboard .box_cont .cbox { width:100%; margin:8px 0 0 0; padding:0 15px 0 0; }
.dashboard .d_box.box_m .cbox { width:100%; margin:8px 0 0 0; padding:0 15px 0 0; }
.dashboard .box_cont .cbox li { margin:0 0 8px 15px; }
.dashboard.dashboard_cont .top_info { margin-top:4px; }
.dashboard.dashboard_cont .top_info > ul { margin:0 25px 0 0;}
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 25px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:-40px -18px 0 0; display:block; text-align:right; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { margin:2% 20px 3% 20px; }
.dashboard.dashboard_cont .ds_cont { padding:0 20px 2.5% 20px; margin-left:0; }
.dashboard.dashboard_cont .ds_cont .stitle { margin:4% 0 1% 0; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:100%; height:259px; margin:10px 0 0 0; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 19px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox { text-align:center; }
}
@media screen and (max-width:320px){
.titlebox .tit { font-size:24px; line-height:24px; }
.titlebox .tit strong { font-size:34px; line-height:34px; }
.titlebox .tit img { margin:4px 20px 0 0; }
.dashboard .box_cont .cbox { width:100%; margin:0; padding:0 0 0 0; margin-left:-2px;}
.dashboard.dashboard_cont .top_info > ul { margin:0 15px 0 0;}
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 20px; }
.dashboard .box_cont .cbox li { margin:8px 0 0 5px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { margin:2% 15px 3% 15px; }
.dashboard.dashboard_cont .ds_cont { padding:0 15px 2.5% 15px; margin-left:0; }
}
.dataTable { padding:0 0 0 1%; }
.dataTable table { width:100%; border-collapse:collapse; background-color:#fff; }
.dataTable thead th { padding:14px 5px; color:#fff; font-size:18px; font-weight:300; text-align:center; border-right:1px solid #ccc; background-color:#5e636c; }
.dataTable thead th:last-child { border-right:none; }
.dataTable thead th input[type="checkbox"] { display:none }
.dataTable thead th input[type="checkbox"] + label { cursor:pointer; display:inline-block; margin:0; width:26px; height:26px; vertical-align:middle; background:url(../img/contents/btn_chtd1_off.png)center center no-repeat; }
.dataTable thead th input[type="checkbox"]:checked + label { background:url(../img/contents/btn_chtd1_on.png) center center no-repeat; }
.dataTable thead th span { color:rgba(255,255,255,0.4); font-size:14px; line-height:14px; display:block; margin:6px 0 0 0; }
.dataTable tbody td { position:relative; padding:16px 5px; color:#5e636c; font-size:16px; font-weight:300; text-align:center; letter-spacing:-0.5px; border:1px solid #ccc; border-width:1px 1px 1px 0; }
.dataTable tbody td:last-child { border-right:none; }
.dataTable tbody tr:first-child td { border-top:none; }
.dataTable tbody td span.bar { display:inline-block; margin:0 8px; }
.dataTable tbody td.td_left { padding:16px 10px; text-align:left; }
.dataTable tbody td img { vertical-align:middle; }
.dataTable tbody td img.icon { display:inline-block; margin:0 5px 0 0; }
.dataTable tbody tr:hover td,
.dataTable tbody tr.on td { background:rgba(94,99,108,.05); cursor:pointer; }
.dataTable tbody td input[type="checkbox"] { display:none }
.dataTable tbody td input[type="checkbox"] + label { cursor:pointer; display:inline-block; margin:0; width:26px; height:26px; vertical-align:middle; background:url(../img/contents/btn_chtd2_off.png)center center no-repeat; }
.dataTable tbody td input[type="checkbox"]:checked + label { background:url(../img/contents/btn_chtd2_on.png) center center no-repeat; }
.dataTable tbody td .bubble_box {}
.dataTable tbody td .bubble_box .box { display:inline-block; position:relative; }
.dataTable tbody td .bubble_box .box .s_txt { text-decoration:underline;}
.dataTable tbody td .bb_info { display:none; text-align:center; position:absolute; z-index:99; top:24px; left:50%; transform:translateX(-50%); padding:12px 15px; width:140px; font-size:13px; background-color:#5e636c; color:#fff; border-radius:3px; }
.dataTable tbody td .bb_info:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:5px solid transparent; border-left:5px solid transparent; }
.dataTable tbody td .td_icon { display:inline-block; vertical-align:middle; margin:0 0 0 10px; }
@media screen and (max-width:1800px){
.dataTable.scrollbar-inner { max-width:100%; overflow:hidden !important; overflow-x:auto !important; }
.dataTable.scrollbar-inner table { width:1300px; }
.table_plist .dataTable.scrollbar-inner { max-width:100%; overflow:hidden !important; overflow-x:auto !important; }
.table_plist .dataTable.scrollbar-inner table { width:100%; }
}
@media screen and (max-width:1600px){
.table_plist .dataTable.scrollbar-inner table { width:400px; }
}
@media screen and (max-width:900px){
.table_plist .dataTable.scrollbar-inner table { width:100%; }
}
@media screen and (max-width:768px){
.dataTable { width:100% !important; padding:0; border-top:1px solid #ccc; }
.dataTable.scrollbar-inner { max-width:100%; overflow:auto; }
.dataTable.scrollbar-inner table { width:100% }
.dataTable table { width:100% !important;; }
.dataTable col { width:100% !important; }
.dataTable colgroup { display:none; }
.dataTable th { display:none; }
.dataTable table tbody td { position:relative; display:block; text-align:left; min-height:48px; border:none; color:#5e636c; border-bottom:1px solid #e9e9e9; transition:all 0.4s ease-in-out; }
.dataTable table tbody td,
.dataTable table tbody td.td_left { padding:1.0em 0 1.0em 43% !important; transition-duration:.3s; font-size:15px; }
.dataTable table tbody td:before { position:absolute; left:0; top:0; bottom:0; content:attr(data-th)""; display: inline-block; width:40% !important; min-height:47px; padding:1.0em 0 1.0em 1.0em; font-size:15px; color:#fff; font-weight:300; background-color:#7c818a; }
.dataTable table tbody tr:nth-child(even) td:before { }
.dataTable table tbody td img.icon { margin:-3px 5px -3px 0; }
.dataTable table tbody td:last-child { border-bottom:1px solid #ccc; }
.dataTable table tbody tr:first-child td.over.ovm { border-top:none; }
.dataTable table tbody td:first-child:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.dataTable table tbody td.ovm:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.dataTable table tbody td.over.ovm:before { background-color:#7c818a; padding-left:1.0em; font-size:15px; }
.dataTable table tbody td.ovm { border-bottom:1px solid #ccc; }
.dataTable table tbody td.btn_mtd.ovm{ border-bottom:1px solid #e9e9e9; padding-right:30px !important; }
.dataTable table tbody td.btn_mtd.over { padding-right:5px !important; }
.dataTable table tbody td.on:first-child { border-bottom:1px solid #ccc; }
.dataTable.dt_overlay table tbody td:first-child { border-bottom:1px solid #ccc; }
.dataTable.dt_overlay table tbody td.over:first-child { border-bottom:1px solid #e9e9e9; }
.dataTable table tbody td.over { border-bottom:1px solid #e9e9e9; }
.dataTable table tbody td.hidden { display:none; transition:all 0.4s ease-in-out; transition-duration:.3s; }
.dataTable table tbody td.over span.ov:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over.ovm span.ov:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over.ovm span.ov { opacity:0; right:-99999em; }
.dataTable table tbody td.ovm span.ov:after { transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td.overlay.hidden span.off:after { transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td.overlay span.off:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td span.ov { position:absolute; top:0; right:0; width:55px; height:50px; }
.dataTable table tbody td span.ov:after { content:''; display:block; position:absolute; right:10px; top:43%; z-index:1; transform:translateY(-50%); width:13px; height:8px; background:url(../img/contents/icon_down_l.png) right center no-repeat; transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td span.ov.up:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over span.ov.up:after { transform:rotate(0deg); transition-duration:.3s; }
.first_over.dataTable table tbody td.over.ovm span.ov { opacity:1; right:0; }
.first_over.dataTable table tbody td:first-child:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.first_over.dataTable table tbody td.ovm:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
}
.pageing { text-align:center; margin:30px 0 0 0; }
.pageing > a { vertical-align:middle; display:inline-block; margin:0 8px; color:#b6bac0; font-size:14px; font-weight:300; }
.pageing > a.active { color:#5e636c; font-weight:500; }
.pageing .btn_prev,
.pageing .btn_next { position:relative; overflow:hidden; text-indent:-999em; margin:0 22px; width:20px; height:20px; border:1px solid #b8bcc1; border-radius:30px; }
.pageing .btn_prev { background:url(../img/contents/icon_arr_l.png) center center no-repeat; }
.pageing .btn_prev:hover { border:1px solid #5e636c; background:#5e636c url(../img/contents/icon_arr_l_on.png) center center no-repeat; }
.pageing .btn_next { background:url(../img/contents/icon_arr_r.png) center center no-repeat; }
.pageing .btn_next:hover { border:1px solid #5e636c; background:#5e636c url(../img/contents/icon_arr_r_on.png) center center no-repeat; }
@media screen and (max-width:480px){
.pageing { text-align:center; margin:30px 0 30px 0; }
}
.dashboard .ds_cont .iparea { position:relative; padding:0 0 0 100px; }
.dashboard.dashboard_detail .ds_cont .iparea { padding:0; }
.dashboard .ds_cont .iparea:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .ds_cont .iparea .iconbox { position:absolute; left:0; width:100px; height:100px; margin-top:-6px; border:1px dashed #ccc; border-radius:10px; text-align:center; background-color:#fff; }
.dashboard .ds_cont .iparea .iconbox .img { position:absolute; left:50%; top:50%; transform:translate(calc(-50% + 0.5px), calc(-50% + 0.5px)); }
.dashboard .ds_cont .iparea .iconbox .img img { max-width:100px; }
.dashboard.dashboard_detail .ds_cont .iparea .iconbox { position:absolute; left:0; width:100px; height:100px; margin:0; border:none; border-radius:10px; text-align:center; background-color:#f8f9fa; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:40px; }
.dashboard .ds_cont .iparea .iconbox span.txt { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#888; font-size:14px; line-height:18px; letter-spacing:-0.5px; font-family: 'Noto Sans KR', sans-serif; }
.dashboard .ds_cont .iparea .iconbox input[type="file"] { border:none; }
.dashboard .ds_cont .iparea .iconbox .btn_file { position:relative; z-index:99; display:block; cursor:pointer; width:100px; height:100px; border:none; outline:none; background:none; }
.dashboard .ds_cont .iparea .iconbox .file_ip_hidden { display:none; }
.dashboard .ds_cont .iparea .boxlist { float:left; }
.dashboard .ds_cont .iparea .ip1 { width:30%; }
.dashboard .ds_cont .iparea .ip2 { width:32%; }
.dashboard .ds_cont .iparea .ip3 { width:38%; float:right; }
.dashboard .ds_cont .iparea .d_ip1 { width:29%; }
.dashboard .ds_cont .iparea .d_ip2 { width:17%; }
.dashboard .ds_cont .iparea .d_ip3 { width:23%; }
.dashboard .ds_cont .iparea .d_ip4 { width:31%; }
.dashboard .ds_cont .iparea .ipbox { position:relative; }
.dashboard .ds_cont .iparea .ipbox li { margin:3px 0 0 0; text-align:right; }
.dashboard .ds_cont .iparea .ipbox li:first-child { margin:0; }
.dashboard .ds_cont .iparea .ipbox label { display:inline-block; vertical-align:middle; text-align:right; margin:0 14px 0 0; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .ds_cont .iparea .ipbox label.ta { vertical-align:top; margin-top:6px; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { display:inline-block; vertical-align:middle; width:50%; height:38px; padding:15px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .ds_cont .iparea .ipbox textarea { resize:none; display:inline-block; vertical-align:middle; width:50%; height:120px; padding:8px 12px; border:none; border-radius:5px; line-height:20px; font-size:16px; line-height:18px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .ds_cont .iparea .ipbox textarea.ta_line { border:1px solid #f4f4f4; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"] { width:45%; font-size:15px; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"] { width:55%; }
.dashboard .ds_cont .iparea .ipbox textarea { resize:none; width:45%; font-size:15px; }
.dashboard .ds_cont .iparea .ipbox ::-webkit-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-moz-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-moz-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-ms-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-webkit-select-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-moz-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-moz-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-ms-select-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .area_cont { background-color:#f8f9fa; border-radius:10px; }
.dashboard .ds_cont .area_cont .box { padding:35px 50px 40px 50px; }
.dashboard .ds_cont .area_cont .box .titbox { border:none; }
.dashboard .ds_cont .area_cont .box .titbox .tit { left:0; }
.dashboard .ds_cont .area_cont .box .titbox .top_info { right:0; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:0 0 0 67px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child:before { background:url(../img/contents/icon_down.png) center center no-repeat; }
.dashboard .ds_cont .area_cont .listbox { overflow:auto; height:135px;}
.dashboard .ds_cont .area_cont .listbox ul { margin:-6px 0 0 -6px; padding:4px 0; }
.dashboard .ds_cont .area_cont .listbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .ds_cont .area_cont .listbox li { position:relative; float:left; margin:6px 0 0 6px; height:60px; width:127px; background-color:#fff; border:1px solid #e1e1e1; border-radius:8px; text-align:center; transition:all 0.2s ease-in-out; }
.dashboard .ds_cont .area_cont .listbox li span { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#5e636c; font-size:16px; line-height:16px; font-weight:400; letter-spacing:-0.5px; }
.dashboard .ds_cont .area_cont .listbox li a { display:block; width:100%; height:60px; border-radius:8px; }
.dashboard .ds_cont .area_cont .listbox li a span { color:#fff; }
.dashboard .ds_cont .area_cont .listbox li.active { transition:all 0.2s ease-in-out; box-shadow:2px 2px 3px 0 #b2b5b6,0 -2px 3px 0 #b2b5b6; }
/* .dashboard .ds_cont .area_cont .listbox li.active:before { content:''; display:block; width:15px; height:4px; background:url(../img/contents/icon_point.png) center center no-repeat; position:absolute; right:6px; top:6px; } */
.dashboard .ds_cont .area_cont .listbox li.active:before { content:''; display:block; width:15px; height:13px; background:url(../img/contents/icon_ch_on.png) center center no-repeat; position:absolute; right:5px; top:4px; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_g { border:4px solid #364153; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_r { border:4px solid #a2032f; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_b { border:4px solid #0499a5; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_y { border:4px solid #b28c03; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_g { background-color:#5e636c; border:4px solid #5e636c; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_r { background-color:#fc1656; border:4px solid #fc1656; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_b { background-color:#06a9b7; border:4px solid #06a9b7; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_y { background-color:#ffc800; border:4px solid #ffc800; }
@media screen and (max-width:1755px){
.dashboard .ds_cont .iparea .d_ip1 { width:45%; }
.dashboard .ds_cont .iparea .d_ip2 { width:55%; }
.dashboard .ds_cont .iparea .d_ip3 { width:45%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .d_ip4 { width:55%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:50%; }
}
@media screen and (max-width:1550px){
.dashboard .ds_cont .iparea .ipbox label { margin:0 10px 0 0; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:40%; }
.dashboard .ds_cont .iparea .ip1 { width:50%; }
.dashboard .ds_cont .iparea .ip2 { width:50%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:50%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:right; width:50%;}
}
@media screen and (max-width:1400px){
.dashboard .ds_cont .iparea .d_ip1,
.dashboard .ds_cont .iparea .d_ip2,
.dashboard .ds_cont .iparea .d_ip3,
.dashboard .ds_cont .iparea .d_ip4 { width:100%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
}
@media screen and (max-width:1280px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:70%; }
.dashboard .ds_cont .iparea .ipbox label span { display:block; }
.dashboard .ds_cont .iparea .ip1 { width:100%; }
.dashboard .ds_cont .iparea .ip2 { width:100%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:3px 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:100%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:left; width:100%;}
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:0; }
}
@media screen and (max-width:1024px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:60%; }
.dashboard .ds_cont .iparea .ip1 { width:50%; }
.dashboard .ds_cont .iparea .ip2 { width:50%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:0 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:50%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:right; width:50%;}
.dashboard .ds_cont .area_cont .box { padding:15px 30px 30px 30px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:50px 0 0 40px; }
.dashboard .ds_cont .iparea .d_ip1 { width:45%; }
.dashboard .ds_cont .iparea .d_ip2 { width:55%; }
.dashboard .ds_cont .iparea .d_ip3 { width:45%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .d_ip4 { width:55%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:45%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:30px; }
}
@media screen and (max-width:920px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:70%; }
.dashboard .ds_cont .iparea .ip1 { width:100%; }
.dashboard .ds_cont .iparea .ip2 { width:100%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:3px 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:100%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:left; width:100%;}
.dashboard .ds_cont .area_cont .listbox { overflow:auto; height:265px; }
.dashboard .ds_cont .iparea .d_ip1,
.dashboard .ds_cont .iparea .d_ip2,
.dashboard .ds_cont .iparea .d_ip3,
.dashboard .ds_cont .iparea .d_ip4 { width:100%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:63%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:0px; }
}
@media screen and (max-width:640px){
.dashboard.dashboard_detail .titbox .tit strong { display:block; }
.dashboard.dashboard_detail .titbox .tit span.stxt { margin-left:0; }
.dashboard .ds_cont .iparea { position:relative; padding:0; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:50%; }
.dashboard .ds_cont .area_cont .box .titbox { margin:0 0 30px 0; }
.dashboard .ds_cont .area_cont .box { padding:10px 20px 20px 20px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:60px 0 0 40px; display:inline-block; }
.dashboard .ds_cont .area_cont .listbox li { width:31%; }
}
@media screen and (max-width:480px){
.dashboard .ds_cont .iparea { position:relative; padding:0; margin:0 0 10px 0; }
.dashboard .ds_cont .iparea .iconbox,
.dashboard.dashboard_detail .ds_cont .iparea .iconbox { position:relative; left:0; margin:0 auto 10px auto; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { margin-top:15px; }
.dashboard .ds_cont .iparea .ipbox {}
.dashboard .ds_cont .iparea .ipbox label { font-size:13px; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:60%; }
.dashboard .ds_cont .area_cont .box { padding:10px 10px 10px 10px; }
.dashboard .ds_cont .area_cont .listbox li { width:47%; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
}
@media screen and (max-width:320px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:50%; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:50%; }
}
.dashboard.server_status { display:none; transition:all 0.4s ease-in-out; }
.dashboard.server_status.view { display:block; transition:all 0.4s ease-in-out; }
.dashboard.server_info { display:none; transition:all 0.4s ease-in-out; }
.dashboard.server_info.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .switch { height:22px; display:block; position:relative; }
.dashboard .switch span.txt { display:inline-block; vertical-align:middle; margin:-4px 16px 0 0; color:#5e636c; font-size:15px; line-height:15px; font-weight:400; }
.dashboard .switch label { cursor:pointer; display:inline-block; vertical-align:middle; margin:0; }
.dashboard .switch input { display:none; }
.dashboard .switch input + span { padding-left:45px; min-height:22px; line-height:22px; display:block; color:#3f4656; position:relative; white-space:nowrap; }
.dashboard .switch input + span:not(:empty) { padding-left:46px; }
.dashboard .switch input + span:before, .switch input + span:after { content:""; display:block; position:absolute; border-radius:25px; }
.dashboard .switch input + span:before { top:0; left:0; width:45px; height:22px; border:none; background:#5e636c; -webkit-transition:all 0.3s ease; transition:all 0.3s ease; box-shadow:2px 3px 5px 0 inset #43474e, -2px -2px 6px 0 inset #43474e; }
.dashboard .switch input + span:after { width:22px; height:22px; background:#fff; top:0; left:0; border:1px solid #8e8e8f; box-shadow:0 3px 5px 0 inset #c5c5c5, -2px -2px 6px 0 inset #c5c5c5;
-webkit-transition:all 0.45s ease;
transition:all 0.45s ease;
}
.dashboard .switch input + span + svg { display:none; }
.dashboard .switch input:checked + span:before { background:#06a9b7; border-color:#8d8e8f; }
.dashboard .switch input:checked + span:after { background:#fff;
-webkit-transform:translate(23px, 0);
transform:translate(23px, 0);
}
.dashboard .switch:hover input:not(:checked) + span:before { border:none; }
#monitoring_box .modal-dialog { max-width:100%; width:auto; display:block; padding:0 !important; }
#monitoring_box .modal-content { max-width:728px; margin:0 auto; padding:0 !important; }
#monitoring_box .modal-body { padding:35px 30px 30px 30px !important; }
#monitoring_box .modal-body .titbox { padding:10px 0 0 0; margin:0; height:auto; }
#monitoring_box .modal-body .titbox .tit { font-size:18px; color:#5e636c; line-height:18px; font-weight:400; }
#monitoring_box .modal-body .pop-body .pop-cont { margin:28px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select { width:150px; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"] { display:inline-block; vertical-align:middle; width:150px; height:38px; padding:15px 12px; border:1px dashed #ccc; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { resize:none; display:inline-block; vertical-align:middle; width:304px; height:100px; padding:8px 12px; border:1px dashed #ccc; border-radius:5px; line-height:20px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li span.stxt { display:inline-block; margin:0 0 0 24px; color:#2635ff; font-size:15px; font-weight:200; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip .file_ip_hidden { display:none; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label { width:42px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:128px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 { width:210px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:450px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip3,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:30px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:right; }
@media screen and (max-width:920px){
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:26%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:100%; text-align:right; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .sel1 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select,
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { width:68%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="password"] { width:30%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li .sbox { display:inline-block; margin-left:-4px; width:38%; text-align:left; }
}
@media screen and (max-width:480px){
.dashboard .switch span.txt { margin:-4px 10px 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:100%; margin:5px 0 3px 0; text-align:left; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:100%; text-align:left; }
#monitoring_box .modal-body .pop-body .pop-cont .ip3 { margin:15px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select { width:100%; margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { width:100%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="password"] { width:60%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li .sbox { margin-left:0; width:auto; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li span.stxt { margin:0 0 0 5px; }
}
.dashboard .tabbox { margin:15px 0 0 0; }
.dashboard .tabbox .nav:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .nav li { position:relative; z-index:9; float:left; margin:0 4px 0 0;}
.dashboard .tabbox .nav li a { position:relative; color:#5e636c; text-align:center; padding:16px 0 0 0; font-size:16px; line-height:16px; height:47px; width:128px; font-weight:400; display:block; box-shadow:2px 2px 5px 0 #eeeff0, -3px -3px 5px 0 #eeeff0; background-color:#e0e3e6; border-radius:10px 10px 0 0; }
.dashboard .tabbox .nav li a.active { background-color:#fff; box-shadow:0 0 0 0 #eeeff0, -3px -3px 5px 0 #eeeff0; }
.dashboard .tabbox .tab-content { margin:0; position:relative; z-index:6; padding:40px 45px; background-color:#fff; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; border-radius:0 10px 10px 10px;}
.dashboard .tabbox .tab-content .top_tit { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; margin-bottom:-8px; }
.dashboard .tabbox .tab-content .tab_ipbox { margin:0; }
.dashboard .tabbox .tab-content .tab_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox { float:left; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li { margin:3px 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .nice-select { width:150px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip { display:inline-block; vertical-align:middle; height:38px; padding:10px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:52%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:65%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 { width:43%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 { width:57%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:50%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label { width:120px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox span.stxt { display:inline-block; margin:0 0 0 2px; color:#5e636c; font-size:15px; font-weight:200; }
.dashboard .tabbox .tab-content .tab_map { margin:40px 0 0 0; background-color:#f8f9fa; border-radius:7px; }
.dashboard .tabbox .tab-content .tab_map img { width:100%; }
.dashboard .tabbox .tab-content .graph_list { margin:45px -10px 0 -10px; }
.dashboard .tabbox .tab-content .graph_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .tab-content .graph_list .glist { float:left; margin:28px 0 0 0; width:33.3%; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox { cursor:pointer; margin:0 10px 0 10px; background-color:#fff; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; border-radius:10px;}
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox { position:relative; height:50px; background-color:#5e636c; border-radius:12px 10px 0 0; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .tit { width:50%; height:40px; text-align:center; color:#5e636c; font-weight:400; line-height:40px; font-size:16px; background-color:#fff; border-radius:10px 10px 0 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .txt { position:absolute; right:15px; text-align:right; width:45%; top:50%; transform:translateY(-50%); color:#fff; font-weight:200;font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .graph { position:relative; margin-top:-10px; padding:40px 23px 20px 23px; background-color:#fff; border-radius:0 10px 0 0; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .graph img { width:100%; }
.dashboard .g_detail_view { display:none; transition:all 0.4s ease-in-out; margin:30px 0 0 0; padding:40px 45px 25px 45px; background-color:#fff; border-radius:10px; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; }
.dashboard .g_detail_view.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .g_detail_view .top_tit { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; }
.dashboard .g_detail_view .view_ip { padding:37px 0 0 0; }
.dashboard .g_detail_view .view_ip:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .g_detail_view .view_ip ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .g_detail_view .view_ip > ul > li { float:left; margin:3px 0 0 0; text-align:right; }
.dashboard .g_detail_view .view_ip li.m1 { width:40%; }
.dashboard .g_detail_view .view_ip li.m2 { width:32%; }
.dashboard .g_detail_view .view_ip li.m3 { width:28%;}
.dashboard .g_detail_view .view_ip li.m4 { width:50%;}
.dashboard .g_detail_view .view_ip li.m5 { width:50%;}
.dashboard .g_detail_view .view_ip li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .g_detail_view .view_ip li.m1 label { width:135px; }
.dashboard .g_detail_view .view_ip li.m3 label { width:110px; }
.dashboard .g_detail_view .view_ip li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.dashboard .g_detail_view .view_ip li input[type="text"],
.dashboard .g_detail_view .view_ip li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select { width:65%; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { width:120px; }
.dashboard .g_detail_view .view_ip li.m3 span.sbox:nth-child(2) .nice-select { width:193px; }
.dashboard .g_detail_view .view_ip li.m3 input[type="text"],
.dashboard .g_detail_view .view_ip li.m3 input[type="password"] { width:70px; }
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:75%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:60%; }
.dashboard .g_detail_view .view_ip li span.sbox { margin:3px 0 0 0; display:block; text-align:right; }
.dashboard .g_detail_view .view_ip li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.dashboard .g_detail_view .view_ipbox .graphbox { margin:30px 0 0 0; background-color:#f8f9fa; border-radius:10px; }
.dashboard .g_detail_view .view_ipbox .graphbox img { width:100%; border-radius:10px; }
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:50%; }
.dashboard .g_detail_view .view_ip .mvbox label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { text-align:right; }
.dashboard .g_detail_view .view_ip .mvbox .nice-select { width:60%; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 .nice-select { width:50%; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 .nice-select { width:120px; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 span.sbox:nth-child(2) .nice-select { width:193px; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 input[type="text"],
.dashboard .g_detail_view .view_ip .mvbox .mt_2 input[type="password"] { width:70px; }
@media screen and (max-width:1830px){
.dashboard .g_detail_view .view_ip li.m1 { width:100%; }
.dashboard .g_detail_view .view_ip li.m2 { width:55%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m3 { width:45%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select { width:75%; }
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:60%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:60%; }
}
@media screen and (max-width:1550px){
.dashboard .tabbox .tab-content { padding:30px 40px; }
.dashboard .g_detail_view { padding:30px 40px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:50%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .graph_list .glist { margin:20px 0 0 0; width:50%; }
}
@media screen and (max-width:1400px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:70%; }
.dashboard .tabbox .tab-content .graph_list .glist { width:100%; }
.dashboard .g_detail_view .view_ip li.m2,
.dashboard .g_detail_view .view_ip li.m3,
.dashboard .g_detail_view .view_ip li.m4,
.dashboard .g_detail_view .view_ip li.m5 { width:100%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:70%; }
.dashboard .g_detail_view .view_ip li.m5 .sel_w2 { display:inline-block; width:70%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:70% !important;}
}
@media screen and (max-width:1290px){
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:100%; text-align:right; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { margin:3px 0 0 0; }
}
@media screen and (max-width:1200px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:115px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:52%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:60%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:60%; }
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:60% !important;}
}
@media screen and (max-width:1110px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:46%; }
}
@media screen and (max-width:1024px){
.dashboard .tabbox .tab-content { padding:30px 35px; }
.dashboard .g_detail_view { padding:30px 35px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:63%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:70%; }
.dashboard .tabbox .tab-content .graph_list .glist { margin:10px 0 0 0; width:50%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:70%; }
}
@media screen and (max-width:840px){
.dashboard .tabbox .tab-content .tab_ipbox { margin:0 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .graph_list .glist { width:100%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:60%; }
}
@media screen and (max-width:760px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:46%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:60%; }
}
@media screen and (max-width:640px){
.dashboard .tabbox .tab-content { padding:20px 25px; }
.dashboard .tabbox .tab-content .tab_ipbox { margin:0 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="password"] { border:1px solid #<PASSWORD>; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip { border:1px solid #f4f4f4; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 li label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:100%; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .tit { font-size:14px; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .txt { right:5px; font-size:12px;}
.dashboard .g_detail_view { margin:20px 0 0 0; padding:20px 25px; }
.dashboard .g_detail_view .view_ip { padding:20px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 label,
.dashboard .g_detail_view .view_ip li.m2 label,
.dashboard .g_detail_view .view_ip li.m3 label,
.dashboard .g_detail_view .view_ip li.m4 label,
.dashboard .g_detail_view .view_ip li.m5 label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m3 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:100%; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m3 .sel_w1 { display:inline-block; width:100%; }
.dashboard .g_detail_view .view_ip li.m3 input { vertical-align:bottom; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.dashboard .g_detail_view .view_ip li.m3 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip li.m5 .sel_w2 { display:inline-block; width:100%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:100%; }
.dashboard .g_detail_view .view_ip .mvbox label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { text-align:left; }
.dashboard .g_detail_view .view_ip .mvbox .nice-select { width:100%; }
.dashboard .g_detail_view .view_ip .mvbox span.sbox_m2 .nice-select { width:calc(100% - 54px) !important; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 .nice-select { width:50%; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 span.sbox:nth-child(2) .nice-select { width:100% !important; }
}
@media screen and (max-width:480px){
.dashboard .tabbox .tab-content { padding:20px 15px; }
.dashboard .tabbox .nav li { width:33.3%; margin:0; }
.dashboard .tabbox .nav li a { width:100%; }
.dashboard .tabbox .tab-content { border-radius:0 0 10px 10px; }
.dashboard .g_detail_view { padding:20px 15px; }
}
.monitoring_ipbox { }
.monitoring_ipbox li { margin:3px 0 0 0; }
.monitoring_ipbox li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.monitoring_ipbox li input[type="text"],
.monitoring_ipbox li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.monitoring_ipbox li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.monitoring_ipbox li span.sbox { margin:3px 0 0 0; display:block; text-align:right; }
.monitoring_ipbox li .or { display:inline-block; margin:0 10px; vertical-align:middle; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox .monitoring_ip:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.monitoring_ipbox .monitoring_ip > ul > li { float:left; }
.monitoring_ipbox .monitoring_ip li.m1 { width:48%; }
.monitoring_ipbox .monitoring_ip li.m2 { width:26%; text-align:right; }
.monitoring_ipbox .monitoring_ip li.m3 { width:26%; }
.monitoring_ipbox .monitoring_ip li.m1 .nice-select { width:42%; }
.monitoring_ipbox .monitoring_ip li.m1.l_m1 .nice-select { width:70%; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:60%; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { width:120px; }
.monitoring_ipbox .monitoring_ip li.m3 span.sbox:nth-child(2) .nice-select { width:193px; }
.monitoring_ipbox .monitoring_ip li.m3 input[type="text"],
.monitoring_ipbox .monitoring_ip li.m3 input[type="password"] { width:70px; }
.monitoring_ipbox .monitoring_ip .mipbox { float:left; width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 { text-align:right; }
.monitoring_ipbox .monitoring_ip .mipbox .nice-select { width:90%; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 .nice-select { width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 .nice-select { width:120px; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 span.sbox:nth-child(2) .nice-select { width:193px; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 input[type="text"],
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 input[type="password"] { width:70px; }
@media screen and (max-width:1830px){
.monitoring_ipbox .monitoring_ip li.m1 { width:100%; text-align:right; }
.monitoring_ipbox .monitoring_ip li.m2 { width:55%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 { width:45%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m1 .nice-select { width:35%; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:75%; }
}
@media screen and (max-width:1400px) {
.monitoring_ipbox .monitoring_ip li.m2 { width:100%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 { width:100%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:70%; }
}
@media screen and (max-width:1200px){
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:60%; }
}
@media screen and (max-width:1024px){
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:70%; }
}
@media screen and (max-width:640px){
.monitoring_ipbox .monitoring_ip li.m1,
.monitoring_ipbox .monitoring_ip li.m2,
.monitoring_ipbox .monitoring_ip li.m3 { text-align:left; }
.monitoring_ipbox .monitoring_ip li.m1 label,
.monitoring_ipbox .monitoring_ip li.m2 label,
.monitoring_ipbox .monitoring_ip li.m3 label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_1 .or { text-align:left; width:50px; margin:0; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_1 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_2 { margin:3px 0 0 0; display:block; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_2 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:100%; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 .sel_w1 { display:inline-block; width:100%; }
.monitoring_ipbox .monitoring_ip li.m3 input { vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip li.m3 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.monitoring_ipbox .monitoring_ip .mipbox { float:left; width:100%; }
.monitoring_ipbox .monitoring_ip .mipbox label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 { text-align:left; }
.monitoring_ipbox .monitoring_ip .mipbox .nice-select { width:100%; }
.monitoring_ipbox .monitoring_ip .mipbox span.sbox_m2 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 .nice-select { width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
}
.ds_cont_mbox { margin:30px 0 0 0; padding:40px 45px 40px 45px; background-color:#f8f9fa; border-radius:10px; transition:all 0.4s ease-in-out; }
.ds_cont_mbox .m_title { font-size:22px; font-weight:500; color:#5e636c; line-height:22px; }
.ds_cont_mbox .m_title .stxt { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; display:inline-block; margin:0 0 0 10px; }
.ds_cont_mbox .mtbox { position:relative; margin:40px 0 0 0; }
.ds_cont_mbox .mtbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .txtbox { float:left; width:110px; border-bottom:1px solid #f8f9fa}
.ds_cont_mbox .mtbox .txtbox .icon_box { position:absolute; bottom:0; width:99px; text-align:center; height:145px; background-color:#fff; vertical-align:bottom; border-radius:10px; }
.ds_cont_mbox .mtbox .txtbox .icon_box .img { padding:10px 0 0 0; }
.ds_cont_mbox .mtbox .txtbox .txt { padding:30px 0 0 0; font-size:18px; line-height:18px; font-weight:500; }
.ds_cont_mbox .mtbox .txtbox .tit { color:#5e636c; font-size:22px; font-weight:500; }
.ds_cont_mbox .mtbox .g_list { float:left; width:calc(100% - 120px); }
.ds_cont_mbox .mtbox .g_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .g_list .gbox { float:left; width:25%; }
.ds_cont_mbox .mtbox .g_list .sel { margin:0 0 0 14px; }
.ds_cont_mbox .mtbox .g_list .sel label { margin:0 12px 0 0; vertical-align:middle; text-align:right; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.ds_cont_mbox .mtbox .g_list .graph { margin:30px 0 0 15px; padding:15px; background-color:#fff; border-radius:10px; box-shadow:2px 2px 5px 0 #e8e9ea, -2px -2px 5px 0 #e8e9ea; }
.ds_cont_mbox .mtbox .g_list .graph img { width:100%; }
.ds_cont_mbox .mtbox .g_list .listbox { margin:0 0 0 7px; }
.ds_cont_mbox .mtbox .g_list .listbox { overflow:auto; height:122px;}
.ds_cont_mbox .mtbox .g_list .listbox ul { margin:-6px 0 0 -6px; padding:4px 0; }
.ds_cont_mbox .mtbox .g_list .listbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .g_list .listbox li { position:relative; float:left; margin:6px 0 0 6px; height:54px; width:107px; background-color:#fff; border:1px solid #e1e1e1; border-radius:8px; text-align:center; transition:all 0.2s ease-in-out; }
.ds_cont_mbox .mtbox .g_list .listbox li span { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#5e636c; font-size:14.5px; line-height:14px; font-weight:400; letter-spacing:-0.5px; }
.ds_cont_mbox .mtbox .g_list .listbox li a { display:block; width:100%; height:60px; border-radius:8px; }
.ds_cont_mbox .mtbox .g_list .listbox li a span { color:#fff; }
.ds_cont_mbox .mtbox .g_list .listbox li.active { transition:all 0.2s ease-in-out; box-shadow:2px 2px 3px 0 #b2b5b6,0 -2px 3px 0 #b2b5b6; }
.ds_cont_mbox .mtbox .g_list .listbox li.active:before { content:''; display:block; width:15px; height:13px; background:url(../img/contents/icon_ch_on.png) center center no-repeat; position:absolute; right:5px; top:4px; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_g { border:4px solid #364153; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_r { border:4px solid #a2032f; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_b { border:4px solid #0499a5; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_y { border:4px solid #b28c03; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_g { background-color:#5e636c; border:4px solid #5e636c; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_r { background-color:#fc1656; border:4px solid #fc1656; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_b { background-color:#06a9b7; border:4px solid #06a9b7; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_y { background-color:#ffc800; border:4px solid #ffc800; }
.ds_cont_mbox.g_detail_view { display:none; margin:20px 0 0 0; background-color:#f8f9fa; box-shadow:none; }
.ds_cont_mbox.g_detail_view.active { display:block; }
.ds_cont_mbox.g_detail_view .view_ip { padding:37px 0 0 0; }
.ds_cont_mbox.g_detail_view .view_ip:nth-child(1) { padding:0; }
@media screen and (max-width:1550px){
.ds_cont_mbox { padding:30px 40px; }
.ds_cont_mbox .mtbox .txtbox .icon_box { position:absolute; top:0; }
.ds_cont_mbox .mtbox .g_list .gbox { width:50%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1),
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .graph { margin-top:7%; }
}
@media screen and (max-width:1400px){
.ds_cont_mbox .m_title .stxt { display:block; margin:5px 0 0 0; }
}
@media screen and (max-width:1200px){
.ds_cont_mbox { padding:30px 35px; }
.ds_cont_mbox .mtbox .g_list .gbox { width:100%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:10%; }
}
@media screen and (max-width:1024px){
.ds_cont_mbox { padding:30px 35px; }
.ds_cont_mbox .mtbox .g_list .gbox { width:50%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1),
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:0; }
}
@media screen and (max-width:920px){
.ds_cont_mbox .mtbox .g_list .listbox { overflow:auto; height:250px; }
}
@media screen and (max-width:640px){
.ds_cont_mbox .mtbox .txtbox { float:none; display:block; width:100%; text-align:center; padding:0 0 20px 0; }
.ds_cont_mbox .mtbox .txtbox .icon_box { position:relative; top:0; height:auto; padding:0 0 10px 0; width:100%; }
.ds_cont_mbox .mtbox .txtbox .icon_box .img { display:inline-block; vertical-align:middle; }
.ds_cont_mbox .mtbox .txtbox .icon_box .txt { display:inline-block; padding:0 0 0 10px; vertical-align:middle; }
.ds_cont_mbox .mtbox .g_list .gbox { width:49%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(even) { float:right; }
.ds_cont_mbox .mtbox .g_list .gbox .sel { margin-left:0; }
.ds_cont_mbox .mtbox .g_list .gbox .graph { margin-left:0; }
.ds_cont_mbox .mtbox .g_list .sel label { display:block; margin:0 0 8px 0; text-align:left; }
.ds_cont_mbox .mtbox .g_list .nice-select { width:100% !important; }
.ds_cont_mbox .mtbox .g_list { float:none; width:100%; }
.ds_cont_mbox .mtbox .g_list .listbox { margin:0; }
.ds_cont_mbox .mtbox .g_list .listbox li { width:31%; }
}
@media screen and (max-width:480px){
.ds_cont_mbox { padding:20px 15px; }
.ds_cont_mbox .mtbox .g_list .listbox li { width:47%; }
.ds_cont_mbox .mtbox .g_list .gbox { width:100%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .graph { margin-top:5%; }
}
.dashboard.register_cont { display:none; transition:all 0.4s ease-in-out; }
.dashboard.register_cont.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .titbox_n { position:relative; }
.dashboard .titbox_n .tit { position:relative; padding:40px 0 0 44px; color:#5e636c;font-size:16px; line-height:16px; font-weight:200; }
.dashboard .titbox_n .tit.cg { color:#06a9b7; }
.dashboard .titbox_n .tit span { font-weight:200; display:inline-block; margin:0 6px; }
.dashboard .titbox_n .tit span.stxt { font-weight:400; color:#06a9b7; font-size:18px; }
.dashboard .titbox_n .tit strong {font-weight:400; font-size:22px; line-height:22px; text-transform:uppercase; }
.dashboard .titbox_n .tit strong.stit { text-transform:capitalize;}
.dashboard .titbox_n .tit.initial strong { text-transform:capitalize; }
.dashboard .register_box { position:relative; }
.dashboard .register_box .rg_chbox { position:absolute; top:-8px; right:0; }
.dashboard .register_box li { margin:3px 0 0 0; }
.dashboard .register_box li label { position:relative; text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .register_box li label span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.dashboard .register_box li label span.txt_sb { display:block; font-size:15px; font-weight:300; }
.dashboard .register_box li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.dashboard .register_box li input[type="text"],
.dashboard .register_box li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .register_box li input.pline { border:1px dashed #ccc; }
.dashboard .register_box li input.gray { background-color:#e7ebee; }
.dashboard .register_box li input.noline { border:1px solid #e7ebee !important; }
.dashboard .register_box li textarea { resize:none; display:inline-block; vertical-align:middle; height:121px; padding:8px 12px; border:1px solid #e1e1e1; border-radius:5px; line-height:20px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .register_box li textarea.gray { background-color:#e7ebee; }
.dashboard .register_box li textarea.pline { border:1px dashed #ccc; }
.dashboard .register_box li textarea.ta1 { height:79px; }
.dashboard .register_box li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.dashboard .register_box li .btn_edit { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#8b95a9; }
.dashboard .register_box li.reg_1 label { width:145px; }
.dashboard .register_box li .reg_stxt { display:inline-block; width:61%; text-align:left; padding:8px 0 12px 2px; }
.dashboard .register_box li .reg_stxt a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .register_box li .reg_stxt a.ma { margin:0 2px 0 14px; }
.dashboard .register_box li .reg_stxt.right_a { text-align:right; padding:4px 0 12px 0;}
.dashboard .register_box li .bubble_box { display:inline-block; }
.dashboard .register_box li .bubble_box .box { display:inline-block; position:relative; }
.dashboard .register_box li .bubble_box .box .s_txt { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; cursor:pointer; }
.dashboard .register_box li .bb_info { display:none; text-align:center; position:absolute; z-index:99; top:24px; left:50%; transform:translateX(-50%); padding:12px 15px; width:140px; font-size:13px; background-color:#5e636c; color:#fff; border-radius:3px; }
.dashboard .register_box li .bb_info:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:5px solid transparent; border-left:5px solid transparent; }
.dashboard .register_box .top_ipbox { margin-top:-3px; }
.dashboard .register_box .top_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .top_ipbox.bottom_ipbox { clear:both; float:none; }
.dashboard .register_box .top_ipbox .ipbox { float:left; width:50%; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w { width:100%; margin:10px 0 0 0; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w label { width:auto; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:70%; }
.dashboard .register_box .top_ipbox .ipbox1 { padding:42px 0 0 38px; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 38px; }
.dashboard .register_box .top_ipbox .ipbox2 { text-align:right; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { width:38%; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:right; padding:0 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox1 input[type="text"] { width:50%; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:65%; }
.dashboard .register_box .top_ipbox .ipbox4 input.ip_w1 { width:64.5%;}
.dashboard .register_box .top_ipbox .ipbox1.ipbox5 { padding-top:10px; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox6 { padding-top:10px; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox7 { padding-top:20px; }
.dashboard .register_box li.reg_1 textarea { width:50%; }
.dashboard .register_box li.reg_2 input,
.dashboard .register_box li.reg_2 textarea { width:60.5%; }
.dashboard .register_box li.reg_3 input,
.dashboard .register_box li.reg_3 textarea { width:50%; }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:60% !important; }
.dashboard .register_box .top_ipbox .ipbox2 .w1,
.dashboard .register_box .top_ipbox .ipbox2 .w2 { width:30%; }
.dashboard .register_box .top_ipbox .ipbox2 .w3 { width:36%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w1,
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w2 { width:32%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w3 { width:42%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox { margin-right:0px; }
.dashboard .register_box .top_ipbox img.icon { vertical-align:middle; margin:0 0 0 10px; }
.dashboard .register_box .graybox { margin:25px 0 0 0; border-radius:15px; background-color:#f8f9fa; padding:30px 0; }
.dashboard .register_box .graybox .g_box:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .g_box .g_ipbox { float:left; }
.dashboard .register_box .graybox .g_ipbox1 { width:50%; }
.dashboard .register_box .graybox .g_ipbox1 label { width:28%; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1 { width:62%; }
.dashboard .register_box .graybox .g_ipbox2 { width:50%; }
.dashboard .register_box .graybox .g_ipbox2 label { width:120px; }
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 textarea { width:50%; }
.dashboard .register_box .graybox .g_ipbox3,
.dashboard .register_box .graybox .g_ipbox4 { padding-top:10px; }
.dashboard .register_box .graybox input[type="text"].ip_ws { width:90px; }
.dashboard .register_box .graybox li .reg_stxt { display:inline-block; padding:8px 0 10px 10px; width:auto; vertical-align:bottom; }
.dashboard .register_box .graybox li .reg_stxt a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .register_box .graybox img.icon { vertical-align:middle; margin:0 0 0 10px; }
.dashboard .register_box .graybox .w_ipbox { position:relative; }
.dashboard .register_box .graybox .w_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .w_ipbox > div { position:relative; z-index:1 }
.dashboard .register_box .graybox .w_ipbox > div.w_r { position:absolute; right:25%; top:0; text-align:right; }
.dashboard .register_box .graybox .w_ipbox > div.w_r label { width:auto; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:45%; }
.dashboard .register_box .graybox.ipbox_hidden { display:none; transition:all 0.4s ease-in-out; }
.dashboard .register_box .graybox.ipbox_hidden.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .register_box .graybox .logicbox { padding:0 30px; }
.dashboard .register_box .graybox .logicbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .logicbox .txtbox { float:left; width:700px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { margin-top:-18px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-38px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .tit { color:#5e636c; font-size:16px; font-weight:500; letter-spacing:-0.5px; padding:0 0 10px 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .txt { color:#fff; font-size:16px; line-height:20px; padding:15px 10px; border-radius:15px; background-color:#06a9b7; }
.dashboard .register_box .graybox .logicbox .txtbox .line { position:relative; float:left; height:2px; background-color:#5e636c; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:0; top:50%; transform:translateY(-50%); width:9px; height:10px; background:url(../img/contents/icon_arr_lg.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; margin:60px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; margin:60px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; height:42px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; margin:40px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; height:22px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; margin:20px 0 0 0; }
.dashboard .register_box .graybox .logicbox .mapcont { float:right; width:calc(100% - 800px); text-align:center; }
.dashboard .register_box .graybox .logicbox .map { border-radius:10px; background-color:#e7ebee; }
.dashboard .register_box .graybox .logicbox .map img { max-width:400px; width:100%; border-radius:10px; }
.dashboard .register_box .padd_Box_1 { padding:5px 0 20px 0; }
.dashboard .register_box.reg .btnbox { margin:20px 0 0 0; padding:30px 0 0 0; border-top:1px solid #e1e1e1; }
.dashboard .register_box .b_txt { padding:20px 34% 0 0; color:#5e636c; font-size:13px; font-family:'Noto Sans KR'; text-align:right; display:block; }
.dashboard .register_box .b_txt span.ch { color:#ff0000; font-family:'Noto Sans KR'; }
.dashboard .register_box .b_txt span.txt { color:#06a9b7; font-family:'Noto Sans KR'; }
.dashboard .register_box .btn_arr { position:relative; margin:30px 0 0 0; padding:0 0 10px 0; border-top:1px solid #e1e1e1; }
.dashboard .register_box .btn_arr .icon { position:relative; margin:0 auto; width:65px; height:31px; cursor:pointer; background:url(../img/contents/icon_arr_p.png) center center no-repeat; }
.dashboard .register_box .btn_arr.up { margin:50px 0 0 0; }
.dashboard .register_box .btn_arr.up .icon { transform:rotate(180deg); margin-top:-31px; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -3.33%;}
.dashboard .register_box .iptable_box:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:30%; margin:0 0 0 3.33%; }
.dashboard .register_box .iptable_box .table_plist .tit { color:#5e636c; font-size:16px; line-height:16px; font-weight:500; padding:0 0 12px 0; }
.dashboard .register_box .iptable_box .table_plist .tit span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.dashboard .register_box .iptable_box .table_plist .btn_s { position:absolute; right:0; top:-5px; }
.dashboard .register_box .iptable_box .table_plist .btn_add { padding:0; margin:0 0 0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_add_s.png) center center no-repeat; }
.dashboard .register_box .iptable_box .table_plist .btn_write { padding:0; margin:0 0 0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_write_s.png) center center no-repeat; }
@media screen and (max-width:1980px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.7%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:31.5%; }
}
@media screen and (max-width:1920px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:30.7%; }
}
@media screen and (max-width:1850px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.6%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:29.5%; }
}
@media screen and (max-width:1800px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.1%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:28.5%; }
}
@media screen and (max-width:1750px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:27.8%; }
.dashboard .register_box .graybox .logicbox .mapcont { width:calc(100% - 720px); }
}
@media screen and (max-width:1700px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:27%; }
.dashboard .register_box .graybox .logicbox .txtbox { float:left; width:100%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:calc(30% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 38%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:15%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 61%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:18.5%; }
.dashboard .register_box .graybox .logicbox .mapcont { float:right; width:calc(100% - 800px); }
.dashboard .register_box .graybox .logicbox .mapcont { margin:20px 0 0 0; float:left; width:100%; }
}
@media screen and (max-width:1650px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:26.5%; }
}
@media screen and (max-width:1600px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:25.5%; }
}
@media screen and (max-width:1550px){
.dashboard .register_box .top_ipbox .ipbox1 { padding:42px 0 0 15px;}
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 15px; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1 { width:58%; }
.dashboard .register_box .graybox input[type="text"].ip_ws { width:80px; }
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:10.4%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:24%; }
}
@media screen and (max-width:1500px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:22.8%; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -2.33%;}
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:31%; margin:0 0 0 2.33%; }
}
@media screen and (max-width:1450px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:21.5%; }
}
@media screen and (max-width:1400px){
.dashboard .register_box .top_ipbox .ipbox1 { padding:20px 0 0 15px; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox7 { padding:20px 0 0 0; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox { width:100%; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { text-align:right; width:100%; padding:20px 120px 0 0; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:right; padding:0 120px 0 0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:64.5%;}
.dashboard .register_box .top_ipbox .ipbox1.ipbox5 { padding:10px 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox6 { padding-top:0; }
.dashboard .register_box .graybox .g_ipbox1 label,
.dashboard .register_box .graybox .g_ipbox2 label { width:120px; }
.dashboard .register_box .graybox .g_ipbox1,
.dashboard .register_box .graybox .g_ipbox2 { width:100%; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea ,
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1,
.dashboard .register_box .graybox .g_ipbox2 .sel_w1 { width:65%; }
.dashboard .register_box .graybox .g_ipbox4 { padding-top:0; }
.dashboard .register_box .graybox .w_ipbox > div.w_r { position:relative; right:auto; top:0; text-align:left; margin:3px 0 0 0;}
.dashboard .register_box .graybox .w_ipbox > div.w_r label { width:120px; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:auto; }
.dashboard .register_box li.reg_1 { width:100%; }
.dashboard .register_box li.reg_1 label { width:auto; }
.dashboard .register_box li.reg_1 textarea { width:53.5%; }
.dashboard .register_box li.reg_3 input[type="text"],
.dashboard .register_box li.reg_3 textarea,
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 input[type="text"] { width:52.4%; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1.ipbox5 input[type="text"] { width:60.5%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input.pline[type="text"]{ width:53.4%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n input[type="text"],
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n input.pline[type="text"] { width:52.4%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n span.sbox.sbox_l input[type="text"]{ width:calc(52.4% - 53px); }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:55% !important; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:55%; }
.dashboard .register_box li label span.txt_sb { display:inline-block; }
.dashboard .register_box .b_txt { padding:20px 30% 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:700px; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:22.8%; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -1.33%;}
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:32%; margin:0 0 0 1.33%; }
}
@media screen and (max-width:1250px){
.dashboard .register_box .graybox .logicbox .txtbox { width:640px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-8px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:25px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:135px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 260px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:70px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 410px; height:52px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:66px; margin:50px 0 0 0; }
}
@media screen and (max-width:1150px){
.dashboard .register_box .graybox .logicbox { text-align:center; }
.dashboard .register_box .graybox .logicbox .txtbox { position:relative; float:none; width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:none; clear:both; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:right; margin:188px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:absolute; top:255px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:absolute; top:420px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:none; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:auto; top:auto; left:50%; bottom:-7px; margin-left:-5px; translatey(0); width:10px; height:10px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:2px; height:40px; margin:0; position:relative; left:50%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { width:calc(50% - 160px); height:2px; margin:0; top:194px; position:absolute; left:calc(50% + 80px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:2px; height:224px; position:absolute; top:194px; right:80px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { position:absolute; top:194px; left:80px; margin:0; height:2px; width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { position:absolute; top:194px; left:80px; width:2px; height:60px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0; height:0; width:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { position:absolute; top:350px; left:80px; width:2px; height:70px; margin:0; }
}
@media screen and (max-width:1100px){
.dashboard .register_box .graybox li .reg_stxt { width:85%; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a input[type="text"]{ width:calc(65% - 40px) !important; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a .reg_stxt { width:auto; }
}
@media screen and (max-width:1024px){
.dashboard .register_box .graybox li .reg_stxt { width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:100%; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:left; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:relative; top:auto; left:auto; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:relative; top:auto; left:auto; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; clear:none; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { margin-top:-18px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-38px; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:left; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:0; left:auto; top:50%; transform:translateY(-50%); width:9px; height:10px; background:url(../img/contents/icon_arr_lg.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 {width:calc(30% - 160px); height:2px; margin:60px 0 0 0; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { display:none; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:calc(50% - 160px); height:2px; margin:60px 0 0 0; position:relative; top:auto; right:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 38%; height:42px; width:2px; position:relative; top:auto; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:15%; margin:40px 0 0 0; height:2px; position:relative; top:auto; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 61%; height:22px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:18.5%; margin:20px 0 0 0; height:2px; position:relative; top:auto; left:auto; }
}
@media screen and (max-width:980px){
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:700px; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; }
}
@media screen and (max-width:900px){
.dashboard .register_box li.reg_1 textarea { width:54%; }
.dashboard .register_box .graybox .logicbox .txtbox { width:640px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-8px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:25px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:135px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 260px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:70px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 410px; height:52px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:66px; margin:50px 0 0 0; }
.dashboard .register_box .iptable_box { margin:20px 0 0 0;}
.dashboard .register_box .iptable_box .table_plist { width:100%; margin:0 0 20px 0; }
.dashboard .register_box .iptable_box .table_plist:nth-child(3) { margin:0; }
}
@media screen and (max-width:820px){
.dashboard .register_box .graybox .logicbox { text-align:center; }
.dashboard .register_box .graybox .logicbox .txtbox { position:relative; float:none; clear:both; width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:none; clear:both; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:right; margin:188px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:absolute; top:255px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:absolute; top:420px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:none; clear:both; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:auto; top:auto; left:50%; bottom:-7px; margin-left:-5px; translatey(0); width:10px; height:10px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:2px; height:40px; margin:0; position:relative; left:50%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { display:block; width:calc(50% - 160px); height:2px; margin:0; top:194px; position:absolute; left:calc(50% + 80px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:2px; height:224px; position:absolute; top:194px; right:80px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { position:absolute; top:194px; left:80px; margin:0; height:2px; width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { position:absolute; top:194px; left:80px; width:2px; height:60px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0; height:0; width:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { position:absolute; top:350px; left:80px; width:2px; height:70px; margin:0; }
}
@media screen and (max-width:767px){
.dashboard .register_box .graybox li .reg_stxt { width:85%; }
}
@media screen and (max-width:640px){
.dashboard .titbox_n .tit { padding:30px 0 0 15px; }
.dashboard .register_box .top_ipbox .ipbox1 { padding:20px 0 0 0; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox label.ch { padding:0 0 0 14px; }
.dashboard .register_box .top_ipbox .ipbox label.ch:before { left:0; }
.dashboard .register_box .top_ipbox .ipbox1 label,
.dashboard .register_box .top_ipbox .ipbox2 label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .top_ipbox .ipbox { text-align:left; }
.dashboard .register_box .top_ipbox .ipbox1 span.sbox input[type="text"]{ width:calc(100% - 30px) !important; }
.dashboard .register_box .top_ipbox .ipbox .nice-select,
.dashboard .register_box .top_ipbox .ipbox1 input[type="text"],
.dashboard .register_box .top_ipbox .ipbox2 input[type="text"] { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2 .nice-select.w2 { margin:3px 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { text-align:left; width:100%; padding:0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:100%; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:left; padding:0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w1,
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w2 { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w3 { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox { margin-right:0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox input[type="text"]{ width:calc(100% - 55px) !important; }
.dashboard .register_box .graybox { padding:0 15px 10px 15px; }
.dashboard .register_box .graybox .g_ipbox1 label,
.dashboard .register_box .graybox .g_ipbox2 label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox2 textarea,
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 .sel_w1,
.dashboard .register_box .graybox .g_ipbox2 .sel_w1 { width:100%; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox input[type="text"]{ width:calc(100% - 30px) !important; }
.dashboard .register_box .graybox .g_ipbox2 span.sbox input[type="text"]{ width:calc(100% - 54px) !important; }
.dashboard .register_box .graybox .g_ipbox3 { padding-top:5px; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a input[type="text"]{ width:calc(100% - 40px) !important; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a .reg_stxt { padding:8px 0 10px 10px; }
.dashboard .register_box .graybox li .reg_stxt { width:100%; padding:4px 0; }
.dashboard .register_box li .reg_stxt { width:100%; padding:4px 0; }
.dashboard .register_box li .reg_stxt.right_a { text-align:right; padding:4px 0; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input[type="text"]{ width:100%; }
.dashboard .register_box li.reg_1 input[type="text"],
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input.pline[type="text"],
.dashboard .register_box li.reg_1 input,
.dashboard .register_box li.reg_1 textarea,
.dashboard .register_box li.reg_2 textarea,
.dashboard .register_box li.reg_3 textarea { width:100%; }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:100% !important; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n span.sbox.sbox_l input[type="text"]{ width:calc(100% - 55px) !important; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w { text-align:left; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:100%; }
.dashboard .register_box li .bb_info { width:110px; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1.ipbox5 input[type="text"] { width:100%; }
.dashboard .register_box .padd_Box_1 { padding:0 0 15px 0; }
.dashboard .register_box .b_txt { padding:10px 0 10px 0; }
.dashboard .register_box .graybox .logicbox { padding:20px 10px 10px 10px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { width:120px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .tit { font-size:14px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .txt { font-size:14px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { margin:192px -10px 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { left:-10px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { left:-10px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { width:calc(50% - 100px); left:calc(50% + 60px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { right:40px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { left:40px; width:calc(50% - 100px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { left:40px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { left:40px; }
}
#register_box .modal-dialog { max-width:100%; width:auto; display:block; padding:0 !important; }
#register_box .modal-content { max-width:728px; margin:0 auto; padding:0 !important; }
#register_box .modal-body { padding:35px 30px 30px 30px !important; }
#register_box .modal-body .title_box { padding:0 0 0 0; margin:0; height:auto; }
#register_box .modal-body .title_box .title { font-size:18px; color:#06a9b7; line-height:18px; font-weight:400; }
#register_box .modal-body .pop-body .pop-cont { margin:28px 0 0 0; }
#register_box .modal-body .pop-body .pop-cont input[type="text"],
#register_box .modal-body .pop-body .pop-cont input[type="password"] { display:inline-block; margin:-4px 0; vertical-align:middle; height:35px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#register_box .modal-body .pop-body .pop-cont input.gray { background-color:#e7ebee; }
#register_box .modal-body .pop-body .pop-cont input.pline { border:1px dashed #ccc; }
#register_box .modal-body .pop-body .pop-cont .toptxt { padding:0 0 0 20px; color:#5e636c; font-size:16px; font-weight:500; }
#register_box .modal-body .pop-body .pop-cont .toptxt.topsel { padding:0; }
#register_box .modal-body .pop-body .pop-cont .toptxt .selectbox { width:150px; }
#register_box .modal-body .pop-body .pop-cont .toptxt label { margin:0 10px 0 0; }
#register_box .modal-body .pop-body .pop-cont .b_txt { margin:20px 0 0 0; color:#5e636c; font-size:13px; font-family:'Noto Sans KR'; text-align:center; }
#register_box .modal-body .pop-body .pop-cont .b_txt span.ch { color:#ff0000; font-family:'Noto Sans KR'; }
#register_box .modal-body .pop-body .pop-cont .b_txt span.txt { color:#06a9b7; font-family:'Noto Sans KR'; }
#register_box .modal-body .pop-body .pop-cont > .scrollbar-inner { margin:8px 0 0 0; max-height:256px; overflow:auto; }
#register_box .modal-body .pop-body .pop-cont .dataTable table { background-color:#f7f7f7; }
#register_box .modal-body .pop-body .pop-cont .dataTable thead th { padding:10px 5px; background-color:#999ea7; }
#register_box .modal-body .pop-body .pop-cont .dataTable thead th .btn_add { border:1px solid #fff; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td { padding:10px 5px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td.td_left { padding:10px 10px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td input,
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td .selectbox { width:100%; }
#register_box .modal-body .pop-body .pop-cont .dataTable .btn_add { padding:0; margin:0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_add_s.png) center center no-repeat; }
#register_box .modal-body .pop-body .pop-cont .dataTable .btn_del { padding:0; margin:0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_del_s.png) center center no-repeat; }
#register_box .modal-body .pop-body .pop-cont .dataTable tr.bottom_line { overflow:hidden; text-indent:-9999em; }
@media screen and (max-width:1800px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner { max-width:100%; overflow:auto; }
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:auto; }
}
@media screen and (max-width:1200px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:700px; }
}
@media screen and (max-width:768px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:auto; }
#register_box .modal-body .pop-body .pop-cont .toptxt { padding:0; }
#register_box .modal-body .pop-body .pop-cont .toptxt label { margin:0 0 10px 0; }
#register_box .modal-body .pop-body .pop-cont .toptxt input { width:100%; }
#register_box .modal-body .pop-body .pop-cont > .scrollbar-inner { margin:12px 0 0 0; max-height:320px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td input,
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td .selectbox { width:95%; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td.btn_mtd input { width:75%; }
}
.register_add .title_box { padding:0 0 0 0; margin:0; height:auto; }
.register_add .title_box .title { font-size:18px; color:#06a9b7; line-height:18px; font-weight:400; }
.register_add .pop-cont { margin:28px 0 0 0; }
.register_add .pop-cont input[type="text"],
.register_add .pop-cont input[type="password"] { display:inline-block; vertical-align:middle; height:35px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.register_add .pop-cont input.gray { background-color:#e7ebee; }
.register_add .pop-cont input.pline { border:1px dashed #ccc; }
.register_add .pop-cont .pop_ipbox { }
.register_add .pop-cont .pop_ipbox li { margin:3px 0 0 0; }
.register_add .pop-cont .pop_ipbox li label { position:relative; text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.register_add .pop-cont .pop_ipbox li label span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.register_add .pop-cont .pop_ipbox li input.w_ip1,
.register_add .pop-cont .pop_ipbox li .selectbox.w_ip1 { width:calc(100% - 118px);}
.register_add .pop-cont .pop_ipbox li.p_ip1 label { width:100px; }
.btnbox { margin:20px 0 0 0; }
.btnbox .btn_center { text-align:center; margin:0 1px; }
.btnbox .btn_right { text-align:right; margin:0 0 0 1px; }
.btnbox a.btn_co,
.btnbox button.btn_co { position:relative; display:inline-block; cursor:pointer; padding:0 12px; min-width:85px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:7px; }
.btnbox a.btn_cr_g,
.btnbox button.btn_cr_g { color:#fff; background-color:#06a9b7; }
.btnbox a.btn_cr_b,
.btnbox button.btn_cr_b { color:#fff; background-color:#999ea7; }
.btnbox button.w135 { width:135px; font-size:16px; font-weight:400; }
.btnbox .btn_apply:before { content:''; display:block; width:7px; height:9px; background:url(../img/contents/icon_btn_arr.png) center center no-repeat; position:absolute; right:18px; top:50%; transform:translateY(-50%);}
.btnbox .btn_apply span { display:inline-block; padding-right:15px; }
@media screen and (max-width:480px){
.btnbox button.w135 { width:100px; font-size:16px; font-weight:400; }
}
.tabsMenu { }
.tabsMenu ul {}
.tabsMenu ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.tabsMenu li { float:left; background-color:#eaeaea; border:1px solid #ddd; border-width:1px 1px 0 1px; border-radius:3px 3px 0 0; text-align:center; }
.tabsMenu li a { display:block; padding:8px 30px; min-width:70px; color:#888; font-size:15px; font-weight:400; font-family:'Noto Sans KR'; }
.tabsMenu li.ui-state-active { background-color:#fbc400; border:1px solid #d2a402; border-width:1px 1px 0 1px; }
.tabsMenu li.ui-state-active a { color:#fff; }
|
cb-webtool/src/webmoa/css/contents.css
|
@charset "utf-8";
.layerpopup { z-index:9999999 }
.layerpopup .modal-content { background:none; border:none; width:400px; margin:0 auto; padding:0 !important; }
.layerpopup .modal-content > div { position:relative; margin:0 !important; min-height:185px; padding:0 0 30px 0 !important; background-color:#fff; border-radius:10px; text-align:center; }
.layerpopup .modal-content .txt { padding:45px 0 0 0; font-size:20px; color:#5e636c; font-weight:300; line-height:26px; }
.layerpopup .modal-content .btnbox { margin:30px 0 0 0; }
.layerpopup .modal-content .btnbox button { margin:0 0 0 2px; display:inline-block; vertical-align:middle; cursor:pointer; width:145px; padding:12px 0; line-height:18px; border:none; font-size:18px; font-weight:300; color:#fff; outline:none; border-radius:5px; background-color:#06a9b7; }
.layerpopup .modal-content .btnbox button.btn_cancel { background-color:#999ea7; }
@media screen and (max-width:480px){
.layerpopup .modal-content { width:300px; }
.layerpopup .modal-content > div { min-height:170px; }
.layerpopup .modal-content .txt { padding:40px 0 0 0; font-size:18px; }
.layerpopup. modal-content .btnbox { margin:25px 0 0 0; }
.layerpopup .modal-content .btnbox button { width:115px; padding:10px 0; line-height:16px;font-size:16px; }
}
@media screen and (max-width:320px){
.layerpopup .modal-content { width:260px; }
.layerpopup .modal-content > div { min-height:160px; }
.layerpopup .modal-content .btnbox button { width:110px; }
}
.titlebox { position:relative; }
.titlebox .tit { color:#5e636c; font-size:30px; line-height:30px; font-weight:200; }
.titlebox .tit strong { font-weight:400; font-size:40px; line-height:40px; }
.titlebox .tit img { vertical-align:top; margin:4px 28px 0 0; }
.titlebox .location { position:absolute; bottom:0; right:0; font-weight:300; color:#5e636c; font-size:14px; line-height:15px; padding:0 0 0 23px; background:url(../img/common/icon_home.png) left 2px no-repeat;}
.titlebox .location span { font-weight:200; display:inline-block; margin:0 10px; }
.titlebox .location strong { font-weight:400; }
.dashboard { margin:33px 0 0 0; }
.dashboard:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .d_box { float:left; min-height:260px; margin:0 0 0 2.5%; background-color:#fff; border-radius:8px; box-shadow:5px 5px 8px 0 #d7dcde,0 -5px 8px 0 #d7dcde; }
.dashboard .d_box.box_1 { width:38%; margin:0; }
.dashboard .d_box.box_1.box_1m { width:52.5%; }
.dashboard .d_box.box_2 { width:12%; }
.dashboard .d_box.box_3 { width:45%; }
.dashboard .d_box.box_3.box_2m { width:45%; }
.dashboard .d_box.box_m1 { width:26.5%; margin:0; }
.dashboard .d_box.box_m1.box_1m { width:29.8%; }
.dashboard .d_box.box_m2 { width:26.5%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m2.box_2m { width:29.8%; }
.dashboard .d_box.box_m3 { width:6%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4 { width:39.2%; margin:0 0 0 0.6%; }
.dashboard .titbox { position:relative; height:59px; border-bottom:1px solid #e7ebee; margin:0 0 20px 0; }
.dashboard .titbox .tit { position:absolute; left:44px; top:50%; transform:translateY(-50%); color:#5e636c;font-size:16px; line-height:16px; font-weight:200; }
.dashboard .d_box.box_2 .tit { left:40px; }
.dashboard .d_box.box_m .titbox .tit { left:32px; }
.dashboard .d_box.box_m3 .titbox .tit { left:22px; }
.dashboard .titbox .tit span { font-weight:200; display:inline-block; margin:0 6px; }
.dashboard .titbox .tit span.stxt { font-weight:400; color:#06a9b7; font-size:18px; }
.dashboard .titbox .tit strong {font-weight:400; font-size:22px; line-height:22px; text-transform:uppercase; }
.dashboard .titbox .tit strong.stit { text-transform:capitalize;}
.dashboard .titbox .tit.initial strong { text-transform:capitalize; }
.dashboard .titbox .txt_ip { text-align:center; color:#5e636c; font-size:16px; font-weight:300; letter-spacing:1px; padding:25px 0 0 0; margin:0 0 0 8%; }
.dashboard .titbox .state { position:absolute; top:50%; right:29px; transform:translateY(-50%); width:13px; height:13px; border-radius:15px; }
.dashboard .d_box.box_m .titbox .state { right:20px; }
.dashboard .titbox .state.color_b { background: radial-gradient( #26c6d4, #0d8f9b, #06a9b7 ); }
.dashboard .titbox .state.color_y { background: radial-gradient( #fce697, #c09703, #ffc800 ); }
.dashboard .titbox .state.color_r { background: radial-gradient( #ff779d, #b00f3b, #fc1656 ); }
.dashboard .titbox .state.color_g { background: radial-gradient( #8598b9, #454a54, #5e636c ); }
.dashboard .box_cont { padding:0 0 20px 0; }
.dashboard .box_cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 60px; display:inline-block; color:#888; font-size:22px; line-height:22px; font-weight:300; letter-spacing:-1px; vertical-align:top; }
.dashboard .d_box.box_m .lbox { padding:42px 0 0 18px; }
.dashboard .box_cont .lbox strong { display:inline-block; margin:0 6px 0 0; color:#5e636c; font-size:70px; line-height:70px; font-weight:400; letter-spacing:-1px; }
.dashboard .box_cont .lbox strong.txt_3n { font-size:55px; line-height:75px; }
.dashboard .box_cont .lbox span { display:inline-block; margin:0 4px; font-weight:100; }
.dashboard .box_cont .rbox { float:right; padding:16px 55px 0 0; display:inline-block; vertical-align:top; }
.dashboard .d_box.box_m .rbox { padding:16px 20px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:76px; height:106px; border-radius:10px; display:inline-block; margin:0 0 0 10px; text-align:center;}
.dashboard .box_cont .rbox .numbox .num:first-child { margin:0; }
.dashboard .box_cont .rbox .numbox .num.boxrd { border-radius:40px; }
.dashboard .d_box.box_m .rbox .numbox .num { margin:0 0 0 1px; }
.dashboard .box_cont .rbox .numbox .num span { color:#fff; font-size:60px; line-height:60px; font-weight:400; display:inline-block; padding:36px 0 0 0; letter-spacing:-1px; }
.dashboard .box_cont .rbox .numbox .num span.txt_3n { font-size:40px; line-height:75px; }
.dashboard .box_cont .rbox .txt { margin:8px 0 0 0; text-align:right; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard .box_cont .cbox { float:left; width:calc(100% - 190px); margin:0 0 0 40px; vertical-align:top; }
.dashboard .box_cont .cbox .sc_box { height:128px; }
.dashboard .box_cont .cbox .tcbox { padding:0 0 8px 0 !important; }
.dashboard .d_box.box_m .cbox { width:calc(100% - 140px); margin:0 0 0 30px; }
.dashboard .box_cont .cbox ul { padding:0; }
.dashboard .box_cont .cbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .box_cont .cbox li { float:left; margin:0 15px 8px 0; width:88px; height:56px; text-align:center; color:#fff;font-size:16px; line-height:16px; font-weight:400; }
.dashboard .box_cont .cbox li span { padding:28px 0 0 0; color:#fff;font-size:16px; line-height:16px; font-weight:400; display:inline-block; }
.dashboard .box_cont .cbox li a { display:block; }
.dashboard .box_cont .cbox li.bg_b { background:url(../img/common/bg_db_1.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_y { background:url(../img/common/bg_db_2.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_r { background:url(../img/common/bg_db_3.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_g { background:url(../img/common/bg_db_4.png) center center no-repeat; }
.dashboard .box_cont .cbox li.bg_n { background:url(../img/common/bg_db_n.png) center center no-repeat; }
.dashboard .box_cont .cbox .txt { text-align:right; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard .num_txt { text-align:center; padding:53px 0 0 0; color:#5e636c;font-size:70px; line-height:70px; font-weight:400; }
.dashboard.dashboard_cont { margin:2.5% 0 0 0; }
.dashboard.dashboard_cont .d_box.box_b1 { width:62%; margin:0; min-height:440px; }
.dashboard.dashboard_cont .d_box.box_b2 { width:35.5%; min-height:440px; }
.dashboard.dashboard_cont .d_box.box_w100 { width:100%; margin:0; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 44px 2.5% 44px; text-align:center; }
.dashboard.dashboard_cont .d_box.box_b2 .map { border-radius:10px; background-color:#e7ebee; }
.dashboard.dashboard_cont .d_box.box_b2 .map img { max-width:400px; width:100%; }
.dashboard.dashboard_cont .top_info { position:absolute; top:50%; right:29px; transform:translateY(-50%); z-index:99; }
.dashboard.dashboard_cont .top_info > ul > li { position:relative; display:inline-block; margin:0 0 0 67px; color:#5e636c;font-size:14px; line-height:14px; font-weight:300; }
.dashboard.dashboard_cont .top_info > ul > li:before { content:''; display:block; width:8px; height:7px; background:url(../img/contents/icon_down.png) center center no-repeat; position:absolute; right:-14px; top:3px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:0 0 0 39px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child:before { background:none; }
.dashboard.dashboard_cont .top_info > ul > li a {color:#5e636c;font-size:14px; line-height:14px; }
.dashboard.dashboard_cont .top_info > ul > li img { vertical-align:middle; }
.dashboard.dashboard_cont .top_info > ul > li .infobox { display:none; position:absolute; left:50%; top:23px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
/*.dashboard.dashboard_cont .top_info > ul > li .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom: 7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }*/
.dashboard.dashboard_cont .top_info > ul > li .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; background:none; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box p { margin:0 0 5px 0; color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li { margin:8px 0 2px 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li:first-child { margin:0; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > strong { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul { padding:0 0 0 12px; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul > li { margin:8px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .top_info > ul > li .infobox .box > ul > li > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
.dashboard.dashboard_cont .ds_cont { padding:0 43px 2.5% 43px; margin-left:-13px; }
.dashboard.dashboard_cont .ds_cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .s_list {}
.dashboard.dashboard_cont .ds_cont .s_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .stitle { width:100%; clear:both; float:none; margin:1% 0 1% 13px; padding:25px 0 0 27px; font-size:16px; line-height:16px; color:#888; letter-spacing:-0.5px; font-weight:400; background:url(../img/contents/icon_file.png) left 25px no-repeat; }
.dashboard.dashboard_cont .ds_cont .stitle:first-child { padding:0 0 0 27px; background-position:left top; }
.dashboard.dashboard_cont .ds_cont .stitle span { margin:0 10px; display:inline-block; font-size:18px; line-height:18px; color:#dedede; letter-spacing:-1px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .stitle strong { font-size:18px; line-height:18px; color:#06a9b7; font-weight:500; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:252px; height:259px; border:1px solid #d8dee2; background-color:#e7ebee; border-radius:20px; margin:13px 0 0 13px; }
.dashboard.dashboard_cont .ds_cont .areabox.on,
.dashboard.dashboard_cont .ds_cont .areabox.active { border:1px solid #06a9b7; background-color:#fff; box-shadow:5px 5px 8px 0 #ededed,0 -5px 8px 0 #ededed; transition:all 0.4s ease-in-out; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 23px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top { position:relative; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox { position:relative; padding:0 0 0 50px; background:url(../img/contents/icon_disk.png) left top no-repeat; min-height:37px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .tit { color:#5e636c; font-size:18px; line-height:18px; font-weight:400; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .txt { margin:7px 0 0 0; color:#838890; font-size:14px; line-height:14px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .txtbox .txt > span { display:inline-block; width:6px; height:6px; margin:0 5px 0 3px; border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state { position:absolute; top:0; right:-10px; width:13px; height:13px; border-radius:15px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_b { background: radial-gradient( #26c6d4, #0d8f9b, #06a9b7 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_y { background: radial-gradient( #fce697, #c09703, #ffc800 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_r { background: radial-gradient( #ff779d, #b00f3b, #fc1656 ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .top .state.color_g { background: radial-gradient( #8598b9, #454a54, #5e636c ); }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox { margin:18px 0 0 0; color:#5e636c;font-size:16px; line-height:16px; font-weight:300; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox strong {font-size:20px; line-height:20px; font-weight:400; margin:0 10px 0 3px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox span.num {font-size:14px; line-height:14px; font-weight:400; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox span.line { margin:0 4px; color:#888;font-size:14px; line-height:14px; font-weight:200; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numinfo { margin:10px 0 0 -4px; height:21px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numinfo .num { text-align:center; display:inline-block; padding:3px 0; color:#838890;font-size:14px; line-height:13px; font-weight:200; border:1px solid #e9edf0; border-radius:3px; width:47%; margin:0 0 0 4px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox { padding:6px 0 0 0; margin-left:-6px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot { float:left; margin:6px 0 0 6px; width:36px; height:48px; border-radius:10px; text-align:center; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot span { padding:16px 0 0 0; color:#fff;font-size:24px; line-height:24px; font-weight:400; display:inline-block; }
.dashboard.dashboard_cont .ds_cont .areabox .box .shotbox .shot a { display:block; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add { position:relative; display:block; height:226px;}
.dashboard.dashboard_cont .ds_cont .areabox .btn_add:after { content:''; display:block; width:12px; height:64px; background-color:rgba(0,0,0, .5); position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add:before { content:''; display:block; width:64px; height:12px; background-color:rgba(0,0,0, .5); position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); border-radius:10px; }
.dashboard.dashboard_cont .ds_cont .areabox .btn_add span { overflow:hidden; text-indent:-9999em; display:block; }
@media screen and (max-width:1785px){
.dashboard .d_box.box_1 { width:70%; }
.dashboard .d_box.box_2 { width:27.5%; }
.dashboard .d_box.box_3,
.dashboard .d_box.box_1.box_1m,
.dashboard .d_box.box_3.box_2m { width:100%; margin:2.5% 0 0 0; }
.dashboard .d_box.box_m1 { width:40%; margin:0; }
.dashboard .d_box.box_m2 { width:40%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m3 { width:18.8%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4 { width:100%; margin:0.6% 0 0 0; }
.dashboard .d_box.box_m1.box_1m { width:49.7%; }
.dashboard .d_box.box_m2.box_2m { width:49.7%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m4.box_3m { width:100%; margin:0.6% 0 0 0; }
.dashboard.dashboard_cont .d_box.box_b1 { width:100%; margin:0; min-height:auto; }
.dashboard.dashboard_cont .d_box.box_b2 { width:100%; margin:2.5% 0 0 0; min-height:auto; }
}
@media screen and (max-width:1600px){
.dashboard .titbox .txt_ip { text-align:left; margin:0; padding:52px 0 0 0; }
}
@media screen and (max-width:1400px){
.dashboard .d_box.box_m1 { width:49.7%; margin:0; }
.dashboard .d_box.box_m2 { width:49.7%; margin:0 0 0 0.6%; }
.dashboard .d_box.box_m3 { width:15.8%; margin:0.6% 0 0 0; }
.dashboard .d_box.box_m4 { width:83.6%; margin:0.6% 0 0 0.6%; }
}
@media screen and (max-width:1200px){
.dashboard .titbox .tit { left:30px; }
.dashboard .d_box.box_2 .tit { left:26px; }
.dashboard .d_box.box_m .titbox .tit { left:26px; }
.dashboard .d_box.box_m3 .titbox .tit { left:18px; }
.dashboard .d_box.box_m1 { width:100%; margin:0; }
.dashboard .d_box.box_m2 { width:100%; margin:1% 0 0 0; }
.dashboard .d_box.box_m3 { width:15.8%; margin:1% 0 0 0; }
.dashboard .d_box.box_m4 { width:83.6%; margin:1% 0 0 0.6%; }
.dashboard .d_box.box_m1.box_1m { width:100%; margin:0; }
.dashboard .d_box.box_m2.box_2m { width:100%; margin:1% 0 0 0; }
.dashboard .d_box.box_m4.box_3m { width:100%; margin:1% 0 0 0; }
.dashboard .titbox .state { right:20px; }
.dashboard .d_box.box_m .titbox .state { right:15px; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 40px; }
.dashboard .box_cont .rbox { float:right; padding:16px 40px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 8px; }
.dashboard .box_cont .cbox { width:calc(100% - 190px); margin:0 0 0 10px; }
.dashboard.dashboard_cont .top_info { right:20px; }
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 45px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 30px 3% 30px; }
.dashboard.dashboard_cont .ds_cont { padding:0 30px 2.5% 30px; }
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:768px){
.titlebox .location span { margin:0 6px; }
.dashboard { margin:28px 0 0 0; }
.dashboard .d_box.box_1 { width:100%; }
.dashboard .d_box.box_2 { width:100%; margin:2.5% 0 0 0;}
.dashboard .d_box.box_m2 { width:100%; margin:2% 0 0 0; }
.dashboard .d_box.box_m3 { width:100%; margin:2% 0 0 0; min-height:160px; }
.dashboard .d_box.box_m4 { width:100%; margin:2% 0 0 0; }
.dashboard .titbox .tit { left:20px; }
.dashboard .d_box.box_2 .tit { left:20px; }
.dashboard .d_box.box_m .titbox .tit { left:20px; }
.dashboard .d_box.box_m3 .titbox .tit { left:20px; }
.dashboard .titbox .state { right:15px; }
.dashboard .num_txt { padding:10px 0 20px 0; }
.dashboard .box_cont .lbox { float:left; padding:42px 0 0 20px; }
.dashboard .box_cont .rbox { float:right; padding:16px 20px 0 0; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 6px; }
.dashboard .box_cont .cbox { width:calc(100% - 135px); margin:0 0 0 10px; }
.dashboard.dashboard_cont .top_info { right:15px; }
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 30px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:0 0 0 20px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { padding:2% 20px 3% 20px; }
.dashboard.dashboard_cont .ds_cont { padding:0 20px 2.5% 20px; margin-left:-10px; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:244px; height:259px; margin:10px 0 0 10px; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 19px; }
}
@media screen and (max-width:640px){
.titlebox .location { position:absolute; bottom:0; right:0; }
.titlebox .tit { padding:0 0 30px 0; text-align:center; font-size:24px; line-height:24px; }
.titlebox .tit strong { font-size:34px; line-height:34px; }
.titlebox .tit img { margin:4px 24px 0 0; }
.dashboard { margin:20px 0 0 0; }
.dashboard .titbox .tit { left:15px; }
.dashboard .titbox .tit span { margin:0 3px; }
.dashboard .titbox .tit span:nth-of-type(1) { display:block; margin:0 3px 0 0; width:0; height:0; overflow:hidden; text-indent:-9999em; }
.dashboard .titbox .tit span.stxt { display:inline-block; margin:0 0 0 10px; font-size:14px; width:auto; height:auto; text-indent:0; vertical-align:bottom; }
.dashboard .d_box.box_m .titbox .tit { left:15px; }
.dashboard .d_box.box_2 .tit { left:15px; }
.dashboard .titbox .state { right:15px; }
.dashboard .box_cont .lbox { float:none; clear:both; display:block; padding:0 20px 0 20px; text-align:center; }
.dashboard .d_box.box_m .lbox { padding:0 20px 0 20px; }
.dashboard .box_cont .rbox { float:none; clear:both; display:block; padding:10px 20px 0 20px; text-align:center; }
.dashboard .d_box.box_m .rbox { padding:10px 20px 0 20px; }
.dashboard .box_cont .rbox .numbox .num { width:70px; height:106px; margin:0 0 0 6px; }
.dashboard .box_cont .cbox { width:100%; margin:8px 0 0 0; padding:0 15px 0 0; }
.dashboard .d_box.box_m .cbox { width:100%; margin:8px 0 0 0; padding:0 15px 0 0; }
.dashboard .box_cont .cbox li { margin:0 0 8px 15px; }
.dashboard.dashboard_cont .top_info { margin-top:4px; }
.dashboard.dashboard_cont .top_info > ul { margin:0 25px 0 0;}
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 25px; }
.dashboard.dashboard_cont .top_info > ul > li:last-child { margin:-40px -18px 0 0; display:block; text-align:right; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { margin:2% 20px 3% 20px; }
.dashboard.dashboard_cont .ds_cont { padding:0 20px 2.5% 20px; margin-left:0; }
.dashboard.dashboard_cont .ds_cont .stitle { margin:4% 0 1% 0; }
.dashboard.dashboard_cont .ds_cont .areabox { position:relative; float:left; width:100%; height:259px; margin:10px 0 0 0; }
.dashboard.dashboard_cont .ds_cont .areabox .box { padding:15px 19px; }
.dashboard.dashboard_cont .ds_cont .areabox .box .numbox { text-align:center; }
}
@media screen and (max-width:320px){
.titlebox .tit { font-size:24px; line-height:24px; }
.titlebox .tit strong { font-size:34px; line-height:34px; }
.titlebox .tit img { margin:4px 20px 0 0; }
.dashboard .box_cont .cbox { width:100%; margin:0; padding:0 0 0 0; margin-left:-2px;}
.dashboard.dashboard_cont .top_info > ul { margin:0 15px 0 0;}
.dashboard.dashboard_cont .top_info > ul > li { margin:0 0 0 20px; }
.dashboard .box_cont .cbox li { margin:8px 0 0 5px; }
.dashboard.dashboard_cont .d_box.box_b2 .mapcont { margin:2% 15px 3% 15px; }
.dashboard.dashboard_cont .ds_cont { padding:0 15px 2.5% 15px; margin-left:0; }
}
.dataTable { padding:0 0 0 1%; }
.dataTable table { width:100%; border-collapse:collapse; background-color:#fff; }
.dataTable thead th { padding:14px 5px; color:#fff; font-size:18px; font-weight:300; text-align:center; border-right:1px solid #ccc; background-color:#5e636c; }
.dataTable thead th:last-child { border-right:none; }
.dataTable thead th input[type="checkbox"] { display:none }
.dataTable thead th input[type="checkbox"] + label { cursor:pointer; display:inline-block; margin:0; width:26px; height:26px; vertical-align:middle; background:url(../img/contents/btn_chtd1_off.png)center center no-repeat; }
.dataTable thead th input[type="checkbox"]:checked + label { background:url(../img/contents/btn_chtd1_on.png) center center no-repeat; }
.dataTable thead th span { color:rgba(255,255,255,0.4); font-size:14px; line-height:14px; display:block; margin:6px 0 0 0; }
.dataTable tbody td { position:relative; padding:16px 5px; color:#5e636c; font-size:16px; font-weight:300; text-align:center; letter-spacing:-0.5px; border:1px solid #ccc; border-width:1px 1px 1px 0; }
.dataTable tbody td:last-child { border-right:none; }
.dataTable tbody tr:first-child td { border-top:none; }
.dataTable tbody td span.bar { display:inline-block; margin:0 8px; }
.dataTable tbody td.td_left { padding:16px 10px; text-align:left; }
.dataTable tbody td img { vertical-align:middle; }
.dataTable tbody td img.icon { display:inline-block; margin:0 5px 0 0; }
.dataTable tbody tr:hover td,
.dataTable tbody tr.on td { background:rgba(94,99,108,.05); cursor:pointer; }
.dataTable tbody td input[type="checkbox"] { display:none }
.dataTable tbody td input[type="checkbox"] + label { cursor:pointer; display:inline-block; margin:0; width:26px; height:26px; vertical-align:middle; background:url(../img/contents/btn_chtd2_off.png)center center no-repeat; }
.dataTable tbody td input[type="checkbox"]:checked + label { background:url(../img/contents/btn_chtd2_on.png) center center no-repeat; }
.dataTable tbody td .bubble_box {}
.dataTable tbody td .bubble_box .box { display:inline-block; position:relative; }
.dataTable tbody td .bubble_box .box .s_txt { text-decoration:underline;}
.dataTable tbody td .bb_info { display:none; text-align:center; position:absolute; z-index:99; top:24px; left:50%; transform:translateX(-50%); padding:12px 15px; width:140px; font-size:13px; background-color:#5e636c; color:#fff; border-radius:3px; }
.dataTable tbody td .bb_info:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:5px solid transparent; border-left:5px solid transparent; }
.dataTable tbody td .td_icon { display:inline-block; vertical-align:middle; margin:0 0 0 10px; }
@media screen and (max-width:1800px){
.dataTable.scrollbar-inner { max-width:100%; overflow:hidden !important; overflow-x:auto !important; }
.dataTable.scrollbar-inner table { width:1300px; }
.table_plist .dataTable.scrollbar-inner { max-width:100%; overflow:hidden !important; overflow-x:auto !important; }
.table_plist .dataTable.scrollbar-inner table { width:100%; }
}
@media screen and (max-width:1600px){
.table_plist .dataTable.scrollbar-inner table { width:400px; }
}
@media screen and (max-width:900px){
.table_plist .dataTable.scrollbar-inner table { width:100%; }
}
@media screen and (max-width:768px){
.dataTable { width:100% !important; padding:0; border-top:1px solid #ccc; }
.dataTable.scrollbar-inner { max-width:100%; overflow:auto; }
.dataTable.scrollbar-inner table { width:100% }
.dataTable table { width:100% !important;; }
.dataTable col { width:100% !important; }
.dataTable colgroup { display:none; }
.dataTable th { display:none; }
.dataTable table tbody td { position:relative; display:block; text-align:left; min-height:48px; border:none; color:#5e636c; border-bottom:1px solid #e9e9e9; transition:all 0.4s ease-in-out; }
.dataTable table tbody td,
.dataTable table tbody td.td_left { padding:1.0em 0 1.0em 43% !important; transition-duration:.3s; font-size:15px; }
.dataTable table tbody td:before { position:absolute; left:0; top:0; bottom:0; content:attr(data-th)""; display: inline-block; width:40% !important; min-height:47px; padding:1.0em 0 1.0em 1.0em; font-size:15px; color:#fff; font-weight:300; background-color:#7c818a; }
.dataTable table tbody tr:nth-child(even) td:before { }
.dataTable table tbody td img.icon { margin:-3px 5px -3px 0; }
.dataTable table tbody td:last-child { border-bottom:1px solid #ccc; }
.dataTable table tbody tr:first-child td.over.ovm { border-top:none; }
.dataTable table tbody td:first-child:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.dataTable table tbody td.ovm:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.dataTable table tbody td.over.ovm:before { background-color:#7c818a; padding-left:1.0em; font-size:15px; }
.dataTable table tbody td.ovm { border-bottom:1px solid #ccc; }
.dataTable table tbody td.btn_mtd.ovm{ border-bottom:1px solid #e9e9e9; padding-right:30px !important; }
.dataTable table tbody td.btn_mtd.over { padding-right:5px !important; }
.dataTable table tbody td.on:first-child { border-bottom:1px solid #ccc; }
.dataTable.dt_overlay table tbody td:first-child { border-bottom:1px solid #ccc; }
.dataTable.dt_overlay table tbody td.over:first-child { border-bottom:1px solid #e9e9e9; }
.dataTable table tbody td.over { border-bottom:1px solid #e9e9e9; }
.dataTable table tbody td.hidden { display:none; transition:all 0.4s ease-in-out; transition-duration:.3s; }
.dataTable table tbody td.over span.ov:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over.ovm span.ov:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over.ovm span.ov { opacity:0; right:-99999em; }
.dataTable table tbody td.ovm span.ov:after { transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td.overlay.hidden span.off:after { transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td.overlay span.off:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td span.ov { position:absolute; top:0; right:0; width:55px; height:50px; }
.dataTable table tbody td span.ov:after { content:''; display:block; position:absolute; right:10px; top:43%; z-index:1; transform:translateY(-50%); width:13px; height:8px; background:url(../img/contents/icon_down_l.png) right center no-repeat; transform:rotate(0deg); transition-duration:.3s; }
.dataTable table tbody td span.ov.up:after { transform:rotate(-180deg); transition-duration:.3s; }
.dataTable table tbody td.over span.ov.up:after { transform:rotate(0deg); transition-duration:.3s; }
.first_over.dataTable table tbody td.over.ovm span.ov { opacity:1; right:0; }
.first_over.dataTable table tbody td:first-child:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
.first_over.dataTable table tbody td.ovm:before { background-color:#5e636c; padding-left:0.6em; font-size:16px; }
}
.pageing { text-align:center; margin:30px 0 0 0; }
.pageing > a { vertical-align:middle; display:inline-block; margin:0 8px; color:#b6bac0; font-size:14px; font-weight:300; }
.pageing > a.active { color:#5e636c; font-weight:500; }
.pageing .btn_prev,
.pageing .btn_next { position:relative; overflow:hidden; text-indent:-999em; margin:0 22px; width:20px; height:20px; border:1px solid #b8bcc1; border-radius:30px; }
.pageing .btn_prev { background:url(../img/contents/icon_arr_l.png) center center no-repeat; }
.pageing .btn_prev:hover { border:1px solid #5e636c; background:#5e636c url(../img/contents/icon_arr_l_on.png) center center no-repeat; }
.pageing .btn_next { background:url(../img/contents/icon_arr_r.png) center center no-repeat; }
.pageing .btn_next:hover { border:1px solid #5e636c; background:#5e636c url(../img/contents/icon_arr_r_on.png) center center no-repeat; }
@media screen and (max-width:480px){
.pageing { text-align:center; margin:30px 0 30px 0; }
}
.dashboard .ds_cont .iparea { position:relative; padding:0 0 0 100px; }
.dashboard.dashboard_detail .ds_cont .iparea { padding:0; }
.dashboard .ds_cont .iparea:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .ds_cont .iparea .iconbox { position:absolute; left:0; width:100px; height:100px; margin-top:-6px; border:1px dashed #ccc; border-radius:10px; text-align:center; background-color:#fff; }
.dashboard .ds_cont .iparea .iconbox .img { position:absolute; left:50%; top:50%; transform:translate(calc(-50% + 0.5px), calc(-50% + 0.5px)); }
.dashboard .ds_cont .iparea .iconbox .img img { max-width:100px; }
.dashboard.dashboard_detail .ds_cont .iparea .iconbox { position:absolute; left:0; width:100px; height:100px; margin:0; border:none; border-radius:10px; text-align:center; background-color:#f8f9fa; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:40px; }
.dashboard .ds_cont .iparea .iconbox span.txt { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#888; font-size:14px; line-height:18px; letter-spacing:-0.5px; font-family: 'Noto Sans KR', sans-serif; }
.dashboard .ds_cont .iparea .iconbox input[type="file"] { border:none; }
.dashboard .ds_cont .iparea .iconbox .btn_file { position:relative; z-index:99; display:block; cursor:pointer; width:100px; height:100px; border:none; outline:none; background:none; }
.dashboard .ds_cont .iparea .iconbox .file_ip_hidden { display:none; }
.dashboard .ds_cont .iparea .boxlist { float:left; }
.dashboard .ds_cont .iparea .ip1 { width:30%; }
.dashboard .ds_cont .iparea .ip2 { width:32%; }
.dashboard .ds_cont .iparea .ip3 { width:38%; float:right; }
.dashboard .ds_cont .iparea .d_ip1 { width:29%; }
.dashboard .ds_cont .iparea .d_ip2 { width:17%; }
.dashboard .ds_cont .iparea .d_ip3 { width:23%; }
.dashboard .ds_cont .iparea .d_ip4 { width:31%; }
.dashboard .ds_cont .iparea .ipbox { position:relative; }
.dashboard .ds_cont .iparea .ipbox li { margin:3px 0 0 0; text-align:right; }
.dashboard .ds_cont .iparea .ipbox li:first-child { margin:0; }
.dashboard .ds_cont .iparea .ipbox label { display:inline-block; vertical-align:middle; text-align:right; margin:0 14px 0 0; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .ds_cont .iparea .ipbox label.ta { vertical-align:top; margin-top:6px; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { display:inline-block; vertical-align:middle; width:50%; height:38px; padding:15px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .ds_cont .iparea .ipbox textarea { resize:none; display:inline-block; vertical-align:middle; width:50%; height:120px; padding:8px 12px; border:none; border-radius:5px; line-height:20px; font-size:16px; line-height:18px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .ds_cont .iparea .ipbox textarea.ta_line { border:1px solid #f4f4f4; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"] { width:45%; font-size:15px; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"] { width:55%; }
.dashboard .ds_cont .iparea .ipbox textarea { resize:none; width:45%; font-size:15px; }
.dashboard .ds_cont .iparea .ipbox ::-webkit-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-moz-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-moz-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-ms-input-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-webkit-select-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-moz-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox ::-moz-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .iparea .ipbox :-ms-select-placeholder { color:#888; opacity:1; font-weight:200; }
.dashboard .ds_cont .area_cont { background-color:#f8f9fa; border-radius:10px; }
.dashboard .ds_cont .area_cont .box { padding:35px 50px 40px 50px; }
.dashboard .ds_cont .area_cont .box .titbox { border:none; }
.dashboard .ds_cont .area_cont .box .titbox .tit { left:0; }
.dashboard .ds_cont .area_cont .box .titbox .top_info { right:0; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:0 0 0 67px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child:before { background:url(../img/contents/icon_down.png) center center no-repeat; }
.dashboard .ds_cont .area_cont .listbox { overflow:auto; height:135px;}
.dashboard .ds_cont .area_cont .listbox ul { margin:-6px 0 0 -6px; padding:4px 0; }
.dashboard .ds_cont .area_cont .listbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .ds_cont .area_cont .listbox li { position:relative; float:left; margin:6px 0 0 6px; height:60px; width:127px; background-color:#fff; border:1px solid #e1e1e1; border-radius:8px; text-align:center; transition:all 0.2s ease-in-out; }
.dashboard .ds_cont .area_cont .listbox li span { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#5e636c; font-size:16px; line-height:16px; font-weight:400; letter-spacing:-0.5px; }
.dashboard .ds_cont .area_cont .listbox li a { display:block; width:100%; height:60px; border-radius:8px; }
.dashboard .ds_cont .area_cont .listbox li a span { color:#fff; }
.dashboard .ds_cont .area_cont .listbox li.active { transition:all 0.2s ease-in-out; box-shadow:2px 2px 3px 0 #b2b5b6,0 -2px 3px 0 #b2b5b6; }
/* .dashboard .ds_cont .area_cont .listbox li.active:before { content:''; display:block; width:15px; height:4px; background:url(../img/contents/icon_point.png) center center no-repeat; position:absolute; right:6px; top:6px; } */
.dashboard .ds_cont .area_cont .listbox li.active:before { content:''; display:block; width:15px; height:13px; background:url(../img/contents/icon_ch_on.png) center center no-repeat; position:absolute; right:5px; top:4px; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_g { border:4px solid #364153; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_r { border:4px solid #a2032f; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_b { border:4px solid #0499a5; }
.dashboard .ds_cont .area_cont .listbox li.active.bgbox_y { border:4px solid #b28c03; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_g { background-color:#5e636c; border:4px solid #5e636c; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_r { background-color:#fc1656; border:4px solid #fc1656; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_b { background-color:#06a9b7; border:4px solid #06a9b7; }
.dashboard .ds_cont .area_cont .listbox li.bgbox_y { background-color:#ffc800; border:4px solid #ffc800; }
@media screen and (max-width:1755px){
.dashboard .ds_cont .iparea .d_ip1 { width:45%; }
.dashboard .ds_cont .iparea .d_ip2 { width:55%; }
.dashboard .ds_cont .iparea .d_ip3 { width:45%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .d_ip4 { width:55%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:50%; }
}
@media screen and (max-width:1550px){
.dashboard .ds_cont .iparea .ipbox label { margin:0 10px 0 0; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:40%; }
.dashboard .ds_cont .iparea .ip1 { width:50%; }
.dashboard .ds_cont .iparea .ip2 { width:50%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:50%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:right; width:50%;}
}
@media screen and (max-width:1400px){
.dashboard .ds_cont .iparea .d_ip1,
.dashboard .ds_cont .iparea .d_ip2,
.dashboard .ds_cont .iparea .d_ip3,
.dashboard .ds_cont .iparea .d_ip4 { width:100%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
}
@media screen and (max-width:1280px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:70%; }
.dashboard .ds_cont .iparea .ipbox label span { display:block; }
.dashboard .ds_cont .iparea .ip1 { width:100%; }
.dashboard .ds_cont .iparea .ip2 { width:100%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:3px 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:100%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:left; width:100%;}
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:0; }
}
@media screen and (max-width:1024px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:60%; }
.dashboard .ds_cont .iparea .ip1 { width:50%; }
.dashboard .ds_cont .iparea .ip2 { width:50%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:0 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:50%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:right; width:50%;}
.dashboard .ds_cont .area_cont .box { padding:15px 30px 30px 30px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:50px 0 0 40px; }
.dashboard .ds_cont .iparea .d_ip1 { width:45%; }
.dashboard .ds_cont .iparea .d_ip2 { width:55%; }
.dashboard .ds_cont .iparea .d_ip3 { width:45%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .d_ip4 { width:55%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:45%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:30px; }
}
@media screen and (max-width:920px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:70%; }
.dashboard .ds_cont .iparea .ip1 { width:100%; }
.dashboard .ds_cont .iparea .ip2 { width:100%; margin:3px 0 0 0; }
.dashboard .ds_cont .iparea .ip3 { width:100%; margin:3px 0 0 0; float:left; }
.dashboard .ds_cont .iparea .ip3 li:nth-child(1) { float:left; width:100%;}
.dashboard .ds_cont .iparea .ip3 li:nth-child(2) { float:left; width:100%;}
.dashboard .ds_cont .area_cont .listbox { overflow:auto; height:265px; }
.dashboard .ds_cont .iparea .d_ip1,
.dashboard .ds_cont .iparea .d_ip2,
.dashboard .ds_cont .iparea .d_ip3,
.dashboard .ds_cont .iparea .d_ip4 { width:100%; margin:3px 0 0 0; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:63%; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { left:0px; }
}
@media screen and (max-width:640px){
.dashboard.dashboard_detail .titbox .tit strong { display:block; }
.dashboard.dashboard_detail .titbox .tit span.stxt { margin-left:0; }
.dashboard .ds_cont .iparea { position:relative; padding:0; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:50%; }
.dashboard .ds_cont .area_cont .box .titbox { margin:0 0 30px 0; }
.dashboard .ds_cont .area_cont .box { padding:10px 20px 20px 20px; }
.dashboard .ds_cont .area_cont .box .titbox .top_info > ul > li:last-child { margin:60px 0 0 40px; display:inline-block; }
.dashboard .ds_cont .area_cont .listbox li { width:31%; }
}
@media screen and (max-width:480px){
.dashboard .ds_cont .iparea { position:relative; padding:0; margin:0 0 10px 0; }
.dashboard .ds_cont .iparea .iconbox,
.dashboard.dashboard_detail .ds_cont .iparea .iconbox { position:relative; left:0; margin:0 auto 10px auto; }
.dashboard.dashboard_detail .ds_cont .iparea .d_ip4 .iconbox { margin-top:15px; }
.dashboard .ds_cont .iparea .ipbox {}
.dashboard .ds_cont .iparea .ipbox label { font-size:13px; }
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:60%; }
.dashboard .ds_cont .area_cont .box { padding:10px 10px 10px 10px; }
.dashboard .ds_cont .area_cont .listbox li { width:47%; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:60%; }
}
@media screen and (max-width:320px){
.dashboard .ds_cont .iparea .ipbox input[type="text"],
.dashboard .ds_cont .iparea .ipbox input[type="password"] { width:50%; }
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="text"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox.d_ip2 input[type="password"],
.dashboard.dashboard_detail .ds_cont .iparea .ipbox textarea { width:50%; }
}
.dashboard.server_status { display:none; transition:all 0.4s ease-in-out; }
.dashboard.server_status.view { display:block; transition:all 0.4s ease-in-out; }
.dashboard.server_info { display:none; transition:all 0.4s ease-in-out; }
.dashboard.server_info.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .switch { height:22px; display:block; position:relative; }
.dashboard .switch span.txt { display:inline-block; vertical-align:middle; margin:-4px 16px 0 0; color:#5e636c; font-size:15px; line-height:15px; font-weight:400; }
.dashboard .switch label { cursor:pointer; display:inline-block; vertical-align:middle; margin:0; }
.dashboard .switch input { display:none; }
.dashboard .switch input + span { padding-left:45px; min-height:22px; line-height:22px; display:block; color:#3f4656; position:relative; white-space:nowrap; }
.dashboard .switch input + span:not(:empty) { padding-left:46px; }
.dashboard .switch input + span:before, .switch input + span:after { content:""; display:block; position:absolute; border-radius:25px; }
.dashboard .switch input + span:before { top:0; left:0; width:45px; height:22px; border:none; background:#5e636c; -webkit-transition:all 0.3s ease; transition:all 0.3s ease; box-shadow:2px 3px 5px 0 inset #43474e, -2px -2px 6px 0 inset #43474e; }
.dashboard .switch input + span:after { width:22px; height:22px; background:#fff; top:0; left:0; border:1px solid #8e8e8f; box-shadow:0 3px 5px 0 inset #c5c5c5, -2px -2px 6px 0 inset #c5c5c5;
-webkit-transition:all 0.45s ease;
transition:all 0.45s ease;
}
.dashboard .switch input + span + svg { display:none; }
.dashboard .switch input:checked + span:before { background:#06a9b7; border-color:#8d8e8f; }
.dashboard .switch input:checked + span:after { background:#fff;
-webkit-transform:translate(23px, 0);
transform:translate(23px, 0);
}
.dashboard .switch:hover input:not(:checked) + span:before { border:none; }
#monitoring_box .modal-dialog { max-width:100%; width:auto; display:block; padding:0 !important; }
#monitoring_box .modal-content { max-width:728px; margin:0 auto; padding:0 !important; }
#monitoring_box .modal-body { padding:35px 30px 30px 30px !important; }
#monitoring_box .modal-body .titbox { padding:10px 0 0 0; margin:0; height:auto; }
#monitoring_box .modal-body .titbox .tit { font-size:18px; color:#5e636c; line-height:18px; font-weight:400; }
#monitoring_box .modal-body .pop-body .pop-cont { margin:28px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select { width:150px; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"] { display:inline-block; vertical-align:middle; width:150px; height:38px; padding:15px 12px; border:1px dashed #ccc; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { resize:none; display:inline-block; vertical-align:middle; width:304px; height:100px; padding:8px 12px; border:1px dashed #ccc; border-radius:5px; line-height:20px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li span.stxt { display:inline-block; margin:0 0 0 24px; color:#2635ff; font-size:15px; font-weight:200; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip .file_ip_hidden { display:none; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label { width:42px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:128px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 { width:210px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:450px; }
#monitoring_box .modal-body .pop-body .pop-cont .ip3,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:30px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:right; }
@media screen and (max-width:920px){
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:26%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:100%; text-align:right; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .sel1 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select,
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { width:68%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="password"] { width:30%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li .sbox { display:inline-block; margin-left:-4px; width:38%; text-align:left; }
}
@media screen and (max-width:480px){
.dashboard .switch span.txt { margin:-4px 10px 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1 li label,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 li label { width:100%; margin:5px 0 3px 0; text-align:left; }
#monitoring_box .modal-body .pop-body .pop-cont .ip1,
#monitoring_box .modal-body .pop-body .pop-cont .ip2 { width:100%; text-align:left; }
#monitoring_box .modal-body .pop-body .pop-cont .ip3 { margin:15px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .ip2,
#monitoring_box .modal-body .pop-body .pop-cont .ip4 { float:left; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li .nice-select { width:100%; margin:3px 0 0 0; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li input[type="password"],
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li textarea { width:100%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="text"],
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li input[type="password"] { width:60%; }
#monitoring_box .modal-body .pop-body .pop-cont .ip4 li .sbox { margin-left:0; width:auto; }
#monitoring_box .modal-body .pop-body .pop-cont .pop_ip li span.stxt { margin:0 0 0 5px; }
}
.dashboard .tabbox { margin:15px 0 0 0; }
.dashboard .tabbox .nav:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .nav li { position:relative; z-index:9; float:left; margin:0 4px 0 0;}
.dashboard .tabbox .nav li a { position:relative; color:#5e636c; text-align:center; padding:16px 0 0 0; font-size:16px; line-height:16px; height:47px; width:128px; font-weight:400; display:block; box-shadow:2px 2px 5px 0 #eeeff0, -3px -3px 5px 0 #eeeff0; background-color:#e0e3e6; border-radius:10px 10px 0 0; }
.dashboard .tabbox .nav li a.active { background-color:#fff; box-shadow:0 0 0 0 #eeeff0, -3px -3px 5px 0 #eeeff0; }
.dashboard .tabbox .tab-content { margin:0; position:relative; z-index:6; padding:40px 45px; background-color:#fff; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; border-radius:0 10px 10px 10px;}
.dashboard .tabbox .tab-content .top_tit { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; margin-bottom:-8px; }
.dashboard .tabbox .tab-content .tab_ipbox { margin:0; }
.dashboard .tabbox .tab-content .tab_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox { float:left; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li { margin:3px 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .nice-select { width:150px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip { display:inline-block; vertical-align:middle; height:38px; padding:10px 12px; border:none; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:52%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:65%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 { width:43%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 { width:57%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:50%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label { width:120px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox span.stxt { display:inline-block; margin:0 0 0 2px; color:#5e636c; font-size:15px; font-weight:200; }
.dashboard .tabbox .tab-content .tab_map { margin:40px 0 0 0; background-color:#f8f9fa; border-radius:7px; }
.dashboard .tabbox .tab-content .tab_map img { width:100%; }
.dashboard .tabbox .tab-content .graph_list { margin:45px -10px 0 -10px; }
.dashboard .tabbox .tab-content .graph_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .tabbox .tab-content .graph_list .glist { float:left; margin:28px 0 0 0; width:33.3%; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox { cursor:pointer; margin:0 10px 0 10px; background-color:#fff; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; border-radius:10px;}
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox { position:relative; height:50px; background-color:#5e636c; border-radius:12px 10px 0 0; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .tit { width:50%; height:40px; text-align:center; color:#5e636c; font-weight:400; line-height:40px; font-size:16px; background-color:#fff; border-radius:10px 10px 0 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .txt { position:absolute; right:15px; text-align:right; width:45%; top:50%; transform:translateY(-50%); color:#fff; font-weight:200;font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .graph { position:relative; margin-top:-10px; padding:40px 23px 20px 23px; background-color:#fff; border-radius:0 10px 0 0; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .graph img { width:100%; }
.dashboard .g_detail_view { display:none; transition:all 0.4s ease-in-out; margin:30px 0 0 0; padding:40px 45px 25px 45px; background-color:#fff; border-radius:10px; box-shadow:2px 2px 5px 0 #f0f1f2, -2px -2px 5px 0 #f0f1f2; }
.dashboard .g_detail_view.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .g_detail_view .top_tit { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; }
.dashboard .g_detail_view .view_ip { padding:37px 0 0 0; }
.dashboard .g_detail_view .view_ip:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .g_detail_view .view_ip ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .g_detail_view .view_ip > ul > li { float:left; margin:3px 0 0 0; text-align:right; }
.dashboard .g_detail_view .view_ip li.m1 { width:40%; }
.dashboard .g_detail_view .view_ip li.m2 { width:32%; }
.dashboard .g_detail_view .view_ip li.m3 { width:28%;}
.dashboard .g_detail_view .view_ip li.m4 { width:50%;}
.dashboard .g_detail_view .view_ip li.m5 { width:50%;}
.dashboard .g_detail_view .view_ip li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .g_detail_view .view_ip li.m1 label { width:135px; }
.dashboard .g_detail_view .view_ip li.m3 label { width:110px; }
.dashboard .g_detail_view .view_ip li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.dashboard .g_detail_view .view_ip li input[type="text"],
.dashboard .g_detail_view .view_ip li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select { width:65%; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { width:120px; }
.dashboard .g_detail_view .view_ip li.m3 span.sbox:nth-child(2) .nice-select { width:193px; }
.dashboard .g_detail_view .view_ip li.m3 input[type="text"],
.dashboard .g_detail_view .view_ip li.m3 input[type="password"] { width:70px; }
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:75%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:60%; }
.dashboard .g_detail_view .view_ip li span.sbox { margin:3px 0 0 0; display:block; text-align:right; }
.dashboard .g_detail_view .view_ip li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.dashboard .g_detail_view .view_ipbox .graphbox { margin:30px 0 0 0; background-color:#f8f9fa; border-radius:10px; }
.dashboard .g_detail_view .view_ipbox .graphbox img { width:100%; border-radius:10px; }
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:50%; }
.dashboard .g_detail_view .view_ip .mvbox label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { text-align:right; }
.dashboard .g_detail_view .view_ip .mvbox .nice-select { width:60%; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 .nice-select { width:50%; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 .nice-select { width:120px; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 span.sbox:nth-child(2) .nice-select { width:193px; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 input[type="text"],
.dashboard .g_detail_view .view_ip .mvbox .mt_2 input[type="password"] { width:70px; }
@media screen and (max-width:1830px){
.dashboard .g_detail_view .view_ip li.m1 { width:100%; }
.dashboard .g_detail_view .view_ip li.m2 { width:55%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m3 { width:45%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select { width:75%; }
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:60%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:60%; }
}
@media screen and (max-width:1550px){
.dashboard .tabbox .tab-content { padding:30px 40px; }
.dashboard .g_detail_view { padding:30px 40px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:135px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:50%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .graph_list .glist { margin:20px 0 0 0; width:50%; }
}
@media screen and (max-width:1400px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:70%; }
.dashboard .tabbox .tab-content .graph_list .glist { width:100%; }
.dashboard .g_detail_view .view_ip li.m2,
.dashboard .g_detail_view .view_ip li.m3,
.dashboard .g_detail_view .view_ip li.m4,
.dashboard .g_detail_view .view_ip li.m5 { width:100%; margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"] { width:70%; }
.dashboard .g_detail_view .view_ip li.m5 .sel_w2 { display:inline-block; width:70%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:70% !important;}
}
@media screen and (max-width:1290px){
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:100%; text-align:right; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { margin:3px 0 0 0; }
}
@media screen and (max-width:1200px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label { width:115px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:52%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:60%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:60%; }
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:60% !important;}
}
@media screen and (max-width:1110px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:46%; }
}
@media screen and (max-width:1024px){
.dashboard .tabbox .tab-content { padding:30px 35px; }
.dashboard .g_detail_view { padding:30px 35px; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:63%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:70%; }
.dashboard .tabbox .tab-content .graph_list .glist { margin:10px 0 0 0; width:50%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:70%; }
}
@media screen and (max-width:840px){
.dashboard .tabbox .tab-content .tab_ipbox { margin:0 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:55%; }
.dashboard .tabbox .tab-content .graph_list .glist { width:100%; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:60%; }
}
@media screen and (max-width:760px){
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:46%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:60%; }
}
@media screen and (max-width:640px){
.dashboard .tabbox .tab-content { padding:20px 25px; }
.dashboard .tabbox .tab-content .tab_ipbox { margin:0 0 0 0; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li input[type="password"] { border:1px solid #<PASSWORD>; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ipbox li .txt_ip { border:1px solid #f4f4f4; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 li label,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 li label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip1 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip2 .txt_ip { width:100%; }
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip3 .txt_ip,
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="text"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 input[type="password"],
.dashboard .tabbox .tab-content .tab_ipbox .t_ip4 .txt_ip { width:100%; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .tit { font-size:14px; }
.dashboard .tabbox .tab-content .graph_list .glist .gbox .g_titbox .txt { right:5px; font-size:12px;}
.dashboard .g_detail_view { margin:20px 0 0 0; padding:20px 25px; }
.dashboard .g_detail_view .view_ip { padding:20px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m1 label,
.dashboard .g_detail_view .view_ip li.m2 label,
.dashboard .g_detail_view .view_ip li.m3 label,
.dashboard .g_detail_view .view_ip li.m4 label,
.dashboard .g_detail_view .view_ip li.m5 label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .g_detail_view .view_ip li.m1 .nice-select,
.dashboard .g_detail_view .view_ip li.m2 .nice-select,
.dashboard .g_detail_view .view_ip li.m3 .nice-select,
.dashboard .g_detail_view .view_ip li.m4 input[type="text"],
.dashboard .g_detail_view .view_ip li.m4 input[type="password"],
.dashboard .g_detail_view .view_ip li.m5 .sel_btn { width:100%; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { margin:3px 0 0 0; }
.dashboard .g_detail_view .view_ip li.m3 .sel_w1 { display:inline-block; width:100%; }
.dashboard .g_detail_view .view_ip li.m3 input { vertical-align:bottom; }
.dashboard .g_detail_view .view_ip li.m3 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.dashboard .g_detail_view .view_ip li.m3 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip li.m5 .sel_w2 { display:inline-block; width:100%; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
.dashboard .g_detail_view .view_ip li.m5.m5_n .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip .mvbox { float:left; width:100%; }
.dashboard .g_detail_view .view_ip .mvbox label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 { text-align:left; }
.dashboard .g_detail_view .view_ip .mvbox .nice-select { width:100%; }
.dashboard .g_detail_view .view_ip .mvbox span.sbox_m2 .nice-select { width:calc(100% - 54px) !important; }
.dashboard .g_detail_view .view_ip .mvbox.v_ip2 .nice-select { width:50%; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.dashboard .g_detail_view .view_ip .mvbox .mt_2 span.sbox:nth-child(2) .nice-select { width:100% !important; }
}
@media screen and (max-width:480px){
.dashboard .tabbox .tab-content { padding:20px 15px; }
.dashboard .tabbox .nav li { width:33.3%; margin:0; }
.dashboard .tabbox .nav li a { width:100%; }
.dashboard .tabbox .tab-content { border-radius:0 0 10px 10px; }
.dashboard .g_detail_view { padding:20px 15px; }
}
.monitoring_ipbox { }
.monitoring_ipbox li { margin:3px 0 0 0; }
.monitoring_ipbox li label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.monitoring_ipbox li input[type="text"],
.monitoring_ipbox li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.monitoring_ipbox li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.monitoring_ipbox li span.sbox { margin:3px 0 0 0; display:block; text-align:right; }
.monitoring_ipbox li .or { display:inline-block; margin:0 10px; vertical-align:middle; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox .monitoring_ip:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.monitoring_ipbox .monitoring_ip > ul > li { float:left; }
.monitoring_ipbox .monitoring_ip li.m1 { width:48%; }
.monitoring_ipbox .monitoring_ip li.m2 { width:26%; text-align:right; }
.monitoring_ipbox .monitoring_ip li.m3 { width:26%; }
.monitoring_ipbox .monitoring_ip li.m1 .nice-select { width:42%; }
.monitoring_ipbox .monitoring_ip li.m1.l_m1 .nice-select { width:70%; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:60%; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { width:120px; }
.monitoring_ipbox .monitoring_ip li.m3 span.sbox:nth-child(2) .nice-select { width:193px; }
.monitoring_ipbox .monitoring_ip li.m3 input[type="text"],
.monitoring_ipbox .monitoring_ip li.m3 input[type="password"] { width:70px; }
.monitoring_ipbox .monitoring_ip .mipbox { float:left; width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox label { text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 { text-align:right; }
.monitoring_ipbox .monitoring_ip .mipbox .nice-select { width:90%; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 .nice-select { width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 .nice-select { width:120px; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 span.sbox:nth-child(2) .nice-select { width:193px; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 input[type="text"],
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 input[type="password"] { width:70px; }
@media screen and (max-width:1830px){
.monitoring_ipbox .monitoring_ip li.m1 { width:100%; text-align:right; }
.monitoring_ipbox .monitoring_ip li.m2 { width:55%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 { width:45%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m1 .nice-select { width:35%; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:75%; }
}
@media screen and (max-width:1400px) {
.monitoring_ipbox .monitoring_ip li.m2 { width:100%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 { width:100%; margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:70%; }
}
@media screen and (max-width:1200px){
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:60%; }
}
@media screen and (max-width:1024px){
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:70%; }
}
@media screen and (max-width:640px){
.monitoring_ipbox .monitoring_ip li.m1,
.monitoring_ipbox .monitoring_ip li.m2,
.monitoring_ipbox .monitoring_ip li.m3 { text-align:left; }
.monitoring_ipbox .monitoring_ip li.m1 label,
.monitoring_ipbox .monitoring_ip li.m2 label,
.monitoring_ipbox .monitoring_ip li.m3 label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_1 .or { text-align:left; width:50px; margin:0; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_1 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_2 { margin:3px 0 0 0; display:block; }
.monitoring_ipbox .monitoring_ip li.m1 span.sbox_m1_2 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip li.m2 .nice-select { width:100%; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { margin:3px 0 0 0; }
.monitoring_ipbox .monitoring_ip li.m3 .sel_w1 { display:inline-block; width:100%; }
.monitoring_ipbox .monitoring_ip li.m3 input { vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip li.m3 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip li.m3 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.monitoring_ipbox .monitoring_ip .mipbox { float:left; width:100%; }
.monitoring_ipbox .monitoring_ip .mipbox label { width:100%; display:block; margin:8px 0 5px 0; text-align:left; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 { text-align:left; }
.monitoring_ipbox .monitoring_ip .mipbox .nice-select { width:100%; }
.monitoring_ipbox .monitoring_ip .mipbox span.sbox_m2 .nice-select { width:calc(100% - 54px) !important; }
.monitoring_ipbox .monitoring_ip .mipbox.m_ip2 .nice-select { width:50%; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 .nice-select { width:calc(100% - 74px) !important; vertical-align:bottom; }
.monitoring_ipbox .monitoring_ip .mipbox .mt_2 span.sbox:nth-child(2) .nice-select { width:100% !important; }
.dashboard .g_detail_view .view_ip li.m5 .nice-select { width:calc(100% - 54px) !important;}
}
.ds_cont_mbox { margin:30px 0 0 0; padding:40px 45px 40px 45px; background-color:#f8f9fa; border-radius:10px; transition:all 0.4s ease-in-out; }
.ds_cont_mbox .m_title { font-size:22px; font-weight:500; color:#5e636c; line-height:22px; }
.ds_cont_mbox .m_title .stxt { font-size:18px; font-weight:400; color:#06a9b7; line-height:18px; display:inline-block; margin:0 0 0 10px; }
.ds_cont_mbox .mtbox { position:relative; margin:40px 0 0 0; }
.ds_cont_mbox .mtbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .txtbox { float:left; width:110px; border-bottom:1px solid #f8f9fa}
.ds_cont_mbox .mtbox .txtbox .icon_box { position:absolute; bottom:0; width:99px; text-align:center; height:145px; background-color:#fff; vertical-align:bottom; border-radius:10px; }
.ds_cont_mbox .mtbox .txtbox .icon_box .img { padding:10px 0 0 0; }
.ds_cont_mbox .mtbox .txtbox .txt { padding:30px 0 0 0; font-size:18px; line-height:18px; font-weight:500; }
.ds_cont_mbox .mtbox .txtbox .tit { color:#5e636c; font-size:22px; font-weight:500; }
.ds_cont_mbox .mtbox .g_list { float:left; width:calc(100% - 120px); }
.ds_cont_mbox .mtbox .g_list:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .g_list .gbox { float:left; width:25%; }
.ds_cont_mbox .mtbox .g_list .sel { margin:0 0 0 14px; }
.ds_cont_mbox .mtbox .g_list .sel label { margin:0 12px 0 0; vertical-align:middle; text-align:right; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.ds_cont_mbox .mtbox .g_list .graph { margin:30px 0 0 15px; padding:15px; background-color:#fff; border-radius:10px; box-shadow:2px 2px 5px 0 #e8e9ea, -2px -2px 5px 0 #e8e9ea; }
.ds_cont_mbox .mtbox .g_list .graph img { width:100%; }
.ds_cont_mbox .mtbox .g_list .listbox { margin:0 0 0 7px; }
.ds_cont_mbox .mtbox .g_list .listbox { overflow:auto; height:122px;}
.ds_cont_mbox .mtbox .g_list .listbox ul { margin:-6px 0 0 -6px; padding:4px 0; }
.ds_cont_mbox .mtbox .g_list .listbox ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.ds_cont_mbox .mtbox .g_list .listbox li { position:relative; float:left; margin:6px 0 0 6px; height:54px; width:107px; background-color:#fff; border:1px solid #e1e1e1; border-radius:8px; text-align:center; transition:all 0.2s ease-in-out; }
.ds_cont_mbox .mtbox .g_list .listbox li span { position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; color:#5e636c; font-size:14.5px; line-height:14px; font-weight:400; letter-spacing:-0.5px; }
.ds_cont_mbox .mtbox .g_list .listbox li a { display:block; width:100%; height:60px; border-radius:8px; }
.ds_cont_mbox .mtbox .g_list .listbox li a span { color:#fff; }
.ds_cont_mbox .mtbox .g_list .listbox li.active { transition:all 0.2s ease-in-out; box-shadow:2px 2px 3px 0 #b2b5b6,0 -2px 3px 0 #b2b5b6; }
.ds_cont_mbox .mtbox .g_list .listbox li.active:before { content:''; display:block; width:15px; height:13px; background:url(../img/contents/icon_ch_on.png) center center no-repeat; position:absolute; right:5px; top:4px; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_g { border:4px solid #364153; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_r { border:4px solid #a2032f; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_b { border:4px solid #0499a5; }
.ds_cont_mbox .mtbox .g_list .listbox li.active.bgbox_y { border:4px solid #b28c03; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_g { background-color:#5e636c; border:4px solid #5e636c; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_r { background-color:#fc1656; border:4px solid #fc1656; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_b { background-color:#06a9b7; border:4px solid #06a9b7; }
.ds_cont_mbox .mtbox .g_list .listbox li.bgbox_y { background-color:#ffc800; border:4px solid #ffc800; }
.ds_cont_mbox.g_detail_view { display:none; margin:20px 0 0 0; background-color:#f8f9fa; box-shadow:none; }
.ds_cont_mbox.g_detail_view.active { display:block; }
.ds_cont_mbox.g_detail_view .view_ip { padding:37px 0 0 0; }
.ds_cont_mbox.g_detail_view .view_ip:nth-child(1) { padding:0; }
@media screen and (max-width:1550px){
.ds_cont_mbox { padding:30px 40px; }
.ds_cont_mbox .mtbox .txtbox .icon_box { position:absolute; top:0; }
.ds_cont_mbox .mtbox .g_list .gbox { width:50%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1),
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .graph { margin-top:7%; }
}
@media screen and (max-width:1400px){
.ds_cont_mbox .m_title .stxt { display:block; margin:5px 0 0 0; }
}
@media screen and (max-width:1200px){
.ds_cont_mbox { padding:30px 35px; }
.ds_cont_mbox .mtbox .g_list .gbox { width:100%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:10%; }
}
@media screen and (max-width:1024px){
.ds_cont_mbox { padding:30px 35px; }
.ds_cont_mbox .mtbox .g_list .gbox { width:50%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1),
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:0; }
}
@media screen and (max-width:920px){
.ds_cont_mbox .mtbox .g_list .listbox { overflow:auto; height:250px; }
}
@media screen and (max-width:640px){
.ds_cont_mbox .mtbox .txtbox { float:none; display:block; width:100%; text-align:center; padding:0 0 20px 0; }
.ds_cont_mbox .mtbox .txtbox .icon_box { position:relative; top:0; height:auto; padding:0 0 10px 0; width:100%; }
.ds_cont_mbox .mtbox .txtbox .icon_box .img { display:inline-block; vertical-align:middle; }
.ds_cont_mbox .mtbox .txtbox .icon_box .txt { display:inline-block; padding:0 0 0 10px; vertical-align:middle; }
.ds_cont_mbox .mtbox .g_list .gbox { width:49%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(even) { float:right; }
.ds_cont_mbox .mtbox .g_list .gbox .sel { margin-left:0; }
.ds_cont_mbox .mtbox .g_list .gbox .graph { margin-left:0; }
.ds_cont_mbox .mtbox .g_list .sel label { display:block; margin:0 0 8px 0; text-align:left; }
.ds_cont_mbox .mtbox .g_list .nice-select { width:100% !important; }
.ds_cont_mbox .mtbox .g_list { float:none; width:100%; }
.ds_cont_mbox .mtbox .g_list .listbox { margin:0; }
.ds_cont_mbox .mtbox .g_list .listbox li { width:31%; }
}
@media screen and (max-width:480px){
.ds_cont_mbox { padding:20px 15px; }
.ds_cont_mbox .mtbox .g_list .listbox li { width:47%; }
.ds_cont_mbox .mtbox .g_list .gbox { width:100%; margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(1) { margin-top:0; }
.ds_cont_mbox .mtbox .g_list .gbox:nth-child(2) { margin-top:10%; }
.ds_cont_mbox .mtbox .g_list .graph { margin-top:5%; }
}
.dashboard.register_cont { display:none; transition:all 0.4s ease-in-out; }
.dashboard.register_cont.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .titbox_n { position:relative; }
.dashboard .titbox_n .tit { position:relative; padding:40px 0 0 44px; color:#5e636c;font-size:16px; line-height:16px; font-weight:200; }
.dashboard .titbox_n .tit.cg { color:#06a9b7; }
.dashboard .titbox_n .tit span { font-weight:200; display:inline-block; margin:0 6px; }
.dashboard .titbox_n .tit span.stxt { font-weight:400; color:#06a9b7; font-size:18px; }
.dashboard .titbox_n .tit strong {font-weight:400; font-size:22px; line-height:22px; text-transform:uppercase; }
.dashboard .titbox_n .tit strong.stit { text-transform:capitalize;}
.dashboard .titbox_n .tit.initial strong { text-transform:capitalize; }
.dashboard .register_box { position:relative; }
.dashboard .register_box .rg_chbox { position:absolute; top:-8px; right:0; }
.dashboard .register_box li { margin:3px 0 0 0; }
.dashboard .register_box li label { position:relative; text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.dashboard .register_box li label span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.dashboard .register_box li label span.txt_sb { display:block; font-size:15px; font-weight:300; }
.dashboard .register_box li .nice-select { width:150px; display:inline-block; vertical-align:middle; text-align:left; }
.dashboard .register_box li input[type="text"],
.dashboard .register_box li input[type="password"] { display:inline-block; vertical-align:middle; height:38px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .register_box li input.pline { border:1px dashed #ccc; }
.dashboard .register_box li input.gray { background-color:#e7ebee; }
.dashboard .register_box li input.noline { border:1px solid #e7ebee !important; }
.dashboard .register_box li textarea { resize:none; display:inline-block; vertical-align:middle; height:121px; padding:8px 12px; border:1px solid #e1e1e1; border-radius:5px; line-height:20px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.dashboard .register_box li textarea.gray { background-color:#e7ebee; }
.dashboard .register_box li textarea.pline { border:1px dashed #ccc; }
.dashboard .register_box li textarea.ta1 { height:79px; }
.dashboard .register_box li .btn_view { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#999ea7; }
.dashboard .register_box li .btn_edit { position:relative; display:inline-block; vertical-align:middle; cursor:pointer; padding:0 12px; min-width:50px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:5px; background-color:#8b95a9; }
.dashboard .register_box li.reg_1 label { width:145px; }
.dashboard .register_box li .reg_stxt { display:inline-block; width:61%; text-align:left; padding:8px 0 12px 2px; }
.dashboard .register_box li .reg_stxt a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .register_box li .reg_stxt a.ma { margin:0 2px 0 14px; }
.dashboard .register_box li .reg_stxt.right_a { text-align:right; padding:4px 0 12px 0;}
.dashboard .register_box li .bubble_box { display:inline-block; }
.dashboard .register_box li .bubble_box .box { display:inline-block; position:relative; }
.dashboard .register_box li .bubble_box .box .s_txt { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; cursor:pointer; }
.dashboard .register_box li .bb_info { display:none; text-align:center; position:absolute; z-index:99; top:24px; left:50%; transform:translateX(-50%); padding:12px 15px; width:140px; font-size:13px; background-color:#5e636c; color:#fff; border-radius:3px; }
.dashboard .register_box li .bb_info:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:5px solid transparent; border-left:5px solid transparent; }
.dashboard .register_box .top_ipbox { margin-top:-3px; }
.dashboard .register_box .top_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .top_ipbox.bottom_ipbox { clear:both; float:none; }
.dashboard .register_box .top_ipbox .ipbox { float:left; width:50%; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w { width:100%; margin:10px 0 0 0; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w label { width:auto; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:70%; }
.dashboard .register_box .top_ipbox .ipbox1 { padding:42px 0 0 38px; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 38px; }
.dashboard .register_box .top_ipbox .ipbox2 { text-align:right; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { width:38%; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:right; padding:0 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox1 input[type="text"] { width:50%; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:65%; }
.dashboard .register_box .top_ipbox .ipbox4 input.ip_w1 { width:64.5%;}
.dashboard .register_box .top_ipbox .ipbox1.ipbox5 { padding-top:10px; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox6 { padding-top:10px; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox7 { padding-top:20px; }
.dashboard .register_box li.reg_1 textarea { width:50%; }
.dashboard .register_box li.reg_2 input,
.dashboard .register_box li.reg_2 textarea { width:60.5%; }
.dashboard .register_box li.reg_3 input,
.dashboard .register_box li.reg_3 textarea { width:50%; }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:60% !important; }
.dashboard .register_box .top_ipbox .ipbox2 .w1,
.dashboard .register_box .top_ipbox .ipbox2 .w2 { width:30%; }
.dashboard .register_box .top_ipbox .ipbox2 .w3 { width:36%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w1,
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w2 { width:32%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w3 { width:42%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox { margin-right:0px; }
.dashboard .register_box .top_ipbox img.icon { vertical-align:middle; margin:0 0 0 10px; }
.dashboard .register_box .graybox { margin:25px 0 0 0; border-radius:15px; background-color:#f8f9fa; padding:30px 0; }
.dashboard .register_box .graybox .g_box:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .g_box .g_ipbox { float:left; }
.dashboard .register_box .graybox .g_ipbox1 { width:50%; }
.dashboard .register_box .graybox .g_ipbox1 label { width:28%; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1 { width:62%; }
.dashboard .register_box .graybox .g_ipbox2 { width:50%; }
.dashboard .register_box .graybox .g_ipbox2 label { width:120px; }
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 textarea { width:50%; }
.dashboard .register_box .graybox .g_ipbox3,
.dashboard .register_box .graybox .g_ipbox4 { padding-top:10px; }
.dashboard .register_box .graybox input[type="text"].ip_ws { width:90px; }
.dashboard .register_box .graybox li .reg_stxt { display:inline-block; padding:8px 0 10px 10px; width:auto; vertical-align:bottom; }
.dashboard .register_box .graybox li .reg_stxt a { color:#2635ff; font-size:15px; font-weight:200; text-decoration:underline; }
.dashboard .register_box .graybox img.icon { vertical-align:middle; margin:0 0 0 10px; }
.dashboard .register_box .graybox .w_ipbox { position:relative; }
.dashboard .register_box .graybox .w_ipbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .w_ipbox > div { position:relative; z-index:1 }
.dashboard .register_box .graybox .w_ipbox > div.w_r { position:absolute; right:25%; top:0; text-align:right; }
.dashboard .register_box .graybox .w_ipbox > div.w_r label { width:auto; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:45%; }
.dashboard .register_box .graybox.ipbox_hidden { display:none; transition:all 0.4s ease-in-out; }
.dashboard .register_box .graybox.ipbox_hidden.active { display:block; transition:all 0.4s ease-in-out; }
.dashboard .register_box .graybox .logicbox { padding:0 30px; }
.dashboard .register_box .graybox .logicbox:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .graybox .logicbox .txtbox { float:left; width:700px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { margin-top:-18px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-38px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .tit { color:#5e636c; font-size:16px; font-weight:500; letter-spacing:-0.5px; padding:0 0 10px 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .txt { color:#fff; font-size:16px; line-height:20px; padding:15px 10px; border-radius:15px; background-color:#06a9b7; }
.dashboard .register_box .graybox .logicbox .txtbox .line { position:relative; float:left; height:2px; background-color:#5e636c; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:0; top:50%; transform:translateY(-50%); width:9px; height:10px; background:url(../img/contents/icon_arr_lg.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; margin:60px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; margin:60px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; height:42px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; margin:40px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; height:22px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; margin:20px 0 0 0; }
.dashboard .register_box .graybox .logicbox .mapcont { float:right; width:calc(100% - 800px); text-align:center; }
.dashboard .register_box .graybox .logicbox .map { border-radius:10px; background-color:#e7ebee; }
.dashboard .register_box .graybox .logicbox .map img { max-width:400px; width:100%; border-radius:10px; }
.dashboard .register_box .padd_Box_1 { padding:5px 0 20px 0; }
.dashboard .register_box.reg .btnbox { margin:20px 0 0 0; padding:30px 0 0 0; border-top:1px solid #e1e1e1; }
.dashboard .register_box .b_txt { padding:20px 34% 0 0; color:#5e636c; font-size:13px; font-family:'Noto Sans KR'; text-align:right; display:block; }
.dashboard .register_box .b_txt span.ch { color:#ff0000; font-family:'Noto Sans KR'; }
.dashboard .register_box .b_txt span.txt { color:#06a9b7; font-family:'Noto Sans KR'; }
.dashboard .register_box .btn_arr { position:relative; margin:30px 0 0 0; padding:0 0 10px 0; border-top:1px solid #e1e1e1; }
.dashboard .register_box .btn_arr .icon { position:relative; margin:0 auto; width:65px; height:31px; cursor:pointer; background:url(../img/contents/icon_arr_p.png) center center no-repeat; }
.dashboard .register_box .btn_arr.up { margin:50px 0 0 0; }
.dashboard .register_box .btn_arr.up .icon { transform:rotate(180deg); margin-top:-31px; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -3.33%;}
.dashboard .register_box .iptable_box:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:30%; margin:0 0 0 3.33%; }
.dashboard .register_box .iptable_box .table_plist .tit { color:#5e636c; font-size:16px; line-height:16px; font-weight:500; padding:0 0 12px 0; }
.dashboard .register_box .iptable_box .table_plist .tit span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.dashboard .register_box .iptable_box .table_plist .btn_s { position:absolute; right:0; top:-5px; }
.dashboard .register_box .iptable_box .table_plist .btn_add { padding:0; margin:0 0 0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_add_s.png) center center no-repeat; }
.dashboard .register_box .iptable_box .table_plist .btn_write { padding:0; margin:0 0 0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_write_s.png) center center no-repeat; }
@media screen and (max-width:1980px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.7%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:31.5%; }
}
@media screen and (max-width:1920px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:30.7%; }
}
@media screen and (max-width:1850px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.6%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:29.5%; }
}
@media screen and (max-width:1800px){
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:7.1%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:28.5%; }
}
@media screen and (max-width:1750px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:27.8%; }
.dashboard .register_box .graybox .logicbox .mapcont { width:calc(100% - 720px); }
}
@media screen and (max-width:1700px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:27%; }
.dashboard .register_box .graybox .logicbox .txtbox { float:left; width:100%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:calc(30% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 38%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:15%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 61%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:18.5%; }
.dashboard .register_box .graybox .logicbox .mapcont { float:right; width:calc(100% - 800px); }
.dashboard .register_box .graybox .logicbox .mapcont { margin:20px 0 0 0; float:left; width:100%; }
}
@media screen and (max-width:1650px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:26.5%; }
}
@media screen and (max-width:1600px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:25.5%; }
}
@media screen and (max-width:1550px){
.dashboard .register_box .top_ipbox .ipbox1 { padding:42px 0 0 15px;}
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 15px; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1 { width:58%; }
.dashboard .register_box .graybox input[type="text"].ip_ws { width:80px; }
.dashboard .register_box .graybox .w_ipbox > div.w_r { right:10.4%; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:24%; }
}
@media screen and (max-width:1500px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:22.8%; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -2.33%;}
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:31%; margin:0 0 0 2.33%; }
}
@media screen and (max-width:1450px){
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:21.5%; }
}
@media screen and (max-width:1400px){
.dashboard .register_box .top_ipbox .ipbox1 { padding:20px 0 0 15px; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox7 { padding:20px 0 0 0; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 { padding:0 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox { width:100%; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { text-align:right; width:100%; padding:20px 120px 0 0; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:right; padding:0 120px 0 0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:64.5%;}
.dashboard .register_box .top_ipbox .ipbox1.ipbox5 { padding:10px 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox6 { padding-top:0; }
.dashboard .register_box .graybox .g_ipbox1 label,
.dashboard .register_box .graybox .g_ipbox2 label { width:120px; }
.dashboard .register_box .graybox .g_ipbox1,
.dashboard .register_box .graybox .g_ipbox2 { width:100%; }
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 textarea ,
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 textarea,
.dashboard .register_box .graybox .g_ipbox1 .sel_w1,
.dashboard .register_box .graybox .g_ipbox2 .sel_w1 { width:65%; }
.dashboard .register_box .graybox .g_ipbox4 { padding-top:0; }
.dashboard .register_box .graybox .w_ipbox > div.w_r { position:relative; right:auto; top:0; text-align:left; margin:3px 0 0 0;}
.dashboard .register_box .graybox .w_ipbox > div.w_r label { width:120px; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:auto; }
.dashboard .register_box li.reg_1 { width:100%; }
.dashboard .register_box li.reg_1 label { width:auto; }
.dashboard .register_box li.reg_1 textarea { width:53.5%; }
.dashboard .register_box li.reg_3 input[type="text"],
.dashboard .register_box li.reg_3 textarea,
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1 input[type="text"] { width:52.4%; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1.ipbox5 input[type="text"] { width:60.5%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input.pline[type="text"]{ width:53.4%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n input[type="text"],
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n input.pline[type="text"] { width:52.4%; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n span.sbox.sbox_l input[type="text"]{ width:calc(52.4% - 53px); }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:55% !important; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:55%; }
.dashboard .register_box li label span.txt_sb { display:inline-block; }
.dashboard .register_box .b_txt { padding:20px 30% 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:700px; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; }
.dashboard .register_box .graybox .g_ipbox4 .w_ipbox > div.w_r { right:22.8%; }
.dashboard .register_box .iptable_box { margin:20px 0 0 -1.33%;}
.dashboard .register_box .iptable_box .table_plist { position:relative; float:left; width:32%; margin:0 0 0 1.33%; }
}
@media screen and (max-width:1250px){
.dashboard .register_box .graybox .logicbox .txtbox { width:640px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-8px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:25px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:135px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 260px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:70px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 410px; height:52px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:66px; margin:50px 0 0 0; }
}
@media screen and (max-width:1150px){
.dashboard .register_box .graybox .logicbox { text-align:center; }
.dashboard .register_box .graybox .logicbox .txtbox { position:relative; float:none; width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:none; clear:both; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:right; margin:188px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:absolute; top:255px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:absolute; top:420px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:none; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:auto; top:auto; left:50%; bottom:-7px; margin-left:-5px; translatey(0); width:10px; height:10px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:2px; height:40px; margin:0; position:relative; left:50%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { width:calc(50% - 160px); height:2px; margin:0; top:194px; position:absolute; left:calc(50% + 80px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:2px; height:224px; position:absolute; top:194px; right:80px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { position:absolute; top:194px; left:80px; margin:0; height:2px; width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { position:absolute; top:194px; left:80px; width:2px; height:60px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0; height:0; width:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { position:absolute; top:350px; left:80px; width:2px; height:70px; margin:0; }
}
@media screen and (max-width:1100px){
.dashboard .register_box .graybox li .reg_stxt { width:85%; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a input[type="text"]{ width:calc(65% - 40px) !important; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a .reg_stxt { width:auto; }
}
@media screen and (max-width:1024px){
.dashboard .register_box .graybox li .reg_stxt { width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:100%; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:left; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:relative; top:auto; left:auto; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:relative; top:auto; left:auto; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:left; clear:none; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { margin-top:-18px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-38px; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:left; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:0; left:auto; top:50%; transform:translateY(-50%); width:9px; height:10px; background:url(../img/contents/icon_arr_lg.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 {width:calc(30% - 160px); height:2px; margin:60px 0 0 0; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { display:none; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:calc(50% - 160px); height:2px; margin:60px 0 0 0; position:relative; top:auto; right:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 38%; height:42px; width:2px; position:relative; top:auto; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:15%; margin:40px 0 0 0; height:2px; position:relative; top:auto; left:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 61%; height:22px; width:2px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:18.5%; margin:20px 0 0 0; height:2px; position:relative; top:auto; left:auto; }
}
@media screen and (max-width:980px){
.dashboard .register_box .graybox .logicbox .txtbox { float:none; clear:both; width:700px; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:35px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:180px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 270px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:90px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 440px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:93px; }
}
@media screen and (max-width:900px){
.dashboard .register_box li.reg_1 textarea { width:54%; }
.dashboard .register_box .graybox .logicbox .txtbox { width:640px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { margin-top:-8px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:25px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:135px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { margin:0 0 0 260px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { width:70px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0 0 0 410px; height:52px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { width:66px; margin:50px 0 0 0; }
.dashboard .register_box .iptable_box { margin:20px 0 0 0;}
.dashboard .register_box .iptable_box .table_plist { width:100%; margin:0 0 20px 0; }
.dashboard .register_box .iptable_box .table_plist:nth-child(3) { margin:0; }
}
@media screen and (max-width:820px){
.dashboard .register_box .graybox .logicbox { text-align:center; }
.dashboard .register_box .graybox .logicbox .txtbox { position:relative; float:none; clear:both; width:auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { text-align:center; width:160px; float:none; clear:both; margin:0 auto; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_1 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_2 .txt,
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 .txt { max-height:70px; overflow:hidden; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { float:right; margin:188px 0 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { position:absolute; top:255px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { position:absolute; top:420px; left:0; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line { float:none; clear:both; }
.dashboard .register_box .graybox .logicbox .txtbox .line_a:after { content:''; display:block; position:absolute; right:auto; top:auto; left:50%; bottom:-7px; margin-left:-5px; translatey(0); width:10px; height:10px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p1 { width:2px; height:40px; margin:0; position:relative; left:50%; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { display:block; width:calc(50% - 160px); height:2px; margin:0; top:194px; position:absolute; left:calc(50% + 80px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { width:2px; height:224px; position:absolute; top:194px; right:80px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { position:absolute; top:194px; left:80px; margin:0; height:2px; width:calc(50% - 160px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { position:absolute; top:194px; left:80px; width:2px; height:60px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4 { margin:0; height:0; width:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { position:absolute; top:350px; left:80px; width:2px; height:70px; margin:0; }
}
@media screen and (max-width:767px){
.dashboard .register_box .graybox li .reg_stxt { width:85%; }
}
@media screen and (max-width:640px){
.dashboard .titbox_n .tit { padding:30px 0 0 15px; }
.dashboard .register_box .top_ipbox .ipbox1 { padding:20px 0 0 0; text-align:right; }
.dashboard .register_box .top_ipbox .ipbox label.ch { padding:0 0 0 14px; }
.dashboard .register_box .top_ipbox .ipbox label.ch:before { left:0; }
.dashboard .register_box .top_ipbox .ipbox1 label,
.dashboard .register_box .top_ipbox .ipbox2 label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .top_ipbox .ipbox { text-align:left; }
.dashboard .register_box .top_ipbox .ipbox1 span.sbox input[type="text"]{ width:calc(100% - 30px) !important; }
.dashboard .register_box .top_ipbox .ipbox .nice-select,
.dashboard .register_box .top_ipbox .ipbox1 input[type="text"],
.dashboard .register_box .top_ipbox .ipbox2 input[type="text"] { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2 .nice-select.w2 { margin:3px 0 0 0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 { text-align:left; width:100%; padding:0; }
.dashboard .register_box .top_ipbox .ipbox1.ipbox3 input[type="text"] { width:100%; }
.dashboard .register_box .top_ipbox .ipbox4 { text-align:left; padding:0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w1,
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w2 { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 .w3 { width:100%; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox { margin-right:0; }
.dashboard .register_box .top_ipbox .ipbox2.ipbox4 span.sbox input[type="text"]{ width:calc(100% - 55px) !important; }
.dashboard .register_box .graybox { padding:0 15px 10px 15px; }
.dashboard .register_box .graybox .g_ipbox1 label,
.dashboard .register_box .graybox .g_ipbox2 label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .graybox .g_ipbox1 textarea,
.dashboard .register_box .graybox .g_ipbox2 textarea,
.dashboard .register_box .graybox .g_ipbox1 input[type="text"],
.dashboard .register_box .graybox .g_ipbox2 input[type="text"],
.dashboard .register_box .graybox .g_ipbox1 .sel_w1,
.dashboard .register_box .graybox .g_ipbox2 .sel_w1 { width:100%; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox input[type="text"]{ width:calc(100% - 30px) !important; }
.dashboard .register_box .graybox .g_ipbox2 span.sbox input[type="text"]{ width:calc(100% - 54px) !important; }
.dashboard .register_box .graybox .g_ipbox3 { padding-top:5px; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a input[type="text"]{ width:calc(100% - 40px) !important; }
.dashboard .register_box .graybox .g_ipbox1 span.sbox.btn_a .reg_stxt { padding:8px 0 10px 10px; }
.dashboard .register_box .graybox li .reg_stxt { width:100%; padding:4px 0; }
.dashboard .register_box li .reg_stxt { width:100%; padding:4px 0; }
.dashboard .register_box li .reg_stxt.right_a { text-align:right; padding:4px 0; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input[type="text"]{ width:100%; }
.dashboard .register_box li.reg_1 input[type="text"],
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1 input.pline[type="text"],
.dashboard .register_box li.reg_1 input,
.dashboard .register_box li.reg_1 textarea,
.dashboard .register_box li.reg_2 textarea,
.dashboard .register_box li.reg_3 textarea { width:100%; }
.dashboard .register_box li.reg_1.reg_4 input,
.dashboard .register_box li.reg_1.reg_4 textarea,
.dashboard .register_box li.reg_2.reg_4 input,
.dashboard .register_box li.reg_2.reg_4 textarea { width:100% !important; }
.dashboard .register_box .top_ipbox .ipbox1 li.reg_1n span.sbox.sbox_l input[type="text"]{ width:calc(100% - 55px) !important; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w { text-align:left; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w label { display:block; margin:12px 0 8px 0; text-align:left; }
.dashboard .register_box .top_ipbox .ipbox.ipbox_w input { width:100%; }
.dashboard .register_box li .bb_info { width:110px; }
.dashboard .register_box .top_ipbox.bottom_ipbox .ipbox1.ipbox5 input[type="text"] { width:100%; }
.dashboard .register_box .padd_Box_1 { padding:0 0 15px 0; }
.dashboard .register_box .b_txt { padding:10px 0 10px 0; }
.dashboard .register_box .graybox .logicbox { padding:20px 10px 10px 10px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox { width:120px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .tit { font-size:14px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox .txt { font-size:14px; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_3 { margin:192px -10px 0 0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_4 { left:-10px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .logic_tbox.lg_5 { left:-10px; margin:0; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2 { width:calc(50% - 100px); left:calc(50% + 60px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p2_1 { right:40px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3 { left:40px; width:calc(50% - 100px); }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p3_1 { left:40px; }
.dashboard .register_box .graybox .logicbox .txtbox .line.line_p4_1 { left:40px; }
}
#register_box .modal-dialog { max-width:100%; width:auto; display:block; padding:0 !important; }
#register_box .modal-content { max-width:728px; margin:0 auto; padding:0 !important; }
#register_box .modal-body { padding:35px 30px 30px 30px !important; }
#register_box .modal-body .title_box { padding:0 0 0 0; margin:0; height:auto; }
#register_box .modal-body .title_box .title { font-size:18px; color:#06a9b7; line-height:18px; font-weight:400; }
#register_box .modal-body .pop-body .pop-cont { margin:28px 0 0 0; }
#register_box .modal-body .pop-body .pop-cont input[type="text"],
#register_box .modal-body .pop-body .pop-cont input[type="password"] { display:inline-block; margin:-4px 0; vertical-align:middle; height:35px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
#register_box .modal-body .pop-body .pop-cont input.gray { background-color:#e7ebee; }
#register_box .modal-body .pop-body .pop-cont input.pline { border:1px dashed #ccc; }
#register_box .modal-body .pop-body .pop-cont .toptxt { padding:0 0 0 20px; color:#5e636c; font-size:16px; font-weight:500; }
#register_box .modal-body .pop-body .pop-cont .toptxt.topsel { padding:0; }
#register_box .modal-body .pop-body .pop-cont .toptxt .selectbox { width:150px; }
#register_box .modal-body .pop-body .pop-cont .toptxt label { margin:0 10px 0 0; }
#register_box .modal-body .pop-body .pop-cont .b_txt { margin:20px 0 0 0; color:#5e636c; font-size:13px; font-family:'Noto Sans KR'; text-align:center; }
#register_box .modal-body .pop-body .pop-cont .b_txt span.ch { color:#ff0000; font-family:'Noto Sans KR'; }
#register_box .modal-body .pop-body .pop-cont .b_txt span.txt { color:#06a9b7; font-family:'Noto Sans KR'; }
#register_box .modal-body .pop-body .pop-cont > .scrollbar-inner { margin:8px 0 0 0; max-height:256px; overflow:auto; }
#register_box .modal-body .pop-body .pop-cont .dataTable table { background-color:#f7f7f7; }
#register_box .modal-body .pop-body .pop-cont .dataTable thead th { padding:10px 5px; background-color:#999ea7; }
#register_box .modal-body .pop-body .pop-cont .dataTable thead th .btn_add { border:1px solid #fff; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td { padding:10px 5px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td.td_left { padding:10px 10px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td input,
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td .selectbox { width:100%; }
#register_box .modal-body .pop-body .pop-cont .dataTable .btn_add { padding:0; margin:0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_add_s.png) center center no-repeat; }
#register_box .modal-body .pop-body .pop-cont .dataTable .btn_del { padding:0; margin:0 2px; width:26px; height:26px; overflow:hidden; text-indent:-9999em; outline:none; border:none; box-sizing:border-box; background:url(../img/contents/btn_del_s.png) center center no-repeat; }
#register_box .modal-body .pop-body .pop-cont .dataTable tr.bottom_line { overflow:hidden; text-indent:-9999em; }
@media screen and (max-width:1800px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner { max-width:100%; overflow:auto; }
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:auto; }
}
@media screen and (max-width:1200px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:700px; }
}
@media screen and (max-width:768px){
#register_box .modal-body .pop-body .pop-cont .dataTable.scrollbar-inner table { width:auto; }
#register_box .modal-body .pop-body .pop-cont .toptxt { padding:0; }
#register_box .modal-body .pop-body .pop-cont .toptxt label { margin:0 0 10px 0; }
#register_box .modal-body .pop-body .pop-cont .toptxt input { width:100%; }
#register_box .modal-body .pop-body .pop-cont > .scrollbar-inner { margin:12px 0 0 0; max-height:320px; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td input,
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td .selectbox { width:95%; }
#register_box .modal-body .pop-body .pop-cont .dataTable tbody td.btn_mtd input { width:75%; }
}
.register_add .title_box { padding:0 0 0 0; margin:0; height:auto; }
.register_add .title_box .title { font-size:18px; color:#06a9b7; line-height:18px; font-weight:400; }
.register_add .pop-cont { margin:28px 0 0 0; }
.register_add .pop-cont input[type="text"],
.register_add .pop-cont input[type="password"] { display:inline-block; vertical-align:middle; height:35px; padding:15px 12px; border:1px solid #e1e1e1; border-radius:5px; font-size:16px; font-weight:300; color:#5e636c; outline:none; background-color:#fff; box-sizing:border-box; }
.register_add .pop-cont input.gray { background-color:#e7ebee; }
.register_add .pop-cont input.pline { border:1px dashed #ccc; }
.register_add .pop-cont .pop_ipbox { }
.register_add .pop-cont .pop_ipbox li { margin:3px 0 0 0; }
.register_add .pop-cont .pop_ipbox li label { position:relative; text-align:right; margin:8px 14px 0 0; display:inline-block; vertical-align:top; color:#5e636c; font-size:16px; line-height:16px; font-weight:500; }
.register_add .pop-cont .pop_ipbox li label span.ch { color:#ff0000; display:inline-block; margin:0 4px 0 0;}
.register_add .pop-cont .pop_ipbox li input.w_ip1,
.register_add .pop-cont .pop_ipbox li .selectbox.w_ip1 { width:calc(100% - 118px);}
.register_add .pop-cont .pop_ipbox li.p_ip1 label { width:100px; }
.btnbox { margin:20px 0 0 0; }
.btnbox .btn_center { text-align:center; margin:0 1px; }
.btnbox .btn_right { text-align:right; margin:0 0 0 1px; }
.btnbox a.btn_co,
.btnbox button.btn_co { position:relative; display:inline-block; cursor:pointer; padding:0 12px; min-width:85px; height:37px; line-height:37px; border:none; color:#fff; font-size:12px; font-weight:500; outline:none; border-radius:7px; }
.btnbox a.btn_cr_g,
.btnbox button.btn_cr_g { color:#fff; background-color:#06a9b7; }
.btnbox a.btn_cr_b,
.btnbox button.btn_cr_b { color:#fff; background-color:#999ea7; }
.btnbox button.w135 { width:135px; font-size:16px; font-weight:400; }
.btnbox .btn_apply:before { content:''; display:block; width:7px; height:9px; background:url(../img/contents/icon_btn_arr.png) center center no-repeat; position:absolute; right:18px; top:50%; transform:translateY(-50%);}
.btnbox .btn_apply span { display:inline-block; padding-right:15px; }
@media screen and (max-width:480px){
.btnbox button.w135 { width:100px; font-size:16px; font-weight:400; }
}
.tabsMenu { }
.tabsMenu ul {}
.tabsMenu ul:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
.tabsMenu li { float:left; background-color:#eaeaea; border:1px solid #ddd; border-width:1px 1px 0 1px; border-radius:3px 3px 0 0; text-align:center; }
.tabsMenu li a { display:block; padding:8px 30px; min-width:70px; color:#888; font-size:15px; font-weight:400; font-family:'Noto Sans KR'; }
.tabsMenu li.ui-state-active { background-color:#fbc400; border:1px solid #d2a402; border-width:1px 1px 0 1px; }
.tabsMenu li.ui-state-active a { color:#fff; }
| 0.265309 | 0.07343 |
body {
/*background:url(line.gif)no-repeat center center fixed;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
*/
background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
background-size: 400% 400%;
position: relative;
animation: change 10s ease-in-out infinite;
-webkit-animation: change 10s ease-in-out infinite;
}
.waiting {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #000;
}
.waiting h1 {
margin: 0;
padding: 0;
color: #111;
font-size: 16em;
}
.waiting h1 span {
display: table-cell;
margin: 0;
padding: 0;
animation: animate 2s linear infinite;
}
.waiting h1 span:nth-child(1) {
animation-delay: 0s;
}
.waiting h1 span:nth-child(2) {
animation-delay: 0.25s;
}
.waiting h1 span:nth-child(3) {
animation-delay: 0.5s;
}
.waiting h1 span:nth-child(4) {
animation-delay: 0.75s;
}
.waiting h1 span:nth-child(5) {
animation-delay: 1s;
}
.waiting h1 span:nth-child(6) {
animation-delay: 1.25s;
}
.waiting h1 span:nth-child(7) {
animation-delay: 1.5s;
}
@keyframes animate {
0%,
100% {
color: #fff;
filter: blur(2px);
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 80px #ff0000, 0 0 120px #ff0000, 0 0 200px #ff0000, 0 0 300px #ff0000;
}
5%,
95% {
color: #111;
filter: blur(0px);
text-shadow: none;
}
}
/*****************************************************************/
.allitem {
display: none;
}
.card {
border-radius: 20px;
margin: 0px auto 5px;
width: 400px;
height: 350px;
color: black;
padding: 20px 20px;
background-color: rgba(221, 221, 221, 0.35);
text-align: center;
font-weight: bold;
box-shadow: 5px -2px 21px #1ebccc;
}
.titl {
font-size: 20px;
color: white;
opacity: 0.1;
}
.end {
color: white;
margin: 0px;
text-align: center;
}
.end span {
color: rgb(11, 8, 235);
font-weight: bold;
}
input[type="text"],
[type="password"] {
width: 70%;
height: 11%;
border-radius: 8px;
margin-bottom: 10px;
position: relative;
border: 0px solid white;
border-bottom: 3px solid #8b8b8b;
background-color: rgba(21, 21, 21, 0.16);
color: white;
text-align: center;
}
.pencil {
margin-left: -29px;
position: absolute;
margin-top: -36px;
color: rgba(0, 0, 255, 0.51);
display: none;
}
span.sh,
.hi {
margin-left: -29px;
position: absolute;
opacity: 0.5;
margin-top: 10px;
cursor: pointer;
display: none;
}
.login {
color: white;
font-size: 30px;
font-family: fantasy;
text-align: center;
margin-top: 10%;
}
.login2 {
margin-top: 10%;
border-radius: inherit;
width: 125px;
height: 42px;
position: relative;
left: -300px;
background: round;
border-radius: 5px;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
.login2:hover {
background-color: rgba(0, 247, 255, 0.438);
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
border: 2px solid rgba(0, 0, 255, 0.493);
color: white;
}
.help {
border-radius: inherit;
display: block;
}
.first-color,
.second-color,
.third-color {
border-radius: 20px;
position: relative;
right: 132px;
top: 42px;
width: 30px;
height: 30px;
border: 1px solid none;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
margin-left: 10px;
cursor: pointer;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
.first-color:hover,
.second-color:hover,
.third-color:hover {
border: 1px solid red;
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
@keyframes change {
0% {
background-position: 0 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
|
public/css/styles_login.css
|
body {
/*background:url(line.gif)no-repeat center center fixed;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
*/
background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
background-size: 400% 400%;
position: relative;
animation: change 10s ease-in-out infinite;
-webkit-animation: change 10s ease-in-out infinite;
}
.waiting {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #000;
}
.waiting h1 {
margin: 0;
padding: 0;
color: #111;
font-size: 16em;
}
.waiting h1 span {
display: table-cell;
margin: 0;
padding: 0;
animation: animate 2s linear infinite;
}
.waiting h1 span:nth-child(1) {
animation-delay: 0s;
}
.waiting h1 span:nth-child(2) {
animation-delay: 0.25s;
}
.waiting h1 span:nth-child(3) {
animation-delay: 0.5s;
}
.waiting h1 span:nth-child(4) {
animation-delay: 0.75s;
}
.waiting h1 span:nth-child(5) {
animation-delay: 1s;
}
.waiting h1 span:nth-child(6) {
animation-delay: 1.25s;
}
.waiting h1 span:nth-child(7) {
animation-delay: 1.5s;
}
@keyframes animate {
0%,
100% {
color: #fff;
filter: blur(2px);
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 80px #ff0000, 0 0 120px #ff0000, 0 0 200px #ff0000, 0 0 300px #ff0000;
}
5%,
95% {
color: #111;
filter: blur(0px);
text-shadow: none;
}
}
/*****************************************************************/
.allitem {
display: none;
}
.card {
border-radius: 20px;
margin: 0px auto 5px;
width: 400px;
height: 350px;
color: black;
padding: 20px 20px;
background-color: rgba(221, 221, 221, 0.35);
text-align: center;
font-weight: bold;
box-shadow: 5px -2px 21px #1ebccc;
}
.titl {
font-size: 20px;
color: white;
opacity: 0.1;
}
.end {
color: white;
margin: 0px;
text-align: center;
}
.end span {
color: rgb(11, 8, 235);
font-weight: bold;
}
input[type="text"],
[type="password"] {
width: 70%;
height: 11%;
border-radius: 8px;
margin-bottom: 10px;
position: relative;
border: 0px solid white;
border-bottom: 3px solid #8b8b8b;
background-color: rgba(21, 21, 21, 0.16);
color: white;
text-align: center;
}
.pencil {
margin-left: -29px;
position: absolute;
margin-top: -36px;
color: rgba(0, 0, 255, 0.51);
display: none;
}
span.sh,
.hi {
margin-left: -29px;
position: absolute;
opacity: 0.5;
margin-top: 10px;
cursor: pointer;
display: none;
}
.login {
color: white;
font-size: 30px;
font-family: fantasy;
text-align: center;
margin-top: 10%;
}
.login2 {
margin-top: 10%;
border-radius: inherit;
width: 125px;
height: 42px;
position: relative;
left: -300px;
background: round;
border-radius: 5px;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
.login2:hover {
background-color: rgba(0, 247, 255, 0.438);
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
border: 2px solid rgba(0, 0, 255, 0.493);
color: white;
}
.help {
border-radius: inherit;
display: block;
}
.first-color,
.second-color,
.third-color {
border-radius: 20px;
position: relative;
right: 132px;
top: 42px;
width: 30px;
height: 30px;
border: 1px solid none;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
margin-left: 10px;
cursor: pointer;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
.first-color:hover,
.second-color:hover,
.third-color:hover {
border: 1px solid red;
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 1s;
-moz-transition: ease-in-out 1s;
-ms-transition: ease-in-out 1s;
-o-transition: ease-in-out 1s;
}
@keyframes change {
0% {
background-position: 0 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
| 0.484136 | 0.108425 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('addons/adaptiveheader.css');
@import url('addons/lightbox.css');
@import url('addons/docsicon.css');
@import url('addons/video-player.css');
@import url('addons/chat.css');
@import url('addons/threedetalization.css');
@import url('addons/feedblocks/analytics.css');
@import url('addons/feedblocks/reviews.css');
@import url('addons/feedblocks/slidesshow.css');
@import url('addons/investportal-id-ui.css');
html,body{
font-family: 'Open Sans', sans-serif;
overflow-x:hidden;
margin-left: -1%;
width: 102%;
margin-top: 0%;
margin-bottom: 0%;
}
h4.title, p.descr{
font-size: 100%;
}
.header{
width: 100%;
height: 99px;
background-color: #eff3f4;
/* position: fixed;
top: 0;
z-index: 1; */
padding-top: 2%;
}
.header > #header_top{
float: left;
margin-left: 12vw;
width: 19%;
margin-top: -1%;
}
.header > #header_top .ht_header img {
width: 107px;
float: left;
display: inline-table;
}
.header > #header_top .ht_header span {
font-size: 80%;
color: darkgray;
display: inline;
text-align: left;
position: relative;
left: 17px;
}
.header > #header_bottom{
float: right;
margin-right: 12%;
}
.header > #header_bottom .hb_bottom header{
display: block;
width: 100%;
height: 50px;
margin-top: -2%;
}
.header > #header_bottom .hb_bottom header .welcome-link {
float: left;
display: inline-block;
font-size: 81%;
margin-left: 1%;
margin-top: 1%;
}
.header > #header_bottom .hb_bottom header .welcome-link a{
color: #0079bf;
text-decoration: none;
}
.header > #header_bottom .hb_bottom header .header-informer{
display: inline;
float: right;
width: 30%;
margin-top: -6%;
}
.header > #header_bottom .hb_bottom header .header-informer header{
display: inline-block;
float: left;
width: 26%;
margin-left: -44%;
margin-top: 20%;
}
.header > #header_bottom .hb_bottom header .header-informer main {
display: inline-block;
margin-left: -23%;
margin-top: 21%;
}
.header > #header_bottom .hb_bottom header .header-informer main a {
display: inline;
margin-left: 17px;
}
.header > #header_bottom .hb_bottom header .header-informer footer {
display: inline;
float: right;
margin-top: -10%;
padding-left: 44px;
width: 53%;
margin-right: -3%;
}
#regexchange {
font-size: 98%;
color: gray;
background-color: transparent;
border: none;
appearance: none;
-moz-appearance: none;
appearance: none;
margin-top: 14%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services{
display: inline;
position: relative;
left: -8%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services div{
padding-right: 2%;
display: inline;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services a {
color: #0079bf;
font-size: 90%;
text-decoration: none;
margin-left: 3%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .menu-show{
display: inline;
position: relative;
left: -8px;
}
.header > #header_bottom .hb_bottom footer{
display: block;
width: 100%;
margin-top: 2%;
height: 50px;
}
.header > #header_bottom .hb_bottom footer nav{
font-size: 85%;
}
.header > #header_bottom .hb_bottom footer nav a{
display: inline;
color: #0079bf;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
margin-left: 11px;
margin-right: 12px;
padding-bottom: 1%;
font-family: 'Open Sans', sans-serif;
}
.header > #header_bottom .hb_bottom footer nav #active{
border-bottom: solid 2px #0079bf;
}
.main{
width: 100%;
height: auto;
}
.main > .section{
width: 100%;
height: 800px;
display: block;
padding-bottom: 8%;
padding-top: 4%;
}
.main > .section header{
color:darkgray;
font-size: 140%;
margin-left: 8%;
padding-top: 2px;
}
.main > .section header hr{
display: block;
}
.main > .section header h2{
display: block;
margin-top: -1px;
font-size: 136%;
}
.main > .section header strong{
display: block;
margin-top: -27px;
font-size: 77%;
}
.main > .section header a{
color: #0079bf;
font-size: 70%;
}
.main > .section header a strong{
display: inline-table;
}
#promo{height: 420px;}
#news{height: 200px;padding-top: 3%;}
#investsearch{height: 481px;padding-top: 3%;}
#eventcalendar{height: 590px;padding-top: 4%;}
#services{height: 206px;padding-top: calc(1vw - 15px);}
#analytics{height: 245px;padding-top: 34px;padding-bottom: 310px;}
#estate{height: 304px;padding-top: 1vw;}
#reviews{height: 245px;padding-top: 49px;padding-bottom: 135px;}
#link-switcher{
width: 100%;
background-color: white;
color: #0079bf;
height: 7px;
padding-top: 1%;
padding-bottom: 2%;
}
#link-switcher > a{
margin-left: 6%;
color: #0079bf;
font-size: 79%;
text-decoration: none;
padding-right: 3px;
position: relative;
left: 6vw;
}
#link-switcher > #delimeter{
position: relative;
left: 6vw;
}
#link-switcher > a:not(:nth-child(1)){
margin-left: 0%;
padding-left: 3px;
}
#link-switcher > a.active{ font-weight: bold; }
#link-switcher > a:hover{
text-decoration: underline;
}
#news, #investsearch, #eventcalendar, #analytics, #reviews{ background-color: #eff3f4; }
#promo{
background-image: url('../images/homepage-bg.jpg');
background-size: cover;
}
#promo > header{
margin-top: -5%;
margin-left: 12vw;
}
#promo > header .promo-header{
display: inline-table;
}
#promo > header .marketing-info{
float: right;
display: inline-table;
}
#promo > header .marketing-info header img {
width: 69%;
border-radius: 10px 10px 10px 10px;
}
#promo > header h2, #promo > header strong{
color: white;
}
#promo > header a{
color: white;
}
#promo > header .add-but, #investsearch > header .add-but{
display: block;
margin-top: 2%;
width: 9%;
background-color: transparent;
}
#promo > header .add-but{
color: gray;
background-color: white;
width: 56%;
margin-top: 14%;
}
#services > header .add-but, #estate > header .add-but{
display: block;
margin-top: 10%;
width: 39%;
}
#promo > header .links{
display: inline-table;
position: relative;
top: -46px;
left: 9vw;
}
#promo > header a{
text-decoration: none;
display: block;
text-transform: uppercase;
color: white;
}
#promo > header a strong{
text-decoration: underline;
display: inline-table;
}
#promo > header .marketing-info{
display: inline-table;
float:right;
width: 80%;
margin-top: -11%;
margin-right: -9%;
}
#promo > header .marketing-info footer ul{
color: white;
list-style-type: none;
font-size: 60%;
}
#promo > header .marketing-info footer ul li{
display: inline-block;
margin-left: 2%;
}
#promo > main.swiper-container{
width: 100vw;
}
#promo > main.swiper-container .promo-feed .promoblock{
width: 25%;
display: inline-flexbox;
background-color: white;
padding-right: 2%;
margin-top: 2%;
-webkit-box-shadow: 3px -1px 4px 0px darkgrey;
-moz-box-shadow: 3px -1px 4px 0px darkgrey;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 15px;
transform: scale(0.85);
}
#promo > main.swiper-container .promo-feed .promoblock:hover{
cursor: pointer;
}
#promo > main.swiper-container .promo-feed .promoblock:hover header{
background-color: #0079bf;
}
#promo > main.swiper-container .promo-feed .promoblock header{
width: 96%;
background-color: darkgray;
color: white;
height: 42px;
margin-left: 0%;
text-transform: uppercase;
padding-top: 3%;
padding-left: 1vw;
padding-right: 1vw;
}
#promo > main.swiper-container .promo-feed .promoblock header a{
margin-left: 13px;
margin-top: 13px;
color: white;
text-decoration: none;
position: relative;
top: -7%;
}
#promo > main.swiper-container .promo-feed .promoblock header strong{
display: inline-table;
}
#promo > main.swiper-container .promo-feed .promoblock main .location{
float: left;
margin-left: 5%;
font-size: 112%;
color: darkgray;
font-style: italic;
display: inline-table;
margin-top: 19%;
font-family: Times New Roman, serif;
}
#promo > main.swiper-container .promo-feed .promoblock main img{
width: 36%;
height: 85px;
float: right;
margin-right: 7%;
display: inline-table;
object-fit: cover;
margin-top: 9%;
}
#promo > main.swiper-container .promo-feed .promoblock main{
display: block;
width: 100%;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 4%;
}
#promo > main.swiper-container .promo-feed .promoblock footer{
width: 100%;
margin-top: 33%;
padding-right: 1px;
padding-left: 4%;
padding-bottom: 2%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info{
display: block;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 2%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span{
display: block;
padding-top: 3%;
padding-bottom: 3%;
font-size: 116%;
font-weight: bold;
color: darkgray;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(1){
color: black;
font-size: 92%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(2){
font-size: 100%;
font-weight: normal;
margin-top: -4%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(3){
font-size: 102%;
margin-top: -4%;
}
#news > header, #investsearch > header, #eventcalendar > header{
margin-left: 12vw;
}
#services > header .add-but, #estate > header .add-but{
display: block;
margin-top: 10%;
width: 39%;
}
#news > header h2{
display: inline;
}
#news > header a{
display: inline;
margin-left: 1%;
top: -10px;
position: relative;
}
#news > main{
width: 100%;
margin-top: -13%;
}
#news > main #slider-controller{
width: 10%;
display: inline-block;
position: relative;
}
#news > main header#slider-controller{
left: 0%;
}
#news > main footer#slider-controller{
right: 0%;
}
#news > main #slider-controller img{
width: 18%;
position: relative;
top: -174px;
}
#news > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#news > main #slider-controller-adaptive img{
width: 76%;
margin-top: 27px;
}
#news > main header#slider-controller-adaptive{
left: -4%;
}
#news > main footer#slider-controller-adaptive{
right: 3%;
top: 0;
}
#news > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#news > main #slider-view{
width: 71%;
display: inline-block;
}
#news > main #slider-view-adaptive{
width: 80%;
display: block;
margin-left: 10%;
margin-top: 19%;
display: none;
}
#news > main #slider-view .news-feed{
margin-left: -11%;
margin-top: 22%;
}
#news > main #slider-view .news-feed .news{
display: inline-block;
width: 33%;
height: 183px;
}
#news > main #slider-view-adaptive .news{
width: 100%;
height: 235px;
}
#news > main #slider-view .news-feed .news a, #news > main #slider-view-adaptive .news a{
display: block;
margin-top: 2px;
color: #0079bf;
font-size: 120%;
text-decoration: none;
font-weight: bold;
height: 85px;
overflow: hidden;
text-overflow: ellipsis;
word-spacing: 0.1em;
letter-spacing: 0.06em;
margin-left: 4%;
width: 94%;
}
#news > main #slider-view .news-feed .news .descr, #news > main #slider-view-adaptive .news .descr{
display: block;
font-size: 90%;
height: 108px;
overflow: hidden;
text-overflow: ellipsis;
margin-top: 1%;
text-align: justify;
color: gray;
margin-left: 4%;
width: 89%;
}
#news > main #slider-view .news-feed .news .date, #news > main #slider-view-adaptive .news .date{
display: block;
margin-top: 11%;
font-size: 96%;
font-style: italic;
color: gray;
font-family: 'Times New Roman',serif;
height: 20px;
margin-top: -3%;
margin-left: 4%;
}
#investsearch > header a{
display: inline-block;
text-decoration: none;
text-transform: uppercase;
margin-left: 10%;
position: relative;
top: -37px;
}
#investsearch > header a strong{
text-decoration: underline;
}
#investsearch > main.swiper-container{
width: 100vw;
}
#investsearch > main.swiper-container .popular-objects .popular-object{
width: 27vw;
display: inline-flexbox;
background-color: white;
margin-left: 16px;
transform: scale(0.85);
padding-left: 10px;
}
#investsearch > main.swiper-container .popular-objects .popular-object:hover{
cursor: pointer;
}
#investsearch > main.swiper-container .popular-objects .popular-object header {
width: 98%;
background-color: #0079bf;
color: white;
margin-left: 0%;
padding-bottom: 4%;
padding-top: 3%;
padding-left: 4%;
}
#investsearch > main.swiper-container .popular-objects .popular-object header h3{
margin-left: 4%;
margin-top: 1%;
font-size: 93%;
position: relative;
top: 10px;
}
#investsearch > main.swiper-container .popular-objects .popular-object main img{
width: 99%;
height: 228px;
object-fit: cover;
}
#investsearch > main.swiper-container .popular-objects .popular-object main{
display: block;
width: 103%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer{
width: 94%;
padding-left: 2%;
padding-right: 4%;
background-color: white;
margin-top: -2%;
padding-bottom: 4%;
padding-top: 4%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info{
display: block;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 2%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span{
display: block;
padding-top: 1%;
padding-bottom: 1%;
font-size: 150%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(1){
font-size: calc(170% / 2);
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(2){
text-transform: uppercase;
font-weight: bold;
font-size: 73%;
overflow: hidden;
text-overflow: ellipsis;
height: 38px;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(3){
font-size: 96%;
color: darkgray;
font-style: italic;
font-family: 'Times New Roman', serif;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer a{
display: block;
padding-top: 5%;
padding-bottom: 3%;
text-decoration: none;
color: darkgray;
text-transform: uppercase;
margin-left: 2%;
font-size: 78%;
}
#eventcalendar > main{
width: 87%;
margin-left: 10%;
margin-top: 1%;
}
#eventcalendar > main .calendar{
border-top: solid 1px black;
width: 90%;
height: 150px;
display: block;
}
#eventcalendar > main .calendar header{
float: left;
font-size: calc(127% * 2);
font-weight: bold;
display: inline;
width: 10%;
margin-left: 4%;
}
#eventcalendar > main .calendar .date{
position: relative;
top: 40px;
margin-left: 21%;
}
#eventcalendar > main .calendar main{
display: inline;
width: 5%;
margin-left: 3%;
}
#eventcalendar > main .calendar main img{
width: 114px;
vertical-align: middle;
margin: 36px 56px 30px 48px;
object-fit: cover;
}
#eventcalendar > main .calendar footer{
float: right;
display: inline;
width: 65%;
margin-top: 1%;
}
#eventcalendar > main .calendar a{
text-decoration: none;
color: #0079bf;
font-size: 129%;
display: block;
font-weight: bold;
}
#eventcalendar > main .calendar .event-location{
font-size: 100%;
display: block;
font-style: italic;
color: gray;
font-family: 'Times New Roman', serif;
}
#eventcalendar > main .calendar .descr{
font-size: 99%;
display: block;
color: gray;
}
#services > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 2vw;
}
#services > header a{
text-decoration: none;
text-transform: uppercase;
}
#services > header a strong{
text-decoration: underline;
}
#services > main{
width: 70%;
float: right;
display: inline-table;
right: 3vw;
top: 1%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#services > main #slider-controller{
width: 10%;
display: inline-table;
}
#services > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(34% / 1.5);
}
#services > main.gecko-fix #slider-controller img{
top: -100px;
}
#services > main footer#slider-controller img{
left: calc(-61% / 1.5);
}
#analytics > main footer#slider-controller img{
left: calc(-61% / 1.5);
}
#estate > main footer#slider-controller img{
left: calc(-39% / 1.5);
}
#reviews > main footer#slider-controller img{
left: calc(-60% / 1.5);
}
#services > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#services > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 100px;
}
#services > main header#slider-controller-adaptive{
left: -5%;
}
#services > main footer#slider-controller-adaptive{
right: -7%;
top: 0;
}
#services > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#services > main #slider-view{
width: 70%;
display: inline-table;
}
#services > main #slider-view-adaptive{
width: 100%;
display: none;
}
#services > main #slider-view .service-feed{
margin-left: -7%;
}
#services > main #slider-view-adaptive .service{
width: 58vw;
height: 290px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: calc(22vw / 2);
background-color: white;
padding-bottom: 4%;
}
#services > main #slider-view .service-feed .service{
width: 26%;
height: 250px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 3%;
background-color: white;
padding-bottom: 5%;
transform: scale(0.9);
padding-right: 6px;
padding-left: 6px;
}
#services > main #slider-view .service-feed .service header, #services > main #slider-view-adaptive .service header{
background-color: darkgray;
color: white;
text-transform: uppercase;
width: 100%;
display: block;
font-size: 72%;
float: left;
margin-left: 0;
}
#services > main #slider-view .service-feed .service:hover, #services > main #slider-view-adaptive .service:hover{
cursor: pointer;
}
#services > main #slider-view .service-feed .service:hover header, #services > main #slider-view-adaptive .service:hover header{
background-color: #0079bf;
}
#services > main #slider-view .service-feed .service header h3, #services > main #slider-view-adaptive .service header h3{
margin-left: 7%;
}
#services > main #slider-view .service-feed .service main, #services > main #slider-view-adaptive .service main{
width: 100%;
float: left;
padding-top: 1%;
padding-bottom: 1%;
}
#services > main #slider-view .service-feed .service main img, #services > main #slider-view-adaptive .service main img{
width: 50%;
object-fit: contain;
margin-left: 7%;
}
#services > main #slider-view .service-feed .service footer, #services > main #slider-view-adaptive .service footer{
display: block;
width: 95%;
font-size: 100%;
margin-left: 2%;
padding-top: 2%;
padding-bottom: 2%;
margin-left: 7%;
}
#services > main #slider-view .service-feed .service footer .title, #services > main #slider-view-adaptive .service footer .title{
font-weight: bold;
display: block;
}
#services > main #slider-view .service-feed .service footer .location, #services > main #slider-view-adaptive .service footer .location{
color: darkgray;
font-style: italic;
font-size: 101%;
display: block;
font-family: 'Times New Roman', serif;
}
#services > main #slider-view .service-feed .service footer .descr, #services > main #slider-view-adaptive .service footer .descr{
display: block;
text-align: justify;
width: 90%;
font-size: calc(120% / 2);
}
#services > main.gecko-fix #slider-view .service-feed .service footer .descr, #services > main.gecko-fix #slider-view-adaptive .service footer .descr{
font-size: calc(200% / 2);
}
#analytics > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 4vw;
}
#analytics > main{
width: 70%;
float: right;
display: inline-table;
top: 11%;
right: 3vw;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#analytics > main #slider-controller{
width: 10%;
display: inline-table;
}
#analytics > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(36% / 1.5);
}
#analytics > main #slider-controller-adaptive{
width: 10%;
height: 370px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#analytics > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 200px;
}
#analytics > main header#slider-controller-adaptive{
left: -4%;
}
#analytics > main footer#slider-controller-adaptive{
right: -10%;
top: 0;
}
#analytics > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#analytics > main #slider-view{
width: 70%;
display: inline-table;
}
#analytics > main #slider-view-adaptive{
width: 100%;
display: none;
}
#analytics > main #slider-view .analytic-feed{
margin-left: -15%;
margin-top: -4%;
}
#analytics > main #slider-view-adaptive .analytic{
width: 58vw;
height: 412px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 11vw;
padding-bottom: 2%;
background-color: white;
margin-top: 14vw;
}
#analytics > main #slider-view .analytic-feed .analytic{
width: 26%;
height: 360px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 9%;
padding-bottom: 2%;
background-color: white;
padding-right: -1px;
transform: scale(0.9);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1){
position: relative;
top: 4px;
}
#analytics > main #slider-view .analytic-feed .analytic:hover {
background-color: #0079bf;
cursor: pointer;
}
#analytics > main #slider-view .analytic-feed .analytic:hover *, #analytics > main #slider-view .analytic-feed .analytic:hover .descr,
#analytics > main #slider-view-adaptive .analytic:hover *, #analytics > main #slider-view-adaptive .analytic:hover .descr{
color: white;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2{
display: block;
margin-left: 7%;
margin-top: 5%;
color: #0079bf;
font-size: 99%;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
top: 0mm;
width: 81%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2{
font-size: 153%;
}
#analytics > main #slider-view .analytic-feed .analytic .descr, #analytics > main #slider-view-adaptive .analytic .descr{
display: block;
margin-left: 7%;
margin-top: 7%;
font-size: 86%;
color: darkgray;
width: 86%;
text-align: justify;
}
#analytics > main #slider-view .analytic-feed .analytic a, #analytics > main #slider-view-adaptive .analytic a{
display: block;
margin-left: 8%;
margin-top: 1%;
color: #0079bf;
font-size: 101%;
}
#estate > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 3vw;
}
#estate > main{
width: 70%;
float: right;
display: inline-table;
right: 4vw;
top: 12%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#estate > main #slider-controller{
width: 10%;
display: inline-table;
}
#estate > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(47% / 1.5);
}
#estate > main.gecko-fix #slider-controller img{
top: -32px;
}
#estate > main #slider-controller-adaptive{
width: 10%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#estate > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 200px;
}
#estate > main header#slider-controller-adaptive{
left: -28%;
}
#estate > main footer#slider-controller-adaptive{
right: 17%;
top: 0;
}
#estate > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#estate > main #slider-view{
width: 70%;
display: inline-table;
}
#estate > main #slider-view-adaptive{
width: 100%;
display: none;
}
#estate > main #slider-view .estat-feed{
margin-left: -5%;
}
#estate > main #slider-view .estat-feed .estat{
width: 27%;
height: 208px;
display: inline-table;
margin-left: 3%;
background-color: white;
box-shadow: 3px -1px 4px 0px darkgrey;
transform: scale(0.9);
position: relative;
padding-right: 12px;
}
#estate > main #slider-view-adaptive .estat{
width: 52vw;
height: 235px;
margin-left: -3vw;
background-color: white;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-top: 18vw;
}
#estate > main #slider-view .estat-feed .estat header, #estate > main #slider-view-adaptive .estat header{
background-color: darkgray;
color: white;
text-transform: uppercase;
width: 100%;
display: block;
font-size: 78%;
float: left;
margin-left: 0;
}
#estate > main #slider-view .estat-feed .estat:hover, #estate > main #slider-view-adaptive .estat:hover{
cursor: pointer;
}
#estate > main #slider-view .estat-feed .estat:hover header, #estate > main #slider-view-adaptive .estat:hover header{
background-color: #0079bf;
}
#estate > main #slider-view .estat-feed .estat header h3, #estate > main #slider-view-adaptive .estat header h3{
margin-left: 7%;
}
#estate > main #slider-view .estat-feed .estat main, #estate > main #slider-view-adaptive .estat main{
width: 100%;
float: left;
}
#estate > main #slider-view .estat-feed .estat main img, #estate > main #slider-view-adaptive .estat main img{
width: 100%;
object-fit: cover;
height: 130px;
}
#estate > main #slider-view .estat-feed .estat footer, #estate > main #slider-view-adaptive .estat footer{
display: block;
padding-top: 0%;
padding-bottom: 13%;
width: 100%;
background-color: white;
}
#estate > main #slider-view .estat-feed .estat footer .info, #estate > main #slider-view .estat-feed .estat footer .raiting, #estate > main #slider-view-adaptive .estat footer .info, #estate > main #slider-view-adaptive .estat footer .raiting{
display: block;
margin-left: 8%;
padding-bottom: 0%;
position: relative;
top: 30px;
}
#estate > main #slider-view .estat-feed .estat footer .info span, #estate > main #slider-view-adaptive .estat footer .info span{
padding-top: 2%;
padding-bottom: 2%;
font-size: 94%;
color: darkgray;
display: block;
}
#estate > main #slider-view .estat-feed .estat footer .info span:nth-child(1), #estate > main #slider-view-adaptive .estat footer .info span:nth-child(1){
font-size: 105%;
color:black;
font-weight: bold;
}
.raiting{
margin-left: 2%;
padding-bottom: 6%;
padding-top: 9%;
}
.raiting > span{
display: block;
margin-top: 2%;
color: #0079bf;
font-size: 80%;
text-transform: uppercase;
}
.rating-mini {
display: block;
font-size: 0;
margin-top: 2%;
}
.rating-mini span {
padding: 0;
font-size: 19px;
line-height: 1;
color: lightgrey;
}
.rating-mini > span:before {
content: '★';
}
.rating-mini > span.active {
color: gold;
}
#reviews > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 3vw;
}
#reviews > main{
width: 70%;
float: right;
display: inline-table;
right: 3vw;
top: 8%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#reviews > main #slider-controller{
width: 10%;
display: inline-table;
}
#reviews > main #slider-controller img{
width: 26%;
position: relative;
top: 100px;
left: calc(31% / 1.5);
}
#reviews > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#reviews > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 100px;
}
#reviews > main header#slider-controller-adaptive{
left: -11%;
}
#reviews > main footer#slider-controller-adaptive{
right: -5%;
top: 0;
}
#reviews > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#reviews > main #slider-view{
width: 70%;
display: inline-table;
}
#reviews > main #slider-view-adaptive{
width: 100%;
display: none;
}
#reviews > main #slider-view .review-feed{
margin-left: -8%;
}
#reviews > main #slider-view-adaptive .review{
width: 62vw;
height: 238px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 8%;
padding-bottom: calc(2% * 5);
background-color: white;
padding-top: 1%;
}
#reviews > main #slider-view .review-feed .review{
width: 15vw;
height: 238px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 3%;
padding-bottom: 2%;
background-color: white;
padding-top: 1%;
transform: scale(0.9);
padding-right: 1px;
}
#reviews > main #slider-view .review-feed .review main h3, #reviews > main #slider-view-adaptive .review main h3{
display: block;
margin-left: 5%;
margin-top: 6%;
color:#0079bf;
font-size: 100%;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
width: 90%;
}
#reviews > main #slider-view .review-feed .review footer a, #reviews > main #slider-view-adaptive .review footer a{
margin-left: 5%;
margin-top: 1%;
color: #0079bf;
font-size: 95%;
display: block;
}
.footer{
width: 100%;
height: calc(210px * 2);
background-color:#9da5a7;
color: white;
}
.footer > header #contact a, .footer > main #category_menu .catname{
text-decoration: none;
color: white;
}
.footer > header {
float: left;
display: inline;
margin-left: 12vw;
width: 22%;
position: relative;
top: 50px;
font-size: 98%;
}
.footer > header .logo{
float: left;
}
.footer > header .logo img{
width: 79%;
}
.footer > header span{
float: right;
font-size: 64%;
display: contents;
}
.footer > header main{
display: block;
position: relative;
top: 68px;
left: -111px;
width: 129%;
}
.footer > header main a{
padding-top: 8px;
margin-left: 1%;
background-color: #65696b;
display: inline;
padding-bottom: 8px;
padding-left: 8px;
padding-right: 8px;
}
.footer > header main a img{
width: 20px;
height: 20px;
vertical-align: middle;
}
.footer > main {
float: right;
display: inline-table;
margin-right: -16vw;
width: 80%;
position: relative;
top: 5%;
}
.footer > main #category_menu {
display: inline-block;
padding-left: 10px;
padding-right: 5%;
margin-top: 2%;
}
.footer > main #category_menu .catname {
font-size: 95%;
font-weight: bold;
}
.footer > main #category_menu ul {
display: block;
margin-top: 20px;
font-size: 80%;
margin-left: -28px;
list-style-type: square;
}
.footer > main #category_menu ul li {
padding-bottom: 13px;
}
.footer > main #category_menu ul li a {
color: white;
text-decoration: none;
}
@media all and (max-width: 1024px){
#news > main #slider-controller, #news > main #slider-view, #services > main #slider-controller, #services > main #slider-view,
#analytics > main #slider-controller, #analytics > main #slider-view, #estate > main #slider-controller, #estate > main #slider-view,
#reviews > main #slider-controller, #reviews > main #slider-view, #eventcalendar > main .calendar main, #eventcalendar > main .calendar .descr{ display: none; }
#news > main #slider-controller-adaptive, #news > main #slider-view-adaptive, #services > main #slider-controller-adaptive, #services > main #slider-view-adaptive,
#analytics > main #slider-controller-adaptive, #analytics > main #slider-view-adaptive, #estate > main #slider-controller-adaptive, #estate > main #slider-view-adaptive,
#reviews > main #slider-controller-adaptive, #reviews > main #slider-view-adaptive{ display: inherit; }
#link-switcher {
height: 20px;
}
}
@media all and (max-width: 414px){
#promo {
height: 600px;
}
#news {
height: 280px;
}
#investsearch {
height: 650px;
}
#services {
height: 580px;
}
#analytics {
height: 420px;
}
#estate {
height: 710px;
}
#reviews {
height: 320px;
}
#eventcalendar {
height: 780px;
}
#services > header .add-but, #estate > header .add-but {
width: 90%;
}
#promo > main.swiper-container .promo-feed .promoblock {
width: 90%;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 36vw;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#eventcalendar > main .calendar header {
font-size: calc(100% * 2);
}
#eventcalendar > main .calendar .date {
top: calc(40px / 2);
}
#eventcalendar > main .calendar {
height: 170px;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 93%;
margin-top: 9%;
margin-left: 7%;
}
#eventcalendar > main .calendar .event-location {
font-size: 90%;
}
#eventcalendar > main .calendar a {
font-size: 100%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 103%;
}
#promo > main.swiper-container .promo-feed .promoblock main {
padding-bottom: 20%;
}
#services > main {
right: 20vw;
top: 10%;
}
#analytics > main {
right: 20vw;
top: 4%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2 {
font-size: 128%;
top: 2mm;
}
#estate > main {
right: 0vw;
top: -4%;
}
#reviews > main {
right: 15vw;
top: 12%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(165px * 8);
}
.footer > header {
width: 72%;
}
.footer > main {
float: left;
display: block;
margin-right: 0vw;
top: 6%;
margin-left: 10%;
}
}
@media all and (min-width: 414px) and (max-width: 768px){
#promo {
height: 650px;
}
#news {
height: 280px;
}
#investsearch {
height: 650px;
}
#services {
height: 580px;
}
#analytics {
height: 420px;
}
#estate {
height: 633px;
}
#reviews {
height: 380px;
}
#eventcalendar {
height: 780px;
}
#services > header .add-but, #estate > header .add-but {
width: 90%;
}
#investsearch > header a { margin-left: 57%; }
#promo > header .links {
top: -49px;
left: 35vw;
}
#promo > main.swiper-container .promo-feed .promoblock {
width: 90%;
height: 490px;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#eventcalendar > main .calendar header {
font-size: calc(100% * 2);
}
#eventcalendar > main .calendar .date {
top: calc(40px / 2);
}
#eventcalendar > main .calendar {
height: 170px;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 93%;
margin-top: 9%;
margin-left: 7%;
}
#eventcalendar > main .calendar .event-location {
font-size: 90%;
}
#eventcalendar > main .calendar a {
font-size: 100%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 101%;
}
#services > main {
right: 20vw;
top: 12%;
}
#analytics > main {
right: 20vw;
top: -2%;
}
#estate > main {
right: 0vw;
top: -7%;
}
#reviews > main {
right: 17vw;
top: 12%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(210px * 4);
}
.footer > header {
width: 72%;
}
.footer > main {
float: left;
display: block;
margin-right: 0vw;
top: 15%;
margin-left: 10%;
width: 80%;
}
.footer > main #category_menu {
padding-right: 3%;
}
}
@media all and (min-width: 600px) and (max-width: 768px){
#promo {
height: 630px;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 25vw;
}
#promo > main.swiper-container .promo-feed .promoblock { width: 80%; height: 530px; }
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
#reviews > main {
top: 13%;
}
#estate {
padding-bottom: 26%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer > main #category_menu {
padding-right: 15%;
}
#estate > main #slider-view-adaptive .estat {
height: 230px;
}
}
@media all and (min-width: 768px) and (max-width: 800px){
#reviews {
padding-bottom: 33%;
}
#reviews > main {
top: 21%;
left: -15vw;
}
#estate {
height: 430px;
}
#services > main{
top: 12%;
left: -17vw;
}
#analytics > main {
margin-top: -6%;
left: -19vw;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(210px * 5);
}
.footer > header {
width: 50%;
}
.footer > main {
margin-right: -11vw;
width: 100%;
top: 12%;
}
}
@media all and (min-width: 600px) and (max-width: 768px){
#estate > main {
margin-top: 0%;
}
#estate {
padding-bottom: 49%;
}
#services > main #slider-view-adaptive .service {
height: 350px;
}
#services {
padding-bottom: 15%;
}
#analytics > main {
margin-top: -4%;
}
.footer {
height: calc(204px * 4);
}
.footer > main {
top: 8%;
}
}
@media all and (min-width: 800px) and (max-width: 1024px){
#reviews {
padding-bottom: 40%;
}
}
@media all and (min-width: 768px) and (max-width: 800px){
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 20vw;
}
#promo {
height: 460px;
}
#investsearch {
height: 500px;
padding-top: 15%;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2 {
top: 5mm;
}
#services {
height: 567px;
}
#analytics {
padding-bottom: 450px;
}
#promo > main.swiper-container .promo-feed .promoblock { width: 35%; height: 375px;}
#services > main #slider-view-adaptive .service {
width: 56vw;
height: 330px;
margin-left: calc(22vw / 2);
}
#eventcalendar > main .calendar footer {
margin-top: 6%;
}
#eventcalendar {
height: 729px;
}
#estate > main {
right: -2vw;
top: -12%;
}
.footer {
height: calc(126px * 6);
}
}
@media all and (min-width: 800px) and (max-width: 960px){
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 20vw;
}
#promo > main.swiper-container .promo-feed .promoblock {
height: 380px;
}
#investsearch {
height: 570px;
}
#eventcalendar > main .calendar footer {
margin-top: 5%;
}
#promo > main.swiper-container .promo-feed .promoblock {width: 27%;}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
#eventcalendar {
height: 630px;
}
#services {
height: 640px;
}
#estate {
height: calc(254px * 3);
}
#analytics {
padding-bottom: calc(217px * 2);
}
#services > main {
right: 17vw;
top: 10%;
}
#services > main #slider-view-adaptive .service {
width: 58vw;
height: 350px;
}
#analytics > main {
top: 6%;
right: 19vw;
}
#estate > main {
right: -2vw;
top: -10%;
}
#reviews > main {
right: 17vw;
top: 22%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 99%;
}
#promo > main.swiper-container .promo-feed .promoblock footer {
margin-top: 50%;
}
.footer {
height: calc(210px * 4);
}
.footer > header {
width: 50%;
}
.footer > main {
margin-right: -11vw;
width: 100%;
top: 12%;
}
.footer > main #category_menu {
padding-right: 17%;
}
}
@media all and (min-width: 960px) and (max-width: 1024px){
#link-switcher{
height: 22px;
}
#promo {
height: 550px;
}
#news {
height: 300px;
}
#investsearch {
height: 600px;
}
#analytics {
height: 490px;
}
#services {
height: calc(350px * 2);
}
#estate {
height: calc(390px * 2);
}
#reviews {
height: 400px;
padding-bottom: 37vw;
}
#news > main #slider-view,
#services > main #slider-view,
#estate > main #slider-view,
#analytics > main #slider-view,
#reviews > main #slider-view,
#news > main #slider-controller,
#services > main #slider-controller,
#estate > main #slider-controller,
#analytics > main #slider-controller,
#reviews > main #slider-controller,
#eventcalendar > main .calendar main,
#eventcalendar > main .calendar .descr{ display: none; }
#news > main #slider-view-adaptive,
#services > main #slider-view-adaptive,
#estate > main #slider-view-adaptive,
#analytics > main #slider-view-adaptive,
#reviews > main #slider-view-adaptive,
#news > main #slider-controller-adaptive,
#services > main #slider-controller-adaptive,
#estate > main #slider-controller-adaptive,
#analytics > main #slider-controller-adaptive,
#reviews > main #slider-controller-adaptive{ display: inherit; }
.footer > header main {
display: none;
}
.footer > header {
width: 25%;
}
.footer > main {
float: left;
margin-left: -27vw;
width: 80%;
top: 19%;
}
.footer {
height: calc(123px * 7);
}
.footer > header .logo img {
width: 100%;
}
#investsearch > header, #estate > header, #services > header {
width: 80%;
}
#promo > header .add-but, #investsearch > header .add-but { width: 50%; }
#eventcalendar > main .calendar header {
float: left;
font-size: calc((127% / 2) * 3);
display: block;
width: 100%;
margin-left: 2%;
}
#eventcalendar > main .calendar .date {
top: 2px;
margin-left: 0%;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 100%;
margin-top: 1%;
margin-left: 2%;
}
#eventcalendar > main .calendar {
height: 110px;
}
#eventcalendar > main .calendar a {
font-size: 120%;
}
#eventcalendar > main .calendar .event-location {
font-size: 120%;
}
#analytics > main {
top: -5%;
right: 21vw;
}
#estate > main {
top: -14%;
right: 1vw;
}
#reviews > main {
right: 17vw;
top: 22%;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 16vw;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2{ top: 4mm; }
#services > main {top: 12%;right: 17vw;}
#services > main #slider-view-adaptive .service {
height: 360px;
}
#estate > main #slider-controller-adaptive img{
margin-top: 400%;
}
#analytics > main #slider-controller-adaptive img{
margin-top: 320%;
}
}
@media all and (min-width: 1024px) and (max-width: 1280px){
#eventcalendar > main .calendar .date {
margin-left: -25%;
}
#promo {
height: 500px;
}
#news {
height: 180px;
}
#investsearch {
height: 520px;
}
.footer > main #category_menu {
padding-right: 2%;
}
#eventcalendar {
height: 710px;
}
#eventcalendar > main .calendar {
height: 175px;
}
#eventcalendar > main .calendar main {
display: none;
}
#eventcalendar > main .calendar footer {
width: 80%;
margin-top: 1%;
}
#analytics > main #slider-view .analytic-feed .analytic {
height: 405px;
width: 27%;
}
#reviews > main {
top: 50%;
}
#promo > header .links {
top: -48px;
left: 14vw;
}
#analytics > main{
top: 13%;
left: -3%;
}
#estate > main {
top: -15%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
left: -1%;
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-45% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-25% / 1.5);
}
.header > #header_top .ht_header span {
display: none;
}
.header > #header_bottom {
margin-right: 4%;
margin-top: -6%;
}
#promo > header .marketing-info {
margin-top: 5%;
margin-right: -18%;
}
#services > main.gecko-fix #slider-controller img {
top: -110px;
}
#estate > main.gecko-fix #slider-controller img {
top: -20px;
}
}
@media all and (min-width: 1211px) and (max-width: 1233px){
#promo > header .marketing-info {
margin-top: -15%;
}
}
@media all and (min-width: 1233px) and (max-width: 1279px){
.header > #header_bottom {
position: relative;
top: 77%;
}
}
@media (max-width: 1024px){
.footer > header main {
display: none;
}
.header > #header_top .ht_header span, .header > #header_bottom, #promo > header .marketing-info{ display: none; }
.header > #header_bottom_adaptive{ display: inherit; }
#investsearch > header a {margin-left: 34%;}
#investsearch > header .add-but {
width: 30%;
}
#promo > header .add-but {
width: 60%;
}
}
@media all and (min-width: 1280px) and (max-width: 1366px){
#promo {
height: 460px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) {
position: relative;
top: -3px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2 {
font-size: 120%;
}
#analytics > main #slider-view .analytic-feed .analytic {
height: 309px;
width: 27%;
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image img, #analytics > main #slider-view-adaptive .analytic#with-title-image img {
height: 82px;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
height: 450px;
}
.header > #header_bottom {
margin-right: 12%;
top: -10%;
}
#promo > header .marketing-info {
margin-right: -3%;
}
#eventcalendar > main .calendar main {
display: none;
}
#investsearch {
height: 520px;
}
#eventcalendar > main .calendar footer {
width: 80%;
}
#analytics > main{
top: 28%;
}
#news {
height: 180px;
padding-bottom: 12%;
}
#estate > main {
top: 7%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
left: 1%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(2) {
left: -7%;
}
#promo > header .marketing-info header img {
width: 77%;
border-radius: 10px 10px 10px 10px;
}
#promo > header .links {
top: -48px;
left: 11vw;
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-45% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-25% / 1.5);
}
#reviews > main {
top: 10%;
}
#reviews > main footer#slider-controller img {
left: calc(-40% / 1.5);
}
#services > main #slider-controller img {
left: calc(20% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(30% / 1.5);
}
#estate > main #slider-controller img {
left: calc(50% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(30% / 1.5);
}
}
@media all and (min-width: 1336px) and (max-width: 1367px){
#promo > header .marketing-info {
margin-top: -13%;
}
}
@media all and (min-width: 1366px) and (max-width: 1440px){
.header > #header_bottom {
margin-top: -5%;
}
.header > #header_top .ht_header span {
display: none;
}
#eventcalendar > main .calendar main {
display: none;
}
#services > main #slider-view .service-feed .service header {
font-size: calc(130% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2 {
font-size: calc(254% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic h2 {
font-size: calc(200% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic .descr{
font-size: calc(190% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image img{
height: 130px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
top: 0px;
left: 3%;
}
#eventcalendar > main .calendar header {
font-size: calc((127% / 2) * 3);
}
#eventcalendar > main .calendar .event-location {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar a {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar .descr {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar footer {
width: 82%;
margin-top: 1%;
}
#eventcalendar > main .calendar {
height: 125px;
}
#analytics > main{
top: 9%;
}
#estate > main {
top: 7%;
}
#investsearch {
height: 500px;
}
#promo > header .marketing-info {
margin-top: -13%;
}
#promo > header .links {
top: -50px;
left: 10vw;
}
#estate > main.gecko-fix #slider-controller img {
top: -30px;
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image {
top: 98px;
}
#news {
padding-top: 5%;
}
#reviews > main footer#slider-controller img {
left: calc(-20% / 1.5);
}
#services > main #slider-controller img {
left: calc(12% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-23% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(14% / 1.5);
}
#estate > main #slider-controller img {
left: calc(28% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(7% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-6% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(10% / 1.5);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) {
position: relative;
top: 2px;
}
}
@media all and (min-width: 1406px) and (max-width: 1440px){
#promo > header .marketing-info {
margin-top: -12%;
}
.header > #header_bottom {
margin-top: 0%;
}
}
@media all and (min-width: 1440px) and (max-width: 1536px){
#eventcalendar > main .calendar main {
margin-left: 2%;
}
#eventcalendar > main .calendar{
height: 160px;
}
#promo > header .marketing-info {
margin-top: -13%;
}
#investsearch {
height: 500px;
}
#services > main #slider-controller img {
left: calc(30% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(33% / 1.5);
}
#estate > main #slider-controller img {
left: calc(46% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-20% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(33% / 1.5);
}
#reviews > main footer#slider-controller img {
left: calc(-49% / 1.5);
}
}
@media all and (min-width: 1536px) and (max-width: 1600px){
#promo > header .marketing-info {
margin-top: -11%;
}
#services > main #slider-controller img {
left: calc(30% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
#estate > main #slider-controller img {
left: calc(52% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-21% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(37% / 1.5);
}
#reviews > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
}
@media all and (max-width: 1600px){}
@media all and (max-width: 1920px){}
@media all and (min-width: 1920px){
#promo > header .marketing-info {
margin-top: -9%;
}
#promo > main.swiper-container .promo-feed .promoblock {
height: 480px;
}
#analytics > main {
top: 25%;
}
#reviews > main {
top: 20%;
}
}
@media all and (width: 1024px){
#promo {
height: 520px;
}
#analytics > main {
left: -22%;
}
#news {
height: 220px;
}
#investsearch {
height: 570px;
}
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
|
www/investportal/basic/web/css/app.css
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('addons/adaptiveheader.css');
@import url('addons/lightbox.css');
@import url('addons/docsicon.css');
@import url('addons/video-player.css');
@import url('addons/chat.css');
@import url('addons/threedetalization.css');
@import url('addons/feedblocks/analytics.css');
@import url('addons/feedblocks/reviews.css');
@import url('addons/feedblocks/slidesshow.css');
@import url('addons/investportal-id-ui.css');
html,body{
font-family: 'Open Sans', sans-serif;
overflow-x:hidden;
margin-left: -1%;
width: 102%;
margin-top: 0%;
margin-bottom: 0%;
}
h4.title, p.descr{
font-size: 100%;
}
.header{
width: 100%;
height: 99px;
background-color: #eff3f4;
/* position: fixed;
top: 0;
z-index: 1; */
padding-top: 2%;
}
.header > #header_top{
float: left;
margin-left: 12vw;
width: 19%;
margin-top: -1%;
}
.header > #header_top .ht_header img {
width: 107px;
float: left;
display: inline-table;
}
.header > #header_top .ht_header span {
font-size: 80%;
color: darkgray;
display: inline;
text-align: left;
position: relative;
left: 17px;
}
.header > #header_bottom{
float: right;
margin-right: 12%;
}
.header > #header_bottom .hb_bottom header{
display: block;
width: 100%;
height: 50px;
margin-top: -2%;
}
.header > #header_bottom .hb_bottom header .welcome-link {
float: left;
display: inline-block;
font-size: 81%;
margin-left: 1%;
margin-top: 1%;
}
.header > #header_bottom .hb_bottom header .welcome-link a{
color: #0079bf;
text-decoration: none;
}
.header > #header_bottom .hb_bottom header .header-informer{
display: inline;
float: right;
width: 30%;
margin-top: -6%;
}
.header > #header_bottom .hb_bottom header .header-informer header{
display: inline-block;
float: left;
width: 26%;
margin-left: -44%;
margin-top: 20%;
}
.header > #header_bottom .hb_bottom header .header-informer main {
display: inline-block;
margin-left: -23%;
margin-top: 21%;
}
.header > #header_bottom .hb_bottom header .header-informer main a {
display: inline;
margin-left: 17px;
}
.header > #header_bottom .hb_bottom header .header-informer footer {
display: inline;
float: right;
margin-top: -10%;
padding-left: 44px;
width: 53%;
margin-right: -3%;
}
#regexchange {
font-size: 98%;
color: gray;
background-color: transparent;
border: none;
appearance: none;
-moz-appearance: none;
appearance: none;
margin-top: 14%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services{
display: inline;
position: relative;
left: -8%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services div{
padding-right: 2%;
display: inline;
}
.header > #header_bottom .hb_bottom header .header-informer footer .user-services a {
color: #0079bf;
font-size: 90%;
text-decoration: none;
margin-left: 3%;
}
.header > #header_bottom .hb_bottom header .header-informer footer .menu-show{
display: inline;
position: relative;
left: -8px;
}
.header > #header_bottom .hb_bottom footer{
display: block;
width: 100%;
margin-top: 2%;
height: 50px;
}
.header > #header_bottom .hb_bottom footer nav{
font-size: 85%;
}
.header > #header_bottom .hb_bottom footer nav a{
display: inline;
color: #0079bf;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
margin-left: 11px;
margin-right: 12px;
padding-bottom: 1%;
font-family: 'Open Sans', sans-serif;
}
.header > #header_bottom .hb_bottom footer nav #active{
border-bottom: solid 2px #0079bf;
}
.main{
width: 100%;
height: auto;
}
.main > .section{
width: 100%;
height: 800px;
display: block;
padding-bottom: 8%;
padding-top: 4%;
}
.main > .section header{
color:darkgray;
font-size: 140%;
margin-left: 8%;
padding-top: 2px;
}
.main > .section header hr{
display: block;
}
.main > .section header h2{
display: block;
margin-top: -1px;
font-size: 136%;
}
.main > .section header strong{
display: block;
margin-top: -27px;
font-size: 77%;
}
.main > .section header a{
color: #0079bf;
font-size: 70%;
}
.main > .section header a strong{
display: inline-table;
}
#promo{height: 420px;}
#news{height: 200px;padding-top: 3%;}
#investsearch{height: 481px;padding-top: 3%;}
#eventcalendar{height: 590px;padding-top: 4%;}
#services{height: 206px;padding-top: calc(1vw - 15px);}
#analytics{height: 245px;padding-top: 34px;padding-bottom: 310px;}
#estate{height: 304px;padding-top: 1vw;}
#reviews{height: 245px;padding-top: 49px;padding-bottom: 135px;}
#link-switcher{
width: 100%;
background-color: white;
color: #0079bf;
height: 7px;
padding-top: 1%;
padding-bottom: 2%;
}
#link-switcher > a{
margin-left: 6%;
color: #0079bf;
font-size: 79%;
text-decoration: none;
padding-right: 3px;
position: relative;
left: 6vw;
}
#link-switcher > #delimeter{
position: relative;
left: 6vw;
}
#link-switcher > a:not(:nth-child(1)){
margin-left: 0%;
padding-left: 3px;
}
#link-switcher > a.active{ font-weight: bold; }
#link-switcher > a:hover{
text-decoration: underline;
}
#news, #investsearch, #eventcalendar, #analytics, #reviews{ background-color: #eff3f4; }
#promo{
background-image: url('../images/homepage-bg.jpg');
background-size: cover;
}
#promo > header{
margin-top: -5%;
margin-left: 12vw;
}
#promo > header .promo-header{
display: inline-table;
}
#promo > header .marketing-info{
float: right;
display: inline-table;
}
#promo > header .marketing-info header img {
width: 69%;
border-radius: 10px 10px 10px 10px;
}
#promo > header h2, #promo > header strong{
color: white;
}
#promo > header a{
color: white;
}
#promo > header .add-but, #investsearch > header .add-but{
display: block;
margin-top: 2%;
width: 9%;
background-color: transparent;
}
#promo > header .add-but{
color: gray;
background-color: white;
width: 56%;
margin-top: 14%;
}
#services > header .add-but, #estate > header .add-but{
display: block;
margin-top: 10%;
width: 39%;
}
#promo > header .links{
display: inline-table;
position: relative;
top: -46px;
left: 9vw;
}
#promo > header a{
text-decoration: none;
display: block;
text-transform: uppercase;
color: white;
}
#promo > header a strong{
text-decoration: underline;
display: inline-table;
}
#promo > header .marketing-info{
display: inline-table;
float:right;
width: 80%;
margin-top: -11%;
margin-right: -9%;
}
#promo > header .marketing-info footer ul{
color: white;
list-style-type: none;
font-size: 60%;
}
#promo > header .marketing-info footer ul li{
display: inline-block;
margin-left: 2%;
}
#promo > main.swiper-container{
width: 100vw;
}
#promo > main.swiper-container .promo-feed .promoblock{
width: 25%;
display: inline-flexbox;
background-color: white;
padding-right: 2%;
margin-top: 2%;
-webkit-box-shadow: 3px -1px 4px 0px darkgrey;
-moz-box-shadow: 3px -1px 4px 0px darkgrey;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 15px;
transform: scale(0.85);
}
#promo > main.swiper-container .promo-feed .promoblock:hover{
cursor: pointer;
}
#promo > main.swiper-container .promo-feed .promoblock:hover header{
background-color: #0079bf;
}
#promo > main.swiper-container .promo-feed .promoblock header{
width: 96%;
background-color: darkgray;
color: white;
height: 42px;
margin-left: 0%;
text-transform: uppercase;
padding-top: 3%;
padding-left: 1vw;
padding-right: 1vw;
}
#promo > main.swiper-container .promo-feed .promoblock header a{
margin-left: 13px;
margin-top: 13px;
color: white;
text-decoration: none;
position: relative;
top: -7%;
}
#promo > main.swiper-container .promo-feed .promoblock header strong{
display: inline-table;
}
#promo > main.swiper-container .promo-feed .promoblock main .location{
float: left;
margin-left: 5%;
font-size: 112%;
color: darkgray;
font-style: italic;
display: inline-table;
margin-top: 19%;
font-family: Times New Roman, serif;
}
#promo > main.swiper-container .promo-feed .promoblock main img{
width: 36%;
height: 85px;
float: right;
margin-right: 7%;
display: inline-table;
object-fit: cover;
margin-top: 9%;
}
#promo > main.swiper-container .promo-feed .promoblock main{
display: block;
width: 100%;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 4%;
}
#promo > main.swiper-container .promo-feed .promoblock footer{
width: 100%;
margin-top: 33%;
padding-right: 1px;
padding-left: 4%;
padding-bottom: 2%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info{
display: block;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 2%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span{
display: block;
padding-top: 3%;
padding-bottom: 3%;
font-size: 116%;
font-weight: bold;
color: darkgray;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(1){
color: black;
font-size: 92%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(2){
font-size: 100%;
font-weight: normal;
margin-top: -4%;
}
#promo > main.swiper-container .promo-feed .promoblock footer .info span:nth-child(3){
font-size: 102%;
margin-top: -4%;
}
#news > header, #investsearch > header, #eventcalendar > header{
margin-left: 12vw;
}
#services > header .add-but, #estate > header .add-but{
display: block;
margin-top: 10%;
width: 39%;
}
#news > header h2{
display: inline;
}
#news > header a{
display: inline;
margin-left: 1%;
top: -10px;
position: relative;
}
#news > main{
width: 100%;
margin-top: -13%;
}
#news > main #slider-controller{
width: 10%;
display: inline-block;
position: relative;
}
#news > main header#slider-controller{
left: 0%;
}
#news > main footer#slider-controller{
right: 0%;
}
#news > main #slider-controller img{
width: 18%;
position: relative;
top: -174px;
}
#news > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#news > main #slider-controller-adaptive img{
width: 76%;
margin-top: 27px;
}
#news > main header#slider-controller-adaptive{
left: -4%;
}
#news > main footer#slider-controller-adaptive{
right: 3%;
top: 0;
}
#news > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#news > main #slider-view{
width: 71%;
display: inline-block;
}
#news > main #slider-view-adaptive{
width: 80%;
display: block;
margin-left: 10%;
margin-top: 19%;
display: none;
}
#news > main #slider-view .news-feed{
margin-left: -11%;
margin-top: 22%;
}
#news > main #slider-view .news-feed .news{
display: inline-block;
width: 33%;
height: 183px;
}
#news > main #slider-view-adaptive .news{
width: 100%;
height: 235px;
}
#news > main #slider-view .news-feed .news a, #news > main #slider-view-adaptive .news a{
display: block;
margin-top: 2px;
color: #0079bf;
font-size: 120%;
text-decoration: none;
font-weight: bold;
height: 85px;
overflow: hidden;
text-overflow: ellipsis;
word-spacing: 0.1em;
letter-spacing: 0.06em;
margin-left: 4%;
width: 94%;
}
#news > main #slider-view .news-feed .news .descr, #news > main #slider-view-adaptive .news .descr{
display: block;
font-size: 90%;
height: 108px;
overflow: hidden;
text-overflow: ellipsis;
margin-top: 1%;
text-align: justify;
color: gray;
margin-left: 4%;
width: 89%;
}
#news > main #slider-view .news-feed .news .date, #news > main #slider-view-adaptive .news .date{
display: block;
margin-top: 11%;
font-size: 96%;
font-style: italic;
color: gray;
font-family: 'Times New Roman',serif;
height: 20px;
margin-top: -3%;
margin-left: 4%;
}
#investsearch > header a{
display: inline-block;
text-decoration: none;
text-transform: uppercase;
margin-left: 10%;
position: relative;
top: -37px;
}
#investsearch > header a strong{
text-decoration: underline;
}
#investsearch > main.swiper-container{
width: 100vw;
}
#investsearch > main.swiper-container .popular-objects .popular-object{
width: 27vw;
display: inline-flexbox;
background-color: white;
margin-left: 16px;
transform: scale(0.85);
padding-left: 10px;
}
#investsearch > main.swiper-container .popular-objects .popular-object:hover{
cursor: pointer;
}
#investsearch > main.swiper-container .popular-objects .popular-object header {
width: 98%;
background-color: #0079bf;
color: white;
margin-left: 0%;
padding-bottom: 4%;
padding-top: 3%;
padding-left: 4%;
}
#investsearch > main.swiper-container .popular-objects .popular-object header h3{
margin-left: 4%;
margin-top: 1%;
font-size: 93%;
position: relative;
top: 10px;
}
#investsearch > main.swiper-container .popular-objects .popular-object main img{
width: 99%;
height: 228px;
object-fit: cover;
}
#investsearch > main.swiper-container .popular-objects .popular-object main{
display: block;
width: 103%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer{
width: 94%;
padding-left: 2%;
padding-right: 4%;
background-color: white;
margin-top: -2%;
padding-bottom: 4%;
padding-top: 4%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info{
display: block;
padding-top: 0%;
padding-bottom: 0%;
margin-left: 2%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span{
display: block;
padding-top: 1%;
padding-bottom: 1%;
font-size: 150%;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(1){
font-size: calc(170% / 2);
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(2){
text-transform: uppercase;
font-weight: bold;
font-size: 73%;
overflow: hidden;
text-overflow: ellipsis;
height: 38px;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer .info span:nth-child(3){
font-size: 96%;
color: darkgray;
font-style: italic;
font-family: 'Times New Roman', serif;
}
#investsearch > main.swiper-container .popular-objects .popular-object footer a{
display: block;
padding-top: 5%;
padding-bottom: 3%;
text-decoration: none;
color: darkgray;
text-transform: uppercase;
margin-left: 2%;
font-size: 78%;
}
#eventcalendar > main{
width: 87%;
margin-left: 10%;
margin-top: 1%;
}
#eventcalendar > main .calendar{
border-top: solid 1px black;
width: 90%;
height: 150px;
display: block;
}
#eventcalendar > main .calendar header{
float: left;
font-size: calc(127% * 2);
font-weight: bold;
display: inline;
width: 10%;
margin-left: 4%;
}
#eventcalendar > main .calendar .date{
position: relative;
top: 40px;
margin-left: 21%;
}
#eventcalendar > main .calendar main{
display: inline;
width: 5%;
margin-left: 3%;
}
#eventcalendar > main .calendar main img{
width: 114px;
vertical-align: middle;
margin: 36px 56px 30px 48px;
object-fit: cover;
}
#eventcalendar > main .calendar footer{
float: right;
display: inline;
width: 65%;
margin-top: 1%;
}
#eventcalendar > main .calendar a{
text-decoration: none;
color: #0079bf;
font-size: 129%;
display: block;
font-weight: bold;
}
#eventcalendar > main .calendar .event-location{
font-size: 100%;
display: block;
font-style: italic;
color: gray;
font-family: 'Times New Roman', serif;
}
#eventcalendar > main .calendar .descr{
font-size: 99%;
display: block;
color: gray;
}
#services > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 2vw;
}
#services > header a{
text-decoration: none;
text-transform: uppercase;
}
#services > header a strong{
text-decoration: underline;
}
#services > main{
width: 70%;
float: right;
display: inline-table;
right: 3vw;
top: 1%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#services > main #slider-controller{
width: 10%;
display: inline-table;
}
#services > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(34% / 1.5);
}
#services > main.gecko-fix #slider-controller img{
top: -100px;
}
#services > main footer#slider-controller img{
left: calc(-61% / 1.5);
}
#analytics > main footer#slider-controller img{
left: calc(-61% / 1.5);
}
#estate > main footer#slider-controller img{
left: calc(-39% / 1.5);
}
#reviews > main footer#slider-controller img{
left: calc(-60% / 1.5);
}
#services > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#services > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 100px;
}
#services > main header#slider-controller-adaptive{
left: -5%;
}
#services > main footer#slider-controller-adaptive{
right: -7%;
top: 0;
}
#services > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#services > main #slider-view{
width: 70%;
display: inline-table;
}
#services > main #slider-view-adaptive{
width: 100%;
display: none;
}
#services > main #slider-view .service-feed{
margin-left: -7%;
}
#services > main #slider-view-adaptive .service{
width: 58vw;
height: 290px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: calc(22vw / 2);
background-color: white;
padding-bottom: 4%;
}
#services > main #slider-view .service-feed .service{
width: 26%;
height: 250px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 3%;
background-color: white;
padding-bottom: 5%;
transform: scale(0.9);
padding-right: 6px;
padding-left: 6px;
}
#services > main #slider-view .service-feed .service header, #services > main #slider-view-adaptive .service header{
background-color: darkgray;
color: white;
text-transform: uppercase;
width: 100%;
display: block;
font-size: 72%;
float: left;
margin-left: 0;
}
#services > main #slider-view .service-feed .service:hover, #services > main #slider-view-adaptive .service:hover{
cursor: pointer;
}
#services > main #slider-view .service-feed .service:hover header, #services > main #slider-view-adaptive .service:hover header{
background-color: #0079bf;
}
#services > main #slider-view .service-feed .service header h3, #services > main #slider-view-adaptive .service header h3{
margin-left: 7%;
}
#services > main #slider-view .service-feed .service main, #services > main #slider-view-adaptive .service main{
width: 100%;
float: left;
padding-top: 1%;
padding-bottom: 1%;
}
#services > main #slider-view .service-feed .service main img, #services > main #slider-view-adaptive .service main img{
width: 50%;
object-fit: contain;
margin-left: 7%;
}
#services > main #slider-view .service-feed .service footer, #services > main #slider-view-adaptive .service footer{
display: block;
width: 95%;
font-size: 100%;
margin-left: 2%;
padding-top: 2%;
padding-bottom: 2%;
margin-left: 7%;
}
#services > main #slider-view .service-feed .service footer .title, #services > main #slider-view-adaptive .service footer .title{
font-weight: bold;
display: block;
}
#services > main #slider-view .service-feed .service footer .location, #services > main #slider-view-adaptive .service footer .location{
color: darkgray;
font-style: italic;
font-size: 101%;
display: block;
font-family: 'Times New Roman', serif;
}
#services > main #slider-view .service-feed .service footer .descr, #services > main #slider-view-adaptive .service footer .descr{
display: block;
text-align: justify;
width: 90%;
font-size: calc(120% / 2);
}
#services > main.gecko-fix #slider-view .service-feed .service footer .descr, #services > main.gecko-fix #slider-view-adaptive .service footer .descr{
font-size: calc(200% / 2);
}
#analytics > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 4vw;
}
#analytics > main{
width: 70%;
float: right;
display: inline-table;
top: 11%;
right: 3vw;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#analytics > main #slider-controller{
width: 10%;
display: inline-table;
}
#analytics > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(36% / 1.5);
}
#analytics > main #slider-controller-adaptive{
width: 10%;
height: 370px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#analytics > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 200px;
}
#analytics > main header#slider-controller-adaptive{
left: -4%;
}
#analytics > main footer#slider-controller-adaptive{
right: -10%;
top: 0;
}
#analytics > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#analytics > main #slider-view{
width: 70%;
display: inline-table;
}
#analytics > main #slider-view-adaptive{
width: 100%;
display: none;
}
#analytics > main #slider-view .analytic-feed{
margin-left: -15%;
margin-top: -4%;
}
#analytics > main #slider-view-adaptive .analytic{
width: 58vw;
height: 412px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 11vw;
padding-bottom: 2%;
background-color: white;
margin-top: 14vw;
}
#analytics > main #slider-view .analytic-feed .analytic{
width: 26%;
height: 360px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 9%;
padding-bottom: 2%;
background-color: white;
padding-right: -1px;
transform: scale(0.9);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1){
position: relative;
top: 4px;
}
#analytics > main #slider-view .analytic-feed .analytic:hover {
background-color: #0079bf;
cursor: pointer;
}
#analytics > main #slider-view .analytic-feed .analytic:hover *, #analytics > main #slider-view .analytic-feed .analytic:hover .descr,
#analytics > main #slider-view-adaptive .analytic:hover *, #analytics > main #slider-view-adaptive .analytic:hover .descr{
color: white;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2{
display: block;
margin-left: 7%;
margin-top: 5%;
color: #0079bf;
font-size: 99%;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
top: 0mm;
width: 81%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2{
font-size: 153%;
}
#analytics > main #slider-view .analytic-feed .analytic .descr, #analytics > main #slider-view-adaptive .analytic .descr{
display: block;
margin-left: 7%;
margin-top: 7%;
font-size: 86%;
color: darkgray;
width: 86%;
text-align: justify;
}
#analytics > main #slider-view .analytic-feed .analytic a, #analytics > main #slider-view-adaptive .analytic a{
display: block;
margin-left: 8%;
margin-top: 1%;
color: #0079bf;
font-size: 101%;
}
#estate > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 3vw;
}
#estate > main{
width: 70%;
float: right;
display: inline-table;
right: 4vw;
top: 12%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#estate > main #slider-controller{
width: 10%;
display: inline-table;
}
#estate > main #slider-controller img{
width: 26%;
position: relative;
top: 140px;
left: calc(47% / 1.5);
}
#estate > main.gecko-fix #slider-controller img{
top: -32px;
}
#estate > main #slider-controller-adaptive{
width: 10%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#estate > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 200px;
}
#estate > main header#slider-controller-adaptive{
left: -28%;
}
#estate > main footer#slider-controller-adaptive{
right: 17%;
top: 0;
}
#estate > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#estate > main #slider-view{
width: 70%;
display: inline-table;
}
#estate > main #slider-view-adaptive{
width: 100%;
display: none;
}
#estate > main #slider-view .estat-feed{
margin-left: -5%;
}
#estate > main #slider-view .estat-feed .estat{
width: 27%;
height: 208px;
display: inline-table;
margin-left: 3%;
background-color: white;
box-shadow: 3px -1px 4px 0px darkgrey;
transform: scale(0.9);
position: relative;
padding-right: 12px;
}
#estate > main #slider-view-adaptive .estat{
width: 52vw;
height: 235px;
margin-left: -3vw;
background-color: white;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-top: 18vw;
}
#estate > main #slider-view .estat-feed .estat header, #estate > main #slider-view-adaptive .estat header{
background-color: darkgray;
color: white;
text-transform: uppercase;
width: 100%;
display: block;
font-size: 78%;
float: left;
margin-left: 0;
}
#estate > main #slider-view .estat-feed .estat:hover, #estate > main #slider-view-adaptive .estat:hover{
cursor: pointer;
}
#estate > main #slider-view .estat-feed .estat:hover header, #estate > main #slider-view-adaptive .estat:hover header{
background-color: #0079bf;
}
#estate > main #slider-view .estat-feed .estat header h3, #estate > main #slider-view-adaptive .estat header h3{
margin-left: 7%;
}
#estate > main #slider-view .estat-feed .estat main, #estate > main #slider-view-adaptive .estat main{
width: 100%;
float: left;
}
#estate > main #slider-view .estat-feed .estat main img, #estate > main #slider-view-adaptive .estat main img{
width: 100%;
object-fit: cover;
height: 130px;
}
#estate > main #slider-view .estat-feed .estat footer, #estate > main #slider-view-adaptive .estat footer{
display: block;
padding-top: 0%;
padding-bottom: 13%;
width: 100%;
background-color: white;
}
#estate > main #slider-view .estat-feed .estat footer .info, #estate > main #slider-view .estat-feed .estat footer .raiting, #estate > main #slider-view-adaptive .estat footer .info, #estate > main #slider-view-adaptive .estat footer .raiting{
display: block;
margin-left: 8%;
padding-bottom: 0%;
position: relative;
top: 30px;
}
#estate > main #slider-view .estat-feed .estat footer .info span, #estate > main #slider-view-adaptive .estat footer .info span{
padding-top: 2%;
padding-bottom: 2%;
font-size: 94%;
color: darkgray;
display: block;
}
#estate > main #slider-view .estat-feed .estat footer .info span:nth-child(1), #estate > main #slider-view-adaptive .estat footer .info span:nth-child(1){
font-size: 105%;
color:black;
font-weight: bold;
}
.raiting{
margin-left: 2%;
padding-bottom: 6%;
padding-top: 9%;
}
.raiting > span{
display: block;
margin-top: 2%;
color: #0079bf;
font-size: 80%;
text-transform: uppercase;
}
.rating-mini {
display: block;
font-size: 0;
margin-top: 2%;
}
.rating-mini span {
padding: 0;
font-size: 19px;
line-height: 1;
color: lightgrey;
}
.rating-mini > span:before {
content: '★';
}
.rating-mini > span.active {
color: gold;
}
#reviews > header{
width: 20%;
float: left;
display: inline-table;
left: 4vw;
top: 3vw;
}
#reviews > main{
width: 70%;
float: right;
display: inline-table;
right: 3vw;
top: 8%;
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
#reviews > main #slider-controller{
width: 10%;
display: inline-table;
}
#reviews > main #slider-controller img{
width: 26%;
position: relative;
top: 100px;
left: calc(31% / 1.5);
}
#reviews > main #slider-controller-adaptive{
width: 8%;
height: 240px;
background: transparent;
border: none !important;
font-size:0;
position: absolute;
display: none;
}
#reviews > main #slider-controller-adaptive img{
width: 5vw;
margin-top: 100px;
}
#reviews > main header#slider-controller-adaptive{
left: -11%;
}
#reviews > main footer#slider-controller-adaptive{
right: -5%;
top: 0;
}
#reviews > main #slider-controller-adaptive img:hover{
cursor: pointer;
}
#reviews > main #slider-view{
width: 70%;
display: inline-table;
}
#reviews > main #slider-view-adaptive{
width: 100%;
display: none;
}
#reviews > main #slider-view .review-feed{
margin-left: -8%;
}
#reviews > main #slider-view-adaptive .review{
width: 62vw;
height: 238px;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 8%;
padding-bottom: calc(2% * 5);
background-color: white;
padding-top: 1%;
}
#reviews > main #slider-view .review-feed .review{
width: 15vw;
height: 238px;
display: inline-table;
box-shadow: 3px -1px 4px 0px darkgrey;
margin-left: 3%;
padding-bottom: 2%;
background-color: white;
padding-top: 1%;
transform: scale(0.9);
padding-right: 1px;
}
#reviews > main #slider-view .review-feed .review main h3, #reviews > main #slider-view-adaptive .review main h3{
display: block;
margin-left: 5%;
margin-top: 6%;
color:#0079bf;
font-size: 100%;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
width: 90%;
}
#reviews > main #slider-view .review-feed .review footer a, #reviews > main #slider-view-adaptive .review footer a{
margin-left: 5%;
margin-top: 1%;
color: #0079bf;
font-size: 95%;
display: block;
}
.footer{
width: 100%;
height: calc(210px * 2);
background-color:#9da5a7;
color: white;
}
.footer > header #contact a, .footer > main #category_menu .catname{
text-decoration: none;
color: white;
}
.footer > header {
float: left;
display: inline;
margin-left: 12vw;
width: 22%;
position: relative;
top: 50px;
font-size: 98%;
}
.footer > header .logo{
float: left;
}
.footer > header .logo img{
width: 79%;
}
.footer > header span{
float: right;
font-size: 64%;
display: contents;
}
.footer > header main{
display: block;
position: relative;
top: 68px;
left: -111px;
width: 129%;
}
.footer > header main a{
padding-top: 8px;
margin-left: 1%;
background-color: #65696b;
display: inline;
padding-bottom: 8px;
padding-left: 8px;
padding-right: 8px;
}
.footer > header main a img{
width: 20px;
height: 20px;
vertical-align: middle;
}
.footer > main {
float: right;
display: inline-table;
margin-right: -16vw;
width: 80%;
position: relative;
top: 5%;
}
.footer > main #category_menu {
display: inline-block;
padding-left: 10px;
padding-right: 5%;
margin-top: 2%;
}
.footer > main #category_menu .catname {
font-size: 95%;
font-weight: bold;
}
.footer > main #category_menu ul {
display: block;
margin-top: 20px;
font-size: 80%;
margin-left: -28px;
list-style-type: square;
}
.footer > main #category_menu ul li {
padding-bottom: 13px;
}
.footer > main #category_menu ul li a {
color: white;
text-decoration: none;
}
@media all and (max-width: 1024px){
#news > main #slider-controller, #news > main #slider-view, #services > main #slider-controller, #services > main #slider-view,
#analytics > main #slider-controller, #analytics > main #slider-view, #estate > main #slider-controller, #estate > main #slider-view,
#reviews > main #slider-controller, #reviews > main #slider-view, #eventcalendar > main .calendar main, #eventcalendar > main .calendar .descr{ display: none; }
#news > main #slider-controller-adaptive, #news > main #slider-view-adaptive, #services > main #slider-controller-adaptive, #services > main #slider-view-adaptive,
#analytics > main #slider-controller-adaptive, #analytics > main #slider-view-adaptive, #estate > main #slider-controller-adaptive, #estate > main #slider-view-adaptive,
#reviews > main #slider-controller-adaptive, #reviews > main #slider-view-adaptive{ display: inherit; }
#link-switcher {
height: 20px;
}
}
@media all and (max-width: 414px){
#promo {
height: 600px;
}
#news {
height: 280px;
}
#investsearch {
height: 650px;
}
#services {
height: 580px;
}
#analytics {
height: 420px;
}
#estate {
height: 710px;
}
#reviews {
height: 320px;
}
#eventcalendar {
height: 780px;
}
#services > header .add-but, #estate > header .add-but {
width: 90%;
}
#promo > main.swiper-container .promo-feed .promoblock {
width: 90%;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 36vw;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#eventcalendar > main .calendar header {
font-size: calc(100% * 2);
}
#eventcalendar > main .calendar .date {
top: calc(40px / 2);
}
#eventcalendar > main .calendar {
height: 170px;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 93%;
margin-top: 9%;
margin-left: 7%;
}
#eventcalendar > main .calendar .event-location {
font-size: 90%;
}
#eventcalendar > main .calendar a {
font-size: 100%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 103%;
}
#promo > main.swiper-container .promo-feed .promoblock main {
padding-bottom: 20%;
}
#services > main {
right: 20vw;
top: 10%;
}
#analytics > main {
right: 20vw;
top: 4%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2 {
font-size: 128%;
top: 2mm;
}
#estate > main {
right: 0vw;
top: -4%;
}
#reviews > main {
right: 15vw;
top: 12%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(165px * 8);
}
.footer > header {
width: 72%;
}
.footer > main {
float: left;
display: block;
margin-right: 0vw;
top: 6%;
margin-left: 10%;
}
}
@media all and (min-width: 414px) and (max-width: 768px){
#promo {
height: 650px;
}
#news {
height: 280px;
}
#investsearch {
height: 650px;
}
#services {
height: 580px;
}
#analytics {
height: 420px;
}
#estate {
height: 633px;
}
#reviews {
height: 380px;
}
#eventcalendar {
height: 780px;
}
#services > header .add-but, #estate > header .add-but {
width: 90%;
}
#investsearch > header a { margin-left: 57%; }
#promo > header .links {
top: -49px;
left: 35vw;
}
#promo > main.swiper-container .promo-feed .promoblock {
width: 90%;
height: 490px;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#eventcalendar > main .calendar header {
font-size: calc(100% * 2);
}
#eventcalendar > main .calendar .date {
top: calc(40px / 2);
}
#eventcalendar > main .calendar {
height: 170px;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 93%;
margin-top: 9%;
margin-left: 7%;
}
#eventcalendar > main .calendar .event-location {
font-size: 90%;
}
#eventcalendar > main .calendar a {
font-size: 100%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 101%;
}
#services > main {
right: 20vw;
top: 12%;
}
#analytics > main {
right: 20vw;
top: -2%;
}
#estate > main {
right: 0vw;
top: -7%;
}
#reviews > main {
right: 17vw;
top: 12%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(210px * 4);
}
.footer > header {
width: 72%;
}
.footer > main {
float: left;
display: block;
margin-right: 0vw;
top: 15%;
margin-left: 10%;
width: 80%;
}
.footer > main #category_menu {
padding-right: 3%;
}
}
@media all and (min-width: 600px) and (max-width: 768px){
#promo {
height: 630px;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 25vw;
}
#promo > main.swiper-container .promo-feed .promoblock { width: 80%; height: 530px; }
#investsearch > main.swiper-container .popular-objects .popular-object {
width: 100%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
#reviews > main {
top: 13%;
}
#estate {
padding-bottom: 26%;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer > main #category_menu {
padding-right: 15%;
}
#estate > main #slider-view-adaptive .estat {
height: 230px;
}
}
@media all and (min-width: 768px) and (max-width: 800px){
#reviews {
padding-bottom: 33%;
}
#reviews > main {
top: 21%;
left: -15vw;
}
#estate {
height: 430px;
}
#services > main{
top: 12%;
left: -17vw;
}
#analytics > main {
margin-top: -6%;
left: -19vw;
}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
.footer {
height: calc(210px * 5);
}
.footer > header {
width: 50%;
}
.footer > main {
margin-right: -11vw;
width: 100%;
top: 12%;
}
}
@media all and (min-width: 600px) and (max-width: 768px){
#estate > main {
margin-top: 0%;
}
#estate {
padding-bottom: 49%;
}
#services > main #slider-view-adaptive .service {
height: 350px;
}
#services {
padding-bottom: 15%;
}
#analytics > main {
margin-top: -4%;
}
.footer {
height: calc(204px * 4);
}
.footer > main {
top: 8%;
}
}
@media all and (min-width: 800px) and (max-width: 1024px){
#reviews {
padding-bottom: 40%;
}
}
@media all and (min-width: 768px) and (max-width: 800px){
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 20vw;
}
#promo {
height: 460px;
}
#investsearch {
height: 500px;
padding-top: 15%;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2 {
top: 5mm;
}
#services {
height: 567px;
}
#analytics {
padding-bottom: 450px;
}
#promo > main.swiper-container .promo-feed .promoblock { width: 35%; height: 375px;}
#services > main #slider-view-adaptive .service {
width: 56vw;
height: 330px;
margin-left: calc(22vw / 2);
}
#eventcalendar > main .calendar footer {
margin-top: 6%;
}
#eventcalendar {
height: 729px;
}
#estate > main {
right: -2vw;
top: -12%;
}
.footer {
height: calc(126px * 6);
}
}
@media all and (min-width: 800px) and (max-width: 960px){
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 20vw;
}
#promo > main.swiper-container .promo-feed .promoblock {
height: 380px;
}
#investsearch {
height: 570px;
}
#eventcalendar > main .calendar footer {
margin-top: 5%;
}
#promo > main.swiper-container .promo-feed .promoblock {width: 27%;}
#services > header, #analytics > header, #estate > header, #reviews > header {
width: 50%;
}
#eventcalendar {
height: 630px;
}
#services {
height: 640px;
}
#estate {
height: calc(254px * 3);
}
#analytics {
padding-bottom: calc(217px * 2);
}
#services > main {
right: 17vw;
top: 10%;
}
#services > main #slider-view-adaptive .service {
width: 58vw;
height: 350px;
}
#analytics > main {
top: 6%;
right: 19vw;
}
#estate > main {
right: -2vw;
top: -10%;
}
#reviews > main {
right: 17vw;
top: 22%;
}
#promo > main.swiper-container .promo-feed .promoblock header {
width: 99%;
}
#promo > main.swiper-container .promo-feed .promoblock footer {
margin-top: 50%;
}
.footer {
height: calc(210px * 4);
}
.footer > header {
width: 50%;
}
.footer > main {
margin-right: -11vw;
width: 100%;
top: 12%;
}
.footer > main #category_menu {
padding-right: 17%;
}
}
@media all and (min-width: 960px) and (max-width: 1024px){
#link-switcher{
height: 22px;
}
#promo {
height: 550px;
}
#news {
height: 300px;
}
#investsearch {
height: 600px;
}
#analytics {
height: 490px;
}
#services {
height: calc(350px * 2);
}
#estate {
height: calc(390px * 2);
}
#reviews {
height: 400px;
padding-bottom: 37vw;
}
#news > main #slider-view,
#services > main #slider-view,
#estate > main #slider-view,
#analytics > main #slider-view,
#reviews > main #slider-view,
#news > main #slider-controller,
#services > main #slider-controller,
#estate > main #slider-controller,
#analytics > main #slider-controller,
#reviews > main #slider-controller,
#eventcalendar > main .calendar main,
#eventcalendar > main .calendar .descr{ display: none; }
#news > main #slider-view-adaptive,
#services > main #slider-view-adaptive,
#estate > main #slider-view-adaptive,
#analytics > main #slider-view-adaptive,
#reviews > main #slider-view-adaptive,
#news > main #slider-controller-adaptive,
#services > main #slider-controller-adaptive,
#estate > main #slider-controller-adaptive,
#analytics > main #slider-controller-adaptive,
#reviews > main #slider-controller-adaptive{ display: inherit; }
.footer > header main {
display: none;
}
.footer > header {
width: 25%;
}
.footer > main {
float: left;
margin-left: -27vw;
width: 80%;
top: 19%;
}
.footer {
height: calc(123px * 7);
}
.footer > header .logo img {
width: 100%;
}
#investsearch > header, #estate > header, #services > header {
width: 80%;
}
#promo > header .add-but, #investsearch > header .add-but { width: 50%; }
#eventcalendar > main .calendar header {
float: left;
font-size: calc((127% / 2) * 3);
display: block;
width: 100%;
margin-left: 2%;
}
#eventcalendar > main .calendar .date {
top: 2px;
margin-left: 0%;
}
#eventcalendar > main .calendar footer {
float: left;
display: block;
width: 100%;
margin-top: 1%;
margin-left: 2%;
}
#eventcalendar > main .calendar {
height: 110px;
}
#eventcalendar > main .calendar a {
font-size: 120%;
}
#eventcalendar > main .calendar .event-location {
font-size: 120%;
}
#analytics > main {
top: -5%;
right: 21vw;
}
#estate > main {
top: -14%;
right: 1vw;
}
#reviews > main {
right: 17vw;
top: 22%;
}
#investsearch > header a { margin-left: 53%; }
#promo > header .links {
top: -49px;
left: 16vw;
}
#analytics > main #slider-view .analytic-feed .analytic h2, #analytics > main #slider-view-adaptive .analytic h2{ top: 4mm; }
#services > main {top: 12%;right: 17vw;}
#services > main #slider-view-adaptive .service {
height: 360px;
}
#estate > main #slider-controller-adaptive img{
margin-top: 400%;
}
#analytics > main #slider-controller-adaptive img{
margin-top: 320%;
}
}
@media all and (min-width: 1024px) and (max-width: 1280px){
#eventcalendar > main .calendar .date {
margin-left: -25%;
}
#promo {
height: 500px;
}
#news {
height: 180px;
}
#investsearch {
height: 520px;
}
.footer > main #category_menu {
padding-right: 2%;
}
#eventcalendar {
height: 710px;
}
#eventcalendar > main .calendar {
height: 175px;
}
#eventcalendar > main .calendar main {
display: none;
}
#eventcalendar > main .calendar footer {
width: 80%;
margin-top: 1%;
}
#analytics > main #slider-view .analytic-feed .analytic {
height: 405px;
width: 27%;
}
#reviews > main {
top: 50%;
}
#promo > header .links {
top: -48px;
left: 14vw;
}
#analytics > main{
top: 13%;
left: -3%;
}
#estate > main {
top: -15%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
left: -1%;
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-45% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-25% / 1.5);
}
.header > #header_top .ht_header span {
display: none;
}
.header > #header_bottom {
margin-right: 4%;
margin-top: -6%;
}
#promo > header .marketing-info {
margin-top: 5%;
margin-right: -18%;
}
#services > main.gecko-fix #slider-controller img {
top: -110px;
}
#estate > main.gecko-fix #slider-controller img {
top: -20px;
}
}
@media all and (min-width: 1211px) and (max-width: 1233px){
#promo > header .marketing-info {
margin-top: -15%;
}
}
@media all and (min-width: 1233px) and (max-width: 1279px){
.header > #header_bottom {
position: relative;
top: 77%;
}
}
@media (max-width: 1024px){
.footer > header main {
display: none;
}
.header > #header_top .ht_header span, .header > #header_bottom, #promo > header .marketing-info{ display: none; }
.header > #header_bottom_adaptive{ display: inherit; }
#investsearch > header a {margin-left: 34%;}
#investsearch > header .add-but {
width: 30%;
}
#promo > header .add-but {
width: 60%;
}
}
@media all and (min-width: 1280px) and (max-width: 1366px){
#promo {
height: 460px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) {
position: relative;
top: -3px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2, #analytics > main #slider-view-adaptive .analytic:nth-child(3n+1) h2 {
font-size: 120%;
}
#analytics > main #slider-view .analytic-feed .analytic {
height: 309px;
width: 27%;
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image img, #analytics > main #slider-view-adaptive .analytic#with-title-image img {
height: 82px;
}
#investsearch > main.swiper-container .popular-objects .popular-object {
height: 450px;
}
.header > #header_bottom {
margin-right: 12%;
top: -10%;
}
#promo > header .marketing-info {
margin-right: -3%;
}
#eventcalendar > main .calendar main {
display: none;
}
#investsearch {
height: 520px;
}
#eventcalendar > main .calendar footer {
width: 80%;
}
#analytics > main{
top: 28%;
}
#news {
height: 180px;
padding-bottom: 12%;
}
#estate > main {
top: 7%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
left: 1%;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(2) {
left: -7%;
}
#promo > header .marketing-info header img {
width: 77%;
border-radius: 10px 10px 10px 10px;
}
#promo > header .links {
top: -48px;
left: 11vw;
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-45% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-25% / 1.5);
}
#reviews > main {
top: 10%;
}
#reviews > main footer#slider-controller img {
left: calc(-40% / 1.5);
}
#services > main #slider-controller img {
left: calc(20% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(30% / 1.5);
}
#estate > main #slider-controller img {
left: calc(50% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(30% / 1.5);
}
}
@media all and (min-width: 1336px) and (max-width: 1367px){
#promo > header .marketing-info {
margin-top: -13%;
}
}
@media all and (min-width: 1366px) and (max-width: 1440px){
.header > #header_bottom {
margin-top: -5%;
}
.header > #header_top .ht_header span {
display: none;
}
#eventcalendar > main .calendar main {
display: none;
}
#services > main #slider-view .service-feed .service header {
font-size: calc(130% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) h2 {
font-size: calc(254% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic h2 {
font-size: calc(200% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic .descr{
font-size: calc(190% / 2);
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image img{
height: 130px;
}
#analytics > main #slider-view .analytic-feed .analytic:nth-last-child(1) {
top: 0px;
left: 3%;
}
#eventcalendar > main .calendar header {
font-size: calc((127% / 2) * 3);
}
#eventcalendar > main .calendar .event-location {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar a {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar .descr {
font-size: calc(200% / 2);
}
#eventcalendar > main .calendar footer {
width: 82%;
margin-top: 1%;
}
#eventcalendar > main .calendar {
height: 125px;
}
#analytics > main{
top: 9%;
}
#estate > main {
top: 7%;
}
#investsearch {
height: 500px;
}
#promo > header .marketing-info {
margin-top: -13%;
}
#promo > header .links {
top: -50px;
left: 10vw;
}
#estate > main.gecko-fix #slider-controller img {
top: -30px;
}
#analytics > main #slider-view .analytic-feed .analytic#with-title-image {
top: 98px;
}
#news {
padding-top: 5%;
}
#reviews > main footer#slider-controller img {
left: calc(-20% / 1.5);
}
#services > main #slider-controller img {
left: calc(12% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-23% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(14% / 1.5);
}
#estate > main #slider-controller img {
left: calc(28% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(7% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-6% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(10% / 1.5);
}
#analytics > main #slider-view .analytic-feed .analytic:nth-child(1) {
position: relative;
top: 2px;
}
}
@media all and (min-width: 1406px) and (max-width: 1440px){
#promo > header .marketing-info {
margin-top: -12%;
}
.header > #header_bottom {
margin-top: 0%;
}
}
@media all and (min-width: 1440px) and (max-width: 1536px){
#eventcalendar > main .calendar main {
margin-left: 2%;
}
#eventcalendar > main .calendar{
height: 160px;
}
#promo > header .marketing-info {
margin-top: -13%;
}
#investsearch {
height: 500px;
}
#services > main #slider-controller img {
left: calc(30% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
#analytics > main #slider-controller img {
left: calc(33% / 1.5);
}
#estate > main #slider-controller img {
left: calc(46% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-20% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(33% / 1.5);
}
#reviews > main footer#slider-controller img {
left: calc(-49% / 1.5);
}
}
@media all and (min-width: 1536px) and (max-width: 1600px){
#promo > header .marketing-info {
margin-top: -11%;
}
#services > main #slider-controller img {
left: calc(30% / 1.5);
}
#services > main footer#slider-controller img, #analytics > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
#estate > main #slider-controller img {
left: calc(52% / 1.5);
}
#estate > main footer#slider-controller img {
left: calc(-21% / 1.5);
}
#reviews > main #slider-controller img {
left: calc(37% / 1.5);
}
#reviews > main footer#slider-controller img {
left: calc(-56% / 1.5);
}
}
@media all and (max-width: 1600px){}
@media all and (max-width: 1920px){}
@media all and (min-width: 1920px){
#promo > header .marketing-info {
margin-top: -9%;
}
#promo > main.swiper-container .promo-feed .promoblock {
height: 480px;
}
#analytics > main {
top: 25%;
}
#reviews > main {
top: 20%;
}
}
@media all and (width: 1024px){
#promo {
height: 520px;
}
#analytics > main {
left: -22%;
}
#news {
height: 220px;
}
#investsearch {
height: 570px;
}
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
| 0.343122 | 0.041269 |
body
{
margin:0;
padding:0;
height:100%;
background-color:#EFF3F8;
font-size: 13px;
font-family: "Open Sans",sans-serif;
}
.logo
{
margin: 25px 0;
}
.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;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus
{
z-index: 2;
}
.form-signin input[type="text"]
{
margin-bottom: -1px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.form-signin input[type="password"]
{
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.account-wall
{
margin-top: 20px;
padding: 40px 0px 20px 0px;
background-color: #fff;
-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
/*margin-bottom:5px;*/
}
.login-title
{
color: #555;
font-size: 18px;
font-weight: 400;
display: block;
font-family: "Open Sans",arial;
}
.profile-img
{
width: 96px;
height: 96px;
margin: 0 auto 10px;
display: block;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.need-help
{
margin-top: 10px;
}
.copyright
{
color: #666;
display: block;
margin-top: 10px;
font-size:85%;
}
button{
font-family: "Open Sans",arial;
}
/*main template*/
h1,h2,h3,h4,h5 {
font-family: "Open Sans", sans-serif;
font-weight: 300;
}
.page-header .container,.page-header .container-fluid {
position: relative;
}
.page-header{
height: 112px;
background-color: white;
width: 100%;
margin:0;
}
.page-header .page-header-top {
height: 75px;
}
.page-header .page-header-menu {
background: none repeat scroll 0 0 #444d58;
clear: both;
display: block;
height: 36px;
}
.page-header .page-header-menu.fixed {
box-shadow: 0px 1px 10px 0px rgba(68, 77, 88, 0.2);
}
.page-header .page-header-menu .hor-menu {
float: left;
margin: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li {
height: 36px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li > a {
padding: 0 18px;
font-size: 12px;
font-weight: normal;
line-height: 36px;
}
.page-header .page-header-menu .hor-menu .navbar-nav {
/*position: static;*/
}
.navbar-nav > li {
float:left;
}
.navbar-nav > li.active > a {
background: #4e5966 !important;
}
.navbar-nav > li > a {
color: white;
}
.navbar-nav > li > a:hover, .navbar-nav > li > a:active, .navbar-nav > li > a:visited, .navbar-nav > li > a:focus {
background: #55616f !important;
}
.navbar-nav > li.dorpdown-menu {
border: medium none;
margin-top: 0;
}
.dropdown-menu {
border: 0;
padding:0;
margin: 0;
background: #55616f;
}
.dropdown-menu li > a {
clear: both;
color: #555;
display: block;
font-weight: 300;
line-height: 18px;
padding: 8px 14px;
text-decoration: none;
white-space: none;
}
.dropdown-menu .active a {
background-color: #718193 !important;
}
.dropdown-menu li > a:hover, .dropdown-menu .active a:hover, .dropdown-menu li > a:focus {
background-color: #55616f;
background-image: none;
color: #666;
filter: none;
text-decoration: none;
}
.navbar-nav > li > .dropdown-menu {
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-top: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu {
background: #55616f;
box-shadow: 5px 5px rgba(85,97,111,0.2);
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #55616f !important;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > a:after {
position: absolute;
display: inline-block;
font-size: 14px;
right: 7px;
top: 7px;
font-family: FontAwesome;
height: auto;
content: "\f105";
font-weight: 300;
}
.remove-arrow > a:after {
content: none;
}
.dropdown-submenu .dropdown-menu {
left: 100%;
margin-left: -1px;
margin-top: -6px;
top: 6px;
}
.page-haeder .page-header-menu .hor-menu .navbar-nav > li .dropdown-submenu > .dropdown-menu {
top: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu li > a {
font-family: "Open Sans", sans-serif;
font-size: 12px;
font-weight: 300;
padding: 6px 8px;
white-space: normal;
color: #ced5de;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu li:hover > a {
background-color: #5d6b7a;
}
/* classic-dropdown-menu */
.page-header .page-header-menu .hor-menu .navbar-nav > li.classic-dropdown-menu .dropdown-menu {
max-width: 235px;
min-width: 195px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-submenu > a {
color: #6fa7d7;
right: 10px;
top: 9px;
}
/* menu-dropdown */
.page-header .page-header-menu .hor-menu .navbar-nav > li.menu-dropdown .dropdown-menu:before {
display: none !important;
}
/* mega-menu-dropdown */
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown {
position: static;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu {
left: auto;
width: auto;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu {
box-shadow: 5px 5px rgba(85, 97, 111, 0.2);
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content {
font-family: "Open Sans", sans-serif;
margin: 0;
padding: 15px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu:last-child {
border-right: 0 none;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu {
margin: 0;
padding: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li {
list-style: outside none none;
margin: 0 !important;
padding: 1px !important;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li h3 {
font-size: 13px;
font-weight: normal;
margin-top: 5px;
padding-left: 5px;
color: #ced5de;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify {
padding: 7px 7px 7px 10px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify i.fa {
width: 0.8em;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a {
font-family: "Open Sans", sans-serif;
font-size: 12px;
font-weight: 300;
margin: 0;
padding: 7px;
white-space: normal;
}
/*mega-menu-full*/
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-full .dropdown-menu {
left: 20px;
right: 20px;
}
/*page container*/
.page-container {
clear: both;
top:112px;
bottom:0;
position: absolute;
width: 100%;
}
.page-content {
/*background: #EFF3F8;*/
padding: 15px 0;
}
/*page head*/
.page-head {
background: #fff;
z-index: +10;
}
.page-head .container {
position: relative;
}
.page-head .page-title {
display: inline-block;
float: left;
padding: 10px 0;
margin: 0;
}
.page-head .page-title > h1 {
color: #697882;
font-size: 13px;
font-weight: 600;
margin: 0;
}
/*portlet*/
.portlet {
border-radius: 4px;
margin-bottom: 25px;
margin-top:0;
padding:0;
}
.portlet.light {
background-color: #fff;
padding: 12px 20px 15px;
}
.portlet > .portlet-title:after{
clear: both;
}
.portlet.light > .portlet-title {
min-height: 48px;
padding: 0;
}
.portlet.light > .portlet-title > .caption {
color: #666;
padding: 10px 0;
}
.portlet > .portlet-title {
border-bottom: 1px solid #eee;
border-radius: 4px 4px 0;
margin-bottom: 10px;
min-height: 41px;
padding: 0;
}
.portlet > .portlet-title > .caption {
display: inline-block;
float: left;
font-size: 18px;
font-weight: 300;
line-height: 18px;
padding: 10 0;
}
.portlet > .portlet-title > .caption.title-1 {
color: #4DB3A2;
font-size: 15px;
text-transform: uppercase !important;
font-weight: 700 !important;
font-family: "Open Sans",sans-serif;
}
.portlet.light .portlet-body {
padding-top: 8px;
}
.portlet .portlet-body {
border-radius: 0 0 4px 4px;
clear: both;
}
/*breadcrumb*/
.breadcrumb {
background: none;
padding: 0 0 15px 0;
margin: 0;
color: #c5ccd5;
}
.breadcrumb > li + li:before {
display: none;
}
.breadcrumb .fa {
font-size: 6px;
margin: 0 2px 0 4px;
position: relative;
top: -1px;
}
.breadcrumb > .active {
color: #9eacb4;
}
.table-toolbar:after {
clear: both;
}
.table-toolbar {
margin-bottom: 15px;
}
.jqgrid-button {
background:#EEE;
}
.green.btn {
background: #35aa47;
color: #ffffff;/*
font-size: 12px;*/
}
.red.btn {
background: #d84a38;
color: #ffffff;/*
font-size: 12px;*/
}
.blue.btn {
background: #4b8df8;
color: #ffffff;/*
font-size: 12px;*/
}
.purple.btn {
background: #8e44ad;
color: #ffffff;/*
font-size: 12px;*/
}
/*----------------------- CSS jQGrid -----------------------*/
.jqGrid_add, .jqGrid_edit, .jqGrid_delete, .jqGrid_detail, .jqGrid_makeactive, .jqGrid_makedisable, .jqGrid_export { margin-left:0; margin-bottom: 3px; height: 24px; width: 24px; }
.jqGrid_print { margin-top: 3px; margin-bottom: 3px; height: 20px; width: 20px; }
.jqGrid_add { margin-left:5px; background-color: transparent; border: none; background-image: url(../img/jqgrid-add.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_edit { background-color: transparent; border: none; background-image: url(../img/jqgrid-edit.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_detail { background-color: transparent; border: none; background-image: url(../img/jqgrid-detail.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_delete { background-color: transparent; border: none; background-image: url(../img/jqgrid-delete.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_makeactive { background-color: transparent; border: none; background-image: url(../img/jqgrid-makeactive.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_makedisable { background-color: transparent; border: none; background-image: url(../img/delete1.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_export { background-color: transparent; border: none; background-image: url(../img/file_extension_xls.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_print { background-color: transparent; border: none; background-image: url(../img/printer.png); background-position: center; background-repeat: no-repeat; }
label {
font-size:14px;font-weight:400;
}
.form .form-actions {
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
margin:0;
padding:20px 10px;
}
.portlet.light .form .form-actions {
background: none;
padding-left:0;
padding-right:0;
}
.form-control {
border-radius: 0px !important;
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: none;
color: #333;
font-size: 14px;
font-weight: normal;
padding: 6px 8px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.form-control:focus {
box-shadow: none;
outline: 0 none;
border-color: #999
}
.input-group .input-group-addon {
border-color: #e5e5e5;
min-width: 39px;
font-size: 13px;
}
.alert {
background-color: #fcf8e3;
border: 1px solid #fbeed5;
border-radius: 4px;
margin-bottom: 20px;
padding: 8px 35px 8px 14px;
text-shadow: 0 1px 0 rgba(255,255,255, 0.5);
}
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.form-group.error input,.form-group.error select,.form-group.error textarea {
border: solid 1px #b94a48;
}
.form-group.success input,.form-group.success select,.form-group.success textarea {
border: solid 1px #468847;
}
.page-header .page-header-top .page-logo {
display: block;
float: left;
height: 75px;
width: 255px;
}
.page-header .page-header-top .page-logo .logo-default {
margin: 15px 0 0;
}
.wrapper-jqGrid > .ui-jqgrid {
width: auto !important;
}
.wrapper-jqGrid > .ui-jqgrid > .ui-jqgrid-view {
width: auto !important;
}
.wrapper-jqGrid > .ui-jqgrid > .ui-jqgrid-pager {
width: auto !important;
}
#change_position {
overflow: hidden;
}
.dashboard-chart {
margin-left: -44px; margin-right: -46px; margin-bottom: -40px;
}
.dashboard-chart > svg {
border-radius: 0 0 4px 4px !important;
}
.number-stats { margin: 10px 0; }
.number-stats > div {border-right: 1px solid #f5f5f5;}
.number-stats > div:last-child {border-right: 0 none;}
.number-stats .stat-left { float: right; }
.number-stats .stat-left .stat-chart { float: right; }
.number-stats .stat-right { float: left; }
.number-stats .stat-right .stat-chart { float: left; }
.number-stats .stat-chart {float: left;}
.number-stats .stat-chart {display: inline-block;margin:0 5px;}
.number-stats .stat-left .stat-number {float:right; text-align: right;}
.number-stats .stat-right .stat-number {float:left; text-align: right;}
.number-stats .stat-number .title {color:#b8c3c7;font-size:13px;margin-bottom:3px;}
.number-stats .stat-number .number {color:#7d8c9d; font-size:27px;line-height:27px;}
.table.table-light > thead > tr > th {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: -moz-use-text-color -moz-use-text-color #f2f6f8;
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
color: #a7b3b9;
font-family: "Open Sans",sans-serif;
font-size: 13px;
font-weight: 600;
}
.table.table-light > tbody > tr > td {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: -moz-use-text-color -moz-use-text-color #f2f6f8;
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
color: #9ca8b0;
vertical-align: middle;
}
.table.table-light > tbody > tr > td.fit {
padding-right: 3px; width: 1px;
}
.table.table-light > tbody > tr > td .user-pic {
border-radius: 100%; display: inline-block; height: 30px; vertical-align: middle;
}
.table.table-light > tbody > tr:last-child > td {
border: 0 none;
}
.primary-link {
color: #65a0d0; font-weight:600;
}
/**
* Nestable
*/
.dd { position: relative; display: block; margin: 0; padding: 0; max-width: 600px; list-style: none; font-size: 13px; line-height: 20px; }
.dd-list { display: block; position: relative; margin: 0; padding: 0; list-style: none; }
.dd-list .dd-list { padding-left: 30px; }
.dd-collapsed .dd-list { display: none; }
.dd-item,
.dd-empty,
.dd-placeholder { display: block; position: relative; margin: 0; padding: 0; min-height: 20px; font-size: 13px; line-height: 20px; }
.dd-handle { display: block; height: 30px; margin: 5px 0; padding: 5px 10px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc;
background: #fafafa;
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
background: linear-gradient(top, #fafafa 0%, #eee 100%);
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: border-box; -moz-box-sizing: border-box;
}
.dd-handle:hover { color: #2ea8e5; background: #fff; }
.dd-item > button { display: block; position: relative; cursor: pointer; float: left; width: 25px; height: 20px; margin: 5px 0; padding: 0; text-indent: 100%; white-space: nowrap; overflow: hidden; border: 0; background: transparent; font-size: 12px; line-height: 1; text-align: center; font-weight: bold; }
.dd-item > button:before { content: '+'; display: block; position: absolute; width: 100%; text-align: center; text-indent: 0; }
.dd-item > button[data-action="collapse"]:before { content: '-'; }
.dd-placeholder,
.dd-empty { margin: 5px 0; padding: 0; min-height: 30px; background: #f2fbff; border: 1px dashed #b6bcbf; box-sizing: border-box; -moz-box-sizing: border-box; }
.dd-empty { border: 1px dashed #bbb; min-height: 100px; background-color: #e5e5e5;
background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
-webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
-moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-size: 60px 60px;
background-position: 0 0, 30px 30px;
}
.dd-dragel { position: absolute; pointer-events: none; z-index: 9999; }
.dd-dragel > .dd-item .dd-handle { margin-top: 0; }
.dd-dragel .dd-handle {
-webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
}
/**
* Nestable Extras
*/
.nestable-lists { display: block; clear: both; padding: 30px 0; width: 100%; border: 0; border-top: 2px solid #ddd; border-bottom: 2px solid #ddd; }
#nestable-menu { padding: 0; margin: 20px 0; }
#nestable-output,
#nestable2-output { width: 100%; height: 7em; font-size: 0.75em; line-height: 1.333333em; font-family: Consolas, monospace; padding: 5px; box-sizing: border-box; -moz-box-sizing: border-box; }
#nestable2 .dd-handle {
color: #fff;
border: 1px solid #999;
background: #bbb;
background: -webkit-linear-gradient(top, #bbb 0%, #999 100%);
background: -moz-linear-gradient(top, #bbb 0%, #999 100%);
background: linear-gradient(top, #bbb 0%, #999 100%);
}
#nestable2 .dd-handle:hover { background: #bbb; }
#nestable2 .dd-item > button:before { color: #fff; }
@media only screen and (min-width: 700px) {
.dd { float: left; width: 48%; }
.dd + .dd { margin-left: 2%; }
}
.dd-hover > .dd-handle { background: #2ea8e5 !important; }
/**
* Nestable Draggable Handles
*/
.dd3-content { display: block; height: 30px; margin: 5px 0; padding: 5px 10px 5px 40px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc;
background: #fafafa;
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
background: linear-gradient(top, #fafafa 0%, #eee 100%);
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: border-box; -moz-box-sizing: border-box;
}
.dd3-content:hover { color: #2ea8e5; background: #fff; }
.dd-dragel > .dd3-item > .dd3-content { margin: 0; }
.dd3-item > button { margin-left: 30px; }
.dd3-handle { position: absolute; margin: 0; left: 0; top: 0; cursor: pointer; width: 30px; text-indent: 100%; white-space: nowrap; overflow: hidden;
border: 1px solid #aaa;
background: #ddd;
background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
background: linear-gradient(top, #ddd 0%, #bbb 100%);
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dd3-handle:before { content: '≡'; display: block; position: absolute; left: 0; top: 3px; width: 100%; text-align: center; text-indent: 0; color: #fff; font-size: 20px; font-weight: normal; }
.dd3-handle:hover { background: #ddd; }
/*NEW Template*/
.page-container > .col-md-2 {
height: 100%;
}
.page-aside {
border-right: solid 1px #CCC;
width: 16.667%;
/*width: 16.667%;*/
/*width: 100%;*/
top:112px;
bottom:0;
position: fixed;
background: #ffffff;
/*background: linear-gradient(#ffffff 0%, #eeeeee 100%);*/
/*border-top:solid 1px #CCC;*/
z-index:99;
}
.page-aside .page-title {
height: 30px;
}
.page-aside .page-title h1 {
}
.page-aside .block-menu {
padding-top: 0;
}
.page-aside .block-menu a {
display: block;
width: 100%;
padding: 4px 10px 4px 15px;
/*margin: 5px 0;*/
/*font-size: 12px;*/
font-size: 11px;
color: #697882;
}
.page-aside .block-menu a.active {
text-decoration: none;
background: #D3DBF7;
}
.page-aside .block-menu a.active:hover {
background: #D3DBF7;
}
.page-aside .block-menu a:hover {
text-decoration: none;
background: #eeeeee;
}
.wrapper-jqGrid > div {
border-top:0;
border-right:0;
border-left:0;
}
.dialog-form {
background: #fff;
border: solid 1px #CCC;
margin: 10px auto;
}
.dialog-form > .dform-title {
background: -moz-linear-gradient(#eeeeee 0%, #dddddd 100%);
background: -webkit-linear-gradient(#eeeeee 0%, #dddddd 100%);
background: linear-gradient(#eeeeee 0%, #dddddd 100%);
height: 30px;
text-align: center;
font-weight: bold;
/*padding: 3px 8px;*/
}
.dialog-form > .dform-title > h1 {
font-size: 12px;
margin:0;
padding:0 0 0 10px;
line-height: 30px;
border-bottom: solid 1px #ccc;
}
.dialog-form > .dform-body {
padding-top: 15px;
font-size: 12px;
}
.dialog-form > .dform-body .control-label {
font-size: 12px;
}
.dform-action {
height: 50px;
background: #eee;
border-top: solid 1px #ccc;
line-height: 46px;
padding:0 7px 0 0;
}
.dform-action button {
border-radius: 0;
font-size: 12px;
}
.alert { border-radius: 0; text-align: center; }
.progress { position:relative; width:300px; border: 1px solid #ddd; padding: 1px; border-radius: 3px; margin-bottom:0; }
.bar { background-color: #B4F5B4; width:0%; height:20px; border-radius: 3px; }
.percent { position:absolute; display:inline-block; top:3px; left:48%; }
/***
Regis stats
***/
.regis-stat {
margin-bottom: 25px;
}
.regis-stat:before,
.regis-stat:after {
display: table;
line-height: 0;
content: "";
}
.regis-stat:after {
clear: both;
}
.regis-stat .visual {
width: 80px;
height:80px;
display: block;
float: left;
padding-top: 10px;
padding-left: 15px;
}
.regis-stat .visual i {
font-size: 65px;
color: #fff;
}
.regis-stat .details {
float: right;
padding-right: 10px;
}
.regis-stat .details .number {
padding-top: 10px;
text-align: right;
font-size: 34px;
letter-spacing: -1px;
font-weight: 300;
color: #fff;
}
.regis-stat .details .desc {
text-align: right;
font-size: 16px;
letter-spacing: 0px;
font-weight: 300;
color: #fff;
margin-bottom: 10px;
}
.regis-stat .more {
clear: both;
display: block;
padding: 5px 10px 5px 10px;
text-transform: uppercase;
font-weight: 300;
font-size: 11px;
color: #fff;
opacity: 0.7;
filter: alpha(opacity=70);
}
.regis-stat .more i {
margin-top: 4px;
float: right;
}
.regis-stat .more:hover {
text-decoration: none;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
opacity: 1;
filter: alpha(opacity=100);
}
.regis-stat.blue {
background-color: #27a9e3;
}
.regis-stat.blue .more {
background-color: #208dbe;
}
.regis-stat.green {
background-color: #28b779;
}
.regis-stat.green .more {
background-color: #10a062;
}
.regis-stat.red {
background-color: #e7191b;
}
.regis-stat.red .more {
background-color:#bc0d0e;
}
.regis-stat.yellow {
background-color: #ffb848;
}
.regis-stat.yellow .more {
background-color: #cb871b;
}
.regis-stat.purple {
background-color: #852b99;
}
.regis-stat.purple .more {
background-color: #6e1881;
}
/***
Dashboard stats
***/
.dashboard-stat {
margin-bottom: 25px;
}
.dashboard-stat:before,
.dashboard-stat:after {
display: table;
line-height: 0;
content: "";
}
.dashboard-stat:after {
clear: both;
}
.dashboard-stat .visual {
width: 80px;
height:80px;
display: block;
float: left;
padding-top: 10px;
padding-left: 15px;
}
.dashboard-stat .visual i {
font-size: 65px;
color: #fff;
}
.dashboard-stat .details {
float: right;
padding-right: 10px;
}
.dashboard-stat .details .number {
padding-top: 10px;
text-align: right;
font-size: 34px;
letter-spacing: -1px;
font-weight: 300;
color: #fff;
}
.dashboard-stat .details .desc {
text-align: right;
font-size: 16px;
letter-spacing: 0px;
font-weight: 300;
color: #fff;
margin-bottom: 10px;
}
.dashboard-stat .more {
clear: both;
display: block;
padding: 5px 10px 5px 10px;
text-transform: uppercase;
font-weight: 300;
font-size: 11px;
color: #fff;
opacity: 0.7;
filter: alpha(opacity=70);
}
.dashboard-stat .more i {
margin-top: 4px;
float: right;
}
.dashboard-stat .more:hover {
text-decoration: none;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
opacity: 1;
filter: alpha(opacity=100);
}
.dashboard-stat.blue {
background-color: #27a9e3;
}
.dashboard-stat.blue .more {
background-color: #208dbe;
}
.dashboard-stat.green {
background-color: #28b779;
}
.dashboard-stat.green .more {
background-color: #10a062;
}
.dashboard-stat.red {
background-color: #e7191b;
}
.dashboard-stat.red .more {
background-color:#bc0d0e;
}
.dashboard-stat.yellow {
background-color: #ffb848;
}
.dashboard-stat.yellow .more {
background-color: #cb871b;
}
.dashboard-stat.purple {
background-color: #852b99;
}
.dashboard-stat.purple .more {
background-color: #6e1881;
}
@media (max-width:1268px) and (min-width: 1101px) {
.page-aside .block-menu a {
font-size: 11px;
}
}
@media (max-width:1100px) and (min-width: 1001px) {
.page-aside .block-menu a {
font-size: 10px;
}
.page-container .col-md-2 {
width: 18%;
}
.page-aside {
width: 18%;
}
.page-container .col-md-10 {
width: 82%;
}
.page-container h1 {
font-size: 11px !important;
}
.control-label {
font-size: 10px !important;
}
.form-control {
font-size: 11px !important;
}
}
@media (max-width:1000px) and (min-width: 500px) {
.page-aside {
width: 100%;
border-right: solid 1px #FFF;
position: static;
border-bottom: solid 1px #CCC;
padding-bottom: 10px;
}
.page-container > .col-md-2 {
height: auto;
}
.page-container > .col-md-10 {
position: static;
}
.page-head .container {
position: static;
}
.input-form {
height: auto !important;
}
}
/***
Circle Stats(KNOB, new in v1.1.1)
***/
|
public/login/template.css
|
body
{
margin:0;
padding:0;
height:100%;
background-color:#EFF3F8;
font-size: 13px;
font-family: "Open Sans",sans-serif;
}
.logo
{
margin: 25px 0;
}
.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;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus
{
z-index: 2;
}
.form-signin input[type="text"]
{
margin-bottom: -1px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.form-signin input[type="password"]
{
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.account-wall
{
margin-top: 20px;
padding: 40px 0px 20px 0px;
background-color: #fff;
-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
/*margin-bottom:5px;*/
}
.login-title
{
color: #555;
font-size: 18px;
font-weight: 400;
display: block;
font-family: "Open Sans",arial;
}
.profile-img
{
width: 96px;
height: 96px;
margin: 0 auto 10px;
display: block;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.need-help
{
margin-top: 10px;
}
.copyright
{
color: #666;
display: block;
margin-top: 10px;
font-size:85%;
}
button{
font-family: "Open Sans",arial;
}
/*main template*/
h1,h2,h3,h4,h5 {
font-family: "Open Sans", sans-serif;
font-weight: 300;
}
.page-header .container,.page-header .container-fluid {
position: relative;
}
.page-header{
height: 112px;
background-color: white;
width: 100%;
margin:0;
}
.page-header .page-header-top {
height: 75px;
}
.page-header .page-header-menu {
background: none repeat scroll 0 0 #444d58;
clear: both;
display: block;
height: 36px;
}
.page-header .page-header-menu.fixed {
box-shadow: 0px 1px 10px 0px rgba(68, 77, 88, 0.2);
}
.page-header .page-header-menu .hor-menu {
float: left;
margin: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li {
height: 36px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li > a {
padding: 0 18px;
font-size: 12px;
font-weight: normal;
line-height: 36px;
}
.page-header .page-header-menu .hor-menu .navbar-nav {
/*position: static;*/
}
.navbar-nav > li {
float:left;
}
.navbar-nav > li.active > a {
background: #4e5966 !important;
}
.navbar-nav > li > a {
color: white;
}
.navbar-nav > li > a:hover, .navbar-nav > li > a:active, .navbar-nav > li > a:visited, .navbar-nav > li > a:focus {
background: #55616f !important;
}
.navbar-nav > li.dorpdown-menu {
border: medium none;
margin-top: 0;
}
.dropdown-menu {
border: 0;
padding:0;
margin: 0;
background: #55616f;
}
.dropdown-menu li > a {
clear: both;
color: #555;
display: block;
font-weight: 300;
line-height: 18px;
padding: 8px 14px;
text-decoration: none;
white-space: none;
}
.dropdown-menu .active a {
background-color: #718193 !important;
}
.dropdown-menu li > a:hover, .dropdown-menu .active a:hover, .dropdown-menu li > a:focus {
background-color: #55616f;
background-image: none;
color: #666;
filter: none;
text-decoration: none;
}
.navbar-nav > li > .dropdown-menu {
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-top: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu {
background: #55616f;
box-shadow: 5px 5px rgba(85,97,111,0.2);
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #55616f !important;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > a:after {
position: absolute;
display: inline-block;
font-size: 14px;
right: 7px;
top: 7px;
font-family: FontAwesome;
height: auto;
content: "\f105";
font-weight: 300;
}
.remove-arrow > a:after {
content: none;
}
.dropdown-submenu .dropdown-menu {
left: 100%;
margin-left: -1px;
margin-top: -6px;
top: 6px;
}
.page-haeder .page-header-menu .hor-menu .navbar-nav > li .dropdown-submenu > .dropdown-menu {
top: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu li > a {
font-family: "Open Sans", sans-serif;
font-size: 12px;
font-weight: 300;
padding: 6px 8px;
white-space: normal;
color: #ced5de;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-menu li:hover > a {
background-color: #5d6b7a;
}
/* classic-dropdown-menu */
.page-header .page-header-menu .hor-menu .navbar-nav > li.classic-dropdown-menu .dropdown-menu {
max-width: 235px;
min-width: 195px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li .dropdown-submenu > a {
color: #6fa7d7;
right: 10px;
top: 9px;
}
/* menu-dropdown */
.page-header .page-header-menu .hor-menu .navbar-nav > li.menu-dropdown .dropdown-menu:before {
display: none !important;
}
/* mega-menu-dropdown */
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown {
position: static;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu {
left: auto;
width: auto;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu {
box-shadow: 5px 5px rgba(85, 97, 111, 0.2);
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content {
font-family: "Open Sans", sans-serif;
margin: 0;
padding: 15px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu:last-child {
border-right: 0 none;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu {
margin: 0;
padding: 0;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li {
list-style: outside none none;
margin: 0 !important;
padding: 1px !important;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li h3 {
font-size: 13px;
font-weight: normal;
margin-top: 5px;
padding-left: 5px;
color: #ced5de;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify {
padding: 7px 7px 7px 10px;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify i.fa {
width: 0.8em;
}
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a {
font-family: "Open Sans", sans-serif;
font-size: 12px;
font-weight: 300;
margin: 0;
padding: 7px;
white-space: normal;
}
/*mega-menu-full*/
.page-header .page-header-menu .hor-menu .navbar-nav > li.mega-menu-full .dropdown-menu {
left: 20px;
right: 20px;
}
/*page container*/
.page-container {
clear: both;
top:112px;
bottom:0;
position: absolute;
width: 100%;
}
.page-content {
/*background: #EFF3F8;*/
padding: 15px 0;
}
/*page head*/
.page-head {
background: #fff;
z-index: +10;
}
.page-head .container {
position: relative;
}
.page-head .page-title {
display: inline-block;
float: left;
padding: 10px 0;
margin: 0;
}
.page-head .page-title > h1 {
color: #697882;
font-size: 13px;
font-weight: 600;
margin: 0;
}
/*portlet*/
.portlet {
border-radius: 4px;
margin-bottom: 25px;
margin-top:0;
padding:0;
}
.portlet.light {
background-color: #fff;
padding: 12px 20px 15px;
}
.portlet > .portlet-title:after{
clear: both;
}
.portlet.light > .portlet-title {
min-height: 48px;
padding: 0;
}
.portlet.light > .portlet-title > .caption {
color: #666;
padding: 10px 0;
}
.portlet > .portlet-title {
border-bottom: 1px solid #eee;
border-radius: 4px 4px 0;
margin-bottom: 10px;
min-height: 41px;
padding: 0;
}
.portlet > .portlet-title > .caption {
display: inline-block;
float: left;
font-size: 18px;
font-weight: 300;
line-height: 18px;
padding: 10 0;
}
.portlet > .portlet-title > .caption.title-1 {
color: #4DB3A2;
font-size: 15px;
text-transform: uppercase !important;
font-weight: 700 !important;
font-family: "Open Sans",sans-serif;
}
.portlet.light .portlet-body {
padding-top: 8px;
}
.portlet .portlet-body {
border-radius: 0 0 4px 4px;
clear: both;
}
/*breadcrumb*/
.breadcrumb {
background: none;
padding: 0 0 15px 0;
margin: 0;
color: #c5ccd5;
}
.breadcrumb > li + li:before {
display: none;
}
.breadcrumb .fa {
font-size: 6px;
margin: 0 2px 0 4px;
position: relative;
top: -1px;
}
.breadcrumb > .active {
color: #9eacb4;
}
.table-toolbar:after {
clear: both;
}
.table-toolbar {
margin-bottom: 15px;
}
.jqgrid-button {
background:#EEE;
}
.green.btn {
background: #35aa47;
color: #ffffff;/*
font-size: 12px;*/
}
.red.btn {
background: #d84a38;
color: #ffffff;/*
font-size: 12px;*/
}
.blue.btn {
background: #4b8df8;
color: #ffffff;/*
font-size: 12px;*/
}
.purple.btn {
background: #8e44ad;
color: #ffffff;/*
font-size: 12px;*/
}
/*----------------------- CSS jQGrid -----------------------*/
.jqGrid_add, .jqGrid_edit, .jqGrid_delete, .jqGrid_detail, .jqGrid_makeactive, .jqGrid_makedisable, .jqGrid_export { margin-left:0; margin-bottom: 3px; height: 24px; width: 24px; }
.jqGrid_print { margin-top: 3px; margin-bottom: 3px; height: 20px; width: 20px; }
.jqGrid_add { margin-left:5px; background-color: transparent; border: none; background-image: url(../img/jqgrid-add.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_edit { background-color: transparent; border: none; background-image: url(../img/jqgrid-edit.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_detail { background-color: transparent; border: none; background-image: url(../img/jqgrid-detail.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_delete { background-color: transparent; border: none; background-image: url(../img/jqgrid-delete.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_makeactive { background-color: transparent; border: none; background-image: url(../img/jqgrid-makeactive.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_makedisable { background-color: transparent; border: none; background-image: url(../img/delete1.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_export { background-color: transparent; border: none; background-image: url(../img/file_extension_xls.png); background-position: center; background-repeat: no-repeat; }
.jqGrid_print { background-color: transparent; border: none; background-image: url(../img/printer.png); background-position: center; background-repeat: no-repeat; }
label {
font-size:14px;font-weight:400;
}
.form .form-actions {
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
margin:0;
padding:20px 10px;
}
.portlet.light .form .form-actions {
background: none;
padding-left:0;
padding-right:0;
}
.form-control {
border-radius: 0px !important;
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: none;
color: #333;
font-size: 14px;
font-weight: normal;
padding: 6px 8px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.form-control:focus {
box-shadow: none;
outline: 0 none;
border-color: #999
}
.input-group .input-group-addon {
border-color: #e5e5e5;
min-width: 39px;
font-size: 13px;
}
.alert {
background-color: #fcf8e3;
border: 1px solid #fbeed5;
border-radius: 4px;
margin-bottom: 20px;
padding: 8px 35px 8px 14px;
text-shadow: 0 1px 0 rgba(255,255,255, 0.5);
}
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.form-group.error input,.form-group.error select,.form-group.error textarea {
border: solid 1px #b94a48;
}
.form-group.success input,.form-group.success select,.form-group.success textarea {
border: solid 1px #468847;
}
.page-header .page-header-top .page-logo {
display: block;
float: left;
height: 75px;
width: 255px;
}
.page-header .page-header-top .page-logo .logo-default {
margin: 15px 0 0;
}
.wrapper-jqGrid > .ui-jqgrid {
width: auto !important;
}
.wrapper-jqGrid > .ui-jqgrid > .ui-jqgrid-view {
width: auto !important;
}
.wrapper-jqGrid > .ui-jqgrid > .ui-jqgrid-pager {
width: auto !important;
}
#change_position {
overflow: hidden;
}
.dashboard-chart {
margin-left: -44px; margin-right: -46px; margin-bottom: -40px;
}
.dashboard-chart > svg {
border-radius: 0 0 4px 4px !important;
}
.number-stats { margin: 10px 0; }
.number-stats > div {border-right: 1px solid #f5f5f5;}
.number-stats > div:last-child {border-right: 0 none;}
.number-stats .stat-left { float: right; }
.number-stats .stat-left .stat-chart { float: right; }
.number-stats .stat-right { float: left; }
.number-stats .stat-right .stat-chart { float: left; }
.number-stats .stat-chart {float: left;}
.number-stats .stat-chart {display: inline-block;margin:0 5px;}
.number-stats .stat-left .stat-number {float:right; text-align: right;}
.number-stats .stat-right .stat-number {float:left; text-align: right;}
.number-stats .stat-number .title {color:#b8c3c7;font-size:13px;margin-bottom:3px;}
.number-stats .stat-number .number {color:#7d8c9d; font-size:27px;line-height:27px;}
.table.table-light > thead > tr > th {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: -moz-use-text-color -moz-use-text-color #f2f6f8;
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
color: #a7b3b9;
font-family: "Open Sans",sans-serif;
font-size: 13px;
font-weight: 600;
}
.table.table-light > tbody > tr > td {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: -moz-use-text-color -moz-use-text-color #f2f6f8;
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
color: #9ca8b0;
vertical-align: middle;
}
.table.table-light > tbody > tr > td.fit {
padding-right: 3px; width: 1px;
}
.table.table-light > tbody > tr > td .user-pic {
border-radius: 100%; display: inline-block; height: 30px; vertical-align: middle;
}
.table.table-light > tbody > tr:last-child > td {
border: 0 none;
}
.primary-link {
color: #65a0d0; font-weight:600;
}
/**
* Nestable
*/
.dd { position: relative; display: block; margin: 0; padding: 0; max-width: 600px; list-style: none; font-size: 13px; line-height: 20px; }
.dd-list { display: block; position: relative; margin: 0; padding: 0; list-style: none; }
.dd-list .dd-list { padding-left: 30px; }
.dd-collapsed .dd-list { display: none; }
.dd-item,
.dd-empty,
.dd-placeholder { display: block; position: relative; margin: 0; padding: 0; min-height: 20px; font-size: 13px; line-height: 20px; }
.dd-handle { display: block; height: 30px; margin: 5px 0; padding: 5px 10px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc;
background: #fafafa;
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
background: linear-gradient(top, #fafafa 0%, #eee 100%);
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: border-box; -moz-box-sizing: border-box;
}
.dd-handle:hover { color: #2ea8e5; background: #fff; }
.dd-item > button { display: block; position: relative; cursor: pointer; float: left; width: 25px; height: 20px; margin: 5px 0; padding: 0; text-indent: 100%; white-space: nowrap; overflow: hidden; border: 0; background: transparent; font-size: 12px; line-height: 1; text-align: center; font-weight: bold; }
.dd-item > button:before { content: '+'; display: block; position: absolute; width: 100%; text-align: center; text-indent: 0; }
.dd-item > button[data-action="collapse"]:before { content: '-'; }
.dd-placeholder,
.dd-empty { margin: 5px 0; padding: 0; min-height: 30px; background: #f2fbff; border: 1px dashed #b6bcbf; box-sizing: border-box; -moz-box-sizing: border-box; }
.dd-empty { border: 1px dashed #bbb; min-height: 100px; background-color: #e5e5e5;
background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
-webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
-moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
background-size: 60px 60px;
background-position: 0 0, 30px 30px;
}
.dd-dragel { position: absolute; pointer-events: none; z-index: 9999; }
.dd-dragel > .dd-item .dd-handle { margin-top: 0; }
.dd-dragel .dd-handle {
-webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
}
/**
* Nestable Extras
*/
.nestable-lists { display: block; clear: both; padding: 30px 0; width: 100%; border: 0; border-top: 2px solid #ddd; border-bottom: 2px solid #ddd; }
#nestable-menu { padding: 0; margin: 20px 0; }
#nestable-output,
#nestable2-output { width: 100%; height: 7em; font-size: 0.75em; line-height: 1.333333em; font-family: Consolas, monospace; padding: 5px; box-sizing: border-box; -moz-box-sizing: border-box; }
#nestable2 .dd-handle {
color: #fff;
border: 1px solid #999;
background: #bbb;
background: -webkit-linear-gradient(top, #bbb 0%, #999 100%);
background: -moz-linear-gradient(top, #bbb 0%, #999 100%);
background: linear-gradient(top, #bbb 0%, #999 100%);
}
#nestable2 .dd-handle:hover { background: #bbb; }
#nestable2 .dd-item > button:before { color: #fff; }
@media only screen and (min-width: 700px) {
.dd { float: left; width: 48%; }
.dd + .dd { margin-left: 2%; }
}
.dd-hover > .dd-handle { background: #2ea8e5 !important; }
/**
* Nestable Draggable Handles
*/
.dd3-content { display: block; height: 30px; margin: 5px 0; padding: 5px 10px 5px 40px; color: #333; text-decoration: none; font-weight: bold; border: 1px solid #ccc;
background: #fafafa;
background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
background: linear-gradient(top, #fafafa 0%, #eee 100%);
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: border-box; -moz-box-sizing: border-box;
}
.dd3-content:hover { color: #2ea8e5; background: #fff; }
.dd-dragel > .dd3-item > .dd3-content { margin: 0; }
.dd3-item > button { margin-left: 30px; }
.dd3-handle { position: absolute; margin: 0; left: 0; top: 0; cursor: pointer; width: 30px; text-indent: 100%; white-space: nowrap; overflow: hidden;
border: 1px solid #aaa;
background: #ddd;
background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
background: linear-gradient(top, #ddd 0%, #bbb 100%);
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dd3-handle:before { content: '≡'; display: block; position: absolute; left: 0; top: 3px; width: 100%; text-align: center; text-indent: 0; color: #fff; font-size: 20px; font-weight: normal; }
.dd3-handle:hover { background: #ddd; }
/*NEW Template*/
.page-container > .col-md-2 {
height: 100%;
}
.page-aside {
border-right: solid 1px #CCC;
width: 16.667%;
/*width: 16.667%;*/
/*width: 100%;*/
top:112px;
bottom:0;
position: fixed;
background: #ffffff;
/*background: linear-gradient(#ffffff 0%, #eeeeee 100%);*/
/*border-top:solid 1px #CCC;*/
z-index:99;
}
.page-aside .page-title {
height: 30px;
}
.page-aside .page-title h1 {
}
.page-aside .block-menu {
padding-top: 0;
}
.page-aside .block-menu a {
display: block;
width: 100%;
padding: 4px 10px 4px 15px;
/*margin: 5px 0;*/
/*font-size: 12px;*/
font-size: 11px;
color: #697882;
}
.page-aside .block-menu a.active {
text-decoration: none;
background: #D3DBF7;
}
.page-aside .block-menu a.active:hover {
background: #D3DBF7;
}
.page-aside .block-menu a:hover {
text-decoration: none;
background: #eeeeee;
}
.wrapper-jqGrid > div {
border-top:0;
border-right:0;
border-left:0;
}
.dialog-form {
background: #fff;
border: solid 1px #CCC;
margin: 10px auto;
}
.dialog-form > .dform-title {
background: -moz-linear-gradient(#eeeeee 0%, #dddddd 100%);
background: -webkit-linear-gradient(#eeeeee 0%, #dddddd 100%);
background: linear-gradient(#eeeeee 0%, #dddddd 100%);
height: 30px;
text-align: center;
font-weight: bold;
/*padding: 3px 8px;*/
}
.dialog-form > .dform-title > h1 {
font-size: 12px;
margin:0;
padding:0 0 0 10px;
line-height: 30px;
border-bottom: solid 1px #ccc;
}
.dialog-form > .dform-body {
padding-top: 15px;
font-size: 12px;
}
.dialog-form > .dform-body .control-label {
font-size: 12px;
}
.dform-action {
height: 50px;
background: #eee;
border-top: solid 1px #ccc;
line-height: 46px;
padding:0 7px 0 0;
}
.dform-action button {
border-radius: 0;
font-size: 12px;
}
.alert { border-radius: 0; text-align: center; }
.progress { position:relative; width:300px; border: 1px solid #ddd; padding: 1px; border-radius: 3px; margin-bottom:0; }
.bar { background-color: #B4F5B4; width:0%; height:20px; border-radius: 3px; }
.percent { position:absolute; display:inline-block; top:3px; left:48%; }
/***
Regis stats
***/
.regis-stat {
margin-bottom: 25px;
}
.regis-stat:before,
.regis-stat:after {
display: table;
line-height: 0;
content: "";
}
.regis-stat:after {
clear: both;
}
.regis-stat .visual {
width: 80px;
height:80px;
display: block;
float: left;
padding-top: 10px;
padding-left: 15px;
}
.regis-stat .visual i {
font-size: 65px;
color: #fff;
}
.regis-stat .details {
float: right;
padding-right: 10px;
}
.regis-stat .details .number {
padding-top: 10px;
text-align: right;
font-size: 34px;
letter-spacing: -1px;
font-weight: 300;
color: #fff;
}
.regis-stat .details .desc {
text-align: right;
font-size: 16px;
letter-spacing: 0px;
font-weight: 300;
color: #fff;
margin-bottom: 10px;
}
.regis-stat .more {
clear: both;
display: block;
padding: 5px 10px 5px 10px;
text-transform: uppercase;
font-weight: 300;
font-size: 11px;
color: #fff;
opacity: 0.7;
filter: alpha(opacity=70);
}
.regis-stat .more i {
margin-top: 4px;
float: right;
}
.regis-stat .more:hover {
text-decoration: none;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
opacity: 1;
filter: alpha(opacity=100);
}
.regis-stat.blue {
background-color: #27a9e3;
}
.regis-stat.blue .more {
background-color: #208dbe;
}
.regis-stat.green {
background-color: #28b779;
}
.regis-stat.green .more {
background-color: #10a062;
}
.regis-stat.red {
background-color: #e7191b;
}
.regis-stat.red .more {
background-color:#bc0d0e;
}
.regis-stat.yellow {
background-color: #ffb848;
}
.regis-stat.yellow .more {
background-color: #cb871b;
}
.regis-stat.purple {
background-color: #852b99;
}
.regis-stat.purple .more {
background-color: #6e1881;
}
/***
Dashboard stats
***/
.dashboard-stat {
margin-bottom: 25px;
}
.dashboard-stat:before,
.dashboard-stat:after {
display: table;
line-height: 0;
content: "";
}
.dashboard-stat:after {
clear: both;
}
.dashboard-stat .visual {
width: 80px;
height:80px;
display: block;
float: left;
padding-top: 10px;
padding-left: 15px;
}
.dashboard-stat .visual i {
font-size: 65px;
color: #fff;
}
.dashboard-stat .details {
float: right;
padding-right: 10px;
}
.dashboard-stat .details .number {
padding-top: 10px;
text-align: right;
font-size: 34px;
letter-spacing: -1px;
font-weight: 300;
color: #fff;
}
.dashboard-stat .details .desc {
text-align: right;
font-size: 16px;
letter-spacing: 0px;
font-weight: 300;
color: #fff;
margin-bottom: 10px;
}
.dashboard-stat .more {
clear: both;
display: block;
padding: 5px 10px 5px 10px;
text-transform: uppercase;
font-weight: 300;
font-size: 11px;
color: #fff;
opacity: 0.7;
filter: alpha(opacity=70);
}
.dashboard-stat .more i {
margin-top: 4px;
float: right;
}
.dashboard-stat .more:hover {
text-decoration: none;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
opacity: 1;
filter: alpha(opacity=100);
}
.dashboard-stat.blue {
background-color: #27a9e3;
}
.dashboard-stat.blue .more {
background-color: #208dbe;
}
.dashboard-stat.green {
background-color: #28b779;
}
.dashboard-stat.green .more {
background-color: #10a062;
}
.dashboard-stat.red {
background-color: #e7191b;
}
.dashboard-stat.red .more {
background-color:#bc0d0e;
}
.dashboard-stat.yellow {
background-color: #ffb848;
}
.dashboard-stat.yellow .more {
background-color: #cb871b;
}
.dashboard-stat.purple {
background-color: #852b99;
}
.dashboard-stat.purple .more {
background-color: #6e1881;
}
@media (max-width:1268px) and (min-width: 1101px) {
.page-aside .block-menu a {
font-size: 11px;
}
}
@media (max-width:1100px) and (min-width: 1001px) {
.page-aside .block-menu a {
font-size: 10px;
}
.page-container .col-md-2 {
width: 18%;
}
.page-aside {
width: 18%;
}
.page-container .col-md-10 {
width: 82%;
}
.page-container h1 {
font-size: 11px !important;
}
.control-label {
font-size: 10px !important;
}
.form-control {
font-size: 11px !important;
}
}
@media (max-width:1000px) and (min-width: 500px) {
.page-aside {
width: 100%;
border-right: solid 1px #FFF;
position: static;
border-bottom: solid 1px #CCC;
padding-bottom: 10px;
}
.page-container > .col-md-2 {
height: auto;
}
.page-container > .col-md-10 {
position: static;
}
.page-head .container {
position: static;
}
.input-form {
height: auto !important;
}
}
/***
Circle Stats(KNOB, new in v1.1.1)
***/
| 0.238816 | 0.065009 |
.icon,
.icon img {
font-size: x-large;
height: 55px;
width: 55px;
transition: border-radius .3s ease-in-out;
}
.icon:hover,
.icon img:hover {
border-radius: 20% !important;
}
.abbr {
padding-top: 7.5px;
}
.menu-btn {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
cursor: pointer;
bottom: 0;
transition: all .5s ease-in-out;
}
.menu-btn__burger {
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
transition: all .5s ease-in-out;
}
.menu-btn__burger::before,
.menu-btn__burger::after {
content: '';
position: absolute;
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
transition: all .5s ease-in-out;
}
.menu-btn__burger::before {
transform: translateY(-12px);
}
.menu-btn__burger::after {
transform: translateY(12px);
}
.menu-btn.open .menu-btn__burger {
transform: translateX(-30px);
background: transparent;
box-shadow: none;
}
.menu-btn.open .menu-btn__burger:before {
transform: rotate(45deg) translate(22px, -22px);
}
.menu-btn.open .menu-btn__burger:after {
transform: rotate(-45deg) translate(22px, 22px);
}
/* sidebar */
#sidebar {
padding: 15px;
}
#sidebar .guilds {
/* height: 81vh; */
height: calc(100vh - 200px);
}
#sidebar .guilds::-webkit-scrollbar {
display: none;
}
#sidebar,
#sidebarExtension {
height: 100vh;
float: left;
}
/* sidebarExtension */
#sidebarExtension {
height: calc(100vh - 8.5vh);
width: 275px;
transition: 0.3s;
opacity: 1;
}
#sidebarExtension .large-icon {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
#sidebarExtension .large-icon,
#sidebarExtension img {
font-size: xx-large;
width: 96px;
height: 96px;
transition: border-radius .3s ease-in-out;
}
#sidebarExtension .large-icon:hover,
#sidebarExtension img:hover {
border-radius: 20% !important;
}
#sidebarExtension .abbr {
padding-top: 25px;
}
#sidebarExtension.closed {
width: 0;
padding: 0px 0;
opacity: 0;
}
#sidebarExtension.closed .large-icon {
opacity: 0;
}
#sidebarExtension h4 {
cursor: pointer;
}
/* tabs */
.tabs a {
margin: 2px 10px;
padding: 5px;
padding-left: 10px !important;
border-radius: 5px;
text-decoration: none;
color: white;
}
.tabs label {
margin: 2px 10px;
padding: 5px;
padding-left: 10px !important;
border-radius: 5px;
text-decoration: none;
color: white;
}
.tabs a:hover {
background-color: gray;
}
.tabs .category {
padding: 24px 0 4px 24px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
color: gray;
transition: color .3s ease-in-out;
}
.tabs .category:hover {
color: white;
}
@media only screen and (max-width: 768px) {
#sidebarExtension.closed {
display: none !important;
}
#sidebarExtension {
width: calc(100vw - 85px) !important;
height: calc(100vh - 9vh);
display: block !important;
}
.tabs {
width: 50%;
margin: 0 auto;
}
.module.closed {
display: none !important;
}
}
/* @media (min-width: 768px) and (max-width: 991.99px) {
.module {
padding-left: 5rem !important;
padding-right: 0rem !important;
}
.jumbotron {
margin-top: 20vh !important;
}
}
@media (max-width: 992px) {
.module {
padding-left: 5rem !important;
padding-right: 0rem !important;
}
} */
|
dashboard/assets/css/sidebar.css
|
.icon,
.icon img {
font-size: x-large;
height: 55px;
width: 55px;
transition: border-radius .3s ease-in-out;
}
.icon:hover,
.icon img:hover {
border-radius: 20% !important;
}
.abbr {
padding-top: 7.5px;
}
.menu-btn {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
cursor: pointer;
bottom: 0;
transition: all .5s ease-in-out;
}
.menu-btn__burger {
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
transition: all .5s ease-in-out;
}
.menu-btn__burger::before,
.menu-btn__burger::after {
content: '';
position: absolute;
width: 40px;
height: 4px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
transition: all .5s ease-in-out;
}
.menu-btn__burger::before {
transform: translateY(-12px);
}
.menu-btn__burger::after {
transform: translateY(12px);
}
.menu-btn.open .menu-btn__burger {
transform: translateX(-30px);
background: transparent;
box-shadow: none;
}
.menu-btn.open .menu-btn__burger:before {
transform: rotate(45deg) translate(22px, -22px);
}
.menu-btn.open .menu-btn__burger:after {
transform: rotate(-45deg) translate(22px, 22px);
}
/* sidebar */
#sidebar {
padding: 15px;
}
#sidebar .guilds {
/* height: 81vh; */
height: calc(100vh - 200px);
}
#sidebar .guilds::-webkit-scrollbar {
display: none;
}
#sidebar,
#sidebarExtension {
height: 100vh;
float: left;
}
/* sidebarExtension */
#sidebarExtension {
height: calc(100vh - 8.5vh);
width: 275px;
transition: 0.3s;
opacity: 1;
}
#sidebarExtension .large-icon {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
#sidebarExtension .large-icon,
#sidebarExtension img {
font-size: xx-large;
width: 96px;
height: 96px;
transition: border-radius .3s ease-in-out;
}
#sidebarExtension .large-icon:hover,
#sidebarExtension img:hover {
border-radius: 20% !important;
}
#sidebarExtension .abbr {
padding-top: 25px;
}
#sidebarExtension.closed {
width: 0;
padding: 0px 0;
opacity: 0;
}
#sidebarExtension.closed .large-icon {
opacity: 0;
}
#sidebarExtension h4 {
cursor: pointer;
}
/* tabs */
.tabs a {
margin: 2px 10px;
padding: 5px;
padding-left: 10px !important;
border-radius: 5px;
text-decoration: none;
color: white;
}
.tabs label {
margin: 2px 10px;
padding: 5px;
padding-left: 10px !important;
border-radius: 5px;
text-decoration: none;
color: white;
}
.tabs a:hover {
background-color: gray;
}
.tabs .category {
padding: 24px 0 4px 24px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
color: gray;
transition: color .3s ease-in-out;
}
.tabs .category:hover {
color: white;
}
@media only screen and (max-width: 768px) {
#sidebarExtension.closed {
display: none !important;
}
#sidebarExtension {
width: calc(100vw - 85px) !important;
height: calc(100vh - 9vh);
display: block !important;
}
.tabs {
width: 50%;
margin: 0 auto;
}
.module.closed {
display: none !important;
}
}
/* @media (min-width: 768px) and (max-width: 991.99px) {
.module {
padding-left: 5rem !important;
padding-right: 0rem !important;
}
.jumbotron {
margin-top: 20vh !important;
}
}
@media (max-width: 992px) {
.module {
padding-left: 5rem !important;
padding-right: 0rem !important;
}
} */
| 0.374333 | 0.057071 |
.tag{
height: 0.7rem;
width: auto;
margin-left: 0.05rem;
display: inline-block;
margin-right: 0.05rem;
border: 1px solid #dcdcdc;
border-radius: 0.08rem;
text-align: center;
line-height: 0.8rem;
padding: 0rem 0.3rem;
margin-bottom: 0.16rem;
margin-top: 0.16rem;
background-color: #f2f2f2;
font-color: #3e3e3e;
font-size: 0.27rem;
}
@media only screen and (max-width: 1024px){
.left, .select_left, .detail_left {
font-size: 26px !important;
line-height: 0.7rem;
position: absolute;
top: 0;
left: 0;
}
.my_content {
top: 0.01rem;
}
.time_img{
width: 14px;
height: 14px;
display: inline-block;
vertical-align: inherit;
}
.right {
top: 11px;
width: 18px;
height: 18px;
right: 5.6%;
border-radius:0;
}
.s_body{
max-width: 750px;
}
.search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
}
.reply_select {
padding: 0 0.15rem;
position: absolute;
right: 0.5rem;
top: 1.8rem;
border: 1px solid #c2c2c2;
border-radius: 0.13rem;
background: #FFFFFF;
display: none;
z-index: 44;
}
@media only screen and (min-width: 1024px){
.time_img{
width: 24px;
height: 24px;
display: inline-block;
vertical-align: inherit;
}
.detail_left{
line-height: 68px;
}
.right{
right: 42px;
top: 19px;
}
.mem_more {
max-width: 750px;
}
.reply_select{
right: 20%;
top: 180px;
}
.my_content{
margin-top: 120px;
}
}
.mem_more {
overflow-x: hidden;
position: relative;
margin:0 auto;
}
.sort_img{
width: 0.27rem;
}
.no_search{
width: 60%;
}
.my_content{
height: 702px;
max-width: 750px;
margin: 0 auto;
overflow-y: scroll;
}
.my_content .vip_box1 {
width: 0.26rem;
}
.search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
.head_pc{
border: 0px solid red;
}
.index_body{
background-color: #fff;
width: 94%;
margin: 0 auto;
height: auto;
}
.search_box{
width:94%;margin:0.3rem auto;
}
.search_tip{
font-size: 0.32rem;display: inline-block;
}
.search_tip_right{
float:right;margin-right: 0.2rem;color:#a09f9f;
}
.more_data{
width:100%;
text-align: center;
height: 1.2rem;
line-height: 1rem;
font-size: 0.3rem;
color: #a09f9f;
}
.pe_list{
margin-top: 1px;
margin-bottom: 0px;
}
.sort_sj {
width: 0.16rem;
height: 0.09rem;
position: absolute;
top: -0.09rem;
right: 0.3rem;
}
.reply_select .sort_active {
color: #30a5dd;
}
/*width="0.27rem"*/
.reply_select p {
font-size: 0.32rem;
line-height: 0.7rem;
}
.sort_zan {
border-bottom: 1px solid #ebeaea;
}
.search_sort{
float: right;
font-size: 0.36rem;
line-height: 0.36rem;
text-align: center;
margin-top: 0.42rem;
}
.input_search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
|
public/css/search.css
|
.tag{
height: 0.7rem;
width: auto;
margin-left: 0.05rem;
display: inline-block;
margin-right: 0.05rem;
border: 1px solid #dcdcdc;
border-radius: 0.08rem;
text-align: center;
line-height: 0.8rem;
padding: 0rem 0.3rem;
margin-bottom: 0.16rem;
margin-top: 0.16rem;
background-color: #f2f2f2;
font-color: #3e3e3e;
font-size: 0.27rem;
}
@media only screen and (max-width: 1024px){
.left, .select_left, .detail_left {
font-size: 26px !important;
line-height: 0.7rem;
position: absolute;
top: 0;
left: 0;
}
.my_content {
top: 0.01rem;
}
.time_img{
width: 14px;
height: 14px;
display: inline-block;
vertical-align: inherit;
}
.right {
top: 11px;
width: 18px;
height: 18px;
right: 5.6%;
border-radius:0;
}
.s_body{
max-width: 750px;
}
.search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
}
.reply_select {
padding: 0 0.15rem;
position: absolute;
right: 0.5rem;
top: 1.8rem;
border: 1px solid #c2c2c2;
border-radius: 0.13rem;
background: #FFFFFF;
display: none;
z-index: 44;
}
@media only screen and (min-width: 1024px){
.time_img{
width: 24px;
height: 24px;
display: inline-block;
vertical-align: inherit;
}
.detail_left{
line-height: 68px;
}
.right{
right: 42px;
top: 19px;
}
.mem_more {
max-width: 750px;
}
.reply_select{
right: 20%;
top: 180px;
}
.my_content{
margin-top: 120px;
}
}
.mem_more {
overflow-x: hidden;
position: relative;
margin:0 auto;
}
.sort_img{
width: 0.27rem;
}
.no_search{
width: 60%;
}
.my_content{
height: 702px;
max-width: 750px;
margin: 0 auto;
overflow-y: scroll;
}
.my_content .vip_box1 {
width: 0.26rem;
}
.search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
.head_pc{
border: 0px solid red;
}
.index_body{
background-color: #fff;
width: 94%;
margin: 0 auto;
height: auto;
}
.search_box{
width:94%;margin:0.3rem auto;
}
.search_tip{
font-size: 0.32rem;display: inline-block;
}
.search_tip_right{
float:right;margin-right: 0.2rem;color:#a09f9f;
}
.more_data{
width:100%;
text-align: center;
height: 1.2rem;
line-height: 1rem;
font-size: 0.3rem;
color: #a09f9f;
}
.pe_list{
margin-top: 1px;
margin-bottom: 0px;
}
.sort_sj {
width: 0.16rem;
height: 0.09rem;
position: absolute;
top: -0.09rem;
right: 0.3rem;
}
.reply_select .sort_active {
color: #30a5dd;
}
/*width="0.27rem"*/
.reply_select p {
font-size: 0.32rem;
line-height: 0.7rem;
}
.sort_zan {
border-bottom: 1px solid #ebeaea;
}
.search_sort{
float: right;
font-size: 0.36rem;
line-height: 0.36rem;
text-align: center;
margin-top: 0.42rem;
}
.input_search{
border: solid 1px #a09f9f;
width: 86%;
margin-left: 6%;
height: 0.6rem;
border-radius: 0.09rem;
padding-left: 0.40rem;
background-color: #f7f7f7;
font-size: 0.32rem;
}
| 0.360264 | 0.080574 |
* =============================== */
.col-centered{
float: none;
margin: 0 auto;
}
.puremodal {
opacity: 0;
visibility: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center;
background: rgba(0,0,0, .9);
transition: opacity .25s ease;
z-index: 999999;
}
.puremodal__bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
cursor: pointer;
}
.puremodal-state {
display: none;
}
.puremodal-state:checked + .puremodal {
opacity: 1;
visibility: visible;
}
.puremodal-state:checked + .puremodal .puremodal__inner {
top: 0;
}
.puremodal__inner {
transition: top .25s ease;
position: absolute;
top: -20%;
right: 0;
bottom: 0;
left: 0;
width: 50%;
margin: auto;
overflow: auto;
background: #fff;
border-radius: 5px;
padding: 1em 2em;
height: 50%;
}
.puremodal__inner-small {
height: 30%;
}
.puremodal__close {
position: absolute;
right: 1em;
top: 1em;
width: 1.1em;
height: 1.1em;
cursor: pointer;
}
.puremodal__close:after,
.puremodal__close:before {
content: '';
position: absolute;
width: 2px;
height: 1.5em;
background: #ccc;
display: block;
transform: rotate(45deg);
left: 50%;
margin: -3px 0 0 -1px;
top: 0;
}
.puremodal__close:hover:after,
.puremodal__close:hover:before {
background: #aaa;
}
.puremodal__close:before {
transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
.puremodal__inner {
width: 90%;
height: 90%;
box-sizing: border-box;
}
}
.btnmodal {
cursor: pointer;
background: #27ae60;
display: inline-block;
padding: .5em 1em;
color: #fff;
border-radius: 3px;
}
.btnmodal:hover,
.btnmodal:focus {
background: #2ecc71;
}
.btnmodal:active {
background: #27ae60;
box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}
.btnmodal--blue {
background: #2980b9;
}
.btnmodal--blue:hover,
.btnmodal--blue:focus {
background: #3498db;
}
.btnmodal--blue:active {
background: #2980b9;
}
.btnmodal--red {
background: #d9534f;
}
.btnmodal--red:hover,
.btnmodal--red:focus {
background: #d43f3a;
}
.btnmodal--red:active {
background: #d9534f;
}
p img {
max-width: 200px;
height: auto;
float: left;
margin: 0 1em 1em 0;
}
|
application/html/assets/css/puremodal.css
|
* =============================== */
.col-centered{
float: none;
margin: 0 auto;
}
.puremodal {
opacity: 0;
visibility: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center;
background: rgba(0,0,0, .9);
transition: opacity .25s ease;
z-index: 999999;
}
.puremodal__bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
cursor: pointer;
}
.puremodal-state {
display: none;
}
.puremodal-state:checked + .puremodal {
opacity: 1;
visibility: visible;
}
.puremodal-state:checked + .puremodal .puremodal__inner {
top: 0;
}
.puremodal__inner {
transition: top .25s ease;
position: absolute;
top: -20%;
right: 0;
bottom: 0;
left: 0;
width: 50%;
margin: auto;
overflow: auto;
background: #fff;
border-radius: 5px;
padding: 1em 2em;
height: 50%;
}
.puremodal__inner-small {
height: 30%;
}
.puremodal__close {
position: absolute;
right: 1em;
top: 1em;
width: 1.1em;
height: 1.1em;
cursor: pointer;
}
.puremodal__close:after,
.puremodal__close:before {
content: '';
position: absolute;
width: 2px;
height: 1.5em;
background: #ccc;
display: block;
transform: rotate(45deg);
left: 50%;
margin: -3px 0 0 -1px;
top: 0;
}
.puremodal__close:hover:after,
.puremodal__close:hover:before {
background: #aaa;
}
.puremodal__close:before {
transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
.puremodal__inner {
width: 90%;
height: 90%;
box-sizing: border-box;
}
}
.btnmodal {
cursor: pointer;
background: #27ae60;
display: inline-block;
padding: .5em 1em;
color: #fff;
border-radius: 3px;
}
.btnmodal:hover,
.btnmodal:focus {
background: #2ecc71;
}
.btnmodal:active {
background: #27ae60;
box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}
.btnmodal--blue {
background: #2980b9;
}
.btnmodal--blue:hover,
.btnmodal--blue:focus {
background: #3498db;
}
.btnmodal--blue:active {
background: #2980b9;
}
.btnmodal--red {
background: #d9534f;
}
.btnmodal--red:hover,
.btnmodal--red:focus {
background: #d43f3a;
}
.btnmodal--red:active {
background: #d9534f;
}
p img {
max-width: 200px;
height: auto;
float: left;
margin: 0 1em 1em 0;
}
| 0.574037 | 0.066327 |
html, body{margin:0;padding:0;height:100%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none;
-ms-user-select: none;
user-select: none;
}
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#settings{
border:0px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
img a, img a:link, img a:active, img a:visited, img a:hover{
border:0px;
}
#entry{
display:none;
width:100%;
height:100%;
background-color:#80e1cc;
}
#entry_ust{width:100%; height:50%;background-color: #ecf0f1;background-image:url(../img/mosque.jpg);background-size:80% 80%;background-repeat:no-repeat;background-position:center;}
#entry_alt{width:100%; height:50%; background-color: #ecf0f1;text-align:center;}
#entry_kontrol{width:70%; height:80%;margin:auto;background-color: #ecf0f1;text-align:center;}
#select_city{text-align:center;}
ul, li{margin:0;padding:0;list-style:none;display:inline;}
#board{width:100%;height:100%;overflow:hidden;display:none;}
#case{width:100%;height:7%;font-family: "Trebuchet MS", Helvetica, sans-serif;background-color: #ecf0f1;line-height:50px;text-align:center;z-index:2;}
#case img{position:absolute;right:5%;margin-top:5px;}
span.city{font-size:25px;color:#666666;margin-left:20px;line-height:100%;font-weight:bold;}
#scene{position:relative;left:0;width:2400px;height:83%;}
#page_one{float:left;width:800px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:800px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:800px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
.bar_one{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/hadis.png);background-repeat:no-repeat;background-position:center;}
.bar_two{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/sayac.png);background-repeat:no-repeat;background-position:center;}
.bar_three{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/vakit.png);background-repeat:no-repeat;background-position:center;}
.active{border-top:3px solid #cccccc;}
/* Ic sayfalar */
#kalan_sure_yazi{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size: 20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#kalan_gun{text-align:center;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:5%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:0.5em;margin-top:3%;}
#vakit_yazi{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:15%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size: 2.0em;color:#666666;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;margin-top:10%;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
#imsak{width:100%;height:19%;color:#dd90fd;}
#ogle{width:100%;height:19%;color:#cb64f6;}
#ikindi{width:100%;height:19%;color:#b558dc;}
#aksam{width:100%;height:19%;color:#a45dc2;}
#yatsi{width:100%;height:20%;color:#8e44ad;}
.title_vakit{float:left;width:49%;height:100%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size: 1.3em;text-align:right;line-height:100px;}
.title_sayac{float:left;width:46%;height:100%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:2.2em;color:#666666;text-align:left;margin-left:5%;line-height:100px;}
#saat{
font-size:3.0em;
color:#666666;
}
#dakika{
font-size:3.0em;
color:#666666;
}
#saniye{
font-size:3.0em;
color:#666666;
}
/* Media sorgulari */
@media (min-width: 980px) {
#scene{left:0;width:2940px;height:83%;}
#page_one{float:left;width:980px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:980px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:980px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.5em;margin-top:11%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (min-width: 768px) and (max-width: 979px) {
#scene{left:0;width:2937px;height:83%;}
#page_one{float:left;width:979px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:979px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:979px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.5em;margin-top:10%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 767px) {
#scene{left:0;width:2301px;height:83%;}
#page_one{float:left;width:767px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:767px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:767px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.1em;margin-top:9%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 480px) {
#scene{left:0;width:1440px;height:83%;}
#page_one{float:left;width:480px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:480px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:480px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:7%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (min-width: 320px) and (max-width: 360px) {
#scene{left:0;width:1440px;height:83%;}
#page_one{float:left;width:360px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:360px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:360px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:7%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 320px) {
#scene{left:0;width:960px;height:83%;}
#page_one{float:left;width:320px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:320px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:320px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:0.9em;margin-top:3%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:7%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:1.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;padding-bottom:5%;text-decoration:justify;margin-top:10%;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;margin-top:5%;padding-left:5%;line-height: 1.2;}
}
|
www/css/style.css
|
html, body{margin:0;padding:0;height:100%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none;
-ms-user-select: none;
user-select: none;
}
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#settings{
border:0px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
img a, img a:link, img a:active, img a:visited, img a:hover{
border:0px;
}
#entry{
display:none;
width:100%;
height:100%;
background-color:#80e1cc;
}
#entry_ust{width:100%; height:50%;background-color: #ecf0f1;background-image:url(../img/mosque.jpg);background-size:80% 80%;background-repeat:no-repeat;background-position:center;}
#entry_alt{width:100%; height:50%; background-color: #ecf0f1;text-align:center;}
#entry_kontrol{width:70%; height:80%;margin:auto;background-color: #ecf0f1;text-align:center;}
#select_city{text-align:center;}
ul, li{margin:0;padding:0;list-style:none;display:inline;}
#board{width:100%;height:100%;overflow:hidden;display:none;}
#case{width:100%;height:7%;font-family: "Trebuchet MS", Helvetica, sans-serif;background-color: #ecf0f1;line-height:50px;text-align:center;z-index:2;}
#case img{position:absolute;right:5%;margin-top:5px;}
span.city{font-size:25px;color:#666666;margin-left:20px;line-height:100%;font-weight:bold;}
#scene{position:relative;left:0;width:2400px;height:83%;}
#page_one{float:left;width:800px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:800px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:800px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
.bar_one{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/hadis.png);background-repeat:no-repeat;background-position:center;}
.bar_two{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/sayac.png);background-repeat:no-repeat;background-position:center;}
.bar_three{float:left;width:33.3333333%;height:100%;background-color:#ecf0f1;background-image:url(../img/vakit.png);background-repeat:no-repeat;background-position:center;}
.active{border-top:3px solid #cccccc;}
/* Ic sayfalar */
#kalan_sure_yazi{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size: 20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#kalan_gun{text-align:center;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:5%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:0.5em;margin-top:3%;}
#vakit_yazi{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:15%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size: 2.0em;color:#666666;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;margin-top:10%;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
#imsak{width:100%;height:19%;color:#dd90fd;}
#ogle{width:100%;height:19%;color:#cb64f6;}
#ikindi{width:100%;height:19%;color:#b558dc;}
#aksam{width:100%;height:19%;color:#a45dc2;}
#yatsi{width:100%;height:20%;color:#8e44ad;}
.title_vakit{float:left;width:49%;height:100%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size: 1.3em;text-align:right;line-height:100px;}
.title_sayac{float:left;width:46%;height:100%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:2.2em;color:#666666;text-align:left;margin-left:5%;line-height:100px;}
#saat{
font-size:3.0em;
color:#666666;
}
#dakika{
font-size:3.0em;
color:#666666;
}
#saniye{
font-size:3.0em;
color:#666666;
}
/* Media sorgulari */
@media (min-width: 980px) {
#scene{left:0;width:2940px;height:83%;}
#page_one{float:left;width:980px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:980px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:980px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.5em;margin-top:11%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (min-width: 768px) and (max-width: 979px) {
#scene{left:0;width:2937px;height:83%;}
#page_one{float:left;width:979px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:979px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:979px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.5em;margin-top:10%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 767px) {
#scene{left:0;width:2301px;height:83%;}
#page_one{float:left;width:767px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:767px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:767px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.1em;margin-top:9%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 480px) {
#scene{left:0;width:1440px;height:83%;}
#page_one{float:left;width:480px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:480px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:480px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:7%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (min-width: 320px) and (max-width: 360px) {
#scene{left:0;width:1440px;height:83%;}
#page_one{float:left;width:360px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:360px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:360px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:1.0em;margin-top:7%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:5%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:5.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;text-decoration:justify;padding-bottom:5px;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;padding-left:5%;margin-top:5px;line-height: 1.2;}
}
@media (max-width: 320px) {
#scene{left:0;width:960px;height:83%;}
#page_one{float:left;width:320px;height:100%;background-color:#ecf0f1;}
#page_two{text-align:center;float:left;width:320px;height:100%;background-color:#ecf0f1;}
#page_three{float:left;width:320px;height:100%;background-color:#ecf0f1;}
#bar{width:100%;height:10%;}
#kalan_sure_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:10%;}
#kalan_sure{text-align:center;margin:auto;font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:20px;margin-top:10%;}
#saat_kucuk{font-family:"Trebuchet MS", Helvetica, sans-serif;color:#666666;font-size:0.9em;margin-top:3%;}
#vakit_yazi{font-family: Trebuchet MS;font-size:20px;color:#749c7a;font-weight:bold;text-align:center;margin-top:7%;}
#sayilan_vakit{font-family: "Trebuchet MS", Helvetica, sans-serif;font-size:2.0em;text-align:center;margin-top:1.2%;}
#hadis{width:90%;padding-left:5%;font-family:"Trebuchet MS", Helvetica, sans-serif;font-size:1.1em;color:#666666;padding-bottom:5%;text-decoration:justify;margin-top:10%;line-height: 1.4;}
#hadis_bar{width:100%;height:30%;font-family:"Times New Roman";color:#7781a1;font-style:italic;font-size:2.0em;margin-top:5%;padding-left:5%;line-height: 1.2;}
}
| 0.218753 | 0.038394 |
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{
height: 100%
}
body{
height: 100%;
margin: 0;
padding:0;
font-family: 'Open Sans', sans-serif;
}
#body.backdrop {
position: fixed;
width: 100%;
height: 100%;
top:0;
left:0;
background: rgba(0,0,0,0.3);
}
.toolbar {
top: 0;
left: 0;
width: 100%;
position: relative;
background: #FFFFFF;
height: 400px;
background-image: url('../images/Rectangle\ 2.png');
z-index: 500;
}
.toolbar_navigation{
display: flex;
padding: 0 1rem;
margin-right: 1rem;
width: 100%;
}
.toolbar_navigation-items{
display: flex;
padding-right: 20px;
padding-top: 10px;
}
.toolbar_logo{
display: flex;
width: 100%;
z-index: 1500;
}
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 36px;
line-height: 49px;
color: #FFFFFF;
margin-left: 50px;
padding-top: 10px;
}
@media screen and (max-width: 800px) {
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 28px;
line-height: 40px;
color: #FFFFFF;
margin-left: 50px;
padding-top: 10px;
}
.nav_header{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 20px;
font-size: 44px;
line-height: 87px;
color: #FFFFFF;
}
.nav_header h1{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 0px;
font-size: 40px;
line-height: 67px;
color: #FFFFFF;
}
}
.nav_header{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 100px;
font-size: 44px;
line-height: 87px;
color: #FFFFFF;
}
.spacer{
flex: 1;
}
.toolbar_navigation-items a {
text-decoration: none;
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
color: #FFFFFF;
padding-top: 10px;
}
.toolbar_navigation-items ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
padding-right: 10px;
padding-top: 10px;
}
.toolbar_navigation-items li {
padding: 0 2rem;
}
.toolbar_navigation-items li:hover{
color: white;
transform: scale(1.2);
transition: all 2s;
}
.signup_button{
background: #DEBC64;
border-radius: 8px;
padding: 15px 10px 0px 10px;
}
.signup_button a{
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
}
.signup_button a:hover{
color: white ;
}
.signup_button:hover {
transform: scale(1.1);
transition: all 2s;
}
/* MEDIA QUERIES */
@media screen and (min-width: 850px) {
#hidden {
display: none;
}
.hamburger{
display: none;
}
}
@media screen and (max-width: 850px) {
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 36px;
line-height: 49px;
color: #FFFFFF;
margin-left: 20px;
padding-top: 10px;
}
#side {
height: 100%;
background: #182b47;
box-shadow: 0px 4px 11px rgba(150, 150, 150, 0.25);
position: fixed;
top:0;
right:0;
width: 70%;
max-width: 300px;
z-index: 500;
transform: translateX(100%);
transition: transform 0.8s ease-out;
}
#side.sideactive {
transform: translateX(0)
}
#side ul {
list-style: none;
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.0rem;
font-weight: 400;
padding-top: 0px;
}
#side .hamburger{
padding-left: 230px;
}
#side li{
margin: 0.8rem 0;
}
#side a{
color: white;
text-decoration: none;
}
#side .signup_button{
background: #DEBC64;
border-radius: 8px;
padding: 15px 10px 15px 10px;
}
#side .signup_button a{
color: white;
text-decoration: none;
}
#side a:hover,
#side a:active {
color: #71CE47
}
#side .signup_button a:hover,
#side .signup_button a:active {
color: white
}
.toolbar_navigation-items {
display: none;
}
.hamburger{
display: flex;
flex-direction: column;
justify-content: space-around;
height: 20px;
right: 0;
top: 0;
width: 24px;
background: transparent;
border: none;
cursor: pointer;
padding:0;
box-sizing: border-box;
margin-top: 25px;
z-index:1500;
}
.hamburger{
outline: none;
}
.ham_line{
width: 24px;
height: 4px;
background: white;
}
}
/* HAMBURGER ANIMATION */
#hamturn div:nth-child(1) {
-webkit-animation: outT 0.8s backwards;
animation: outT 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn div:nth-child(2) {
margin: 5px 0;
-webkit-animation: outM 0.8s backwards;
animation: outM 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn div:nth-child(3) {
-webkit-animation: outBtm 0.8s backwards;
animation: outBtm 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn.hamactive div:nth-child(1) {
-webkit-animation: inT 0.8s forwards;
animation: inT 0.8s forwards;
}
#hamturn.hamactive div:nth-child(2) {
-webkit-animation: inM 0.8s forwards;
animation: inM 0.8s forwards;
}
#hamturn.hamactive div:nth-child(3) {
-webkit-animation: inBtm 0.8s forwards;
animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
50% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(45deg);
}
}
@keyframes inM {
50% {
transform: rotate(0deg);
}
100% {
transform: rotate(45deg);
}
}
@-webkit-keyframes outM {
50% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(45deg);
}
}
@keyframes outM {
50% {
transform: rotate(0deg);
}
100% {
transform: rotate(45deg);
}
}
@-webkit-keyframes inT {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(9px) rotate(135deg);
}
}
@keyframes inT {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(9px) rotate(0deg);
}
100% {
transform: translateY(9px) rotate(135deg);
}
}
@-webkit-keyframes outT {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(9px) rotate(135deg);
}
}
@keyframes outT {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(9px) rotate(0deg);
}
100% {
transform: translateY(9px) rotate(135deg);
}
}
@-webkit-keyframes inBtm {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(-9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-9px) rotate(135deg);
}
}
@keyframes inBtm {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-9px) rotate(0deg);
}
100% {
transform: translateY(-9px) rotate(135deg);
}
}
@-webkit-keyframes outBtm {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(-9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-9px) rotate(135deg);
}
}
@keyframes outBtm {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-9px) rotate(0deg);
}
100% {
transform: translateY(-9px) rotate(135deg);
}
}
/* FURY FOOTER */
footer{
color: #FFFFFF;
background: #182B47;
}
.logo_text{
font-size: 32px;
}
.footer_1{
padding: 100px 70px;
padding-bottom: 30px;
}
.footer_1 input{
background-color: #F5F5F5;
color: #828282;
}
.footer_company{
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
margin-top: 20px;
}
.footer_link{
margin: 2px auto;
}
.footer_link a{
text-decoration: none;
color: #FFFFFF;
font-size: 14px;
}
.footer_link:hover{
transform: scale(1.08);
transition: all 2s;
}
.footer_contact_spot ion-icon{
margin-right: 20px;
font-size: 24px;
}
.footer_2{
background: #0E1C32;
display: flex;
justify-content:center ;
}
.footer_2 p{
padding: 20px 0;
margin: 0;
}
.new_letter_btn{
background-color: #DEBC64;
color: #FFFFFF;
border: 1px solid #DEBC64;
padding: 7px 10px;
font-family: 'Open Sans';
margin-left: 20px;
}
.new_letter_btn:hover, .new_letter_btn:focus{
background-color: #FFFFFF;
color: #DEBC64;
}
.news_letter{
display: flex;
}
@media(min-width:800px){
.footer_company{
margin-top: auto;
}
}
/* BODY */
@media screen and (min-width:900px) {
.body{
min-height: 100%;
text-align: center;
width: 100%;
background: #E5E5E5;
}
.reserve_ico{
padding-top: 50px;
padding-bottom: 200px;
display: flex;
margin: auto;
width: 100%;
justify-content: space-evenly;
}
.reserve_ico img{
width:40px;
height: 40px;
}
.img_bg{
background: #E5E5E5;
border-radius: 50%;
padding-right: 20px;
padding-top: 20px;
}
.img_bg p{
padding-left: 20px;
}
.img_bg .vector{
padding-left: 22px;
}
/* .vector img{
width:10px;
height: 10px;
margin-left: 270px;
margin-top: 40px;
} */
.main_reserve{
display: flex;
}
.reserve_forms{
display: flex;
}
.form1{
display: flex;
flex-direction: column;
width: 300;
height: 600px;
background: #FFFFFF;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-left: 60px;
margin-bottom: 30px;
margin-top: 30px;
}
.form1 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
font-size: 24px;
line-height: 33px;
text-transform: uppercase;
color: #333333;
}
.form1 img{
width: 250px;
height:200px;
margin-left: 25px;
margin-right: 25px;
padding-bottom: 20px;
}
.form1 h2{
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 25px;
color: #333333;
}
.form1 p{
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
color: #333333;
}
.form2{
display: flex;
flex-direction: column;
width: 700;
text-align: center;
height: 600px;
background: #F9F9F9;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
}
.form2 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
font-size: 24px;
line-height: 33px;
color: #333333;
text-align: left;
padding-bottom: 100px;
}
.form_s1{
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
.form_s2{
padding-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
}
.form2 .form_s1 input{
width: 300px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
}
.form2 .form_s2 input{
width: 300px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
}
.form2_buts{
width: 100%;
display: flex;
justify-content: flex-end;
padding-right: 55px;
}
.button1{
margin-right: 40px;
}
.form2_buts button{
background: #DEBC64;
border: none;
padding: 10px 15px 10px 15px;
cursor: pointer;
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 25px;
}
}
/* BODY MEDIA QUERIES */
@media screen and (min-width: 100px) and (max-width: 800px) {
.body{
min-height: 100%;
text-align: center;
width: 100%;
background: #E5E5E5;
display: flex;
flex-direction: column;
}
.reserve_ico{
padding-top: 50px;
padding-bottom: 50px;
display: flex;
margin: auto;
width: 100%;
justify-content: space-evenly;
}
.reserve_ico .img1{
display: none;
}
.reserve_ico .img2{
display: none;
}
.reserve_ico .img3{
padding-right: 20px;
}
.reserve_ico .img4{
display: none;
}
.reserve_ico img{
width:25px;
height: 25px;
}
.img_bg p{
padding-left: 20px;
}
.img_bg .vector{
padding-left: 22px;
}
.main_reserve{
display: flex;
flex-direction: column;
margin: auto;
}
.reserve_forms{
display: flex;
flex-direction: column;
}
.form1{
display: flex;
flex-direction: column;
width: 300px;
height: 470px;
background: #FFFFFF;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-right: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
}
.form1 h1{
font-style: normal;
font-weight: 600;
padding-top: 10px;
padding-bottom: 10px;
font-size: 20px;
line-height: 33px;
text-transform: uppercase;
color: #333333;
}
.form1 img{
width: 150px;
height:100px;
margin: auto;
}
.form1 h2{
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 25px;
color: #333333;
}
.form1 p{
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #333333;
}
.form2{
display: flex;
flex-direction: column;
width: 300px;
height: 600px;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-right: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
background: #F9F9F9;
}
.form2 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
font-size: 20px;
line-height: 33px;
color: #333333;
text-align: left;
padding-bottom: 50px;
}
.form_s1{
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
.form_s2{
padding-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
}
.form2 .form_s1 input{
width: 200px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
margin-bottom: 10px;
}
.form2 .form_s2 input{
width: 200px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
margin-bottom: 10px;
}
.form2_buts{
width: 100%;
display: flex;
justify-content: space-evenly;
}
.button1{
margin-right: 40px;
}
.form2_buts button{
background: #DEBC64;
border: none;
padding: 10px 15px 10px 15px;
cursor: pointer;
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 25px;
}
}
|
assets/css/reservations.css
|
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{
height: 100%
}
body{
height: 100%;
margin: 0;
padding:0;
font-family: 'Open Sans', sans-serif;
}
#body.backdrop {
position: fixed;
width: 100%;
height: 100%;
top:0;
left:0;
background: rgba(0,0,0,0.3);
}
.toolbar {
top: 0;
left: 0;
width: 100%;
position: relative;
background: #FFFFFF;
height: 400px;
background-image: url('../images/Rectangle\ 2.png');
z-index: 500;
}
.toolbar_navigation{
display: flex;
padding: 0 1rem;
margin-right: 1rem;
width: 100%;
}
.toolbar_navigation-items{
display: flex;
padding-right: 20px;
padding-top: 10px;
}
.toolbar_logo{
display: flex;
width: 100%;
z-index: 1500;
}
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 36px;
line-height: 49px;
color: #FFFFFF;
margin-left: 50px;
padding-top: 10px;
}
@media screen and (max-width: 800px) {
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 28px;
line-height: 40px;
color: #FFFFFF;
margin-left: 50px;
padding-top: 10px;
}
.nav_header{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 20px;
font-size: 44px;
line-height: 87px;
color: #FFFFFF;
}
.nav_header h1{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 0px;
font-size: 40px;
line-height: 67px;
color: #FFFFFF;
}
}
.nav_header{
margin: auto;
text-align: center;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
padding-top: 100px;
font-size: 44px;
line-height: 87px;
color: #FFFFFF;
}
.spacer{
flex: 1;
}
.toolbar_navigation-items a {
text-decoration: none;
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
color: #FFFFFF;
padding-top: 10px;
}
.toolbar_navigation-items ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
padding-right: 10px;
padding-top: 10px;
}
.toolbar_navigation-items li {
padding: 0 2rem;
}
.toolbar_navigation-items li:hover{
color: white;
transform: scale(1.2);
transition: all 2s;
}
.signup_button{
background: #DEBC64;
border-radius: 8px;
padding: 15px 10px 0px 10px;
}
.signup_button a{
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
}
.signup_button a:hover{
color: white ;
}
.signup_button:hover {
transform: scale(1.1);
transition: all 2s;
}
/* MEDIA QUERIES */
@media screen and (min-width: 850px) {
#hidden {
display: none;
}
.hamburger{
display: none;
}
}
@media screen and (max-width: 850px) {
.toolbar_logo h1{
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 36px;
line-height: 49px;
color: #FFFFFF;
margin-left: 20px;
padding-top: 10px;
}
#side {
height: 100%;
background: #182b47;
box-shadow: 0px 4px 11px rgba(150, 150, 150, 0.25);
position: fixed;
top:0;
right:0;
width: 70%;
max-width: 300px;
z-index: 500;
transform: translateX(100%);
transition: transform 0.8s ease-out;
}
#side.sideactive {
transform: translateX(0)
}
#side ul {
list-style: none;
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.0rem;
font-weight: 400;
padding-top: 0px;
}
#side .hamburger{
padding-left: 230px;
}
#side li{
margin: 0.8rem 0;
}
#side a{
color: white;
text-decoration: none;
}
#side .signup_button{
background: #DEBC64;
border-radius: 8px;
padding: 15px 10px 15px 10px;
}
#side .signup_button a{
color: white;
text-decoration: none;
}
#side a:hover,
#side a:active {
color: #71CE47
}
#side .signup_button a:hover,
#side .signup_button a:active {
color: white
}
.toolbar_navigation-items {
display: none;
}
.hamburger{
display: flex;
flex-direction: column;
justify-content: space-around;
height: 20px;
right: 0;
top: 0;
width: 24px;
background: transparent;
border: none;
cursor: pointer;
padding:0;
box-sizing: border-box;
margin-top: 25px;
z-index:1500;
}
.hamburger{
outline: none;
}
.ham_line{
width: 24px;
height: 4px;
background: white;
}
}
/* HAMBURGER ANIMATION */
#hamturn div:nth-child(1) {
-webkit-animation: outT 0.8s backwards;
animation: outT 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn div:nth-child(2) {
margin: 5px 0;
-webkit-animation: outM 0.8s backwards;
animation: outM 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn div:nth-child(3) {
-webkit-animation: outBtm 0.8s backwards;
animation: outBtm 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
#hamturn.hamactive div:nth-child(1) {
-webkit-animation: inT 0.8s forwards;
animation: inT 0.8s forwards;
}
#hamturn.hamactive div:nth-child(2) {
-webkit-animation: inM 0.8s forwards;
animation: inM 0.8s forwards;
}
#hamturn.hamactive div:nth-child(3) {
-webkit-animation: inBtm 0.8s forwards;
animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
50% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(45deg);
}
}
@keyframes inM {
50% {
transform: rotate(0deg);
}
100% {
transform: rotate(45deg);
}
}
@-webkit-keyframes outM {
50% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(45deg);
}
}
@keyframes outM {
50% {
transform: rotate(0deg);
}
100% {
transform: rotate(45deg);
}
}
@-webkit-keyframes inT {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(9px) rotate(135deg);
}
}
@keyframes inT {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(9px) rotate(0deg);
}
100% {
transform: translateY(9px) rotate(135deg);
}
}
@-webkit-keyframes outT {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(9px) rotate(135deg);
}
}
@keyframes outT {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(9px) rotate(0deg);
}
100% {
transform: translateY(9px) rotate(135deg);
}
}
@-webkit-keyframes inBtm {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(-9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-9px) rotate(135deg);
}
}
@keyframes inBtm {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-9px) rotate(0deg);
}
100% {
transform: translateY(-9px) rotate(135deg);
}
}
@-webkit-keyframes outBtm {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
}
50% {
-webkit-transform: translateY(-9px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-9px) rotate(135deg);
}
}
@keyframes outBtm {
0% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-9px) rotate(0deg);
}
100% {
transform: translateY(-9px) rotate(135deg);
}
}
/* FURY FOOTER */
footer{
color: #FFFFFF;
background: #182B47;
}
.logo_text{
font-size: 32px;
}
.footer_1{
padding: 100px 70px;
padding-bottom: 30px;
}
.footer_1 input{
background-color: #F5F5F5;
color: #828282;
}
.footer_company{
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
margin-top: 20px;
}
.footer_link{
margin: 2px auto;
}
.footer_link a{
text-decoration: none;
color: #FFFFFF;
font-size: 14px;
}
.footer_link:hover{
transform: scale(1.08);
transition: all 2s;
}
.footer_contact_spot ion-icon{
margin-right: 20px;
font-size: 24px;
}
.footer_2{
background: #0E1C32;
display: flex;
justify-content:center ;
}
.footer_2 p{
padding: 20px 0;
margin: 0;
}
.new_letter_btn{
background-color: #DEBC64;
color: #FFFFFF;
border: 1px solid #DEBC64;
padding: 7px 10px;
font-family: 'Open Sans';
margin-left: 20px;
}
.new_letter_btn:hover, .new_letter_btn:focus{
background-color: #FFFFFF;
color: #DEBC64;
}
.news_letter{
display: flex;
}
@media(min-width:800px){
.footer_company{
margin-top: auto;
}
}
/* BODY */
@media screen and (min-width:900px) {
.body{
min-height: 100%;
text-align: center;
width: 100%;
background: #E5E5E5;
}
.reserve_ico{
padding-top: 50px;
padding-bottom: 200px;
display: flex;
margin: auto;
width: 100%;
justify-content: space-evenly;
}
.reserve_ico img{
width:40px;
height: 40px;
}
.img_bg{
background: #E5E5E5;
border-radius: 50%;
padding-right: 20px;
padding-top: 20px;
}
.img_bg p{
padding-left: 20px;
}
.img_bg .vector{
padding-left: 22px;
}
/* .vector img{
width:10px;
height: 10px;
margin-left: 270px;
margin-top: 40px;
} */
.main_reserve{
display: flex;
}
.reserve_forms{
display: flex;
}
.form1{
display: flex;
flex-direction: column;
width: 300;
height: 600px;
background: #FFFFFF;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-left: 60px;
margin-bottom: 30px;
margin-top: 30px;
}
.form1 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
font-size: 24px;
line-height: 33px;
text-transform: uppercase;
color: #333333;
}
.form1 img{
width: 250px;
height:200px;
margin-left: 25px;
margin-right: 25px;
padding-bottom: 20px;
}
.form1 h2{
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 25px;
color: #333333;
}
.form1 p{
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
color: #333333;
}
.form2{
display: flex;
flex-direction: column;
width: 700;
text-align: center;
height: 600px;
background: #F9F9F9;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
}
.form2 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
font-size: 24px;
line-height: 33px;
color: #333333;
text-align: left;
padding-bottom: 100px;
}
.form_s1{
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
.form_s2{
padding-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
}
.form2 .form_s1 input{
width: 300px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
}
.form2 .form_s2 input{
width: 300px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
}
.form2_buts{
width: 100%;
display: flex;
justify-content: flex-end;
padding-right: 55px;
}
.button1{
margin-right: 40px;
}
.form2_buts button{
background: #DEBC64;
border: none;
padding: 10px 15px 10px 15px;
cursor: pointer;
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 25px;
}
}
/* BODY MEDIA QUERIES */
@media screen and (min-width: 100px) and (max-width: 800px) {
.body{
min-height: 100%;
text-align: center;
width: 100%;
background: #E5E5E5;
display: flex;
flex-direction: column;
}
.reserve_ico{
padding-top: 50px;
padding-bottom: 50px;
display: flex;
margin: auto;
width: 100%;
justify-content: space-evenly;
}
.reserve_ico .img1{
display: none;
}
.reserve_ico .img2{
display: none;
}
.reserve_ico .img3{
padding-right: 20px;
}
.reserve_ico .img4{
display: none;
}
.reserve_ico img{
width:25px;
height: 25px;
}
.img_bg p{
padding-left: 20px;
}
.img_bg .vector{
padding-left: 22px;
}
.main_reserve{
display: flex;
flex-direction: column;
margin: auto;
}
.reserve_forms{
display: flex;
flex-direction: column;
}
.form1{
display: flex;
flex-direction: column;
width: 300px;
height: 470px;
background: #FFFFFF;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-right: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
}
.form1 h1{
font-style: normal;
font-weight: 600;
padding-top: 10px;
padding-bottom: 10px;
font-size: 20px;
line-height: 33px;
text-transform: uppercase;
color: #333333;
}
.form1 img{
width: 150px;
height:100px;
margin: auto;
}
.form1 h2{
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 25px;
color: #333333;
}
.form1 p{
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #333333;
}
.form2{
display: flex;
flex-direction: column;
width: 300px;
height: 600px;
box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.1);
margin-right: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 30px;
background: #F9F9F9;
}
.form2 h1{
font-style: normal;
font-weight: 600;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
font-size: 20px;
line-height: 33px;
color: #333333;
text-align: left;
padding-bottom: 50px;
}
.form_s1{
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
.form_s2{
padding-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
}
.form2 .form_s1 input{
width: 200px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
margin-bottom: 10px;
}
.form2 .form_s2 input{
width: 200px;
height: 40px;
background: #FFFFFF;
border: 0.75px solid #505050;
box-sizing: border-box;
padding-left: 20px;
margin-bottom: 10px;
}
.form2_buts{
width: 100%;
display: flex;
justify-content: space-evenly;
}
.button1{
margin-right: 40px;
}
.form2_buts button{
background: #DEBC64;
border: none;
padding: 10px 15px 10px 15px;
cursor: pointer;
color: #0A1320;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 25px;
}
}
| 0.474631 | 0.093554 |
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
*,*::after,*::before{
box-sizing:border-box;
}
:root{
--cell-size:10em;
--mark-size:calc(var(--cell-size)*.9);
}
body{
margin:0;
}
.welcome-board{
font-family: 'Monoton', cursive;
font-size:120%;
text-align: center;
color: yellow;
}
.board{
display: grid;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
grid-template-columns: repeat(3,auto);
margin: 0 auto;
}
.cell{
width:var(--cell-size);
height:var(--cell-size);
border:1px solid white;
display: flex;
justify-content: center;
align-items: center;
position: relative;
cursor: pointer;
background-color:lightskyblue;
}
.cell:first-child,
.cell:nth-child(2),
.cell:nth-child(3){
border-top: none;
}
.cell:nth-child(3n+1){
border-left: none;
}
.cell:nth-child(3n){
border-right: none;
}
.cell:last-child,
.cell:nth-child(8),
.cell:nth-child(7){
border-bottom: none;
}
.cell.x,
.cell.circle{
cursor: not-allowed;
}
.board.x .cell:not(.x):not(.circle):hover::before,
.board.x .cell:not(.x):not(.circle):hover::after,
.board.circle .cell:not(.x):not(.circle):hover::before{
background-color:#f8f8ff;
}
.cell.x::before,
.cell.x::after,
.cell.circle::before{
background-color: white;
}
.cell.x::before,
.cell.x::after,
.board.x .cell:not(.x):not(.circle):hover::before,
.board.x .cell:not(.x):not(.circle):hover::after{
content:'';
width:calc(var(--mark-size)* .15);
height:var(--mark-size);
position: absolute;
}
.cell.x::before,
.board.x .cell:not(.x):not(.circle):hover::before{
transform:rotate(45deg);
}
.cell.x::after,
.board.x .cell:not(.x):not(.circle):hover::after{
transform: rotate(-45deg);
}
.cell.circle::before,
.cell.circle::after,
.board.circle .cell:not(.x):not(.circle):hover::before,
.board.circle .cell:not(.x):not(.circle):hover::after{
content:'';
border-radius: 50%;
position: absolute;
}
.cell.circle::before,
.board.circle .cell:not(.x):not(.circle):hover::before{
width:var(--mark-size);
height:var(--mark-size);
}
.cell.circle::after,
.board.circle .cell:not(.x):not(.circle):hover::after{
width:calc(var(--mark-size)*.7);
height:calc(var(--mark-size)*.7);
background-color: lightskyblue;
}
.winning-message{
display: none;
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color: rgba(0,0,0,.9);
flex-direction: column;
justify-content: center;
align-items: center;
color:white;
font-size:5rem
}
.winning-message button{
font-size: 3rem;
background-color: white;
border:1px solid black;
cursor: pointer;
padding: .25em .5em;
}
.winning-message button:hover{
background-color:black;
border-color:white;
color:white;
}
.winning-message.show{
display: flex;
}
|
styles.css
|
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
*,*::after,*::before{
box-sizing:border-box;
}
:root{
--cell-size:10em;
--mark-size:calc(var(--cell-size)*.9);
}
body{
margin:0;
}
.welcome-board{
font-family: 'Monoton', cursive;
font-size:120%;
text-align: center;
color: yellow;
}
.board{
display: grid;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
grid-template-columns: repeat(3,auto);
margin: 0 auto;
}
.cell{
width:var(--cell-size);
height:var(--cell-size);
border:1px solid white;
display: flex;
justify-content: center;
align-items: center;
position: relative;
cursor: pointer;
background-color:lightskyblue;
}
.cell:first-child,
.cell:nth-child(2),
.cell:nth-child(3){
border-top: none;
}
.cell:nth-child(3n+1){
border-left: none;
}
.cell:nth-child(3n){
border-right: none;
}
.cell:last-child,
.cell:nth-child(8),
.cell:nth-child(7){
border-bottom: none;
}
.cell.x,
.cell.circle{
cursor: not-allowed;
}
.board.x .cell:not(.x):not(.circle):hover::before,
.board.x .cell:not(.x):not(.circle):hover::after,
.board.circle .cell:not(.x):not(.circle):hover::before{
background-color:#f8f8ff;
}
.cell.x::before,
.cell.x::after,
.cell.circle::before{
background-color: white;
}
.cell.x::before,
.cell.x::after,
.board.x .cell:not(.x):not(.circle):hover::before,
.board.x .cell:not(.x):not(.circle):hover::after{
content:'';
width:calc(var(--mark-size)* .15);
height:var(--mark-size);
position: absolute;
}
.cell.x::before,
.board.x .cell:not(.x):not(.circle):hover::before{
transform:rotate(45deg);
}
.cell.x::after,
.board.x .cell:not(.x):not(.circle):hover::after{
transform: rotate(-45deg);
}
.cell.circle::before,
.cell.circle::after,
.board.circle .cell:not(.x):not(.circle):hover::before,
.board.circle .cell:not(.x):not(.circle):hover::after{
content:'';
border-radius: 50%;
position: absolute;
}
.cell.circle::before,
.board.circle .cell:not(.x):not(.circle):hover::before{
width:var(--mark-size);
height:var(--mark-size);
}
.cell.circle::after,
.board.circle .cell:not(.x):not(.circle):hover::after{
width:calc(var(--mark-size)*.7);
height:calc(var(--mark-size)*.7);
background-color: lightskyblue;
}
.winning-message{
display: none;
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color: rgba(0,0,0,.9);
flex-direction: column;
justify-content: center;
align-items: center;
color:white;
font-size:5rem
}
.winning-message button{
font-size: 3rem;
background-color: white;
border:1px solid black;
cursor: pointer;
padding: .25em .5em;
}
.winning-message button:hover{
background-color:black;
border-color:white;
color:white;
}
.winning-message.show{
display: flex;
}
| 0.472197 | 0.110184 |
@font-face {
font-family: "Flaticon";
src: url("../fonts/Flaticon.eot");
src: url("../fonts/Flaticond41d.eot?#iefix") format("embedded-opentype"),
url("../fonts/Flaticon.woff") format("woff"),
url("../fonts/Flaticon.ttf") format("truetype"),
url("../fonts/Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: "Flaticon";
src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
font-family: Flaticon;
font-style: normal;
}
.flaticon-mail:before {
content: "\f100";
}
.flaticon-man:before {
content: "\f101";
}
.flaticon-house:before {
content: "\f102";
}
.flaticon-package:before {
content: "\f103";
}
.flaticon-donation:before {
content: "\f104";
}
.flaticon-donation-1:before {
content: "\f105";
}
.flaticon-money-bag:before {
content: "\f106";
}
.flaticon-smartphone:before {
content: "\f107";
}
.flaticon-charity:before {
content: "\f108";
}
.flaticon-donation-2:before {
content: "\f109";
}
.flaticon-woman:before {
content: "\f10a";
}
.flaticon-gift:before {
content: "\f10b";
}
.flaticon-ribbon:before {
content: "\f10c";
}
.flaticon-donate:before {
content: "\f10d";
}
.flaticon-loudspeaker:before {
content: "\f10e";
}
.flaticon-donation-3:before {
content: "\f10f";
}
.flaticon-ribbon-1:before {
content: "\f110";
}
.flaticon-donate-1:before {
content: "\f111";
}
.flaticon-bread:before {
content: "\f112";
}
.flaticon-donation-4:before {
content: "\f113";
}
.flaticon-house-1:before {
content: "\f114";
}
.flaticon-solidarity:before {
content: "\f115";
}
.flaticon-donation-5:before {
content: "\f116";
}
.flaticon-balloon:before {
content: "\f117";
}
.flaticon-shirt:before {
content: "\f118";
}
.flaticon-wheelchair:before {
content: "\f119";
}
.flaticon-donation-6:before {
content: "\f11a";
}
.flaticon-church:before {
content: "\f11b";
}
.flaticon-ribbon-2:before {
content: "\f11c";
}
.flaticon-donate-2:before {
content: "\f11d";
}
.flaticon-blood:before {
content: "\f11e";
}
.flaticon-charity-1:before {
content: "\f11f";
}
.flaticon-first-aid-kit:before {
content: "\f120";
}
.flaticon-solidarity-1:before {
content: "\f121";
}
.flaticon-donation-7:before {
content: "\f122";
}
.flaticon-transfusion:before {
content: "\f123";
}
.flaticon-money:before {
content: "\f124";
}
.flaticon-balance:before {
content: "\f125";
}
.flaticon-world-grid:before {
content: "\f126";
}
.flaticon-bible:before {
content: "\f127";
}
.flaticon-location:before {
content: "\f128";
}
.flaticon-heart:before {
content: "\f129";
}
.flaticon-charity-2:before {
content: "\f12a";
}
.flaticon-phone-call:before {
content: "\f12b";
}
.flaticon-call:before {
content: "\f12c";
}
.flaticon-pin:before {
content: "\f12d";
}
.flaticon-cursor:before {
content: "\f12e";
}
.flaticon-pin-1:before {
content: "\f12f";
}
.flaticon-send:before {
content: "\f130";
}
.flaticon-envelope:before {
content: "\f131";
}
.flaticon-email:before {
content: "\f132";
}
.flaticon-paper-plane:before {
content: "\f133";
}
.flaticon-open:before {
content: "\f134";
}
.flaticon-clock:before {
content: "\f135";
}
.flaticon-clock-circular-outline:before {
content: "\f136";
}
.flaticon-loupe:before {
content: "\f137";
}
.flaticon-search:before {
content: "\f138";
}
.flaticon-magnifying-glass:before {
content: "\f139";
}
|
public/frontend/assets/css/flaticon.css
|
@font-face {
font-family: "Flaticon";
src: url("../fonts/Flaticon.eot");
src: url("../fonts/Flaticond41d.eot?#iefix") format("embedded-opentype"),
url("../fonts/Flaticon.woff") format("woff"),
url("../fonts/Flaticon.ttf") format("truetype"),
url("../fonts/Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: "Flaticon";
src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
font-family: Flaticon;
font-style: normal;
}
.flaticon-mail:before {
content: "\f100";
}
.flaticon-man:before {
content: "\f101";
}
.flaticon-house:before {
content: "\f102";
}
.flaticon-package:before {
content: "\f103";
}
.flaticon-donation:before {
content: "\f104";
}
.flaticon-donation-1:before {
content: "\f105";
}
.flaticon-money-bag:before {
content: "\f106";
}
.flaticon-smartphone:before {
content: "\f107";
}
.flaticon-charity:before {
content: "\f108";
}
.flaticon-donation-2:before {
content: "\f109";
}
.flaticon-woman:before {
content: "\f10a";
}
.flaticon-gift:before {
content: "\f10b";
}
.flaticon-ribbon:before {
content: "\f10c";
}
.flaticon-donate:before {
content: "\f10d";
}
.flaticon-loudspeaker:before {
content: "\f10e";
}
.flaticon-donation-3:before {
content: "\f10f";
}
.flaticon-ribbon-1:before {
content: "\f110";
}
.flaticon-donate-1:before {
content: "\f111";
}
.flaticon-bread:before {
content: "\f112";
}
.flaticon-donation-4:before {
content: "\f113";
}
.flaticon-house-1:before {
content: "\f114";
}
.flaticon-solidarity:before {
content: "\f115";
}
.flaticon-donation-5:before {
content: "\f116";
}
.flaticon-balloon:before {
content: "\f117";
}
.flaticon-shirt:before {
content: "\f118";
}
.flaticon-wheelchair:before {
content: "\f119";
}
.flaticon-donation-6:before {
content: "\f11a";
}
.flaticon-church:before {
content: "\f11b";
}
.flaticon-ribbon-2:before {
content: "\f11c";
}
.flaticon-donate-2:before {
content: "\f11d";
}
.flaticon-blood:before {
content: "\f11e";
}
.flaticon-charity-1:before {
content: "\f11f";
}
.flaticon-first-aid-kit:before {
content: "\f120";
}
.flaticon-solidarity-1:before {
content: "\f121";
}
.flaticon-donation-7:before {
content: "\f122";
}
.flaticon-transfusion:before {
content: "\f123";
}
.flaticon-money:before {
content: "\f124";
}
.flaticon-balance:before {
content: "\f125";
}
.flaticon-world-grid:before {
content: "\f126";
}
.flaticon-bible:before {
content: "\f127";
}
.flaticon-location:before {
content: "\f128";
}
.flaticon-heart:before {
content: "\f129";
}
.flaticon-charity-2:before {
content: "\f12a";
}
.flaticon-phone-call:before {
content: "\f12b";
}
.flaticon-call:before {
content: "\f12c";
}
.flaticon-pin:before {
content: "\f12d";
}
.flaticon-cursor:before {
content: "\f12e";
}
.flaticon-pin-1:before {
content: "\f12f";
}
.flaticon-send:before {
content: "\f130";
}
.flaticon-envelope:before {
content: "\f131";
}
.flaticon-email:before {
content: "\f132";
}
.flaticon-paper-plane:before {
content: "\f133";
}
.flaticon-open:before {
content: "\f134";
}
.flaticon-clock:before {
content: "\f135";
}
.flaticon-clock-circular-outline:before {
content: "\f136";
}
.flaticon-loupe:before {
content: "\f137";
}
.flaticon-search:before {
content: "\f138";
}
.flaticon-magnifying-glass:before {
content: "\f139";
}
| 0.380989 | 0.217109 |
html, body {
margin: 0;
padding: 0;
color: #333;
font-size: 25px;
font-family: 'EB Garamond', serif;
}
a {
color: inherit;
}
/* PAGE CONTAINER */
#page {
padding: 2em 4em;
max-width: 2000px;
}
/* HEADER */
#header {
padding: 2em 1em;
}
#heading {
font-size: 3.5em;
margin-bottom: 1rem;
}
#subheading {
color: #777;
font-size: 0.8em;
}
/* GALLERY */
/* Gallery container */
#gallery {
display: grid;
padding: 1.5em;
border-radius: 0.9em;
grid-auto-rows: 10px;
grid-auto-flow: dense;
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 12px inset;
grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
}
/* Image cards */
#gallery .image-container {
margin: 0.5em;
padding: 0.5em;
overflow: hidden;
visibility: hidden;
border-radius: 0.3em;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}
#gallery .image-container .photograph {
max-width: 100%;
border-radius: 0.2em;
background-color: #eee;
}
#gallery .image-container .image-caption {
color: #555;
margin: 1.3em 0;
font-size: 0.5em;
text-align: center;
word-spacing: 0.5em;
font-family: 'Homemade Apple', cursive;
}
/* FOCUS OVERLAY */
#focus_container {
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
padding: 3em;
display: flex;
row-gap: 0.5em;
position: fixed;
align-items: center;
pointer-events: none;
flex-direction: column;
justify-content: center;
backdrop-filter: blur(3px);
background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 100%);
transition: 0.3s ease opacity;
}
#focus_container.active {
opacity: 1;
pointer-events: all;
}
#focus_image {
max-width: 100%;
max-height: 100%;
border-radius: 0.2em;
box-sizing: border-box;
background-color: #eee;
border: 0.5em solid white;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
#focus_caption {
color: white;
font-size: 1.3em;
margin-top: 0.25em;
text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
/* FOOTER */
#footer {
padding: 2em 0.7em;
text-align: center;
}
#footer p {
color: #777;
font-size: 0.7em;
}
/* BREAKPOINTS */
@media only screen and (max-width: 1000px) {
#page {
padding: 1em 2.5em;
}
#gallery {
padding: 1em;
}
}
@media only screen and (max-width: 700px) {
#page {
padding: 0.5em 1.5em;
}
#heading {
font-size: 11vw;
}
#gallery {
padding: 0.5em;
}
#focus_container {
padding: 2.5em 1.5em;
}
#focus_caption {
font-size: 1.1em;
}
}
@media only screen and (max-width: 450px) {
#page {
font-size: 5.5vw;
}
}
|
CSS/styles.css
|
html, body {
margin: 0;
padding: 0;
color: #333;
font-size: 25px;
font-family: 'EB Garamond', serif;
}
a {
color: inherit;
}
/* PAGE CONTAINER */
#page {
padding: 2em 4em;
max-width: 2000px;
}
/* HEADER */
#header {
padding: 2em 1em;
}
#heading {
font-size: 3.5em;
margin-bottom: 1rem;
}
#subheading {
color: #777;
font-size: 0.8em;
}
/* GALLERY */
/* Gallery container */
#gallery {
display: grid;
padding: 1.5em;
border-radius: 0.9em;
grid-auto-rows: 10px;
grid-auto-flow: dense;
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 12px inset;
grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
}
/* Image cards */
#gallery .image-container {
margin: 0.5em;
padding: 0.5em;
overflow: hidden;
visibility: hidden;
border-radius: 0.3em;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}
#gallery .image-container .photograph {
max-width: 100%;
border-radius: 0.2em;
background-color: #eee;
}
#gallery .image-container .image-caption {
color: #555;
margin: 1.3em 0;
font-size: 0.5em;
text-align: center;
word-spacing: 0.5em;
font-family: 'Homemade Apple', cursive;
}
/* FOCUS OVERLAY */
#focus_container {
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
padding: 3em;
display: flex;
row-gap: 0.5em;
position: fixed;
align-items: center;
pointer-events: none;
flex-direction: column;
justify-content: center;
backdrop-filter: blur(3px);
background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 100%);
transition: 0.3s ease opacity;
}
#focus_container.active {
opacity: 1;
pointer-events: all;
}
#focus_image {
max-width: 100%;
max-height: 100%;
border-radius: 0.2em;
box-sizing: border-box;
background-color: #eee;
border: 0.5em solid white;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
#focus_caption {
color: white;
font-size: 1.3em;
margin-top: 0.25em;
text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
/* FOOTER */
#footer {
padding: 2em 0.7em;
text-align: center;
}
#footer p {
color: #777;
font-size: 0.7em;
}
/* BREAKPOINTS */
@media only screen and (max-width: 1000px) {
#page {
padding: 1em 2.5em;
}
#gallery {
padding: 1em;
}
}
@media only screen and (max-width: 700px) {
#page {
padding: 0.5em 1.5em;
}
#heading {
font-size: 11vw;
}
#gallery {
padding: 0.5em;
}
#focus_container {
padding: 2.5em 1.5em;
}
#focus_caption {
font-size: 1.1em;
}
}
@media only screen and (max-width: 450px) {
#page {
font-size: 5.5vw;
}
}
| 0.371593 | 0.101278 |
body{
background-color: rgb(114, 125, 167);
overflow-x: hidden;
height: 100%;
}
div#add_user{
width: 20%;
height: 200px;
padding: 0px;
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#change_pass{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#remove_user{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#list_user{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
.iconusers{
display: block;
margin: 2px auto 2px auto;
}
div#add{
margin: 0px auto 2px auto;
border:solid;
padding: 22px;
display: block;
}
div#conteudo_total{
width: 90%;
margin: 10px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
height: 68vh;
border-radius: 25px;
padding: 1px;
background-color: darkgrey ;
}
div#conteudo_total_list{
width: 90%;
margin: 10px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
min-height: 68vh;
border-radius: 25px;
padding: 1px;
background-color: darkgrey ;
overflow:hidden;
}
div#conteudo{
margin:15px 15px 15px 15px;
}
div#rodape2{
margin: 0px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
width: 190vh;
height: 35px;
border-radius: 25px;
padding: 55px 5px 0px auto;
background-color: darkgrey;
text-align: center;
font-weight: bold;
vertical-align: middle;
}
h3#copy2{
margin:40px auto 5px auto;
}
div#ropade{
margin-bottom: 0px;
position:absolute;
bottom:0px;
width:90%;
}
div#header{
margin: 2px auto 2px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
width: 90%;
height: 20vh;
border-radius: 25px;
background-color: darkgrey ;
}
h1#titulo{
font-size: 25pt;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-shadow: 2px 2px 2px rgb(58, 57, 57);
}
div#logout{
margin: 55px 0px 5px 65px;
float: left;
}
div#cp{
margin: 8px 0px 5px 0px;
width: 10%;
float: right;
right: 0;
}
img#cp{
height: 100%;
margin: 0;
padding: 0px;
}
div#logo{
margin: 0px 0px 5px auto;
height: 20vh;
width: 20%;
float: left;
}
div#titulo{
align-items: center;
vertical-align: middle;
text-align: center;
margin:5px 0px 0px 0px;
width: 60%;
float:left;
}
img#logo{
height: 100%;
margin: auto;
padding: 0px;
}
/*h1.titulo_usuarios{
/*text-align: left;
}*/
p.labels_cadastro{
font-weight:bold;
text-align: left;
}
p.escrito_cadastrado{
font-weight:bold;
text-align: center;
height: 22px;
background-color: white;
box-shadow: 2px 2px 5px 1px #1a1919;
border-radius: 15px;
}
h1#titulo_cadastrar{
text-align: center;
}
h2#titulo_cadastrar{
text-align: center;
margin:0px;
}
div#campos{
/* border:solid;*/
width: 40%;
height:80%;
padding: 0px;
vertical-align: middle;
align-content: center ;
/* float: left;*/
text-align: center;
margin: auto;
}
div#campos_tabela{
/*border:solid;*/
width: 100%;
height:100%;
padding: 5px auto 5px auto;
vertical-align: middle;
align-content: center ;
box-sizing: content-box;
text-align: center;
margin: 15px auto 5px auto;
}
div.cadastrado{
display: none;
box-shadow: 2px 2px 5px 1px #00027e93;
border-radius: 15px;
background-color: rgb(216, 214, 214);
width: 40%;
height:80%;
padding: 5px 10px 5px 10px;
vertical-align: middle;
align-content: center ;
float: right;
text-align: center;
margin: 07px 70px auto 25px;
}
input.formulario_cadastro{
border-radius: 15px;
height: 22px;
width: 75%;
font-weight: bold;
border:none;
float: right;
box-shadow: 2px 2px 5px 1px #1a1919;
padding-left: 10px;
}
select.lista_banco{
border-radius: 15px;
height: 22px;
width: 78%;
font-weight: bold;
border:none;
box-shadow: 2px 2px 5px 1px #1a1919;
float:right;
padding-left: 10px;
}
input#enviar_remove{
background: url(images/pesquisa.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
input#enviar{
background: url(images/adduser.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
tr:nth-child(even) {background: #d9e1f2}
tr:nth-child(odd) {background:#f8f7f7}
input#limpar{
background: url(images/limpar.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
#tabela{
border-collapse: collapse;
text-align: center;
padding: 5px;
font-weight: bold;
border: 1px solid black;
box-shadow: 2px 2px 5px 1px #00027e93;
width: 100%;
margin: 15px auto 15px auto;
}
th.head{
background: #4472c4;
border-left: 1px solid black;
font-size: 15pt;
color:white;
}
td.corpo {
border-left: 1px solid black;
padding: 3px 25px 3px 25px;
}
#tabela tr{
border: 1px dashed rgb(26, 26, 26);
padding: 3px 5px 3px 5px;
}
|
estilo2.css
|
body{
background-color: rgb(114, 125, 167);
overflow-x: hidden;
height: 100%;
}
div#add_user{
width: 20%;
height: 200px;
padding: 0px;
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#change_pass{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#remove_user{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
div#list_user{
/*border-color:rgb(214, 214, 214);
border:groove;*/
width: 20%;
height: 200px;
padding: 0px;
/*box-shadow: 2px 2px 2px #50515393;
border-radius: 25px;
background-color: rgb(207, 206, 206) ;*/
vertical-align: middle;
align-content: center ;
float: left;
text-align: center;
margin: 85px 25px 35px 25px;
}
.iconusers{
display: block;
margin: 2px auto 2px auto;
}
div#add{
margin: 0px auto 2px auto;
border:solid;
padding: 22px;
display: block;
}
div#conteudo_total{
width: 90%;
margin: 10px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
height: 68vh;
border-radius: 25px;
padding: 1px;
background-color: darkgrey ;
}
div#conteudo_total_list{
width: 90%;
margin: 10px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
min-height: 68vh;
border-radius: 25px;
padding: 1px;
background-color: darkgrey ;
overflow:hidden;
}
div#conteudo{
margin:15px 15px 15px 15px;
}
div#rodape2{
margin: 0px auto 0px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
width: 190vh;
height: 35px;
border-radius: 25px;
padding: 55px 5px 0px auto;
background-color: darkgrey;
text-align: center;
font-weight: bold;
vertical-align: middle;
}
h3#copy2{
margin:40px auto 5px auto;
}
div#ropade{
margin-bottom: 0px;
position:absolute;
bottom:0px;
width:90%;
}
div#header{
margin: 2px auto 2px auto;
border: 3px;
border-color: rgb(1, 1, 77);
box-shadow: 2px 2px 5px 1px #00027e93;
width: 90%;
height: 20vh;
border-radius: 25px;
background-color: darkgrey ;
}
h1#titulo{
font-size: 25pt;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-shadow: 2px 2px 2px rgb(58, 57, 57);
}
div#logout{
margin: 55px 0px 5px 65px;
float: left;
}
div#cp{
margin: 8px 0px 5px 0px;
width: 10%;
float: right;
right: 0;
}
img#cp{
height: 100%;
margin: 0;
padding: 0px;
}
div#logo{
margin: 0px 0px 5px auto;
height: 20vh;
width: 20%;
float: left;
}
div#titulo{
align-items: center;
vertical-align: middle;
text-align: center;
margin:5px 0px 0px 0px;
width: 60%;
float:left;
}
img#logo{
height: 100%;
margin: auto;
padding: 0px;
}
/*h1.titulo_usuarios{
/*text-align: left;
}*/
p.labels_cadastro{
font-weight:bold;
text-align: left;
}
p.escrito_cadastrado{
font-weight:bold;
text-align: center;
height: 22px;
background-color: white;
box-shadow: 2px 2px 5px 1px #1a1919;
border-radius: 15px;
}
h1#titulo_cadastrar{
text-align: center;
}
h2#titulo_cadastrar{
text-align: center;
margin:0px;
}
div#campos{
/* border:solid;*/
width: 40%;
height:80%;
padding: 0px;
vertical-align: middle;
align-content: center ;
/* float: left;*/
text-align: center;
margin: auto;
}
div#campos_tabela{
/*border:solid;*/
width: 100%;
height:100%;
padding: 5px auto 5px auto;
vertical-align: middle;
align-content: center ;
box-sizing: content-box;
text-align: center;
margin: 15px auto 5px auto;
}
div.cadastrado{
display: none;
box-shadow: 2px 2px 5px 1px #00027e93;
border-radius: 15px;
background-color: rgb(216, 214, 214);
width: 40%;
height:80%;
padding: 5px 10px 5px 10px;
vertical-align: middle;
align-content: center ;
float: right;
text-align: center;
margin: 07px 70px auto 25px;
}
input.formulario_cadastro{
border-radius: 15px;
height: 22px;
width: 75%;
font-weight: bold;
border:none;
float: right;
box-shadow: 2px 2px 5px 1px #1a1919;
padding-left: 10px;
}
select.lista_banco{
border-radius: 15px;
height: 22px;
width: 78%;
font-weight: bold;
border:none;
box-shadow: 2px 2px 5px 1px #1a1919;
float:right;
padding-left: 10px;
}
input#enviar_remove{
background: url(images/pesquisa.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
input#enviar{
background: url(images/adduser.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
tr:nth-child(even) {background: #d9e1f2}
tr:nth-child(odd) {background:#f8f7f7}
input#limpar{
background: url(images/limpar.png) no-repeat;
width: 100px;
height: 100px;
border:none;
overflow: hidden;
cursor: pointer; /* vai por o cursor como forma de mão ao passar por cima do botão */
cursor: hand; /* para o IE 5.x */
}
#tabela{
border-collapse: collapse;
text-align: center;
padding: 5px;
font-weight: bold;
border: 1px solid black;
box-shadow: 2px 2px 5px 1px #00027e93;
width: 100%;
margin: 15px auto 15px auto;
}
th.head{
background: #4472c4;
border-left: 1px solid black;
font-size: 15pt;
color:white;
}
td.corpo {
border-left: 1px solid black;
padding: 3px 25px 3px 25px;
}
#tabela tr{
border: 1px dashed rgb(26, 26, 26);
padding: 3px 5px 3px 5px;
}
| 0.339718 | 0.089296 |
* {
/*box-sizing: border-box;*/
font-weight: bold;
font-family: 'Jua', sans-serif;
}
body {
background-color: #edeff2;
}
.chat_window {
position: absolute;
width: calc(100% - 20px);
max-width: 800px;
height: 600px;
border-radius: 10px;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
background-color: #f8f8f8;
overflow: hidden;
}
.top_menu {
background-color: #fff;
width: 100%;
height:80px;
padding: 20px 0 15px;
box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}
.top_menu .buttons {
margin: 13px 0 0 20px;
position: absolute;
}
.top_menu .buttons .button {
width: 16px;
height: 16px;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
position: relative;
}
.top_menu .topimg{
display: inline-block;
margin-left: 120px;
position: relative;
}
.top_menu .buttons .button.close_button {
background-color: #f5886e;
}
.top_menu .buttons .button.minimize {
background-color: #fdbf68;
}
.top_menu .buttons .button.maximize {
background-color: #a3d063;
}
.top_menu .title {
display:inline-block;
margin:7px 0 0 150px;
text-align: center;
color: #bcbdc0;
font-size: 20px;
position:relative
}
.messages {
position: relative;
list-style: none;
padding: 20px 10px 0 10px;
margin: 0;
height: 430px;
overflow: scroll;
}
.messages .message {
clear: both;
overflow: hidden;
margin-bottom: 20px;
transition: all 0.5s linear;
opacity: 0;
}
.messages .message.left .avatar{
float: left;
}
.messages .message.right .avatar{
float: right;
display:none;
}
.messages .message.left .text_wrapper {
background-color: #e6eaf3;
border-radius: 0px 40px 40px 40px;
margin-left: 18px;
}
.messages .message.left .text {
color: #050c05;
font-weight: bold;
}
.messages .message.right .text_wrapper {
background-color: #ffef39;
margin-right: 20px;
border-radius: 40px 0px 40px 40px;
float: right;
text-align:center;
}
.messages .message.right .text {
color: #050c05;
}
.messages .message .text_wrapper .text {
font-size: 18px;
font-weight: 300;
font-family: 'Jua', sans-serif;
font-weight: bold;
}
.messages .message .text_wrapper {
display: inline-block;
padding: 10px;
max-width: 800px;
min-width: 60px;
position: relative;
}
.messages .message.left .name{
margin-left:10px
font-size: 13px;
margin-left: 83px;
}
.messages .message.right .name{
display:none;
}
.messages .message.appeared {
opacity: 1;
}
.messages .message .avatar {
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
}
.bottom_wrapper {
position: relative;
width: 100%;
background-color: #fff;
padding: 20px 20px;
bottom: 0;
}
.bottom_wrapper .message_input_wrapper {
display: inline-block;
height: 50px;
border-radius: 25px;
border: 2px solid #e0e0e2;
width: calc(100% - 220px);
position: relative;
padding: 0 20px;
float:left;
margin-left:30px
}
.bottom_wrapper .message_input_wrapper .message_input {
border: none;
height: 100%;
box-sizing: border-box;
width: calc(100% - 40px);
position: absolute;
outline-width: 0;
color: gray;
}
.bottom_wrapper .send_message {
width: 50px;
height: 50px;
display: inline-block;
border-radius: 50px;
background-color:#ffffff;
margin-left:25px;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
}
.messages .message .text_wrapper .button1 {
width: 100px;
height: 30px;
display: inline-block;
margin-right:10px;
border-radius: 50px;
background-color: #ffffff;
border: 2px solid #404040;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
text-align: center;
float: right;
}
.messages .message .text_wrapper .button2 {
width: 100px;
height: 30px;
display: inline-block;
margin-right:10px;
border-radius: 50px;
background-color: #ffffff;
border: 2px solid #404040;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
text-align: center;
float: right;
}
.bottom_wrapper .mike_button {
width: 50px;
height: 50px;
display: inline-block;
border-radius: 50px;
background-color:#ffffff;
margin-right:30px;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
float: right;
}
.bottom_wrapper .send_message:hover { /*버튼 올렸을때 이미지 바꾸는 거 만들기 */
color: #ffcc00;
background-color: #fff;
}
.message_template {
display: none;
}
|
demo/static/css/main.css
|
* {
/*box-sizing: border-box;*/
font-weight: bold;
font-family: 'Jua', sans-serif;
}
body {
background-color: #edeff2;
}
.chat_window {
position: absolute;
width: calc(100% - 20px);
max-width: 800px;
height: 600px;
border-radius: 10px;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
background-color: #f8f8f8;
overflow: hidden;
}
.top_menu {
background-color: #fff;
width: 100%;
height:80px;
padding: 20px 0 15px;
box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}
.top_menu .buttons {
margin: 13px 0 0 20px;
position: absolute;
}
.top_menu .buttons .button {
width: 16px;
height: 16px;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
position: relative;
}
.top_menu .topimg{
display: inline-block;
margin-left: 120px;
position: relative;
}
.top_menu .buttons .button.close_button {
background-color: #f5886e;
}
.top_menu .buttons .button.minimize {
background-color: #fdbf68;
}
.top_menu .buttons .button.maximize {
background-color: #a3d063;
}
.top_menu .title {
display:inline-block;
margin:7px 0 0 150px;
text-align: center;
color: #bcbdc0;
font-size: 20px;
position:relative
}
.messages {
position: relative;
list-style: none;
padding: 20px 10px 0 10px;
margin: 0;
height: 430px;
overflow: scroll;
}
.messages .message {
clear: both;
overflow: hidden;
margin-bottom: 20px;
transition: all 0.5s linear;
opacity: 0;
}
.messages .message.left .avatar{
float: left;
}
.messages .message.right .avatar{
float: right;
display:none;
}
.messages .message.left .text_wrapper {
background-color: #e6eaf3;
border-radius: 0px 40px 40px 40px;
margin-left: 18px;
}
.messages .message.left .text {
color: #050c05;
font-weight: bold;
}
.messages .message.right .text_wrapper {
background-color: #ffef39;
margin-right: 20px;
border-radius: 40px 0px 40px 40px;
float: right;
text-align:center;
}
.messages .message.right .text {
color: #050c05;
}
.messages .message .text_wrapper .text {
font-size: 18px;
font-weight: 300;
font-family: 'Jua', sans-serif;
font-weight: bold;
}
.messages .message .text_wrapper {
display: inline-block;
padding: 10px;
max-width: 800px;
min-width: 60px;
position: relative;
}
.messages .message.left .name{
margin-left:10px
font-size: 13px;
margin-left: 83px;
}
.messages .message.right .name{
display:none;
}
.messages .message.appeared {
opacity: 1;
}
.messages .message .avatar {
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
}
.bottom_wrapper {
position: relative;
width: 100%;
background-color: #fff;
padding: 20px 20px;
bottom: 0;
}
.bottom_wrapper .message_input_wrapper {
display: inline-block;
height: 50px;
border-radius: 25px;
border: 2px solid #e0e0e2;
width: calc(100% - 220px);
position: relative;
padding: 0 20px;
float:left;
margin-left:30px
}
.bottom_wrapper .message_input_wrapper .message_input {
border: none;
height: 100%;
box-sizing: border-box;
width: calc(100% - 40px);
position: absolute;
outline-width: 0;
color: gray;
}
.bottom_wrapper .send_message {
width: 50px;
height: 50px;
display: inline-block;
border-radius: 50px;
background-color:#ffffff;
margin-left:25px;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
}
.messages .message .text_wrapper .button1 {
width: 100px;
height: 30px;
display: inline-block;
margin-right:10px;
border-radius: 50px;
background-color: #ffffff;
border: 2px solid #404040;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
text-align: center;
float: right;
}
.messages .message .text_wrapper .button2 {
width: 100px;
height: 30px;
display: inline-block;
margin-right:10px;
border-radius: 50px;
background-color: #ffffff;
border: 2px solid #404040;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
text-align: center;
float: right;
}
.bottom_wrapper .mike_button {
width: 50px;
height: 50px;
display: inline-block;
border-radius: 50px;
background-color:#ffffff;
margin-right:30px;
color: #404040;
cursor: pointer;
transition: all 0.2s linear;
float: right;
}
.bottom_wrapper .send_message:hover { /*버튼 올렸을때 이미지 바꾸는 거 만들기 */
color: #ffcc00;
background-color: #fff;
}
.message_template {
display: none;
}
| 0.424889 | 0.086439 |
@charset "UTF-8";
body,html{height:100%}
.readonly,.readonly * {color: #bbb!important;}
.loading{width: 25px; height:25px; background: #fff url(../img/loading.gif) no-repeat center;}
.form-control.is-invalid, .was-validated .form-control:invalid,.form-control.is-valid, .was-validated .form-control:valid{padding-right:6px!important;background-image: none!important;}
.flex{display: flex;align-items: center;line-height: 17px;}
.flex>label,.form-group>.col-form-label{text-align: right;color:#555;padding: 0 8px 0 0;margin:0;width: 100px;}
.form-group.has-success label,.form-group.has-error label{color:#555;}
.form-group.required>label{color: #dc3545!important;}
.flex>input,.flex>select,.flex>div{flex:1}
.flex>div>input,.flex>div>select{width:100%}
.btns-line{margin: 8px;}
.btns-line .btn{padding: 5px 18px; margin:0 4px;}
.linegroup{display: inline-block;}
.lineinput{width: 120px; height: 26px; margin: 5px 4px; display: inline-block; border: none; outline:none; border-bottom: 1px solid #ccc; border-radius: 0; background: none; padding: 0.375rem 0.5rem; font-size: 1rem;
font-weight: 400; line-height: 1.5; color: #495057; text-align: center; box-shadow: inset 0 0 0 rgba(0, 0, 0, 0); transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.tab-content{padding: 8px;}
.fixed-form-btns{bottom: 48px; position: sticky; width: 100%; margin-left: -20px; padding-left: 10px;}
.form-btns{position: fixed;bottom:0;background: #f5f5f5;width: 100%;padding: 7px;border:1px solid #ddd;z-index: 99;font-size: 0;}
.form-btns .btn{display: inline-block;margin:0 2px;}
.upload-gallery{position: relative;}
.upload-btn{position: relative;display: inline-block;overflow: hidden;text-align: center;vertical-align: center;}
.upload-btn input{position: absolute;top:0;left: 0;opacity: 0;}
.upload-show,.gallery-show{cursor: pointer; margin-right: 10px;display: inline-block;}
.upload-show .media,.gallery-show .media{height: 100px; max-width: 200px; object-fit:cover; border: 1px solid #ccc;background: url(../img/msk.png);}
.upload-tools {display: flex; text-align: center; border: 1px solid #ccc; border-top: none; background: #f2f2f2;}
.upload-tools a{flex:1;padding:6px}
.upload-show .audio{background:url(/images/file_audio.png) no-repeat center;}
.upload-show .other{background:url(/images/file.png) no-repeat center 44%;}
.form-search .form-group .flex{max-width:370px;}
.grid-view .img-thumbnail{max-height: 120px; max-width:200px;}
ol.dynamiclist{margin-top: 8px; border-top: solid 1px #ddd; padding-left: 0px; margin-left: 40px;}
ol.dynamiclist>li{border-left: solid 1px #ddd; border-right: solid 1px #ddd; border-bottom: solid 1px #ddd; padding: 8px 16px;}
.empty-state{border: solid 1px #ddd; border-top: none; line-height: 30px; padding: 8px;}
.dynamiclist p{padding-top: 8px; line-height: 28px;}
.cursor-item{cursor:pointer;}
.products-list>.item{padding-left: .5rem; padding-right: .5rem;}
.products-list li.active {background: #eeeeee;}
.examineing label{color: #ff851b!important;}
.accordion-toggle{cursor:pointer;}
.collapsed .toggle-icon{transform: rotate(-90deg);}
.form-caption{color: #595959; background-color: #D8D8D8; text-align: center; padding: 15px; margin: 8px 0px; border-left: solid 5px #3388FE; font-size: 26px;}
.form-caption img{width: 26px; height: 26px;}
.form-title{color:#4c90ff;font-size: 16px;font-weight: normal; line-height: 20px;position: relative;padding-left: 15px;margin:15px 0;width: 100%;}
.form-title:before{content: '';width:4px;height:20px;position: absolute;top: 0;left: 0;background: #4c90ff;}
.ffold{width: 200px; white-space: normal;}
@media (min-width: 1200px) and (max-width: 1400px) {
.form-search .col-lg-3{flex: 0 0 33.333333%;max-width: 33.333333%;}
}
@media (min-width: 992px) and (max-width: 1140px) {
.form-search .col-md-4{flex: 0 0 50%;max-width: 50%;}
}
@media print{
.print{display:block;}
.noprint{display:none;}
}
.lemon-collapse{
width: 100%;
position: absolute;
top: 0px;
right: 0px;
}
.lemon-collapse>label{
width: 99%;
height: 20px;
margin: 0 10px;
line-height: 20px;
cursor: pointer;
text-align: right;
}
.lemon-collapse>label>i{
margin-right: 8px;
animation: collapseclose .5s infinite linear;
-webkit-animation: collapseclose .5s infinite linear;
animation-iteration-count:1;
-webkit-animation-iteration-count:1;
transform: rotate(0deg);
}
.lemon-collapse>input{
display: none;
}
.lemon-collapse>input:checked~label:first-of-type>i{
animation: collapseopen .5s infinite linear;
-webkit-animation: collapseopen .5s infinite linear;
animation-iteration-count:1;
-webkit-animation-iteration-count:1;
transform: rotate(90deg);
}
@keyframes collapseopen {
from {
transform: rotate(0deg);
}
to {
transform: rotate(90deg);
}
}
@keyframes collapseclose {
from {
transform: rotate(90deg);
}
to {
transform: rotate(0deg);
}
}
|
dist/css/adminv.css
|
@charset "UTF-8";
body,html{height:100%}
.readonly,.readonly * {color: #bbb!important;}
.loading{width: 25px; height:25px; background: #fff url(../img/loading.gif) no-repeat center;}
.form-control.is-invalid, .was-validated .form-control:invalid,.form-control.is-valid, .was-validated .form-control:valid{padding-right:6px!important;background-image: none!important;}
.flex{display: flex;align-items: center;line-height: 17px;}
.flex>label,.form-group>.col-form-label{text-align: right;color:#555;padding: 0 8px 0 0;margin:0;width: 100px;}
.form-group.has-success label,.form-group.has-error label{color:#555;}
.form-group.required>label{color: #dc3545!important;}
.flex>input,.flex>select,.flex>div{flex:1}
.flex>div>input,.flex>div>select{width:100%}
.btns-line{margin: 8px;}
.btns-line .btn{padding: 5px 18px; margin:0 4px;}
.linegroup{display: inline-block;}
.lineinput{width: 120px; height: 26px; margin: 5px 4px; display: inline-block; border: none; outline:none; border-bottom: 1px solid #ccc; border-radius: 0; background: none; padding: 0.375rem 0.5rem; font-size: 1rem;
font-weight: 400; line-height: 1.5; color: #495057; text-align: center; box-shadow: inset 0 0 0 rgba(0, 0, 0, 0); transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.tab-content{padding: 8px;}
.fixed-form-btns{bottom: 48px; position: sticky; width: 100%; margin-left: -20px; padding-left: 10px;}
.form-btns{position: fixed;bottom:0;background: #f5f5f5;width: 100%;padding: 7px;border:1px solid #ddd;z-index: 99;font-size: 0;}
.form-btns .btn{display: inline-block;margin:0 2px;}
.upload-gallery{position: relative;}
.upload-btn{position: relative;display: inline-block;overflow: hidden;text-align: center;vertical-align: center;}
.upload-btn input{position: absolute;top:0;left: 0;opacity: 0;}
.upload-show,.gallery-show{cursor: pointer; margin-right: 10px;display: inline-block;}
.upload-show .media,.gallery-show .media{height: 100px; max-width: 200px; object-fit:cover; border: 1px solid #ccc;background: url(../img/msk.png);}
.upload-tools {display: flex; text-align: center; border: 1px solid #ccc; border-top: none; background: #f2f2f2;}
.upload-tools a{flex:1;padding:6px}
.upload-show .audio{background:url(/images/file_audio.png) no-repeat center;}
.upload-show .other{background:url(/images/file.png) no-repeat center 44%;}
.form-search .form-group .flex{max-width:370px;}
.grid-view .img-thumbnail{max-height: 120px; max-width:200px;}
ol.dynamiclist{margin-top: 8px; border-top: solid 1px #ddd; padding-left: 0px; margin-left: 40px;}
ol.dynamiclist>li{border-left: solid 1px #ddd; border-right: solid 1px #ddd; border-bottom: solid 1px #ddd; padding: 8px 16px;}
.empty-state{border: solid 1px #ddd; border-top: none; line-height: 30px; padding: 8px;}
.dynamiclist p{padding-top: 8px; line-height: 28px;}
.cursor-item{cursor:pointer;}
.products-list>.item{padding-left: .5rem; padding-right: .5rem;}
.products-list li.active {background: #eeeeee;}
.examineing label{color: #ff851b!important;}
.accordion-toggle{cursor:pointer;}
.collapsed .toggle-icon{transform: rotate(-90deg);}
.form-caption{color: #595959; background-color: #D8D8D8; text-align: center; padding: 15px; margin: 8px 0px; border-left: solid 5px #3388FE; font-size: 26px;}
.form-caption img{width: 26px; height: 26px;}
.form-title{color:#4c90ff;font-size: 16px;font-weight: normal; line-height: 20px;position: relative;padding-left: 15px;margin:15px 0;width: 100%;}
.form-title:before{content: '';width:4px;height:20px;position: absolute;top: 0;left: 0;background: #4c90ff;}
.ffold{width: 200px; white-space: normal;}
@media (min-width: 1200px) and (max-width: 1400px) {
.form-search .col-lg-3{flex: 0 0 33.333333%;max-width: 33.333333%;}
}
@media (min-width: 992px) and (max-width: 1140px) {
.form-search .col-md-4{flex: 0 0 50%;max-width: 50%;}
}
@media print{
.print{display:block;}
.noprint{display:none;}
}
.lemon-collapse{
width: 100%;
position: absolute;
top: 0px;
right: 0px;
}
.lemon-collapse>label{
width: 99%;
height: 20px;
margin: 0 10px;
line-height: 20px;
cursor: pointer;
text-align: right;
}
.lemon-collapse>label>i{
margin-right: 8px;
animation: collapseclose .5s infinite linear;
-webkit-animation: collapseclose .5s infinite linear;
animation-iteration-count:1;
-webkit-animation-iteration-count:1;
transform: rotate(0deg);
}
.lemon-collapse>input{
display: none;
}
.lemon-collapse>input:checked~label:first-of-type>i{
animation: collapseopen .5s infinite linear;
-webkit-animation: collapseopen .5s infinite linear;
animation-iteration-count:1;
-webkit-animation-iteration-count:1;
transform: rotate(90deg);
}
@keyframes collapseopen {
from {
transform: rotate(0deg);
}
to {
transform: rotate(90deg);
}
}
@keyframes collapseclose {
from {
transform: rotate(90deg);
}
to {
transform: rotate(0deg);
}
}
| 0.378919 | 0.068569 |
form {
width: 390px;
padding: 2px;
}
form .FormLine {
float: left;
width: 100%;
margin-bottom: 5px;
}
label {
float: left;
margin-left: 10px;
text-align: left;
position: relative;
}
form input[type=text]
{
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top;
}
form input[type=password]
{
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left: 20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top ;
}
form input[type=checkbox]
{
margin-left: 15px;
margin-bottom: 10px;
background: #eff;
border: 1px solid #7f9db9;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top ;
}
form input[type=number] {
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top
}
form textarea {
margin-left: 15px;
margin-bottom: 10px;
background: #eff;
border: 1px solid #7f9db9;
left:20px;
margin-top: 5px;
border-width: 2px;
}
form input[type=date] {
margin-left: 15px;
margin-bottom: 10px;
margin-top: 5px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
}
button[type=submit] {
margin-left: 15px;
margin-bottom: 10px;
background: #5b83a4;
color: white;
width: 200px;
margin-top: 5px;
background: blue;
border-width: 2px;
}
form select {
margin-left: 15px;
margin-bottom: 10px;
margin-top: 5px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
}
*{
margin: 0;
padding: 0;
}
.header {
float:left;
width: 100%;
margin: 0px auto;
height: auto;
background: #1E1813;
color:white;
border-width: 2px;
}
.content {
float:left;
width: 100%;
height:100%;
margin-top: 5px;
background: #9dc8e4;
border-width: 2px;
}
.footer {
float:left;
color: white;
width: 100%;
background: #1E1813;
border-width: 2px;
}
.btn {
color: black;
width: 300px;
height: 20px;
margin-top: 5px;
margin-left:20px;
margin-bottom: 5px;
background: #caf8fd;
border-width: 2px;
}
.image{
width:80px;
border:none;
height:80px;
margin-left:5px;
margin-top:5px;
color: white;
/*background-image: url(../img/emb.jpg);*/
}
.sel
{
width:320px;
}
form a
{
margin-left: 15px;
padding-bottom: 2px;
padding-top: 2px;
width: 200px;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top;
}
|
Crystal_old/public/css/style.css
|
form {
width: 390px;
padding: 2px;
}
form .FormLine {
float: left;
width: 100%;
margin-bottom: 5px;
}
label {
float: left;
margin-left: 10px;
text-align: left;
position: relative;
}
form input[type=text]
{
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top;
}
form input[type=password]
{
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left: 20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top ;
}
form input[type=checkbox]
{
margin-left: 15px;
margin-bottom: 10px;
background: #eff;
border: 1px solid #7f9db9;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top ;
}
form input[type=number] {
margin-left: 15px;
margin-bottom: 10px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top
}
form textarea {
margin-left: 15px;
margin-bottom: 10px;
background: #eff;
border: 1px solid #7f9db9;
left:20px;
margin-top: 5px;
border-width: 2px;
}
form input[type=date] {
margin-left: 15px;
margin-bottom: 10px;
margin-top: 5px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
}
button[type=submit] {
margin-left: 15px;
margin-bottom: 10px;
background: #5b83a4;
color: white;
width: 200px;
margin-top: 5px;
background: blue;
border-width: 2px;
}
form select {
margin-left: 15px;
margin-bottom: 10px;
margin-top: 5px;
width: 200px;
background: #eff;
border: 1px solid #7f9db9;
height: 30px;
left:20px;
}
*{
margin: 0;
padding: 0;
}
.header {
float:left;
width: 100%;
margin: 0px auto;
height: auto;
background: #1E1813;
color:white;
border-width: 2px;
}
.content {
float:left;
width: 100%;
height:100%;
margin-top: 5px;
background: #9dc8e4;
border-width: 2px;
}
.footer {
float:left;
color: white;
width: 100%;
background: #1E1813;
border-width: 2px;
}
.btn {
color: black;
width: 300px;
height: 20px;
margin-top: 5px;
margin-left:20px;
margin-bottom: 5px;
background: #caf8fd;
border-width: 2px;
}
.image{
width:80px;
border:none;
height:80px;
margin-left:5px;
margin-top:5px;
color: white;
/*background-image: url(../img/emb.jpg);*/
}
.sel
{
width:320px;
}
form a
{
margin-left: 15px;
padding-bottom: 2px;
padding-top: 2px;
width: 200px;
height: 30px;
left:20px;
margin-top: 5px;
border-width: 2px;
vertical-align: top;
}
| 0.298901 | 0.077483 |
========================================================================== *//**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/html {
line-height: 1.15;
/* 1 */
-webkit-text-size-adjust: 100%;
/* 2 */;
}/* Sections
========================================================================== *//**
* Remove the margin in all browsers.
*/body {
margin: 0;
}/**
* Render the `main` element consistently in IE.
*/main {
display: block;
}/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/h1 {
font-size: 2em;
margin: 0.67em 0;
}/* Grouping content
========================================================================== *//**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */;
}/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */;
}/* Text-level semantics
========================================================================== *//**
* Remove the gray background on active links in IE 10.
*/a {
background-color: transparent;
}/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
/* 2 */;
}/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/b,strong {
font-weight: bolder;
}/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/code,kbd,samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */;
}/**
* Add the correct font size in all browsers.
*/small {
font-size: 80%;
}/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}/* Embedded content
========================================================================== *//**
* Remove the border on images inside links in IE 10.
*/img {
border-style: none;
}/* Forms
========================================================================== *//**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/button,input,optgroup,select,textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */;
}/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/button,input {
/* 1 */
overflow: visible;
}/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/button,select {
/* 1 */
text-transform: none;
}/**
* Correct the inability to style clickable types in iOS and Safari.
*/button,[type="button"],[type="reset"],[type="submit"] {
-webkit-appearance: button;
}/**
* Remove the inner border and padding in Firefox.
*/button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}/**
* Restore the focus styles unset by the previous rule.
*/button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}/**
* Correct the padding in Firefox.
*/fieldset {
padding: 0.35em 0.75em 0.625em;
}/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/legend {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */;
}/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/progress {
vertical-align: baseline;
}/**
* Remove the default vertical scrollbar in IE 10+.
*/textarea {
overflow: auto;
}/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/[type="checkbox"],[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */;
}/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
height: auto;
}/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */;
}/**
* Remove the inner padding in Chrome and Safari on macOS.
*/[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */;
}/* Interactive
========================================================================== *//*
* Add the correct display in Edge, IE 10+, and Firefox.
*/details {
display: block;
}/*
* Add the correct display in all browsers.
*/summary {
display: list-item;
}/* Misc
========================================================================== *//**
* Add the correct display in IE 10+.
*/template {
display: none;
}/**
* Add the correct display in IE 10.
*/[hidden] {
display: none;
}
p {
font-size: 1.125rem;
margin: 0 0.625rem;
}
body * {
margin: 0px;
padding: 0px;
}
html {
cursor: url(../images/cursor.png), auto;
font-size: 16px;
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
.buttontop {
display: none;
}
.container {
text-align: center;
margin: auto;
padding: 15px;
max-width: 300px;
width: 100%;
/*changes*/ /*changes*/;
}
.container-footer {
border-top: solid grey 1px;
border-width: 100%;
padding: 0;
}
.container-header {
font-family: "Rubik", sans-serif;
font-weight: 500;
font-style: normal;
letter-spacing: normal;
}
.container-header .h1header {
font-size: 1rem;
padding: 1.25rem;
color: #fff;
margin-top: 0;
font-weight: 500;
}
.container-header .h1header a {
color: white;
padding: 0.5rem;
}
.container-header .h1header a:hover,.container-header .h1header a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.header {
position: fixed;
padding: 0px;
width: 100vw;
margin: auto;
text-transform: uppercase;
}
.header .group {
opacity: 0.95;
background-color: #099d8d;
text-align: center;
}
.main-menu {
padding: 0.9375rem;
opacity: 0.9;
background-color: #14d9c4;
text-align: center;
}
.main-menu ul li {
display: inline;
}
.main-menu ul li a {
font-size: 0.9375rem;
font-family: "Rubik", sans-serif;
font-weight: 500;
font-style: normal;
color: #fff;
padding: 0.5rem;
}
.main-menu a:hover,.main-menu a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.main-menu a:hover::before {
content: " [ ";
font-weight: bold;
color: #fff;
}
.main-menu a:hover::after {
content: " ] ";
font-weight: bold;
color: #fff;
}
.hero {
background-color: #099d8d;
background-image: url(../images/foto_grupo.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
z-index: -1;
}
.hero .textbox {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 290px;
height: 80px;
background-color: #fff;
color: #000;
font-size: 1.125rem;
font-family: "Open Sans", sans-serif;
font-weight: 600;
position: absolute;
bottom: -40px;
left: calc(50% - 145px);
}
.hero .textbox div {
height: 50%;
}
.whitebox p {
position: relative;
text-align: left;
padding: 0.73125rem;
-webkit-animation-name: textbox;
animation-name: textbox;
-webkit-animation-duration: 5s;
animation-duration: 5s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}/* A partir de aqui es responisve */.aboutus {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 30px;
margin-top: -10%;
padding-top: 22.2%;
}
.container .ab-header h2 {
color: #14d9c4;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
text-align: center;
line-height: 45px;
padding-bottom: 3%;
}
.container .ab-header p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
text-align: center;
line-height: 24px;
color: #54585a;
}/* Fin estilos aboutus */.strengths {
background-color: rgba(184, 184, 185, 0.2);
position: relative;
z-index: -1;
}
.strengths h2 {
color: #099d8d;
font-size: 22px;
font-family: "Rubik", sans-serif;
font-weight: 500;
margin: 15px;
}
.strengths p {
padding-bottom: 30px;
font-size: 16px;
font-family: "Open Sans", sans-serif;
color: #54585a;
text-align: center;
line-height: 24px;
}
.triangulo {
width: 30px;
height: 30px;
background-color: white;
-webkit-transform: translateX(-50%) rotate(45deg);
transform: translateX(-50%) rotate(45deg);
position: absolute;
top: -15px;
left: 50%;
}
.adalabers {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
padding: 3% 0;
}
.adalabers-title {
font-family: "Rubik", sans-serif;
font-size: 24px;
color: #099d8d;
font-weight: 500;
text-transform: uppercase;
text-align: center;
margin: 6% 0 10% 0;
}
.adalabers-profile {
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;
padding: 1%;
margin-bottom: 5%;
}
.adalabers-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 2% 3%;
}
.adalabers-name {
font-family: "Open Sans", sans-serif;
font-size: 20px;
color: #000;
font-weight: 400;
margin: 5% 0;
}
.adalabers-description {
line-height: 1.6;
}
.adalabers p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
color: #54585a;
font-weight: 400;
}
.adalabers-pic img {
max-width: 180px;
border-radius: 6%;
border: 4px solid rgba(0, 0, 0, 0.08);
}
.adalabers-pic :hover {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
border-radius: 50%;
}/* Adalabers profiles icons style */.adalabers-links {
margin-top: 3%;
}
.adalabers-links a {
color: #099d8d;
display: inline-block;
padding: 7% 2% 7% 2%;
}
.adalabers-links a:visited {
color: #099d8d;
}
.adalabers-links a:hover,.adalabers-links a:focus {
color: #000;
-webkit-transition: color 0.7s ease;
transition: color 0.7s ease;
}
.adalabers-links a:hover::before {
content: ' [ ';
font-weight: bold;
color: #099d8d;
}
.adalabers-links a:hover::after {
content: ' ] ';
font-weight: bold;
color: #099d8d;
}/* End of Adalabers profiles icons style */.footer__footer {
border-top: 1px solid grey;
}
.footer {
display: grid;
grid-template-columns: 1fr;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
color: #b8b8b9;
font-size: 16px;
text-align: center;
font-family: "Open Sans", sans-serif;
border-width: 100%;
position: relative;
}
.footer .footer-aside {
margin-bottom: 1%;
}
.footer .footer-nav ul {
padding: 12px;
}
.footer .footer-nav li {
list-style-type: none;
padding: 5px;
}
.footer .footer-nav li a:hover::before {
content: ' [ ';
font-weight: bold;
color: #099d8d;
}
.footer .footer-nav li a:hover::after {
content: ' ] ';
font-weight: bold;
color: #099d8d;
}
.footer .footer-nav li a {
color: #54585a;
font-weight: bold;
text-decoration: none;
}
.footer .footer-nav li a:hover,.footer .footer-nav li a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.footer .footer-logo img {
width: 120px;
}
.hero-contact {
background-color: teal;
background-image: url(../images/contacto.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
width: 100vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
z-index: -1;
}
.main-contact .container {
text-align: center;
margin: auto;
padding: 15px;
max-width: 300px;
width: 100%;
}
.main-contact .container h1 {
color: #099d8d;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
text-align: center;
line-height: 45px;
}
.main-contact .container p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
text-align: center;
line-height: 24px;
color: #54585a;
padding: 15px;
}
.main-contact .container .footer-contact {
font-family: "Open Sans", sans-serif;
font-size: 12px;
text-align: center;
color: #54585a;
padding: 0px;
width: 100%;
}
.main-contact .container .footer-contact .asterik {
color: #14d9c4;
}
.form {
font-family: "Open Sans", sans-serif;
font-size: 14px;
text-align: left;
line-height: 24px;
color: #54585a;
padding: 0;
margin: 0;
z-index: -3;
}
.container-form {
margin: auto;
max-width: 300px;
width: 100%;
}
label {
display: block;
padding: 0;
}
label .asterik {
color: #14d9c4;
}
input {
display: block;
width: 100%;
padding: 10px 10px;
margin: 15px 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: solid 1px lightgrey;
}
textarea {
display: block;
width: 100%;
padding: 10px 10px;
margin: 15px 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: solid 1px lightgrey;
}
.button-contact input[type=submit] {
border-radius: 5%;
background-color: #099d8d;
border: 0;
color: white;
text-transform: uppercase;
}
.button-contact input[type=submit]:hover {
color: #000;
font-weight: bold;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.button-contact input[type=submit]:focus {
color: #000;
font-weight: bold;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.hero-team {
background-color: #099d8d;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
width: 100vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
z-index: -1;
}
.hero-team-mg {
background-image: url(../images/maria_garvia_vaca.jpg);
background-position-y: 25%;
}
.hero-team-mb {
background-image: url(../images/maria_blanco_llama.jpg);
background-position-y: 30%;
}
.hero-team-pr {
background-image: url(../images/patricia_ramos_oveja.jpg);
}
.hero-team-gv {
background-image: url(../images/gador_villanueva_cabra.jpg);
background-position-y: 35%;
}
.hero-team-sv {
background-image: url(../images/soraya_valle_gallo.jpg);
}
.team {
padding: 20px 0;
}
.team h2 {
color: #099d8d;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
padding: 2% 0;
}
.team .team-member-box {
padding-top: 20px;
}
.team .team-member-box .team-member-description {
padding-top: 20px;
font-family: "Open Sans", sans-serif;
font-size: 16px;
color: #54585a;
text-align: justify;
line-height: 24px;
}
.team .team-member-skills {
text-align: justify;
line-height: 24px;
}
.team .team-member-skills ul {
padding-bottom: 20px;
}
.team .team-member-skills ul li {
list-style-type: none;
font-family: "Open Sans", sans-serif;
font-size: 14px;
color: #54585a;
}
.team .team-member-skills ul li h3 {
color: #14d9c4;
font-size: 16px;
font-family: "Open Sans", sans-serif;
font-weight: 500;
padding-top: 15px;
}
@media all and (min-width: 768px) {
.container {
max-width: 700px;
}
.container-header {
position: fixed;
width: 100vw;
background-color: #099d8d;
opacity: 0.95;
height: 60px;
}
.container-header .h1header {
padding: 1.25rem 0px;
}
.header {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
opacity: 0.95;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 700px;
}
.header .main-menu {
background-color: transparent;
}
.header .group {
background-color: transparent;
}
.hero .whitebox {
position: relative;
height: 421px;
}
.hero .whitebox .textbox {
left: 15px;
bottom: 29px;
opacity: 80%;
padding: 0.9375rem 1.875rem;
width: 441px;
}
.aboutus {
padding: 5% 0 4% 0;
margin-top: 0;
}
.container .ab-header h2 {
color: #099d8d;
}
.strengths h2 {
margin: 0px;
padding: 15px;
}
.strengths p {
margin: 0 15px;
}
.strengths__box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.strengths__box div {
max-width: 50%;
padding: 15px 0px;
}
.footer {
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
grid-template-areas: 'footer-aside' 'footer-nav' 'footer-logo';
}
.footer-aside {
grid-area: footer-aside;
grid-column: span 1;
}
.footer-logo {
grid-area: footer-logo;
grid-column: span 1;
position: absolute;
left: 4%;
top: -60px;
}
.footer-logo img {
width: 100px;
}
.footer-nav {
grid-area: footer-nav;
grid-column-start: 4;
grid-row: 1;
text-align: right;
}
.button-contact {
text-align: right;
}
.button-contact input[type=submit] {
width: 200px;
display: inline-block;
}
.team .team-member-box {
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;
text-align: center;
}
.team .team-member-box .team-member-description {
padding-left: 20px;
}
.team .team-member-box .team-member-description {
padding-top: 0%;
}
}
@media (min-width: 768px) {
.adalabers-title {
margin: 3% 0 6% 0;
}
.adalabers-profile {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.adalabers-profile.start {
text-align: left;
}
.adalabers-profile.start .adalabers-links {
margin-left: -0.5%;
}
.adalabers-profile.end {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
flex-direction: row-reverse;
text-align: right;
}
.adalabers-profile.end .adalabers-links {
margin-right: 0%;
}
.adalabers-name {
margin: 3% 0;
}
.adalabers.box {
width: 80%;
}
.adalabers.box.end {
text-align: right;
}
.adalabers-links {
margin: 0;
}
.adalabers-links a {
padding: 5% 1% 5% 1%;
}
.adalabers-pic img {
max-width: 207px;
}
}
@media all and (min-width: 1200px) {
.container {
max-width: 600px;
}
.container-adalabers {
width: 100%;
max-width: 900px;
}
.buttontop {
display: block;
position: fixed;
bottom: 4%;
right: 2%;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: rgba(184, 184, 185, 0.5);
color: black;
text-align: center;
font-size: 30px;
font-weight: bolder;
border: solid 2px white;
padding: 10px;
cursor: pointer;
}
.buttontop:hover {
color: white;
}
.header {
max-width: 900px;
}
.hero {
height: 550px;
}
.hero .whitebox {
height: 550px;
}
.hero .whitebox p {
font-size: 1.25rem;
}
.hero .whitebox p .textbox {
width: 574px;
height: 90px;
}
.aboutus {
padding: 2.5% 0 2% 0;
}
.footer-logo {
position: absolute;
left: 6.6%;
}
.main-contact .container {
margin: auto;
width: 100%;
max-width: 600px;
}
.form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.container-form {
margin: auto;
width: 100%;
max-width: 600px;
}
.form input[type="email"] {
display: inline-block;
width: 400px;
margin: 20px 0px 20px 0px;
}
.form input[type="tel"] {
display: inline-block;
width: 160px;
margin: 20px 0px;
}
.form .email {
display: inline-block;
margin-right: 45px;
}
.form .tel {
display: inline-block;
width: 160px;
margin-left: 0;
margin-right: 0;
}
.form .container-short {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.form .container-short :first-child {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.form .container-short :nth-child(2) {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.form .container-short :nth-child(3) {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.form .container-short :last-child {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.form .button-contact input[type=submit] {
width: 280px;
}
}
@media (min-width: 1200px) {
.adalabers-title {
margin: 0 0 6% 0;
}
.adalabers-profile {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.adalabers-box {
padding: 0 3%;
max-width: 50%;
}
.adalabers-links a {
padding: 3% 1% 3% 1%;
}
.adalabers-pic img {
max-width: 278px;
}
.start {
-webkit-box-pack: left;
-ms-flex-pack: left;
justify-content: left;
}
.end {
-webkit-box-pack: right;
-ms-flex-pack: right;
justify-content: right;
}
}
@-webkit-keyframes textbox {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes textbox {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/*# sourceMappingURL=main.css.map */
|
public/assets/css/main.css
|
========================================================================== *//**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/html {
line-height: 1.15;
/* 1 */
-webkit-text-size-adjust: 100%;
/* 2 */;
}/* Sections
========================================================================== *//**
* Remove the margin in all browsers.
*/body {
margin: 0;
}/**
* Render the `main` element consistently in IE.
*/main {
display: block;
}/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/h1 {
font-size: 2em;
margin: 0.67em 0;
}/* Grouping content
========================================================================== *//**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */;
}/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */;
}/* Text-level semantics
========================================================================== *//**
* Remove the gray background on active links in IE 10.
*/a {
background-color: transparent;
}/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
/* 2 */;
}/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/b,strong {
font-weight: bolder;
}/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/code,kbd,samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */;
}/**
* Add the correct font size in all browsers.
*/small {
font-size: 80%;
}/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}/* Embedded content
========================================================================== *//**
* Remove the border on images inside links in IE 10.
*/img {
border-style: none;
}/* Forms
========================================================================== *//**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/button,input,optgroup,select,textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */;
}/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/button,input {
/* 1 */
overflow: visible;
}/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/button,select {
/* 1 */
text-transform: none;
}/**
* Correct the inability to style clickable types in iOS and Safari.
*/button,[type="button"],[type="reset"],[type="submit"] {
-webkit-appearance: button;
}/**
* Remove the inner border and padding in Firefox.
*/button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}/**
* Restore the focus styles unset by the previous rule.
*/button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}/**
* Correct the padding in Firefox.
*/fieldset {
padding: 0.35em 0.75em 0.625em;
}/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/legend {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */;
}/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/progress {
vertical-align: baseline;
}/**
* Remove the default vertical scrollbar in IE 10+.
*/textarea {
overflow: auto;
}/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/[type="checkbox"],[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */;
}/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
height: auto;
}/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */;
}/**
* Remove the inner padding in Chrome and Safari on macOS.
*/[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */;
}/* Interactive
========================================================================== *//*
* Add the correct display in Edge, IE 10+, and Firefox.
*/details {
display: block;
}/*
* Add the correct display in all browsers.
*/summary {
display: list-item;
}/* Misc
========================================================================== *//**
* Add the correct display in IE 10+.
*/template {
display: none;
}/**
* Add the correct display in IE 10.
*/[hidden] {
display: none;
}
p {
font-size: 1.125rem;
margin: 0 0.625rem;
}
body * {
margin: 0px;
padding: 0px;
}
html {
cursor: url(../images/cursor.png), auto;
font-size: 16px;
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
.buttontop {
display: none;
}
.container {
text-align: center;
margin: auto;
padding: 15px;
max-width: 300px;
width: 100%;
/*changes*/ /*changes*/;
}
.container-footer {
border-top: solid grey 1px;
border-width: 100%;
padding: 0;
}
.container-header {
font-family: "Rubik", sans-serif;
font-weight: 500;
font-style: normal;
letter-spacing: normal;
}
.container-header .h1header {
font-size: 1rem;
padding: 1.25rem;
color: #fff;
margin-top: 0;
font-weight: 500;
}
.container-header .h1header a {
color: white;
padding: 0.5rem;
}
.container-header .h1header a:hover,.container-header .h1header a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.header {
position: fixed;
padding: 0px;
width: 100vw;
margin: auto;
text-transform: uppercase;
}
.header .group {
opacity: 0.95;
background-color: #099d8d;
text-align: center;
}
.main-menu {
padding: 0.9375rem;
opacity: 0.9;
background-color: #14d9c4;
text-align: center;
}
.main-menu ul li {
display: inline;
}
.main-menu ul li a {
font-size: 0.9375rem;
font-family: "Rubik", sans-serif;
font-weight: 500;
font-style: normal;
color: #fff;
padding: 0.5rem;
}
.main-menu a:hover,.main-menu a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.main-menu a:hover::before {
content: " [ ";
font-weight: bold;
color: #fff;
}
.main-menu a:hover::after {
content: " ] ";
font-weight: bold;
color: #fff;
}
.hero {
background-color: #099d8d;
background-image: url(../images/foto_grupo.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
z-index: -1;
}
.hero .textbox {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 290px;
height: 80px;
background-color: #fff;
color: #000;
font-size: 1.125rem;
font-family: "Open Sans", sans-serif;
font-weight: 600;
position: absolute;
bottom: -40px;
left: calc(50% - 145px);
}
.hero .textbox div {
height: 50%;
}
.whitebox p {
position: relative;
text-align: left;
padding: 0.73125rem;
-webkit-animation-name: textbox;
animation-name: textbox;
-webkit-animation-duration: 5s;
animation-duration: 5s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}/* A partir de aqui es responisve */.aboutus {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 30px;
margin-top: -10%;
padding-top: 22.2%;
}
.container .ab-header h2 {
color: #14d9c4;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
text-align: center;
line-height: 45px;
padding-bottom: 3%;
}
.container .ab-header p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
text-align: center;
line-height: 24px;
color: #54585a;
}/* Fin estilos aboutus */.strengths {
background-color: rgba(184, 184, 185, 0.2);
position: relative;
z-index: -1;
}
.strengths h2 {
color: #099d8d;
font-size: 22px;
font-family: "Rubik", sans-serif;
font-weight: 500;
margin: 15px;
}
.strengths p {
padding-bottom: 30px;
font-size: 16px;
font-family: "Open Sans", sans-serif;
color: #54585a;
text-align: center;
line-height: 24px;
}
.triangulo {
width: 30px;
height: 30px;
background-color: white;
-webkit-transform: translateX(-50%) rotate(45deg);
transform: translateX(-50%) rotate(45deg);
position: absolute;
top: -15px;
left: 50%;
}
.adalabers {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
padding: 3% 0;
}
.adalabers-title {
font-family: "Rubik", sans-serif;
font-size: 24px;
color: #099d8d;
font-weight: 500;
text-transform: uppercase;
text-align: center;
margin: 6% 0 10% 0;
}
.adalabers-profile {
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;
padding: 1%;
margin-bottom: 5%;
}
.adalabers-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 2% 3%;
}
.adalabers-name {
font-family: "Open Sans", sans-serif;
font-size: 20px;
color: #000;
font-weight: 400;
margin: 5% 0;
}
.adalabers-description {
line-height: 1.6;
}
.adalabers p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
color: #54585a;
font-weight: 400;
}
.adalabers-pic img {
max-width: 180px;
border-radius: 6%;
border: 4px solid rgba(0, 0, 0, 0.08);
}
.adalabers-pic :hover {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
border-radius: 50%;
}/* Adalabers profiles icons style */.adalabers-links {
margin-top: 3%;
}
.adalabers-links a {
color: #099d8d;
display: inline-block;
padding: 7% 2% 7% 2%;
}
.adalabers-links a:visited {
color: #099d8d;
}
.adalabers-links a:hover,.adalabers-links a:focus {
color: #000;
-webkit-transition: color 0.7s ease;
transition: color 0.7s ease;
}
.adalabers-links a:hover::before {
content: ' [ ';
font-weight: bold;
color: #099d8d;
}
.adalabers-links a:hover::after {
content: ' ] ';
font-weight: bold;
color: #099d8d;
}/* End of Adalabers profiles icons style */.footer__footer {
border-top: 1px solid grey;
}
.footer {
display: grid;
grid-template-columns: 1fr;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
color: #b8b8b9;
font-size: 16px;
text-align: center;
font-family: "Open Sans", sans-serif;
border-width: 100%;
position: relative;
}
.footer .footer-aside {
margin-bottom: 1%;
}
.footer .footer-nav ul {
padding: 12px;
}
.footer .footer-nav li {
list-style-type: none;
padding: 5px;
}
.footer .footer-nav li a:hover::before {
content: ' [ ';
font-weight: bold;
color: #099d8d;
}
.footer .footer-nav li a:hover::after {
content: ' ] ';
font-weight: bold;
color: #099d8d;
}
.footer .footer-nav li a {
color: #54585a;
font-weight: bold;
text-decoration: none;
}
.footer .footer-nav li a:hover,.footer .footer-nav li a:focus {
color: #000;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.footer .footer-logo img {
width: 120px;
}
.hero-contact {
background-color: teal;
background-image: url(../images/contacto.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
width: 100vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
z-index: -1;
}
.main-contact .container {
text-align: center;
margin: auto;
padding: 15px;
max-width: 300px;
width: 100%;
}
.main-contact .container h1 {
color: #099d8d;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
text-align: center;
line-height: 45px;
}
.main-contact .container p {
font-family: "Open Sans", sans-serif;
font-size: 16px;
text-align: center;
line-height: 24px;
color: #54585a;
padding: 15px;
}
.main-contact .container .footer-contact {
font-family: "Open Sans", sans-serif;
font-size: 12px;
text-align: center;
color: #54585a;
padding: 0px;
width: 100%;
}
.main-contact .container .footer-contact .asterik {
color: #14d9c4;
}
.form {
font-family: "Open Sans", sans-serif;
font-size: 14px;
text-align: left;
line-height: 24px;
color: #54585a;
padding: 0;
margin: 0;
z-index: -3;
}
.container-form {
margin: auto;
max-width: 300px;
width: 100%;
}
label {
display: block;
padding: 0;
}
label .asterik {
color: #14d9c4;
}
input {
display: block;
width: 100%;
padding: 10px 10px;
margin: 15px 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: solid 1px lightgrey;
}
textarea {
display: block;
width: 100%;
padding: 10px 10px;
margin: 15px 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: solid 1px lightgrey;
}
.button-contact input[type=submit] {
border-radius: 5%;
background-color: #099d8d;
border: 0;
color: white;
text-transform: uppercase;
}
.button-contact input[type=submit]:hover {
color: #000;
font-weight: bold;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.button-contact input[type=submit]:focus {
color: #000;
font-weight: bold;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.hero-team {
background-color: #099d8d;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 421px;
width: 100vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
z-index: -1;
}
.hero-team-mg {
background-image: url(../images/maria_garvia_vaca.jpg);
background-position-y: 25%;
}
.hero-team-mb {
background-image: url(../images/maria_blanco_llama.jpg);
background-position-y: 30%;
}
.hero-team-pr {
background-image: url(../images/patricia_ramos_oveja.jpg);
}
.hero-team-gv {
background-image: url(../images/gador_villanueva_cabra.jpg);
background-position-y: 35%;
}
.hero-team-sv {
background-image: url(../images/soraya_valle_gallo.jpg);
}
.team {
padding: 20px 0;
}
.team h2 {
color: #099d8d;
font-family: "Rubik", sans-serif;
font-size: 24px;
font-weight: 500;
padding: 2% 0;
}
.team .team-member-box {
padding-top: 20px;
}
.team .team-member-box .team-member-description {
padding-top: 20px;
font-family: "Open Sans", sans-serif;
font-size: 16px;
color: #54585a;
text-align: justify;
line-height: 24px;
}
.team .team-member-skills {
text-align: justify;
line-height: 24px;
}
.team .team-member-skills ul {
padding-bottom: 20px;
}
.team .team-member-skills ul li {
list-style-type: none;
font-family: "Open Sans", sans-serif;
font-size: 14px;
color: #54585a;
}
.team .team-member-skills ul li h3 {
color: #14d9c4;
font-size: 16px;
font-family: "Open Sans", sans-serif;
font-weight: 500;
padding-top: 15px;
}
@media all and (min-width: 768px) {
.container {
max-width: 700px;
}
.container-header {
position: fixed;
width: 100vw;
background-color: #099d8d;
opacity: 0.95;
height: 60px;
}
.container-header .h1header {
padding: 1.25rem 0px;
}
.header {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
opacity: 0.95;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 700px;
}
.header .main-menu {
background-color: transparent;
}
.header .group {
background-color: transparent;
}
.hero .whitebox {
position: relative;
height: 421px;
}
.hero .whitebox .textbox {
left: 15px;
bottom: 29px;
opacity: 80%;
padding: 0.9375rem 1.875rem;
width: 441px;
}
.aboutus {
padding: 5% 0 4% 0;
margin-top: 0;
}
.container .ab-header h2 {
color: #099d8d;
}
.strengths h2 {
margin: 0px;
padding: 15px;
}
.strengths p {
margin: 0 15px;
}
.strengths__box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.strengths__box div {
max-width: 50%;
padding: 15px 0px;
}
.footer {
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
grid-template-areas: 'footer-aside' 'footer-nav' 'footer-logo';
}
.footer-aside {
grid-area: footer-aside;
grid-column: span 1;
}
.footer-logo {
grid-area: footer-logo;
grid-column: span 1;
position: absolute;
left: 4%;
top: -60px;
}
.footer-logo img {
width: 100px;
}
.footer-nav {
grid-area: footer-nav;
grid-column-start: 4;
grid-row: 1;
text-align: right;
}
.button-contact {
text-align: right;
}
.button-contact input[type=submit] {
width: 200px;
display: inline-block;
}
.team .team-member-box {
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;
text-align: center;
}
.team .team-member-box .team-member-description {
padding-left: 20px;
}
.team .team-member-box .team-member-description {
padding-top: 0%;
}
}
@media (min-width: 768px) {
.adalabers-title {
margin: 3% 0 6% 0;
}
.adalabers-profile {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.adalabers-profile.start {
text-align: left;
}
.adalabers-profile.start .adalabers-links {
margin-left: -0.5%;
}
.adalabers-profile.end {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
flex-direction: row-reverse;
text-align: right;
}
.adalabers-profile.end .adalabers-links {
margin-right: 0%;
}
.adalabers-name {
margin: 3% 0;
}
.adalabers.box {
width: 80%;
}
.adalabers.box.end {
text-align: right;
}
.adalabers-links {
margin: 0;
}
.adalabers-links a {
padding: 5% 1% 5% 1%;
}
.adalabers-pic img {
max-width: 207px;
}
}
@media all and (min-width: 1200px) {
.container {
max-width: 600px;
}
.container-adalabers {
width: 100%;
max-width: 900px;
}
.buttontop {
display: block;
position: fixed;
bottom: 4%;
right: 2%;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: rgba(184, 184, 185, 0.5);
color: black;
text-align: center;
font-size: 30px;
font-weight: bolder;
border: solid 2px white;
padding: 10px;
cursor: pointer;
}
.buttontop:hover {
color: white;
}
.header {
max-width: 900px;
}
.hero {
height: 550px;
}
.hero .whitebox {
height: 550px;
}
.hero .whitebox p {
font-size: 1.25rem;
}
.hero .whitebox p .textbox {
width: 574px;
height: 90px;
}
.aboutus {
padding: 2.5% 0 2% 0;
}
.footer-logo {
position: absolute;
left: 6.6%;
}
.main-contact .container {
margin: auto;
width: 100%;
max-width: 600px;
}
.form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.container-form {
margin: auto;
width: 100%;
max-width: 600px;
}
.form input[type="email"] {
display: inline-block;
width: 400px;
margin: 20px 0px 20px 0px;
}
.form input[type="tel"] {
display: inline-block;
width: 160px;
margin: 20px 0px;
}
.form .email {
display: inline-block;
margin-right: 45px;
}
.form .tel {
display: inline-block;
width: 160px;
margin-left: 0;
margin-right: 0;
}
.form .container-short {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.form .container-short :first-child {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.form .container-short :nth-child(2) {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
.form .container-short :nth-child(3) {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.form .container-short :last-child {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}
.form .button-contact input[type=submit] {
width: 280px;
}
}
@media (min-width: 1200px) {
.adalabers-title {
margin: 0 0 6% 0;
}
.adalabers-profile {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.adalabers-box {
padding: 0 3%;
max-width: 50%;
}
.adalabers-links a {
padding: 3% 1% 3% 1%;
}
.adalabers-pic img {
max-width: 278px;
}
.start {
-webkit-box-pack: left;
-ms-flex-pack: left;
justify-content: left;
}
.end {
-webkit-box-pack: right;
-ms-flex-pack: right;
justify-content: right;
}
}
@-webkit-keyframes textbox {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes textbox {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/*# sourceMappingURL=main.css.map */
| 0.640748 | 0.142799 |
body{
margin: 0;
background: linear-gradient(to bottom, rgba(142, 246, 0, 0.1), rgba(0, 0, 0, 0.2));
min-height: 100vh;
}
header{
width: 100%;
background: repeating-linear-gradient(45deg,#606dbc,#465298 10px,#465298 20px);
height: 100px;
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(100% - 100px) 100%, calc(100% - 150px) 50%, calc(0% + 50px) 50%, 0% 100%, 0% 0%);
box-shadow: inset 0 0 10px #000000;
}
header img#logout{
height: 90px;
float: right;
margin: 5px;
}
h2#title{
position: absolute;
margin-top: 0;
margin-left: calc(50% - 100px);
color: #5360aa;
background: #f0fae3;
padding: 12px;
box-shadow: 5px 5px 5px #141414;
}
main{
width: calc(70% - 50px);
min-height: 739px;
height: auto;
margin: 50px calc(7% + 50px) 20px 0;
background: #99CDD8;
display: inline-block;
float: right;
clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 30px, 100% 100%, 0% 100%, 0% 0%);
}
nav{
position: fixed;
width: 18%;
height: 600px;
margin: 50px 0px 50px 5%;
display: inline-block;
float: left;
background: #6b9311;
clip-path: polygon(30px 0%, 100% 0%, 100% 100%, calc(100% - 30px) calc(100% - 30px), 0% calc(100% - 30px), 0% 30px);
opacity: 0.8;
}
.server_response{
text-align: center;
color: #6b9311;
font-size: 25px;
}
nav ul{
list-style-type: none;
padding: 0;
font-size: 120%;
font-weight: bold;
color: lightgrey;
}
nav ul li{
background: #141414;
margin: 0 20px;
border: 1px solid lightgrey;
border-top: none;
line-height: 25px;
padding: 5px;
transition: 0.3s;
}
nav ul a{
color: inherit;
text-decoration: none;
width: 100%;
height: 100%;
margin-left: 25px;
}
.firstli{
border-top: 1px solid lightgrey;
}
nav ul li ul li{
font-size: 70%;
font-weight: normal;
}
li.expandable{
background: none;
padding: 0;
cursor: pointer;
border: none;
}
.sub_ul li{
margin-left: 30px;
margin-right: 0;
height: 0;
font-size: 0;
border-width: 0;
padding: 0;
}
.sub_ul_header{
background: #141414;
display: block;
padding: 5px;
user-select: none;
}
.exp_ind{
color: lightgrey;
height: 100%;
width: 25px;
position: relative;
}
.sub_ul_header:hover > .exp_ind{
color: white;
}
table{
width: 90%;
margin: 35px 5%;
display: block;
border-collapse: collapse;
border-spacing: 0 !important;
}
tbody,
tr{
width: 100%;
display: block;
}
tr th{
background: #141414;
color: lightgrey;
}
td,
th{
padding: 10px;
background: lightgrey;
font-size: 25px;
border-top: 1px solid #141414;
color: #141414;
display: inline-block;
text-align: left;
border-spacing: 0 !important;
}
tr td:first-of-type,
tr th:first-of-type{
width: 15%;
text-align: center;
}
tr td:nth-of-type(2),
tr th:nth-of-type(2){
width: 30%;
}
tr td:nth-of-type(3),
tr th:nth-of-type(3){
width: calc(40% - 100px);
}
tr td:last-of-type,
tr th:last-of-type{
width: 15%;
}
tr td img{
height: 22px;
text-align: center;
}
tr:hover td{
background: #141414;
color: lightgrey;
}
tr.form_control:hover td{
background: lightgrey;
color: #141414;
}
tr.form_control td{
width: auto;
min-height: 50px;
}
tr.form_control td:first-of-type{
width: 48%;
}
tr.form_control td:last-of-type{
width: calc(55% - 100px);
text-align: center;
}
div#pagination{
padding: 5px 0;
}
div#pagination a{
padding: 7px 15px;
border: 1px solid #141414;
background: grey;
color: #141414;
text-decoration: none;
}
div#pagination a:first-of-type{
border-radius: 7px 0 0 7px;
}
div#pagination a:last-of-type{
border-radius: 0 7px 7px 0;
}
div#pagination a:hover{
background: rgba(48, 215, 224, 0.2);
}
form#search input{
padding: 5px;
}
a.button{
color: #141414;
background: lightgrey;
padding: 2px 5px;
text-decoration: none;
}
|
web/CSS/reg.css
|
body{
margin: 0;
background: linear-gradient(to bottom, rgba(142, 246, 0, 0.1), rgba(0, 0, 0, 0.2));
min-height: 100vh;
}
header{
width: 100%;
background: repeating-linear-gradient(45deg,#606dbc,#465298 10px,#465298 20px);
height: 100px;
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(100% - 100px) 100%, calc(100% - 150px) 50%, calc(0% + 50px) 50%, 0% 100%, 0% 0%);
box-shadow: inset 0 0 10px #000000;
}
header img#logout{
height: 90px;
float: right;
margin: 5px;
}
h2#title{
position: absolute;
margin-top: 0;
margin-left: calc(50% - 100px);
color: #5360aa;
background: #f0fae3;
padding: 12px;
box-shadow: 5px 5px 5px #141414;
}
main{
width: calc(70% - 50px);
min-height: 739px;
height: auto;
margin: 50px calc(7% + 50px) 20px 0;
background: #99CDD8;
display: inline-block;
float: right;
clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 30px, 100% 100%, 0% 100%, 0% 0%);
}
nav{
position: fixed;
width: 18%;
height: 600px;
margin: 50px 0px 50px 5%;
display: inline-block;
float: left;
background: #6b9311;
clip-path: polygon(30px 0%, 100% 0%, 100% 100%, calc(100% - 30px) calc(100% - 30px), 0% calc(100% - 30px), 0% 30px);
opacity: 0.8;
}
.server_response{
text-align: center;
color: #6b9311;
font-size: 25px;
}
nav ul{
list-style-type: none;
padding: 0;
font-size: 120%;
font-weight: bold;
color: lightgrey;
}
nav ul li{
background: #141414;
margin: 0 20px;
border: 1px solid lightgrey;
border-top: none;
line-height: 25px;
padding: 5px;
transition: 0.3s;
}
nav ul a{
color: inherit;
text-decoration: none;
width: 100%;
height: 100%;
margin-left: 25px;
}
.firstli{
border-top: 1px solid lightgrey;
}
nav ul li ul li{
font-size: 70%;
font-weight: normal;
}
li.expandable{
background: none;
padding: 0;
cursor: pointer;
border: none;
}
.sub_ul li{
margin-left: 30px;
margin-right: 0;
height: 0;
font-size: 0;
border-width: 0;
padding: 0;
}
.sub_ul_header{
background: #141414;
display: block;
padding: 5px;
user-select: none;
}
.exp_ind{
color: lightgrey;
height: 100%;
width: 25px;
position: relative;
}
.sub_ul_header:hover > .exp_ind{
color: white;
}
table{
width: 90%;
margin: 35px 5%;
display: block;
border-collapse: collapse;
border-spacing: 0 !important;
}
tbody,
tr{
width: 100%;
display: block;
}
tr th{
background: #141414;
color: lightgrey;
}
td,
th{
padding: 10px;
background: lightgrey;
font-size: 25px;
border-top: 1px solid #141414;
color: #141414;
display: inline-block;
text-align: left;
border-spacing: 0 !important;
}
tr td:first-of-type,
tr th:first-of-type{
width: 15%;
text-align: center;
}
tr td:nth-of-type(2),
tr th:nth-of-type(2){
width: 30%;
}
tr td:nth-of-type(3),
tr th:nth-of-type(3){
width: calc(40% - 100px);
}
tr td:last-of-type,
tr th:last-of-type{
width: 15%;
}
tr td img{
height: 22px;
text-align: center;
}
tr:hover td{
background: #141414;
color: lightgrey;
}
tr.form_control:hover td{
background: lightgrey;
color: #141414;
}
tr.form_control td{
width: auto;
min-height: 50px;
}
tr.form_control td:first-of-type{
width: 48%;
}
tr.form_control td:last-of-type{
width: calc(55% - 100px);
text-align: center;
}
div#pagination{
padding: 5px 0;
}
div#pagination a{
padding: 7px 15px;
border: 1px solid #141414;
background: grey;
color: #141414;
text-decoration: none;
}
div#pagination a:first-of-type{
border-radius: 7px 0 0 7px;
}
div#pagination a:last-of-type{
border-radius: 0 7px 7px 0;
}
div#pagination a:hover{
background: rgba(48, 215, 224, 0.2);
}
form#search input{
padding: 5px;
}
a.button{
color: #141414;
background: lightgrey;
padding: 2px 5px;
text-decoration: none;
}
| 0.431584 | 0.101902 |
body{
margin: 0;
font-family: Gadugi;
text-align: center;
}
.page-wrapper {
position: relative;
margin: 0;
padding: 0;
}
#header {
background-color: #cbf1f5;
box-shadow: -1px 3px 2px #cbf1f5;
display: flex;
position: fixed;
top: 0;
right: 0;
left: 0;
justify-content: space-between;
margin: 0;
padding: 0;
font-family: Arial;
font-weight: 400;
line-height: 0.5;
border-style: none;
align-items: center;
z-index: 2;
}
.logo {
width: 80px;
display: flex;
justify-content: center;
align-items: center;
padding-left: 40px;
}
#header #header-img {
width: 60%;
height: 50%;
}
#header ul {
list-style: none;
display: flex;
flex-direction: row;
width: 60%;
color: #62374e;
align-items: center;
}
#header ul li {
list-style: none;
padding: 1.25em;
align-self: center;
font-size: 1.3vw;
}
#header a {
text-decoration: none;
color: #62374e;
}
.get-started {
margin-top: 40px;
padding-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
height: 350px;
background-color: #defcfc;
color: #022c43;
justify-content: center;
text-align: center;
}
.get-started h2 {
width: 400px;
margin-bottom: 15px;
line-height: 1.3;
font-size: 2em;
}
#email {
max-width: 250px;
width: 100%;
padding: 5px;
margin-bottom: 15px;
}
#submit {
max-width: 150px;
width: 100%;
height: 30px;
border: none;
border-radius: 5px;
font-weight: 900;
font-size: 1.2em;
text-align: center;
padding: 0 25px;
cursor: pointer;
}
#middle-container {
width: 50%;
text-align: center;
padding-bottom: 40px;
margin: 0 auto 0 auto;
}
#features {
text-align: left;
width: 100%;
padding-top: 50px;
margin: auto;
align-self: center;
}
.feature-div {
padding: 20px;
}
.icon {
float: left;
width: 100px;
height: 100px;
margin-right: 45px;
background-color: aliceblue;
border-width: 10%;
border-radius: 5%;
}
p {
margin: 0;
}
h3 {
margin: 0;
}
hr {
position: relative;
border-style: none;
border-top-style: dotted;
width: 7%;
color: #c0c0c0;
border-width: 6px;
margin: -2px auto;
z-index: 1;
}
#video-div {
padding: 60px;
background-color: #defcfc;
}
.plans {
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
}
.plan-item {
display: flex;
flex-direction: column;
width: 250px;
height: 280px;
border: 1px solid;
margin: 10px;
text-align: center;
}
.plan-header {
padding-top: 15px;
padding-bottom: 15px;
width: 100%;
background-color: #e0e0e0;
font-size: 1.3em;
font-weight: 600;
margin-bottom: 15px;
}
.plan-item ol {
padding: 0;
text-align: center;
}
.plan-item ol li {
list-style: none;
line-height: 1.7;
width: 100%;
}
.plans .btn {
max-width: 100px;
height: 30px;
border: 0;
border-radius: 5px;
width: 100%;
align-self: center;
cursor: pointer;
}
#footer {
text-align: right;
width: 100%;
background-color: #defcfc;
margin: 0;
padding: 20px 0 20px 0;
}
footer a, .copyright {
text-decoration: none;
padding-left: 10px;
padding-right: 20px;
line-height: 1.7;
}
@media screen and (max-width: 800px) {
body {
max-width: 100%;
}
#header {
max-width: 100%;
justify-content: space-between;
flex-direction: row;
}
.logo {
max-width: 100%;
float: left;
}
#header ul {
max-width: 100%;
}
#video {
max-width: 100%;
max-height: auto;
}
.plans{
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.page-wrapper {
max-width: 100%;
}
p{
max-width: 100%;
}
#features {
text-align: center;
align-items: center;
justify-content: center;
}
.icon{
align-self: center;
float: none;
padding: 0;
margin: 0;
}
}
@media screen and (max-width: 480px) {
body {
max-width: 100%;
}
#header {
max-width: 100%;
justify-content: space-between;
flex-direction: row;
}
.logo {
width: 100%;
float: left;
}
#header ul {
max-width: 100%;
}
#header ul li {
font-size: 3vw;
}
.get-started h2 {
max-width: 100%;
width: 100%;
}
form {
width: 100%;
}
#video {
max-width: 100%;
max-height: auto;
}
.plans{
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.page-wrapper {
max-width: 100%;
}
#features {
text-align: center;
align-items: center;
justify-content: center;
flex-direction: column;
}
.feature-div {
max-width: 100%;
}
.icon{
align-self: center;
float: none;
padding: 0;
margin: 0;
}
}
|
css/style.css
|
body{
margin: 0;
font-family: Gadugi;
text-align: center;
}
.page-wrapper {
position: relative;
margin: 0;
padding: 0;
}
#header {
background-color: #cbf1f5;
box-shadow: -1px 3px 2px #cbf1f5;
display: flex;
position: fixed;
top: 0;
right: 0;
left: 0;
justify-content: space-between;
margin: 0;
padding: 0;
font-family: Arial;
font-weight: 400;
line-height: 0.5;
border-style: none;
align-items: center;
z-index: 2;
}
.logo {
width: 80px;
display: flex;
justify-content: center;
align-items: center;
padding-left: 40px;
}
#header #header-img {
width: 60%;
height: 50%;
}
#header ul {
list-style: none;
display: flex;
flex-direction: row;
width: 60%;
color: #62374e;
align-items: center;
}
#header ul li {
list-style: none;
padding: 1.25em;
align-self: center;
font-size: 1.3vw;
}
#header a {
text-decoration: none;
color: #62374e;
}
.get-started {
margin-top: 40px;
padding-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
height: 350px;
background-color: #defcfc;
color: #022c43;
justify-content: center;
text-align: center;
}
.get-started h2 {
width: 400px;
margin-bottom: 15px;
line-height: 1.3;
font-size: 2em;
}
#email {
max-width: 250px;
width: 100%;
padding: 5px;
margin-bottom: 15px;
}
#submit {
max-width: 150px;
width: 100%;
height: 30px;
border: none;
border-radius: 5px;
font-weight: 900;
font-size: 1.2em;
text-align: center;
padding: 0 25px;
cursor: pointer;
}
#middle-container {
width: 50%;
text-align: center;
padding-bottom: 40px;
margin: 0 auto 0 auto;
}
#features {
text-align: left;
width: 100%;
padding-top: 50px;
margin: auto;
align-self: center;
}
.feature-div {
padding: 20px;
}
.icon {
float: left;
width: 100px;
height: 100px;
margin-right: 45px;
background-color: aliceblue;
border-width: 10%;
border-radius: 5%;
}
p {
margin: 0;
}
h3 {
margin: 0;
}
hr {
position: relative;
border-style: none;
border-top-style: dotted;
width: 7%;
color: #c0c0c0;
border-width: 6px;
margin: -2px auto;
z-index: 1;
}
#video-div {
padding: 60px;
background-color: #defcfc;
}
.plans {
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
}
.plan-item {
display: flex;
flex-direction: column;
width: 250px;
height: 280px;
border: 1px solid;
margin: 10px;
text-align: center;
}
.plan-header {
padding-top: 15px;
padding-bottom: 15px;
width: 100%;
background-color: #e0e0e0;
font-size: 1.3em;
font-weight: 600;
margin-bottom: 15px;
}
.plan-item ol {
padding: 0;
text-align: center;
}
.plan-item ol li {
list-style: none;
line-height: 1.7;
width: 100%;
}
.plans .btn {
max-width: 100px;
height: 30px;
border: 0;
border-radius: 5px;
width: 100%;
align-self: center;
cursor: pointer;
}
#footer {
text-align: right;
width: 100%;
background-color: #defcfc;
margin: 0;
padding: 20px 0 20px 0;
}
footer a, .copyright {
text-decoration: none;
padding-left: 10px;
padding-right: 20px;
line-height: 1.7;
}
@media screen and (max-width: 800px) {
body {
max-width: 100%;
}
#header {
max-width: 100%;
justify-content: space-between;
flex-direction: row;
}
.logo {
max-width: 100%;
float: left;
}
#header ul {
max-width: 100%;
}
#video {
max-width: 100%;
max-height: auto;
}
.plans{
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.page-wrapper {
max-width: 100%;
}
p{
max-width: 100%;
}
#features {
text-align: center;
align-items: center;
justify-content: center;
}
.icon{
align-self: center;
float: none;
padding: 0;
margin: 0;
}
}
@media screen and (max-width: 480px) {
body {
max-width: 100%;
}
#header {
max-width: 100%;
justify-content: space-between;
flex-direction: row;
}
.logo {
width: 100%;
float: left;
}
#header ul {
max-width: 100%;
}
#header ul li {
font-size: 3vw;
}
.get-started h2 {
max-width: 100%;
width: 100%;
}
form {
width: 100%;
}
#video {
max-width: 100%;
max-height: auto;
}
.plans{
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.page-wrapper {
max-width: 100%;
}
#features {
text-align: center;
align-items: center;
justify-content: center;
flex-direction: column;
}
.feature-div {
max-width: 100%;
}
.icon{
align-self: center;
float: none;
padding: 0;
margin: 0;
}
}
| 0.362743 | 0.068881 |
@media screen and (max-width: 768px){
.a
{
background-color: rgb(56, 56, 185);
border-bottom: none;
}
.b
{
background-color:rgb(143, 143, 212);
border-bottom: none;
}
.c
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.d
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.e
{
background-color: rgb(86, 97, 243);
border-bottom: none;
}
.f
{
background-color: rgb(86, 97, 243);
border-left: none;
border-bottom: none;
}
.g
{
background-color: rgb(86, 97, 243);
border-bottom: none;
}
.h
{
background-color:rgb(86, 97, 243);
border-left: none;
border-bottom: none;
}
.i
{
background-color: rgb(56, 56, 185);;
}
}
@media screen and (min-width: 769px){
.a
{
background-color: rgb(56, 56, 185);
border-bottom: none;
}
.b
{
background-color:rgb(143, 143, 212) ;
border-right: none;
border-bottom: none;
}
.c
{
background-color: rgb(15, 13, 99);
border-right: none;
}
.d
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.e
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.f
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.g
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.h
{
background-color:rgb(86, 97, 243);
border-bottom: none;
}
.i
{
background-color: rgb(56, 56, 185);;
}
}
|
css/theme.css
|
@media screen and (max-width: 768px){
.a
{
background-color: rgb(56, 56, 185);
border-bottom: none;
}
.b
{
background-color:rgb(143, 143, 212);
border-bottom: none;
}
.c
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.d
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.e
{
background-color: rgb(86, 97, 243);
border-bottom: none;
}
.f
{
background-color: rgb(86, 97, 243);
border-left: none;
border-bottom: none;
}
.g
{
background-color: rgb(86, 97, 243);
border-bottom: none;
}
.h
{
background-color:rgb(86, 97, 243);
border-left: none;
border-bottom: none;
}
.i
{
background-color: rgb(56, 56, 185);;
}
}
@media screen and (min-width: 769px){
.a
{
background-color: rgb(56, 56, 185);
border-bottom: none;
}
.b
{
background-color:rgb(143, 143, 212) ;
border-right: none;
border-bottom: none;
}
.c
{
background-color: rgb(15, 13, 99);
border-right: none;
}
.d
{
background-color: rgb(15, 13, 99);
border-bottom: none;
}
.e
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.f
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.g
{
background-color:rgb(86, 97, 243);
border-right: none;
border-bottom: none;
}
.h
{
background-color:rgb(86, 97, 243);
border-bottom: none;
}
.i
{
background-color: rgb(56, 56, 185);;
}
}
| 0.481941 | 0.076304 |
div#fruits {
list-style: none;
/*padding: 0;*/
/*margin: 40px auto;*/
font-size: 0;
max-width: 680px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: space-between;
}
.cardBlockInside > div:first-child {
background-position: center center;
background-repeat: no-repeat;
transform: rotateY(180deg);
}
.fruit-1 {
background:url('images/fruit-1.png');
}
.fruit-2 {
background:url('images/fruit-2.png');
}
.fruit-3 {
background:url('images/fruit-3.png');
}
.fruit-4 {
background:url('images/fruit-4.png');
}
.fruit-5 {
background:url('images/fruit-5.png');
}
.fruit-6 {
background:url('images/fruit-6.png');
}
.fruit-7 {
background:url('images/fruit-7.png');
}
.fruit-8 {
background:url('images/fruit-8.png');
}
.fruit-9 {
background:url('images/fruit-9.png');
}
.fruit-10 {
background:url('images/fruit-10.png');
}
.fruit-11 {
background:url('images/fruit-11.png');
}
.fruit-12 {
background:url('images/fruit-12.png');
}
.fruit-13 {
background:url('images/fruit-13.png');
}
.fruit-14 {
background:url('images/fruit-14.png');
}
.fruit-15 {
background:url('images/fruit-15.png');
}
.fruit-16 {
background:url('images/fruit-16.png');
}
.fruit-17 {
background:url('images/fruit-17.png');
}
.fruit-18 {
background:url('images/fruit-18.png');
}
.fruit-19 {
background:url('images/fruit-19.png');
}
.fruit-20 {
background:url('images/fruit-20.png');
}
.card {
width: 140px;
height: 140px;
perspective: 1000px;
box-sizing: border-box;
}
.cardBlockInside {
position: relative;
transition: transform 0.6s;
transform-style: preserve-3d;
height: 100%;
width: 100%;
border: 1px solid lightgray;
cursor: pointer;
box-sizing: border-box;
}
.flip {
transform: rotateY(180deg);
}
.cardBlockInside > div {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.back {
background-color: gray;
}
.same {
border: 1px solid lightgray;
}
/* mobile block */
@media screen and (max-width:280px) and (orientation: portrait) {
div#fruits {
max-width:260px;
}
.card {
width: 80px;
height: 80px;
}
}
@media screen and (min-width:281px) and (max-width:320px) and (orientation: portrait) {
div#fruits {
max-width:280px;
}
.card {
width: 90px;
height: 90px;
}
}
/* only for iPhone 5/SE */
@media screen and (max-width:570px) and (orientation: landscape) {
div#fruits {
max-width:400px;
}
.card {
width: 90px;
height: 90px;
}
}
@media screen and (min-width:321px) and (max-width:540px) and (orientation: portrait) {
div#fruits {
max-width:500px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:321px) and (max-width:361px) and (orientation: portrait) {
div#fruits {
max-width:320px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:322px) and (max-width:375px) and (orientation: portrait) {
div#fruits {
max-width:320px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:380px) and (max-width:450px) and (orientation: portrait) {
div#fruits {
max-width:350px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:569px) and (max-width:640px) and (orientation: landscape) {
div#fruits {
max-width:440px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:641px) and (max-width:655px) and (orientation: landscape) {
div#fruits {
max-width:340px;
}
.card {
width: 80px;
height: 80px;
}
}
@media screen and (min-width:656px) and (max-width:825px) and (orientation: landscape) {
div#fruits {
max-width:500px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:656px) and (max-width:815px) and (orientation: landscape) {
div#fruits {
max-width:450px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:680px) and (max-width:720px) and (orientation: landscape) {
div#fruits {
max-width:600px;
}
.card {
width: 140px;
height: 140px;
}
}
@media screen and (min-width:1025px) and (max-width:1366px) and (orientation: landscape) {
div#fruits {
max-width:800px;
}
.card {
width: 180px;
height: 180px;
}
}
@media screen and (min-width:1024px) and (orientation: portrait) {
div#fruits {
max-width:800px;
}
.card {
width: 220px;
height: 220px;
}
}
@media screen and (min-width:1366px) and (orientation: landscape) {
div#fruits {
max-width:1000px;
}
.card {
width: 220px;
height: 220px;
}
}
/* mobile */
|
style.css
|
div#fruits {
list-style: none;
/*padding: 0;*/
/*margin: 40px auto;*/
font-size: 0;
max-width: 680px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: space-between;
}
.cardBlockInside > div:first-child {
background-position: center center;
background-repeat: no-repeat;
transform: rotateY(180deg);
}
.fruit-1 {
background:url('images/fruit-1.png');
}
.fruit-2 {
background:url('images/fruit-2.png');
}
.fruit-3 {
background:url('images/fruit-3.png');
}
.fruit-4 {
background:url('images/fruit-4.png');
}
.fruit-5 {
background:url('images/fruit-5.png');
}
.fruit-6 {
background:url('images/fruit-6.png');
}
.fruit-7 {
background:url('images/fruit-7.png');
}
.fruit-8 {
background:url('images/fruit-8.png');
}
.fruit-9 {
background:url('images/fruit-9.png');
}
.fruit-10 {
background:url('images/fruit-10.png');
}
.fruit-11 {
background:url('images/fruit-11.png');
}
.fruit-12 {
background:url('images/fruit-12.png');
}
.fruit-13 {
background:url('images/fruit-13.png');
}
.fruit-14 {
background:url('images/fruit-14.png');
}
.fruit-15 {
background:url('images/fruit-15.png');
}
.fruit-16 {
background:url('images/fruit-16.png');
}
.fruit-17 {
background:url('images/fruit-17.png');
}
.fruit-18 {
background:url('images/fruit-18.png');
}
.fruit-19 {
background:url('images/fruit-19.png');
}
.fruit-20 {
background:url('images/fruit-20.png');
}
.card {
width: 140px;
height: 140px;
perspective: 1000px;
box-sizing: border-box;
}
.cardBlockInside {
position: relative;
transition: transform 0.6s;
transform-style: preserve-3d;
height: 100%;
width: 100%;
border: 1px solid lightgray;
cursor: pointer;
box-sizing: border-box;
}
.flip {
transform: rotateY(180deg);
}
.cardBlockInside > div {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.back {
background-color: gray;
}
.same {
border: 1px solid lightgray;
}
/* mobile block */
@media screen and (max-width:280px) and (orientation: portrait) {
div#fruits {
max-width:260px;
}
.card {
width: 80px;
height: 80px;
}
}
@media screen and (min-width:281px) and (max-width:320px) and (orientation: portrait) {
div#fruits {
max-width:280px;
}
.card {
width: 90px;
height: 90px;
}
}
/* only for iPhone 5/SE */
@media screen and (max-width:570px) and (orientation: landscape) {
div#fruits {
max-width:400px;
}
.card {
width: 90px;
height: 90px;
}
}
@media screen and (min-width:321px) and (max-width:540px) and (orientation: portrait) {
div#fruits {
max-width:500px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:321px) and (max-width:361px) and (orientation: portrait) {
div#fruits {
max-width:320px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:322px) and (max-width:375px) and (orientation: portrait) {
div#fruits {
max-width:320px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:380px) and (max-width:450px) and (orientation: portrait) {
div#fruits {
max-width:350px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:569px) and (max-width:640px) and (orientation: landscape) {
div#fruits {
max-width:440px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:641px) and (max-width:655px) and (orientation: landscape) {
div#fruits {
max-width:340px;
}
.card {
width: 80px;
height: 80px;
}
}
@media screen and (min-width:656px) and (max-width:825px) and (orientation: landscape) {
div#fruits {
max-width:500px;
}
.card {
width: 110px;
height: 110px;
}
}
@media screen and (min-width:656px) and (max-width:815px) and (orientation: landscape) {
div#fruits {
max-width:450px;
}
.card {
width: 100px;
height: 100px;
}
}
@media screen and (min-width:680px) and (max-width:720px) and (orientation: landscape) {
div#fruits {
max-width:600px;
}
.card {
width: 140px;
height: 140px;
}
}
@media screen and (min-width:1025px) and (max-width:1366px) and (orientation: landscape) {
div#fruits {
max-width:800px;
}
.card {
width: 180px;
height: 180px;
}
}
@media screen and (min-width:1024px) and (orientation: portrait) {
div#fruits {
max-width:800px;
}
.card {
width: 220px;
height: 220px;
}
}
@media screen and (min-width:1366px) and (orientation: landscape) {
div#fruits {
max-width:1000px;
}
.card {
width: 220px;
height: 220px;
}
}
/* mobile */
| 0.330471 | 0.152158 |
/* --------------------------------------------
MAIN
-------------------------------------------- */
.blog-item {
margin-bottom: 30px;
padding-top: 0;
border-top: 0;
z-index: 1;
}
.blog-item .date-overlay,
.blog-item .recent-post .date-overlay {
position: absolute;
top: -15px;
right: 30px;
z-index: 6;
}
.narrow-date-block {
line-height: 18px;
width: 46px;
background: #fff;
color: #222;
padding: 7px 8px 7px;
text-align: center;
text-transform: uppercase;
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
box-shadow: 1px 1px 1px rgba(0,0,0,.1);
background: #ffffff;
color: #252525;
}
.narrow-date-block span.month {
font-size: 12px;
}
.narrow-date-block span {
display: block;
}
.narrow-date-block span.day {
font-size: 18px;
}
.narrow-date-block span.year {
font-size: 11px;
opacity: .6;
}
.read-more-button {
font-size: 13px;
font-weight: 500;
padding: 10px 0 0;
display: inline-block;
border-bottom: 2px solid #e8e8e8;
}
figure.animated-overlay > a {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 10;
}
figure.animated-overlay .img-wrap {
position: relative;
overflow: hidden;
}
figure.animated-overlay figcaption {
-webkit-transition: all .4s;
-moz-transition: all .4s;
-o-transition: all .4s;
transition: all .4s;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 3;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
text-align: center;
overflow: hidden;
}
figure.animated-overlay figcaption {
background-color: rgba(37,37,37, 0.60);
}
figure.animated-overlay:hover figcaption {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
figure.animated-overlay.thumb-media-audio > .mejs-audio,
figure.animated-overlay.thumb-media-audio > audio {
position: absolute;
bottom: 0;
left: 0;
}
figure.animated-overlay.thumb-media-audio {
min-height: 120px;
background-image: url(../img/core/gplaypattern.png);
background-position: top left;
background-repeat: repeat;
}
.blog-item figure {
overflow: visible;
margin-bottom: 0;
position: relative;
margin-bottom: 0;
}
.blog-item .details-wrap > a:first-child {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: 2;
}
.blog-item figure.thumb-media-image + .details-wrap,
.blog-item figure.thumb-media-slider + .details-wrap {
padding-top: 0;
}
.blog-item .details-wrap {
padding: 25px 30px 95px;
position: relative;
background: #ffffff;
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-transition: background-color .3s ease-out,color .3s ease-out;
-moz-transition: background-color .3s ease-out,color .3s ease-out;
transition: background-color .3s ease-out,color .3s ease-out;
}
.blog-item figure.thumb-media-image + .details-wrap:before,
.blog-item figure.thumb-media-slider + .details-wrap:before {
content: "";
position: absolute;
width: 92%;
height: 20px;
top: -20px;
left: 4%;
z-index: 5;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
border-bottom-color: #ffffff;
background: #ffffff;
}
.blog-item .details-wrap h2,
.blog-item .inst-overlay h2 {
font-size: 18px;
line-height: 26px;
margin: 0 0 15px;
font-weight: 400;
}
.blog-item-details {
padding-bottom: 15px;
}
.blog-item .excerpt {
font-size: 0.97em;
line-height: 24px;
}
.blog-item .read-more-button {
position: absolute;
bottom: 40px;
left: 30px;
z-index: 100;
padding: 10px 0 0;
display: inline-block;
border-bottom: 2px solid #e8e8e8;
}
.blog-item .comments-likes {
position: absolute;
bottom: 25px;
right: 30px;
}
.blog-item .comments-likes {
float: right;
font-weight: normal;
margin-top: 8px;
}
.blog-item .comments-likes .comments-wrapper {
display: inline-block;
margin-right: 0;
}
.blog-item .comments-likes .love-it-wrapper {
margin-left: 10px;
margin-top: 5px;
}
.blog-item .comments-wrapper > a {
position: relative;
display: inline-block;
}
.blog-item .love-it-wrapper a {
text-decoration: none;
position: relative;
display: inline-block;
}
.blog-item .comments-wrapper a > span,
.blog-item .love-it-wrapper a > span {
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
font-size: 10px;
padding-top: 15px;
font-weight: bold;
}
.blog-item .comments-likes .comments-wrapper,
.blog-item .comments-likes .love-it-wrapper {
display: inline-block;
}
.blog-item a {
color: #333333;
}
.blog-item figure audio {
margin: 0;
display: block;
visibility: visible !important;
}
.blog-item .sf-video-wrap > iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blog-item .sf-video-wrap {
padding-bottom: 80%;
position: relative;
width: 100%;
}
.blog-item figure .video-thumb {
position: relative;
padding-bottom: 56.25%;
height: 0;
}
.blog-item figure .video-thumb iframe,
.blog-item figure .video-thumb video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blog-item.format-quote .details-wrap {
padding-bottom: 20px;
padding-top: 30px;
}
.blog-item .details-wrap .quote-excerpt {
font-size: 26px;
line-height: 34px;
}
.blog-item .quote-excerpt {
font-family: 'MuseoRegular', sans-serif;
font-weight: 300;
color: #333;
}
.blog-item .quote-excerpt {
padding-bottom: 15px;
font-style: normal;
min-height: 70px;
display: block;
}
.blog-item.format-quote .blog-item-details,
.blog-item.format-quote .read-more-button,
.blog-item.format-quote .comments-likes {
display: none;
}
.blog-item .quote-excerpt:before {
font-family: 'FontAwesome';
content: "\f10d";
font-size: 30px;
margin-bottom: 25px;
display: block;
}
.recent-post figure {
width: 100%;
height: auto;
position: relative;
background-color: #212121;
margin-bottom: 25px;
}
.recent-post {
height: auto;
margin-bottom: 20px;
position: relative;
}
.recent-post .date-overlay {
position: absolute;
top: 15px;
right: 15px;
z-index: 6
}
.recent-post .date-overlay {
top: 15px !important;
}
.recent-post h5 {
font-family: 'MuseoRegular', sans-serif;
margin-top: 0;
margin-bottom: 10px;
font-weight: 400;
font-size: 18px;
}
.recent-post .blog-item-details {
padding-bottom: 5px;
font-size: 13px;
}
.recent-post .excerpt {
padding-top: 8px;
font-size: 0.97em;
line-height: 24px;
}
.posts-type-standard-row .recent-post {
margin-bottom: 30px;
}
.posts-type-standard-row .figure-wrap {
width: 50%;
float: left;
position: relative;
}
.posts-type-standard-row .figure-wrap .date-overlay {
right: 15px;
top: 15px;
}
.posts-type-standard-row .recent-post figure {
margin-bottom: 0;
}
.posts-type-standard-row .has-thumb .details-wrap {
width: 50%;
float: left;
padding-left: 30px;
}
.posts-type-list .recent-post:first-child {
border-top-width: 0;
padding-top: 0;
}
.posts-type-list .recent-post a.list-post-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.posts-type-list .recent-post figure {
width: 80px;
float: left;
margin-bottom: 0;
}
.posts-type-list .recent-post h4 {
margin-top: 0;
margin-bottom: 5px;
-webkit-transition: color .3s ease-out;
-moz-transition: color .3s ease-out;
transition: color .3s ease-out;
font-family: 'MuseoRegular', sans-serif;
font-weight: 400;
}
.posts-type-list .recent-post .post-item-details {
margin-bottom: 0;
font-size: 13px;
}
.posts-type-list .recent-post figure {
width: 80px;
float: left;
margin-bottom: 0;
}
.posts-type-list .recent-post.has-thumb .details-wrap {
margin-left: 100px;
}
.posts-type-list .recent-post .details-wrap {
max-width: 80%;
}
.posts-type-list .recent-post {
float: none;
width: 100%;
padding-left: 0;
padding-right: 0;
border-top: 1px solid #e3e3e3;
margin-bottom: 0;
padding-top: 20px;
padding-bottom: 20px;
position: relative;
}
article.v_blog-item {
margin-bottom:75px;
}
.v_blog-item-content {
padding-left:75px;
padding-top:40px;
padding-right:40px;
}
.v_blog-item-meta {
display: inline-block;
vertical-align: top;
margin: 0 0 6px 0;
list-style: none;
line-height: 14px;
font-size: 13px;
padding-left:0;
}
.v_blog-item-meta li {
float: left;
vertical-align: middle;
text-transform: capitalize;
font-size: 12px;
}
.v_blog-item-meta li:after {
content: '/';
opacity: .5;
margin: 0 5px;
}
.v_blog-item-read-more {
text-transform:uppercase;
font-size:12px;
}
.v_blog-item-title {
font-size:24px;
font-weight:500;
}
.fluid-width-video-wrapper {
width: 100%;
position: relative;
padding: 0;
}
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
embed, iframe, object, video {
max-width: 100%;
display: block;
}
|
css/blog.css
|
/* --------------------------------------------
MAIN
-------------------------------------------- */
.blog-item {
margin-bottom: 30px;
padding-top: 0;
border-top: 0;
z-index: 1;
}
.blog-item .date-overlay,
.blog-item .recent-post .date-overlay {
position: absolute;
top: -15px;
right: 30px;
z-index: 6;
}
.narrow-date-block {
line-height: 18px;
width: 46px;
background: #fff;
color: #222;
padding: 7px 8px 7px;
text-align: center;
text-transform: uppercase;
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
box-shadow: 1px 1px 1px rgba(0,0,0,.1);
background: #ffffff;
color: #252525;
}
.narrow-date-block span.month {
font-size: 12px;
}
.narrow-date-block span {
display: block;
}
.narrow-date-block span.day {
font-size: 18px;
}
.narrow-date-block span.year {
font-size: 11px;
opacity: .6;
}
.read-more-button {
font-size: 13px;
font-weight: 500;
padding: 10px 0 0;
display: inline-block;
border-bottom: 2px solid #e8e8e8;
}
figure.animated-overlay > a {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 10;
}
figure.animated-overlay .img-wrap {
position: relative;
overflow: hidden;
}
figure.animated-overlay figcaption {
-webkit-transition: all .4s;
-moz-transition: all .4s;
-o-transition: all .4s;
transition: all .4s;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 3;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
text-align: center;
overflow: hidden;
}
figure.animated-overlay figcaption {
background-color: rgba(37,37,37, 0.60);
}
figure.animated-overlay:hover figcaption {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
figure.animated-overlay.thumb-media-audio > .mejs-audio,
figure.animated-overlay.thumb-media-audio > audio {
position: absolute;
bottom: 0;
left: 0;
}
figure.animated-overlay.thumb-media-audio {
min-height: 120px;
background-image: url(../img/core/gplaypattern.png);
background-position: top left;
background-repeat: repeat;
}
.blog-item figure {
overflow: visible;
margin-bottom: 0;
position: relative;
margin-bottom: 0;
}
.blog-item .details-wrap > a:first-child {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: 2;
}
.blog-item figure.thumb-media-image + .details-wrap,
.blog-item figure.thumb-media-slider + .details-wrap {
padding-top: 0;
}
.blog-item .details-wrap {
padding: 25px 30px 95px;
position: relative;
background: #ffffff;
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.1);
box-shadow: 1px 1px 1px rgba(0,0,0,.1);
-webkit-transition: background-color .3s ease-out,color .3s ease-out;
-moz-transition: background-color .3s ease-out,color .3s ease-out;
transition: background-color .3s ease-out,color .3s ease-out;
}
.blog-item figure.thumb-media-image + .details-wrap:before,
.blog-item figure.thumb-media-slider + .details-wrap:before {
content: "";
position: absolute;
width: 92%;
height: 20px;
top: -20px;
left: 4%;
z-index: 5;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
border-bottom-color: #ffffff;
background: #ffffff;
}
.blog-item .details-wrap h2,
.blog-item .inst-overlay h2 {
font-size: 18px;
line-height: 26px;
margin: 0 0 15px;
font-weight: 400;
}
.blog-item-details {
padding-bottom: 15px;
}
.blog-item .excerpt {
font-size: 0.97em;
line-height: 24px;
}
.blog-item .read-more-button {
position: absolute;
bottom: 40px;
left: 30px;
z-index: 100;
padding: 10px 0 0;
display: inline-block;
border-bottom: 2px solid #e8e8e8;
}
.blog-item .comments-likes {
position: absolute;
bottom: 25px;
right: 30px;
}
.blog-item .comments-likes {
float: right;
font-weight: normal;
margin-top: 8px;
}
.blog-item .comments-likes .comments-wrapper {
display: inline-block;
margin-right: 0;
}
.blog-item .comments-likes .love-it-wrapper {
margin-left: 10px;
margin-top: 5px;
}
.blog-item .comments-wrapper > a {
position: relative;
display: inline-block;
}
.blog-item .love-it-wrapper a {
text-decoration: none;
position: relative;
display: inline-block;
}
.blog-item .comments-wrapper a > span,
.blog-item .love-it-wrapper a > span {
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
font-size: 10px;
padding-top: 15px;
font-weight: bold;
}
.blog-item .comments-likes .comments-wrapper,
.blog-item .comments-likes .love-it-wrapper {
display: inline-block;
}
.blog-item a {
color: #333333;
}
.blog-item figure audio {
margin: 0;
display: block;
visibility: visible !important;
}
.blog-item .sf-video-wrap > iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blog-item .sf-video-wrap {
padding-bottom: 80%;
position: relative;
width: 100%;
}
.blog-item figure .video-thumb {
position: relative;
padding-bottom: 56.25%;
height: 0;
}
.blog-item figure .video-thumb iframe,
.blog-item figure .video-thumb video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blog-item.format-quote .details-wrap {
padding-bottom: 20px;
padding-top: 30px;
}
.blog-item .details-wrap .quote-excerpt {
font-size: 26px;
line-height: 34px;
}
.blog-item .quote-excerpt {
font-family: 'MuseoRegular', sans-serif;
font-weight: 300;
color: #333;
}
.blog-item .quote-excerpt {
padding-bottom: 15px;
font-style: normal;
min-height: 70px;
display: block;
}
.blog-item.format-quote .blog-item-details,
.blog-item.format-quote .read-more-button,
.blog-item.format-quote .comments-likes {
display: none;
}
.blog-item .quote-excerpt:before {
font-family: 'FontAwesome';
content: "\f10d";
font-size: 30px;
margin-bottom: 25px;
display: block;
}
.recent-post figure {
width: 100%;
height: auto;
position: relative;
background-color: #212121;
margin-bottom: 25px;
}
.recent-post {
height: auto;
margin-bottom: 20px;
position: relative;
}
.recent-post .date-overlay {
position: absolute;
top: 15px;
right: 15px;
z-index: 6
}
.recent-post .date-overlay {
top: 15px !important;
}
.recent-post h5 {
font-family: 'MuseoRegular', sans-serif;
margin-top: 0;
margin-bottom: 10px;
font-weight: 400;
font-size: 18px;
}
.recent-post .blog-item-details {
padding-bottom: 5px;
font-size: 13px;
}
.recent-post .excerpt {
padding-top: 8px;
font-size: 0.97em;
line-height: 24px;
}
.posts-type-standard-row .recent-post {
margin-bottom: 30px;
}
.posts-type-standard-row .figure-wrap {
width: 50%;
float: left;
position: relative;
}
.posts-type-standard-row .figure-wrap .date-overlay {
right: 15px;
top: 15px;
}
.posts-type-standard-row .recent-post figure {
margin-bottom: 0;
}
.posts-type-standard-row .has-thumb .details-wrap {
width: 50%;
float: left;
padding-left: 30px;
}
.posts-type-list .recent-post:first-child {
border-top-width: 0;
padding-top: 0;
}
.posts-type-list .recent-post a.list-post-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.posts-type-list .recent-post figure {
width: 80px;
float: left;
margin-bottom: 0;
}
.posts-type-list .recent-post h4 {
margin-top: 0;
margin-bottom: 5px;
-webkit-transition: color .3s ease-out;
-moz-transition: color .3s ease-out;
transition: color .3s ease-out;
font-family: 'MuseoRegular', sans-serif;
font-weight: 400;
}
.posts-type-list .recent-post .post-item-details {
margin-bottom: 0;
font-size: 13px;
}
.posts-type-list .recent-post figure {
width: 80px;
float: left;
margin-bottom: 0;
}
.posts-type-list .recent-post.has-thumb .details-wrap {
margin-left: 100px;
}
.posts-type-list .recent-post .details-wrap {
max-width: 80%;
}
.posts-type-list .recent-post {
float: none;
width: 100%;
padding-left: 0;
padding-right: 0;
border-top: 1px solid #e3e3e3;
margin-bottom: 0;
padding-top: 20px;
padding-bottom: 20px;
position: relative;
}
article.v_blog-item {
margin-bottom:75px;
}
.v_blog-item-content {
padding-left:75px;
padding-top:40px;
padding-right:40px;
}
.v_blog-item-meta {
display: inline-block;
vertical-align: top;
margin: 0 0 6px 0;
list-style: none;
line-height: 14px;
font-size: 13px;
padding-left:0;
}
.v_blog-item-meta li {
float: left;
vertical-align: middle;
text-transform: capitalize;
font-size: 12px;
}
.v_blog-item-meta li:after {
content: '/';
opacity: .5;
margin: 0 5px;
}
.v_blog-item-read-more {
text-transform:uppercase;
font-size:12px;
}
.v_blog-item-title {
font-size:24px;
font-weight:500;
}
.fluid-width-video-wrapper {
width: 100%;
position: relative;
padding: 0;
}
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
embed, iframe, object, video {
max-width: 100%;
display: block;
}
| 0.341034 | 0.051368 |
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Sans:ital,wght@0,200;0,400;1,200;1,300&family=Mulish:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');
/*Icons*/
@import url('https://use.fontawesome.com/3b291fe2df.css');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
:root {
--font-primary:"Baloo Da 2";
--font-secondary: 'Josefin Sans', serif;
--font-action: 'Mulish', serif;
}
header {
width: 100%;
height: 100vh;
overflow: hidden;
}
.image_wrapper {
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgb(0,0,0, 0.8);
}
.image_wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
animation:zoom 20s;
}
@keyframes zoom {
0% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
.banner {
position: absolute;
top: 30%;
left: 15%;
}
.banner h1 {
color: #fff;
font-size: 3.5rem;
font-family: var(--font-primary);
font-weight: 200;
text-shadow: .2rem .2rem 2px rgba(0,0,0,0.4);
line-height: 3.5rem;
margin-bottom: 2rem;
opacity: 0;
animation: move-banner-text 1s 0.5s forwards;
}
.banner p {
font-family: var(--font-secondary);
color: #fff;
font-size: 2rem;
text-shadow: .1rem .1rem rgba(0,0,0,0.4);
margin-bottom: 2rem;
opacity: 0;
animation: move-banner-text 1s 0.6s forwards;
}
.banner button {
font-family: var(--font-action);
font-weight: bold;
background: rgb(187,0,0);
background: linear-gradient(90deg, rgba(187,0,0,1) 0%, rgba(255,0,0,1) 100%);
color: #fff;
padding: 1rem 2rem 1rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
opacity: 0;
animation: move-banner-text 1s 0.7s forwards;
}
.banner button:hover {
opacity: .9;
}
@keyframes move-banner-text {
0% {
transform: translateY(10rem) rotateY(-30deg);
opacity: 0;
}
100% {
transform: translateY(0rem) rotateY(0deg);
opacity: 1;
}
}
.hamburger {
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 2rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
cursor: pointer;
transition: all 1s;
}
.hamburger span {
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(187,0,0);
font-family: var(--font-action);
color: #fff;
opacity: 0;
transition: all .5s;
}
.hamburger span::before {
content: '';
position: absolute;
border-right: .5rem solid rgb(187,0,0);
border-top: .5rem solid transparent;
border-left: .5rem solid transparent;
border-bottom: .5rem solid transparent;
left: -1rem;
}
.show-menu .hamburger:hover span {
opacity: 1;
}
.show-menu .hamburger {
right: 16rem;
}
.line {
width: 100%;
background-color: #fff;
height: 2px;
box-shadow: .1rem .1rem 1px rgba(0,0,0,0.4);
transition: transform 1s;
}
.show-menu .line {
background-color: #555;
box-shadow: none;
}
.show-menu #line2 {
opacity: 0;
visibility: hidden;
}
.show-menu #line1 {
transform: rotate(45deg) translate(.4rem, .60rem);
}
.show-menu #line3 {
transform: rotate(-45deg) translate(.1rem, -.40rem);
}
.sidebar {
width: 20rem;
height: 100vh;
background-color: #fff;
position: fixed;
top: 0;
right: -20rem;
transition: all .5s;
}
.show-menu .sidebar {
right: 0;
}
.menu {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.menu-item {
text-align: left;
margin-bottom: .5rem;
}
.menu-link {
font-family: var(--font-action);
font-size: 2rem;
color: #555;
transition: color 1s;
}
.menu-link:hover {
color: #ed4222;
}
.social-media {
position: absolute;
bottom: 2rem;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.social-media i {
background-color: #ed4222;
color: rgba(255,255,255,1);
height: 2.5rem;
width: 2.5rem;
font-size: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
cursor: pointer;
transition: background-color 1s;
}
.social-media i:hover {
background-color: #9b230e;
}
|
assets/css/style.css
|
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Sans:ital,wght@0,200;0,400;1,200;1,300&family=Mulish:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');
/*Icons*/
@import url('https://use.fontawesome.com/3b291fe2df.css');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
:root {
--font-primary:"Baloo Da 2";
--font-secondary: 'Josefin Sans', serif;
--font-action: 'Mulish', serif;
}
header {
width: 100%;
height: 100vh;
overflow: hidden;
}
.image_wrapper {
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgb(0,0,0, 0.8);
}
.image_wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
animation:zoom 20s;
}
@keyframes zoom {
0% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
.banner {
position: absolute;
top: 30%;
left: 15%;
}
.banner h1 {
color: #fff;
font-size: 3.5rem;
font-family: var(--font-primary);
font-weight: 200;
text-shadow: .2rem .2rem 2px rgba(0,0,0,0.4);
line-height: 3.5rem;
margin-bottom: 2rem;
opacity: 0;
animation: move-banner-text 1s 0.5s forwards;
}
.banner p {
font-family: var(--font-secondary);
color: #fff;
font-size: 2rem;
text-shadow: .1rem .1rem rgba(0,0,0,0.4);
margin-bottom: 2rem;
opacity: 0;
animation: move-banner-text 1s 0.6s forwards;
}
.banner button {
font-family: var(--font-action);
font-weight: bold;
background: rgb(187,0,0);
background: linear-gradient(90deg, rgba(187,0,0,1) 0%, rgba(255,0,0,1) 100%);
color: #fff;
padding: 1rem 2rem 1rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
opacity: 0;
animation: move-banner-text 1s 0.7s forwards;
}
.banner button:hover {
opacity: .9;
}
@keyframes move-banner-text {
0% {
transform: translateY(10rem) rotateY(-30deg);
opacity: 0;
}
100% {
transform: translateY(0rem) rotateY(0deg);
opacity: 1;
}
}
.hamburger {
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 2rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
cursor: pointer;
transition: all 1s;
}
.hamburger span {
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(187,0,0);
font-family: var(--font-action);
color: #fff;
opacity: 0;
transition: all .5s;
}
.hamburger span::before {
content: '';
position: absolute;
border-right: .5rem solid rgb(187,0,0);
border-top: .5rem solid transparent;
border-left: .5rem solid transparent;
border-bottom: .5rem solid transparent;
left: -1rem;
}
.show-menu .hamburger:hover span {
opacity: 1;
}
.show-menu .hamburger {
right: 16rem;
}
.line {
width: 100%;
background-color: #fff;
height: 2px;
box-shadow: .1rem .1rem 1px rgba(0,0,0,0.4);
transition: transform 1s;
}
.show-menu .line {
background-color: #555;
box-shadow: none;
}
.show-menu #line2 {
opacity: 0;
visibility: hidden;
}
.show-menu #line1 {
transform: rotate(45deg) translate(.4rem, .60rem);
}
.show-menu #line3 {
transform: rotate(-45deg) translate(.1rem, -.40rem);
}
.sidebar {
width: 20rem;
height: 100vh;
background-color: #fff;
position: fixed;
top: 0;
right: -20rem;
transition: all .5s;
}
.show-menu .sidebar {
right: 0;
}
.menu {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.menu-item {
text-align: left;
margin-bottom: .5rem;
}
.menu-link {
font-family: var(--font-action);
font-size: 2rem;
color: #555;
transition: color 1s;
}
.menu-link:hover {
color: #ed4222;
}
.social-media {
position: absolute;
bottom: 2rem;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.social-media i {
background-color: #ed4222;
color: rgba(255,255,255,1);
height: 2.5rem;
width: 2.5rem;
font-size: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
cursor: pointer;
transition: background-color 1s;
}
.social-media i:hover {
background-color: #9b230e;
}
| 0.561696 | 0.085289 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 15px;
}
body{
background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.5)), url('../WP2.jpg') no-repeat top center;
background-size: cover;
height: 100vh;
background-position: center;
}
.wrapper{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
padding: 0 20px;
}
.logo img{
float: left;
width: 110px;
height: auto;
padding: 1.5%;
}
.contact-form{
display: flex;
max-width: 550px;
margin: 0 auto;
background: rgba(0,0,0,0.8);
padding: 30px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.input-fields{
display: flex;
flex-direction: column;
margin-right: 4%;
}
.input-fields,
.msg{
width: 48%;
}
.input-fields .input,
.msg textarea{
margin: 10px 0;
background: transparent;
border: 0px;
border-bottom: 2px solid #c5ecfd;
padding: 10px;
color: #c5ecfd;
width: 100%;
}
.msg textarea{
height: 212px;
}
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #c5ecfd;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #c5ecfd;
}
:-ms-input-placeholder {
/* IE 10+ */
color: #c5ecfd;
}
.btn {
background: #39b7dd;
text-align: center;
padding: 15px;
border-radius: 5px;
color: #fff;
cursor: pointer;
text-transform: uppercase;
}
@media screen and (max-width: 600px){
.contact-form{
flex-direction: column;
}
.msg textarea{
height: 80px;
}
.input-fields,
.msg{
width: 100%;
}
}
.btn{
position: absolute;
top: 115%;
transform: translate(-50%, -50%);
width: 200px;
border: 5px solid #f9c23c;
padding: 15px;
border-radius: 25px;
cursor: pointer;
overflow: hidden;
}
/* Style the p tag */
.btn p{
text-transform: uppercase;
text-align: center;
color: #fff;
font-weight: 600;
font-size: 15px;
margin-left: 30px;
transition: all 0.5s ease;
}
/* Style the first icon with class send */
.send{
position: absolute;
top:15px;
left: 30px;
color: #fff;
transition: all 0.5s ease;
}
/* Style the second icon with class send2 */
.send2{
position: absolute;
top:80px;
left: 30px;
color: #696666;
transition: all 0.5s ease;
}
/* Hover effects */
.btn:hover{
background: #f9c23c;
transition: all 0.5s ease;
}
.btn:hover p{
color: #696666;
transition: all 0.5s ease;
animation: move 1s linear 1s forwards;
}
.btn:hover .send{
top: -50px;
transition: all 0.5s ease;
}
.btn:hover .send2{
top: 15px;
transition: all 0.5s ease;
animation: sending 1s linear 1s forwards;
}
/* CSS3 animation keyframes */
@keyframes sending{
0%{
transform: translateY(0);
}
100%{
transform: translate(40px, -60px);
}
}
@keyframes move{
0%{
transform: translateX(0);
}
100%{
transform: translateX(-18px);
}
}
|
Tester/CSS/StyleForm.css
|
*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 15px;
}
body{
background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.5)), url('../WP2.jpg') no-repeat top center;
background-size: cover;
height: 100vh;
background-position: center;
}
.wrapper{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
padding: 0 20px;
}
.logo img{
float: left;
width: 110px;
height: auto;
padding: 1.5%;
}
.contact-form{
display: flex;
max-width: 550px;
margin: 0 auto;
background: rgba(0,0,0,0.8);
padding: 30px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.input-fields{
display: flex;
flex-direction: column;
margin-right: 4%;
}
.input-fields,
.msg{
width: 48%;
}
.input-fields .input,
.msg textarea{
margin: 10px 0;
background: transparent;
border: 0px;
border-bottom: 2px solid #c5ecfd;
padding: 10px;
color: #c5ecfd;
width: 100%;
}
.msg textarea{
height: 212px;
}
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #c5ecfd;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #c5ecfd;
}
:-ms-input-placeholder {
/* IE 10+ */
color: #c5ecfd;
}
.btn {
background: #39b7dd;
text-align: center;
padding: 15px;
border-radius: 5px;
color: #fff;
cursor: pointer;
text-transform: uppercase;
}
@media screen and (max-width: 600px){
.contact-form{
flex-direction: column;
}
.msg textarea{
height: 80px;
}
.input-fields,
.msg{
width: 100%;
}
}
.btn{
position: absolute;
top: 115%;
transform: translate(-50%, -50%);
width: 200px;
border: 5px solid #f9c23c;
padding: 15px;
border-radius: 25px;
cursor: pointer;
overflow: hidden;
}
/* Style the p tag */
.btn p{
text-transform: uppercase;
text-align: center;
color: #fff;
font-weight: 600;
font-size: 15px;
margin-left: 30px;
transition: all 0.5s ease;
}
/* Style the first icon with class send */
.send{
position: absolute;
top:15px;
left: 30px;
color: #fff;
transition: all 0.5s ease;
}
/* Style the second icon with class send2 */
.send2{
position: absolute;
top:80px;
left: 30px;
color: #696666;
transition: all 0.5s ease;
}
/* Hover effects */
.btn:hover{
background: #f9c23c;
transition: all 0.5s ease;
}
.btn:hover p{
color: #696666;
transition: all 0.5s ease;
animation: move 1s linear 1s forwards;
}
.btn:hover .send{
top: -50px;
transition: all 0.5s ease;
}
.btn:hover .send2{
top: 15px;
transition: all 0.5s ease;
animation: sending 1s linear 1s forwards;
}
/* CSS3 animation keyframes */
@keyframes sending{
0%{
transform: translateY(0);
}
100%{
transform: translate(40px, -60px);
}
}
@keyframes move{
0%{
transform: translateX(0);
}
100%{
transform: translateX(-18px);
}
}
| 0.395484 | 0.065785 |
body {
width: 1440px;
margin: 0 auto;
font-family: "Helvetica Neue", sans-serif;
color: #000;
}
.header {
height: 409px;
border-top: 1px solid transparent;
border-bottom: 1px solid rgba(37, 124, 244, 0.4);
background: rgba(0, 101, 242, 0.12);
}
.header__content {
width: 540px;
height: 289px;
margin: 60px 450px;
text-align: center;
}
.header__content__title {
height: 96px;
margin-bottom: 24px;
}
h1 {
font-size: 40px;
line-height: 48px;
letter-spacing: -0.5px;
}
.header__content__text {
height: 84px;
margin-bottom: 40px;
}
.text_18pt {
font-size: 18px;
line-height: 28px;
}
.header__content__logos {
width: 400px;
height: 45px;
margin: 0 70px;
position: relative;
}
.logo {
position: absolute;
top: 50%;
transform: translate(0, -50%);
}
img[alt="pay pal logo"] {
left: 0;
}
img[alt="android pay logo"] {
left: 126px;
}
img[alt="apple pay logo"] {
right: 144px;
}
img[alt="samsung pay logo"] {
right: 0;
}
.cover {
height: 500px;
}
.cover_column {
display: inline-block;
vertical-align: top;
}
.cover__content {
height: 300px;
width: 445px;
margin: 100px 110px 100px 165px;
}
.cover__content__title {
height: 120px;
margin-bottom: 24px;
}
h2 {
font-size: 56px;
line-height: 60px;
letter-spacing: -1px;
margin: 0;
}
.cover__content__text {
height: 84px;
margin-bottom: 44px;
}
.cover__content__link {
width: 88px;
height: 28px;
}
a {
text-decoration: none;
font-size: 18px;
line-height: 28px;
color: #0065F2;
}
.cover__media {
height: 380px;
width: 555px;
margin: 60px auto;
}
.section {
height: 800px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.section__content {
width: 1110px;
height: 588px;
margin: 40px 165px;
}
.section__content__title {
margin-bottom: 40px;
}
h3 {
font-size: 24px;
line-height: 32px;
letter-spacing: -0.1px;
margin: 0;
}
.section__content__headline {
margin: 16px 0;
}
h4 {
font-size: 18px;
line-height: 28px;
font-weight: 500;
margin: 0;
}
.text_16pt {
font-size: 16px;
line-height: 24px;
letter-spacing: 0.1px;
margin: 0;
}
.text_large-margin {
margin-bottom: 26px;
}
.text_blue {
color: #0065F2;
}
ul {
padding: 0;
margin-left: 17px;
}
.list__item {
margin-bottom: 8px;
}
|
Tasks/Task_4 [Mockup]/style.css
|
body {
width: 1440px;
margin: 0 auto;
font-family: "Helvetica Neue", sans-serif;
color: #000;
}
.header {
height: 409px;
border-top: 1px solid transparent;
border-bottom: 1px solid rgba(37, 124, 244, 0.4);
background: rgba(0, 101, 242, 0.12);
}
.header__content {
width: 540px;
height: 289px;
margin: 60px 450px;
text-align: center;
}
.header__content__title {
height: 96px;
margin-bottom: 24px;
}
h1 {
font-size: 40px;
line-height: 48px;
letter-spacing: -0.5px;
}
.header__content__text {
height: 84px;
margin-bottom: 40px;
}
.text_18pt {
font-size: 18px;
line-height: 28px;
}
.header__content__logos {
width: 400px;
height: 45px;
margin: 0 70px;
position: relative;
}
.logo {
position: absolute;
top: 50%;
transform: translate(0, -50%);
}
img[alt="pay pal logo"] {
left: 0;
}
img[alt="android pay logo"] {
left: 126px;
}
img[alt="apple pay logo"] {
right: 144px;
}
img[alt="samsung pay logo"] {
right: 0;
}
.cover {
height: 500px;
}
.cover_column {
display: inline-block;
vertical-align: top;
}
.cover__content {
height: 300px;
width: 445px;
margin: 100px 110px 100px 165px;
}
.cover__content__title {
height: 120px;
margin-bottom: 24px;
}
h2 {
font-size: 56px;
line-height: 60px;
letter-spacing: -1px;
margin: 0;
}
.cover__content__text {
height: 84px;
margin-bottom: 44px;
}
.cover__content__link {
width: 88px;
height: 28px;
}
a {
text-decoration: none;
font-size: 18px;
line-height: 28px;
color: #0065F2;
}
.cover__media {
height: 380px;
width: 555px;
margin: 60px auto;
}
.section {
height: 800px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.section__content {
width: 1110px;
height: 588px;
margin: 40px 165px;
}
.section__content__title {
margin-bottom: 40px;
}
h3 {
font-size: 24px;
line-height: 32px;
letter-spacing: -0.1px;
margin: 0;
}
.section__content__headline {
margin: 16px 0;
}
h4 {
font-size: 18px;
line-height: 28px;
font-weight: 500;
margin: 0;
}
.text_16pt {
font-size: 16px;
line-height: 24px;
letter-spacing: 0.1px;
margin: 0;
}
.text_large-margin {
margin-bottom: 26px;
}
.text_blue {
color: #0065F2;
}
ul {
padding: 0;
margin-left: 17px;
}
.list__item {
margin-bottom: 8px;
}
| 0.336222 | 0.064801 |
.course-col.curriculum {
width: 520px;
}
.course-tile.curriculum {
height: 245px;
padding: 0px;
}
.course-image.curriculum {
height: 145px;
background: #f5f5f5;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.course-tile-img {
position: absolute;
left: 0px;
top: 0px;
width: 51%;
height: 145px;
border-top-left-radius: 5px;
}
.mdl-cell.mdl-cell-2-col.course-col.curriculum .card--button-wrap .card--info-container {
color: #fff;
font-size: 12px;
line-height: 20px;
margin: 10px;
height: 80px;
}
.card--info-container .bullets-info {
font-size: 12px;
}
.tile-button,
.flat-tile-button {
border-radius: 4px;
text-transform: none;
}
.flat-tile-button {
color: #fff;
background: transparent;
}
.course-description {
line-height: 15px;
overflow: hidden;
font-size: 13px;
margin-top: 0px;
z-index: 0;
margin-bottom: 13px;
height: 30px;
position: absolute;
right: 10px;
top: 10px;
width: 44%;
height: auto;
color: #616161;
}
.course-description-bullets {
position: absolute;
right: 20px;
top: 47px;
width: 42%;
height: auto;
color: #616161;
}
.course-description-bullets .bullets-info {
font-size: 12px;
line-height: 18px;
}
.course-description-bullets .material-icons {
font-size: 13px;
vertical-align: middle;
margin-right: 8px;
}
mat-card-subtitle.supporting-text-2.mat-card-subtitle {
padding: 5px 10px;
}
.course-title {
margin: 0px;
font-weight: 400;
color: #212121;
height: 40px;
line-height: 18px;
overflow: hidden;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap {
background: rgba(0,0,0,.8);
display: none;
width: 100%;
height: 145px;
z-index: 2;
position: absolute;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding-bottom: 5px;
box-sizing: border-box;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--info-container {
color: #fff;
font-size: 12px;
line-height: 20px;
margin: 10px;
height: 80px;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--info-container .material-icons {
font-size: 13px;
vertical-align: middle;
margin-right: 8px;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--button-container {
margin: -5px 10px 0px;
}
.mdl-cell.mdl-cell-2-col.course-col:hover .card--button-wrap {
display: block;
animation: fadeIn ease .5s;
-webkit-animation: fadeIn ease .5s;
-moz-animation: fadeIn ease .5s;
-o-animation: fadeIn ease .5s;
-ms-animation: fadeIn ease .5s;
}
.progress-description {
line-height: 15px;
overflow: hidden;
font-size: 13px;
margin-top: 5px;
z-index: 99;
margin-bottom: 0px;
height: 15px;
color: rgba(0, 0, 0, .54);
}
#progress-bar-container {
margin-top: 18px;
}
mat-progress-bar {
height: 2px !important;
}
:host /deep/ .mat-progress-bar-fill::after {
background-color: #34ad07 !important;
}
:host /deep/ .mat-progress-bar-buffer {
background-color: #CCCCCC !important;
}
@keyframes fadeIn{
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-o-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@media (max-width: 1320px){
.course-col.curriculum{
width: 450px;
}
.course-description{
width: 37%;
font-size: 12px;
}
.course-description-bullets{
width: 35%;
}
.course-tile-img{
width: 59%;
}
}
|
src/app/UberReaderClient/UberReaderComponents/SharedModules/tile-group-module/components/expanded-tile-item.component.css
|
.course-col.curriculum {
width: 520px;
}
.course-tile.curriculum {
height: 245px;
padding: 0px;
}
.course-image.curriculum {
height: 145px;
background: #f5f5f5;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.course-tile-img {
position: absolute;
left: 0px;
top: 0px;
width: 51%;
height: 145px;
border-top-left-radius: 5px;
}
.mdl-cell.mdl-cell-2-col.course-col.curriculum .card--button-wrap .card--info-container {
color: #fff;
font-size: 12px;
line-height: 20px;
margin: 10px;
height: 80px;
}
.card--info-container .bullets-info {
font-size: 12px;
}
.tile-button,
.flat-tile-button {
border-radius: 4px;
text-transform: none;
}
.flat-tile-button {
color: #fff;
background: transparent;
}
.course-description {
line-height: 15px;
overflow: hidden;
font-size: 13px;
margin-top: 0px;
z-index: 0;
margin-bottom: 13px;
height: 30px;
position: absolute;
right: 10px;
top: 10px;
width: 44%;
height: auto;
color: #616161;
}
.course-description-bullets {
position: absolute;
right: 20px;
top: 47px;
width: 42%;
height: auto;
color: #616161;
}
.course-description-bullets .bullets-info {
font-size: 12px;
line-height: 18px;
}
.course-description-bullets .material-icons {
font-size: 13px;
vertical-align: middle;
margin-right: 8px;
}
mat-card-subtitle.supporting-text-2.mat-card-subtitle {
padding: 5px 10px;
}
.course-title {
margin: 0px;
font-weight: 400;
color: #212121;
height: 40px;
line-height: 18px;
overflow: hidden;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap {
background: rgba(0,0,0,.8);
display: none;
width: 100%;
height: 145px;
z-index: 2;
position: absolute;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding-bottom: 5px;
box-sizing: border-box;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--info-container {
color: #fff;
font-size: 12px;
line-height: 20px;
margin: 10px;
height: 80px;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--info-container .material-icons {
font-size: 13px;
vertical-align: middle;
margin-right: 8px;
}
.mdl-cell.mdl-cell-2-col.course-col .card--button-wrap .card--button-container {
margin: -5px 10px 0px;
}
.mdl-cell.mdl-cell-2-col.course-col:hover .card--button-wrap {
display: block;
animation: fadeIn ease .5s;
-webkit-animation: fadeIn ease .5s;
-moz-animation: fadeIn ease .5s;
-o-animation: fadeIn ease .5s;
-ms-animation: fadeIn ease .5s;
}
.progress-description {
line-height: 15px;
overflow: hidden;
font-size: 13px;
margin-top: 5px;
z-index: 99;
margin-bottom: 0px;
height: 15px;
color: rgba(0, 0, 0, .54);
}
#progress-bar-container {
margin-top: 18px;
}
mat-progress-bar {
height: 2px !important;
}
:host /deep/ .mat-progress-bar-fill::after {
background-color: #34ad07 !important;
}
:host /deep/ .mat-progress-bar-buffer {
background-color: #CCCCCC !important;
}
@keyframes fadeIn{
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-o-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@media (max-width: 1320px){
.course-col.curriculum{
width: 450px;
}
.course-description{
width: 37%;
font-size: 12px;
}
.course-description-bullets{
width: 35%;
}
.course-tile-img{
width: 59%;
}
}
| 0.487307 | 0.109801 |
background-image: url(../img/patterns/black-orchid.png);
}
/* Loading */
#loader{
position: fixed;
height: 100%;
width: 100%;
z-index: 100;
background: #a600a6;
background: -webkit-linear-gradient(to right, #a600a6 , #333399);
background: linear-gradient(to right, #a600a6 , #333399);
}
.loading{
position: absolute;
top: 50%;
width: 100%;
text-align: center;
font-size: 28px;
font-weight: bold;
text-shadow: 0 2px 0 #A67A00;
color: #FFBB00;
font-family: 'Roboto', sans-serif;
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50% { opacity: 0.0; }
}
/* Fancy lines */
.fancy {
line-height: 0.5;
text-align: center;
font-size: 30px;
margin-top: 20px;
}
.fancy span {
display: inline-block;
position: relative;
}
.fancy span:before,
.fancy span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 1px solid white;
border-top: 1px solid white;
top: 8px;
width: 130px;
}
.fancy span:before {
right: 100%;
margin-right: 15px;
}
.fancy span:after {
left: 100%;
margin-left: 15px;
}
.spacer-10{
display: block;
height: 10px;
}
.spacer-20{
display: block;
height: 20px;
}
.spacer-40{
display: block;
height: 40px;
}
/*Vertical centering*/
.vertical-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */
display: flex;
align-items: center;
}
.vertical-center:before { /* create a full-height inline block pseudo=element */
content: " ";
display: inline-block;
vertical-align: middle; /* vertical alignment of the inline element */
height: 100%;
}
.vertical-center > .container {
max-width: 100%;
display: inline-block;
vertical-align: middle;
}
/* Social */
.social{
background: url("../img/patterns/binding_dark.png");
position: absolute;
bottom: 50px;
border-radius: 3px;
-webkit-box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
-moz-box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
left: -245px;
animation-timing-function: ease-in;
z-index: 99;
}
.social .label{
display: block;
position: absolute;
left: 224px;
background-color: rgba(47, 61, 160, 0.51);
background-image: url(../img/patterns/brushed-alum.png);
border-bottom: 1px solid #59476B;
border-top: 1px solid #5E5865;
top: 30px;
margin: 0;
padding: 9px 12px;
letter-spacing: 4px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
cursor: pointer;
}
.social .icons{
display: block;
margin: 0 38px 0 20px;
}
.social .icon{
float: left;
margin: 15px 7px;
}
.social a{
-webkit-transition:background 0.5s ease-in-out;
-moz-transition:background 0.5s ease-in-out;
-o-transition:background 0.5s ease-in-out;
transition:background 0.5s ease-in-out;
display: block;
height: 60px;
width: 60px;
background-size: contain;
}
.social .facebook{
background: url('../img/social/facebook0.png');
}
.social .facebook:hover{
background: url('../img/social/facebook1.png');
}
.social .twitter{
background: url('../img/social/twitter0.png');
}
.social .twitter:hover{
background: url('../img/social/twitter1.png');
}
.social .linkedin{
background: url('../img/social/linkedin0.png');
}
.social .linkedin:hover{
background: url('../img/social/linkedin1.png');
}
.social .tooltip{
opacity: 1;
display: none;
left: 285px;
width: 170px;
top: 25px;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body:after{
display:none;
content: url('../img/social/facebook1.png') url('../img/social/twitter1.png') url('../img/social/linkedin1.png');
}
|
css/style.css
|
background-image: url(../img/patterns/black-orchid.png);
}
/* Loading */
#loader{
position: fixed;
height: 100%;
width: 100%;
z-index: 100;
background: #a600a6;
background: -webkit-linear-gradient(to right, #a600a6 , #333399);
background: linear-gradient(to right, #a600a6 , #333399);
}
.loading{
position: absolute;
top: 50%;
width: 100%;
text-align: center;
font-size: 28px;
font-weight: bold;
text-shadow: 0 2px 0 #A67A00;
color: #FFBB00;
font-family: 'Roboto', sans-serif;
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50% { opacity: 0.0; }
}
/* Fancy lines */
.fancy {
line-height: 0.5;
text-align: center;
font-size: 30px;
margin-top: 20px;
}
.fancy span {
display: inline-block;
position: relative;
}
.fancy span:before,
.fancy span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 1px solid white;
border-top: 1px solid white;
top: 8px;
width: 130px;
}
.fancy span:before {
right: 100%;
margin-right: 15px;
}
.fancy span:after {
left: 100%;
margin-left: 15px;
}
.spacer-10{
display: block;
height: 10px;
}
.spacer-20{
display: block;
height: 20px;
}
.spacer-40{
display: block;
height: 40px;
}
/*Vertical centering*/
.vertical-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */
display: flex;
align-items: center;
}
.vertical-center:before { /* create a full-height inline block pseudo=element */
content: " ";
display: inline-block;
vertical-align: middle; /* vertical alignment of the inline element */
height: 100%;
}
.vertical-center > .container {
max-width: 100%;
display: inline-block;
vertical-align: middle;
}
/* Social */
.social{
background: url("../img/patterns/binding_dark.png");
position: absolute;
bottom: 50px;
border-radius: 3px;
-webkit-box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
-moz-box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
box-shadow: 2px 2px 10px -1px rgba(0,0,0,0.52);
left: -245px;
animation-timing-function: ease-in;
z-index: 99;
}
.social .label{
display: block;
position: absolute;
left: 224px;
background-color: rgba(47, 61, 160, 0.51);
background-image: url(../img/patterns/brushed-alum.png);
border-bottom: 1px solid #59476B;
border-top: 1px solid #5E5865;
top: 30px;
margin: 0;
padding: 9px 12px;
letter-spacing: 4px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
cursor: pointer;
}
.social .icons{
display: block;
margin: 0 38px 0 20px;
}
.social .icon{
float: left;
margin: 15px 7px;
}
.social a{
-webkit-transition:background 0.5s ease-in-out;
-moz-transition:background 0.5s ease-in-out;
-o-transition:background 0.5s ease-in-out;
transition:background 0.5s ease-in-out;
display: block;
height: 60px;
width: 60px;
background-size: contain;
}
.social .facebook{
background: url('../img/social/facebook0.png');
}
.social .facebook:hover{
background: url('../img/social/facebook1.png');
}
.social .twitter{
background: url('../img/social/twitter0.png');
}
.social .twitter:hover{
background: url('../img/social/twitter1.png');
}
.social .linkedin{
background: url('../img/social/linkedin0.png');
}
.social .linkedin:hover{
background: url('../img/social/linkedin1.png');
}
.social .tooltip{
opacity: 1;
display: none;
left: 285px;
width: 170px;
top: 25px;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body:after{
display:none;
content: url('../img/social/facebook1.png') url('../img/social/twitter1.png') url('../img/social/linkedin1.png');
}
| 0.273769 | 0.112942 |
HTML {
height: 100%;
/*using system font-stack*/
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: calc(16px + (20 - 16) * (100vw - 300px) / (1100 - 300) );
line-height: 1.5;
box-sizing: border-box;
}
BODY {
height: 100%;
margin: 0;
padding: 0;
color: rgba(255, 255, 255, 0.7);
background: rgb(18, 97, 126);
background-image: linear-gradient(-225deg, rgb(18, 97, 126) 0%, rgb(8, 35, 60) 100%);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
*, *::before, *::after {
box-sizing: inherit;
color: inherit;
}
H1, H2 {
margin: 0;
}
A {
text-decoration: none;
}
P {
margin: 0;
}
FIGURE {
margin: 0;
}
IMG {
max-width: 100%;
}
/*Actual Style*/
/*============================
HEADER
============================*/
.c-header {
position: absolute;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 7.5rem;/*~120px*/
}
/*============================
HEADER TITLE
============================*/
.c-header__title {
color: rgba(241, 241, 241, 1);
}
/*============================
MAIN
============================*/
.c-main {
}
/*============================
SECTION
============================*/
.c-section {
min-height: 100vh;
padding: 2rem 1rem;
overflow: hidden;
}
.c-section:nth-child(even) {
background-image: linear-gradient(400deg, rgb(18, 97, 126) 0%, rgb(8, 35, 60) 100%);
}
/*==============================
SECTION CONTENT CONTAINER
================================*/
.c-section__content-container {
position: relative;
display: flex;
}
/*============================
SECTION TITLE
============================*/
.c-section__title {
max-width: max-content;
margin: 0 auto;
position: relative;
padding: 0.5rem 1rem;
}
.c-section__title::before, .c-section__title::after {
content: "";
position: absolute;
}
.c-section__title::before {
left: 0;
top: 0;
width: 2rem;
height: 2rem;
border: 3px solid transparent;
border-top-color: inherit;
border-left-color: inherit;
}
.c-section__title::after {
right: 0;
bottom: 0;
width: 2rem;
height: 2rem;
border: 3px solid transparent;
border-bottom-color: inherit;
border-right-color: inherit;
}
/*============================
SECTION IMAGE WRAPPER
============================*/
.c-section__image-wrapper {
}
/*============================
SECTION IMAGE
============================*/
.c-section__image {
}
/*============================
SECTION--GOING DIGITAL
============================*/
.c-section--going-digital {
display: flex;
flex-direction: column;
}
.c-section--going-digital .c-section__image {
}
.c-section--going-digital .c-section__content-container {
height: 100%;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
flex-grow: 1;
}
.c-section--going-digital .c-section__content-container > * {
min-width: 33%;
max-width: 100%;
flex-grow: 1;
flex-basis: calc(1100px * 750 - 100% * 750);
}
.c-section--going-digital .c-section__paragraph {
align-self: flex-start;
}
/*=================================
SECTION--TRIED TESTED PROVEN
===================================*/
.c-section--tried-tested-proven {
display: flex;
flex-direction: column;
background: url(../Images/iphonex-1.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-clip: content-box;
background-origin: content-box;
padding-top: 3rem;
}
.c-section--tried-tested-proven .c-section__title {
margin-top: -2.5rem;
}
.c-section--tried-tested-proven .c-section__content-container {
align-items: center;
justify-content: center;
flex-grow: 1;
}
.c-section--tried-tested-proven .c-section__paragraph {
max-width: 50rem;
min-height: 25vmin;
padding: 20vmin 1rem;
background: rgba(15, 79, 107, 0.6);
backdrop-filter: blur(6px);
border-radius: 0.5rem;
box-shadow: 0px 2px 6px 0px rgba(45, 46, 47, 0.3);
}
/*=================================
SECTION--GROWTH
===================================*/
.c-section--growth {
}
.c-section--growth .c-section__content-container {
flex-direction: column;
align-items: center;
padding: 3rem 0;
}
.c-section--growth .c-section__paragraph {
padding: 1rem 2rem;
background: rgb(248 254 255);
color: rgba(41, 44, 47, 0.7);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
border-radius: 2rem;
}
.c-section--growth .c-section__paragraph:first-child {
max-width: 34.375rem;/*~550px*/
align-self: flex-end;
}
.c-section--growth .c-section__paragraph:last-child {
align-self: flex-start;
max-width: 29.375rem;/*470px*/
}
/*=================================
SECTION--BRAND IDENTITY
===================================*/
.c-section--brand-identity {
overflow: hidden;
}
.c-section--brand-identity .c-section__title {
}
.c-section--brand-identity .c-section__content-container {
flex-direction: column;
flex-grow: 1;
align-items: center;
}
.c-section--brand-identity .c-section__paragraph {
align-self: flex-start;
margin-top: 5rem;
max-width: 43.75rem; /*~700px*/
padding: 2rem;
border-radius: 0.5rem;
background: linear-gradient(165deg, transparent 20%, black 97%);
box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, .3);
z-index: 1;
}
.c-section--brand-identity .c-section__image-wrapper {
position: relative;
margin-top: 20vh;
}
.c-section--brand-identity .c-section__image-wrapper::after {
content: "";
position: absolute;
display: block;
left: 50%;
top: 13%;
width: 18.75rem;
height: 18.75rem;
background: rgba(255, 255, 255, 0.19);
transform: translate(-50%, -50%) rotate(45deg);
}
.u-has-js .c-section--brand-identity .c-section__image-wrapper::after {
animation: rotate 1s linear infinite;
animation-play-state: paused;
animation-delay: calc(var(--scroll, 45deg) * -1s);
}
@keyframes rotate {
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.c-section--brand-identity .c-section__image {
}
/*=================================
SECTION--SALES REPORTING
===================================*/
.c-section--sales-reporting {
display: flex;
flex-direction: column;
}
.c-section--sales-reporting .c-section__content-container {
flex-grow: 1;
flex-direction: column;
}
.c-section--sales-reporting .c-section__paragraph {
display: flex;
align-items: center;
max-width: 100%;
padding: 0;
padding: 2rem 0;
flex-grow: 1;
}
.c-section--sales-reporting .c-section__image-wrapper {
display: flex;
flex-direction: column;
}
/*============================
SECTION PARAGRAPH
============================*/
.c-section__paragraph {
margin-bottom: 0.5rem;
font-size: 1.25rem;
}
/*============================
SECTION EMPHASIS
============================*/
.c-section__emphasis {
font-style: normal;
font-weight: bolder;
}
/*============================
DOWNLOAD LINK
============================*/
.o-download-link {
width: 12.5rem; /*~200px*/
height: 6.25rem;/*~100px*/
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.o-download-link--android {
background-image: url("../Images/android.png");
}
.o-download-link--apple {
background-image: url("../Images/apple.png");
}
/*============================
JUMBO
============================*/
.c-jumbo {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 7rem;
}
.c-jumbo__title {
max-width: 24.375rem; /*~390px*/
margin: 0 auto 2rem;
text-align: center;
font-size: 1.5rem;
font-weight: 300;
}
.c-jumbo__image {
width: 100%;
max-width: 21.875rem; /*~350px*/
}
.c-jumbo__links {
display: flex;
justify-content: center;
width: 100%;
margin-top: auto;
transform: translateY(-4vh);
}
.c-jumbo__link {
}
.c-jumbo__link:first-child {
margin-right: 1rem;
}
.c-jumbo__link--android {
}
.c-jumbo__link--apple {
width: 10.6875rem; /*~171px*/
}
/*============================
FOOTER
============================*/
.c-footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem 2rem;
justify-content: center;
}
.c-footer__links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
}
.c-footer__links::before {
content: "Get it on";
font-size: 2rem;
}
.c-footer__image-wrapper {
order: 1;
}
.c-footer__image-wrapper svg {
max-width: 100%;
}
/*-----------------------
@MEDIA QUERIES
-------------------------*/
@media only screen and (min-width: 800px) {
/*we animate items only if we have JS enabled and screen is more than 800px wide*/
.u-has-js .c-section--tried-tested-proven .c-section__paragraph {
transition: transform 0.4s 0.1s ease-out, opacity 0.35s ease-out;
transform: translateY(25%);
opacity: 0;
}
.c-section--tried-tested-proven.is-animated .c-section__paragraph {
transform: translateY(0);
opacity: 1
}
/*we animate items only if we have JS enabled and screen is more than 800px wide*/
.u-has-js .c-section--growth .c-section__paragraph:first-child,
.u-has-js .c-section--growth .c-section__paragraph:last-child {
transition: transform .5s .12s ease-in, opacity .53s ease-in;
}
.u-has-js .c-section--growth .c-section__paragraph:first-child {
transform: translateX(100%);
opacity: 0;
}
.u-has-js .c-section--growth .c-section__paragraph:last-child {
transform: translateX(-100%);
opacity: 0;
transition-delay: .22s, 0;
}
.c-section--growth.is-animated .c-section__paragraph:first-child,
.c-section--growth.is-animated .c-section__paragraph:last-child {
transform: translateY(0);
opacity: 1
}
.c-section--sales-reporting .c-section__content-container {
flex-direction: row;
}
.c-section--sales-reporting .c-section__paragraph {
max-width: 50%;
padding: 2rem 4rem;
flex-grow: 0;
}
.c-section--sales-reporting .c-section__image-wrapper {
justify-content: flex-end;
margin-left: auto;
}
.c-section--sales-reporting .c-section__image {
transform: translateY(50%);
}
.c-footer {
flex-direction: row;
}
.c-footer__image-wrapper {
order: 0;
}
}
@media only screen and (min-width: 1100px) {
HTML {
font-size: 20px;
}
.c-section--going-digital .c-section__paragraph {
align-self: auto;
}
.c-section--brand-identity {
display: flex;
}
.c-section--brand-identity .c-section__title {
max-height: 5rem;/*~80px*/
}
.c-section--brand-identity .c-section__title::after {
bottom: 1.5rem;
}
.c-section--brand-identity .c-section__paragraph {
margin-left: 5rem;
}
}
@media only screen and (min-width: 1300px) {
.c-section--going-digital .c-section__paragraph {
max-width: 46.875rem; /*~750px*/
font-size: 1.5rem;
}
}
/*-----------------------
UTITLITIES
-------------------------*/
.u-off-screen { /*another name for this class could be visually-hidden*/
position: fixed; /*we can set it as fixed, that will prevent jumping when it's clicked/targeted (but it will screw up focusing on the element)*/
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: none;
overflow: hidden;
clip-path: inset(100%);
clip: rect(0 0 0 0); /*depreceted, only for IE9-11*/
white-space: nowrap; /*For long content, line feeds are not interpreted as spaces and small width causes content to wrap 1 word per line: https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
}
|
Styles/Style.css
|
HTML {
height: 100%;
/*using system font-stack*/
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: calc(16px + (20 - 16) * (100vw - 300px) / (1100 - 300) );
line-height: 1.5;
box-sizing: border-box;
}
BODY {
height: 100%;
margin: 0;
padding: 0;
color: rgba(255, 255, 255, 0.7);
background: rgb(18, 97, 126);
background-image: linear-gradient(-225deg, rgb(18, 97, 126) 0%, rgb(8, 35, 60) 100%);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
*, *::before, *::after {
box-sizing: inherit;
color: inherit;
}
H1, H2 {
margin: 0;
}
A {
text-decoration: none;
}
P {
margin: 0;
}
FIGURE {
margin: 0;
}
IMG {
max-width: 100%;
}
/*Actual Style*/
/*============================
HEADER
============================*/
.c-header {
position: absolute;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 7.5rem;/*~120px*/
}
/*============================
HEADER TITLE
============================*/
.c-header__title {
color: rgba(241, 241, 241, 1);
}
/*============================
MAIN
============================*/
.c-main {
}
/*============================
SECTION
============================*/
.c-section {
min-height: 100vh;
padding: 2rem 1rem;
overflow: hidden;
}
.c-section:nth-child(even) {
background-image: linear-gradient(400deg, rgb(18, 97, 126) 0%, rgb(8, 35, 60) 100%);
}
/*==============================
SECTION CONTENT CONTAINER
================================*/
.c-section__content-container {
position: relative;
display: flex;
}
/*============================
SECTION TITLE
============================*/
.c-section__title {
max-width: max-content;
margin: 0 auto;
position: relative;
padding: 0.5rem 1rem;
}
.c-section__title::before, .c-section__title::after {
content: "";
position: absolute;
}
.c-section__title::before {
left: 0;
top: 0;
width: 2rem;
height: 2rem;
border: 3px solid transparent;
border-top-color: inherit;
border-left-color: inherit;
}
.c-section__title::after {
right: 0;
bottom: 0;
width: 2rem;
height: 2rem;
border: 3px solid transparent;
border-bottom-color: inherit;
border-right-color: inherit;
}
/*============================
SECTION IMAGE WRAPPER
============================*/
.c-section__image-wrapper {
}
/*============================
SECTION IMAGE
============================*/
.c-section__image {
}
/*============================
SECTION--GOING DIGITAL
============================*/
.c-section--going-digital {
display: flex;
flex-direction: column;
}
.c-section--going-digital .c-section__image {
}
.c-section--going-digital .c-section__content-container {
height: 100%;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
flex-grow: 1;
}
.c-section--going-digital .c-section__content-container > * {
min-width: 33%;
max-width: 100%;
flex-grow: 1;
flex-basis: calc(1100px * 750 - 100% * 750);
}
.c-section--going-digital .c-section__paragraph {
align-self: flex-start;
}
/*=================================
SECTION--TRIED TESTED PROVEN
===================================*/
.c-section--tried-tested-proven {
display: flex;
flex-direction: column;
background: url(../Images/iphonex-1.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-clip: content-box;
background-origin: content-box;
padding-top: 3rem;
}
.c-section--tried-tested-proven .c-section__title {
margin-top: -2.5rem;
}
.c-section--tried-tested-proven .c-section__content-container {
align-items: center;
justify-content: center;
flex-grow: 1;
}
.c-section--tried-tested-proven .c-section__paragraph {
max-width: 50rem;
min-height: 25vmin;
padding: 20vmin 1rem;
background: rgba(15, 79, 107, 0.6);
backdrop-filter: blur(6px);
border-radius: 0.5rem;
box-shadow: 0px 2px 6px 0px rgba(45, 46, 47, 0.3);
}
/*=================================
SECTION--GROWTH
===================================*/
.c-section--growth {
}
.c-section--growth .c-section__content-container {
flex-direction: column;
align-items: center;
padding: 3rem 0;
}
.c-section--growth .c-section__paragraph {
padding: 1rem 2rem;
background: rgb(248 254 255);
color: rgba(41, 44, 47, 0.7);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
border-radius: 2rem;
}
.c-section--growth .c-section__paragraph:first-child {
max-width: 34.375rem;/*~550px*/
align-self: flex-end;
}
.c-section--growth .c-section__paragraph:last-child {
align-self: flex-start;
max-width: 29.375rem;/*470px*/
}
/*=================================
SECTION--BRAND IDENTITY
===================================*/
.c-section--brand-identity {
overflow: hidden;
}
.c-section--brand-identity .c-section__title {
}
.c-section--brand-identity .c-section__content-container {
flex-direction: column;
flex-grow: 1;
align-items: center;
}
.c-section--brand-identity .c-section__paragraph {
align-self: flex-start;
margin-top: 5rem;
max-width: 43.75rem; /*~700px*/
padding: 2rem;
border-radius: 0.5rem;
background: linear-gradient(165deg, transparent 20%, black 97%);
box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, .3);
z-index: 1;
}
.c-section--brand-identity .c-section__image-wrapper {
position: relative;
margin-top: 20vh;
}
.c-section--brand-identity .c-section__image-wrapper::after {
content: "";
position: absolute;
display: block;
left: 50%;
top: 13%;
width: 18.75rem;
height: 18.75rem;
background: rgba(255, 255, 255, 0.19);
transform: translate(-50%, -50%) rotate(45deg);
}
.u-has-js .c-section--brand-identity .c-section__image-wrapper::after {
animation: rotate 1s linear infinite;
animation-play-state: paused;
animation-delay: calc(var(--scroll, 45deg) * -1s);
}
@keyframes rotate {
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.c-section--brand-identity .c-section__image {
}
/*=================================
SECTION--SALES REPORTING
===================================*/
.c-section--sales-reporting {
display: flex;
flex-direction: column;
}
.c-section--sales-reporting .c-section__content-container {
flex-grow: 1;
flex-direction: column;
}
.c-section--sales-reporting .c-section__paragraph {
display: flex;
align-items: center;
max-width: 100%;
padding: 0;
padding: 2rem 0;
flex-grow: 1;
}
.c-section--sales-reporting .c-section__image-wrapper {
display: flex;
flex-direction: column;
}
/*============================
SECTION PARAGRAPH
============================*/
.c-section__paragraph {
margin-bottom: 0.5rem;
font-size: 1.25rem;
}
/*============================
SECTION EMPHASIS
============================*/
.c-section__emphasis {
font-style: normal;
font-weight: bolder;
}
/*============================
DOWNLOAD LINK
============================*/
.o-download-link {
width: 12.5rem; /*~200px*/
height: 6.25rem;/*~100px*/
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.o-download-link--android {
background-image: url("../Images/android.png");
}
.o-download-link--apple {
background-image: url("../Images/apple.png");
}
/*============================
JUMBO
============================*/
.c-jumbo {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 7rem;
}
.c-jumbo__title {
max-width: 24.375rem; /*~390px*/
margin: 0 auto 2rem;
text-align: center;
font-size: 1.5rem;
font-weight: 300;
}
.c-jumbo__image {
width: 100%;
max-width: 21.875rem; /*~350px*/
}
.c-jumbo__links {
display: flex;
justify-content: center;
width: 100%;
margin-top: auto;
transform: translateY(-4vh);
}
.c-jumbo__link {
}
.c-jumbo__link:first-child {
margin-right: 1rem;
}
.c-jumbo__link--android {
}
.c-jumbo__link--apple {
width: 10.6875rem; /*~171px*/
}
/*============================
FOOTER
============================*/
.c-footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem 2rem;
justify-content: center;
}
.c-footer__links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
}
.c-footer__links::before {
content: "Get it on";
font-size: 2rem;
}
.c-footer__image-wrapper {
order: 1;
}
.c-footer__image-wrapper svg {
max-width: 100%;
}
/*-----------------------
@MEDIA QUERIES
-------------------------*/
@media only screen and (min-width: 800px) {
/*we animate items only if we have JS enabled and screen is more than 800px wide*/
.u-has-js .c-section--tried-tested-proven .c-section__paragraph {
transition: transform 0.4s 0.1s ease-out, opacity 0.35s ease-out;
transform: translateY(25%);
opacity: 0;
}
.c-section--tried-tested-proven.is-animated .c-section__paragraph {
transform: translateY(0);
opacity: 1
}
/*we animate items only if we have JS enabled and screen is more than 800px wide*/
.u-has-js .c-section--growth .c-section__paragraph:first-child,
.u-has-js .c-section--growth .c-section__paragraph:last-child {
transition: transform .5s .12s ease-in, opacity .53s ease-in;
}
.u-has-js .c-section--growth .c-section__paragraph:first-child {
transform: translateX(100%);
opacity: 0;
}
.u-has-js .c-section--growth .c-section__paragraph:last-child {
transform: translateX(-100%);
opacity: 0;
transition-delay: .22s, 0;
}
.c-section--growth.is-animated .c-section__paragraph:first-child,
.c-section--growth.is-animated .c-section__paragraph:last-child {
transform: translateY(0);
opacity: 1
}
.c-section--sales-reporting .c-section__content-container {
flex-direction: row;
}
.c-section--sales-reporting .c-section__paragraph {
max-width: 50%;
padding: 2rem 4rem;
flex-grow: 0;
}
.c-section--sales-reporting .c-section__image-wrapper {
justify-content: flex-end;
margin-left: auto;
}
.c-section--sales-reporting .c-section__image {
transform: translateY(50%);
}
.c-footer {
flex-direction: row;
}
.c-footer__image-wrapper {
order: 0;
}
}
@media only screen and (min-width: 1100px) {
HTML {
font-size: 20px;
}
.c-section--going-digital .c-section__paragraph {
align-self: auto;
}
.c-section--brand-identity {
display: flex;
}
.c-section--brand-identity .c-section__title {
max-height: 5rem;/*~80px*/
}
.c-section--brand-identity .c-section__title::after {
bottom: 1.5rem;
}
.c-section--brand-identity .c-section__paragraph {
margin-left: 5rem;
}
}
@media only screen and (min-width: 1300px) {
.c-section--going-digital .c-section__paragraph {
max-width: 46.875rem; /*~750px*/
font-size: 1.5rem;
}
}
/*-----------------------
UTITLITIES
-------------------------*/
.u-off-screen { /*another name for this class could be visually-hidden*/
position: fixed; /*we can set it as fixed, that will prevent jumping when it's clicked/targeted (but it will screw up focusing on the element)*/
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: none;
overflow: hidden;
clip-path: inset(100%);
clip: rect(0 0 0 0); /*depreceted, only for IE9-11*/
white-space: nowrap; /*For long content, line feeds are not interpreted as spaces and small width causes content to wrap 1 word per line: https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
}
| 0.406744 | 0.063861 |
@charset "utf-8";
/*--------------컨텐츠 페이지 공통속성------------------*/
body {
background-image: linear-gradient(80deg, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}
#wrap {
border-radius: 45px;
background: rgba(255, 255, 255, 0.4);
margin: 4% auto 1% auto;
padding: 18px;
display: flex;
justify-content: space-between;
box-shadow: 5px 5px 25px #c9bcd0;
}
#lnb {
width: 15%;
margin-right: 13px;
}
#lnb ul {
position: relative;
top: 120px;
}
.main {
display: inline-block;
width: 100%;
border-radius: 10px;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
font-size: 1.05em;
padding: 0 15px;
}
#lnb li:hover,
#mnav li:hover{
background: #a1c4fd;
color: white;
}
#lnb li:hover a,
#mnav li:hover a {
color: white;
}
#lnb li.active {
background: #bed1f0;
}
#lnb li.active a {
color: white;
}
.main a {
display: inline-block;
width: 100%;
}
.main a i {
font-size: 1.5em;
vertical-align: middle;
display: inline-block;
width: 30px;
margin-right: 13px;
}
#contents {
background: white;
border-radius: 35px;
margin-right: 13px;
width: 57%;
padding: 22px;
position: relative;
}
#contents header {
height: 100px;
display: flex;
}
#contents header>a {
display: inline-block;
width: 130px;
}
#contents header img {
width: 100%;
}
#contents #search {
flex: auto;
margin-top: 2px;
}
#contents #search form {
border: 1px solid #e9e7fb;
border-radius: 3px;
height: 25px;
width: 150px;
padding: 0 10px;
margin: auto;
}
#contents #search input {
width: 100px;
border: none;
height: 100%;
}
#contents #search button {
width: 20px;
border: none;
background: none;
padding-top: 3px;
text-align: center;
float: right;
}
#contents #search i {
font-size: 1.2em;
color : #a1c4fd;
}
#contents #gnb {
float: right;
margin-top: 3px;
}
#contents #gnb li {
float: left;
margin-right: 10px;
}
#contents #gnb li:last-of-type {
margin-right: 0;
}
#contents #gnb li a {
color : #a1c4fd;
display: inline-block;
font-size: 1.3em;
}
#profile {
background: white;
border-radius: 35px;
width: 26%;
height: 100%;
padding: 22px;
}
#profile #infoBox {
display: flex;
}
#profile #userPic {
width: 58px;
height: 58px;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
box-shadow: 2px 3px 3px #dae7fc;
overflow: hidden;;
}
#profile #userPic img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#profile #userBox {
width: calc(100% - 68px);
margin-top: 10px;
}
#profile #userName {
color: #a1c4fd;
font-size: 1.25em;
font-weight: 600;
}
#profile #userMail {
font-size: 0.75em;
font-weight: 500;
color: #929292;
}
#profile #followBox {
margin-top: 25px;
border-bottom: 1px solid #e9e7fb;
padding-bottom: 28px;
margin-bottom: 30px;
}
#profile li {
display: inline-block;
width: calc(95% / 3);
text-align: center;
font-weight: bold;
font-family: 'Nanum Gothic', sans-serif;
}
#profile li .th {
margin-bottom: 10px;
display: inline-block;
}
#profile li a {
font-weight: 800;
cursor: pointer;
}
#profile #myInfo #className {
font-size: 0.95em;
font-weight: 800;
font-family: 'Nanum Gothic', sans-serif;
}
#profile #myInfo #self {
font-size: 0.92em;
line-height: 1.6em;
margin : 10px 0 30px 0;
}
#myGroup .group {
width: 100%;
height: 75px;
background : white;
box-shadow: 1px 1px 5px #dae7fc;
border-radius: 10px;
padding: 8px 12px;
margin-bottom: 12px;
}
#myGroup .group a {
display: inline-block;
width: 100%;
display: flex;
}
#myGroup .groupCir {
width: 58px;
height: 58px;
border-radius: 50%;
box-shadow: 2px 3px 3px #dae7fc;
display: inline-block;
overflow: hidden;
}
#myGroup .groupCir img {
width: 100%;
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#myGroup .groupInfo {
width: calc(100% - 58px);
text-align: left;
padding-left: 12px;
padding-top: 12px;
}
#myGroup .groupInfo .groupName {
font-size: 0.95em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#myGroup .groupInfo .mem {
font-size: 0.8em;
font-weight: 300;
}
#logout {
margin-top: 70px;
color : #a1c4fd;
border: none;
background: none;
font-size: 1.5em;
float: right;
}
footer {
text-align: center;
margin-bottom: 5%;
}
footer #copy {
color : #b7b7b7;
font-family: 'Nanum Gothic', sans-serif;
}
#top {
position: fixed;
right: 2%;
bottom: 3%;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 55px;
background : white;
box-shadow: 2px 2px 5px #b3c0d4;
display: none;
}
#top i {
font-size: 1.5em;
color : #a1c4fd;
}
/*-----------------컨텐츠 공통영역 끝--------------------*/
/*------------테블릿, 모바일 용 스타일-----------------*/
#mo {
display: none;
}
#mflexBox {
display: none;
}
#mheader, #mnav {
display: none;
}
#ham ,#mham {
width: 30px;
height: 30px;
border: none;
outline: none;
background-color: transparent;
cursor: pointer;
float: left;
position: absolute;
z-index: 500;
display: none;
}
#mham {
position: fixed;
top: 58px;
left: 18px;
z-index: 600;
}
.patty {
width: 20px;
height: 4px;
background-color: #a1c4fd;
border-radius: 3px;
margin: 3px auto;
transition: all 0.5s;
}
.ex .p1 {
transform: translateY(7px) rotate(45deg);
}
.ex .p2 {opacity: 0;}
.ex .p3 {
transform: translateY(-7px) rotate(-45deg);
}
#back, #back2 {
position: absolute;
background-color: rgba(0,0,0,0.5);
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
z-index: 401;
}
#back2 {
z-index: 505;
position: fixed;
}
#back, #mnav {
border-top-left-radius: 35px;
}
#mnav {
top: 0;
bottom: 0;
left: 0;
width: 70%;
background-color: #f5f9ff;
margin-left: -120%;
transition: margin-left 0.5s;
z-index: 501;
position: absolute;
z-index: 440;
padding: 20% 12%;
}
#mnav .main a {
color: #a1c4fd;
}
#contents #mgnb {
float: right;
margin-top: 3px;
}
#contents #mgnb li {
float: left;
margin-right: 10px;
}
#contents #mgnb li:nth-of-type(4){
margin-right: 0;
}
#contents #mgnb li:last-of-type {
margin-right: 0;
padding: 2px;
margin-top: -5px
}
#contents #mgnb li a {
color : #a1c4fd;
display: inline-block;
font-size: 1.3em;
}
#contents #mgnb #cir {
box-shadow: 3px 3px 3px #dae7fc;
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
}
#contents #mgnb #cir img {
width: 100%;
}
#contents #msearch {
flex: auto;
margin-top: 2px;
}
#contents #msearch form {
border: 1px solid #e9e7fb;
border-radius: 3px;
height: 25px;
width: 150px;
padding: 0 10px;
margin: auto;
}
#contents #msearch input {
width: 100px;
border: none;
height: 100%;
}
#contents #msearch button {
width: 20px;
border: none;
background: none;
padding-top: 3px;
text-align: center;
float: right;
}
#contents #msearch i {
font-size: 1.2em;
color : #a1c4fd;
}
/*-----------------테블릿, 모바일 용 스타일 끝-------------*/
/*-------------------알람 모달용-------------------------*/
.alarmBtn {
cursor: pointer;
}
#modal, #alarmEdge, #alarmEdge2 {
display: none;
}
#alarmEdge, #alarmEdge2 {
width: 20px;
height: 20px;
background: white;
position: absolute;
top: 56px;
right: 21px;
transform: rotate(45deg);
border-radius: 3px;
}
#alarmEdge {
box-shadow: 1px 4px 10px #d8dce3;
}
#alarmEdge2 {
z-index: 1;
}
#modal {
width: 430px;
height: 350px;
background: white;
position: absolute;
top: 64px;
right: -27%;
border-radius: 10px;
box-shadow: 1px 4px 10px rgba(39, 39, 39, 0.4);
z-index: 100;
}
#alarmWrap {
width: 100%;
height: 100%;
overflow: auto;
padding: 12px;
}
#alarmWrap::-webkit-scrollbar,
.followModal::-webkit-scrollbar {
width: 6px;
}
#alarmWrap::-webkit-scrollbar-track,
.followModal::-webkit-scrollbar-track {
background-color: transparent;
padding: 10px;
}
#alarmWrap::-webkit-scrollbar-thumb,
.followModal::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #b0cff5;
}
#alarmWrap::-webkit-scrollbar-button,
.followModal::-webkit-scrollbar-button {
width: 0;
height: 0;
}
.alarm {
width: 100%;
height: 70px;
margin-bottom: 8px;
background: #eff3fb;
border-radius: 10px;
padding: 5px 12px;
z-index: 50;
position: relative;
}
.alarm:last-of-type {
margin-bottom: 0;
}
.alarm .alarmUser {
float: left;
width: 55px;
height: 55px;
line-height: 55px;
border-radius: 50%;
overflow: hidden;
}
.alarm .alarmUser img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.alarm .alarmCont {
width: 320px;
padding: 10px;
float: right;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.alarm .alarmNick {
font-weight: bold;
}
.classMoniter button {
float: right;
position: relative;
top: -1em;
border: none;
font-size: 1.3em;
margin-right: 15px;
background-color: transparent;
}
.classMoniter button:first-of-type {
margin-right: 5px;
}
.classMoniter button:last-of-type i {
color: #a1c4fd;
}
/*------------팔로워,팔로잉 목록 출력 모달---------------*/
.followModal {
position: fixed;
z-index: 100;
width: 380px;
max-height: 50%;
background: white;
overflow: auto;
top : -30%;
left: 50%;
transform: translate(-50%, -50%);
padding: 15px;
z-index: 505;
}
.followModal .followTitle {
border-bottom: 1px solid #e9e7fb;
margin-bottom: 15px;
}
.followModal .followTitle h6 {
font-size: 1.4em;
padding: 10px;
display: inline-block;
}
.followList {
border-bottom: 1px solid #e9e7fb;
}
.followList:last-of-type {
border-bottom: none;
}
.followList h5 {
font-size: 1.0em;
margin: 15px 15px 3px;
}
.followList li {
width: 100%;
display: inline-block;
padding: 10px;
}
.followList .followPic {
display: inline-block;
width: 55px;
height: 55px;
border-radius: 50%;
overflow: hidden;
}
.followList .followPic img {
width: 100%;
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.followList .followInfo {
display: inline-block;
vertical-align: 12px;
margin-left: 10px;
}
.followList .followClass {
font-size: 0.9em;
}
.followList .f4f {
float: right;
width: 80px;
height: 30px;
border: none;
background-color: #b0cff5;
color: white;
font-weight: bold;
font-size: 0.95em;
position: relative;
transform: translateY(50%);
}
.closeBox {
width: 100%;
padding: 2%;
}
.closeBox .close {
border: none;
background: none;
float: right;
padding: 2% 4%;
}
.closeBox .close .fas {
font-size: 2em;
color: #b0cff5;
}
/*-----------------feed 검색 modal-----------------------------*/
#mask {
position:fixed;
right: 0;
bottom: 0;
left:0;
top:0;
z-index: 50;
background-color: transparent;
display: none;
}
#feedSearch {
display: none;
}
#feedSearchModal {
display: none;
width: 400px;
height: 335px;
background: white;
position: absolute;
border-radius: 10px;
box-shadow: 1px 4px 10px rgba(39, 39, 39, 0.4);
z-index: 100;
top: 65px;
left: 50%;
transform: translateX(-50%);
overflow: auto;
padding: 12px 15px 12px 12px;
}
.feedSearch2 #feedSearchModal {
top : 57PX;
}
#feedSearchModal::-webkit-scrollbar {
width: 6px;
}
#feedSearchModal::-webkit-scrollbar-track {
background-color: transparent;
padding: 10px;
}
#feedSearchModal::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #b0cff5;
}
#feedSearchModal::-webkit-scrollbar-button {
width: 0;
height: 0;
}
.edge {
width: 18px;
height: 18px;
background: white;
position: absolute;
border-radius: 2px;
box-shadow: 1px 2px 5px #b2b2b2;
transform: rotate(45deg)!important;
z-index: 0;
top: 56px;
left: 50%;
transform: translateX(-50%);
}
.feedCir {
width: 55px;
height: 55px;
border-radius: 50%;
background: white;
display: inline-block;
border: 1px solid #dfdfdf;
margin-right: 8px;
overflow: hidden;
}
.feedCir img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#feedCount .feedCir {
line-height: 55px;
text-align: center;
font-size: 1.5em;
margin-bottom: 10px;
}
#feedCount #feedText {
display: inline-block;
vertical-align: middle;
margin-top: -66px;
}
#feedCount #keyword {
font-weight: 800;
font-family: 'Nanum Gothic', sans-serif;
margin-bottom: 3px;
}
#feedCount #count {
font-size: 0.93em;
color: #a0a0a0;
}
#searchUser li {
margin-bottom: 10px;
display: flex;
z-index: 300;
}
#searchUser li:last-of-type {
margin-bottom: 0;
}
#searchUser .searchUserBox {
margin-top: 10px;
}
#searchUser .userNick {
display: block;
font-weight: 800;
}
#searchUser .userEmail {
font-size: 0.9em;
color: #a0a0a0;
}
/*-----------------여기부터 태블릿pc---------------*/
@media all and (max-width: 1020px) {
/*---------------컨텐츠 공통영역 시작---------------*/
.cen {
width: 90%!important;
}
#contents {
position: relative;
width: 65%;
}
#contents header {
display: none;
}
#mo {
display: block;
}
#mheader {
display: block;
overflow: hidden;
}
#mnav, #ham {
display: block;
}
#mheaderTop {
display: flex;
}
#mheaderTop #flexBox {
flex: auto;
text-align: center;
padding-left: 20px;
}
#mheaderTop #flexBox a {
display: inline-block;
width: 100px;
margin: auto;
}
#mheaderTop #flexBox a img {
width: 100%;
}
#contents #mgnb li {
margin-right: 12px;
}
#contents #mgnb li:last-of-type {
display: none;
}
#contents #mgnb li a {
font-size: 1.1em;
}
#mheader #msearch {
float: right;
margin-top: 10px;
}
#lnb {
display: none;
}
#profile {
width: 35%;
}
#profile #userPic {
width: 45px;
height: 45px;
margin-right: 5px;
}
#profile #userBox {
margin-top: 5px;
}
#profile #userName {
font-size: 1.05em;
}
#profile #userMail {
font-size: 0.65em;
}
#followBox .th {
font-size: 0.95em;
}
#followBox a {
font-size: 0.95em;
}
/*----------알람 모달용--------------------*/
#modal {
right: -44%;
}
/*----------------컨텐츠 공통영역 끝----------------*/
}
/*----------------------여기부터 모바일버전---------------*/
@media all and (max-width:767px) {
#wrap {
padding: 0;
margin: 0;
border-radius: 0;
}
.cen {
width: 100%!important;
}
#contents {
width: 100%;
margin-right: 0;
border-radius: 0;
background-color: transparent;
padding: 0;
}
#mo {
background-image: linear-gradient(45deg, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
position: fixed;
right: 0;
left : 0;
z-index: 400;
}
#mo #ham {
display: none;
}
#back, #mnav {
border-top-left-radius: 0;
}
#mnav {
position: fixed;
}
#mham {
display: block;
}
#mheaderTop #flexBox {
padding-left: 0;
}
#flexBox a img {
display: none;
}
#mflexBox {
display: block;
padding-top: 20px;
text-align: center;
}
#mflexBox a img {
width: 100px;
}
#contents #msearch form {
border: 1px solid #b2c3e3;
}
#mheader {
padding: 5px 18px;
position: relative;
}
#mheader #msearch {
margin-bottom: 5px;
margin-top: 5px;
}
#msearch input {
background-color: transparent;
}
#contents #mgnb li:nth-of-type(4) {
margin-right: 12px;
}
#contents #mgnb li:last-of-type{
display: inline-block;
}
#mgnb i {
font-size: 1.2em;
}
#profile {
display: none;
}
footer {
margin-top: 10px;
margin-bottom: 15%;
}
/*-------------------알람 모달용-------------------------*/
#alarmEdge, #alarmEdge2 {
top: 90px;
right: 62px;
position: fixed;
z-index: 599;
}
#alarmEdge2 {
z-index: -1;
}
#modal {
width: 430px;
height: 350px;
top: 98px;
right: 10px;
position: fixed;
z-index: 600;
}
/*------------팔로워,팔로잉 목록 출력 모달---------------*/
.followModal {
display: none;
}
}
|
playddit/WebContent/css/style.css
|
@charset "utf-8";
/*--------------컨텐츠 페이지 공통속성------------------*/
body {
background-image: linear-gradient(80deg, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}
#wrap {
border-radius: 45px;
background: rgba(255, 255, 255, 0.4);
margin: 4% auto 1% auto;
padding: 18px;
display: flex;
justify-content: space-between;
box-shadow: 5px 5px 25px #c9bcd0;
}
#lnb {
width: 15%;
margin-right: 13px;
}
#lnb ul {
position: relative;
top: 120px;
}
.main {
display: inline-block;
width: 100%;
border-radius: 10px;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
font-size: 1.05em;
padding: 0 15px;
}
#lnb li:hover,
#mnav li:hover{
background: #a1c4fd;
color: white;
}
#lnb li:hover a,
#mnav li:hover a {
color: white;
}
#lnb li.active {
background: #bed1f0;
}
#lnb li.active a {
color: white;
}
.main a {
display: inline-block;
width: 100%;
}
.main a i {
font-size: 1.5em;
vertical-align: middle;
display: inline-block;
width: 30px;
margin-right: 13px;
}
#contents {
background: white;
border-radius: 35px;
margin-right: 13px;
width: 57%;
padding: 22px;
position: relative;
}
#contents header {
height: 100px;
display: flex;
}
#contents header>a {
display: inline-block;
width: 130px;
}
#contents header img {
width: 100%;
}
#contents #search {
flex: auto;
margin-top: 2px;
}
#contents #search form {
border: 1px solid #e9e7fb;
border-radius: 3px;
height: 25px;
width: 150px;
padding: 0 10px;
margin: auto;
}
#contents #search input {
width: 100px;
border: none;
height: 100%;
}
#contents #search button {
width: 20px;
border: none;
background: none;
padding-top: 3px;
text-align: center;
float: right;
}
#contents #search i {
font-size: 1.2em;
color : #a1c4fd;
}
#contents #gnb {
float: right;
margin-top: 3px;
}
#contents #gnb li {
float: left;
margin-right: 10px;
}
#contents #gnb li:last-of-type {
margin-right: 0;
}
#contents #gnb li a {
color : #a1c4fd;
display: inline-block;
font-size: 1.3em;
}
#profile {
background: white;
border-radius: 35px;
width: 26%;
height: 100%;
padding: 22px;
}
#profile #infoBox {
display: flex;
}
#profile #userPic {
width: 58px;
height: 58px;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
box-shadow: 2px 3px 3px #dae7fc;
overflow: hidden;;
}
#profile #userPic img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#profile #userBox {
width: calc(100% - 68px);
margin-top: 10px;
}
#profile #userName {
color: #a1c4fd;
font-size: 1.25em;
font-weight: 600;
}
#profile #userMail {
font-size: 0.75em;
font-weight: 500;
color: #929292;
}
#profile #followBox {
margin-top: 25px;
border-bottom: 1px solid #e9e7fb;
padding-bottom: 28px;
margin-bottom: 30px;
}
#profile li {
display: inline-block;
width: calc(95% / 3);
text-align: center;
font-weight: bold;
font-family: 'Nanum Gothic', sans-serif;
}
#profile li .th {
margin-bottom: 10px;
display: inline-block;
}
#profile li a {
font-weight: 800;
cursor: pointer;
}
#profile #myInfo #className {
font-size: 0.95em;
font-weight: 800;
font-family: 'Nanum Gothic', sans-serif;
}
#profile #myInfo #self {
font-size: 0.92em;
line-height: 1.6em;
margin : 10px 0 30px 0;
}
#myGroup .group {
width: 100%;
height: 75px;
background : white;
box-shadow: 1px 1px 5px #dae7fc;
border-radius: 10px;
padding: 8px 12px;
margin-bottom: 12px;
}
#myGroup .group a {
display: inline-block;
width: 100%;
display: flex;
}
#myGroup .groupCir {
width: 58px;
height: 58px;
border-radius: 50%;
box-shadow: 2px 3px 3px #dae7fc;
display: inline-block;
overflow: hidden;
}
#myGroup .groupCir img {
width: 100%;
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#myGroup .groupInfo {
width: calc(100% - 58px);
text-align: left;
padding-left: 12px;
padding-top: 12px;
}
#myGroup .groupInfo .groupName {
font-size: 0.95em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#myGroup .groupInfo .mem {
font-size: 0.8em;
font-weight: 300;
}
#logout {
margin-top: 70px;
color : #a1c4fd;
border: none;
background: none;
font-size: 1.5em;
float: right;
}
footer {
text-align: center;
margin-bottom: 5%;
}
footer #copy {
color : #b7b7b7;
font-family: 'Nanum Gothic', sans-serif;
}
#top {
position: fixed;
right: 2%;
bottom: 3%;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 55px;
background : white;
box-shadow: 2px 2px 5px #b3c0d4;
display: none;
}
#top i {
font-size: 1.5em;
color : #a1c4fd;
}
/*-----------------컨텐츠 공통영역 끝--------------------*/
/*------------테블릿, 모바일 용 스타일-----------------*/
#mo {
display: none;
}
#mflexBox {
display: none;
}
#mheader, #mnav {
display: none;
}
#ham ,#mham {
width: 30px;
height: 30px;
border: none;
outline: none;
background-color: transparent;
cursor: pointer;
float: left;
position: absolute;
z-index: 500;
display: none;
}
#mham {
position: fixed;
top: 58px;
left: 18px;
z-index: 600;
}
.patty {
width: 20px;
height: 4px;
background-color: #a1c4fd;
border-radius: 3px;
margin: 3px auto;
transition: all 0.5s;
}
.ex .p1 {
transform: translateY(7px) rotate(45deg);
}
.ex .p2 {opacity: 0;}
.ex .p3 {
transform: translateY(-7px) rotate(-45deg);
}
#back, #back2 {
position: absolute;
background-color: rgba(0,0,0,0.5);
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
z-index: 401;
}
#back2 {
z-index: 505;
position: fixed;
}
#back, #mnav {
border-top-left-radius: 35px;
}
#mnav {
top: 0;
bottom: 0;
left: 0;
width: 70%;
background-color: #f5f9ff;
margin-left: -120%;
transition: margin-left 0.5s;
z-index: 501;
position: absolute;
z-index: 440;
padding: 20% 12%;
}
#mnav .main a {
color: #a1c4fd;
}
#contents #mgnb {
float: right;
margin-top: 3px;
}
#contents #mgnb li {
float: left;
margin-right: 10px;
}
#contents #mgnb li:nth-of-type(4){
margin-right: 0;
}
#contents #mgnb li:last-of-type {
margin-right: 0;
padding: 2px;
margin-top: -5px
}
#contents #mgnb li a {
color : #a1c4fd;
display: inline-block;
font-size: 1.3em;
}
#contents #mgnb #cir {
box-shadow: 3px 3px 3px #dae7fc;
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
}
#contents #mgnb #cir img {
width: 100%;
}
#contents #msearch {
flex: auto;
margin-top: 2px;
}
#contents #msearch form {
border: 1px solid #e9e7fb;
border-radius: 3px;
height: 25px;
width: 150px;
padding: 0 10px;
margin: auto;
}
#contents #msearch input {
width: 100px;
border: none;
height: 100%;
}
#contents #msearch button {
width: 20px;
border: none;
background: none;
padding-top: 3px;
text-align: center;
float: right;
}
#contents #msearch i {
font-size: 1.2em;
color : #a1c4fd;
}
/*-----------------테블릿, 모바일 용 스타일 끝-------------*/
/*-------------------알람 모달용-------------------------*/
.alarmBtn {
cursor: pointer;
}
#modal, #alarmEdge, #alarmEdge2 {
display: none;
}
#alarmEdge, #alarmEdge2 {
width: 20px;
height: 20px;
background: white;
position: absolute;
top: 56px;
right: 21px;
transform: rotate(45deg);
border-radius: 3px;
}
#alarmEdge {
box-shadow: 1px 4px 10px #d8dce3;
}
#alarmEdge2 {
z-index: 1;
}
#modal {
width: 430px;
height: 350px;
background: white;
position: absolute;
top: 64px;
right: -27%;
border-radius: 10px;
box-shadow: 1px 4px 10px rgba(39, 39, 39, 0.4);
z-index: 100;
}
#alarmWrap {
width: 100%;
height: 100%;
overflow: auto;
padding: 12px;
}
#alarmWrap::-webkit-scrollbar,
.followModal::-webkit-scrollbar {
width: 6px;
}
#alarmWrap::-webkit-scrollbar-track,
.followModal::-webkit-scrollbar-track {
background-color: transparent;
padding: 10px;
}
#alarmWrap::-webkit-scrollbar-thumb,
.followModal::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #b0cff5;
}
#alarmWrap::-webkit-scrollbar-button,
.followModal::-webkit-scrollbar-button {
width: 0;
height: 0;
}
.alarm {
width: 100%;
height: 70px;
margin-bottom: 8px;
background: #eff3fb;
border-radius: 10px;
padding: 5px 12px;
z-index: 50;
position: relative;
}
.alarm:last-of-type {
margin-bottom: 0;
}
.alarm .alarmUser {
float: left;
width: 55px;
height: 55px;
line-height: 55px;
border-radius: 50%;
overflow: hidden;
}
.alarm .alarmUser img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.alarm .alarmCont {
width: 320px;
padding: 10px;
float: right;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.alarm .alarmNick {
font-weight: bold;
}
.classMoniter button {
float: right;
position: relative;
top: -1em;
border: none;
font-size: 1.3em;
margin-right: 15px;
background-color: transparent;
}
.classMoniter button:first-of-type {
margin-right: 5px;
}
.classMoniter button:last-of-type i {
color: #a1c4fd;
}
/*------------팔로워,팔로잉 목록 출력 모달---------------*/
.followModal {
position: fixed;
z-index: 100;
width: 380px;
max-height: 50%;
background: white;
overflow: auto;
top : -30%;
left: 50%;
transform: translate(-50%, -50%);
padding: 15px;
z-index: 505;
}
.followModal .followTitle {
border-bottom: 1px solid #e9e7fb;
margin-bottom: 15px;
}
.followModal .followTitle h6 {
font-size: 1.4em;
padding: 10px;
display: inline-block;
}
.followList {
border-bottom: 1px solid #e9e7fb;
}
.followList:last-of-type {
border-bottom: none;
}
.followList h5 {
font-size: 1.0em;
margin: 15px 15px 3px;
}
.followList li {
width: 100%;
display: inline-block;
padding: 10px;
}
.followList .followPic {
display: inline-block;
width: 55px;
height: 55px;
border-radius: 50%;
overflow: hidden;
}
.followList .followPic img {
width: 100%;
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.followList .followInfo {
display: inline-block;
vertical-align: 12px;
margin-left: 10px;
}
.followList .followClass {
font-size: 0.9em;
}
.followList .f4f {
float: right;
width: 80px;
height: 30px;
border: none;
background-color: #b0cff5;
color: white;
font-weight: bold;
font-size: 0.95em;
position: relative;
transform: translateY(50%);
}
.closeBox {
width: 100%;
padding: 2%;
}
.closeBox .close {
border: none;
background: none;
float: right;
padding: 2% 4%;
}
.closeBox .close .fas {
font-size: 2em;
color: #b0cff5;
}
/*-----------------feed 검색 modal-----------------------------*/
#mask {
position:fixed;
right: 0;
bottom: 0;
left:0;
top:0;
z-index: 50;
background-color: transparent;
display: none;
}
#feedSearch {
display: none;
}
#feedSearchModal {
display: none;
width: 400px;
height: 335px;
background: white;
position: absolute;
border-radius: 10px;
box-shadow: 1px 4px 10px rgba(39, 39, 39, 0.4);
z-index: 100;
top: 65px;
left: 50%;
transform: translateX(-50%);
overflow: auto;
padding: 12px 15px 12px 12px;
}
.feedSearch2 #feedSearchModal {
top : 57PX;
}
#feedSearchModal::-webkit-scrollbar {
width: 6px;
}
#feedSearchModal::-webkit-scrollbar-track {
background-color: transparent;
padding: 10px;
}
#feedSearchModal::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #b0cff5;
}
#feedSearchModal::-webkit-scrollbar-button {
width: 0;
height: 0;
}
.edge {
width: 18px;
height: 18px;
background: white;
position: absolute;
border-radius: 2px;
box-shadow: 1px 2px 5px #b2b2b2;
transform: rotate(45deg)!important;
z-index: 0;
top: 56px;
left: 50%;
transform: translateX(-50%);
}
.feedCir {
width: 55px;
height: 55px;
border-radius: 50%;
background: white;
display: inline-block;
border: 1px solid #dfdfdf;
margin-right: 8px;
overflow: hidden;
}
.feedCir img {
max-width: 100%;
min-height: 100%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#feedCount .feedCir {
line-height: 55px;
text-align: center;
font-size: 1.5em;
margin-bottom: 10px;
}
#feedCount #feedText {
display: inline-block;
vertical-align: middle;
margin-top: -66px;
}
#feedCount #keyword {
font-weight: 800;
font-family: 'Nanum Gothic', sans-serif;
margin-bottom: 3px;
}
#feedCount #count {
font-size: 0.93em;
color: #a0a0a0;
}
#searchUser li {
margin-bottom: 10px;
display: flex;
z-index: 300;
}
#searchUser li:last-of-type {
margin-bottom: 0;
}
#searchUser .searchUserBox {
margin-top: 10px;
}
#searchUser .userNick {
display: block;
font-weight: 800;
}
#searchUser .userEmail {
font-size: 0.9em;
color: #a0a0a0;
}
/*-----------------여기부터 태블릿pc---------------*/
@media all and (max-width: 1020px) {
/*---------------컨텐츠 공통영역 시작---------------*/
.cen {
width: 90%!important;
}
#contents {
position: relative;
width: 65%;
}
#contents header {
display: none;
}
#mo {
display: block;
}
#mheader {
display: block;
overflow: hidden;
}
#mnav, #ham {
display: block;
}
#mheaderTop {
display: flex;
}
#mheaderTop #flexBox {
flex: auto;
text-align: center;
padding-left: 20px;
}
#mheaderTop #flexBox a {
display: inline-block;
width: 100px;
margin: auto;
}
#mheaderTop #flexBox a img {
width: 100%;
}
#contents #mgnb li {
margin-right: 12px;
}
#contents #mgnb li:last-of-type {
display: none;
}
#contents #mgnb li a {
font-size: 1.1em;
}
#mheader #msearch {
float: right;
margin-top: 10px;
}
#lnb {
display: none;
}
#profile {
width: 35%;
}
#profile #userPic {
width: 45px;
height: 45px;
margin-right: 5px;
}
#profile #userBox {
margin-top: 5px;
}
#profile #userName {
font-size: 1.05em;
}
#profile #userMail {
font-size: 0.65em;
}
#followBox .th {
font-size: 0.95em;
}
#followBox a {
font-size: 0.95em;
}
/*----------알람 모달용--------------------*/
#modal {
right: -44%;
}
/*----------------컨텐츠 공통영역 끝----------------*/
}
/*----------------------여기부터 모바일버전---------------*/
@media all and (max-width:767px) {
#wrap {
padding: 0;
margin: 0;
border-radius: 0;
}
.cen {
width: 100%!important;
}
#contents {
width: 100%;
margin-right: 0;
border-radius: 0;
background-color: transparent;
padding: 0;
}
#mo {
background-image: linear-gradient(45deg, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
position: fixed;
right: 0;
left : 0;
z-index: 400;
}
#mo #ham {
display: none;
}
#back, #mnav {
border-top-left-radius: 0;
}
#mnav {
position: fixed;
}
#mham {
display: block;
}
#mheaderTop #flexBox {
padding-left: 0;
}
#flexBox a img {
display: none;
}
#mflexBox {
display: block;
padding-top: 20px;
text-align: center;
}
#mflexBox a img {
width: 100px;
}
#contents #msearch form {
border: 1px solid #b2c3e3;
}
#mheader {
padding: 5px 18px;
position: relative;
}
#mheader #msearch {
margin-bottom: 5px;
margin-top: 5px;
}
#msearch input {
background-color: transparent;
}
#contents #mgnb li:nth-of-type(4) {
margin-right: 12px;
}
#contents #mgnb li:last-of-type{
display: inline-block;
}
#mgnb i {
font-size: 1.2em;
}
#profile {
display: none;
}
footer {
margin-top: 10px;
margin-bottom: 15%;
}
/*-------------------알람 모달용-------------------------*/
#alarmEdge, #alarmEdge2 {
top: 90px;
right: 62px;
position: fixed;
z-index: 599;
}
#alarmEdge2 {
z-index: -1;
}
#modal {
width: 430px;
height: 350px;
top: 98px;
right: 10px;
position: fixed;
z-index: 600;
}
/*------------팔로워,팔로잉 목록 출력 모달---------------*/
.followModal {
display: none;
}
}
| 0.301362 | 0.115661 |
Content {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4 {
font-family: 'Roboto', sans-serif;
}
h1:hover {
color: #FF7F2E;
}
h2:hover {
color: #3FC3BF;
}
hr {
display: block;
margin-before: 0.5em;
margin-after: 0.5em;
margin-start: auto;
margin-end: auto;
overflow: hidden;
border 1px inset;
opacity: 60%;
color: black;
}
Header {
display: flex;
flex-flow: row wrap;
justify-content: flex-end;
align-items: center;
}
HeaderTitle {
font-size: 2rem;
margin-right: auto;
font-family: 'Roboto', sans-serif;
}
BrandLeft {
color: #FF7F2E;
}
BrandRight {
color: #3FC3BF;
}
HeaderTitle:hover BrandLeft {
color: #999;
}
HeaderTitle:hover BrandRight {
color: #444;
}
Links {
display: flex;
font-size: 1.5rem;
padding: 0.5rem;
}
Description {
font-size: 1.25rem;
font-family: 'Roboto Mono', monospace;
}
PostList {
display: flex;
flex-direction: column;
}
YearGroup {
padding: 0.5rem;
display: flex;
flex-direction: column;
}
YearTitle {
font-size: 1.5rem;
font-family: 'Roboto Mono', monospace;
font-weight: bold;
padding-bottom: 0.8rem;
}
YearTitle:hover {
color: #FF7F2E;
}
PostListing {
display: flex;
justify-content: flex-end;
}
PostListTitle {
margin-right: auto;
font-family: 'Roboto', sans-serif;
font-size: 1.25rem;
text-decoration: underline;
}
PostListTitle:hover {
color: #3FC3BF;
cursor: pointer;
}
PostListDate {
color: #999;
font-family: 'Roboto', sans-serif;
margin-right: 0.5rem;
font-size: 1.25rem;
}
.link::before,
.link::after {
display: inline-block;
opacity: 0;
-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
-moz-transition: -moz-transform 0.3s, opacity 0.2s;
transition: transform 0.3s, opacity 0.2s;
}
.link::before {
margin-right: 0.5rem;
content: '[';
-webkit-transform: translateX(1rem);
-moz-transform: translateX(1rem);
transform: translateX(1rem);
}
.link::after {
margin-left: 0.5rem;
content: ']';
-webkit-transform: translateX(-1rem);
-moz-transform: translateX(-1rem);
transform: translateX(-1rem);
}
.link:hover::before,
.link:hover::after,
.link:focus::before,
.link:focus::after {
opacity: 1;
-webkit-transform: translateX(0rem);
-moz-transform: translateX(0rem);
transform: translateX(0rem);
cursor: pointer;
}
Footer {
color: grey;
font-size: 0.7rem;
}
PostTitle {
font-size: 3rem;
font-weight: bold;
font-family: 'Roboto', sans-serif;
}
Content > * {
max-width: 50rem;
width: 100%;
}
@keyframes shiftLeft {
0% { margin-left: 0.0rem; }
25% { margin-left: -0.1rem; }
50% { margin-left: -0.2rem; }
75% { margin-left: -0.3rem; }
100% { margin-left: 0.0rem; }
}
BackButton {
font-size: 2rem;
margin-right: auto;
}
BackButton:hover {
animation-name: shiftLeft;
animation-duration: 1s;
animation-iteration-count: infinite;
cursor: pointer;
}
:not(pre) > code {
font-family: 'Roboto Mono', monospace;
background-color: #eee;
border: 1px solid #999;
}
@media all and (max-width:500px) {
Header {
flex-direction: column;
}
YearGroup {
}
YearTitle {
font-size: 2rem;
}
PostListing {
font-size: 1.5rem;
background-color: #F2F2F2;
border: 1px solid #CCC;
border-radius: 2px;
}
html {
font-size: 14px;
}
}
@media all and (max-width:800px) {
Header {
justify-content: space-around;
}
html {
font-size: 16px;
}
}
@media all and (min-width:1100px) {
html {
font-size: 18px;
}
}
|
style/index.css
|
Content {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4 {
font-family: 'Roboto', sans-serif;
}
h1:hover {
color: #FF7F2E;
}
h2:hover {
color: #3FC3BF;
}
hr {
display: block;
margin-before: 0.5em;
margin-after: 0.5em;
margin-start: auto;
margin-end: auto;
overflow: hidden;
border 1px inset;
opacity: 60%;
color: black;
}
Header {
display: flex;
flex-flow: row wrap;
justify-content: flex-end;
align-items: center;
}
HeaderTitle {
font-size: 2rem;
margin-right: auto;
font-family: 'Roboto', sans-serif;
}
BrandLeft {
color: #FF7F2E;
}
BrandRight {
color: #3FC3BF;
}
HeaderTitle:hover BrandLeft {
color: #999;
}
HeaderTitle:hover BrandRight {
color: #444;
}
Links {
display: flex;
font-size: 1.5rem;
padding: 0.5rem;
}
Description {
font-size: 1.25rem;
font-family: 'Roboto Mono', monospace;
}
PostList {
display: flex;
flex-direction: column;
}
YearGroup {
padding: 0.5rem;
display: flex;
flex-direction: column;
}
YearTitle {
font-size: 1.5rem;
font-family: 'Roboto Mono', monospace;
font-weight: bold;
padding-bottom: 0.8rem;
}
YearTitle:hover {
color: #FF7F2E;
}
PostListing {
display: flex;
justify-content: flex-end;
}
PostListTitle {
margin-right: auto;
font-family: 'Roboto', sans-serif;
font-size: 1.25rem;
text-decoration: underline;
}
PostListTitle:hover {
color: #3FC3BF;
cursor: pointer;
}
PostListDate {
color: #999;
font-family: 'Roboto', sans-serif;
margin-right: 0.5rem;
font-size: 1.25rem;
}
.link::before,
.link::after {
display: inline-block;
opacity: 0;
-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
-moz-transition: -moz-transform 0.3s, opacity 0.2s;
transition: transform 0.3s, opacity 0.2s;
}
.link::before {
margin-right: 0.5rem;
content: '[';
-webkit-transform: translateX(1rem);
-moz-transform: translateX(1rem);
transform: translateX(1rem);
}
.link::after {
margin-left: 0.5rem;
content: ']';
-webkit-transform: translateX(-1rem);
-moz-transform: translateX(-1rem);
transform: translateX(-1rem);
}
.link:hover::before,
.link:hover::after,
.link:focus::before,
.link:focus::after {
opacity: 1;
-webkit-transform: translateX(0rem);
-moz-transform: translateX(0rem);
transform: translateX(0rem);
cursor: pointer;
}
Footer {
color: grey;
font-size: 0.7rem;
}
PostTitle {
font-size: 3rem;
font-weight: bold;
font-family: 'Roboto', sans-serif;
}
Content > * {
max-width: 50rem;
width: 100%;
}
@keyframes shiftLeft {
0% { margin-left: 0.0rem; }
25% { margin-left: -0.1rem; }
50% { margin-left: -0.2rem; }
75% { margin-left: -0.3rem; }
100% { margin-left: 0.0rem; }
}
BackButton {
font-size: 2rem;
margin-right: auto;
}
BackButton:hover {
animation-name: shiftLeft;
animation-duration: 1s;
animation-iteration-count: infinite;
cursor: pointer;
}
:not(pre) > code {
font-family: 'Roboto Mono', monospace;
background-color: #eee;
border: 1px solid #999;
}
@media all and (max-width:500px) {
Header {
flex-direction: column;
}
YearGroup {
}
YearTitle {
font-size: 2rem;
}
PostListing {
font-size: 1.5rem;
background-color: #F2F2F2;
border: 1px solid #CCC;
border-radius: 2px;
}
html {
font-size: 14px;
}
}
@media all and (max-width:800px) {
Header {
justify-content: space-around;
}
html {
font-size: 16px;
}
}
@media all and (min-width:1100px) {
html {
font-size: 18px;
}
}
| 0.475849 | 0.102844 |
body {
background-color: #e7e8eb;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei";
}
input, textarea, button, a {
outline: 0 none !important;
}
a {
color: #222;
outline: none;
}
a:hover {
color: #222;
}
a[href] {
cursor: pointer;
}
ul, li {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
.mt10 {
margin-top: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt20 {
margin-top: 20px;
}
.pr15 {
padding-right: 15px;
}
/*ui-tips*/
.ui-tips {
margin: 10px 0;
padding: 10px;
color: #626f7b;
border-radius: 4px;
}
.ui-tips .icon {
color: #00aeef;
}
/*ui-small-box*/
.ui-small-box {
width: 250px;
text-align: center;
font-size: 16px;
display: inline-block;
margin: 15px 5px;
}
.ui-small-box a {
padding: 25px;
color: #fff;
text-decoration: none;
}
.ui-small-box .num {
font-size: 35px;
display: block;
}
.small-box-green {
background-color: #60d295;
color: #fff;
}
.small-box-green:hover {
background-color: #58c88d;
}
.small-box-blue {
background-color: #7cbae5;
color: #fff;
}
.small-box-blue:hover {
background-color: #73afd9;
}
.small-box-yellow {
background-color: #f39c12;;
color: #fff;
}
.small-box-yellow:hover {
background-color: #da8c10;;
}
/*搜索表单*/
.form-search {
background-color: #f4f5f9;
padding: 15px;
}
.form-search .form-group {
margin-right: 20px;
padding-bottom: 10px;
}
.form-search label {
margin-right: 10px;
}
/*表格中的超链接*/
table a {
color: #459ae9;
}
table a:hover {
color: #459ae9;
text-decoration: underline;
}
/*==========页面内容宽度==========*/
.layout-width {
max-width: 1200px;
min-width: 768px;
}
/*==========头部==========*/
.layout-header {
min-height: 60px;
min-width: 768px;
background-color: #fff;
border-top: 4px solid #44b549;
border-bottom: 1px solid #d9dadc;
line-height: 60px;
}
.layout-header .logo {
font-size: 20px;
text-decoration: none;
}
/*去掉默认槽宽(gutter) 默认的col有15px padding*/
.layout-header .container .row .col-md-12 {
padding: 0;
}
.layout-header .account-info > * {
margin-left: 10px;
text-decoration: none;
}
.my-red-dot {
width: 7px;
height: 7px;
display: inline-block;
position: absolute;
top: -3px;
right: -3px;
background-color: red;
border-radius: 5px;
font-size: 8px;
}
/*top menu*/
.layout-header .top-menu {
margin-left: 92px;
}
.layout-header .top-menu > ul {
padding-top: 10px;
}
.layout-header .top-menu li {
float: left;
position: relative;
height: 50px;
}
.layout-header .top-menu .nav-child-menu {
position: absolute;
width: 150px;
z-index: 100;
background-color: #fff;
border: 1px solid #ddd;
border-top: 0;
display: none;
left: -1px;
top: 50px;
}
.layout-header .top-menu li:hover .nav-child-menu {
display: block;
}
.layout-header .top-menu .nav-child-menu a {
display: block;
line-height: 40px;
height: 40px;
text-decoration: none;
padding-left: 8px;
padding-right: 8px;
}
.layout-header .top-menu .nav-child-menu a:hover {
background: #f0f0f0;
}
.layout-header .top-menu > ul > li > a {
display: block;
padding-left: 8px;
padding-right: 8px;
line-height: 40px;
height: 40px;
}
.layout-header .top-menu > ul > li > a.active {
background-color: #f9f9f9;
border-bottom: 4px solid #44b549;
font-weight: bold;
/*padding: 12px 8px 8px 8px;*/
text-decoration: none;
}
.layout-header .top-menu > ul > li > a.active:hover {
border-bottom: 4px solid #44b549;
}
.layout-header .top-menu > ul > li:hover > a {
text-decoration: none;
border-bottom: 4px solid #9a9da6;
}
.layout-header .top-menu > ul > li:hover > a.active {
text-decoration: none;
border-bottom: 4px solid #44b549;
}
/*==========底部==========*/
.layout-header .login-out {
margin-left: 20px;
padding-left: 10px;
border-left: 1px solid #e7e7eb;
}
.layout-footer {
min-width: 768px;
background-color: #b8b9b9;
min-height: 60px;
line-height: 60px;
color: #f1f1f1;
}
.layout-footer .links li {
float: left;
margin-right: 10px;
}
.layout-footer a {
color: #f1f1f1;
}
.layout-footer a:hover {
color: #f1f1f1;
}
/*==========中间主要区域==========*/
.display-table {
display: table;
width: 100%
}
.layout-main {
margin: 20px auto; /*36px*/
background-color: #fff;
}
/*去掉默认槽宽(gutter) 默认的col有15px padding*/
.layout-main > .row > .col-md-12 {
padding: 0;
}
/*==========左菜单区域==========*/
.layout-menu {
width: 210px;
min-height: 500px;
}
/*菜单顶部padding*/
.layout-menu .main-menu {
padding-top: 18px;
}
/*菜单项*/
.layout-menu .main-menu .menu-item {
display: block;
height: 34px;
line-height: 34px;
padding-left: 30px;
text-decoration: none;
}
/*左图标*/
.layout-menu .main-menu .menu-item .icon {
padding-right: 5px;
font-size: 16px;
color: #b2b2b2;
}
/*不可点击菜单项*/
.layout-menu .main-menu span.menu-item {
color: #8d8d8d;
}
/*菜单项hover*/
.layout-menu .main-menu a:hover {
background-color: #f4f5f9;
}
/*激活项*/
.layout-menu .main-menu .active a, .layout-menu .main-menu .active .icon {
background-color: #44b549;
color: #fff;
}
/*二级菜单*/
.layout-menu .main-menu .level-2 a {
padding-left: 50px;
}
/*==========内容区顶部==========*/
.layout-content {
border-left: 1px solid #e7e7eb;
display: table-cell;
width: 100%;
}
/*标题*/
.layout-content .page-title {
padding: 15px 0 0 30px;
font-weight: bold;
font-size: 16px;
}
/*选项卡*/
.layout-content .top-nav li {
float: left;
margin-bottom: -1px;
position: relative;
}
.layout-content .top-nav li a, .layout-content .top-nav li span {
display: inline-block;
height: 40px;
padding: 10px 30px;
border-bottom: 1px solid #e7e7eb;
text-decoration: none;
}
.layout-content .top-nav li a:hover {
border-bottom: 3px solid #9a9da6;
}
.layout-content .top-nav li.active a,
.layout-content .top-nav li.active span,
.layout-content .top-nav li.active a:hover {
border-bottom: 3px solid #44b549;
}
/*子选项卡*/
.content-top-sub {
background-color: #f4f5f9;
padding-left: 30px;
}
.layout-content .sub-nav li {
float: left;
position: relative;
line-height: 35px;
}
.layout-content .sub-nav .line {
color: #d9dadc;
margin: 0 10px;
}
.layout-content .sub-nav li a {
color: #797979;
display: inline-block;
height: 35px;
text-decoration: none;
}
.layout-content .sub-nav li.active a,
.layout-content .sub-nav li.active span,
.layout-content .sub-nav li.active a:hover {
color: #222;
}
.layout-content .sub-nav li a:hover {
color: #222;
text-decoration: underline;
}
/*选项卡下边线*/
.layout-content .content-top {
border-bottom: 1px solid #e7e7eb;
}
/*主内容区*/
.layout-content .content-main {
margin-top: 15px;
padding-bottom: 20px;
}
/*分页*/
.pagination {
padding: 3px;
text-align: center;
padding-right: 15px;
}
.pagination a, .pagination span {
border: #ddd 1px solid;
text-decoration: none;
color: #666;
padding: 5px 10px;
margin-left: 4px;
}
.pagination a:hover {
border: #a0a0a0 1px solid;
}
.pagination .active {
font-weight: bold;
background-color: #f0f0f0;
}
.pagination .disabled {
border: #f3f3f3 1px solid;
color: #aaa;
}
|
web/static/admin/css/layout.css
|
body {
background-color: #e7e8eb;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei";
}
input, textarea, button, a {
outline: 0 none !important;
}
a {
color: #222;
outline: none;
}
a:hover {
color: #222;
}
a[href] {
cursor: pointer;
}
ul, li {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
.mt10 {
margin-top: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt20 {
margin-top: 20px;
}
.pr15 {
padding-right: 15px;
}
/*ui-tips*/
.ui-tips {
margin: 10px 0;
padding: 10px;
color: #626f7b;
border-radius: 4px;
}
.ui-tips .icon {
color: #00aeef;
}
/*ui-small-box*/
.ui-small-box {
width: 250px;
text-align: center;
font-size: 16px;
display: inline-block;
margin: 15px 5px;
}
.ui-small-box a {
padding: 25px;
color: #fff;
text-decoration: none;
}
.ui-small-box .num {
font-size: 35px;
display: block;
}
.small-box-green {
background-color: #60d295;
color: #fff;
}
.small-box-green:hover {
background-color: #58c88d;
}
.small-box-blue {
background-color: #7cbae5;
color: #fff;
}
.small-box-blue:hover {
background-color: #73afd9;
}
.small-box-yellow {
background-color: #f39c12;;
color: #fff;
}
.small-box-yellow:hover {
background-color: #da8c10;;
}
/*搜索表单*/
.form-search {
background-color: #f4f5f9;
padding: 15px;
}
.form-search .form-group {
margin-right: 20px;
padding-bottom: 10px;
}
.form-search label {
margin-right: 10px;
}
/*表格中的超链接*/
table a {
color: #459ae9;
}
table a:hover {
color: #459ae9;
text-decoration: underline;
}
/*==========页面内容宽度==========*/
.layout-width {
max-width: 1200px;
min-width: 768px;
}
/*==========头部==========*/
.layout-header {
min-height: 60px;
min-width: 768px;
background-color: #fff;
border-top: 4px solid #44b549;
border-bottom: 1px solid #d9dadc;
line-height: 60px;
}
.layout-header .logo {
font-size: 20px;
text-decoration: none;
}
/*去掉默认槽宽(gutter) 默认的col有15px padding*/
.layout-header .container .row .col-md-12 {
padding: 0;
}
.layout-header .account-info > * {
margin-left: 10px;
text-decoration: none;
}
.my-red-dot {
width: 7px;
height: 7px;
display: inline-block;
position: absolute;
top: -3px;
right: -3px;
background-color: red;
border-radius: 5px;
font-size: 8px;
}
/*top menu*/
.layout-header .top-menu {
margin-left: 92px;
}
.layout-header .top-menu > ul {
padding-top: 10px;
}
.layout-header .top-menu li {
float: left;
position: relative;
height: 50px;
}
.layout-header .top-menu .nav-child-menu {
position: absolute;
width: 150px;
z-index: 100;
background-color: #fff;
border: 1px solid #ddd;
border-top: 0;
display: none;
left: -1px;
top: 50px;
}
.layout-header .top-menu li:hover .nav-child-menu {
display: block;
}
.layout-header .top-menu .nav-child-menu a {
display: block;
line-height: 40px;
height: 40px;
text-decoration: none;
padding-left: 8px;
padding-right: 8px;
}
.layout-header .top-menu .nav-child-menu a:hover {
background: #f0f0f0;
}
.layout-header .top-menu > ul > li > a {
display: block;
padding-left: 8px;
padding-right: 8px;
line-height: 40px;
height: 40px;
}
.layout-header .top-menu > ul > li > a.active {
background-color: #f9f9f9;
border-bottom: 4px solid #44b549;
font-weight: bold;
/*padding: 12px 8px 8px 8px;*/
text-decoration: none;
}
.layout-header .top-menu > ul > li > a.active:hover {
border-bottom: 4px solid #44b549;
}
.layout-header .top-menu > ul > li:hover > a {
text-decoration: none;
border-bottom: 4px solid #9a9da6;
}
.layout-header .top-menu > ul > li:hover > a.active {
text-decoration: none;
border-bottom: 4px solid #44b549;
}
/*==========底部==========*/
.layout-header .login-out {
margin-left: 20px;
padding-left: 10px;
border-left: 1px solid #e7e7eb;
}
.layout-footer {
min-width: 768px;
background-color: #b8b9b9;
min-height: 60px;
line-height: 60px;
color: #f1f1f1;
}
.layout-footer .links li {
float: left;
margin-right: 10px;
}
.layout-footer a {
color: #f1f1f1;
}
.layout-footer a:hover {
color: #f1f1f1;
}
/*==========中间主要区域==========*/
.display-table {
display: table;
width: 100%
}
.layout-main {
margin: 20px auto; /*36px*/
background-color: #fff;
}
/*去掉默认槽宽(gutter) 默认的col有15px padding*/
.layout-main > .row > .col-md-12 {
padding: 0;
}
/*==========左菜单区域==========*/
.layout-menu {
width: 210px;
min-height: 500px;
}
/*菜单顶部padding*/
.layout-menu .main-menu {
padding-top: 18px;
}
/*菜单项*/
.layout-menu .main-menu .menu-item {
display: block;
height: 34px;
line-height: 34px;
padding-left: 30px;
text-decoration: none;
}
/*左图标*/
.layout-menu .main-menu .menu-item .icon {
padding-right: 5px;
font-size: 16px;
color: #b2b2b2;
}
/*不可点击菜单项*/
.layout-menu .main-menu span.menu-item {
color: #8d8d8d;
}
/*菜单项hover*/
.layout-menu .main-menu a:hover {
background-color: #f4f5f9;
}
/*激活项*/
.layout-menu .main-menu .active a, .layout-menu .main-menu .active .icon {
background-color: #44b549;
color: #fff;
}
/*二级菜单*/
.layout-menu .main-menu .level-2 a {
padding-left: 50px;
}
/*==========内容区顶部==========*/
.layout-content {
border-left: 1px solid #e7e7eb;
display: table-cell;
width: 100%;
}
/*标题*/
.layout-content .page-title {
padding: 15px 0 0 30px;
font-weight: bold;
font-size: 16px;
}
/*选项卡*/
.layout-content .top-nav li {
float: left;
margin-bottom: -1px;
position: relative;
}
.layout-content .top-nav li a, .layout-content .top-nav li span {
display: inline-block;
height: 40px;
padding: 10px 30px;
border-bottom: 1px solid #e7e7eb;
text-decoration: none;
}
.layout-content .top-nav li a:hover {
border-bottom: 3px solid #9a9da6;
}
.layout-content .top-nav li.active a,
.layout-content .top-nav li.active span,
.layout-content .top-nav li.active a:hover {
border-bottom: 3px solid #44b549;
}
/*子选项卡*/
.content-top-sub {
background-color: #f4f5f9;
padding-left: 30px;
}
.layout-content .sub-nav li {
float: left;
position: relative;
line-height: 35px;
}
.layout-content .sub-nav .line {
color: #d9dadc;
margin: 0 10px;
}
.layout-content .sub-nav li a {
color: #797979;
display: inline-block;
height: 35px;
text-decoration: none;
}
.layout-content .sub-nav li.active a,
.layout-content .sub-nav li.active span,
.layout-content .sub-nav li.active a:hover {
color: #222;
}
.layout-content .sub-nav li a:hover {
color: #222;
text-decoration: underline;
}
/*选项卡下边线*/
.layout-content .content-top {
border-bottom: 1px solid #e7e7eb;
}
/*主内容区*/
.layout-content .content-main {
margin-top: 15px;
padding-bottom: 20px;
}
/*分页*/
.pagination {
padding: 3px;
text-align: center;
padding-right: 15px;
}
.pagination a, .pagination span {
border: #ddd 1px solid;
text-decoration: none;
color: #666;
padding: 5px 10px;
margin-left: 4px;
}
.pagination a:hover {
border: #a0a0a0 1px solid;
}
.pagination .active {
font-weight: bold;
background-color: #f0f0f0;
}
.pagination .disabled {
border: #f3f3f3 1px solid;
color: #aaa;
}
| 0.318379 | 0.070977 |
.page-container {
/* border-color: navajowhite;
border-style: dotted; */
width: fit-content;
display: grid;
/* background-color: rgb(18, 11, 31, 0.4); */
grid-template-columns: 0.8fr 3fr;
grid-template-rows: auto auto max-content auto max-content auto;
grid-template-areas:
'hero-c hero-c'
'book-form-c book-form-c'
'description-c description-c'
'travel-c travel-c'
'footer-c footer-c';
}
.page-container-add {
display: grid;
grid-template-areas:
'hero-c'
'destination-c';
}
.hero-c {
grid-area: hero-c;
}
.description-c {
grid-area: description-c;
}
.book-form-c {
grid-area: book-form-c;
}
.travel-c {
grid-area: travel-c;
margin-right: 20vh;
margin-left: 20vh;
margin-top: 8vh;
margin-bottom: 20vh;
}
.footer-c {
grid-area: footer-c;
}
.destination-form-c {
grid-area: destination-c;
justify-self: center;
margin-top: 8vh;
background-color: aliceblue;
border-radius: 16px;
padding: 4vh;
width: fit-content;
margin-bottom: 16vh;
}
.main-section {
/* border-color: red;
border-style: dotted; */
justify-self: center;
place-self: stretch;
margin-right: 20vh;
margin-left: 20vh;
}
/*Here begins the styling*/
.header-nav nav ul {
list-style-type: none;
display: flex;
align-items: center;
}
.header-nav nav a {
text-decoration: none;
color: aliceblue;
font-size: 2.5vh;
padding: 16px;
font-weight: bold;
}
.header-nav nav a:hover {
background-color: rgba(77, 150, 111, 0.8);
border-radius: 16px;
}
.header-nav nav li:first-of-type {
flex-grow: 1;
color: aliceblue;
font-size: 5vh;
}
.header-nav nav li:not(first-of-type) {
flex-grow: 0;
}
nav button {
background-color: aliceblue;
border-radius: 16px;
margin-left: 40px;
padding: 16px;
color: #424687;
font-weight: bold;
font-size: 2.3vh;
margin-right: 52px;
}
nav button:hover {
background-color: rgb(255, 251, 254);
}
.burger-menu {
display: none;
}
.hero-section {
text-align: center;
}
.hero-section p {
font-size: 6.5vh;
color: aliceblue;
/* color: rgb(18, 11, 31); */
/* -webkit-text-stroke-color: #221e57; */
/* -webkit-text-stroke-color: aliceblue;
-webkit-text-stroke-width: 0.5px; */
}
.btns {
font-size: 2vh;
border-radius: 16px;
color: aliceblue;
background-color: #c767af;
font-weight: bold;
padding: 20px 52px;
/* border: none */
}
.btns:hover {
background-color: rgb(212, 132, 192);
}
.form-section {
/* margin: auto;
width: fit-content; */
margin-top: 80px;
padding: 52px;
font-size: 2.5vh;
background-color: aliceblue;
border-radius: 24px;
margin-bottom: 80px;
text-align: center;
}
.form-item {
padding: 8px 36px;
display: inline-block;
vertical-align: middle;
text-align: left;
}
.form-cell {
border-radius: 16px;
padding: 8px;
/* width: -moz-fit-content; */
/* width: fit-content; */
font-size: 2vh;
margin-top: 12px;
background-color: rgba(199, 103, 175, 0.2);
outline: none;
width: 20vh;
}
input[type='number']::-webkit-inner-spin-button {
/* -webkit-appearance: none; */
opacity: 1;
}
input::-webkit-datetime-edit {
color: grey;
}
input:focus::-webkit-datetime-edit {
color: #000;
}
.overflow-ellipsis {
/* height: calc(100%);
word-wrap: break-word;
width: calc(100%); */
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 24;
-webkit-box-orient: vertical;
}
.description-section {
background-color: rgba(255, 255, 255, 0.6);
display: grid;
grid-template-columns: 2fr 3fr;
grid-template-rows: fit-content;
grid-template-areas: 'txt img';
background-color: aliceblue;
border-radius: 0 24px 24px 0;
margin-right: 20vh;
}
.description-text {
padding: 20px;
color: white;
font-size: 2vh;
color: #221e57;
grid-area: txt;
align-self: center;
}
.description-text p:first-of-type {
font-size: 4vh;
}
.description-image {
grid-area: img;
object-fit: fill;
overflow: hidden;
padding: 16px;
}
img {
height: 100%;
width: 100%;
border-radius: 24px;
}
.specialButton {
display: none;
text-align: right;
}
.specialButton button {
width: 12vh;
height: 4vh;
border-radius: 24px;
margin: 16px;
color: aliceblue;
background-color: #c767af;
font-weight: bold;
}
.side-nav {
background-color: rgb(18, 11, 31);
border-radius: 24px 0 0 24px;
border-style: solid none solid solid;
border-color: rgba(157, 154, 207, 0.6);
/* box-shadow: 0px 1px 0px rgba(157, 154, 207, 0.6) inset; */
margin-left: 20vh;
}
.side-nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.side-nav a {
text-decoration: none;
color: aliceblue;
font-size: 2vh;
font-weight: bold;
display: block;
padding: 24px 32px;
}
.side-nav li:first-child a:hover {
border-top-left-radius: 20px;
}
.side-nav a:hover {
background-color: rgba(157, 154, 207, 0.6);
}
.footer-section {
color: aliceblue;
text-align: center;
}
.footer-text {
margin: 0 20vh;
font-size: 1.8vh;
}
.form-subscribe {
display: inline-flex;
margin: 12px;
padding: 0;
background-color: aliceblue;
border-radius: 24px;
}
.form-subscribe input {
height: 6vh;
width: 20vh;
border-radius: 24px 0 0 24px;
font-size: 1.8vh;
outline: none;
border: none;
margin: 0;
padding-left: 16px;
background-color: aliceblue;
}
.form-subscribe button {
border-radius: 24px;
border: none;
margin: 0;
background-color: #c767af;
font-weight: bold;
padding: 0 8px;
border-style: solid;
border-color: aliceblue;
font-size: 1.5vh;
border-width: 4px;
color: aliceblue;
}
.form-subscribe button:hover {
background-color: rgb(212, 132, 192);
}
.footer-nav {
margin-top: 24px;
background-color: rgb(18, 11, 31, 0.8);
padding: 8px;
}
.footer-nav nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
}
.footer-nav nav a {
text-decoration: none;
color: aliceblue;
font-size: 2.5vh;
padding: 24px;
font-weight: bold;
}
.footer-nav nav li:not(:first-of-type) a:hover {
background-color: rgba(157, 154, 207, 0.6);
}
.footer-nav li:first-of-type {
margin-right: auto;
margin-top: 4px;
font-size: 1.8vh;
}
#credits {
font-size: 1.8vh;
padding-left: 0;
}
a.nostyle:link {
text-decoration: inherit;
color: inherit;
}
a.nostyle:visited {
text-decoration: inherit;
color: inherit;
}
@media screen and (max-width: 1200px) {
.description-section {
display: inline-block;
}
}
@media screen and (max-width: 950px) {
nav a,
nav button {
display: none;
}
.footer-nav li:first-of-type {
margin: auto;
}
#credits {
display: inline-flex;
}
.burger-menu {
display: initial;
width: 36px;
height: 36px;
border: 2px solid;
border-radius: 8px;
border-color: rgb(18, 11, 31);
position: absolute;
top: 8px;
right: 8px;
background-color: aliceblue;
}
.burger-menu span {
display: block;
border: 1px solid;
border-color: rgb(18, 11, 31);
width: 16px;
margin: 4px auto;
}
.burger-menu span:nth-of-type(2) {
margin-top: 8px;
}
.burger-menu span:nth-of-type(3) {
margin-top: 8px;
}
}
@media screen and (max-width: 768px) {
.form-section {
padding: 4px 0;
}
.description-section {
border-radius: 24px;
}
.main-section,
.description-section,
.footer-text {
margin-left: 16px;
margin-right: 16px;
}
.description-section button {
align-self: center;
}
.specialButton {
display: block;
}
.travel-c {
margin-right: 2vh;
margin-left: 2vh;
}
}
|
assets/styles/styles.css
|
.page-container {
/* border-color: navajowhite;
border-style: dotted; */
width: fit-content;
display: grid;
/* background-color: rgb(18, 11, 31, 0.4); */
grid-template-columns: 0.8fr 3fr;
grid-template-rows: auto auto max-content auto max-content auto;
grid-template-areas:
'hero-c hero-c'
'book-form-c book-form-c'
'description-c description-c'
'travel-c travel-c'
'footer-c footer-c';
}
.page-container-add {
display: grid;
grid-template-areas:
'hero-c'
'destination-c';
}
.hero-c {
grid-area: hero-c;
}
.description-c {
grid-area: description-c;
}
.book-form-c {
grid-area: book-form-c;
}
.travel-c {
grid-area: travel-c;
margin-right: 20vh;
margin-left: 20vh;
margin-top: 8vh;
margin-bottom: 20vh;
}
.footer-c {
grid-area: footer-c;
}
.destination-form-c {
grid-area: destination-c;
justify-self: center;
margin-top: 8vh;
background-color: aliceblue;
border-radius: 16px;
padding: 4vh;
width: fit-content;
margin-bottom: 16vh;
}
.main-section {
/* border-color: red;
border-style: dotted; */
justify-self: center;
place-self: stretch;
margin-right: 20vh;
margin-left: 20vh;
}
/*Here begins the styling*/
.header-nav nav ul {
list-style-type: none;
display: flex;
align-items: center;
}
.header-nav nav a {
text-decoration: none;
color: aliceblue;
font-size: 2.5vh;
padding: 16px;
font-weight: bold;
}
.header-nav nav a:hover {
background-color: rgba(77, 150, 111, 0.8);
border-radius: 16px;
}
.header-nav nav li:first-of-type {
flex-grow: 1;
color: aliceblue;
font-size: 5vh;
}
.header-nav nav li:not(first-of-type) {
flex-grow: 0;
}
nav button {
background-color: aliceblue;
border-radius: 16px;
margin-left: 40px;
padding: 16px;
color: #424687;
font-weight: bold;
font-size: 2.3vh;
margin-right: 52px;
}
nav button:hover {
background-color: rgb(255, 251, 254);
}
.burger-menu {
display: none;
}
.hero-section {
text-align: center;
}
.hero-section p {
font-size: 6.5vh;
color: aliceblue;
/* color: rgb(18, 11, 31); */
/* -webkit-text-stroke-color: #221e57; */
/* -webkit-text-stroke-color: aliceblue;
-webkit-text-stroke-width: 0.5px; */
}
.btns {
font-size: 2vh;
border-radius: 16px;
color: aliceblue;
background-color: #c767af;
font-weight: bold;
padding: 20px 52px;
/* border: none */
}
.btns:hover {
background-color: rgb(212, 132, 192);
}
.form-section {
/* margin: auto;
width: fit-content; */
margin-top: 80px;
padding: 52px;
font-size: 2.5vh;
background-color: aliceblue;
border-radius: 24px;
margin-bottom: 80px;
text-align: center;
}
.form-item {
padding: 8px 36px;
display: inline-block;
vertical-align: middle;
text-align: left;
}
.form-cell {
border-radius: 16px;
padding: 8px;
/* width: -moz-fit-content; */
/* width: fit-content; */
font-size: 2vh;
margin-top: 12px;
background-color: rgba(199, 103, 175, 0.2);
outline: none;
width: 20vh;
}
input[type='number']::-webkit-inner-spin-button {
/* -webkit-appearance: none; */
opacity: 1;
}
input::-webkit-datetime-edit {
color: grey;
}
input:focus::-webkit-datetime-edit {
color: #000;
}
.overflow-ellipsis {
/* height: calc(100%);
word-wrap: break-word;
width: calc(100%); */
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 24;
-webkit-box-orient: vertical;
}
.description-section {
background-color: rgba(255, 255, 255, 0.6);
display: grid;
grid-template-columns: 2fr 3fr;
grid-template-rows: fit-content;
grid-template-areas: 'txt img';
background-color: aliceblue;
border-radius: 0 24px 24px 0;
margin-right: 20vh;
}
.description-text {
padding: 20px;
color: white;
font-size: 2vh;
color: #221e57;
grid-area: txt;
align-self: center;
}
.description-text p:first-of-type {
font-size: 4vh;
}
.description-image {
grid-area: img;
object-fit: fill;
overflow: hidden;
padding: 16px;
}
img {
height: 100%;
width: 100%;
border-radius: 24px;
}
.specialButton {
display: none;
text-align: right;
}
.specialButton button {
width: 12vh;
height: 4vh;
border-radius: 24px;
margin: 16px;
color: aliceblue;
background-color: #c767af;
font-weight: bold;
}
.side-nav {
background-color: rgb(18, 11, 31);
border-radius: 24px 0 0 24px;
border-style: solid none solid solid;
border-color: rgba(157, 154, 207, 0.6);
/* box-shadow: 0px 1px 0px rgba(157, 154, 207, 0.6) inset; */
margin-left: 20vh;
}
.side-nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.side-nav a {
text-decoration: none;
color: aliceblue;
font-size: 2vh;
font-weight: bold;
display: block;
padding: 24px 32px;
}
.side-nav li:first-child a:hover {
border-top-left-radius: 20px;
}
.side-nav a:hover {
background-color: rgba(157, 154, 207, 0.6);
}
.footer-section {
color: aliceblue;
text-align: center;
}
.footer-text {
margin: 0 20vh;
font-size: 1.8vh;
}
.form-subscribe {
display: inline-flex;
margin: 12px;
padding: 0;
background-color: aliceblue;
border-radius: 24px;
}
.form-subscribe input {
height: 6vh;
width: 20vh;
border-radius: 24px 0 0 24px;
font-size: 1.8vh;
outline: none;
border: none;
margin: 0;
padding-left: 16px;
background-color: aliceblue;
}
.form-subscribe button {
border-radius: 24px;
border: none;
margin: 0;
background-color: #c767af;
font-weight: bold;
padding: 0 8px;
border-style: solid;
border-color: aliceblue;
font-size: 1.5vh;
border-width: 4px;
color: aliceblue;
}
.form-subscribe button:hover {
background-color: rgb(212, 132, 192);
}
.footer-nav {
margin-top: 24px;
background-color: rgb(18, 11, 31, 0.8);
padding: 8px;
}
.footer-nav nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
}
.footer-nav nav a {
text-decoration: none;
color: aliceblue;
font-size: 2.5vh;
padding: 24px;
font-weight: bold;
}
.footer-nav nav li:not(:first-of-type) a:hover {
background-color: rgba(157, 154, 207, 0.6);
}
.footer-nav li:first-of-type {
margin-right: auto;
margin-top: 4px;
font-size: 1.8vh;
}
#credits {
font-size: 1.8vh;
padding-left: 0;
}
a.nostyle:link {
text-decoration: inherit;
color: inherit;
}
a.nostyle:visited {
text-decoration: inherit;
color: inherit;
}
@media screen and (max-width: 1200px) {
.description-section {
display: inline-block;
}
}
@media screen and (max-width: 950px) {
nav a,
nav button {
display: none;
}
.footer-nav li:first-of-type {
margin: auto;
}
#credits {
display: inline-flex;
}
.burger-menu {
display: initial;
width: 36px;
height: 36px;
border: 2px solid;
border-radius: 8px;
border-color: rgb(18, 11, 31);
position: absolute;
top: 8px;
right: 8px;
background-color: aliceblue;
}
.burger-menu span {
display: block;
border: 1px solid;
border-color: rgb(18, 11, 31);
width: 16px;
margin: 4px auto;
}
.burger-menu span:nth-of-type(2) {
margin-top: 8px;
}
.burger-menu span:nth-of-type(3) {
margin-top: 8px;
}
}
@media screen and (max-width: 768px) {
.form-section {
padding: 4px 0;
}
.description-section {
border-radius: 24px;
}
.main-section,
.description-section,
.footer-text {
margin-left: 16px;
margin-right: 16px;
}
.description-section button {
align-self: center;
}
.specialButton {
display: block;
}
.travel-c {
margin-right: 2vh;
margin-left: 2vh;
}
}
| 0.466603 | 0.055413 |
body,html {
margin:0;
padding:0;
font-size:100%;
width:100%;
}
h1 {
margin:0;
padding:1rem;
padding-top:2rem;
padding-bottom:1.5rem;
width:100%;
box-sizing:border-box;
text-align:center;
font-size:2.5rem;
font-family:Roboto;
font-weight:300;
}
h2 {
margin:0;
padding-top:2rem;
padding-bottom:2rem;
padding-left:1rem;
padding-right:1rem;
font-size:1rem;
font-family:Roboto;
font-weight:400;
width:100%;
text-align:center;
color:#333333;
}
h3 {
margin:0;
font-family:Roboto;
font-size:1rem;
font-weight:400;
padding:0.5rem;
}
h4 {
margin:0;
font-family:Roboto;
font-size:1rem;
font-weight:300;
padding:0.5rem;
padding-left:1rem;
padding-right:1rem;
}
select {
background:#FFFFFF;
outline:none;
font-family:Roboto;
font-size:0.9rem;
font-weight:300;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
border-radius:0;
padding:0.5rem;
background:#FCFCFC;
border:1px solid #EAEAEA;
}
.center {
text-align:center;
}
.icon {
height:1rem;
vertical-align:-0.2rem;
}
.toolbar-button {
height:2rem;
line-height:2rem;
text-align:center;
background:#F8F8F8;
box-sizing:border-box;
outline:1px solid rgba(0,0,0,0.1);
border:none;
border-bottom:1px solid rgba(0,0,0,0.1);
padding:0;
padding-left:0.5rem;
padding-right:0.5rem;
font-size:0.8rem;
min-width:2rem;
margin-left:0.25rem;
margin-right:0.25rem;
font-family:Roboto;
font-weight:300;
color:#666666;
}
.toolbar-button.error {
outline:1px solid rgba(255,0,0,0.2);
}
.toolbar-button.success {
outline:1px solid rgba(0,200,0,0.4);
}
.toolbar-button:hover {
background:#FCFCFC;
}
.toolbar-button:active {
background:#F0F0F0;
}
.toolbar-button:disabled {
background:#F4F4F4;
color:#BBBBBB;
}
.toolbar-separater {
font-family:Roboto;
font-weight:100;
padding-left:0.5rem;
padding-right:0.5rem;
color:#888888;
}
.input-text {
padding:0.5rem;
border:1px solid #CFCFCF;
font-family:Roboto;
font-size:1rem;
font-weight:300;
outline:none;
}
.input-text:focus {
border:1px solid #2097CF;
}
.options:after {
content:"";
display:block;
clear:both;
}
.option {
font-family:Roboto;
font-size:0.9rem;
font-weight:300;
padding:0.5rem;
padding-left:0.5rem;
border:1px solid #EAEAEA;
background:#FCFCFC;
cursor:pointer;
margin-left:0.25rem;
margin-right:0.25rem;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.option-close {
width:1rem;
margin-left:0.5rem;
cursor:pointer;
}
.option-close:hover {
background:rgba(0,0,0,0.05);
}
.option-close:active {
background:rgba(0,0,0,0.08);
}
.options {
padding-top:0.5rem;
padding-bottom:0.5rem;
}
.options-box {
float:left;
}
.options-button {
float:left;
height:1.5rem;
line-height:1rem;
text-align:center;
background:#F8F8F8;
box-sizing:border-box;
outline:1px solid rgba(0,0,0,0.1);
border:none;
border-bottom:1px solid rgba(0,0,0,0.1);
padding:0;
font-size:0.8rem;
min-width:1.5rem;
margin-left:0.25rem;
margin-right:0.25rem;
font-family:Roboto;
font-weight:300;
color:#666666;
}
.options-button.error {
outline:1px solid rgba(255,0,0,0.2);
}
.options-button:hover {
background:#FCFCFC;
}
.options-button:active {
background:#F0F0F0;
}
.options-button:disabled {
background:#F4F4F4;
color:#BBBBBB;
}
.header {
width:100%;
height:3rem;
background:#2097CF;
border-bottom:2px solid rgba(255,255,255,0.3);
box-sizing:border-box;
padding-left:1rem;
padding-right:1rem;
line-height:3rem;
}
.logo {
color:#FFFFFF;
font-family:Roboto;
font-size:1rem;
float:left;
}
.tabs {
float:right;
}
.tab {
float:left;
padding-left:1rem;
padding-right:1rem;
height:3rem;
font-family:Roboto;
color:#FFFFFF;
font-weight:300;
cursor:pointer;
}
.tab.selected {
background:rgba(0,0,0,0.1);
}
.tab:hover {
background:rgba(255,255,255,0.1);
}
.tab:active {
background:rgba(255,255,255,0.15);
}
.tab-panel {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
}
.toast {
position:absolute;
left:50%;
bottom:1rem;
height:2rem;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
line-height:2rem;
font-size:1rem;
font-family:Roboto;
font-weight:300;
padding-left:1rem;
padding-right:1rem;
background:rgba(0,0,0,0.5);
color:#FFFFFF;
display:none;
}
.toast.error {
background:rgba(200,0,0,0.5);
}
.config-left-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
position:relative;
}
.config-right-column {
float:left;
width:80%;
height:100%;
border-left:1px solid #CACACA;
box-sizing:border-box;
position:relative;
}
.config-components {
width:100%;
position:absolute;
top:5rem;
left:0;
right:0;
bottom:0;
overflow-y:auto;
}
.config-component {
width:100%;
box-sizing:border-box;
padding:1rem;
cursor:pointer;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
background:rgba(0,0,0,0.04);
margin-bottom:0.5rem;
font-family:Roboto;
font-weight:300;
}
.config-component.selected {
background:rgba(0,0,0,0.08);
}
.config-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.config-component-settings {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
padding:1rem;
overflow-y:auto;
}
.config-component-blank {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
}
.config-component-blank span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.config-component-name {
width:100%;
}
.config-component-types {
margin-top:1rem;
border:1px solid rgba(0,0,0,0.1);
margin-left:1rem;
margin-right:1rem;
}
.config-component-types:after {
content:"";
display:block;
clear:both;
}
.config-component-type {
float:left;
width:25%;
box-sizing:border-box;
text-align:center;
padding:0.4rem;
background:#F8F8F8;
font-weight:300;
border-bottom:1px solid rgba(0,0,0,0.1);
cursor:pointer;
color:#666666;
font-family:Roboto;
}
.config-component-type.selected {
background:#F0F0F0;
}
.config-component-type:active {
background:#F0F0F0;
}
.config-component-pane {
width:100%;
padding-left:1rem;
padding-right:1rem;
margin-top:1rem;
display:none;
}
.keyframes-left-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
position:relative;
}
.keyframes-middle-column {
float:left;
width:60%;
height:100%;
box-sizing:border-box;
border-left:1px solid #CACACA;
position:relative;
}
.keyframes-right-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
border-left:1px solid #CACACA;
position:relative;
overflow-y:auto;
}
.keyframes-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.keyframes-field-wrapper {
position:absolute;
left:20%;
right:20%;
bottom:0;
top:3rem;
}
.keyframes-field {
position:absolute;
top:50%;
left:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.keyframes-field-inner {
position:absolute;
left:1rem;
top:1rem;
right:1rem;
bottom:1rem;
background:#F4F4F4;
border:1px solid #CCCCCC;
}
.keyframes-field-overlay {
position:absolute;
left:0.5rem;
top:0.5rem;
right:0.5rem;
bottom:0.5rem;
background:url(../images/tower-takeover-field.png);
background-size:contain;
opacity:1.0;
z-index:2;
}
.keyframes-field-tiles {
position:absolute;
left:0.5rem;
top:0.5rem;
right:0.5rem;
bottom:0.5rem;
overflow:hidden;
border:1px solid rgba(0,0,0,0.4);
}
.keyframes-field-tile {
position:absolute;
width:16.7%;
height:16.7%;
}
.keyframes-field-robot {
position:absolute;
width:12.525%;
height:12.525%;
box-sizing:border-box;
border:4px solid #000000;
z-index:3;
left:18.7%;
bottom:2%;
background:rgba(0,0,0,0.2);
}
.keyframes-field-robot i {
color:#000000;
font-size:1rem;
position:absolute;
left:50%;
top:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.keyframes-field-marker {
position:absolute;
width:2%;
height:2%;
background:rgba(0,0,0,0.3);
border-radius:50%;
}
.keyframes-frames {
width:100%;
position:absolute;
top:5rem;
left:0;
right:0;
bottom:0;
overflow-y:auto;
}
.keyframes-frame {
width:100%;
box-sizing:border-box;
padding:1rem;
cursor:pointer;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
background:rgba(0,0,0,0.04);
margin-bottom:0.5rem;
font-family:Roboto;
font-weight:300;
}
.keyframes-frame.selected {
background:rgba(0,0,0,0.08);
}
.keyframes-properties-pane {
width:100%;
display:none;
padding-left:1rem;
padding-right:1rem;
}
.keyframes-properties-pane h3 {
padding:0;
}
.keyframes-properties-pane h4 {
padding:0;
padding-bottom:0.5rem;
padding-top:1rem;
}
.keyframes-properties-pane select {
width:100%;
font-size:1rem;
background:#FFFFFF;
border:1px solid #CFCFCF;
}
.keyframes-properties-pane select:focus {
border:1px solid #2097CF;
}
.keyframes-init-rotation {
width:100%;
}
.keyframes-pid-value {
width:100%;
}
.keyframes-time-other-value {
width:100%;
}
.keyframes-time-time {
width:100%;
}
.keyframes-no-drive {
background:#FFFFFF;
z-index:2;
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
display:none;
}
.keyframes-no-drive span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.keyframes-left-overlay {
position:absolute;
left:0;
top:0;
bottom:0;
width:20%;
z-index:2;
display:none;
}
.keyframes-right-overlay {
position:absolute;
right:0;
top:0;
bottom:0;
width:20%;
box-sizing:border-box;
background:#FCFCFC;
border-left:1px solid #CCCCCC;
z-index:2;
display:none;
overflow-y:auto;
}
.keyframes-components {
width:100%;
padding:1rem;
box-sizing:border-box;
}
.keyframes-components h3 {
padding:0;
}
.keyframes-playback-component {
padding:0.5rem;
margin:0.5rem;
font-family:Roboto;
font-weight:300;
background:#FFFFFF;
border:1px solid #CFCFCF;
position:relative;
}
.keyframes-playback-lift {
position:absolute;
top:0;
left:0;
bottom:0;
background:#FAFAFA;
z-index:1;
}
.code-blank-pane {
background:#FFFFFF;
z-index:2;
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
display:none;
}
.code-blank-pane span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.code-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.code-export-pane {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
padding:1rem;
}
.code-export-pane div {
padding:0.5rem;
font-size:0.9rem;
font-family:Monospace;
text-align:left;
font-weight:200;
width:100%;
height:100%;
border:1px solid #CFCFCF;
outline:none;
}
.code-export-pane div:focus {
border:1px solid #2097CF;
}
.about-box {
position:absolute;
top:50%;
left:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
font-family:Roboto;
font-size:0.9rem;
text-align:center;
}
.about-box h3 {
padding:0;
}
@media (max-width:960px) {
.toolbar-button {
overflow:hidden;
width:2rem;
}
}
|
css/main.css
|
body,html {
margin:0;
padding:0;
font-size:100%;
width:100%;
}
h1 {
margin:0;
padding:1rem;
padding-top:2rem;
padding-bottom:1.5rem;
width:100%;
box-sizing:border-box;
text-align:center;
font-size:2.5rem;
font-family:Roboto;
font-weight:300;
}
h2 {
margin:0;
padding-top:2rem;
padding-bottom:2rem;
padding-left:1rem;
padding-right:1rem;
font-size:1rem;
font-family:Roboto;
font-weight:400;
width:100%;
text-align:center;
color:#333333;
}
h3 {
margin:0;
font-family:Roboto;
font-size:1rem;
font-weight:400;
padding:0.5rem;
}
h4 {
margin:0;
font-family:Roboto;
font-size:1rem;
font-weight:300;
padding:0.5rem;
padding-left:1rem;
padding-right:1rem;
}
select {
background:#FFFFFF;
outline:none;
font-family:Roboto;
font-size:0.9rem;
font-weight:300;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
border-radius:0;
padding:0.5rem;
background:#FCFCFC;
border:1px solid #EAEAEA;
}
.center {
text-align:center;
}
.icon {
height:1rem;
vertical-align:-0.2rem;
}
.toolbar-button {
height:2rem;
line-height:2rem;
text-align:center;
background:#F8F8F8;
box-sizing:border-box;
outline:1px solid rgba(0,0,0,0.1);
border:none;
border-bottom:1px solid rgba(0,0,0,0.1);
padding:0;
padding-left:0.5rem;
padding-right:0.5rem;
font-size:0.8rem;
min-width:2rem;
margin-left:0.25rem;
margin-right:0.25rem;
font-family:Roboto;
font-weight:300;
color:#666666;
}
.toolbar-button.error {
outline:1px solid rgba(255,0,0,0.2);
}
.toolbar-button.success {
outline:1px solid rgba(0,200,0,0.4);
}
.toolbar-button:hover {
background:#FCFCFC;
}
.toolbar-button:active {
background:#F0F0F0;
}
.toolbar-button:disabled {
background:#F4F4F4;
color:#BBBBBB;
}
.toolbar-separater {
font-family:Roboto;
font-weight:100;
padding-left:0.5rem;
padding-right:0.5rem;
color:#888888;
}
.input-text {
padding:0.5rem;
border:1px solid #CFCFCF;
font-family:Roboto;
font-size:1rem;
font-weight:300;
outline:none;
}
.input-text:focus {
border:1px solid #2097CF;
}
.options:after {
content:"";
display:block;
clear:both;
}
.option {
font-family:Roboto;
font-size:0.9rem;
font-weight:300;
padding:0.5rem;
padding-left:0.5rem;
border:1px solid #EAEAEA;
background:#FCFCFC;
cursor:pointer;
margin-left:0.25rem;
margin-right:0.25rem;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.option-close {
width:1rem;
margin-left:0.5rem;
cursor:pointer;
}
.option-close:hover {
background:rgba(0,0,0,0.05);
}
.option-close:active {
background:rgba(0,0,0,0.08);
}
.options {
padding-top:0.5rem;
padding-bottom:0.5rem;
}
.options-box {
float:left;
}
.options-button {
float:left;
height:1.5rem;
line-height:1rem;
text-align:center;
background:#F8F8F8;
box-sizing:border-box;
outline:1px solid rgba(0,0,0,0.1);
border:none;
border-bottom:1px solid rgba(0,0,0,0.1);
padding:0;
font-size:0.8rem;
min-width:1.5rem;
margin-left:0.25rem;
margin-right:0.25rem;
font-family:Roboto;
font-weight:300;
color:#666666;
}
.options-button.error {
outline:1px solid rgba(255,0,0,0.2);
}
.options-button:hover {
background:#FCFCFC;
}
.options-button:active {
background:#F0F0F0;
}
.options-button:disabled {
background:#F4F4F4;
color:#BBBBBB;
}
.header {
width:100%;
height:3rem;
background:#2097CF;
border-bottom:2px solid rgba(255,255,255,0.3);
box-sizing:border-box;
padding-left:1rem;
padding-right:1rem;
line-height:3rem;
}
.logo {
color:#FFFFFF;
font-family:Roboto;
font-size:1rem;
float:left;
}
.tabs {
float:right;
}
.tab {
float:left;
padding-left:1rem;
padding-right:1rem;
height:3rem;
font-family:Roboto;
color:#FFFFFF;
font-weight:300;
cursor:pointer;
}
.tab.selected {
background:rgba(0,0,0,0.1);
}
.tab:hover {
background:rgba(255,255,255,0.1);
}
.tab:active {
background:rgba(255,255,255,0.15);
}
.tab-panel {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
}
.toast {
position:absolute;
left:50%;
bottom:1rem;
height:2rem;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
line-height:2rem;
font-size:1rem;
font-family:Roboto;
font-weight:300;
padding-left:1rem;
padding-right:1rem;
background:rgba(0,0,0,0.5);
color:#FFFFFF;
display:none;
}
.toast.error {
background:rgba(200,0,0,0.5);
}
.config-left-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
position:relative;
}
.config-right-column {
float:left;
width:80%;
height:100%;
border-left:1px solid #CACACA;
box-sizing:border-box;
position:relative;
}
.config-components {
width:100%;
position:absolute;
top:5rem;
left:0;
right:0;
bottom:0;
overflow-y:auto;
}
.config-component {
width:100%;
box-sizing:border-box;
padding:1rem;
cursor:pointer;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
background:rgba(0,0,0,0.04);
margin-bottom:0.5rem;
font-family:Roboto;
font-weight:300;
}
.config-component.selected {
background:rgba(0,0,0,0.08);
}
.config-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.config-component-settings {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
padding:1rem;
overflow-y:auto;
}
.config-component-blank {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
display:none;
}
.config-component-blank span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.config-component-name {
width:100%;
}
.config-component-types {
margin-top:1rem;
border:1px solid rgba(0,0,0,0.1);
margin-left:1rem;
margin-right:1rem;
}
.config-component-types:after {
content:"";
display:block;
clear:both;
}
.config-component-type {
float:left;
width:25%;
box-sizing:border-box;
text-align:center;
padding:0.4rem;
background:#F8F8F8;
font-weight:300;
border-bottom:1px solid rgba(0,0,0,0.1);
cursor:pointer;
color:#666666;
font-family:Roboto;
}
.config-component-type.selected {
background:#F0F0F0;
}
.config-component-type:active {
background:#F0F0F0;
}
.config-component-pane {
width:100%;
padding-left:1rem;
padding-right:1rem;
margin-top:1rem;
display:none;
}
.keyframes-left-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
position:relative;
}
.keyframes-middle-column {
float:left;
width:60%;
height:100%;
box-sizing:border-box;
border-left:1px solid #CACACA;
position:relative;
}
.keyframes-right-column {
float:left;
width:20%;
height:100%;
background:#FAFAFA;
box-sizing:border-box;
border-left:1px solid #CACACA;
position:relative;
overflow-y:auto;
}
.keyframes-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.keyframes-field-wrapper {
position:absolute;
left:20%;
right:20%;
bottom:0;
top:3rem;
}
.keyframes-field {
position:absolute;
top:50%;
left:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.keyframes-field-inner {
position:absolute;
left:1rem;
top:1rem;
right:1rem;
bottom:1rem;
background:#F4F4F4;
border:1px solid #CCCCCC;
}
.keyframes-field-overlay {
position:absolute;
left:0.5rem;
top:0.5rem;
right:0.5rem;
bottom:0.5rem;
background:url(../images/tower-takeover-field.png);
background-size:contain;
opacity:1.0;
z-index:2;
}
.keyframes-field-tiles {
position:absolute;
left:0.5rem;
top:0.5rem;
right:0.5rem;
bottom:0.5rem;
overflow:hidden;
border:1px solid rgba(0,0,0,0.4);
}
.keyframes-field-tile {
position:absolute;
width:16.7%;
height:16.7%;
}
.keyframes-field-robot {
position:absolute;
width:12.525%;
height:12.525%;
box-sizing:border-box;
border:4px solid #000000;
z-index:3;
left:18.7%;
bottom:2%;
background:rgba(0,0,0,0.2);
}
.keyframes-field-robot i {
color:#000000;
font-size:1rem;
position:absolute;
left:50%;
top:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.keyframes-field-marker {
position:absolute;
width:2%;
height:2%;
background:rgba(0,0,0,0.3);
border-radius:50%;
}
.keyframes-frames {
width:100%;
position:absolute;
top:5rem;
left:0;
right:0;
bottom:0;
overflow-y:auto;
}
.keyframes-frame {
width:100%;
box-sizing:border-box;
padding:1rem;
cursor:pointer;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
background:rgba(0,0,0,0.04);
margin-bottom:0.5rem;
font-family:Roboto;
font-weight:300;
}
.keyframes-frame.selected {
background:rgba(0,0,0,0.08);
}
.keyframes-properties-pane {
width:100%;
display:none;
padding-left:1rem;
padding-right:1rem;
}
.keyframes-properties-pane h3 {
padding:0;
}
.keyframes-properties-pane h4 {
padding:0;
padding-bottom:0.5rem;
padding-top:1rem;
}
.keyframes-properties-pane select {
width:100%;
font-size:1rem;
background:#FFFFFF;
border:1px solid #CFCFCF;
}
.keyframes-properties-pane select:focus {
border:1px solid #2097CF;
}
.keyframes-init-rotation {
width:100%;
}
.keyframes-pid-value {
width:100%;
}
.keyframes-time-other-value {
width:100%;
}
.keyframes-time-time {
width:100%;
}
.keyframes-no-drive {
background:#FFFFFF;
z-index:2;
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
display:none;
}
.keyframes-no-drive span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.keyframes-left-overlay {
position:absolute;
left:0;
top:0;
bottom:0;
width:20%;
z-index:2;
display:none;
}
.keyframes-right-overlay {
position:absolute;
right:0;
top:0;
bottom:0;
width:20%;
box-sizing:border-box;
background:#FCFCFC;
border-left:1px solid #CCCCCC;
z-index:2;
display:none;
overflow-y:auto;
}
.keyframes-components {
width:100%;
padding:1rem;
box-sizing:border-box;
}
.keyframes-components h3 {
padding:0;
}
.keyframes-playback-component {
padding:0.5rem;
margin:0.5rem;
font-family:Roboto;
font-weight:300;
background:#FFFFFF;
border:1px solid #CFCFCF;
position:relative;
}
.keyframes-playback-lift {
position:absolute;
top:0;
left:0;
bottom:0;
background:#FAFAFA;
z-index:1;
}
.code-blank-pane {
background:#FFFFFF;
z-index:2;
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
display:none;
}
.code-blank-pane span {
position:absolute;
top:50%;
left:50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-family:Roboto;
color:#666666;
}
.code-toolbar {
width:100%;
box-sizing:border-box;
height:3rem;
background:#F4F4F4;
border-bottom:2px solid rgba(0,0,0,0.05);
line-height:2.8rem;
padding-left:0.5rem;
padding-right:0.5rem;
}
.code-export-pane {
position:absolute;
top:3rem;
left:0;
right:0;
bottom:0;
padding:1rem;
}
.code-export-pane div {
padding:0.5rem;
font-size:0.9rem;
font-family:Monospace;
text-align:left;
font-weight:200;
width:100%;
height:100%;
border:1px solid #CFCFCF;
outline:none;
}
.code-export-pane div:focus {
border:1px solid #2097CF;
}
.about-box {
position:absolute;
top:50%;
left:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
font-family:Roboto;
font-size:0.9rem;
text-align:center;
}
.about-box h3 {
padding:0;
}
@media (max-width:960px) {
.toolbar-button {
overflow:hidden;
width:2rem;
}
}
| 0.345436 | 0.049681 |
.header-btn {
background-color: #fff;
color: #000;
font-size: 1.5em;
padding: 5px 15px;
border-radius: 5px;
text-align: center;
font-weight: 700;
cursor: pointer;
}
.header-btn a {
color: #000;
}
.header-btn:hover {
background-color: #bbb;
}
.header-btn-secondary {
font-size: 1.5em;
padding: 5px 15px;
margin: 5px 5px;
color: #fff;
border-right: solid 1px white;
text-align: center;
font-weight: 700;
cursor: pointer;
transition:
background-color 0.25s,
color 0.25s,
border-right 0.25s
;
}
.header-btn-secondary-last {
border: none;
}
.header-btn-secondary:hover {
font-size: 1.5em;
padding: 5px 15px;
margin: 5px 5px;
background-color: #fff;
color: #000;
border-right: solid 1px white;
text-align: center;
font-weight: 700;
cursor: pointer;
transition:
background-color 0.25s,
color 0.25s,
border-right 0.25s
;
}
.header-btn-secondary a {
color: #fff;
}
.header-btn-secondary:hover a {
color: #000;
}
/* header */
#header {
width: 100%;
margin-bottom: 120px;
}
#header-top {
width: 100%;
background-color: #2229e8;
padding-bottom: 20px;
}
#header-logo {
width: 200px;
display: inline-block;
margin-top: 15px;
margin-left: 15px;
}
#header-search {
width: 35%;
padding: 12px 10px;
border: none;
display: inline-flex;
position: absolute;
top: 50px;
left: 30%;
}
/* header top buttons */
#header-top-buttons-div {
float: right;
width: 15%;
margin: 35px 210px;
}
#header-top-buttons {
text-align: center;
padding: 0;
}
#header-top-buttons li {
margin: auto 5px;
}
#header-cart {
width: 3.5%;
float: right;
clear: both;
position: relative;
bottom: 100px;
right: 80px;
filter: invert(100%);
min-width: 60px;
cursor: pointer;
}
#header-cart:hover {
filter: invert(80%);
}
/* header bottom */
#header-bottom {
width: 100%;
background-color: #022287;
}
#cat-btns {
text-align: center;
margin: 0;
padding: 10px 0;
position: relative;
left: 22.5%;
width: 50%;
}
/* media queries */
@media only screen and (min-width: 768px) and (max-width: 1500px) {
#header-top-buttons-div {
float: right;
width: 35%;
margin: 35px 75px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1260px) {
#header-top-buttons-div {
float: right;
width: 35%;
margin: 35px 80px;
}
#header-search {
width: 30%;
top: 5%;
left: 27.5%;
}
#header-cart {
right: 40px;
}
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
#header-cart {
float: none;
position: static;
margin-left: 46%;
}
}
@media only screen and (max-width: 768px) {
#header-logo {
margin-left: 35%;
}
#header-top-buttons-div {
float: none;
margin: 0 auto;
width: 45%;
}
#header-search {
position: relative;
display: block;
top: 5%;
width: 50%;
left: 25%;
}
#header-cart {
float: none;
position: static;
margin-left: 45%;
}
}
@media only screen and (max-width: 560px) {
#header-logo {
margin-left: 30%;
}
#header-top-buttons-div {
float: none;
margin: 0 auto;
width: 100%;
}
#header-search {
position: relative;
display: block;
width: 80%;
left: 10%;
}
#header-cart {
float: none;
position: static;
margin-left: 42.5%;
}
.header-btn-secondary {
border: none;
}
}
@media only screen and (max-width: 400px) {
#header-logo {
margin-left: 15%;
}
#header-cart {
float: none;
position: static;
margin-left: 35%;
}
}
|
resources/css/header.css
|
.header-btn {
background-color: #fff;
color: #000;
font-size: 1.5em;
padding: 5px 15px;
border-radius: 5px;
text-align: center;
font-weight: 700;
cursor: pointer;
}
.header-btn a {
color: #000;
}
.header-btn:hover {
background-color: #bbb;
}
.header-btn-secondary {
font-size: 1.5em;
padding: 5px 15px;
margin: 5px 5px;
color: #fff;
border-right: solid 1px white;
text-align: center;
font-weight: 700;
cursor: pointer;
transition:
background-color 0.25s,
color 0.25s,
border-right 0.25s
;
}
.header-btn-secondary-last {
border: none;
}
.header-btn-secondary:hover {
font-size: 1.5em;
padding: 5px 15px;
margin: 5px 5px;
background-color: #fff;
color: #000;
border-right: solid 1px white;
text-align: center;
font-weight: 700;
cursor: pointer;
transition:
background-color 0.25s,
color 0.25s,
border-right 0.25s
;
}
.header-btn-secondary a {
color: #fff;
}
.header-btn-secondary:hover a {
color: #000;
}
/* header */
#header {
width: 100%;
margin-bottom: 120px;
}
#header-top {
width: 100%;
background-color: #2229e8;
padding-bottom: 20px;
}
#header-logo {
width: 200px;
display: inline-block;
margin-top: 15px;
margin-left: 15px;
}
#header-search {
width: 35%;
padding: 12px 10px;
border: none;
display: inline-flex;
position: absolute;
top: 50px;
left: 30%;
}
/* header top buttons */
#header-top-buttons-div {
float: right;
width: 15%;
margin: 35px 210px;
}
#header-top-buttons {
text-align: center;
padding: 0;
}
#header-top-buttons li {
margin: auto 5px;
}
#header-cart {
width: 3.5%;
float: right;
clear: both;
position: relative;
bottom: 100px;
right: 80px;
filter: invert(100%);
min-width: 60px;
cursor: pointer;
}
#header-cart:hover {
filter: invert(80%);
}
/* header bottom */
#header-bottom {
width: 100%;
background-color: #022287;
}
#cat-btns {
text-align: center;
margin: 0;
padding: 10px 0;
position: relative;
left: 22.5%;
width: 50%;
}
/* media queries */
@media only screen and (min-width: 768px) and (max-width: 1500px) {
#header-top-buttons-div {
float: right;
width: 35%;
margin: 35px 75px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1260px) {
#header-top-buttons-div {
float: right;
width: 35%;
margin: 35px 80px;
}
#header-search {
width: 30%;
top: 5%;
left: 27.5%;
}
#header-cart {
right: 40px;
}
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
#header-cart {
float: none;
position: static;
margin-left: 46%;
}
}
@media only screen and (max-width: 768px) {
#header-logo {
margin-left: 35%;
}
#header-top-buttons-div {
float: none;
margin: 0 auto;
width: 45%;
}
#header-search {
position: relative;
display: block;
top: 5%;
width: 50%;
left: 25%;
}
#header-cart {
float: none;
position: static;
margin-left: 45%;
}
}
@media only screen and (max-width: 560px) {
#header-logo {
margin-left: 30%;
}
#header-top-buttons-div {
float: none;
margin: 0 auto;
width: 100%;
}
#header-search {
position: relative;
display: block;
width: 80%;
left: 10%;
}
#header-cart {
float: none;
position: static;
margin-left: 42.5%;
}
.header-btn-secondary {
border: none;
}
}
@media only screen and (max-width: 400px) {
#header-logo {
margin-left: 15%;
}
#header-cart {
float: none;
position: static;
margin-left: 35%;
}
}
| 0.470737 | 0.10393 |
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 Reset Ends Here */
.d1{
background: url("../images/a1.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
height: 89.5vh;
padding: 2%;
color: rgb(255, 255, 255);
}
.nav_p {
display: inline-block;
font-size: 2em;
font-weight: 600;
}
.nav_p:hover {
cursor: none;
}
nav{
display: block;
float: right;
margin-top: 8px;
}
nav a{
color: #ffffff;
text-decoration: none;
margin: .4em 3em .4em 0;
font-size: 1.4em;
}
nav a:hover {
border-bottom: 3px solid rgb(255, 255, 255);
}
#btn_topright {
display: block;
float: right;
background-color: rgb(115, 255, 0);
color: rgb(0, 0, 0);
text-decoration: none;
padding: .5em 1.4em;
font-size: 1.4em;
border-radius: 1.3em;
margin-right: 2%;
transition: all .3s ease-in-out;
}
#btn_topright:hover{
border-radius: 0%;
color: #fff;
background-color: rgb(255, 69, 0);
}
.cont {
margin-top: 9em;
display: grid;
grid-template-columns: 1fr 6fr 6fr 1fr;
grid-gap: .5em;
grid-auto-rows: minmax(100px, auto);
grid-template-areas:
"box1 box2 box3 box4"
" . box5 box5 . ";
}
.box {
padding: 2%;
margin: 0;
text-align: center;
}
.box1 {
grid-area: box1;
align-self: flex-end;
font-size: 1.4em;
writing-mode: sideways-lr;
-webkit-writing-mode: vertical-lr;
letter-spacing: 4px;
margin-bottom: 1em;
opacity: .8;
}
.box2 {
grid-area: box2;
text-align: center;
}
.hero1{
font-size: 10em;
}
.tagline{
font-size: 3em;
}
.box3 {
grid-area: box3;
}
.tag2 {
padding: 5% 1%;
font-size: 2em;
}
.extra {
font-size: 1.2em;
text-align: justify;
padding: 4%;
letter-spacing: 1px;
line-height: 150%;
}
.box4 {
grid-area: box4;
align-self: flex-end;
}
.box5 {
grid-area: box5;
}
.icons li{
margin: 1.5em;
}
.icons li a{
color: #ffffff;
}
.btn_mid{
margin-top: 3em;
padding: .8em 1.2em;
display: inline-block;
background-color: #fff;
font-size: 1.5em;
border-radius: 50px;
text-decoration: none;
color: rgb(0, 0, 0);
transition: all .3s ease-in;
}
.btn_mid:hover{
color: rgb(255, 255, 255);
background-color: rgb(66, 66, 66);
border-bottom: 4px solid #ffffff;
}
.orangeline {
height: 1.2vh;
background-color: rgb(255, 69, 0);
}
|
css/index.css
|
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* CSS Reset Ends Here */
.d1{
background: url("../images/a1.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
height: 89.5vh;
padding: 2%;
color: rgb(255, 255, 255);
}
.nav_p {
display: inline-block;
font-size: 2em;
font-weight: 600;
}
.nav_p:hover {
cursor: none;
}
nav{
display: block;
float: right;
margin-top: 8px;
}
nav a{
color: #ffffff;
text-decoration: none;
margin: .4em 3em .4em 0;
font-size: 1.4em;
}
nav a:hover {
border-bottom: 3px solid rgb(255, 255, 255);
}
#btn_topright {
display: block;
float: right;
background-color: rgb(115, 255, 0);
color: rgb(0, 0, 0);
text-decoration: none;
padding: .5em 1.4em;
font-size: 1.4em;
border-radius: 1.3em;
margin-right: 2%;
transition: all .3s ease-in-out;
}
#btn_topright:hover{
border-radius: 0%;
color: #fff;
background-color: rgb(255, 69, 0);
}
.cont {
margin-top: 9em;
display: grid;
grid-template-columns: 1fr 6fr 6fr 1fr;
grid-gap: .5em;
grid-auto-rows: minmax(100px, auto);
grid-template-areas:
"box1 box2 box3 box4"
" . box5 box5 . ";
}
.box {
padding: 2%;
margin: 0;
text-align: center;
}
.box1 {
grid-area: box1;
align-self: flex-end;
font-size: 1.4em;
writing-mode: sideways-lr;
-webkit-writing-mode: vertical-lr;
letter-spacing: 4px;
margin-bottom: 1em;
opacity: .8;
}
.box2 {
grid-area: box2;
text-align: center;
}
.hero1{
font-size: 10em;
}
.tagline{
font-size: 3em;
}
.box3 {
grid-area: box3;
}
.tag2 {
padding: 5% 1%;
font-size: 2em;
}
.extra {
font-size: 1.2em;
text-align: justify;
padding: 4%;
letter-spacing: 1px;
line-height: 150%;
}
.box4 {
grid-area: box4;
align-self: flex-end;
}
.box5 {
grid-area: box5;
}
.icons li{
margin: 1.5em;
}
.icons li a{
color: #ffffff;
}
.btn_mid{
margin-top: 3em;
padding: .8em 1.2em;
display: inline-block;
background-color: #fff;
font-size: 1.5em;
border-radius: 50px;
text-decoration: none;
color: rgb(0, 0, 0);
transition: all .3s ease-in;
}
.btn_mid:hover{
color: rgb(255, 255, 255);
background-color: rgb(66, 66, 66);
border-bottom: 4px solid #ffffff;
}
.orangeline {
height: 1.2vh;
background-color: rgb(255, 69, 0);
}
| 0.326486 | 0.077483 |
.mw_form{
position: relative;
clear: both;
}
.mw_form:after{
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* Contact Form Styles */
.message-sent-icon{
display: block;
width:52px;
height: 52px;
background: url(../img/message-sent.png) no-repeat;
margin: 0 auto 20px;
}
.message-sent-icon-orange{background-position: 0 -104px;}
.message-sent-icon-green{background-position: 0 -52px;}
[class*='contact-form-template-'] input,
[class*='contact-form-template-'] textarea,
[class*='contact-form-template-'] select{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: auto;
}
[class*='contact-form-template-'] .mw-custom-field-upload{
width: 100%;
}
[class*='contact-form-template-'] input[type='submit']{
float: right;
}
[class*='contact-form-template-'] textarea{
resize: vertical;
}
.datepicker{
display: none;
position: absolute;
z-index: 12;
background: white;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 0;
}
[class*='contact-form-template-'] label{
display: block;
clear: both;
padding-bottom: 4px;
padding-top: 12px;
}
[class*='contact-form-template-'] label.inline{
display: inline-block;
float: left;
clear: both;
margin-right: 12px;
}
[class*='contact-form-template-'] .captcha-holder{
width: 210px;
float: left;
background: white;
border-radius: 2px;
}
[class*='contact-form-template-'] .captcha-holder .mw-ui-col:nth-child(2){
width: 100px;
}
[class*='contact-form-template-'] .captcha-holder .mw-ui-col:nth-child(3){
width: 25px;
}
[class*='contact-form-template-'] .mw-custom-field-price .mw-custom-field-form-controls{
color: #6C6C6C;
font-size: 150%;
}
/* DREAM Template */
.contact-form-template-dream{
position: relative;
overflow: hidden;
}
.contact-form-template-dream .contact-form {
padding: 40px;
background: white;
border:1px solid #D1D1D1;
}
.contact-form-template-dream .message-sent{
padding: 40px;
background: white;
border:1px solid #D1D1D1;
text-align: center;
color: #418CD1;
font-weight: bold;
position: absolute;
top: -100%;
left: 50%;
margin: auto;
z-index: 10;
width: 300px;
margin-left: -190px;
transition: top 0.3s;
-moz-transition: top 0.3s;
-webkit-transition: top 0.3s;
-o-transition: top 0.3s;
}
.contact-form-template-dream textarea, .contact-form-template-dream select, .contact-form-template-dream input[type="text"], .contact-form-template-dream input[type="password"], .contact-form-template-dream input[type="datetime"], .contact-form-template-dream input[type="datetime-local"], .contact-form-template-dream input[type="date"], .contact-form-template-dream input[type="month"], .contact-form-template-dream input[type="time"], .contact-form-template-dream input[type="week"], .contact-form-template-dream input[type="number"], .contact-form-template-dream input[type="email"], .contact-form-template-dream input[type="url"], .contact-form-template-dream input[type="search"], .contact-form-template-dream input[type="tel"], .contact-form-template-dream input[type="color"]{
background-color: #F4F4F4;
border: 1px solid #E6E6E6;
border-radius: 2px;
padding: 10px;
width: 100%;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
}
.contact-form-template-dream textarea:focus, .contact-form-template-dream input[type="text"]:focus, .contact-form-template-dream input[type="password"]:focus, .contact-form-template-dream input[type="datetime"]:focus, .contact-form-template-dream input[type="datetime-local"]:focus, .contact-form-template-dream input[type="date"]:focus, .contact-form-template-dream input[type="month"]:focus, .contact-form-template-dream input[type="time"]:focus, .contact-form-template-dream input[type="week"]:focus, .contact-form-template-dream input[type="number"]:focus, .contact-form-template-dream input[type="email"]:focus, .contact-form-template-dream input[type="url"]:focus, .contact-form-template-dream input[type="search"]:focus, .contact-form-template-dream input[type="tel"]:focus, .contact-form-template-dream input[type="color"]:focus{
box-shadow: inset 0 0 4px #C9C9C9;
}
.contact-form-template-dream .cft-submit{
color:#FFFFFF;
display: inline-block;
padding: 8px 20px;
background:#418CD1;
text-align: center;
border: none;
border-radius: 2px;
cursor: pointer;
}
.contact-form-template-dream .cft-submit:hover, .contact-form-template-dream .cft-submit:focus{ background:#317FC9; }
.contact-form-template-dream .cft-submit:active{ box-shadow: inset 0 0 6px #1F517F; }
.contact-form-template-dream .contact-form-title{
border-bottom: 2px solid #418CD1;
display: inline-block;
padding-bottom: 4px;
margin-bottom: 20px;
}
.contact-form-template-dream input.mw-captcha-input{ width: 85px; float: left; }
.contact-form-template-dream .mw-captcha-img{ float: left; margin-top: 10px; }
.contact-form-template-dream .irefresh{ margin-top: 7px; }
/* DARK Template */
.contact-form-template-dark{
position: relative;
overflow: hidden;
}
.contact-form-template-dark .contact-form {
padding: 40px;
background: #3A3A3A;
border: 1px solid #D1D1D1;
}
.contact-form-template-dark .deactivated:before{ background: #3A3A3A; }
.contact-form-template-dark .message-sent{
padding: 40px;
background: #3A3A3A;
border:1px solid #D1D1D1;
text-align: center;
color: #FF4600;
font-weight: bold;
position: absolute;
top: -100%;
left: 50%;
margin: auto;
z-index: 10;
width: 300px;
margin-left: -190px;
transition: top 0.3s;
-moz-transition: top 0.3s;
-webkit-transition: top 0.3s;
-o-transition: top 0.3s;
}
.contact-form-template-dark label, .contact-form-template-dark .custom-field-title{
color:#6C6C6C;
}
.contact-form-template-dark textarea,.contact-form-template-dark select, .contact-form-template-dark input[type="text"], .contact-form-template-dark input[type="password"], .contact-form-template-dark input[type="datetime"], .contact-form-template-dark input[type="datetime-local"], .contact-form-template-dark input[type="date"], .contact-form-template-dark input[type="month"], .contact-form-template-dark input[type="time"], .contact-form-template-dark input[type="week"], .contact-form-template-dark input[type="number"], .contact-form-template-dark input[type="email"], .contact-form-template-dark input[type="url"], .contact-form-template-dark input[type="search"], .contact-form-template-dark input[type="tel"], .contact-form-template-dark input[type="color"]{
background-color: #646464;
color: #A4A4A4;
border: 1px solid #454545;
border-radius: 2px;
padding: 10px;
width:100%;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
}
.contact-form-template-dark textarea:focus, .contact-form-template-dark input[type="text"]:focus, .contact-form-template-dark input[type="password"]:focus, .contact-form-template-dark input[type="datetime"]:focus, .contact-form-template-dark input[type="datetime-local"]:focus, .contact-form-template-dark input[type="date"]:focus, .contact-form-template-dark input[type="month"]:focus, .contact-form-template-dark input[type="time"]:focus, .contact-form-template-dark input[type="week"]:focus, .contact-form-template-dark input[type="number"]:focus, .contact-form-template-dark input[type="email"]:focus, .contact-form-template-dark input[type="url"]:focus, .contact-form-template-dark input[type="search"]:focus, .contact-form-template-dark input[type="tel"]:focus, .contact-form-template-dark input[type="color"]:focus{
box-shadow: inset 1px 1px 6px #292929, inset -1px -1px 6px #292929;
}
.contact-form-template-dark .cft-submit{
color:#FFFFFF;
display: inline-block;
padding: 8px 20px;
background:#CA440F;
text-align: center;
border: none;
border-radius: 2px;
cursor: pointer;
}
.contact-form-template-dark .cft-submit:hover, .contact-form-template-dark .cft-submit:focus{ background:#E04000; }
.contact-form-template-dark .cft-submit:active{ box-shadow: inset 0 0 6px #702000; }
.contact-form-template-dark .contact-form-title{
background: #C9430F;
color: white;
margin-bottom: 20px;
padding: 3px 10px 5px;
border-radius: 2px;
}
.contact-form-template-dark input.mw-captcha-input{ width: 85px; float: left; }
.contact-form-template-dark .mw-captcha-img{ float: left; margin-top: 10px; }
.contact-form-template-dark .irefresh{ margin-top: 7px; }
.contact-form-template-dark .mw-custom-field-price .mw-custom-field-form-controls{
color: #6C6C6C;
}
.contact-form-template-dark hr{
background:#6C6C6C;
}
/* Basic */
.contact-form-template-basic textarea, .contact-form-template-basic select, .contact-form-template-basic input[type="text"], .contact-form-template-basic input[type="password"], .contact-form-template-basic input[type="datetime"], .contact-form-template-basic input[type="datetime-local"], .contact-form-template-basic input[type="date"], .contact-form-template-basic input[type="month"], .contact-form-template-basic input[type="time"], .contact-form-template-basic input[type="week"], .contact-form-template-basic input[type="number"], .contact-form-template-basic input[type="email"], .contact-form-template-basic input[type="url"], .contact-form-template-basic input[type="search"], .contact-form-template-basic input[type="tel"], .contact-form-template-basic input[type="color"]{
border: 1px solid #E6E6E6;
padding: 10px;
width: 100%;
}
.contact-form-template-basic form {
padding: 40px 0;
}
/* /Basic */
/* */
[class*='contact-form-template-'] .mw-custom-field-upload input{
width:60%;
float: left;
margin-right: 12px;
}
|
userfiles/modules/contact_form/css/style.css
|
.mw_form{
position: relative;
clear: both;
}
.mw_form:after{
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* Contact Form Styles */
.message-sent-icon{
display: block;
width:52px;
height: 52px;
background: url(../img/message-sent.png) no-repeat;
margin: 0 auto 20px;
}
.message-sent-icon-orange{background-position: 0 -104px;}
.message-sent-icon-green{background-position: 0 -52px;}
[class*='contact-form-template-'] input,
[class*='contact-form-template-'] textarea,
[class*='contact-form-template-'] select{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: auto;
}
[class*='contact-form-template-'] .mw-custom-field-upload{
width: 100%;
}
[class*='contact-form-template-'] input[type='submit']{
float: right;
}
[class*='contact-form-template-'] textarea{
resize: vertical;
}
.datepicker{
display: none;
position: absolute;
z-index: 12;
background: white;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 0;
}
[class*='contact-form-template-'] label{
display: block;
clear: both;
padding-bottom: 4px;
padding-top: 12px;
}
[class*='contact-form-template-'] label.inline{
display: inline-block;
float: left;
clear: both;
margin-right: 12px;
}
[class*='contact-form-template-'] .captcha-holder{
width: 210px;
float: left;
background: white;
border-radius: 2px;
}
[class*='contact-form-template-'] .captcha-holder .mw-ui-col:nth-child(2){
width: 100px;
}
[class*='contact-form-template-'] .captcha-holder .mw-ui-col:nth-child(3){
width: 25px;
}
[class*='contact-form-template-'] .mw-custom-field-price .mw-custom-field-form-controls{
color: #6C6C6C;
font-size: 150%;
}
/* DREAM Template */
.contact-form-template-dream{
position: relative;
overflow: hidden;
}
.contact-form-template-dream .contact-form {
padding: 40px;
background: white;
border:1px solid #D1D1D1;
}
.contact-form-template-dream .message-sent{
padding: 40px;
background: white;
border:1px solid #D1D1D1;
text-align: center;
color: #418CD1;
font-weight: bold;
position: absolute;
top: -100%;
left: 50%;
margin: auto;
z-index: 10;
width: 300px;
margin-left: -190px;
transition: top 0.3s;
-moz-transition: top 0.3s;
-webkit-transition: top 0.3s;
-o-transition: top 0.3s;
}
.contact-form-template-dream textarea, .contact-form-template-dream select, .contact-form-template-dream input[type="text"], .contact-form-template-dream input[type="password"], .contact-form-template-dream input[type="datetime"], .contact-form-template-dream input[type="datetime-local"], .contact-form-template-dream input[type="date"], .contact-form-template-dream input[type="month"], .contact-form-template-dream input[type="time"], .contact-form-template-dream input[type="week"], .contact-form-template-dream input[type="number"], .contact-form-template-dream input[type="email"], .contact-form-template-dream input[type="url"], .contact-form-template-dream input[type="search"], .contact-form-template-dream input[type="tel"], .contact-form-template-dream input[type="color"]{
background-color: #F4F4F4;
border: 1px solid #E6E6E6;
border-radius: 2px;
padding: 10px;
width: 100%;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
}
.contact-form-template-dream textarea:focus, .contact-form-template-dream input[type="text"]:focus, .contact-form-template-dream input[type="password"]:focus, .contact-form-template-dream input[type="datetime"]:focus, .contact-form-template-dream input[type="datetime-local"]:focus, .contact-form-template-dream input[type="date"]:focus, .contact-form-template-dream input[type="month"]:focus, .contact-form-template-dream input[type="time"]:focus, .contact-form-template-dream input[type="week"]:focus, .contact-form-template-dream input[type="number"]:focus, .contact-form-template-dream input[type="email"]:focus, .contact-form-template-dream input[type="url"]:focus, .contact-form-template-dream input[type="search"]:focus, .contact-form-template-dream input[type="tel"]:focus, .contact-form-template-dream input[type="color"]:focus{
box-shadow: inset 0 0 4px #C9C9C9;
}
.contact-form-template-dream .cft-submit{
color:#FFFFFF;
display: inline-block;
padding: 8px 20px;
background:#418CD1;
text-align: center;
border: none;
border-radius: 2px;
cursor: pointer;
}
.contact-form-template-dream .cft-submit:hover, .contact-form-template-dream .cft-submit:focus{ background:#317FC9; }
.contact-form-template-dream .cft-submit:active{ box-shadow: inset 0 0 6px #1F517F; }
.contact-form-template-dream .contact-form-title{
border-bottom: 2px solid #418CD1;
display: inline-block;
padding-bottom: 4px;
margin-bottom: 20px;
}
.contact-form-template-dream input.mw-captcha-input{ width: 85px; float: left; }
.contact-form-template-dream .mw-captcha-img{ float: left; margin-top: 10px; }
.contact-form-template-dream .irefresh{ margin-top: 7px; }
/* DARK Template */
.contact-form-template-dark{
position: relative;
overflow: hidden;
}
.contact-form-template-dark .contact-form {
padding: 40px;
background: #3A3A3A;
border: 1px solid #D1D1D1;
}
.contact-form-template-dark .deactivated:before{ background: #3A3A3A; }
.contact-form-template-dark .message-sent{
padding: 40px;
background: #3A3A3A;
border:1px solid #D1D1D1;
text-align: center;
color: #FF4600;
font-weight: bold;
position: absolute;
top: -100%;
left: 50%;
margin: auto;
z-index: 10;
width: 300px;
margin-left: -190px;
transition: top 0.3s;
-moz-transition: top 0.3s;
-webkit-transition: top 0.3s;
-o-transition: top 0.3s;
}
.contact-form-template-dark label, .contact-form-template-dark .custom-field-title{
color:#6C6C6C;
}
.contact-form-template-dark textarea,.contact-form-template-dark select, .contact-form-template-dark input[type="text"], .contact-form-template-dark input[type="password"], .contact-form-template-dark input[type="datetime"], .contact-form-template-dark input[type="datetime-local"], .contact-form-template-dark input[type="date"], .contact-form-template-dark input[type="month"], .contact-form-template-dark input[type="time"], .contact-form-template-dark input[type="week"], .contact-form-template-dark input[type="number"], .contact-form-template-dark input[type="email"], .contact-form-template-dark input[type="url"], .contact-form-template-dark input[type="search"], .contact-form-template-dark input[type="tel"], .contact-form-template-dark input[type="color"]{
background-color: #646464;
color: #A4A4A4;
border: 1px solid #454545;
border-radius: 2px;
padding: 10px;
width:100%;
transition: all 0.3s;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
}
.contact-form-template-dark textarea:focus, .contact-form-template-dark input[type="text"]:focus, .contact-form-template-dark input[type="password"]:focus, .contact-form-template-dark input[type="datetime"]:focus, .contact-form-template-dark input[type="datetime-local"]:focus, .contact-form-template-dark input[type="date"]:focus, .contact-form-template-dark input[type="month"]:focus, .contact-form-template-dark input[type="time"]:focus, .contact-form-template-dark input[type="week"]:focus, .contact-form-template-dark input[type="number"]:focus, .contact-form-template-dark input[type="email"]:focus, .contact-form-template-dark input[type="url"]:focus, .contact-form-template-dark input[type="search"]:focus, .contact-form-template-dark input[type="tel"]:focus, .contact-form-template-dark input[type="color"]:focus{
box-shadow: inset 1px 1px 6px #292929, inset -1px -1px 6px #292929;
}
.contact-form-template-dark .cft-submit{
color:#FFFFFF;
display: inline-block;
padding: 8px 20px;
background:#CA440F;
text-align: center;
border: none;
border-radius: 2px;
cursor: pointer;
}
.contact-form-template-dark .cft-submit:hover, .contact-form-template-dark .cft-submit:focus{ background:#E04000; }
.contact-form-template-dark .cft-submit:active{ box-shadow: inset 0 0 6px #702000; }
.contact-form-template-dark .contact-form-title{
background: #C9430F;
color: white;
margin-bottom: 20px;
padding: 3px 10px 5px;
border-radius: 2px;
}
.contact-form-template-dark input.mw-captcha-input{ width: 85px; float: left; }
.contact-form-template-dark .mw-captcha-img{ float: left; margin-top: 10px; }
.contact-form-template-dark .irefresh{ margin-top: 7px; }
.contact-form-template-dark .mw-custom-field-price .mw-custom-field-form-controls{
color: #6C6C6C;
}
.contact-form-template-dark hr{
background:#6C6C6C;
}
/* Basic */
.contact-form-template-basic textarea, .contact-form-template-basic select, .contact-form-template-basic input[type="text"], .contact-form-template-basic input[type="password"], .contact-form-template-basic input[type="datetime"], .contact-form-template-basic input[type="datetime-local"], .contact-form-template-basic input[type="date"], .contact-form-template-basic input[type="month"], .contact-form-template-basic input[type="time"], .contact-form-template-basic input[type="week"], .contact-form-template-basic input[type="number"], .contact-form-template-basic input[type="email"], .contact-form-template-basic input[type="url"], .contact-form-template-basic input[type="search"], .contact-form-template-basic input[type="tel"], .contact-form-template-basic input[type="color"]{
border: 1px solid #E6E6E6;
padding: 10px;
width: 100%;
}
.contact-form-template-basic form {
padding: 40px 0;
}
/* /Basic */
/* */
[class*='contact-form-template-'] .mw-custom-field-upload input{
width:60%;
float: left;
margin-right: 12px;
}
| 0.223038 | 0.056914 |
.container{
padding: 0px;
margin: 0px auto;
}
/* .main_banner{
width: 78%;
height: 38%;
} */
/* .banner_img{
width: 980px;
margin: 0px auto;
position: relative;
z-index: 50;
} */
.banner_heli{
width: 330px;
position: fixed;
margin-left: -500px;
margin-top: -15px;
}
.banner_car{
width: 580px;
position: fixed;
margin-left: -140px;
margin-top: 35px;
}
.banner_img_sec img{
z-index: 50 !important;
}
.navbar-brand {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
margin-right: 5.7rem;
}
/* .navbar-brand img{
margin-left: 10px;
} */
nav{
display: block;
position:fixed;
margin: 0px auto;
padding: 0rem !important;
}
.navbar-nav{
margin-bottom: 0px;
margin-top: 0px;
}
.responsive_bar{
color: #F90;
font-size: 28px;
}
.navbar-nav li{
list-style-type: none;
margin-left: 0px !important;
margin-right: 0px !important;
margin-bottom: 0px;
margin-top: 0px;
border-right: 1px solid #4d4945 !important;
}
.navbar-nav li:last-child{
border: none;
}
.navbar-nav li a{
color: #F90;
font-family: 'Quicksand', sans-serif;
font-size: 18px;
text-transform: uppercase;
font-weight: 400;
text-shadow: 0px 0px 8px #000000;
letter-spacing: -0.05em;
line-height: 50px;
position:relative;
display: block;
}
.navbar-nav li a:hover {
color: #000;
background-color: #fff;
-webkit-transition: background-color 0.3s linear;
-moz-transition: background-color 0.3s linear;
-ms-transition: background-color 0.3s linear;
-o-transition: background-color 0.3s linear;
transition: background-color 0.3s linear;
}
/* Presentation */
.photo-droite{
width: 108%;
}
/* NOS TARIFS */
.table-bordered td, .table-bordered th {
border: 1px solid #333 !important;
}
/* Contact Form */
#contact-form input, #contact-form textarea{
width: 100%;
}
.submit_button_contact{
padding: 5px;
cursor: pointer;
border-radius: 2px;
color: #C34209;
font-weight: bold;
display: block;
transition: .7s;
}
.submit_button_contact:hover{
background: #FF9900;
color: #333;
}
/*Devis*/
.telephone_space{
margin-left: 10%;
}
.submit_button_devis{
padding: 5px;
cursor: pointer;
border-radius: 2px;
font-weight: bold;
display: block;
transition: .7s;
}
.submit_button_devis:hover{
background: #FF9900;
color: #333;
}
/* =======================
Media Queries
=======================*/
@media only screen and (max-width:1030px){
.navbar-brand {
margin-right: 2rem;
}
.language_bar {
margin-left: 813px !important;
}
#main_content {
width: 85%;
/* margin: 25% auto 0 auto; */
}
/* #image-bandeau {
margin-left: -50%;
}
.main_banner {
width: 100%;
} */
.banner_heli{
width: 320px;
}
.banner_car{
width: 535px;
}
.slider-wrapper{
width: 100%;
}
#contenu .droite {
/* padding-bottom: 10px; */
margin-left: 6%;
}
#contenu .droite .int {
width: 100%;
}
#footer {
font-size: 1em;
width: 85%;
}
}
/* @media only screen and (max-width:810px){} */
@media only screen and (max-width:780px){
body{
overflow-x: hidden;
}
h3 {
font-size: 1.1em;
}
.navbar-brand {
margin-right: 410px;
}
.language_bar {
margin-left: 0px !important;
right: 25px;
}
#main_content {
width: 95%;
margin: 210px auto 0 auto;
}
.banner_heli{
width: 260px;
margin-left: -400px;
margin-top: 0px;
}
.banner_car{
width: 470px;
}
.slider-wrapper{
width: 100%;
}
#contenu .droite{
margin-left: 12%;
}
#contenu .droite .int {
padding: 1%;
}
#footer {
width: 95%;
}
}
@media only screen and (max-width:650px){
h1 {
font-size: 2.2em;
}
h3 {
font-size: 1.3em;
}
p {
line-height: 1.4em;
font-size: 16px;
}
.navbar-brand {
margin-right: 13rem;
}
.language_bar {
margin-left: 0px !important;
right: 15px;
}
#main_content {
margin: 175px auto 0 auto;
}
.banner_heli{
width: 180px;
margin-left: -340px;
}
.banner_car{
width: 380px;
}
#accueil #diapo {
width: 100%;
}
#contenu .droite{
margin-left: 0%;
margin-top: 10%;
}
#accueil #contenu .droite .int{
width: 100%;
}
#footer .int {
padding-bottom: 20px;
}
.margin_left{
margin: 0px !important;
margin-top: 20px !important;
}
.sepera_tor{
margin-top: 25px !important;
}
/*devis*/
.telephone_space{
margin-left: 0%;
}
/*contact*/
#contact #contact-form {
float: left;
margin-left: 0px;
}
}
@media screen and (max-width:490px) {
h1 {
font-size: 1.8em;
}
.navbar-brand {
margin-right: 7rem;
}
.navbar-brand img {
width: 90%;
}
#main_content {
margin: 135px auto 0 auto;
}
.banner_heli{
width: 165px;
margin-left: -260px;
}
.banner_car{
width: 270px;
margin-left: -70px;
}
#contenu .droite{
margin-top: -20px !important;
}
.margin_left{
margin-top: 20px !important;
}
.sepera_tor{
margin-top: 0px !important;
}
.margin_left_small{
margin: 0px !important;
margin-top: 20px !important;
}
/*Tarifs*/
.table td, .table th {
padding: 1%;
}
}
@media screen and (max-width:330px) {
#main_content {
margin: 170px auto 0 auto;
}
.banner_heli{
width: 125px;
margin-left: -190px;
margin-top: 60px;
}
.banner_car{
width: 175px;
margin-left: -40px;
margin-top: 100px;
}
.language_bar {
margin-top: 22px;
right: 5px;
}
.navbar-nav {
margin-top: 40px;
}
.navbar-brand img {
margin: 5px;
}
.navbar-toggler{
position:absolute;
top: 90px;
}
.navbar-brand {
margin-right: 0rem;
}
/* #menu-langues ul {
right: 12px;
top: 90px;
} */
#contenu .droite{
margin-top: -150px !important;
}
/*contact*/
input, textarea, select {
width: 100%;
}
.submit_button_contact{
font-size: 12px;
}
/*Tarifs*/
.table td, .table th {
padding: 1%;
}
td{
font-size: 10px !important;
}
}
|
css/responsive.css
|
.container{
padding: 0px;
margin: 0px auto;
}
/* .main_banner{
width: 78%;
height: 38%;
} */
/* .banner_img{
width: 980px;
margin: 0px auto;
position: relative;
z-index: 50;
} */
.banner_heli{
width: 330px;
position: fixed;
margin-left: -500px;
margin-top: -15px;
}
.banner_car{
width: 580px;
position: fixed;
margin-left: -140px;
margin-top: 35px;
}
.banner_img_sec img{
z-index: 50 !important;
}
.navbar-brand {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
margin-right: 5.7rem;
}
/* .navbar-brand img{
margin-left: 10px;
} */
nav{
display: block;
position:fixed;
margin: 0px auto;
padding: 0rem !important;
}
.navbar-nav{
margin-bottom: 0px;
margin-top: 0px;
}
.responsive_bar{
color: #F90;
font-size: 28px;
}
.navbar-nav li{
list-style-type: none;
margin-left: 0px !important;
margin-right: 0px !important;
margin-bottom: 0px;
margin-top: 0px;
border-right: 1px solid #4d4945 !important;
}
.navbar-nav li:last-child{
border: none;
}
.navbar-nav li a{
color: #F90;
font-family: 'Quicksand', sans-serif;
font-size: 18px;
text-transform: uppercase;
font-weight: 400;
text-shadow: 0px 0px 8px #000000;
letter-spacing: -0.05em;
line-height: 50px;
position:relative;
display: block;
}
.navbar-nav li a:hover {
color: #000;
background-color: #fff;
-webkit-transition: background-color 0.3s linear;
-moz-transition: background-color 0.3s linear;
-ms-transition: background-color 0.3s linear;
-o-transition: background-color 0.3s linear;
transition: background-color 0.3s linear;
}
/* Presentation */
.photo-droite{
width: 108%;
}
/* NOS TARIFS */
.table-bordered td, .table-bordered th {
border: 1px solid #333 !important;
}
/* Contact Form */
#contact-form input, #contact-form textarea{
width: 100%;
}
.submit_button_contact{
padding: 5px;
cursor: pointer;
border-radius: 2px;
color: #C34209;
font-weight: bold;
display: block;
transition: .7s;
}
.submit_button_contact:hover{
background: #FF9900;
color: #333;
}
/*Devis*/
.telephone_space{
margin-left: 10%;
}
.submit_button_devis{
padding: 5px;
cursor: pointer;
border-radius: 2px;
font-weight: bold;
display: block;
transition: .7s;
}
.submit_button_devis:hover{
background: #FF9900;
color: #333;
}
/* =======================
Media Queries
=======================*/
@media only screen and (max-width:1030px){
.navbar-brand {
margin-right: 2rem;
}
.language_bar {
margin-left: 813px !important;
}
#main_content {
width: 85%;
/* margin: 25% auto 0 auto; */
}
/* #image-bandeau {
margin-left: -50%;
}
.main_banner {
width: 100%;
} */
.banner_heli{
width: 320px;
}
.banner_car{
width: 535px;
}
.slider-wrapper{
width: 100%;
}
#contenu .droite {
/* padding-bottom: 10px; */
margin-left: 6%;
}
#contenu .droite .int {
width: 100%;
}
#footer {
font-size: 1em;
width: 85%;
}
}
/* @media only screen and (max-width:810px){} */
@media only screen and (max-width:780px){
body{
overflow-x: hidden;
}
h3 {
font-size: 1.1em;
}
.navbar-brand {
margin-right: 410px;
}
.language_bar {
margin-left: 0px !important;
right: 25px;
}
#main_content {
width: 95%;
margin: 210px auto 0 auto;
}
.banner_heli{
width: 260px;
margin-left: -400px;
margin-top: 0px;
}
.banner_car{
width: 470px;
}
.slider-wrapper{
width: 100%;
}
#contenu .droite{
margin-left: 12%;
}
#contenu .droite .int {
padding: 1%;
}
#footer {
width: 95%;
}
}
@media only screen and (max-width:650px){
h1 {
font-size: 2.2em;
}
h3 {
font-size: 1.3em;
}
p {
line-height: 1.4em;
font-size: 16px;
}
.navbar-brand {
margin-right: 13rem;
}
.language_bar {
margin-left: 0px !important;
right: 15px;
}
#main_content {
margin: 175px auto 0 auto;
}
.banner_heli{
width: 180px;
margin-left: -340px;
}
.banner_car{
width: 380px;
}
#accueil #diapo {
width: 100%;
}
#contenu .droite{
margin-left: 0%;
margin-top: 10%;
}
#accueil #contenu .droite .int{
width: 100%;
}
#footer .int {
padding-bottom: 20px;
}
.margin_left{
margin: 0px !important;
margin-top: 20px !important;
}
.sepera_tor{
margin-top: 25px !important;
}
/*devis*/
.telephone_space{
margin-left: 0%;
}
/*contact*/
#contact #contact-form {
float: left;
margin-left: 0px;
}
}
@media screen and (max-width:490px) {
h1 {
font-size: 1.8em;
}
.navbar-brand {
margin-right: 7rem;
}
.navbar-brand img {
width: 90%;
}
#main_content {
margin: 135px auto 0 auto;
}
.banner_heli{
width: 165px;
margin-left: -260px;
}
.banner_car{
width: 270px;
margin-left: -70px;
}
#contenu .droite{
margin-top: -20px !important;
}
.margin_left{
margin-top: 20px !important;
}
.sepera_tor{
margin-top: 0px !important;
}
.margin_left_small{
margin: 0px !important;
margin-top: 20px !important;
}
/*Tarifs*/
.table td, .table th {
padding: 1%;
}
}
@media screen and (max-width:330px) {
#main_content {
margin: 170px auto 0 auto;
}
.banner_heli{
width: 125px;
margin-left: -190px;
margin-top: 60px;
}
.banner_car{
width: 175px;
margin-left: -40px;
margin-top: 100px;
}
.language_bar {
margin-top: 22px;
right: 5px;
}
.navbar-nav {
margin-top: 40px;
}
.navbar-brand img {
margin: 5px;
}
.navbar-toggler{
position:absolute;
top: 90px;
}
.navbar-brand {
margin-right: 0rem;
}
/* #menu-langues ul {
right: 12px;
top: 90px;
} */
#contenu .droite{
margin-top: -150px !important;
}
/*contact*/
input, textarea, select {
width: 100%;
}
.submit_button_contact{
font-size: 12px;
}
/*Tarifs*/
.table td, .table th {
padding: 1%;
}
td{
font-size: 10px !important;
}
}
| 0.091722 | 0.041269 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.