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
|
---|---|---|---|---|
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
font-family: 'Poppins', sans-serif;
overflow: visible;
background-color: #f2f2f2;
flex-direction: column;
justify-content: center;
align-items: center;
}
div {
display: block;
}
.content-box-pet {
text-align: center;
justify-content: center;
background-color: #fff;
box-shadow: #ddd 0px 0px 8px 1px;
min-width: 91vw;
width: 100%;
height: fit-content;
}
dd {
text-align: left;
}
.petname{
margin-top: 20px;
margin-left: 10px;
text-align: left;
}
.petname h2{
font-weight: bold;
}
.pet{
height: 100px;
width: 100px;
border-radius: 100%;
box-shadow: 2px 3px 4px #888888;
}
.container {
margin-top: 30px;
width: 100%;
}
.responsive-tabs dt{
z-index: 1;
}
.responsive-tabs dt {
padding: 0.5em;
cursor: pointer;
}
.responsive-tabs dt ~ dt {
border-top: 1px solid #457b9d;
}
.responsive-tabs .active {
background-color: #457b9d;
color: #fff;
}
.responsive-tabs dd {
display: none;
margin-left: 0;
padding: 0.5em;
}
.responsive-tabs .active + dd {
display: block;
}
.responsive-tabs img {
max-width: 100%;
}
@media only screen and (min-width: 700px) {
.responsive-tabs {
display: flex;
flex-wrap: wrap;
}
.responsive-tabs dt {
flex-grow: 1;
border-bottom: 1px solid #457b9d;
text-align: center;
}
.responsive-tabs dt ~ dt {
border-top: 0;
}
.responsive-tabs dd {
justify-content: center;
width: 100%;
order: 2;
}
}
.days_left{
max-width: 450px;
min-width: 100px;
height: inherit;
padding: 20px 20px 10px 20px;
background-color: #457b9d;
border-radius: 10px;
text-align: left;
}
.days_left h5{
font-weight: bold;
color: #ffffff;
}
.days_left p{
background-color: #ffffff;
padding: 10px;
border-radius: 10px;
}
.vaccination {
justify-content: center;
margin-top: 15px;
width: 100%;
}
table {
width: 100%;
text-align: center;
box-shadow: 2px 3px 4px #888888;
table-layout: fixed;
background-color: #ffffff;
border-collapse: collapse;
}
table, th, td{
border: 1px solid black;
word-wrap: break-word;
}
th{
color: #ffffff;
background-color: #457b9d;
}
th, td{
height: inherit;
padding: 5px 3px 5px 3px;
}
/** --------------------
MEDIA RESOLUTIONS
-------------------- */
@media screen and (max-width: 1050px){
.container{
grid-gap: 5rem;
}
}
@media screen and (max-width: 1000px){
form{
width: 290px;
}
.content h2{
font-size: 2.4rem;
margin: 8px 0;
}
.img img{
width: 400px;
}
}
@media screen and (max-width: 900px){
.container{
grid-template-columns: 1fr;
}
.img{
display: none;
}
.content {
justify-content: center;
}
th, td{
font-size: 10px;
}
.days_left h5{
font-size: 15px;
font-weight: bold;
color: #ffffff;
}
.days_left p{
background-color: #ffffff;
padding: 10px;
border-radius: 10px;
font-size: 13px;
}
.responsive-tabs h2{
font-size: 2rem;
}
}
|
public/css/pet_records.css
|
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
font-family: 'Poppins', sans-serif;
overflow: visible;
background-color: #f2f2f2;
flex-direction: column;
justify-content: center;
align-items: center;
}
div {
display: block;
}
.content-box-pet {
text-align: center;
justify-content: center;
background-color: #fff;
box-shadow: #ddd 0px 0px 8px 1px;
min-width: 91vw;
width: 100%;
height: fit-content;
}
dd {
text-align: left;
}
.petname{
margin-top: 20px;
margin-left: 10px;
text-align: left;
}
.petname h2{
font-weight: bold;
}
.pet{
height: 100px;
width: 100px;
border-radius: 100%;
box-shadow: 2px 3px 4px #888888;
}
.container {
margin-top: 30px;
width: 100%;
}
.responsive-tabs dt{
z-index: 1;
}
.responsive-tabs dt {
padding: 0.5em;
cursor: pointer;
}
.responsive-tabs dt ~ dt {
border-top: 1px solid #457b9d;
}
.responsive-tabs .active {
background-color: #457b9d;
color: #fff;
}
.responsive-tabs dd {
display: none;
margin-left: 0;
padding: 0.5em;
}
.responsive-tabs .active + dd {
display: block;
}
.responsive-tabs img {
max-width: 100%;
}
@media only screen and (min-width: 700px) {
.responsive-tabs {
display: flex;
flex-wrap: wrap;
}
.responsive-tabs dt {
flex-grow: 1;
border-bottom: 1px solid #457b9d;
text-align: center;
}
.responsive-tabs dt ~ dt {
border-top: 0;
}
.responsive-tabs dd {
justify-content: center;
width: 100%;
order: 2;
}
}
.days_left{
max-width: 450px;
min-width: 100px;
height: inherit;
padding: 20px 20px 10px 20px;
background-color: #457b9d;
border-radius: 10px;
text-align: left;
}
.days_left h5{
font-weight: bold;
color: #ffffff;
}
.days_left p{
background-color: #ffffff;
padding: 10px;
border-radius: 10px;
}
.vaccination {
justify-content: center;
margin-top: 15px;
width: 100%;
}
table {
width: 100%;
text-align: center;
box-shadow: 2px 3px 4px #888888;
table-layout: fixed;
background-color: #ffffff;
border-collapse: collapse;
}
table, th, td{
border: 1px solid black;
word-wrap: break-word;
}
th{
color: #ffffff;
background-color: #457b9d;
}
th, td{
height: inherit;
padding: 5px 3px 5px 3px;
}
/** --------------------
MEDIA RESOLUTIONS
-------------------- */
@media screen and (max-width: 1050px){
.container{
grid-gap: 5rem;
}
}
@media screen and (max-width: 1000px){
form{
width: 290px;
}
.content h2{
font-size: 2.4rem;
margin: 8px 0;
}
.img img{
width: 400px;
}
}
@media screen and (max-width: 900px){
.container{
grid-template-columns: 1fr;
}
.img{
display: none;
}
.content {
justify-content: center;
}
th, td{
font-size: 10px;
}
.days_left h5{
font-size: 15px;
font-weight: bold;
color: #ffffff;
}
.days_left p{
background-color: #ffffff;
padding: 10px;
border-radius: 10px;
font-size: 13px;
}
.responsive-tabs h2{
font-size: 2rem;
}
}
| 0.482429 | 0.135575 |
@media screen and (min-width: 320px) and (max-width: 430px){
body{
margin: 0;
padding: 0;
color: #FFF;
font-family: "Poiret One", cursive;
background: #97071E;
}
.container{
background: #97071E;
}
.box_proyect img{
border: 2px solid #fff;
border-top-right-radius: 5%;
border-bottom-left-radius:5%;
}
.menu_bar{
display: block;
margin-left: 0;
width: 425px;
padding-top: 5px;
padding-left: 0px;
font-size: 1em;
z-index: 10;
background-color: rgba(255,255,255, 1);
color: #000;
margin-top:-10px;
height: 6vh;
overflow-x: hidden;
}
.menu_bar p{
margin-top: 0;
padding-left: 20px;
font-size: 22px;
color:#97071E;
}
header nav{
background-color: rgba(255,255,255, .8);
height: 100vh;
width: 100%;
position: fixed;
top: -120%;
margin-top: 0px;
z-index: 10000;
}
header nav ul{
padding-top: 0;
height: inherit;
}
nav ul li{
display: block;
margin-top: 2em;
margin-right: 5px;
margin-bottom: 40px;
font-size: 1.5em;
/*border-bottom: 1px solid #000;*/
margin-left: 0;
z-index: 10;
width: 57%
}
nav ul li a{
text-decoration: none;
margin-right: 1em;
font-family: "Poiret One", cursive;
font-size: 40px;
color: #000;
text-shadow: 0 0 10px rgb(255,255,255) , 0 0 20px rgb(255,255,255) , 0 0 30px rgb(255,255,255) , 0 0 40px rgb(255,17,119) , 0 0 70px rgb(255,17,119) , 0 0 80px rgb(255,17,119) , 0 0 100px rgb(255,17,119) , 0 0 150px rgb(255,17,119) ;
-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
}
nav ul li a:nth-child(2){padding-left: 0px;}
nav ul li a:nth-child(1){padding-left: 40px;}
nav ul li a:nth-child(3){padding-left: 40px;}
nav ul li a:nth-child(4){padding-left: 40px;}
nav ul li a:focus{
text-decoration: none;
}
.altura{
height: 565px;
}
.alturaProyect{
height: 560vh;
}
.alturaAbout{
height: 173vh;
}
.alturaContact{
height: 100vh;
}
.overlay{
top: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}
.overlay_two{
top: 0;
width: 100%;
height: 660vh;
overflow: hidden;
}
#logo{
height: 80vh;
background-image: url(../img/logo.png);
background-size: 100%;
background-repeat: no-repeat;
margin-top: 8em;
margin-left:0 auto;
z-index: 10;
}
/* About me */
#aboutme{
color: white;
}
#meImg{
margin-left: 12%;
margin-top: 13vh;
height: 30vh;
}
.me_photo{
height: 30vh;
width: 100%;
box-shadow: 2px solid white;
}
#description {
text-align: center;
margin-left: 5%;
margin-top: 2em;
margin-bottom: 5vh;
height: 45vh;
background-color: rgba(56, 24, 24, .27);
color: white;
font-weight: 700;
font-size: 18px;
}
#offDescription{
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: black;
opacity: .7;
}
#description p{
line-height: 20px;
font-size: 14px;
}
#description h1{
font-size: 2.2em;
font-family: "Poiret One", cursive;
text-align: center;
margin-bottom: 0;
margin-top: 30px;
}
.mySkills{
margin-left: -15px;
}
.skills{
height: 35vh;
margin-top: 1em;
color: #fff;
font-weight: 700;
}
.skills h3{
margin-top: 0px;
padding-top: 5px;
}
.skills p{
text-align: center;
font-size: 14px;
}
.img-skill{
height: 120px;
margin: auto;
}
/*Proyect*/
.proyectDescription{
margin-top: 2.2em;
height: 20vh;
}
.proyectDescription h1{
font-size: 50px;
}
#descriProyect{
margin-bottom: 0;
margin-top: 5px;
}
.box_proyect {
height:440px;
margin-right: 0px;
margin-bottom: 60px;
margin-right:0;
padding: 0px;
}
.box_proyect img{
height: inherit;
width: 100%;
margin-left: 0px;
margin-bottom: 0px;
border: 2px solid #fff;
border-top-right-radius: 5%;
border-bottom-left-radius:5%;
}
.cont {
height: inherit;
width: inherit;
}
.middle{
left: 50%;
}
.btnMoreMobile{
height: 60px;
width: 140px;
background-color: #A02750;
color: #fff;
font-family: "Poiret One", cursive;
font-size: 18px;
font-weight: 700;
border: 1px solid #fff;
border-top-left-radius: 10%;
cursor: pointer;
margin-bottom: 15%;
}
/*Contact */
.contactDescription{
margin-bottom: 35px;
margin-top: 40px;
}
.contactDescription h1 {
margin-top: 10px;
margin-bottom: 10px;
padding-top: 40px;
}
#descriContact{
text-align: justify;
padding-left: 8px;
display: none;
}
.descriContactMobile{
text-align: center;
}
#meForm{
margin-top: 10px;
padding-left: 0;
display: none;
}
#meform form {
width: 100%;
}
#redes{
display: none;
}
#contact-mobile{
font-size: 20px;
}
#contact-mobile p {
text-align: center;
}
#contact-mobile p a{
font-weight: 700;
}
.visibility-mobile{
display: block;
}
.hiddenMobile{
display: none;
}
/*Modal*/
.close{
z-index: 10;
}
/*Starts*/
}
|
assets/css/media.css
|
@media screen and (min-width: 320px) and (max-width: 430px){
body{
margin: 0;
padding: 0;
color: #FFF;
font-family: "Poiret One", cursive;
background: #97071E;
}
.container{
background: #97071E;
}
.box_proyect img{
border: 2px solid #fff;
border-top-right-radius: 5%;
border-bottom-left-radius:5%;
}
.menu_bar{
display: block;
margin-left: 0;
width: 425px;
padding-top: 5px;
padding-left: 0px;
font-size: 1em;
z-index: 10;
background-color: rgba(255,255,255, 1);
color: #000;
margin-top:-10px;
height: 6vh;
overflow-x: hidden;
}
.menu_bar p{
margin-top: 0;
padding-left: 20px;
font-size: 22px;
color:#97071E;
}
header nav{
background-color: rgba(255,255,255, .8);
height: 100vh;
width: 100%;
position: fixed;
top: -120%;
margin-top: 0px;
z-index: 10000;
}
header nav ul{
padding-top: 0;
height: inherit;
}
nav ul li{
display: block;
margin-top: 2em;
margin-right: 5px;
margin-bottom: 40px;
font-size: 1.5em;
/*border-bottom: 1px solid #000;*/
margin-left: 0;
z-index: 10;
width: 57%
}
nav ul li a{
text-decoration: none;
margin-right: 1em;
font-family: "Poiret One", cursive;
font-size: 40px;
color: #000;
text-shadow: 0 0 10px rgb(255,255,255) , 0 0 20px rgb(255,255,255) , 0 0 30px rgb(255,255,255) , 0 0 40px rgb(255,17,119) , 0 0 70px rgb(255,17,119) , 0 0 80px rgb(255,17,119) , 0 0 100px rgb(255,17,119) , 0 0 150px rgb(255,17,119) ;
-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
}
nav ul li a:nth-child(2){padding-left: 0px;}
nav ul li a:nth-child(1){padding-left: 40px;}
nav ul li a:nth-child(3){padding-left: 40px;}
nav ul li a:nth-child(4){padding-left: 40px;}
nav ul li a:focus{
text-decoration: none;
}
.altura{
height: 565px;
}
.alturaProyect{
height: 560vh;
}
.alturaAbout{
height: 173vh;
}
.alturaContact{
height: 100vh;
}
.overlay{
top: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}
.overlay_two{
top: 0;
width: 100%;
height: 660vh;
overflow: hidden;
}
#logo{
height: 80vh;
background-image: url(../img/logo.png);
background-size: 100%;
background-repeat: no-repeat;
margin-top: 8em;
margin-left:0 auto;
z-index: 10;
}
/* About me */
#aboutme{
color: white;
}
#meImg{
margin-left: 12%;
margin-top: 13vh;
height: 30vh;
}
.me_photo{
height: 30vh;
width: 100%;
box-shadow: 2px solid white;
}
#description {
text-align: center;
margin-left: 5%;
margin-top: 2em;
margin-bottom: 5vh;
height: 45vh;
background-color: rgba(56, 24, 24, .27);
color: white;
font-weight: 700;
font-size: 18px;
}
#offDescription{
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: black;
opacity: .7;
}
#description p{
line-height: 20px;
font-size: 14px;
}
#description h1{
font-size: 2.2em;
font-family: "Poiret One", cursive;
text-align: center;
margin-bottom: 0;
margin-top: 30px;
}
.mySkills{
margin-left: -15px;
}
.skills{
height: 35vh;
margin-top: 1em;
color: #fff;
font-weight: 700;
}
.skills h3{
margin-top: 0px;
padding-top: 5px;
}
.skills p{
text-align: center;
font-size: 14px;
}
.img-skill{
height: 120px;
margin: auto;
}
/*Proyect*/
.proyectDescription{
margin-top: 2.2em;
height: 20vh;
}
.proyectDescription h1{
font-size: 50px;
}
#descriProyect{
margin-bottom: 0;
margin-top: 5px;
}
.box_proyect {
height:440px;
margin-right: 0px;
margin-bottom: 60px;
margin-right:0;
padding: 0px;
}
.box_proyect img{
height: inherit;
width: 100%;
margin-left: 0px;
margin-bottom: 0px;
border: 2px solid #fff;
border-top-right-radius: 5%;
border-bottom-left-radius:5%;
}
.cont {
height: inherit;
width: inherit;
}
.middle{
left: 50%;
}
.btnMoreMobile{
height: 60px;
width: 140px;
background-color: #A02750;
color: #fff;
font-family: "Poiret One", cursive;
font-size: 18px;
font-weight: 700;
border: 1px solid #fff;
border-top-left-radius: 10%;
cursor: pointer;
margin-bottom: 15%;
}
/*Contact */
.contactDescription{
margin-bottom: 35px;
margin-top: 40px;
}
.contactDescription h1 {
margin-top: 10px;
margin-bottom: 10px;
padding-top: 40px;
}
#descriContact{
text-align: justify;
padding-left: 8px;
display: none;
}
.descriContactMobile{
text-align: center;
}
#meForm{
margin-top: 10px;
padding-left: 0;
display: none;
}
#meform form {
width: 100%;
}
#redes{
display: none;
}
#contact-mobile{
font-size: 20px;
}
#contact-mobile p {
text-align: center;
}
#contact-mobile p a{
font-weight: 700;
}
.visibility-mobile{
display: block;
}
.hiddenMobile{
display: none;
}
/*Modal*/
.close{
z-index: 10;
}
/*Starts*/
}
| 0.173849 | 0.076857 |
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
h1 {
margin-left: 35%;
background-image: linear-gradient(180deg, #8e0e00
,#1f1c18);
font-family: lobster;
background-clip: text;
font-size: 2.5em ;
/* text-shadow: -2px 0px #8e0e00 ; */
text-fill-color: transparent;
background-color: #f3ec78;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
section{
display: flex;
justify-items: normal;
align-items: center;
align-content: flex-start;
justify-content: center;
flex-wrap: wrap;
flex-direction: row;
}
form{
border-radius: 5% ;
background-color:rgba(63, 51, 51, 0.701);
color: white;
width: 30%;
height: 100% ;
display: flex;
justify-items: center;
justify-content: space-between;
flex-direction: column ;
}
form:hover{
box-shadow: 0 10px 30px rgba(145, 92, 182, .4);
}
div{
display:inline-block;
margin-left: 40px
}
input , button , label{
text-align: center;
font-size: 18pt ;
height: 17% ;
width: 50% ;
margin-left:auto;
margin-top: 1% ;
margin-right: auto;
}
.bg {
height: 100%;
background-image: url("food2.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
body, html {
height: 100%;
}
button {
background-image: linear-gradient(45deg, #8e0e00
,#1f1c18);
font-family: sans-serif;
font-size: 12pt ;
border-radius: 30px; /* Curve of border corners */
text-transform: uppercase;
color:silver;
margin-bottom: 3%;
width: 40% ;
margin-left: 30%;
height: 20% ;
}
button:hover{
color: rgba(255, 255, 255, 1);
box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}
table{
margin-top: 30px;
font-family: lobster;
border-collapse: collapse;
font-size: 0.9em;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
background-color: white;
text-align: center
}
table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
}
table th,
table td {
padding: 12px 15px;
font-size: 12pt
}
table th {
background-color: #8e0e00
}
table tbody tr {
border-bottom: 3px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
background-color: #ba8b02;
}
table tbody tr:last-of-type {
border-bottom: 2px solid #8e0e00;
}
table tbody tr:hover {
font-weight: bold;
color: #009879;
}
td {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
tr td button {
font-size: 6pt;
width: fit-content;
}
|
style.css
|
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
h1 {
margin-left: 35%;
background-image: linear-gradient(180deg, #8e0e00
,#1f1c18);
font-family: lobster;
background-clip: text;
font-size: 2.5em ;
/* text-shadow: -2px 0px #8e0e00 ; */
text-fill-color: transparent;
background-color: #f3ec78;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
section{
display: flex;
justify-items: normal;
align-items: center;
align-content: flex-start;
justify-content: center;
flex-wrap: wrap;
flex-direction: row;
}
form{
border-radius: 5% ;
background-color:rgba(63, 51, 51, 0.701);
color: white;
width: 30%;
height: 100% ;
display: flex;
justify-items: center;
justify-content: space-between;
flex-direction: column ;
}
form:hover{
box-shadow: 0 10px 30px rgba(145, 92, 182, .4);
}
div{
display:inline-block;
margin-left: 40px
}
input , button , label{
text-align: center;
font-size: 18pt ;
height: 17% ;
width: 50% ;
margin-left:auto;
margin-top: 1% ;
margin-right: auto;
}
.bg {
height: 100%;
background-image: url("food2.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
body, html {
height: 100%;
}
button {
background-image: linear-gradient(45deg, #8e0e00
,#1f1c18);
font-family: sans-serif;
font-size: 12pt ;
border-radius: 30px; /* Curve of border corners */
text-transform: uppercase;
color:silver;
margin-bottom: 3%;
width: 40% ;
margin-left: 30%;
height: 20% ;
}
button:hover{
color: rgba(255, 255, 255, 1);
box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}
table{
margin-top: 30px;
font-family: lobster;
border-collapse: collapse;
font-size: 0.9em;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
background-color: white;
text-align: center
}
table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
}
table th,
table td {
padding: 12px 15px;
font-size: 12pt
}
table th {
background-color: #8e0e00
}
table tbody tr {
border-bottom: 3px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
background-color: #ba8b02;
}
table tbody tr:last-of-type {
border-bottom: 2px solid #8e0e00;
}
table tbody tr:hover {
font-weight: bold;
color: #009879;
}
td {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
tr td button {
font-size: 6pt;
width: fit-content;
}
| 0.386185 | 0.086054 |
.tab-container{
background-color: #fff;
border: 1px;
border-color: #000;
}
.nav-tabs .nav-link.active {
color: #000;
border-color: #dee2e6;
}
.nav-tabs .nav-link {
color: #0099ff;
}
.tab {
overflow: hidden;
/*border: 1px solid #000;*/
background-color: #f1f1f1;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #000;
border-top: none;
}
.menu{
width: 100%;
}
.nav{
width: 100%;
}
.list_wrap .group-tabs .nav .nav-item{
margin-bottom: 0px;
padding-left: 0px;
width: 120px;
text-align: center;
}
.list_wrap .group-tabs .nav .nav-item .nav-link{
top:0;
left: 0;
bottom: 0;
right: 0;
width: 120px;
color: #000;
}
.list_wrap .group-tabs .nav .nav-item .active{
text-decoration: underline;
}
.tab-content .container .nav .nav-item {
margin-bottom: 20px;
padding-left: 0px;
/* width: 180px;
height: 50px;*/
text-align: center;
color: #000;
}
.tab-content .container .nav .nav-item .nav-link{
/* width: 180px;
height: 50px*/;
color: #000;
}
.tab-content .container .nav .nav-item .active{
color: #000;
border-bottom: none;
}
.bound{
padding-left: 20px;
margin-top: 20px;
padding-bottom: 10px;
}
.fade{
height: auto;
padding-left: 0px;
padding-right: 0;
}
#lab1{
padding-left: 0;
}
.nav-tabs{
background-color: #fff;
margin-left: 0px !important;
}
.rqcontainer .rqul{
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 50px;
}
.rqcontainer .rqul li{
list-style-type: circle;
}
.rqcontainer .rqul .rqli{
width: max-content !important;
margin-bottom: 10px !important;
}
.rqcontainer .rqul li p{
width: max-content;
}
.abc{
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 60px;
}
.bca{
width: 100% !important;
list-style-type: circle;
margin-bottom: 10px !important;
}
.contents{
padding-left: 50px ;
}
.bg-svg{
width: 100%;
height: 100%;
}
.content1{
display: flex;
flex-direction: row;
justify-content: all;
align-items: center;
margin-top: 30px;
margin-bottom: 20px;
}
/* Style buttons */
.icondownload {
margin-left: 10px;
background-color: DodgerBlue;
border: none;
color: white;
padding: 1px 5px;
cursor: pointer;
font-size: 15px;
border-radius: 4px;
}
a {
color: #fff;
}
a:hover, a:focus, a:active {
color: #fff;
}
/* Darker background on mouse-over */
.icondownload:hover {
background-color: RoyalBlue;
}
/**/
.github{
margin: 20px 20px;
}
.gh{
display: flex;
flex-direction: column;
}
#implement p{
font-size: 20px;
font-family: monospace;
}
.all-download{
text-align: center;
}
.icondownload-all{
background-color: DodgerBlue;
border: none;
color: white;
padding: 5px 15px;
cursor: pointer;
font-size: 20px;
margin-top: 40px;
margin-bottom: 15px;
}
.icondownload-all:hover {
background-color: RoyalBlue;
}
.hiden{
display: none!important;
}
.thumb{
width: 800px;
height: 470px;
background-image:none ;
background-position: center center;
background-size: cover;
}
.imgsenario{
width: 800px;
height: 438px;
background-image: url(../17130050_design/lab2.png);
background-repeat: round;
}
.imgbyphone{
width: 500px;
height: 500px;
background-image: url(../lab/byphone.PNG);
}
.result {
padding-top: 1em;
padding-left: 0em;
padding-right: 2em;
padding-bottom: 0.5em;
}
.content-result {
margin-top: 1em;
}
.content-result2{
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: 1em;
}
|
css/tab.css
|
.tab-container{
background-color: #fff;
border: 1px;
border-color: #000;
}
.nav-tabs .nav-link.active {
color: #000;
border-color: #dee2e6;
}
.nav-tabs .nav-link {
color: #0099ff;
}
.tab {
overflow: hidden;
/*border: 1px solid #000;*/
background-color: #f1f1f1;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #000;
border-top: none;
}
.menu{
width: 100%;
}
.nav{
width: 100%;
}
.list_wrap .group-tabs .nav .nav-item{
margin-bottom: 0px;
padding-left: 0px;
width: 120px;
text-align: center;
}
.list_wrap .group-tabs .nav .nav-item .nav-link{
top:0;
left: 0;
bottom: 0;
right: 0;
width: 120px;
color: #000;
}
.list_wrap .group-tabs .nav .nav-item .active{
text-decoration: underline;
}
.tab-content .container .nav .nav-item {
margin-bottom: 20px;
padding-left: 0px;
/* width: 180px;
height: 50px;*/
text-align: center;
color: #000;
}
.tab-content .container .nav .nav-item .nav-link{
/* width: 180px;
height: 50px*/;
color: #000;
}
.tab-content .container .nav .nav-item .active{
color: #000;
border-bottom: none;
}
.bound{
padding-left: 20px;
margin-top: 20px;
padding-bottom: 10px;
}
.fade{
height: auto;
padding-left: 0px;
padding-right: 0;
}
#lab1{
padding-left: 0;
}
.nav-tabs{
background-color: #fff;
margin-left: 0px !important;
}
.rqcontainer .rqul{
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 50px;
}
.rqcontainer .rqul li{
list-style-type: circle;
}
.rqcontainer .rqul .rqli{
width: max-content !important;
margin-bottom: 10px !important;
}
.rqcontainer .rqul li p{
width: max-content;
}
.abc{
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 60px;
}
.bca{
width: 100% !important;
list-style-type: circle;
margin-bottom: 10px !important;
}
.contents{
padding-left: 50px ;
}
.bg-svg{
width: 100%;
height: 100%;
}
.content1{
display: flex;
flex-direction: row;
justify-content: all;
align-items: center;
margin-top: 30px;
margin-bottom: 20px;
}
/* Style buttons */
.icondownload {
margin-left: 10px;
background-color: DodgerBlue;
border: none;
color: white;
padding: 1px 5px;
cursor: pointer;
font-size: 15px;
border-radius: 4px;
}
a {
color: #fff;
}
a:hover, a:focus, a:active {
color: #fff;
}
/* Darker background on mouse-over */
.icondownload:hover {
background-color: RoyalBlue;
}
/**/
.github{
margin: 20px 20px;
}
.gh{
display: flex;
flex-direction: column;
}
#implement p{
font-size: 20px;
font-family: monospace;
}
.all-download{
text-align: center;
}
.icondownload-all{
background-color: DodgerBlue;
border: none;
color: white;
padding: 5px 15px;
cursor: pointer;
font-size: 20px;
margin-top: 40px;
margin-bottom: 15px;
}
.icondownload-all:hover {
background-color: RoyalBlue;
}
.hiden{
display: none!important;
}
.thumb{
width: 800px;
height: 470px;
background-image:none ;
background-position: center center;
background-size: cover;
}
.imgsenario{
width: 800px;
height: 438px;
background-image: url(../17130050_design/lab2.png);
background-repeat: round;
}
.imgbyphone{
width: 500px;
height: 500px;
background-image: url(../lab/byphone.PNG);
}
.result {
padding-top: 1em;
padding-left: 0em;
padding-right: 2em;
padding-bottom: 0.5em;
}
.content-result {
margin-top: 1em;
}
.content-result2{
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: 1em;
}
| 0.387227 | 0.064653 |
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic,900,900italic);
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; }
a {
text-decoration: none; }
a header {
margin: 20px 2px;
padding: 10px;
border-bottom: solid 3px #FB3550; }
a header h1 {
text-decoration: none !important;
color: #FB3550;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
text-align: left;
font-size: 20px;
font-weight: 800; }
#grid {
margin: 0 auto;
display: flex;
flex-flow: row wrap; }
#grid .col {
flex-grow: 1;
min-width: 250px;
padding: 2px; }
#grid .col article {
height: 198px; }
#grid .col article .content {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
background: #333333;
transition: all 0.5s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .bg {
position: absolute;
top: 0;
left: 0;
background-position: center center;
margin-left: 4px;
margin-top: 4px;
width: calc(100% - 8px);
height: calc(100% - 8px);
transition: all 0.2s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .title {
position: absolute;
bottom: 150%;
left: 0;
padding: 20px;
background: #333333;
color: #000;
vertical-align: baseline;
font-family: sans-serif;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
transition: all 0.2s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .title a {
color: #000;
text-decoration: none; }
#grid .col article .content .title small {
font-weight: normal;
font-size: 12px;
color: #aa9; }
#grid .col article .content:hover {
background: #FFF; }
#grid .col article .content:hover .bg {
margin-left: 10px;
margin-top: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px); }
#grid .col article .content:hover .title {
background: #FFF;
bottom: 10%; }
#grid .col article:nth-child(2) {
margin-top: 4px; }
#grid .col .big {
height: 400px;
min-width: 500px; }
@media all and (max-width: 529px) {
article {
min-width: 200px !important; } }
.post {
max-width: 1200px;
margin: auto;
text-align: center; }
.post h1 {
text-align: left;
color: #fff;
font-size: 16px;
font-weight: 400;
text-transform: uppercase; }
.post h1 a {
color: #fff;
text-decoration: none; }
.post h1 small {
font-size: 12px;
font-weight: 200; }
.post hr {
margin: 20px 0; }
.post pre {
margin: 20px 0;
white-space: pre-wrap;
/* css-3 */
white-space: -moz-pre-wrap;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */ }
.post pre code {
text-align: left;
border-radius: 2px;
font-family: 'Source Code Pro', sans-serif; }
footer {
margin: 20px 2px;
padding: 10px;
border-top: solid 3px #FB3550; }
footer p {
color: #FB3550;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
text-align: right; }
#home_header {
overflow: hidden;
display: flex;
flex-direction: column; }
#home_header #cnvs {
position: absolute;
top: 0;
left: 0; }
#home_header svg {
z-index: 1;
margin: auto;
max-width: 80%;
max-height: 80%; }
#home_header #links {
text-align: right;
z-index: 1;
margin: 20px 40px; }
#home_header #links a {
margin-left: 10px;
color: white;
font-size: 30px; }
* {
margin: 0;
padding: 0; }
body {
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
background: #1E2630;
overflow-x: hidden; }
|
images/previews/Le Club _ Glitch Shader with Threejs_files/main.css
|
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic,900,900italic);
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; }
a {
text-decoration: none; }
a header {
margin: 20px 2px;
padding: 10px;
border-bottom: solid 3px #FB3550; }
a header h1 {
text-decoration: none !important;
color: #FB3550;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
text-align: left;
font-size: 20px;
font-weight: 800; }
#grid {
margin: 0 auto;
display: flex;
flex-flow: row wrap; }
#grid .col {
flex-grow: 1;
min-width: 250px;
padding: 2px; }
#grid .col article {
height: 198px; }
#grid .col article .content {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
background: #333333;
transition: all 0.5s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .bg {
position: absolute;
top: 0;
left: 0;
background-position: center center;
margin-left: 4px;
margin-top: 4px;
width: calc(100% - 8px);
height: calc(100% - 8px);
transition: all 0.2s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .title {
position: absolute;
bottom: 150%;
left: 0;
padding: 20px;
background: #333333;
color: #000;
vertical-align: baseline;
font-family: sans-serif;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
transition: all 0.2s linear;
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
#grid .col article .content .title a {
color: #000;
text-decoration: none; }
#grid .col article .content .title small {
font-weight: normal;
font-size: 12px;
color: #aa9; }
#grid .col article .content:hover {
background: #FFF; }
#grid .col article .content:hover .bg {
margin-left: 10px;
margin-top: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px); }
#grid .col article .content:hover .title {
background: #FFF;
bottom: 10%; }
#grid .col article:nth-child(2) {
margin-top: 4px; }
#grid .col .big {
height: 400px;
min-width: 500px; }
@media all and (max-width: 529px) {
article {
min-width: 200px !important; } }
.post {
max-width: 1200px;
margin: auto;
text-align: center; }
.post h1 {
text-align: left;
color: #fff;
font-size: 16px;
font-weight: 400;
text-transform: uppercase; }
.post h1 a {
color: #fff;
text-decoration: none; }
.post h1 small {
font-size: 12px;
font-weight: 200; }
.post hr {
margin: 20px 0; }
.post pre {
margin: 20px 0;
white-space: pre-wrap;
/* css-3 */
white-space: -moz-pre-wrap;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */ }
.post pre code {
text-align: left;
border-radius: 2px;
font-family: 'Source Code Pro', sans-serif; }
footer {
margin: 20px 2px;
padding: 10px;
border-top: solid 3px #FB3550; }
footer p {
color: #FB3550;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
text-align: right; }
#home_header {
overflow: hidden;
display: flex;
flex-direction: column; }
#home_header #cnvs {
position: absolute;
top: 0;
left: 0; }
#home_header svg {
z-index: 1;
margin: auto;
max-width: 80%;
max-height: 80%; }
#home_header #links {
text-align: right;
z-index: 1;
margin: 20px 40px; }
#home_header #links a {
margin-left: 10px;
color: white;
font-size: 30px; }
* {
margin: 0;
padding: 0; }
body {
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
background: #1E2630;
overflow-x: hidden; }
| 0.328314 | 0.110976 |
.contact {
background-color: #191919;
padding: 50px;
}
h1.hire__text {
font-size: 60px;
}
h2.hire__text {
font-size: 40px;
}
p.hire__text {
font-size: 18px;
line-height: 30px;
color: rgba(29, 29, 36, 0.75);
font-weight: 400;
}
input.contact {
display: block;
width: 100%;
padding: 0 20px;
border: 2px solid rgba(0, 0, 0, 0.1);
border-radius: 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
height: 50px;
line-height: 46px;
margin: 20px 0px;
outline: none;
color: #fff;
font-size: 15px;
letter-spacing: 0.1px;
background: none;
border: 2px solid hsla(0, 0%, 100%, 0.2);
}
textarea#message {
height: 120px;
background: none;
padding: 0 20px;
width: 100%;
line-height: 46px;
color: #fff;
font-size: 15px;
letter-spacing: 0.1px;
border: 2px solid hsla(0, 0%, 100%, 0.2);
}
button.btn.contact.pointer {
margin: 20px 0px;
transition: 0.4s ease;
}
button.contact.pointer:hover {
background: #000;
color: #1db954 !important;
}
.font__icon {
display: flex;
color: darkgrey;
font-size: 25px;
margin: 25px;
margin-left: 0;
}
.font__icon span {
margin-left: 15px;
font-size: 20px;
padding-top: 2px;
color: #9c9c9c9c;
}
#Contact .heading h1 {
margin-bottom: 30px;
}
.contact__meta{
padding-top: 75px;
}
.contact__meta h3 {
margin-top: 20px;
margin-bottom: -10px;
color: lightgrey;
}
.contact__meta p {
color: #9c9c9c9c;
}
.contact__meta h2 {
color: lightgrey;
}
/* social icons */
.horizontal-list {
list-style: none;
padding-left: 0px;
}
.horizontal-list li {
display: inline-block;
margin: 40px;
font-weight: 100;
font-size: 2rem;
margin-bottom: -15px;
}
.horizontal-list li a {
text-decoration: none;
color: darkgray;
opacity: 50%;
transition: color 0.5s;
}
.horizontal-list li a:hover {
color: white;
opacity: 100%;
}
.text-center {
text-align: center;
}
|
src/Contact.css
|
.contact {
background-color: #191919;
padding: 50px;
}
h1.hire__text {
font-size: 60px;
}
h2.hire__text {
font-size: 40px;
}
p.hire__text {
font-size: 18px;
line-height: 30px;
color: rgba(29, 29, 36, 0.75);
font-weight: 400;
}
input.contact {
display: block;
width: 100%;
padding: 0 20px;
border: 2px solid rgba(0, 0, 0, 0.1);
border-radius: 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
height: 50px;
line-height: 46px;
margin: 20px 0px;
outline: none;
color: #fff;
font-size: 15px;
letter-spacing: 0.1px;
background: none;
border: 2px solid hsla(0, 0%, 100%, 0.2);
}
textarea#message {
height: 120px;
background: none;
padding: 0 20px;
width: 100%;
line-height: 46px;
color: #fff;
font-size: 15px;
letter-spacing: 0.1px;
border: 2px solid hsla(0, 0%, 100%, 0.2);
}
button.btn.contact.pointer {
margin: 20px 0px;
transition: 0.4s ease;
}
button.contact.pointer:hover {
background: #000;
color: #1db954 !important;
}
.font__icon {
display: flex;
color: darkgrey;
font-size: 25px;
margin: 25px;
margin-left: 0;
}
.font__icon span {
margin-left: 15px;
font-size: 20px;
padding-top: 2px;
color: #9c9c9c9c;
}
#Contact .heading h1 {
margin-bottom: 30px;
}
.contact__meta{
padding-top: 75px;
}
.contact__meta h3 {
margin-top: 20px;
margin-bottom: -10px;
color: lightgrey;
}
.contact__meta p {
color: #9c9c9c9c;
}
.contact__meta h2 {
color: lightgrey;
}
/* social icons */
.horizontal-list {
list-style: none;
padding-left: 0px;
}
.horizontal-list li {
display: inline-block;
margin: 40px;
font-weight: 100;
font-size: 2rem;
margin-bottom: -15px;
}
.horizontal-list li a {
text-decoration: none;
color: darkgray;
opacity: 50%;
transition: color 0.5s;
}
.horizontal-list li a:hover {
color: white;
opacity: 100%;
}
.text-center {
text-align: center;
}
| 0.244093 | 0.050799 |
.appwrapper {
position: relative;
display: flex;
width: 100%;
height: 100%;
overflow:hidden;
}
.spiner-wrapper {
position: absolute;
z-index: 99999;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.mdl-spinner-big {
width: 80px!important;
height: 80px!important;
}
.appwrapper__infobox {
height: 100%;
max-height: 100%;
overflow: auto;
flex: 1 0 30%;
background-color: #fff;
}
@media (max-width: 839px) and (min-width: 480px) {
.appwrapper__infobox {
flex: 1 0 40%;
}
}
@media (max-width: 479px) {
.appwrapper__infobox {
flex: 1 0 40%;
}
}
.appwrapper__map {
position: relative;
flex: 1 0 70%;
width: 100%;
height: 100%;
}
@media (max-width: 839px) and (min-width: 480px) {
.appwrapper__map {
flex: 1 0 60%;
}
}
@media (max-width: 479px) {
.appwrapper__map {
flex: 1 0 60%;
}
}
.appwrapper__infobox-nav {
padding-right:0.5em;
padding-left:0.5em;
border-bottom:0.5em solid rgb(255,82,82);
}
.confirmBtns .mdl-cell{
text-align: center;
}
.mdl-textfield.is-disabled .mdl-textfield__input {
color: inherit;
}
.mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
color: inherit;
}
.mdl-checkbox.is-disabled .mdl-checkbox__label{
color: inherit;
}
.mdl-switch.is-disabled .mdl-switch__label {
color: inherit;
}
.appwrapper__infobox .mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.appwrapper__infobox .mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.listing-disabled, .confirmBtns-disabled {
background-color: rgba(0, 0, 0, 0.2);
}
.estate + .listing {
border-top: 0.2em solid rgb(255,82,82);
}
.unclickable {
pointer-events: none;
}
.mdl-cell--centered {
display: flex;
justify-content: center;
align-items: center;
}
.mdl-cell--centered p {
margin: 0;
}
#estate__general_estate-year ~ span {
font-size: 10px;
}
#estate__general_estate-planNumber ~ span {
font-size: 10px;
}
.appwrapper__infobox-nav .mdl-textfield--expandable {
padding: 0;
}
.appwrapper__infobox-nav .mdl-textfield--expandable > label {
bottom: 0;
}
.mdl-dialog__title {
font-size: 1.143em;
padding: 0;
text-align: center;
}
.upload-images {
padding-top: 8px;
}
.dropzone-area {
width:auto;
height: 10em;
border: 0.2em dashed rgb(255,82,82);
}
|
dev/stylesheets/admin/index.css
|
.appwrapper {
position: relative;
display: flex;
width: 100%;
height: 100%;
overflow:hidden;
}
.spiner-wrapper {
position: absolute;
z-index: 99999;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.mdl-spinner-big {
width: 80px!important;
height: 80px!important;
}
.appwrapper__infobox {
height: 100%;
max-height: 100%;
overflow: auto;
flex: 1 0 30%;
background-color: #fff;
}
@media (max-width: 839px) and (min-width: 480px) {
.appwrapper__infobox {
flex: 1 0 40%;
}
}
@media (max-width: 479px) {
.appwrapper__infobox {
flex: 1 0 40%;
}
}
.appwrapper__map {
position: relative;
flex: 1 0 70%;
width: 100%;
height: 100%;
}
@media (max-width: 839px) and (min-width: 480px) {
.appwrapper__map {
flex: 1 0 60%;
}
}
@media (max-width: 479px) {
.appwrapper__map {
flex: 1 0 60%;
}
}
.appwrapper__infobox-nav {
padding-right:0.5em;
padding-left:0.5em;
border-bottom:0.5em solid rgb(255,82,82);
}
.confirmBtns .mdl-cell{
text-align: center;
}
.mdl-textfield.is-disabled .mdl-textfield__input {
color: inherit;
}
.mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
color: inherit;
}
.mdl-checkbox.is-disabled .mdl-checkbox__label{
color: inherit;
}
.mdl-switch.is-disabled .mdl-switch__label {
color: inherit;
}
.appwrapper__infobox .mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.appwrapper__infobox .mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.listing-disabled, .confirmBtns-disabled {
background-color: rgba(0, 0, 0, 0.2);
}
.estate + .listing {
border-top: 0.2em solid rgb(255,82,82);
}
.unclickable {
pointer-events: none;
}
.mdl-cell--centered {
display: flex;
justify-content: center;
align-items: center;
}
.mdl-cell--centered p {
margin: 0;
}
#estate__general_estate-year ~ span {
font-size: 10px;
}
#estate__general_estate-planNumber ~ span {
font-size: 10px;
}
.appwrapper__infobox-nav .mdl-textfield--expandable {
padding: 0;
}
.appwrapper__infobox-nav .mdl-textfield--expandable > label {
bottom: 0;
}
.mdl-dialog__title {
font-size: 1.143em;
padding: 0;
text-align: center;
}
.upload-images {
padding-top: 8px;
}
.dropzone-area {
width:auto;
height: 10em;
border: 0.2em dashed rgb(255,82,82);
}
| 0.510741 | 0.060752 |
body{
margin:0px auto;
width:100%;
float:left;
font-family:helvetica;
}
/* css properties of header */
body .header_nav{
width:100%;
float:left;
height:3.9583333333333335vw;
border:0vw;
border-bottom:1px solid #dfdfdf;
box-shadow: 0px 0px 8px #ccc;
}
body .header_nav nav{
width:100%;
float:left;
height:inherit;
}
body .header_nav nav .header-ul{
padding:0vw;
display:inline-block;
height:inherit;
}
body .header_nav nav .header-ul li{
height:inherit;
line-height:3.9583333333333335vw;
}
body .header_nav nav .header-ul li a{
height:inherit;
line-height:3.9583333333333335vw;
}
body .header_nav nav .right-header-nav{
float:right;
margin:0vw 3.125vw 0vw 0vw;
list-style:none;
}
body .header_nav nav .left-header-nav{
margin:0vw 0vw 0vw 2.0833333333333335vw;
float:left;
list-style:none;
}
body .header_nav nav .left-header-nav .header-logo-hlink .header-logo{
width:10.25vw;
height:2.04375vw;
position:relative;
top:0.5208333333333334vw;
}
body .header_nav nav .left-header-nav .header-logo-hlink a{
line-height:3.125vw;
text-decoration:none;
font-family:"Arial Black", Gadget, sans-serif;
font-size:1.71875vw;
color:#1D3F57;
font-weight:700;
}
body .header_nav nav .right-header-nav li{
padding:0vw;
margin:0vw;
float:left;
}
body .header_nav nav .right-header-nav li a{
display:inline-block;
float:left;
padding:0vw 1.0416666666666667vw 0vw 1.0416666666666667vw;
font-size:12px;
text-decoration:none;
color:#153147
}
body .header_nav nav .right-header-nav li a:hover{
text-decoration:underline;
color:#728CA1;
}
body .main-article{
width:80%;
margin:0px auto;
}
body .main-article .main-article-title{
width:100%;
float:left;
}
body .main-article .main-article-title h3{
width:100%;
padding:0vw 0vw 1.0416666666666667vw 0vw;
color:#22487A;
border-bottom:1px solid #dfdfdf;
float:left;
}
body .main-article .main-article-content{
width:98%;
padding:1%;
float:left;
}
body .main-article .main-article-content h4{
width:99%;
float:left;
padding:0.3125vw 0.4166666666666667vw 0.3125vw 0.4166666666666667vw;
font-size:16px;
color:#234B80;
border:1px solid #2A5896;
}
body .main-article .main-article-content p{
width:96%;
float:left;
padding:0vw;
margin:0.10416666666666667vw;
font-size:14px;
font-family:verdana;
}
body .main-article .main-article-content .e-x-header{
font-weight:700;
text-decoration:underline;
color:#295F94;
font-size:14px;
margin:1.3020833333333335vw 0vw 0vw 0vw;
}
body .main-article .main-article-content .i-o-header{
color:#006D00;
font-weight:700;
font-family:verdana;
margin-top:0.3125vw;
margin-left:2%;
width:98%;
}
body .main-article .main-article-content .n-header{
font-weight:700;
color:#E30F01;
}
body .main-article .main-article-content .para-note{
font-size:11px;
}
body .main-article .main-article-content pre{
float:left;
width:96%;
margin-top:0.78125vw;
margin-bottom:0vw;
margin-left:2%;
text-align:left;
border:1px solid #dfdfdf;
padding:1%;
}
body footer{
width:96%;
padding:0.2% 2% 1.2% 2%;
margin:0.125vw 0vw 1.525vw 0vw;
float:left;
}
body footer .footer-items{
width:100%;
float:left;
padding:0vw;
margin:2.0833333333333335vw 0vw 0vw 0vw;
list-style:none;
text-align:center;
}
body footer .footer-items .footer-items-wrapper{
display:inline-block;
text-align:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li{
display:inline-block;
float:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-index{
display:inline-block;
float:left;
font-size:12px;
color:#153147;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external{
display:inline-block;
float:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external a{
color:#375484;
font-size:13px;
text-decoration:none;
cursor:pointer;
padding:0vw 0.3125vw;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external a:hover{
text-decoration:underline;
color:#1E2D48;
}
|
doc/css/style-doc.css
|
body{
margin:0px auto;
width:100%;
float:left;
font-family:helvetica;
}
/* css properties of header */
body .header_nav{
width:100%;
float:left;
height:3.9583333333333335vw;
border:0vw;
border-bottom:1px solid #dfdfdf;
box-shadow: 0px 0px 8px #ccc;
}
body .header_nav nav{
width:100%;
float:left;
height:inherit;
}
body .header_nav nav .header-ul{
padding:0vw;
display:inline-block;
height:inherit;
}
body .header_nav nav .header-ul li{
height:inherit;
line-height:3.9583333333333335vw;
}
body .header_nav nav .header-ul li a{
height:inherit;
line-height:3.9583333333333335vw;
}
body .header_nav nav .right-header-nav{
float:right;
margin:0vw 3.125vw 0vw 0vw;
list-style:none;
}
body .header_nav nav .left-header-nav{
margin:0vw 0vw 0vw 2.0833333333333335vw;
float:left;
list-style:none;
}
body .header_nav nav .left-header-nav .header-logo-hlink .header-logo{
width:10.25vw;
height:2.04375vw;
position:relative;
top:0.5208333333333334vw;
}
body .header_nav nav .left-header-nav .header-logo-hlink a{
line-height:3.125vw;
text-decoration:none;
font-family:"Arial Black", Gadget, sans-serif;
font-size:1.71875vw;
color:#1D3F57;
font-weight:700;
}
body .header_nav nav .right-header-nav li{
padding:0vw;
margin:0vw;
float:left;
}
body .header_nav nav .right-header-nav li a{
display:inline-block;
float:left;
padding:0vw 1.0416666666666667vw 0vw 1.0416666666666667vw;
font-size:12px;
text-decoration:none;
color:#153147
}
body .header_nav nav .right-header-nav li a:hover{
text-decoration:underline;
color:#728CA1;
}
body .main-article{
width:80%;
margin:0px auto;
}
body .main-article .main-article-title{
width:100%;
float:left;
}
body .main-article .main-article-title h3{
width:100%;
padding:0vw 0vw 1.0416666666666667vw 0vw;
color:#22487A;
border-bottom:1px solid #dfdfdf;
float:left;
}
body .main-article .main-article-content{
width:98%;
padding:1%;
float:left;
}
body .main-article .main-article-content h4{
width:99%;
float:left;
padding:0.3125vw 0.4166666666666667vw 0.3125vw 0.4166666666666667vw;
font-size:16px;
color:#234B80;
border:1px solid #2A5896;
}
body .main-article .main-article-content p{
width:96%;
float:left;
padding:0vw;
margin:0.10416666666666667vw;
font-size:14px;
font-family:verdana;
}
body .main-article .main-article-content .e-x-header{
font-weight:700;
text-decoration:underline;
color:#295F94;
font-size:14px;
margin:1.3020833333333335vw 0vw 0vw 0vw;
}
body .main-article .main-article-content .i-o-header{
color:#006D00;
font-weight:700;
font-family:verdana;
margin-top:0.3125vw;
margin-left:2%;
width:98%;
}
body .main-article .main-article-content .n-header{
font-weight:700;
color:#E30F01;
}
body .main-article .main-article-content .para-note{
font-size:11px;
}
body .main-article .main-article-content pre{
float:left;
width:96%;
margin-top:0.78125vw;
margin-bottom:0vw;
margin-left:2%;
text-align:left;
border:1px solid #dfdfdf;
padding:1%;
}
body footer{
width:96%;
padding:0.2% 2% 1.2% 2%;
margin:0.125vw 0vw 1.525vw 0vw;
float:left;
}
body footer .footer-items{
width:100%;
float:left;
padding:0vw;
margin:2.0833333333333335vw 0vw 0vw 0vw;
list-style:none;
text-align:center;
}
body footer .footer-items .footer-items-wrapper{
display:inline-block;
text-align:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li{
display:inline-block;
float:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-index{
display:inline-block;
float:left;
font-size:12px;
color:#153147;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external{
display:inline-block;
float:left;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external a{
color:#375484;
font-size:13px;
text-decoration:none;
cursor:pointer;
padding:0vw 0.3125vw;
}
body footer .footer-items .footer-items-wrapper .footer-items-li .li-external a:hover{
text-decoration:underline;
color:#1E2D48;
}
| 0.261708 | 0.03378 |
ul li {
list-style: disc;
margin-bottom: 7px
}
ul, ol {
padding-inline-start: 20px
}
ol ol, ol ul, ul ol, ul ul {
margin: 7px 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
.copyright {
margin-bottom: 0;
margin-top: 0
}
.copyright li {
font-family: "Rubik", sans-serif;
font-weight: 400;
font-size: 14px;
letter-spacing: 0;
color: #999;
border-left: solid 1px rgba(255, 255, 255, 0.5);
display: inline-block;
line-height: 1em;
margin-left: 1em;
padding-left: 1em
}
.copyright li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
.copyright {
margin-bottom: 0;
margin-top: 0
}
.copyright li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
div.popover {
color: #2f2f2f;
font-size: 12pt;
padding: 10px 10px 10px 15px;
}
div.popover * {
margin: 0;
padding: 0;
}
.card-img-box {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.card-img-box .card-img {
height: auto;
width: auto;
max-width: 100%;
max-height: 150px;
display: block; /* remove extra space below image */
}
.card-block-fixed {
height:210px;
overflow: hidden;
text-overflow: ellipsis;
}
.card-read-more {
padding: 5px 15px 15px;
}
/* overwrite main.css */
.hero-content-v2 h3 {
font-size: 24px;
color: #2f3542;
font-weight: 400;
margin-bottom: 25px;
}
.hero-content-v2 h3 strong {
display: block;
font-size: 48px;
font-weight: 400;
line-height: 62px;
}
.carousel-post {
margin-right: 15px;
background-color: #f7f7f7;
}
.pagination .page-item .page-link {
color: #EB586F;
}
.pagination .page-item.disabled .page-link {
color: #636c72;
}
.pagination .page-item.disabled.static .page-link {
color: #EB586F;
}
.mb-25 {
margin-bottom: 25px;
}
.div-catalog-img {
overflow: hidden;
max-height: 150px;
}
.div-blog-img {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.div-blog-img .div-img {
width: auto;
height: auto;
max-width: 100%;
max-height: 150px;
display: block;
}
.text-version {
color: #fff;
background-color: #555;
padding: 1px 6px;
border-radius: 5px;
}
[role="button"]:focus {
outline: none;
}
.blog-post {
padding: 30px 15px 5px;
}
.post-tags {
font-size: x-small;
}
.blog-btn {
padding: 10px 15px;
}
@media (max-width: 480px) {
.navbar-brand img {
max-width: 120px;
}
.container .navbar-toggler {
padding: 15px 15px!important;
}
.blog-post {
padding-top: 15px;
}
}
@media (max-width:767px) {
.container {
margin-left: 0;
margin-right: 0;
width: 100%;
}
.container .navbar-toggler {
position: absolute;
right: 0px;
padding: 25px 15px;
margin: 10px;
}
}
|
assets/sdp-code-hub/site.css
|
ul li {
list-style: disc;
margin-bottom: 7px
}
ul, ol {
padding-inline-start: 20px
}
ol ol, ol ul, ul ol, ul ul {
margin: 7px 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
.copyright {
margin-bottom: 0;
margin-top: 0
}
.copyright li {
font-family: "Rubik", sans-serif;
font-weight: 400;
font-size: 14px;
letter-spacing: 0;
color: #999;
border-left: solid 1px rgba(255, 255, 255, 0.5);
display: inline-block;
line-height: 1em;
margin-left: 1em;
padding-left: 1em
}
.copyright li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
.copyright {
margin-bottom: 0;
margin-top: 0
}
.copyright li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0
}
blockquote {
border-left: 0.25em solid #CCC;
margin: 0;
padding: 0 1em
}
.navbar-nav .nav-item {
list-style: none;
padding: 0
}
footer ul li {
list-style: none;
}
.label-default-text {
font-size: 14px
}
.label-small-text {
font-size: 10px;
padding: 0 18px
}
ul.pagination li {
list-style: none
}
div.popover {
color: #2f2f2f;
font-size: 12pt;
padding: 10px 10px 10px 15px;
}
div.popover * {
margin: 0;
padding: 0;
}
.card-img-box {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.card-img-box .card-img {
height: auto;
width: auto;
max-width: 100%;
max-height: 150px;
display: block; /* remove extra space below image */
}
.card-block-fixed {
height:210px;
overflow: hidden;
text-overflow: ellipsis;
}
.card-read-more {
padding: 5px 15px 15px;
}
/* overwrite main.css */
.hero-content-v2 h3 {
font-size: 24px;
color: #2f3542;
font-weight: 400;
margin-bottom: 25px;
}
.hero-content-v2 h3 strong {
display: block;
font-size: 48px;
font-weight: 400;
line-height: 62px;
}
.carousel-post {
margin-right: 15px;
background-color: #f7f7f7;
}
.pagination .page-item .page-link {
color: #EB586F;
}
.pagination .page-item.disabled .page-link {
color: #636c72;
}
.pagination .page-item.disabled.static .page-link {
color: #EB586F;
}
.mb-25 {
margin-bottom: 25px;
}
.div-catalog-img {
overflow: hidden;
max-height: 150px;
}
.div-blog-img {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.div-blog-img .div-img {
width: auto;
height: auto;
max-width: 100%;
max-height: 150px;
display: block;
}
.text-version {
color: #fff;
background-color: #555;
padding: 1px 6px;
border-radius: 5px;
}
[role="button"]:focus {
outline: none;
}
.blog-post {
padding: 30px 15px 5px;
}
.post-tags {
font-size: x-small;
}
.blog-btn {
padding: 10px 15px;
}
@media (max-width: 480px) {
.navbar-brand img {
max-width: 120px;
}
.container .navbar-toggler {
padding: 15px 15px!important;
}
.blog-post {
padding-top: 15px;
}
}
@media (max-width:767px) {
.container {
margin-left: 0;
margin-right: 0;
width: 100%;
}
.container .navbar-toggler {
position: absolute;
right: 0px;
padding: 25px 15px;
margin: 10px;
}
}
| 0.439747 | 0.107063 |
.landscape-only {
display: none;
}
.landscape-hidden {
display: unset;
}
@media screen and (orientation: landscape) {
.landscape-only {
display: unset;
}
.landscape-hidden {
display: none;
}
}
.xs-or-smaller {
display: none;
}
.sm-or-smaller {
display: none;
}
.md-or-smaller {
display: none;
}
.lg-or-smaller {
display: none;
}
.xl-or-smaller {
display: none;
}
.xs-or-bigger {
display: none;
}
.sm-or-bigger {
display: none;
}
.md-or-bigger {
display: none;
}
.lg-or-bigger {
display: none;
}
.xl-or-bigger {
display: none;
}
.xs-only {
display: none;
}
.sm-only {
display: none;
}
.md-only {
display: none;
}
.lg-only {
display: none;
}
.xl-only {
display: none;
}
@media only screen and (min-width: 0px) {
.xs-or-bigger {
display: unset;
}
}
@media only screen and (max-width: 575px) {
.xs-or-smaller {
display: unset;
}
.xs-only {
display: unset;
}
}
@media only screen and (min-width: 576px) {
.sm-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 576px)and (max-width: 767px) {
.sm-only {
display: unset;
}
}
@media only screen and (max-width: 767px) {
.sm-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 768px) {
.md-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.md-only {
display: unset;
}
}
@media only screen and (max-width: 991px) {
.md-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 992px) {
.lg-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 992px)and (max-width: 1200px) {
.lg-only {
display: unset;
}
}
@media only screen and (max-width: 1200px) {
.lg-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 1200px) {
.xl-or-bigger {
display: unset;
}
.xl-only {
display: unset;
}
}
@media only screen and (min-width: 0) {
.xl-or-smaller {
display: unset;
}
}
|
assets/css/size_toggles.css
|
.landscape-only {
display: none;
}
.landscape-hidden {
display: unset;
}
@media screen and (orientation: landscape) {
.landscape-only {
display: unset;
}
.landscape-hidden {
display: none;
}
}
.xs-or-smaller {
display: none;
}
.sm-or-smaller {
display: none;
}
.md-or-smaller {
display: none;
}
.lg-or-smaller {
display: none;
}
.xl-or-smaller {
display: none;
}
.xs-or-bigger {
display: none;
}
.sm-or-bigger {
display: none;
}
.md-or-bigger {
display: none;
}
.lg-or-bigger {
display: none;
}
.xl-or-bigger {
display: none;
}
.xs-only {
display: none;
}
.sm-only {
display: none;
}
.md-only {
display: none;
}
.lg-only {
display: none;
}
.xl-only {
display: none;
}
@media only screen and (min-width: 0px) {
.xs-or-bigger {
display: unset;
}
}
@media only screen and (max-width: 575px) {
.xs-or-smaller {
display: unset;
}
.xs-only {
display: unset;
}
}
@media only screen and (min-width: 576px) {
.sm-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 576px)and (max-width: 767px) {
.sm-only {
display: unset;
}
}
@media only screen and (max-width: 767px) {
.sm-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 768px) {
.md-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.md-only {
display: unset;
}
}
@media only screen and (max-width: 991px) {
.md-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 992px) {
.lg-or-bigger {
display: unset;
}
}
@media only screen and (min-width: 992px)and (max-width: 1200px) {
.lg-only {
display: unset;
}
}
@media only screen and (max-width: 1200px) {
.lg-or-smaller {
display: unset;
}
}
@media only screen and (min-width: 1200px) {
.xl-or-bigger {
display: unset;
}
.xl-only {
display: unset;
}
}
@media only screen and (min-width: 0) {
.xl-or-smaller {
display: unset;
}
}
| 0.566019 | 0.195613 |
html,body {height: 100vh; color: #1a1a1a;}
#wrap {position: relative; height: 100vh; color: #1a1a1a;}
#wrap .inner {position: absolute; top: 40px; left: 40px; height: calc(100% - 80px); width: calc(100% - 160px); }
.num {font-family: 'CoreGothicE-7ExtraBold', sans-serif;}
.en_s {font-family: 'Helvetica-Light', sans-serif;}
.txt_color {color: #4f4f4f;}
.sns_icons li {float: left;}
.sns_icons li+li {margin-left: 10px;}
.sns_icons li a {display: block; width: 42px; height: 42px;}
.sns_icons li:nth-child(1) a {background-image: url(../img/sns_1.png);}
.sns_icons li:nth-child(1) a:hover {background-image: url(../img/sns_1_h.png);}
.sns_icons li:nth-child(2) a {background-image: url(../img/sns_2.png);}
.sns_icons li:nth-child(2) a:hover {background-image: url(../img/sns_2_h.png);}
.sns_icons li:nth-child(3) a {background-image: url(../img/sns_3.png);}
.sns_icons li:nth-child(3) a:hover {background-image: url(../img/sns_3_h.png);}
/*LayOut*/
/*header*/
header {position: fixed; padding: 40px 120px 0 40px; top: 0; left: 0; right: 0; font-family: 'Helvetica75-Bold',sans-serif; z-index: 4;}
header .mn_btn {float: left; cursor: pointer; transform: translate3d(0px, 0px, 0px);}
header .mn_btn svg {position: absolute; transform-origin: 0px 0px 0px; transform-origin: 50% 50% 0px;}
header .name {position: absolute; top: 0; left: 50%; transform: translate(-50%,0); height: 32px; overflow: hidden; font-size: 25px;}
header .name ul {text-align: center; display: block; width: 200px; height: 100%; }
header .name ul li {position: absolute; top:-30px; margin: 0 auto; width: 100%;}
header .name ul li span {display: inline-block; letter-spacing: -1px;}
header .control {float: right;}
header .control ul li {float: right; clear: both; position: relative; padding: 6px 0; height: 18px; transition: width 0.6s; cursor: pointer;}
header .control ul li .line_wrap {float: right; position: relative; display: inline-block; right: 0;}
header .control ul li .line_wrap .line {width: 6px; height: 6px; background-color: #1a1a1a; transition: 0.2s;}
header .control ul li .line_wrap .line_chk {margin: 3px 0; width: 40px; height: 1px; background-color: #1a1a1a; transition: 0.2s;}
header .control ul li p {overflow: hidden; float: right; margin-top: -12px; margin-right: 10px; transition: 0.8s;}
header .control ul li p span {color: #1a1a1a; float: right; margin-right: -206px; font-size: 14px; font-family: 'Helvetica75-Bold',sans-serif; line-height: 32px; white-space: nowrap; letter-spacing: -1px; transition: 0.8s;}
/*nav*/
nav {position: fixed; top: 0; left: -25%; bottom: 0; width: 25%; background-color: #1a1a1a; transition: 0.3s; z-index: 6;}
nav ul.menu {margin: 27vh 0 0 20px; }
nav ul.menu li {width: 160px;}
nav ul.menu li+li {padding-top: 20px;}
nav ul.menu li a {display: block; font-size: 25px; color: #fff; letter-spacing: -1px; transition: 0.1s; font-family: 'Helvetica75-Bold',sans-serif;}
nav .btm_ul {margin-top: 29vh; margin-left: 20px;}
nav .btm_ul li {color: #fff; font-family: 'dotum', sans-serif; font-size: 12px; font-weight: 100;}
nav .btm_ul>li+li {margin-top: 20px;}
.modal {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(0,0,0,0.2); z-index: 5;}
/*fixed_bottom*/
#container .fix {position: fixed; bottom: 40px; z-index: 2;}
#page_view {left: 25px; transform: rotate(90deg);}
#page_view span {font-size: 38px;}
#page_view span+span {margin-left: -8px;}
#ctnr_arrow {left: 47.9%; overflow: hidden; width: 2px; height: 68px; transform: translate(47.9%,0); background-color: #c3c3c3;}
#ctnr_arrow .color_1 {height: 100%; width: 100%; background-color: #1a1a1a; animation: line_arrow 3s infinite ease-in-out;}
#cat_btn {right: 120px;}
#cat_btn span {font-family: 'Helvetica75-Bold',sans-serif; font-size: 15px;}
/* Container_cnt */
#container {position: relative; height: 100%;}
#container section {overflow: hidden; position: relative; width: 100%; height: 100%; background-color: #f5f6f6;}
#home .inner>div {position: absolute; z-index: 2;}
#home * {vertical-align: middle; }
#home .port {top: 30vh; right: 56vw;}
#home .folio {top: 46vh; left: 56vw;}
#home .txt_wrap {overflow: hidden; display: inline-block; color: #1a1a1a; font-family: 'Helvetica75-Bold',sans-serif; font-size: 120px;}
#home .ort_wrap {width: 180px; margin-left: -10px;}
#home .ort_wrap .ort_txt {margin-left: -166px;}
#home .olio_wrap {width: 209px; margin-left: -7px;}
#home .olio_wrap .olio_txt {margin-left: -209px;}
#home .bg {position: absolute; width: 100%; height: 100%;}
#home .bg_01 {left: -100%; background-color: #f5f6f6; z-index: 1;}
#home .bg_02 {left: 100%; background: url(../img/main_bg.jpg) 50% 50% no-repeat; background-attachment: fixed; -webkit-background-size: cover; background-size: cover; z-index: 0;}
#about .about_btn {position: absolute; top: 45px; left: 50%; transform: translate(-50%,0); z-index: 4;}
#about .about_btn p {padding-top: 5px; color: #c0c0c0; font-size: 16px; font-family: 'Helvetica-Light', sans-serif; font-weight: bold;}
#about .about_btn>div {float: left; padding: 0 10px; cursor: pointer; border-top: 2px solid #c0c0c0; }
#about .about_btn .about_btn_b.bdtc {border-top-color: #1a1a1a;}
#about .about_cnt {position: absolute; top: 13vh; left: 50%; transform: translate(-50%,0); overflow: hidden; width: 768px; }
#about .about_cnt>ul {margin-left: 0; width: 200%; transition: 0.4s;}
#about .about_cnt>ul>li {position: relative; float: left; padding: 10px; width: 50%;}
#about .about_cnt .cnt_me p {text-align: center;}
#about .about_cnt .cnt_me p span {font-size: 20px; font-family: 'Helvetica-Light', sans-serif; letter-spacing: -1px;}
#about .about_cnt .like {width: 115px;}
#about .about_cnt .like ul {margin: 0 auto; width: 53px;}
#about .about_cnt .like ul li {padding: 32px 0; }
#about .about_cnt .like ul li:last-child {padding-bottom: 0;}
#about .about_cnt .like ul li+li {border-top: 1px solid #e1e1e1;}
#about .about_cnt .like ul li img {margin: 0 auto;}
#about .about_cnt .CM {position: absolute; left: 50%; transform: translate(-50%,0); height: 100%; width: 224px;}
#about .about_cnt .CM p:nth-child(1) span {margin-left: -17px; font-family: 'CoreGothicE-1Thin', sans-serif; font-size: 55px; letter-spacing: -4px; line-height: 55px;}
#about .about_cnt .CM p:nth-child(2) span {font-family: 'Noto Sans KR', sans-serif; font-size: 35px; font-weight: 100; letter-spacing: 7px;}
#about .about_cnt .CM .pic img {width: 180px; margin: 6vh auto 0;}
#about .about_cnt .CM .ex_pic ul {position: relative; padding: 66px 0; margin-top: 6.5vh;}
#about .about_cnt .CM .ex_pic ul li {display: none; position: absolute; top: 0; left: 50%; width: 200px; transform: translateX(-50%);}
#about .about_cnt .CM .ex_pic ul li.selected {display: block;}
#about .about_cnt .CM .ex_pic img {margin: 0 auto;}
#about .about_cnt .CM .ex_pic .ex_text {margin-top: 1vh; font-family: 'Noto Sans KR', sans-serif; }
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(1) {font-size: 18px; font-weight: 400;}
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(2) {font-size: 14px;}
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(3) {font-size: 14px;}
#about .about_cnt .exp {position: relative; font-family: 'Noto Sans KR', sans-serif;}
#about .about_cnt .exp .exp_cnt {position: relative; width: 100%; height: 100%;}
#about .about_cnt .exp .exp_cnt .bar {position: absolute; display: block; width: 2px; top: 12px; left: 34px; z-index: 1; background-color: #1a1a1a; transition: height 0.4s;}
#about .about_cnt .exp ul {margin: 32px 0 0 30px;}
#about .about_cnt .exp ul:before {content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 34px; display: block; width: 2px; height: 100%; max-height: 478px; background-color: #ccc;}
#about .about_cnt .exp ul li+li {margin-top: 56px;}
#about .about_cnt .exp ul li .exp_btn {position: relative; padding-left: 18px; font-size: 14px; background-color: transparent; z-index: 3;}
#about .about_cnt .exp ul li .exp_btn:before {content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 0; display: block; width: 10px; height: 10px; border-radius: 50%; background-color: #ccc;}
#about .about_cnt .exp ul li:nth-child(1) .exp_btn:before {background-color: #1a1a1a;}
#about .about_cnt .exp ul li.btn_add .exp_btn:before {background-color: #1a1a1a; transition: 1s;}
#about .cnt_skill .skill_top {position: relative; width: 500px; margin: 50px auto 0; z-index: 1;}
#about .cnt_skill .skill_top .ski_C {position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background-color: #535353; transition: 0.4s;}
#about .cnt_skill .skill_top .ski_line {margin: 0 auto; width: 500px; height: 1px; background-color: #535353;}
#about .cnt_skill .skill_top .ski_text {margin: -34px auto 0; width: 500px;}
#about .cnt_skill .skill_top .ski_text .T_all {float: left; width: 25%; padding: 0 10px;}
#about .cnt_skill .skill_top .ski_text .T_all:first-child {padding-left: 0;}
#about .cnt_skill .skill_top .ski_text .T_all:last-child {padding-right: 0;}
#about .cnt_skill .skill_top .ski_text span {display: inline-block; font-family: 'Helvetica-Light', sans-serif; font-weight: bold; color: #ddd; cursor: pointer;}
#about .cnt_skill .skill_top .ski_text span:nth-child(1) {float: left;}
#about .cnt_skill .skill_top .ski_text span:nth-child(2) {float: right; margin-top: 45px; }
#about .cnt_skill .skill_btm {position: relative; padding: 234px 0; border-bottom: 1px solid #1a1a1a;}
#about .cnt_skill .skill_btm .ski_tri {position: absolute; bottom: 15px; width: 0px; height: 0px; border-color: transparent; border-bottom-color: rgba(0, 0, 0, 0.10) ;
border-style: solid;}
#about .cnt_skill .ski_t_1 {left: 0; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 270px;}
#about .cnt_skill .ski_t_2 {left: 20px; border-left-width: 140px; border-right-width: 140px; border-bottom-width: 270px;}
#about .cnt_skill .ski_t_3 {left: 130px; border-left-width: 120px; border-right-width: 120px; border-bottom-width: 200px;}
#about .cnt_skill .ski_t_4 {left: 180px; border-left-width: 150px; border-right-width: 150px; border-bottom-width: 300px;}
#about .cnt_skill .ski_t_5 {left: 320px; border-left-width: 110px; border-right-width: 120px; border-bottom-width: 240px;}
#about .cnt_skill .ski_t_6 {left: 380px; border-left-width: 130px; border-right-width: 130px; border-bottom-width: 150px;}
#about .cnt_skill .ski_t_7 {left: 490px; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 240px;}
#about .cnt_skill .ski_t_8 {right: 0; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 240px;}
#about .cnt_skill .ski_wrap {position: absolute; left: 50%; height: 100%; display: inline-block; transform: translateX(-50%);}
.ski_tri .counter {display: none; position: absolute; left: 50%; top: 50%; transform: translateX(-50%); color: #fff; font-size: 30px;}
.ski_tri .counter:after {content: "%";}
.txt_bar {position: absolute; left: 20vh; top: 28.5vh; width: 20px; height: 1px; background-color: #1a1a1a;}
.web_txt {margin: 27vh 0 0 24vh; width: 270px; overflow: hidden;}
.web_txt .web_all {width: 400%;}
.web_txt .web_all .web_cate {float: left; width: 25%;}
.web_txt .web_all .web_cate .web_cnt {}
.web_cnt em {color: #adadad; font-family: 'Noto Sans KR', sans-serif; text-transform: uppercase;}
.web_cnt span { font-family: 'Helvetica-Light', sans-serif; font-size: 30px; font-weight: bold;}
.web_cnt .tool {margin-top: 30px; line-height: 16px;}
.web_cnt .tool em {display: block;}
.web_cnt .cnt_txt {line-height: 16px;}
.web_cnt .cnt_txt em {color: #6d6d6d;}
.web_cnt li:nth-child(2)~li>* {font-size: 14px; }
.web_cnt li+li {margin-top: 13px;}
.web_icon {position: absolute; bottom: 25vh; left: 24vh; }
.web_icon a {float: left; width: 43px; height: 43px;}
.web_icon a+a {margin-left: 10px; }
.web_icon .prev {background-image: url(../img/left.png);}
.web_icon .prev:hover {background-image: url(../img/l_h.png);}
.web_icon .more {background-image: url(../img/more.png);}
.web_icon .more:hover {background-image: url(../img/m_h.png);}
.web_icon .next {background-image: url(../img/right.png);}
.web_icon .next:hover {background-image: url(../img/r_h.png);}
.web_mockup {position: absolute; left: 45%; transform: translateX(5%); top: 20vh; width: 1000px; height: 500px; background-image: url(../img/mockup.png); background-repeat: no-repeat; background-size: 950px;}
.web_mockup .frame {position: absolute; top: 60px; left: 50%; transform: translateX(-52%); width: 700px; height: 396px; overflow: hidden;}
.web_mockup .frame ul.frame_ul {width: 400%;}
.web_mockup .frame ul li {float: left; width: 25%;}
.web_mockup .frame ul li img {width: 720px;}
#work {position: relative;}
.W_pop_up {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 8;}
.W_pop_up .W_pop {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #ddd;}
.W_pop_up .W_pop i {display: block; position: absolute; right: 0; top: 0; width: 50px; height: 50px; background-image: url(../img/x.png); background-size: 50px; cursor: pointer;}
.W_pop_up .W_pop i:hover {background-image: url(../img/x_h.png);}
.ctt_wrap {position: absolute; width: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; overflow: hidden;}
.ctwp_1 {margin-left: -25%;}
.ctwp_2 {margin-left: 25%;}
.ctt {width: 300px;}
.ctt label {display: block; font-family: 'Helvetica-Light', sans-serif; font-size: 15px; color: #1a1a1a;}
.ctt_L {margin-left: 100%; width: 300px;}
.ctt_L label {margin: 28px 0;}
.ctt_L .TA_line {position: absolute; top: 176px; width: 100%; height: 1px; background-color: #c9c9c9; transition: 0.4s;}
.ctt_L label:nth-of-type(1) {margin-top: 0;}
.ctt_L input {width: 100%; padding-bottom: 6px; font-family: 'Helvetica-Light', sans-serif; color: #c9c9c9; background-color: transparent; border-bottom: 1px solid #c9c9c9;}
.ctt_L textarea {width: 300px; font-family: 'Helvetica-Light', sans-serif; background-color: transparent; resize: none; overflow: auto;}
.ctt_L .ct_btn {margin-top: 44px; width: 110px; height: 43px; background-image: url(../img/submit.png);}
.ctt_L .ct_btn:hover {background-image: url(../img/submit_h.png);}
.ctt_R {margin-left: -100%;}
.ctt_R p {font-size: 15px; color: #585858;}
.ctt_R .R_num {margin-top: 100px; font-family: "CoreGothicE-1Thin", sans-serif; font-size: 40px;}
.ctt_R .sns_icons {margin-top: 100px;}
#contact .contact_bg {position: absolute; width: 0; height: 100%; background-color: #fafafa;}
/*슬라이드*/
.swiper-container {position: relative; overflow: hidden; top: 33vh; left: 24vh; padding-bottom: 40px; width: 100%; height: 365px; }
.swiper-slide { text-align: center; font-size: 18px; background: #ddd; overflow: hidden;
/* Center slide text vertically */
display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center; cursor: pointer;}
.append-buttons {position: absolute; top: 45px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 5; }
.append-buttons a { display: inline-block; width: 83px; border-top: 2px solid #c0c0c0; color: #1a1a1a; text-decoration: none; padding: 10px 0; font-size: 15px; font-weight: bold; font-family: 'Noto Sans KR', sans-serif; font-weight: 400;}
.append-buttons a+a {margin-left: -4px;}
.append-buttons a:hover {border-top-color: #1a1a1a;}
.selected {border-top-color: #1a1a1a;}
.swiper-container-horizontal>.swiper-scrollbar { border-radius: 0; background: rgba(0,0,0,0); transition: 0.6s;}
.swiper-scrollbar-drag {background: #575757; border-radius: 0; transition: 0.6s;}
.swiper-scrollbar-drag:hover {height: 7px; transition: 0.6s;}
/*web_info*/
#info_wrap {}
#info_wrap h2{margin-top: 60px;text-align: center;font-family: 'Helvetica75-Bold',sans-serif;font-size: 25px;}
#info_wrap h2:after{content: "";display: block;margin: 30px auto;width: 48px;height: 1px;background-color: #262626;}
#info_wrap .inner {width: 100%;max-width: 1300px;margin: 0 auto;}
#info_wrap .header {background-color: #f5f6f6;}
#info_wrap .top {width: 1000px;margin: 0 auto;overflow: hidden;padding: 50px 0;}
#info_wrap .tab_slide {width: 200%; transition: 0.3s;}
#info_wrap .tab_slide .slide_cnt{float: left; width: 50%;}
#info_wrap .slide_cnt .mobile {margin-top: 70px;}
#info_wrap .slide_cnt a img {margin: 0 auto; width: 100%;}
#info_wrap .slide_cnt a .mobile_img {width: 590px;}
#info_wrap .btm {padding-bottom: 60px; text-align: center;}
#info_wrap .controls {display: inline-block;}
#info_wrap .remote_control {float: left;}
#info_wrap .remote_control a {text-indent: -9999px;}
#info_wrap .remote_control a:hover {opacity: 0.9;}
#info_wrap .remote_control.active a {opacity: 1;}
#info_wrap .remote_control .control_prev {margin-right: 10px;width: 72px;height: 51px;background: url(../img/pc_h.png) no-repeat center;background-size: 72px 51px;opacity: 0.4;}
#info_wrap .remote_control .control_next {width: 40px;height: 51px;background: url(../img/mb_h.png) no-repeat center;background-size: 40px 51px;opacity: 0.4;}
#info_wrap .text_area{padding-top: 10px;color: #262626;}
#info_wrap .responsive{font-size: 12px;color: #b6b6b6;}
#info_wrap .tool {margin: 30px 0 30px;}
#info_wrap .tool span{display: block;font-size: 14px;font-family: 'Helvetica75-Bold',sans-serif;color:#6f6f6f;}
#info_wrap .more_btn{margin: 0 auto;width: 110px;height:
35px;text-align: center;border: 1px solid #262626;transition: 0.2s;}
#info_wrap .more_btn:hover{background-color: #262626;}
#info_wrap .more_btn:hover span {color: #fff;}
#info_wrap .more_btn span{line-height: 35px;font-family: 'arial',sans-serif;font-weight: bold;font-size: 14px;}
#info_wrap section+section h2{margin-top: 120px;}
#info_wrap section p {padding: 0 380px;text-align: center;letter-spacing: -1.5px;font-family: 'Noto Sans KR', sans-serif;color: #9a9a9a;}
#info_wrap .palette {width: 420px;margin: 0 auto 50px;}
#info_wrap .palette ul {}
#info_wrap .palette ul li {float: left;width: 33.33%;text-align: center;}
#info_wrap .palette ul li i{display: block;margin: 0 auto 20px;width: 42px;height: 42px;border: 1px solid;}
#info_wrap .palette ul li span{}
#info_wrap .font_area{width: 730px;margin: 0 auto;}
#info_wrap .close_btn a{margin: 40px auto;width: 110px;height: 35px;text-align: center;border: 1px solid #262626;background: #262626;}
#info_wrap .close_btn a span{line-height: 35px;color: #fff;}
#info_wrap .twosome .control_prev{margin-right: 0;}
/*info_portfolio*/
#info_wrap .palette.pf ul li {float: left;width: 50%;text-align: center;}
/*info_leeyoung*/
#info_wrap .palette.leeyoung .color_01 i {background-color: #262626;}
#info_wrap .palette.leeyoung .color_02 i {background-color: #f8f8f8;}
#info_wrap .palette.leeyoung .color_03 i {background-color: #fff;}
/*info_tosome*/
#info_wrap .palette.twosome .color_01 i {background-color: #ae1d31;}
#info_wrap .palette.twosome .color_02 i {background-color: #fff;}
#info_wrap .palette.twosome .color_03 i {background-color: #e5e5e5;}
#info_wrap.twosome .control_prev {margin-right: 0;}
/*MediaQuery*/
.P_txt {opacity: 0;}
.P_txt .p_one {stroke-dasharray: 120px;}
.P_txt .p_two {stroke-dasharray: 250px;}
.F_txt {opacity: 0;}
.F_txt .F_one {stroke-dasharray: 200px;}
.F_txt .F_two {stroke-dasharray: 124px;}
.F_txt .F_three {stroke-dasharray: 124px;}
.P_one_ani {animation: P_one 1s ease forwards;}
.P_one_ani_2 {animation: P_onee 1s ease forwards;}
.P_two_ani {animation: P_two 20s ease-out forwards;}
.P_two_ani_2 {animation: P_twoo 20s ease-out forwards;}
.F_one_ani {animation: F_one 40s ease forwards;}
.F_two_ani {animation: F_two 40s ease forwards;}
.F_three_ani {animation: F_three 40s ease forwards;}
/*animaition*/
@keyframes line_arrow {
0% {transform: translateY(-100%);}
100% {transform: translateY(100%);}
}
@keyframes P_one {
from {
stroke-dashoffset: -120px;
}
to {
stroke-dashoffset: 0;
}
}
@keyframes P_onee {
from {
stroke-dashoffset: 120px;
}
to {
stroke-dashoffset: 0;
}
}
@keyframes P_two {
0% {
stroke-dashoffset: -250px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes P_twoo {
0% {
stroke-dashoffset: 250px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_one {
0% {
stroke-dashoffset: 200px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_two {
0% {
stroke-dashoffset: 124px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_three {
0% {
stroke-dashoffset: 124px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
/*MediaQuery*/
@media screen and (max-width: 1280px) {
header {padding: 20px 40px 0 20px;}
#wrap .inner {top: 20px; left: 20px; height: calc(100% - 40px); width: calc(100% - 60px);}
#cat_btn {right: 40px;}
#page_view {left: 10px;}
#web .txt_bar {left: 9vh;}
#web .web_txt {margin: 27vh 0 0 14vh;}
.web_icon {left: 14vh;}
}
@media screen and (max-width: 1024px) {
#home .ort_wrap {width: 120px;}
#home .txt_wrap {font-size: 90px;}
#home .port svg {width: 60px;}
#home .folio svg {width: 60px;}
#home .port {top: 34vh; right: 59vw;}
#home .folio {top: 44vh; left: 56vw;}
#web .txt_bar {top: 17.5vh; left: 50%; transform: translateX(-1340%);}
#web .web_txt {position: absolute; margin: auto; top: 130px; left: 50%; transform: translateX(-84%);}
.web_cnt li+li {margin-top: 4px;}
.web_cnt li:nth-child(2)~li>* {font-size: 12px;}
.web_cnt span {font-size: 20px;}
.web_cnt .tool {margin-top: 14px; line-height: 14px;}
.tool em:nth-child(2) {display: block;}
.web_cnt .cnt_txt {line-height: 14px;}
.web_icon {left: 50%; transform: translateX(450%); top: 18vh;}
.web_icon a {float: none;}
.web_icon a+a {margin-left: 0; margin-top: 10px;}
.web_mockup {left: 50%; transform: translateX(-50%); top: 40%; width: 640px; height: 340px; background-size: 640px; }
.web_mockup .frame {top: 43px; left: 50%; transform: translateX(-48%); width: 473px; height: 261px;}
.web_mockup .frame ul li img {width: 480px;}
}
@media screen and (max-width: 768px) {
#about .about_cnt .CM .pic img {margin-top: 4.5vh;}
#about .about_cnt .CM .ex_pic ul {margin-top: 4.5vh;}
.swiper-container {left: 2vh;}
#about .about_cnt {top: 18vh;}
#about .about_cnt .like {margin-left: 80px;}
#about .about_cnt .exp {left: -80px;}
}
|
css/style.css
|
html,body {height: 100vh; color: #1a1a1a;}
#wrap {position: relative; height: 100vh; color: #1a1a1a;}
#wrap .inner {position: absolute; top: 40px; left: 40px; height: calc(100% - 80px); width: calc(100% - 160px); }
.num {font-family: 'CoreGothicE-7ExtraBold', sans-serif;}
.en_s {font-family: 'Helvetica-Light', sans-serif;}
.txt_color {color: #4f4f4f;}
.sns_icons li {float: left;}
.sns_icons li+li {margin-left: 10px;}
.sns_icons li a {display: block; width: 42px; height: 42px;}
.sns_icons li:nth-child(1) a {background-image: url(../img/sns_1.png);}
.sns_icons li:nth-child(1) a:hover {background-image: url(../img/sns_1_h.png);}
.sns_icons li:nth-child(2) a {background-image: url(../img/sns_2.png);}
.sns_icons li:nth-child(2) a:hover {background-image: url(../img/sns_2_h.png);}
.sns_icons li:nth-child(3) a {background-image: url(../img/sns_3.png);}
.sns_icons li:nth-child(3) a:hover {background-image: url(../img/sns_3_h.png);}
/*LayOut*/
/*header*/
header {position: fixed; padding: 40px 120px 0 40px; top: 0; left: 0; right: 0; font-family: 'Helvetica75-Bold',sans-serif; z-index: 4;}
header .mn_btn {float: left; cursor: pointer; transform: translate3d(0px, 0px, 0px);}
header .mn_btn svg {position: absolute; transform-origin: 0px 0px 0px; transform-origin: 50% 50% 0px;}
header .name {position: absolute; top: 0; left: 50%; transform: translate(-50%,0); height: 32px; overflow: hidden; font-size: 25px;}
header .name ul {text-align: center; display: block; width: 200px; height: 100%; }
header .name ul li {position: absolute; top:-30px; margin: 0 auto; width: 100%;}
header .name ul li span {display: inline-block; letter-spacing: -1px;}
header .control {float: right;}
header .control ul li {float: right; clear: both; position: relative; padding: 6px 0; height: 18px; transition: width 0.6s; cursor: pointer;}
header .control ul li .line_wrap {float: right; position: relative; display: inline-block; right: 0;}
header .control ul li .line_wrap .line {width: 6px; height: 6px; background-color: #1a1a1a; transition: 0.2s;}
header .control ul li .line_wrap .line_chk {margin: 3px 0; width: 40px; height: 1px; background-color: #1a1a1a; transition: 0.2s;}
header .control ul li p {overflow: hidden; float: right; margin-top: -12px; margin-right: 10px; transition: 0.8s;}
header .control ul li p span {color: #1a1a1a; float: right; margin-right: -206px; font-size: 14px; font-family: 'Helvetica75-Bold',sans-serif; line-height: 32px; white-space: nowrap; letter-spacing: -1px; transition: 0.8s;}
/*nav*/
nav {position: fixed; top: 0; left: -25%; bottom: 0; width: 25%; background-color: #1a1a1a; transition: 0.3s; z-index: 6;}
nav ul.menu {margin: 27vh 0 0 20px; }
nav ul.menu li {width: 160px;}
nav ul.menu li+li {padding-top: 20px;}
nav ul.menu li a {display: block; font-size: 25px; color: #fff; letter-spacing: -1px; transition: 0.1s; font-family: 'Helvetica75-Bold',sans-serif;}
nav .btm_ul {margin-top: 29vh; margin-left: 20px;}
nav .btm_ul li {color: #fff; font-family: 'dotum', sans-serif; font-size: 12px; font-weight: 100;}
nav .btm_ul>li+li {margin-top: 20px;}
.modal {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(0,0,0,0.2); z-index: 5;}
/*fixed_bottom*/
#container .fix {position: fixed; bottom: 40px; z-index: 2;}
#page_view {left: 25px; transform: rotate(90deg);}
#page_view span {font-size: 38px;}
#page_view span+span {margin-left: -8px;}
#ctnr_arrow {left: 47.9%; overflow: hidden; width: 2px; height: 68px; transform: translate(47.9%,0); background-color: #c3c3c3;}
#ctnr_arrow .color_1 {height: 100%; width: 100%; background-color: #1a1a1a; animation: line_arrow 3s infinite ease-in-out;}
#cat_btn {right: 120px;}
#cat_btn span {font-family: 'Helvetica75-Bold',sans-serif; font-size: 15px;}
/* Container_cnt */
#container {position: relative; height: 100%;}
#container section {overflow: hidden; position: relative; width: 100%; height: 100%; background-color: #f5f6f6;}
#home .inner>div {position: absolute; z-index: 2;}
#home * {vertical-align: middle; }
#home .port {top: 30vh; right: 56vw;}
#home .folio {top: 46vh; left: 56vw;}
#home .txt_wrap {overflow: hidden; display: inline-block; color: #1a1a1a; font-family: 'Helvetica75-Bold',sans-serif; font-size: 120px;}
#home .ort_wrap {width: 180px; margin-left: -10px;}
#home .ort_wrap .ort_txt {margin-left: -166px;}
#home .olio_wrap {width: 209px; margin-left: -7px;}
#home .olio_wrap .olio_txt {margin-left: -209px;}
#home .bg {position: absolute; width: 100%; height: 100%;}
#home .bg_01 {left: -100%; background-color: #f5f6f6; z-index: 1;}
#home .bg_02 {left: 100%; background: url(../img/main_bg.jpg) 50% 50% no-repeat; background-attachment: fixed; -webkit-background-size: cover; background-size: cover; z-index: 0;}
#about .about_btn {position: absolute; top: 45px; left: 50%; transform: translate(-50%,0); z-index: 4;}
#about .about_btn p {padding-top: 5px; color: #c0c0c0; font-size: 16px; font-family: 'Helvetica-Light', sans-serif; font-weight: bold;}
#about .about_btn>div {float: left; padding: 0 10px; cursor: pointer; border-top: 2px solid #c0c0c0; }
#about .about_btn .about_btn_b.bdtc {border-top-color: #1a1a1a;}
#about .about_cnt {position: absolute; top: 13vh; left: 50%; transform: translate(-50%,0); overflow: hidden; width: 768px; }
#about .about_cnt>ul {margin-left: 0; width: 200%; transition: 0.4s;}
#about .about_cnt>ul>li {position: relative; float: left; padding: 10px; width: 50%;}
#about .about_cnt .cnt_me p {text-align: center;}
#about .about_cnt .cnt_me p span {font-size: 20px; font-family: 'Helvetica-Light', sans-serif; letter-spacing: -1px;}
#about .about_cnt .like {width: 115px;}
#about .about_cnt .like ul {margin: 0 auto; width: 53px;}
#about .about_cnt .like ul li {padding: 32px 0; }
#about .about_cnt .like ul li:last-child {padding-bottom: 0;}
#about .about_cnt .like ul li+li {border-top: 1px solid #e1e1e1;}
#about .about_cnt .like ul li img {margin: 0 auto;}
#about .about_cnt .CM {position: absolute; left: 50%; transform: translate(-50%,0); height: 100%; width: 224px;}
#about .about_cnt .CM p:nth-child(1) span {margin-left: -17px; font-family: 'CoreGothicE-1Thin', sans-serif; font-size: 55px; letter-spacing: -4px; line-height: 55px;}
#about .about_cnt .CM p:nth-child(2) span {font-family: 'Noto Sans KR', sans-serif; font-size: 35px; font-weight: 100; letter-spacing: 7px;}
#about .about_cnt .CM .pic img {width: 180px; margin: 6vh auto 0;}
#about .about_cnt .CM .ex_pic ul {position: relative; padding: 66px 0; margin-top: 6.5vh;}
#about .about_cnt .CM .ex_pic ul li {display: none; position: absolute; top: 0; left: 50%; width: 200px; transform: translateX(-50%);}
#about .about_cnt .CM .ex_pic ul li.selected {display: block;}
#about .about_cnt .CM .ex_pic img {margin: 0 auto;}
#about .about_cnt .CM .ex_pic .ex_text {margin-top: 1vh; font-family: 'Noto Sans KR', sans-serif; }
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(1) {font-size: 18px; font-weight: 400;}
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(2) {font-size: 14px;}
#about .about_cnt .CM .ex_pic .ex_text p:nth-of-type(3) {font-size: 14px;}
#about .about_cnt .exp {position: relative; font-family: 'Noto Sans KR', sans-serif;}
#about .about_cnt .exp .exp_cnt {position: relative; width: 100%; height: 100%;}
#about .about_cnt .exp .exp_cnt .bar {position: absolute; display: block; width: 2px; top: 12px; left: 34px; z-index: 1; background-color: #1a1a1a; transition: height 0.4s;}
#about .about_cnt .exp ul {margin: 32px 0 0 30px;}
#about .about_cnt .exp ul:before {content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 34px; display: block; width: 2px; height: 100%; max-height: 478px; background-color: #ccc;}
#about .about_cnt .exp ul li+li {margin-top: 56px;}
#about .about_cnt .exp ul li .exp_btn {position: relative; padding-left: 18px; font-size: 14px; background-color: transparent; z-index: 3;}
#about .about_cnt .exp ul li .exp_btn:before {content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 0; display: block; width: 10px; height: 10px; border-radius: 50%; background-color: #ccc;}
#about .about_cnt .exp ul li:nth-child(1) .exp_btn:before {background-color: #1a1a1a;}
#about .about_cnt .exp ul li.btn_add .exp_btn:before {background-color: #1a1a1a; transition: 1s;}
#about .cnt_skill .skill_top {position: relative; width: 500px; margin: 50px auto 0; z-index: 1;}
#about .cnt_skill .skill_top .ski_C {position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background-color: #535353; transition: 0.4s;}
#about .cnt_skill .skill_top .ski_line {margin: 0 auto; width: 500px; height: 1px; background-color: #535353;}
#about .cnt_skill .skill_top .ski_text {margin: -34px auto 0; width: 500px;}
#about .cnt_skill .skill_top .ski_text .T_all {float: left; width: 25%; padding: 0 10px;}
#about .cnt_skill .skill_top .ski_text .T_all:first-child {padding-left: 0;}
#about .cnt_skill .skill_top .ski_text .T_all:last-child {padding-right: 0;}
#about .cnt_skill .skill_top .ski_text span {display: inline-block; font-family: 'Helvetica-Light', sans-serif; font-weight: bold; color: #ddd; cursor: pointer;}
#about .cnt_skill .skill_top .ski_text span:nth-child(1) {float: left;}
#about .cnt_skill .skill_top .ski_text span:nth-child(2) {float: right; margin-top: 45px; }
#about .cnt_skill .skill_btm {position: relative; padding: 234px 0; border-bottom: 1px solid #1a1a1a;}
#about .cnt_skill .skill_btm .ski_tri {position: absolute; bottom: 15px; width: 0px; height: 0px; border-color: transparent; border-bottom-color: rgba(0, 0, 0, 0.10) ;
border-style: solid;}
#about .cnt_skill .ski_t_1 {left: 0; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 270px;}
#about .cnt_skill .ski_t_2 {left: 20px; border-left-width: 140px; border-right-width: 140px; border-bottom-width: 270px;}
#about .cnt_skill .ski_t_3 {left: 130px; border-left-width: 120px; border-right-width: 120px; border-bottom-width: 200px;}
#about .cnt_skill .ski_t_4 {left: 180px; border-left-width: 150px; border-right-width: 150px; border-bottom-width: 300px;}
#about .cnt_skill .ski_t_5 {left: 320px; border-left-width: 110px; border-right-width: 120px; border-bottom-width: 240px;}
#about .cnt_skill .ski_t_6 {left: 380px; border-left-width: 130px; border-right-width: 130px; border-bottom-width: 150px;}
#about .cnt_skill .ski_t_7 {left: 490px; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 240px;}
#about .cnt_skill .ski_t_8 {right: 0; border-left-width: 80px; border-right-width: 80px; border-bottom-width: 240px;}
#about .cnt_skill .ski_wrap {position: absolute; left: 50%; height: 100%; display: inline-block; transform: translateX(-50%);}
.ski_tri .counter {display: none; position: absolute; left: 50%; top: 50%; transform: translateX(-50%); color: #fff; font-size: 30px;}
.ski_tri .counter:after {content: "%";}
.txt_bar {position: absolute; left: 20vh; top: 28.5vh; width: 20px; height: 1px; background-color: #1a1a1a;}
.web_txt {margin: 27vh 0 0 24vh; width: 270px; overflow: hidden;}
.web_txt .web_all {width: 400%;}
.web_txt .web_all .web_cate {float: left; width: 25%;}
.web_txt .web_all .web_cate .web_cnt {}
.web_cnt em {color: #adadad; font-family: 'Noto Sans KR', sans-serif; text-transform: uppercase;}
.web_cnt span { font-family: 'Helvetica-Light', sans-serif; font-size: 30px; font-weight: bold;}
.web_cnt .tool {margin-top: 30px; line-height: 16px;}
.web_cnt .tool em {display: block;}
.web_cnt .cnt_txt {line-height: 16px;}
.web_cnt .cnt_txt em {color: #6d6d6d;}
.web_cnt li:nth-child(2)~li>* {font-size: 14px; }
.web_cnt li+li {margin-top: 13px;}
.web_icon {position: absolute; bottom: 25vh; left: 24vh; }
.web_icon a {float: left; width: 43px; height: 43px;}
.web_icon a+a {margin-left: 10px; }
.web_icon .prev {background-image: url(../img/left.png);}
.web_icon .prev:hover {background-image: url(../img/l_h.png);}
.web_icon .more {background-image: url(../img/more.png);}
.web_icon .more:hover {background-image: url(../img/m_h.png);}
.web_icon .next {background-image: url(../img/right.png);}
.web_icon .next:hover {background-image: url(../img/r_h.png);}
.web_mockup {position: absolute; left: 45%; transform: translateX(5%); top: 20vh; width: 1000px; height: 500px; background-image: url(../img/mockup.png); background-repeat: no-repeat; background-size: 950px;}
.web_mockup .frame {position: absolute; top: 60px; left: 50%; transform: translateX(-52%); width: 700px; height: 396px; overflow: hidden;}
.web_mockup .frame ul.frame_ul {width: 400%;}
.web_mockup .frame ul li {float: left; width: 25%;}
.web_mockup .frame ul li img {width: 720px;}
#work {position: relative;}
.W_pop_up {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 8;}
.W_pop_up .W_pop {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #ddd;}
.W_pop_up .W_pop i {display: block; position: absolute; right: 0; top: 0; width: 50px; height: 50px; background-image: url(../img/x.png); background-size: 50px; cursor: pointer;}
.W_pop_up .W_pop i:hover {background-image: url(../img/x_h.png);}
.ctt_wrap {position: absolute; width: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; overflow: hidden;}
.ctwp_1 {margin-left: -25%;}
.ctwp_2 {margin-left: 25%;}
.ctt {width: 300px;}
.ctt label {display: block; font-family: 'Helvetica-Light', sans-serif; font-size: 15px; color: #1a1a1a;}
.ctt_L {margin-left: 100%; width: 300px;}
.ctt_L label {margin: 28px 0;}
.ctt_L .TA_line {position: absolute; top: 176px; width: 100%; height: 1px; background-color: #c9c9c9; transition: 0.4s;}
.ctt_L label:nth-of-type(1) {margin-top: 0;}
.ctt_L input {width: 100%; padding-bottom: 6px; font-family: 'Helvetica-Light', sans-serif; color: #c9c9c9; background-color: transparent; border-bottom: 1px solid #c9c9c9;}
.ctt_L textarea {width: 300px; font-family: 'Helvetica-Light', sans-serif; background-color: transparent; resize: none; overflow: auto;}
.ctt_L .ct_btn {margin-top: 44px; width: 110px; height: 43px; background-image: url(../img/submit.png);}
.ctt_L .ct_btn:hover {background-image: url(../img/submit_h.png);}
.ctt_R {margin-left: -100%;}
.ctt_R p {font-size: 15px; color: #585858;}
.ctt_R .R_num {margin-top: 100px; font-family: "CoreGothicE-1Thin", sans-serif; font-size: 40px;}
.ctt_R .sns_icons {margin-top: 100px;}
#contact .contact_bg {position: absolute; width: 0; height: 100%; background-color: #fafafa;}
/*슬라이드*/
.swiper-container {position: relative; overflow: hidden; top: 33vh; left: 24vh; padding-bottom: 40px; width: 100%; height: 365px; }
.swiper-slide { text-align: center; font-size: 18px; background: #ddd; overflow: hidden;
/* Center slide text vertically */
display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center; cursor: pointer;}
.append-buttons {position: absolute; top: 45px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 5; }
.append-buttons a { display: inline-block; width: 83px; border-top: 2px solid #c0c0c0; color: #1a1a1a; text-decoration: none; padding: 10px 0; font-size: 15px; font-weight: bold; font-family: 'Noto Sans KR', sans-serif; font-weight: 400;}
.append-buttons a+a {margin-left: -4px;}
.append-buttons a:hover {border-top-color: #1a1a1a;}
.selected {border-top-color: #1a1a1a;}
.swiper-container-horizontal>.swiper-scrollbar { border-radius: 0; background: rgba(0,0,0,0); transition: 0.6s;}
.swiper-scrollbar-drag {background: #575757; border-radius: 0; transition: 0.6s;}
.swiper-scrollbar-drag:hover {height: 7px; transition: 0.6s;}
/*web_info*/
#info_wrap {}
#info_wrap h2{margin-top: 60px;text-align: center;font-family: 'Helvetica75-Bold',sans-serif;font-size: 25px;}
#info_wrap h2:after{content: "";display: block;margin: 30px auto;width: 48px;height: 1px;background-color: #262626;}
#info_wrap .inner {width: 100%;max-width: 1300px;margin: 0 auto;}
#info_wrap .header {background-color: #f5f6f6;}
#info_wrap .top {width: 1000px;margin: 0 auto;overflow: hidden;padding: 50px 0;}
#info_wrap .tab_slide {width: 200%; transition: 0.3s;}
#info_wrap .tab_slide .slide_cnt{float: left; width: 50%;}
#info_wrap .slide_cnt .mobile {margin-top: 70px;}
#info_wrap .slide_cnt a img {margin: 0 auto; width: 100%;}
#info_wrap .slide_cnt a .mobile_img {width: 590px;}
#info_wrap .btm {padding-bottom: 60px; text-align: center;}
#info_wrap .controls {display: inline-block;}
#info_wrap .remote_control {float: left;}
#info_wrap .remote_control a {text-indent: -9999px;}
#info_wrap .remote_control a:hover {opacity: 0.9;}
#info_wrap .remote_control.active a {opacity: 1;}
#info_wrap .remote_control .control_prev {margin-right: 10px;width: 72px;height: 51px;background: url(../img/pc_h.png) no-repeat center;background-size: 72px 51px;opacity: 0.4;}
#info_wrap .remote_control .control_next {width: 40px;height: 51px;background: url(../img/mb_h.png) no-repeat center;background-size: 40px 51px;opacity: 0.4;}
#info_wrap .text_area{padding-top: 10px;color: #262626;}
#info_wrap .responsive{font-size: 12px;color: #b6b6b6;}
#info_wrap .tool {margin: 30px 0 30px;}
#info_wrap .tool span{display: block;font-size: 14px;font-family: 'Helvetica75-Bold',sans-serif;color:#6f6f6f;}
#info_wrap .more_btn{margin: 0 auto;width: 110px;height:
35px;text-align: center;border: 1px solid #262626;transition: 0.2s;}
#info_wrap .more_btn:hover{background-color: #262626;}
#info_wrap .more_btn:hover span {color: #fff;}
#info_wrap .more_btn span{line-height: 35px;font-family: 'arial',sans-serif;font-weight: bold;font-size: 14px;}
#info_wrap section+section h2{margin-top: 120px;}
#info_wrap section p {padding: 0 380px;text-align: center;letter-spacing: -1.5px;font-family: 'Noto Sans KR', sans-serif;color: #9a9a9a;}
#info_wrap .palette {width: 420px;margin: 0 auto 50px;}
#info_wrap .palette ul {}
#info_wrap .palette ul li {float: left;width: 33.33%;text-align: center;}
#info_wrap .palette ul li i{display: block;margin: 0 auto 20px;width: 42px;height: 42px;border: 1px solid;}
#info_wrap .palette ul li span{}
#info_wrap .font_area{width: 730px;margin: 0 auto;}
#info_wrap .close_btn a{margin: 40px auto;width: 110px;height: 35px;text-align: center;border: 1px solid #262626;background: #262626;}
#info_wrap .close_btn a span{line-height: 35px;color: #fff;}
#info_wrap .twosome .control_prev{margin-right: 0;}
/*info_portfolio*/
#info_wrap .palette.pf ul li {float: left;width: 50%;text-align: center;}
/*info_leeyoung*/
#info_wrap .palette.leeyoung .color_01 i {background-color: #262626;}
#info_wrap .palette.leeyoung .color_02 i {background-color: #f8f8f8;}
#info_wrap .palette.leeyoung .color_03 i {background-color: #fff;}
/*info_tosome*/
#info_wrap .palette.twosome .color_01 i {background-color: #ae1d31;}
#info_wrap .palette.twosome .color_02 i {background-color: #fff;}
#info_wrap .palette.twosome .color_03 i {background-color: #e5e5e5;}
#info_wrap.twosome .control_prev {margin-right: 0;}
/*MediaQuery*/
.P_txt {opacity: 0;}
.P_txt .p_one {stroke-dasharray: 120px;}
.P_txt .p_two {stroke-dasharray: 250px;}
.F_txt {opacity: 0;}
.F_txt .F_one {stroke-dasharray: 200px;}
.F_txt .F_two {stroke-dasharray: 124px;}
.F_txt .F_three {stroke-dasharray: 124px;}
.P_one_ani {animation: P_one 1s ease forwards;}
.P_one_ani_2 {animation: P_onee 1s ease forwards;}
.P_two_ani {animation: P_two 20s ease-out forwards;}
.P_two_ani_2 {animation: P_twoo 20s ease-out forwards;}
.F_one_ani {animation: F_one 40s ease forwards;}
.F_two_ani {animation: F_two 40s ease forwards;}
.F_three_ani {animation: F_three 40s ease forwards;}
/*animaition*/
@keyframes line_arrow {
0% {transform: translateY(-100%);}
100% {transform: translateY(100%);}
}
@keyframes P_one {
from {
stroke-dashoffset: -120px;
}
to {
stroke-dashoffset: 0;
}
}
@keyframes P_onee {
from {
stroke-dashoffset: 120px;
}
to {
stroke-dashoffset: 0;
}
}
@keyframes P_two {
0% {
stroke-dashoffset: -250px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes P_twoo {
0% {
stroke-dashoffset: 250px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_one {
0% {
stroke-dashoffset: 200px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_two {
0% {
stroke-dashoffset: 124px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
@keyframes F_three {
0% {
stroke-dashoffset: 124px;
}
5% {
stroke-dashoffset: 0px;
}
100% {
stroke-dashoffset: 0px;
}
}
/*MediaQuery*/
@media screen and (max-width: 1280px) {
header {padding: 20px 40px 0 20px;}
#wrap .inner {top: 20px; left: 20px; height: calc(100% - 40px); width: calc(100% - 60px);}
#cat_btn {right: 40px;}
#page_view {left: 10px;}
#web .txt_bar {left: 9vh;}
#web .web_txt {margin: 27vh 0 0 14vh;}
.web_icon {left: 14vh;}
}
@media screen and (max-width: 1024px) {
#home .ort_wrap {width: 120px;}
#home .txt_wrap {font-size: 90px;}
#home .port svg {width: 60px;}
#home .folio svg {width: 60px;}
#home .port {top: 34vh; right: 59vw;}
#home .folio {top: 44vh; left: 56vw;}
#web .txt_bar {top: 17.5vh; left: 50%; transform: translateX(-1340%);}
#web .web_txt {position: absolute; margin: auto; top: 130px; left: 50%; transform: translateX(-84%);}
.web_cnt li+li {margin-top: 4px;}
.web_cnt li:nth-child(2)~li>* {font-size: 12px;}
.web_cnt span {font-size: 20px;}
.web_cnt .tool {margin-top: 14px; line-height: 14px;}
.tool em:nth-child(2) {display: block;}
.web_cnt .cnt_txt {line-height: 14px;}
.web_icon {left: 50%; transform: translateX(450%); top: 18vh;}
.web_icon a {float: none;}
.web_icon a+a {margin-left: 0; margin-top: 10px;}
.web_mockup {left: 50%; transform: translateX(-50%); top: 40%; width: 640px; height: 340px; background-size: 640px; }
.web_mockup .frame {top: 43px; left: 50%; transform: translateX(-48%); width: 473px; height: 261px;}
.web_mockup .frame ul li img {width: 480px;}
}
@media screen and (max-width: 768px) {
#about .about_cnt .CM .pic img {margin-top: 4.5vh;}
#about .about_cnt .CM .ex_pic ul {margin-top: 4.5vh;}
.swiper-container {left: 2vh;}
#about .about_cnt {top: 18vh;}
#about .about_cnt .like {margin-left: 80px;}
#about .about_cnt .exp {left: -80px;}
}
| 0.278159 | 0.12665 |
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
background: #ffffff;
-webkit-text-size-adjust: none;
}
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;
}
mark {
background-color: transparent;
color: inherit;
}
input, select, textarea {
appearance: none;
}
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
body, input, select, textarea {
color: #a2a2a2;
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-size: 24px;
font-weight: 400;
line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
color: #787878;
}
h1 {
font-size: 42px;
line-height: 48px;
}
h2 {
font-size: 32px;
line-height: 32px;
}
h3 {
font-size: 24px;
line-height: 24px;
}
header .head {
margin: 48px 0;
}
a {
text-decoration: none;
}
@media( max-width: 800px ) {
.container {
max-width: 800px;
}
}
@media( max-width: 500px ) {
.container {
max-width: 500px;
}
}
.header {
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-between;
top: 0;
background-attachment: scroll;
background-image: url("../../images/bookcase.jpg");
background-position: top left;
background-repeat: no-repeat;
background-size: auto;
height: 100%;
padding: 128px 64px;
position: fixed;
text-align: right;
width: 20%;
}
@media( max-width: 800px ) {
.header {
padding: 64px 16px;
}
}
.header h1 {
color: white;
}
@media( max-width: 500px ) {
.header h1 {
font-size: 24px;
}
}
.header .icons a {
margin: 10px;
display: flex;
}
.right-side {
display: flex;
top: 0;
background-image: url("../../images/bookcase.jpg");
background-position: top right;
background-repeat: no-repeat;
background-size: auto;
margin-left: 80%;
height: 100%;
width: 20%;
position: fixed;
}
.right-side .nav-button {
margin: 10px;
display: flex;
}
.right-side .nav-button a {
margin-right: 10px;
position: absolute;
cursor: pointer;
}
.nav {
display: none;
position: fixed;
top: 5px;
left: 83%;
width: 10%;
background-color: white;
border: 1px solid #004D40;
z-index: 2;
}
@media( max-width: 800px ) {
.nav {
left: 85%;
height: 200px;
}
}
@media( max-width: 500px ) {
.nav {
left: 81%;
top: 50px;
width: 15%;
}
}
.nav nav {
display: flex;
flex-direction: column;
}
.nav nav a{
list-style-type: none;
font-size: 32px;
text-align: center;
margin: 20px 0;
}
@media( max-width: 800px ) {
.nav nav a {
font-size: 16px;
margin: 10px 0;
}
}
.nav-open {
display: block;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-left: 20%;
margin-right: 20%;
max-width: 100%;
padding: 32px 64px 64px 64px;
width: 60%;
}
@media( max-width: 500px ) {
.main {
padding: 16px 32px 32px 32px;
}
}
.main section {
display: flex;
flex-direction: column;
align-items: center;
border-top: solid 2px lightgray;
margin: 32px 0 0 0;
padding: 32px 0 0 0;
}
.main .intro {
border-top: 0;
margin-top: 0;
padding-top: 0;
font-size: 20px;
}
.main .intro h2 {
margin-top: 20px;
margin-bottom: 20px;
}
.main .into p {
width: 500px;
}
.content h2 {
margin-bottom: 30px;
}
.row {
display: flex;
flex-direction: column;
align-items: center;
}
.item {
display: flex;
flex-direction: column;
margin: 0 0 32px 0;
align-items: center;
}
.item img {
margin: 0 0 32px 0;
}
@media( max-width: 800px ) {
.item img {
width: 100%;
height: auto;
}
}
.item h3 {
margin: 12px 0 8px 0;
}
.item p {
font-size: 16px;
line-height: 24px;
}
.us {
margin-top: 32px;
}
.person {
display: flex;
margin: 16px 0;
padding-bottom: 32px;
align-items: center;
width: 50%;
border-bottom: solid 2px lightgray;
}
@media( max-width: 500px ) {
.person {
flex-direction: column;
width: 55%
}
}
.person h3 {
margin: 10px;
}
.person p {
font-size: 20px;
}
.edward {
text-align: left;
}
@media( max-width: 500px ) {
.edward {
text-align: center;
}
}
.edward img {
width: 20%;
height: auto;
margin: 0px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.edward img {
width: 50%;
}
}
.ilya {
display: flex;
flex-direction: row-reverse;
text-align: right;
}
@media( max-width: 500px ) {
.ilya {
flex-direction: column;
text-align: center;
}
}
.ilya img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.ilya img {
width: 50%;
}
}
.davina {
text-align: left;
}
@media( max-width: 500px ) {
.davina {
text-align: center;
}
}
.davina img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.davina img {
width: 50%;
}
}
.jamie {
display: flex;
flex-direction: row-reverse;
text-align: right;
}
@media( max-width: 500px ) {
.jamie {
flex-direction: column;
text-align: center;
}
}
.jamie img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.jamie img {
width: 50%;
}
}
.smoot {
text-align: left;
}
@media( max-width: 500px ) {
.smoot {
text-align: center;
}
}
.smoot img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.smoot img {
width: 50%;
}
}
|
css/main.css
|
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
background: #ffffff;
-webkit-text-size-adjust: none;
}
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;
}
mark {
background-color: transparent;
color: inherit;
}
input, select, textarea {
appearance: none;
}
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
body, input, select, textarea {
color: #a2a2a2;
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-size: 24px;
font-weight: 400;
line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
color: #787878;
}
h1 {
font-size: 42px;
line-height: 48px;
}
h2 {
font-size: 32px;
line-height: 32px;
}
h3 {
font-size: 24px;
line-height: 24px;
}
header .head {
margin: 48px 0;
}
a {
text-decoration: none;
}
@media( max-width: 800px ) {
.container {
max-width: 800px;
}
}
@media( max-width: 500px ) {
.container {
max-width: 500px;
}
}
.header {
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-between;
top: 0;
background-attachment: scroll;
background-image: url("../../images/bookcase.jpg");
background-position: top left;
background-repeat: no-repeat;
background-size: auto;
height: 100%;
padding: 128px 64px;
position: fixed;
text-align: right;
width: 20%;
}
@media( max-width: 800px ) {
.header {
padding: 64px 16px;
}
}
.header h1 {
color: white;
}
@media( max-width: 500px ) {
.header h1 {
font-size: 24px;
}
}
.header .icons a {
margin: 10px;
display: flex;
}
.right-side {
display: flex;
top: 0;
background-image: url("../../images/bookcase.jpg");
background-position: top right;
background-repeat: no-repeat;
background-size: auto;
margin-left: 80%;
height: 100%;
width: 20%;
position: fixed;
}
.right-side .nav-button {
margin: 10px;
display: flex;
}
.right-side .nav-button a {
margin-right: 10px;
position: absolute;
cursor: pointer;
}
.nav {
display: none;
position: fixed;
top: 5px;
left: 83%;
width: 10%;
background-color: white;
border: 1px solid #004D40;
z-index: 2;
}
@media( max-width: 800px ) {
.nav {
left: 85%;
height: 200px;
}
}
@media( max-width: 500px ) {
.nav {
left: 81%;
top: 50px;
width: 15%;
}
}
.nav nav {
display: flex;
flex-direction: column;
}
.nav nav a{
list-style-type: none;
font-size: 32px;
text-align: center;
margin: 20px 0;
}
@media( max-width: 800px ) {
.nav nav a {
font-size: 16px;
margin: 10px 0;
}
}
.nav-open {
display: block;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-left: 20%;
margin-right: 20%;
max-width: 100%;
padding: 32px 64px 64px 64px;
width: 60%;
}
@media( max-width: 500px ) {
.main {
padding: 16px 32px 32px 32px;
}
}
.main section {
display: flex;
flex-direction: column;
align-items: center;
border-top: solid 2px lightgray;
margin: 32px 0 0 0;
padding: 32px 0 0 0;
}
.main .intro {
border-top: 0;
margin-top: 0;
padding-top: 0;
font-size: 20px;
}
.main .intro h2 {
margin-top: 20px;
margin-bottom: 20px;
}
.main .into p {
width: 500px;
}
.content h2 {
margin-bottom: 30px;
}
.row {
display: flex;
flex-direction: column;
align-items: center;
}
.item {
display: flex;
flex-direction: column;
margin: 0 0 32px 0;
align-items: center;
}
.item img {
margin: 0 0 32px 0;
}
@media( max-width: 800px ) {
.item img {
width: 100%;
height: auto;
}
}
.item h3 {
margin: 12px 0 8px 0;
}
.item p {
font-size: 16px;
line-height: 24px;
}
.us {
margin-top: 32px;
}
.person {
display: flex;
margin: 16px 0;
padding-bottom: 32px;
align-items: center;
width: 50%;
border-bottom: solid 2px lightgray;
}
@media( max-width: 500px ) {
.person {
flex-direction: column;
width: 55%
}
}
.person h3 {
margin: 10px;
}
.person p {
font-size: 20px;
}
.edward {
text-align: left;
}
@media( max-width: 500px ) {
.edward {
text-align: center;
}
}
.edward img {
width: 20%;
height: auto;
margin: 0px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.edward img {
width: 50%;
}
}
.ilya {
display: flex;
flex-direction: row-reverse;
text-align: right;
}
@media( max-width: 500px ) {
.ilya {
flex-direction: column;
text-align: center;
}
}
.ilya img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.ilya img {
width: 50%;
}
}
.davina {
text-align: left;
}
@media( max-width: 500px ) {
.davina {
text-align: center;
}
}
.davina img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.davina img {
width: 50%;
}
}
.jamie {
display: flex;
flex-direction: row-reverse;
text-align: right;
}
@media( max-width: 500px ) {
.jamie {
flex-direction: column;
text-align: center;
}
}
.jamie img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.jamie img {
width: 50%;
}
}
.smoot {
text-align: left;
}
@media( max-width: 500px ) {
.smoot {
text-align: center;
}
}
.smoot img {
width: 20%;
height: auto;
margin: 10px;
padding: 10px;
border: double 5px lightgray;
}
@media( max-width: 500px ) {
.smoot img {
width: 50%;
}
}
| 0.427038 | 0.09645 |
html {
-webkit-text-size-adjust: 100%;
font-size: 100%;
}
body {
background-color: white;
color: #666666;
line-height: 1.7857;
font-weight: normal;
font-style: normal;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Helvetica", "Arial", "Verdana", "sans-serif";
}
body, input, textarea, select, button{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga", "dlig", "calt", "kern";
}
h1,h2,h3,h4,h5,h6
, .h1, .h2, .h3, .h4, .h5, .h6{
text-align: left;
color: #111111;
letter-spacing: 1px;
padding: 0;
margin: 0 0 .5em 0;
font-weight: 200;
font-family: "Myriad Set Pro", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
h2{
font-size: 2.5em;
}
p{
margin-top: 1em;
}
.container{
margin-top: 2em;
}
.badge{
font-family: Verdana, sans-serif;
}
@media (min-width: 1200px) {
.container {
width: 970px;
}
}
.blog-masthead {
background-color: #1d1d1d;
height: 1em;
}
.blog-nav-item {
position: relative;
display: inline-block;
padding: 10px;
font-weight: 500;
color: #cdddeb;
}
.blog-nav-item:hover,
.blog-nav-item:focus {
color: #fff;
text-decoration: none;
}
.blog-nav .active {
color: #fff;
}
.blog-nav .active:after {
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 0;
margin-left: -5px;
vertical-align: middle;
content: " ";
border-right: 5px solid transparent;
border-bottom: 5px solid;
border-left: 5px solid transparent;
}
.blog-header {
padding-top: 1em;
}
.blog-title {
margin-top: 30px;
margin-bottom: 0;
font-size: 60px;
font-weight: normal;
}
.blog-description {
font-size: 20px;
color: #999;
}
.blog-main {
font-size: 18px;
line-height: 1.5;
}
.sidebar-module {
padding: 15px;
margin: 0 -15px 15px;
}
.sidebar-module-inset {
padding: 15px;
background-color: #f5f5f5;
border-radius: 4px;
}
.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
margin-bottom: 0;
}
.pager {
margin-bottom: 60px;
text-align: left;
}
.pager > li > a {
width: 140px;
padding: 10px 20px;
text-align: center;
border-radius: 30px;
}
.blog-post {
margin-bottom: 60px;
}
.blog-post-title {
}
.blog-post-meta {
margin-bottom: 20px;
color: #999;
font-size: .8em;
font-style: italic;
}
.blog-footer {
padding: 40px;
color: #999;
text-align: center;
background-color: #f9f9f9;
border-top: 1px solid #e5e5e5;
}
.blog-masthead .logo{
border: 0;
text-shadow: none;
color: transparent;
background: url("/public/images/apple-touch-icon.png");
width: 57px;
height: 57px;
}
.blog-masthead .logo a{
display: block;
overflow: hidden;
text-indent: -200px;
width: 100%;
height: 100%;
}
.profile .photo{
width: 70px;
max-width: 70px;
max-height: 70px;
border-radius: 50%;
margin-right: 10px;
float: left;
display: block;
}
.articles{
list-style: none;
margin: 0;
padding: 0;
}
.articles li{
margin-bottom: .8em;
}
|
web/themes/default/css/default.css
|
html {
-webkit-text-size-adjust: 100%;
font-size: 100%;
}
body {
background-color: white;
color: #666666;
line-height: 1.7857;
font-weight: normal;
font-style: normal;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Helvetica", "Arial", "Verdana", "sans-serif";
}
body, input, textarea, select, button{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga", "dlig", "calt", "kern";
}
h1,h2,h3,h4,h5,h6
, .h1, .h2, .h3, .h4, .h5, .h6{
text-align: left;
color: #111111;
letter-spacing: 1px;
padding: 0;
margin: 0 0 .5em 0;
font-weight: 200;
font-family: "Myriad Set Pro", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
h2{
font-size: 2.5em;
}
p{
margin-top: 1em;
}
.container{
margin-top: 2em;
}
.badge{
font-family: Verdana, sans-serif;
}
@media (min-width: 1200px) {
.container {
width: 970px;
}
}
.blog-masthead {
background-color: #1d1d1d;
height: 1em;
}
.blog-nav-item {
position: relative;
display: inline-block;
padding: 10px;
font-weight: 500;
color: #cdddeb;
}
.blog-nav-item:hover,
.blog-nav-item:focus {
color: #fff;
text-decoration: none;
}
.blog-nav .active {
color: #fff;
}
.blog-nav .active:after {
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 0;
margin-left: -5px;
vertical-align: middle;
content: " ";
border-right: 5px solid transparent;
border-bottom: 5px solid;
border-left: 5px solid transparent;
}
.blog-header {
padding-top: 1em;
}
.blog-title {
margin-top: 30px;
margin-bottom: 0;
font-size: 60px;
font-weight: normal;
}
.blog-description {
font-size: 20px;
color: #999;
}
.blog-main {
font-size: 18px;
line-height: 1.5;
}
.sidebar-module {
padding: 15px;
margin: 0 -15px 15px;
}
.sidebar-module-inset {
padding: 15px;
background-color: #f5f5f5;
border-radius: 4px;
}
.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
margin-bottom: 0;
}
.pager {
margin-bottom: 60px;
text-align: left;
}
.pager > li > a {
width: 140px;
padding: 10px 20px;
text-align: center;
border-radius: 30px;
}
.blog-post {
margin-bottom: 60px;
}
.blog-post-title {
}
.blog-post-meta {
margin-bottom: 20px;
color: #999;
font-size: .8em;
font-style: italic;
}
.blog-footer {
padding: 40px;
color: #999;
text-align: center;
background-color: #f9f9f9;
border-top: 1px solid #e5e5e5;
}
.blog-masthead .logo{
border: 0;
text-shadow: none;
color: transparent;
background: url("/public/images/apple-touch-icon.png");
width: 57px;
height: 57px;
}
.blog-masthead .logo a{
display: block;
overflow: hidden;
text-indent: -200px;
width: 100%;
height: 100%;
}
.profile .photo{
width: 70px;
max-width: 70px;
max-height: 70px;
border-radius: 50%;
margin-right: 10px;
float: left;
display: block;
}
.articles{
list-style: none;
margin: 0;
padding: 0;
}
.articles li{
margin-bottom: .8em;
}
| 0.333612 | 0.083928 |
html, body {width:100%; padding:0; margin:0;}
body {
font: 14px/18px "Times New Roman", Times, serif;
color:#979797;
min-width:1020px;
background: #fff;
}
.ic {border:0;float:right;background:#fff;color:#f00;width:50%;line-height:10px;font-size:10px;margin:-220% 0 0 0;overflow:hidden;padding:0}
.sub-pages {background:url(../images/sub-pages-bg.jpg) center 0 no-repeat #fff; min-height:122px; margin-bottom:38px;}
/***********************************************************************/
a {text-decoration:none; cursor:pointer;text-decoration:none; }
a:hover {text-decoration:none;}
.button-1 {background:#91abb5; color:#fff; font-size:12px; line-height:15px; font-weight:bold; padding:6px 21px 9px 21px; display:inline-block; border-radius:6px;}
.button-1:hover {background:#b92103; }
.button-2 {background:#b92103; color:#fff; font-family: 'Muli', sans-serif; font-size:14px; line-height:18px; text-transform:uppercase; padding:6px 15px 6px 15px; display:inline-block; border-radius:6px;}
.button-2:hover {background:#91abb5; }
.link {color:#937bb8; text-decoration:underline; }
.link:hover {text-decoration:none;}
.link-1 { font-size:14px; line-height:18px; color:#937bb8; text-decoration:underline; display:inline-block; float:right; background:url(../images/link-1.gif) right 7px no-repeat; padding-right:10px; margin-top:6px; }
.link-1:hover {text-decoration:none;}
.clr-1 { color:#1d1d1d;}
.clr-2 { color:#b5b5b5;}
.text-1 {font-weight:bold; font-style:italic; color:#937bb8; font-size:18px; line-height:22px;}
.text-2 {font-weight:bold; color:#b5b5b5;}
.text-3 {font-weight:bold; color:#937bb8;}
.text-4 {font-style:italic;}
.text-5 {font-weight:bold; color:#1b1a1a; font-size:10px; line-height:16px; text-transform:uppercase;}
h2 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#b3b3b3; font-weight:normal; }
h2 span {color:#937bb8;}
.h2-border {border-bottom:#dddddd 1px solid;}
h3 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#937bb8; font-weight:normal; }
h3 strong { font-family: 'PT Sans Narrow', sans-serif; font-size:40px; line-height:54px; font-weight:bold; color:#b3b3b3;}
h4 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#937bb8; font-weight:normal; }
h4 strong { font-family: 'PT Sans Narrow', sans-serif; font-size:48px; line-height:60px; font-weight:bold; color:#b3b3b3; margin-top:-5px; display:inline-block;}
.h4-border {border-bottom:#dddddd 1px solid;}
ul {margin:0; padding:0;list-style-image:none;}
ul.list-1 li {padding:0px 0 10px 15px; line-height:18px; background:url(../images/marker-1.gif) 0 6px no-repeat;}
ul.list-1 li a { font-size:14px; color:#937bb8; line-height:18px; text-decoration:underline;}
ul.list-1 li a:hover {text-decoration:none;}
/******************************************************************/
.clear {clear:both; line-height:0; font-size:0; width:100%;}
.wrapper {width:100%; overflow:hidden; position:relative}
.wrap {overflow:hidden; position:relative}
.extra-wrap {overflow:hidden;}
.fleft {float:left;}
.fright {float:right;}
.img-indent {float:left; margin:0px 10px 0px 0;}
.line-height {line-height:18px;}
.last {margin-right:0px !important; padding-right:0px !important;}
.top-1 {margin-top:31px;}
.top-2 {margin-top:24px;}
.top-3 {margin-top:14px;}
.top-4 {margin-top:20px;}
.top-5 {margin-top:8px;}
.top-6 {margin-top:12px;}
.top-7 {margin-top:24px;}
.top-8 {margin-top:28px;}
.left-1 { margin-left:13px;}
.right-1 {margin-right:20px;}
.bot-0 {padding-bottom:0 !important; margin-bottom:0 !important;}
.pad-0 {padding:0px 0px 0px 0px;}
.p1 {padding-bottom:18px;}
/*********************************header*************************************/
header{ width:1020px; margin:0 auto; position:absolute; top:0; left:50%; margin-left:-510px;}
h1 {display:inline-block; z-index:1111; margin:0 17px 0 34px; position:relative; float:left;}
nav {display:inline-block; z-index:1111; position:relative; float:left;}
ul.menu {margin:0px 0px 0px 0px; display:inline-block;}
ul.menu li {float:left; line-height:24px; margin:0px 13px 0px 0px; }
ul.menu li:hover, ul.menu li.current { background:#fff; }
ul.menu li a {font-size:16px; line-height:24px; color:#fff; font-family: 'PT Sans Narrow', sans-serif; font-weight:bold; display:inline-block; text-transform:uppercase; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); padding:61px 22px 13px 23px; }
ul.menu li a:hover , ul.menu li.current a { color:#000; }
/*********************************content*************************************/
#content {width:960px; margin:0 auto; padding:0px 0px 27px 0; background:url(../images/line.gif) center 0 no-repeat;}
.img-border {border:#dddddd 1px solid;}
.p-border {border-bottom:#dddddd 1px solid; padding-bottom:15px;}
.line-2 {margin:23px 0 0 -8px; background:url(../images/line-2.png) 0 0 no-repeat; width:14px; height:441px; }
.line-3 {margin:28px 0 0 -8px; background:url(../images/line-3.png) 0 0 no-repeat; width:14px; height:461px; }
.line-4 {margin:28px 0 0 -8px; background:url(../images/line-4.png) 0 0 no-repeat; width:14px; height:499px; }
.line-5 {margin:28px 0 0 -18px; background:url(../images/line-5.png) 0 0 no-repeat; width:14px; height:324px; }
.box-1 {overflow:hidden;}
.box-1 .extra-wrap {border-top:#dddddd 1px solid; padding-top:23px;}
.comments {background:#e1e1e1; position:relative; margin-top:14px; padding:18px 12px 27px 16px;}
.comments .comments-corner {position:absolute; background:url(../images/comments-corner.png) 0 0 no-repeat; width:26px; height:24px; top:-24px; left:164px;}
.comments .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; padding-left:24px;}
.comments .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-2 {background:#e1e1e1; position:relative; margin-top:10px; padding:18px 16px 16px 24px; width:190px;color:#b5b5b5; }
.comments-2 .comments-corner {position:absolute; background:url(../images/comments-corner-2.png) 0 0 no-repeat; width:24px; height:26px; bottom:-26px; left:123px;}
.comments-2 i {margin-left:20px;}
.comments-2 .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; }
.comments-2 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-2-name {text-align:right; margin:5px 20px 0 0;}
.box-2 {float:left; width:190px; margin-right:10px;}
.box-2 p {padding-right:15px;}
.lists {overflow:hidden; margin-top:19px; }
.lists ul.list-1 {float:left; width:190px; margin-right:50px;}
.box-3 .fleft { float:left; margin-right:10px; }
.comments-3 {background:#e1e1e1; position:relative; padding:24px 16px 25px 24px; width:190px;color:#b5b5b5;}
.comments-3 .comments-corner {position:absolute; background:url(../images/comments-corner-3.png) 0 0 no-repeat; width:22px; height:22px; bottom:-22px; left:94px;}
.comments-3 i {margin-left:20px;}
.comments-3 .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; }
.comments-3 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-3-name {text-align:right; margin:5px 0px 0 0;}
.box-4 .fleft { float:left; margin-right:10px; width:230px; }
.comments-4 {background:#e1e1e1; position:relative; margin-top:14px; padding:15px 16px 21px 16px;}
.comments-4 .comments-corner {position:absolute; background:url(../images/comments-corner.png) 0 0 no-repeat; width:26px; height:24px; top:-24px; left:124px;}
.comments-4 .comment-1 {background:url(../images/comment-1.png) 0 2px no-repeat; padding-left:24px;}
.comments-4 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
/****************************footer************************/
footer {width:950px; overflow:hidden; margin:0 auto; padding:23px 0px 20px 0; background:url(../images/line.gif) center 0 no-repeat; font-family:Tahoma, Geneva, sans-serif; font-size:12px;}
footer p {float:left; width:320px; padding-top:3px; }
.soc-icons {overflow:hidden; float:right;}
.soc-icons a {display:inline-block; float:left;}
.soc-icons a:hover img {opacity:0.7;}
/**********************form**********************/
dl.adr {margin-top:22px;}
dl.adr dt {}
dl.adr dd.line-height {margin:7px 0 6px 0;}
dl.adr dd span { width:62px; text-align:right; display:block; float:left; margin-right:12px;}
dl.adr dd strong {font-weight:normal;}
dl.adr dd {white-space:nowrap; color:#292929;}
dl.adr dd a {}
dl.adr dd a:hover {}
#form { margin: 19px 0 0px 0px; width:630px; }
#form input {border:#e4e4e4 1px solid; background:#e4e4e4; font-size:14px; font-family:"Times New Roman", Times, serif; color:#292929; padding:3px 10px 5px 10px;outline: medium none;width:536px; height:17px; float:left;}
#form textarea {border:#e4e4e4 1px solid; background:#e4e4e4;font-size:14px; font-family:"Times New Roman", Times, serif; color:#292929; height:127px;outline: medium none;overflow: auto; padding: 3px 0px 0px 10px; width: 546px;resize:none;margin:0px 0 0 0;float:left;}
#form label {position:relative;display: block;min-height:36px;}
.btns {text-align:right; overflow:hidden; width:630px;}
.btns a {display:inline-block; margin:7px 0px 0 22px;}
#form label strong {float:left; text-align:right; display:block; padding-top:5px; line-height:18px; width:58px; font-weight:normal; margin-right:12px; white-space:nowrap; color:#b5b5b5;}
|
web/bundles/proyecto/css/style.css
|
html, body {width:100%; padding:0; margin:0;}
body {
font: 14px/18px "Times New Roman", Times, serif;
color:#979797;
min-width:1020px;
background: #fff;
}
.ic {border:0;float:right;background:#fff;color:#f00;width:50%;line-height:10px;font-size:10px;margin:-220% 0 0 0;overflow:hidden;padding:0}
.sub-pages {background:url(../images/sub-pages-bg.jpg) center 0 no-repeat #fff; min-height:122px; margin-bottom:38px;}
/***********************************************************************/
a {text-decoration:none; cursor:pointer;text-decoration:none; }
a:hover {text-decoration:none;}
.button-1 {background:#91abb5; color:#fff; font-size:12px; line-height:15px; font-weight:bold; padding:6px 21px 9px 21px; display:inline-block; border-radius:6px;}
.button-1:hover {background:#b92103; }
.button-2 {background:#b92103; color:#fff; font-family: 'Muli', sans-serif; font-size:14px; line-height:18px; text-transform:uppercase; padding:6px 15px 6px 15px; display:inline-block; border-radius:6px;}
.button-2:hover {background:#91abb5; }
.link {color:#937bb8; text-decoration:underline; }
.link:hover {text-decoration:none;}
.link-1 { font-size:14px; line-height:18px; color:#937bb8; text-decoration:underline; display:inline-block; float:right; background:url(../images/link-1.gif) right 7px no-repeat; padding-right:10px; margin-top:6px; }
.link-1:hover {text-decoration:none;}
.clr-1 { color:#1d1d1d;}
.clr-2 { color:#b5b5b5;}
.text-1 {font-weight:bold; font-style:italic; color:#937bb8; font-size:18px; line-height:22px;}
.text-2 {font-weight:bold; color:#b5b5b5;}
.text-3 {font-weight:bold; color:#937bb8;}
.text-4 {font-style:italic;}
.text-5 {font-weight:bold; color:#1b1a1a; font-size:10px; line-height:16px; text-transform:uppercase;}
h2 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#b3b3b3; font-weight:normal; }
h2 span {color:#937bb8;}
.h2-border {border-bottom:#dddddd 1px solid;}
h3 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#937bb8; font-weight:normal; }
h3 strong { font-family: 'PT Sans Narrow', sans-serif; font-size:40px; line-height:54px; font-weight:bold; color:#b3b3b3;}
h4 { font-family: 'Great Vibes', cursive; font-size:48px; line-height:60px; color:#937bb8; font-weight:normal; }
h4 strong { font-family: 'PT Sans Narrow', sans-serif; font-size:48px; line-height:60px; font-weight:bold; color:#b3b3b3; margin-top:-5px; display:inline-block;}
.h4-border {border-bottom:#dddddd 1px solid;}
ul {margin:0; padding:0;list-style-image:none;}
ul.list-1 li {padding:0px 0 10px 15px; line-height:18px; background:url(../images/marker-1.gif) 0 6px no-repeat;}
ul.list-1 li a { font-size:14px; color:#937bb8; line-height:18px; text-decoration:underline;}
ul.list-1 li a:hover {text-decoration:none;}
/******************************************************************/
.clear {clear:both; line-height:0; font-size:0; width:100%;}
.wrapper {width:100%; overflow:hidden; position:relative}
.wrap {overflow:hidden; position:relative}
.extra-wrap {overflow:hidden;}
.fleft {float:left;}
.fright {float:right;}
.img-indent {float:left; margin:0px 10px 0px 0;}
.line-height {line-height:18px;}
.last {margin-right:0px !important; padding-right:0px !important;}
.top-1 {margin-top:31px;}
.top-2 {margin-top:24px;}
.top-3 {margin-top:14px;}
.top-4 {margin-top:20px;}
.top-5 {margin-top:8px;}
.top-6 {margin-top:12px;}
.top-7 {margin-top:24px;}
.top-8 {margin-top:28px;}
.left-1 { margin-left:13px;}
.right-1 {margin-right:20px;}
.bot-0 {padding-bottom:0 !important; margin-bottom:0 !important;}
.pad-0 {padding:0px 0px 0px 0px;}
.p1 {padding-bottom:18px;}
/*********************************header*************************************/
header{ width:1020px; margin:0 auto; position:absolute; top:0; left:50%; margin-left:-510px;}
h1 {display:inline-block; z-index:1111; margin:0 17px 0 34px; position:relative; float:left;}
nav {display:inline-block; z-index:1111; position:relative; float:left;}
ul.menu {margin:0px 0px 0px 0px; display:inline-block;}
ul.menu li {float:left; line-height:24px; margin:0px 13px 0px 0px; }
ul.menu li:hover, ul.menu li.current { background:#fff; }
ul.menu li a {font-size:16px; line-height:24px; color:#fff; font-family: 'PT Sans Narrow', sans-serif; font-weight:bold; display:inline-block; text-transform:uppercase; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); padding:61px 22px 13px 23px; }
ul.menu li a:hover , ul.menu li.current a { color:#000; }
/*********************************content*************************************/
#content {width:960px; margin:0 auto; padding:0px 0px 27px 0; background:url(../images/line.gif) center 0 no-repeat;}
.img-border {border:#dddddd 1px solid;}
.p-border {border-bottom:#dddddd 1px solid; padding-bottom:15px;}
.line-2 {margin:23px 0 0 -8px; background:url(../images/line-2.png) 0 0 no-repeat; width:14px; height:441px; }
.line-3 {margin:28px 0 0 -8px; background:url(../images/line-3.png) 0 0 no-repeat; width:14px; height:461px; }
.line-4 {margin:28px 0 0 -8px; background:url(../images/line-4.png) 0 0 no-repeat; width:14px; height:499px; }
.line-5 {margin:28px 0 0 -18px; background:url(../images/line-5.png) 0 0 no-repeat; width:14px; height:324px; }
.box-1 {overflow:hidden;}
.box-1 .extra-wrap {border-top:#dddddd 1px solid; padding-top:23px;}
.comments {background:#e1e1e1; position:relative; margin-top:14px; padding:18px 12px 27px 16px;}
.comments .comments-corner {position:absolute; background:url(../images/comments-corner.png) 0 0 no-repeat; width:26px; height:24px; top:-24px; left:164px;}
.comments .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; padding-left:24px;}
.comments .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-2 {background:#e1e1e1; position:relative; margin-top:10px; padding:18px 16px 16px 24px; width:190px;color:#b5b5b5; }
.comments-2 .comments-corner {position:absolute; background:url(../images/comments-corner-2.png) 0 0 no-repeat; width:24px; height:26px; bottom:-26px; left:123px;}
.comments-2 i {margin-left:20px;}
.comments-2 .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; }
.comments-2 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-2-name {text-align:right; margin:5px 20px 0 0;}
.box-2 {float:left; width:190px; margin-right:10px;}
.box-2 p {padding-right:15px;}
.lists {overflow:hidden; margin-top:19px; }
.lists ul.list-1 {float:left; width:190px; margin-right:50px;}
.box-3 .fleft { float:left; margin-right:10px; }
.comments-3 {background:#e1e1e1; position:relative; padding:24px 16px 25px 24px; width:190px;color:#b5b5b5;}
.comments-3 .comments-corner {position:absolute; background:url(../images/comments-corner-3.png) 0 0 no-repeat; width:22px; height:22px; bottom:-22px; left:94px;}
.comments-3 i {margin-left:20px;}
.comments-3 .comment-1 {background:url(../images/comment-1.png) 0 0 no-repeat; }
.comments-3 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
.comments-3-name {text-align:right; margin:5px 0px 0 0;}
.box-4 .fleft { float:left; margin-right:10px; width:230px; }
.comments-4 {background:#e1e1e1; position:relative; margin-top:14px; padding:15px 16px 21px 16px;}
.comments-4 .comments-corner {position:absolute; background:url(../images/comments-corner.png) 0 0 no-repeat; width:26px; height:24px; top:-24px; left:124px;}
.comments-4 .comment-1 {background:url(../images/comment-1.png) 0 2px no-repeat; padding-left:24px;}
.comments-4 .comment-2 {background:url(../images/comment-2.png) right bottom no-repeat;}
/****************************footer************************/
footer {width:950px; overflow:hidden; margin:0 auto; padding:23px 0px 20px 0; background:url(../images/line.gif) center 0 no-repeat; font-family:Tahoma, Geneva, sans-serif; font-size:12px;}
footer p {float:left; width:320px; padding-top:3px; }
.soc-icons {overflow:hidden; float:right;}
.soc-icons a {display:inline-block; float:left;}
.soc-icons a:hover img {opacity:0.7;}
/**********************form**********************/
dl.adr {margin-top:22px;}
dl.adr dt {}
dl.adr dd.line-height {margin:7px 0 6px 0;}
dl.adr dd span { width:62px; text-align:right; display:block; float:left; margin-right:12px;}
dl.adr dd strong {font-weight:normal;}
dl.adr dd {white-space:nowrap; color:#292929;}
dl.adr dd a {}
dl.adr dd a:hover {}
#form { margin: 19px 0 0px 0px; width:630px; }
#form input {border:#e4e4e4 1px solid; background:#e4e4e4; font-size:14px; font-family:"Times New Roman", Times, serif; color:#292929; padding:3px 10px 5px 10px;outline: medium none;width:536px; height:17px; float:left;}
#form textarea {border:#e4e4e4 1px solid; background:#e4e4e4;font-size:14px; font-family:"Times New Roman", Times, serif; color:#292929; height:127px;outline: medium none;overflow: auto; padding: 3px 0px 0px 10px; width: 546px;resize:none;margin:0px 0 0 0;float:left;}
#form label {position:relative;display: block;min-height:36px;}
.btns {text-align:right; overflow:hidden; width:630px;}
.btns a {display:inline-block; margin:7px 0px 0 22px;}
#form label strong {float:left; text-align:right; display:block; padding-top:5px; line-height:18px; width:58px; font-weight:normal; margin-right:12px; white-space:nowrap; color:#b5b5b5;}
| 0.282493 | 0.077518 |
* v1.0 By Mikhoul
* Based on enile8 Grayed Out Style
*/
@namespace html url(http://www.w3.org/1999/xhtml);
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.bookmark-item[label="about:Home"], .bookmark-item[label="about:home"],
#main-window[stylish-url="about:Home"] #page-proxy-favicon,
#main-window[stylish-url="about:home"] #page-proxy-favicon,
.tabbrowser-tab[label="Mozilla Firefox Start Page"] .tab-icon-image,
#main-window[stylish-url="about:home"] #fav-image {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
@-moz-document url("about:home") {
html {
background: #333;
}
body {
-moz-appearance: none !important;
background: transparent !important;
}
#sync, #snippetContainer, #searchLogoContainer, #searchEngineLogo, #restorePreviousSessionSeparator {
display: none !important;
}
#brandLogo,
#searchSubmit {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
#searchContainer {
-moz-appearance: none !important;
margin: 0 auto !important;
width: 500px !important;
padding: 30px 100px 120px 100px !important;
border-radius: 4px !important;
}
#searchText {
background: #666;
box-shadow: inset 1px 2px 2px rgba(0,0,0,0.5);
color: #aaa;
}
#searchText:hover,
#searchText:focus {
background: #888;
border-color: #666;
color: #222;
}
#launcher { position:absolute; top: 600px; left: 280px; position: fixed }
#launcher {box-shadow: 0px 0px 0px !important; }
#launcher {background: transparent !important; }
#restorePreviousSession { position:absolute;top: 0px; left: 758px;}
.launchButton { color: #E4E4E4 }
.launchButton:hover {padding: 5px 5px; }
.launchButton::before {color: #E4E4E4 }
#brandLogo {
margin-top: -160px !important; }
body.background-5517::before {
display: none !important;
}
}
|
data/usercss/125451.user.css
|
* v1.0 By Mikhoul
* Based on enile8 Grayed Out Style
*/
@namespace html url(http://www.w3.org/1999/xhtml);
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.bookmark-item[label="about:Home"], .bookmark-item[label="about:home"],
#main-window[stylish-url="about:Home"] #page-proxy-favicon,
#main-window[stylish-url="about:home"] #page-proxy-favicon,
.tabbrowser-tab[label="Mozilla Firefox Start Page"] .tab-icon-image,
#main-window[stylish-url="about:home"] #fav-image {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
@-moz-document url("about:home") {
html {
background: #333;
}
body {
-moz-appearance: none !important;
background: transparent !important;
}
#sync, #snippetContainer, #searchLogoContainer, #searchEngineLogo, #restorePreviousSessionSeparator {
display: none !important;
}
#brandLogo,
#searchSubmit {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
#searchContainer {
-moz-appearance: none !important;
margin: 0 auto !important;
width: 500px !important;
padding: 30px 100px 120px 100px !important;
border-radius: 4px !important;
}
#searchText {
background: #666;
box-shadow: inset 1px 2px 2px rgba(0,0,0,0.5);
color: #aaa;
}
#searchText:hover,
#searchText:focus {
background: #888;
border-color: #666;
color: #222;
}
#launcher { position:absolute; top: 600px; left: 280px; position: fixed }
#launcher {box-shadow: 0px 0px 0px !important; }
#launcher {background: transparent !important; }
#restorePreviousSession { position:absolute;top: 0px; left: 758px;}
.launchButton { color: #E4E4E4 }
.launchButton:hover {padding: 5px 5px; }
.launchButton::before {color: #E4E4E4 }
#brandLogo {
margin-top: -160px !important; }
body.background-5517::before {
display: none !important;
}
}
| 0.364438 | 0.097519 |
.main {
background-color: #808080;
background-size: 100%;
height: 600px;
padding-left: 0;
padding-right: 0;
}
.github {
position: absolute;
top: 0;
right: 0;
border: 0;
width: 149px;
height: 149px;
background-image: url('https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png');
}
.logo {
position: absolute;
top: 0;
left: 50px;
font-family: 'Days One', sans-serif;
font-size: 40px;
line-height: 60px;
padding-left: 10px;
padding-right: 10px;
background-color: rgb(255, 255, 255);
background-color: rgba(255, 255, 255, 0.8);
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.logo1 {
color: #000000;
}
.logo2 {
color: #555555;
}
#attribution {
position: absolute;
top: 582px;
right: 0;
padding-left: 5px;
font-size: 12px;
line-height: 18px;
color: #606060;
background-color: rgb(255, 255, 255);
background-color: rgba(255, 255, 255, 0.7);
border-top-left-radius: 6px;
}
#attribution a:link, #attribution a:visited {
color: #000000;
}
#searchform {
margin: 0;
}
.searchbg {
padding-top: 10px;
padding-bottom: 10px;
position: absolute;
top: 175px;
background-color: rgb(32, 32, 32);
background-color: rgba(32, 32, 32, 0.6);
}
.search {
margin: 0px auto;
padding-top: 10px;
padding-bottom: 10px;
color: #ffffff;
font-family: 'Droid Sans', 'Arial', 'Helvetica', sans-serif;
font-size: 18px;
width: 550px;
}
/* ReCaptcha Iframe FIX */
iframe {display:none !important;}
header iframe,
section iframe,
footer iframe,
div iframe { display:inline; }
.faq {
background-color: #f0f0f0;
}
.faq p {
font-family: 'Droid Sans', 'Arial', 'Helvetica', sans-serif;
}
.faq h3 {
margin-top: 0;
padding-left: 10px;
color: #f0f0f0;
background-color: #002775;
font-family: 'Inder', sans-serif;
}
.faq h4 {
font-family: 'Inder', sans-serif;
}
.div-center {
text-align: center;
}
.div-mcenter {
margin: 0px auto;
}
.popover-title {
color: #505050;
font-size: 18px;
}
.popover-content {
color: #ff0000;
font-size: 14px;
}
/* Fixes for iPhone/mobile version */
@media (max-width: 767px) {
body {
padding: 0;
}
}
@media (max-width: 767px) {
.main {
height: 500px;
}
}
@media (max-width: 767px) {
.search {
width: 90%;
}
}
@media (max-width: 767px) {
.searchbg {
top: 70px;
}
}
@media (max-width: 767px) {
.logo {
left: 0;
width: auto;
font-size: 30px;
line-height: 40px;
}
}
|
2014/www/static/css/custom.css
|
.main {
background-color: #808080;
background-size: 100%;
height: 600px;
padding-left: 0;
padding-right: 0;
}
.github {
position: absolute;
top: 0;
right: 0;
border: 0;
width: 149px;
height: 149px;
background-image: url('https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png');
}
.logo {
position: absolute;
top: 0;
left: 50px;
font-family: 'Days One', sans-serif;
font-size: 40px;
line-height: 60px;
padding-left: 10px;
padding-right: 10px;
background-color: rgb(255, 255, 255);
background-color: rgba(255, 255, 255, 0.8);
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.logo1 {
color: #000000;
}
.logo2 {
color: #555555;
}
#attribution {
position: absolute;
top: 582px;
right: 0;
padding-left: 5px;
font-size: 12px;
line-height: 18px;
color: #606060;
background-color: rgb(255, 255, 255);
background-color: rgba(255, 255, 255, 0.7);
border-top-left-radius: 6px;
}
#attribution a:link, #attribution a:visited {
color: #000000;
}
#searchform {
margin: 0;
}
.searchbg {
padding-top: 10px;
padding-bottom: 10px;
position: absolute;
top: 175px;
background-color: rgb(32, 32, 32);
background-color: rgba(32, 32, 32, 0.6);
}
.search {
margin: 0px auto;
padding-top: 10px;
padding-bottom: 10px;
color: #ffffff;
font-family: 'Droid Sans', 'Arial', 'Helvetica', sans-serif;
font-size: 18px;
width: 550px;
}
/* ReCaptcha Iframe FIX */
iframe {display:none !important;}
header iframe,
section iframe,
footer iframe,
div iframe { display:inline; }
.faq {
background-color: #f0f0f0;
}
.faq p {
font-family: 'Droid Sans', 'Arial', 'Helvetica', sans-serif;
}
.faq h3 {
margin-top: 0;
padding-left: 10px;
color: #f0f0f0;
background-color: #002775;
font-family: 'Inder', sans-serif;
}
.faq h4 {
font-family: 'Inder', sans-serif;
}
.div-center {
text-align: center;
}
.div-mcenter {
margin: 0px auto;
}
.popover-title {
color: #505050;
font-size: 18px;
}
.popover-content {
color: #ff0000;
font-size: 14px;
}
/* Fixes for iPhone/mobile version */
@media (max-width: 767px) {
body {
padding: 0;
}
}
@media (max-width: 767px) {
.main {
height: 500px;
}
}
@media (max-width: 767px) {
.search {
width: 90%;
}
}
@media (max-width: 767px) {
.searchbg {
top: 70px;
}
}
@media (max-width: 767px) {
.logo {
left: 0;
width: auto;
font-size: 30px;
line-height: 40px;
}
}
| 0.557002 | 0.104158 |
@charset "utf-8";
/* CSS Document */
/******************************
[Table of Contents]
1. Fonts
2. Body and some general stuff
3. Header
3.1 Top Bar
3.2 Header Main
3.3 Main Navigation
3.4 Page Menu
4. Home
5. Single Product
6. Recently Viewed
7. Brands
8. Newsletter
9. Footer
******************************/
/*********************************
2. Body and some general stuff
*********************************/
*
{
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
div
{
display: block;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
ul
{
list-style: none;
margin-bottom: 0px;
}
.clear
{
clear: both;
}
.clearfix::before, .clearfix::after
{
content: "";
display: table;
}
.clearfix::after
{
clear: both;
}
.clearfix
{
zoom: 1;
}
.float_left
{
float: left;
}
.float_right
{
float: right;
}
.trans_200
{
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.trans_300
{
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.trans_400
{
-webkit-transition: all 400ms ease;
-moz-transition: all 400ms ease;
-ms-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
}
.trans_500
{
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.fill_height
{
height: 100%;
}
.super_container
{
width: 100%;
overflow: hidden;
}
.prlx_parent
{
overflow: hidden;
}
.prlx
{
height: 130% !important;
}
.nopadding
{
padding: 0px !important;
}
.button
{
display: inline-block;
background: #0e8ce4;
border-radius: 5px;
height: 48px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.button a
{
display: block;
font-size: 18px;
font-weight: 400;
line-height: 48px;
color: #FFFFFF;
padding-left: 35px;
padding-right: 35px;
}
.button:hover
{
opacity: 0.8;
}
.parallax-window
{
min-height: 400px;
background: transparent;
}
/*********************************
5. Single Product
*********************************/
.single_product
{
padding-top: 30px;
padding-bottom: 30px;
}
.image_list li
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 165px;
border: solid 1px #e8e8e8;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
margin-bottom: 15px;
cursor: pointer;
padding: 15px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
overflow: hidden;
}
.image_list li:last-child
{
margin-bottom: 0;
}
.image_list li:hover
{
box-shadow: 0px 1px 5px rgba(0,0,0,0.3);
}
.image_list li img
{
max-width: 100%;
}
.image_selected
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: calc(100% + 15px);
height: 525px;
-webkit-transform: translateX(-15px);
-moz-transform: translateX(-15px);
-ms-transform: translateX(-15px);
-o-transform: translateX(-15px);
transform: translateX(-15px);
border: solid 1px #e8e8e8;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
overflow: hidden;
padding: 15px;
}
.image_selected img
{
max-width: 100%;
}
.product_description
{
padding-left: 50px;
}
.product_category
{
font-size: 12px;
color: rgba(0,0,0,0.5);
}
.product_name
{
font-size: 30px;
font-weight: 500;
margin-top: 11px;
}
.product_rating
{
margin-top: 7px;
}
.product_rating i
{
margin-right: 4px;
}
.product_rating i::before
{
font-size: 13px;
}
.product_text
{
margin-top: 27px;
}
.product_text p:last-child
{
margin-bottom: 0px;
}
.order_info
{
margin-top: 23px;
}
.product_quantity
{
width: 182px;
height: 50px;
border: solid 1px #e5e5e5;
border-radius: 5px;
overflow: hidden;
padding-left: 25px;
float: left;
margin-right: 30px;
}
.product_quantity span
{
display: block;
height: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
line-height: 50px;
float: left;
}
.product_quantity input
{
display: block;
width: 30px;
height: 50px;
border: none;
outline: none;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
text-align: left;
padding-left: 9px;
line-height: 50px;
float: left;
}
.quantity_buttons
{
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 29px;
border-left: solid 1px #e5e5e5;
}
.quantity_inc,
.quantity_dec
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 50%;
cursor: pointer;
}
.quantity_control i
{
font-size: 11px;
color: rgba(0,0,0,0.3);
pointer-events: none;
}
.quantity_control:active
{
border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc
{
padding-bottom: 2px;
justify-content: flex-end;
border-top-right-radius: 5px;
}
.quantity_dec
{
padding-top: 2px;
justify-content: flex-start;
border-bottom-right-radius: 5px;
}
.product_color
{
width: 182px;
height: 50px;
border: solid 1px #e5e5e5;
border-radius: 5px;
float: left;
cursor: pointer;
}
.product_color span
{
display: block;
height: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
line-height: 50px;
float: left;
}
.color_dropdown_button
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%;
}
.color_dropdown_button i
{
font-size: 11px;
color: rgba(0,0,0,0.3);
pointer-events: none;
}
.color_mark_container
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 20px;
height: 48px;
float: right;
}
.color_mark
{
width: 20px;
height: 20px;
background: #999999;
border-radius: 50%;
}
.product_color > li
{
position: relative;
width: 100%;
height: 100%;
padding-left: 25px;
padding-right: 49px;
}
.product_color li ul
{
position: absolute;
top: calc(100% + 15px);
right: 0;
padding-top: 15px;
padding-bottom: 15px;
width: auto;
visibility: hidden;
opacity: 0;
box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
background: #FFFFFF;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.product_color > li:hover ul
{
top: 100%;
visibility: visible;
opacity: 1;
}
.product_color li ul li
{
padding-right: 49px;
padding-left: 49px;
padding-top: 10px;
padding-bottom: 10px;
}
.product_color li ul li div
{
margin-left: auto;
}
.product_price
{
display: inline-block;
font-size: 24px;
font-weight: 500;
margin-top: 35px;
clear: left;
}
.button_container
{
margin-top: 43px;
}
.cart_button
{
display: inline-block;
border: none;
font-size: 18px;
font-weight: 400;
line-height: 48px;
color: #FFFFFF;
padding-left: 35px;
padding-right: 35px;
outline: none;
cursor: pointer;
}
.cart_button:focus
{
outline: none;
}
.product_fav
{
display: inline-block;
width: 36px;
height: 36px;
background: #FFFFFF;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
border-radius: 50%;
text-align: center;
cursor: pointer;
margin-left: 36px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.product_fav:hover
{
box-shadow: 0px 1px 5px rgba(0,0,0,0.3);
}
.product_fav i
{
line-height: 36px;
color: #cccccc;
}
.product_fav.active i
{
color: #df3b3b;
}
|
public_html/css/product_styles.css
|
@charset "utf-8";
/* CSS Document */
/******************************
[Table of Contents]
1. Fonts
2. Body and some general stuff
3. Header
3.1 Top Bar
3.2 Header Main
3.3 Main Navigation
3.4 Page Menu
4. Home
5. Single Product
6. Recently Viewed
7. Brands
8. Newsletter
9. Footer
******************************/
/*********************************
2. Body and some general stuff
*********************************/
*
{
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
div
{
display: block;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
ul
{
list-style: none;
margin-bottom: 0px;
}
.clear
{
clear: both;
}
.clearfix::before, .clearfix::after
{
content: "";
display: table;
}
.clearfix::after
{
clear: both;
}
.clearfix
{
zoom: 1;
}
.float_left
{
float: left;
}
.float_right
{
float: right;
}
.trans_200
{
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.trans_300
{
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.trans_400
{
-webkit-transition: all 400ms ease;
-moz-transition: all 400ms ease;
-ms-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
}
.trans_500
{
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.fill_height
{
height: 100%;
}
.super_container
{
width: 100%;
overflow: hidden;
}
.prlx_parent
{
overflow: hidden;
}
.prlx
{
height: 130% !important;
}
.nopadding
{
padding: 0px !important;
}
.button
{
display: inline-block;
background: #0e8ce4;
border-radius: 5px;
height: 48px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.button a
{
display: block;
font-size: 18px;
font-weight: 400;
line-height: 48px;
color: #FFFFFF;
padding-left: 35px;
padding-right: 35px;
}
.button:hover
{
opacity: 0.8;
}
.parallax-window
{
min-height: 400px;
background: transparent;
}
/*********************************
5. Single Product
*********************************/
.single_product
{
padding-top: 30px;
padding-bottom: 30px;
}
.image_list li
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 165px;
border: solid 1px #e8e8e8;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
margin-bottom: 15px;
cursor: pointer;
padding: 15px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
overflow: hidden;
}
.image_list li:last-child
{
margin-bottom: 0;
}
.image_list li:hover
{
box-shadow: 0px 1px 5px rgba(0,0,0,0.3);
}
.image_list li img
{
max-width: 100%;
}
.image_selected
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: calc(100% + 15px);
height: 525px;
-webkit-transform: translateX(-15px);
-moz-transform: translateX(-15px);
-ms-transform: translateX(-15px);
-o-transform: translateX(-15px);
transform: translateX(-15px);
border: solid 1px #e8e8e8;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
overflow: hidden;
padding: 15px;
}
.image_selected img
{
max-width: 100%;
}
.product_description
{
padding-left: 50px;
}
.product_category
{
font-size: 12px;
color: rgba(0,0,0,0.5);
}
.product_name
{
font-size: 30px;
font-weight: 500;
margin-top: 11px;
}
.product_rating
{
margin-top: 7px;
}
.product_rating i
{
margin-right: 4px;
}
.product_rating i::before
{
font-size: 13px;
}
.product_text
{
margin-top: 27px;
}
.product_text p:last-child
{
margin-bottom: 0px;
}
.order_info
{
margin-top: 23px;
}
.product_quantity
{
width: 182px;
height: 50px;
border: solid 1px #e5e5e5;
border-radius: 5px;
overflow: hidden;
padding-left: 25px;
float: left;
margin-right: 30px;
}
.product_quantity span
{
display: block;
height: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
line-height: 50px;
float: left;
}
.product_quantity input
{
display: block;
width: 30px;
height: 50px;
border: none;
outline: none;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
text-align: left;
padding-left: 9px;
line-height: 50px;
float: left;
}
.quantity_buttons
{
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 29px;
border-left: solid 1px #e5e5e5;
}
.quantity_inc,
.quantity_dec
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 50%;
cursor: pointer;
}
.quantity_control i
{
font-size: 11px;
color: rgba(0,0,0,0.3);
pointer-events: none;
}
.quantity_control:active
{
border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc
{
padding-bottom: 2px;
justify-content: flex-end;
border-top-right-radius: 5px;
}
.quantity_dec
{
padding-top: 2px;
justify-content: flex-start;
border-bottom-right-radius: 5px;
}
.product_color
{
width: 182px;
height: 50px;
border: solid 1px #e5e5e5;
border-radius: 5px;
float: left;
cursor: pointer;
}
.product_color span
{
display: block;
height: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(0,0,0,0.5);
line-height: 50px;
float: left;
}
.color_dropdown_button
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%;
}
.color_dropdown_button i
{
font-size: 11px;
color: rgba(0,0,0,0.3);
pointer-events: none;
}
.color_mark_container
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 20px;
height: 48px;
float: right;
}
.color_mark
{
width: 20px;
height: 20px;
background: #999999;
border-radius: 50%;
}
.product_color > li
{
position: relative;
width: 100%;
height: 100%;
padding-left: 25px;
padding-right: 49px;
}
.product_color li ul
{
position: absolute;
top: calc(100% + 15px);
right: 0;
padding-top: 15px;
padding-bottom: 15px;
width: auto;
visibility: hidden;
opacity: 0;
box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
background: #FFFFFF;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.product_color > li:hover ul
{
top: 100%;
visibility: visible;
opacity: 1;
}
.product_color li ul li
{
padding-right: 49px;
padding-left: 49px;
padding-top: 10px;
padding-bottom: 10px;
}
.product_color li ul li div
{
margin-left: auto;
}
.product_price
{
display: inline-block;
font-size: 24px;
font-weight: 500;
margin-top: 35px;
clear: left;
}
.button_container
{
margin-top: 43px;
}
.cart_button
{
display: inline-block;
border: none;
font-size: 18px;
font-weight: 400;
line-height: 48px;
color: #FFFFFF;
padding-left: 35px;
padding-right: 35px;
outline: none;
cursor: pointer;
}
.cart_button:focus
{
outline: none;
}
.product_fav
{
display: inline-block;
width: 36px;
height: 36px;
background: #FFFFFF;
box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
border-radius: 50%;
text-align: center;
cursor: pointer;
margin-left: 36px;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
.product_fav:hover
{
box-shadow: 0px 1px 5px rgba(0,0,0,0.3);
}
.product_fav i
{
line-height: 36px;
color: #cccccc;
}
.product_fav.active i
{
color: #df3b3b;
}
| 0.225417 | 0.032467 |
@-moz-viewport {width: device-width; scale:1;}
@-ms-viewport {width: device-width; scale:1;}
@-o-viewport {width: device-width; scale:1;}
@-webkit-viewport {width: device-width; scale:1;}
@viewport {width: device-width; scale:1;}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0 0 0 0;
padding: 0 0 0 0;
font: normal 100%/1.5 helvetica,sans-serif;
font-size: 16px;
background-image: url("../images/noises.png");
background-repeat: repeat;
}
section {
padding-top: 7%;
margin: 1em;
margin-top: 0;
}
img {
display: block;
margin: 0 auto;
}
header {
background-color: #ffffff;
padding-bottom: 10%;
background: transparent url("../images/landscape.jpg") no-repeat center top;
background-size: cover;
margin: 0;
}
header nav ul {
list-style: none;
margin: 0;
padding:0;
padding-top: 1em;
text-align: center;
}
header nav li {
padding: 0 0 .5em 0;
letter-spacing: 10px;
text-transform: uppercase;
font-size: .7em;
}
header nav li a {
text-decoration: none;
color: #ffffff;
padding-right: 1.5em;
}
header nav li a:hover {
color: #993333;
}
h2 {
letter-spacing: 10px;
font-size: 100%;
text-align: center;
font-size: .9em;
padding-bottom: 2em;
text-transform: uppercase;
color: #ffffff;
}
h3 {
color: #ffffff;
}
p {
font-size: 1em;
color: #ffffff;
margin: 0;
padding-bottom: 2.2em;
}
strong {
color: #ffffff;
background-color: #993333;
}
.logo {
width: 60%;
height: auto;
}
.logo-wrap {
margin: 0;
padding-top: 15%;
}
.fixed-nav {
background-color: #222222;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}
.fixed-nav ul {
padding-top: 0.2em;
}
.about-section{
margin-bottom: 2em;
}
.about-section p {
border-bottom: 5px solid #993333;
}
.work-list {
padding: 5% 0 0 0;
}
.work-list figure {
margin:0;
display:block;
color: #999;
position: relative;
width: 100%;
height: 100%;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 100%;
}
.overlay {
display: block;
position: absolute;
background-color: #993333;
opacity: 0;
width: 100%;
height: 100%;
transition: all 200ms linear;
}
.overlay:hover {
opacity: .8;
}
h4 {
padding: 20% 0 0 0;
color: #ffffff;
font-style: normal;
text-align: center;
}
footer {
background-color: #222222;
padding: 5em;
background: rgba(34, 34, 34, .5);
}
footer nav {
width: 100%;
margin: 0 auto;
}
footer h2 {
color: #ffffff;
}
footer nav ul {
list-style: none;
margin: 0;
padding: 0;
}
footer nav ul li {
display: inline;
width: 17%;
}
footer nav ul li span {
display: none;
}
footer nav a {
width: 3em;
height: 2em;
display: block;
margin: 1.5em auto;
}
.email {
background-image: url("../images/email-dark.svg");
}
.linkedin {
background-image: url("../images/linkedin-dark.svg");
}
.behance {
background-image: url("../images/behance-dark.svg");
}
.vimeo {
background-image: url("../images/vimeo-dark.svg");
}
.email:hover {
background-image: url("../images/email-white.svg");
}
.linkedin:hover {
background-image: url("../images/linkedin-white.svg");
}
.behance:hover {
background-image: url("../images/behance-white.svg");
}
.vimeo:hover {
background-image: url("../images/vimeo-white.svg");
}
@media only screen and (min-width: 20em) {
header nav li {
display: inline-block;
}
}
@media only screen and (min-width: 34em) {
footer nav ul li {
display: inline-block;
width: 30%;
}
}
@media only screen and (min-width: 40em) {
h2 {
text-align: left;
}
h3 {
font-size: 2em;
margin: 0 15% 0 15%;
}
p {
margin: 0 15% 0 15%;
}
section {
padding-top: 7%;
margin: 5em;
margin-top: 0;
}
.logo {
width: 40%;
height: auto;
}
.work-list {
text-align: left;
list-style-type: none;
margin:0px -10px;
padding:0px;
}
.work-list a,
.work-list a:link,
.work-list a:visited {
border: 0px;
color: #000;
font-style:italic;
text-decoration: none;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 49%;
}
footer nav {
width: 60%;
}
}
@media only screen and (min-width: 55em) {
header nav ul {
text-align: right;
}
}
@media only screen and (min-width: 60em) {
.work-list {
text-align: left;
list-style-type: none;
margin:0px -10px;
padding:0px;
}
.work-list a,
.work-list a:link,
.work-list a:visited {
border: 0px;
color: #000;
font-style:italic;
text-decoration: none;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 32.9%;
}
}
@media only screen and (min-width: 80em) {
.logo {
width: 30%;
}
.logo-wrap {
padding-top: 10%;
}
h2{
font-size: 1.2em;
}
h3 {
font-size: 2.5em;
margin: 0 27% 0 27%;
}
p {
margin: 0 27% 0 27%;
font-size: 1.2em;
}
}
@media only screen and (min-width: 80em) {
h4 {
font-size: 1.2em;
}
}
|
css/main.css
|
@-moz-viewport {width: device-width; scale:1;}
@-ms-viewport {width: device-width; scale:1;}
@-o-viewport {width: device-width; scale:1;}
@-webkit-viewport {width: device-width; scale:1;}
@viewport {width: device-width; scale:1;}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0 0 0 0;
padding: 0 0 0 0;
font: normal 100%/1.5 helvetica,sans-serif;
font-size: 16px;
background-image: url("../images/noises.png");
background-repeat: repeat;
}
section {
padding-top: 7%;
margin: 1em;
margin-top: 0;
}
img {
display: block;
margin: 0 auto;
}
header {
background-color: #ffffff;
padding-bottom: 10%;
background: transparent url("../images/landscape.jpg") no-repeat center top;
background-size: cover;
margin: 0;
}
header nav ul {
list-style: none;
margin: 0;
padding:0;
padding-top: 1em;
text-align: center;
}
header nav li {
padding: 0 0 .5em 0;
letter-spacing: 10px;
text-transform: uppercase;
font-size: .7em;
}
header nav li a {
text-decoration: none;
color: #ffffff;
padding-right: 1.5em;
}
header nav li a:hover {
color: #993333;
}
h2 {
letter-spacing: 10px;
font-size: 100%;
text-align: center;
font-size: .9em;
padding-bottom: 2em;
text-transform: uppercase;
color: #ffffff;
}
h3 {
color: #ffffff;
}
p {
font-size: 1em;
color: #ffffff;
margin: 0;
padding-bottom: 2.2em;
}
strong {
color: #ffffff;
background-color: #993333;
}
.logo {
width: 60%;
height: auto;
}
.logo-wrap {
margin: 0;
padding-top: 15%;
}
.fixed-nav {
background-color: #222222;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}
.fixed-nav ul {
padding-top: 0.2em;
}
.about-section{
margin-bottom: 2em;
}
.about-section p {
border-bottom: 5px solid #993333;
}
.work-list {
padding: 5% 0 0 0;
}
.work-list figure {
margin:0;
display:block;
color: #999;
position: relative;
width: 100%;
height: 100%;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 100%;
}
.overlay {
display: block;
position: absolute;
background-color: #993333;
opacity: 0;
width: 100%;
height: 100%;
transition: all 200ms linear;
}
.overlay:hover {
opacity: .8;
}
h4 {
padding: 20% 0 0 0;
color: #ffffff;
font-style: normal;
text-align: center;
}
footer {
background-color: #222222;
padding: 5em;
background: rgba(34, 34, 34, .5);
}
footer nav {
width: 100%;
margin: 0 auto;
}
footer h2 {
color: #ffffff;
}
footer nav ul {
list-style: none;
margin: 0;
padding: 0;
}
footer nav ul li {
display: inline;
width: 17%;
}
footer nav ul li span {
display: none;
}
footer nav a {
width: 3em;
height: 2em;
display: block;
margin: 1.5em auto;
}
.email {
background-image: url("../images/email-dark.svg");
}
.linkedin {
background-image: url("../images/linkedin-dark.svg");
}
.behance {
background-image: url("../images/behance-dark.svg");
}
.vimeo {
background-image: url("../images/vimeo-dark.svg");
}
.email:hover {
background-image: url("../images/email-white.svg");
}
.linkedin:hover {
background-image: url("../images/linkedin-white.svg");
}
.behance:hover {
background-image: url("../images/behance-white.svg");
}
.vimeo:hover {
background-image: url("../images/vimeo-white.svg");
}
@media only screen and (min-width: 20em) {
header nav li {
display: inline-block;
}
}
@media only screen and (min-width: 34em) {
footer nav ul li {
display: inline-block;
width: 30%;
}
}
@media only screen and (min-width: 40em) {
h2 {
text-align: left;
}
h3 {
font-size: 2em;
margin: 0 15% 0 15%;
}
p {
margin: 0 15% 0 15%;
}
section {
padding-top: 7%;
margin: 5em;
margin-top: 0;
}
.logo {
width: 40%;
height: auto;
}
.work-list {
text-align: left;
list-style-type: none;
margin:0px -10px;
padding:0px;
}
.work-list a,
.work-list a:link,
.work-list a:visited {
border: 0px;
color: #000;
font-style:italic;
text-decoration: none;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 49%;
}
footer nav {
width: 60%;
}
}
@media only screen and (min-width: 55em) {
header nav ul {
text-align: right;
}
}
@media only screen and (min-width: 60em) {
.work-list {
text-align: left;
list-style-type: none;
margin:0px -10px;
padding:0px;
}
.work-list a,
.work-list a:link,
.work-list a:visited {
border: 0px;
color: #000;
font-style:italic;
text-decoration: none;
}
.work-list img {
display:block;
width: 100%;
}
.work-list li {
display:inline-block;
width: 32.9%;
}
}
@media only screen and (min-width: 80em) {
.logo {
width: 30%;
}
.logo-wrap {
padding-top: 10%;
}
h2{
font-size: 1.2em;
}
h3 {
font-size: 2.5em;
margin: 0 27% 0 27%;
}
p {
margin: 0 27% 0 27%;
font-size: 1.2em;
}
}
@media only screen and (min-width: 80em) {
h4 {
font-size: 1.2em;
}
}
| 0.234319 | 0.071591 |
:host {
background-color: #00162b;
flex: 1 45%;
padding: 5px;
margin: 5px;
box-sizing: border-box;
}
:host.error {
background-color: #F85050;
}
:host.error .messages {
background-color: #FF0000 !important;
}
.header {
/* background-color: lightsalmon; */
padding: 10px;
width: 100%;
box-sizing: border-box;
}
.header h3 {
margin: 0;
}
.error {
background-color: red;
width: 100%;
padding: 10px;
box-sizing: border-box;
margin-bottom: 10px;
}
.content {
/* background-color: limegreen; */
width: 100%;
display: flex;
}
.content .config {
/* background-color: hotpink; */
flex: 1;
}
.content .config .actions {
margin: 5px;
text-align: center;
}
.content .config .settings textarea {
box-sizing: border-box;
font-family: Consolas, monaco, monospace;
width: 100%;
height: 130px;
font-size: 10px;
border: none;
outline: none;
}
.content .config .options {
display: inline-block;
}
.content .config .options span {
vertical-align: middle;
font-size: 12px;
}
.content .config .options input {
vertical-align: middle;
}
.content .messages {
/* background-color: indigo; */
min-height: 100px;
flex: 1.6;
margin-left: 5px;
background-color: #001F3F;
font-size: 10px;
}
div.messages li.msg-error {
color: red;
font-weight: bold;
}
.content .messages .scroll {
height: 200px;
overflow-y: auto;
}
.content .messages .scroll ol {
padding-left: 22px;
}
.footer {
/* background-color: magenta; */
width: 100%;
box-sizing: border-box;
text-align: right;
padding: 5px;
font-size: 10px;
}
.footer .label {
font-weight: bold;
color: #FFFF63;
}
|
src/KafkaLearning.Web/ClientApp/src/app/listener/listener.component.css
|
:host {
background-color: #00162b;
flex: 1 45%;
padding: 5px;
margin: 5px;
box-sizing: border-box;
}
:host.error {
background-color: #F85050;
}
:host.error .messages {
background-color: #FF0000 !important;
}
.header {
/* background-color: lightsalmon; */
padding: 10px;
width: 100%;
box-sizing: border-box;
}
.header h3 {
margin: 0;
}
.error {
background-color: red;
width: 100%;
padding: 10px;
box-sizing: border-box;
margin-bottom: 10px;
}
.content {
/* background-color: limegreen; */
width: 100%;
display: flex;
}
.content .config {
/* background-color: hotpink; */
flex: 1;
}
.content .config .actions {
margin: 5px;
text-align: center;
}
.content .config .settings textarea {
box-sizing: border-box;
font-family: Consolas, monaco, monospace;
width: 100%;
height: 130px;
font-size: 10px;
border: none;
outline: none;
}
.content .config .options {
display: inline-block;
}
.content .config .options span {
vertical-align: middle;
font-size: 12px;
}
.content .config .options input {
vertical-align: middle;
}
.content .messages {
/* background-color: indigo; */
min-height: 100px;
flex: 1.6;
margin-left: 5px;
background-color: #001F3F;
font-size: 10px;
}
div.messages li.msg-error {
color: red;
font-weight: bold;
}
.content .messages .scroll {
height: 200px;
overflow-y: auto;
}
.content .messages .scroll ol {
padding-left: 22px;
}
.footer {
/* background-color: magenta; */
width: 100%;
box-sizing: border-box;
text-align: right;
padding: 5px;
font-size: 10px;
}
.footer .label {
font-weight: bold;
color: #FFFF63;
}
| 0.579876 | 0.164382 |
@import "../common/index.css";
@import "../common/iconfont/icons.css";
@-webkit-keyframes rbtFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes rbtFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes rbtFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes rbtFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.rbt-drawer {
width: 0;
height: 100%;
position: fixed;
z-index: 1000;
overflow: hidden;
-webkit-overflow-scrolling: touch;
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.25s, width 0s ease 0.25s;
}
.rbt-drawer * {
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.25s cubic-bezier(0.7, 0.3, 0.1, 1);
-webkit-tap-highlight-color: transparent;
}
.rbt-drawer-wrap {
position: fixed;
width: 100%;
height: 100%;
}
.rbt-drawer-mask {
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.45);
outline: 0;
position: fixed;
transition: opacity 0.25s linear, height 0s ease 0.25s;
pointer-events: none;
opacity: 0;
}
.rbt-drawer-open .rbt-drawer-mask {
height: 100%;
opacity: 1;
transition: none;
-webkit-animation: rbtFadeIn 0.25s ease;
animation: rbtFadeIn 0.25s ease;
pointer-events: auto;
}
.rbt-drawer-close .rbt-drawer-mask {
-webkit-animation: rbtFadeOut 0.25s ease-in-out;
animation: rbtFadeOut 0.25s ease-in-out;
}
.rbt-drawer-top,
.rbt-drawer-bottom {
left: 0;
width: 100%;
height: 0%;
}
.rbt-drawer-top .rbt-drawer-wrap,
.rbt-drawer-bottom .rbt-drawer-wrap {
width: 100%;
}
.rbt-drawer-top.rbt-drawer-open,
.rbt-drawer-bottom.rbt-drawer-open {
height: 100%;
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.rbt-drawer-top {
top: 0;
}
.rbt-drawer-top .rbt-drawer-wrap {
top: 0;
}
.rbt-drawer-top.rbt-drawer-open .rbt-drawer-wrap {
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-bottom {
bottom: 0;
}
.rbt-drawer-bottom .rbt-drawer-wrap {
bottom: 0;
}
.rbt-drawer-bottom.rbt-drawer-open .rbt-drawer-wrap {
box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-right,
.rbt-drawer-left {
top: 0;
width: 0;
height: 100%;
}
.rbt-drawer-right .rbt-drawer-wrap,
.rbt-drawer-left .rbt-drawer-wrap {
height: 100%;
}
.rbt-drawer-right.rbt-drawer-open,
.rbt-drawer-left.rbt-drawer-open {
width: 100%;
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.rbt-drawer-right {
right: 0;
}
.rbt-drawer-right .rbt-drawer-wrap {
right: 0;
}
.rbt-drawer-right .rbt-drawer-open .rbt-drawer-wrap {
box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-left {
left: 0;
}
.rbt-drawer-left .rbt-drawer-wrap {
left: 0;
}
.rbt-drawer-content {
width: 100%;
height: 100%;
position: relative;
z-index: 1;
overflow: auto;
background-color: #fff;
background-clip: padding-box;
border: 0;
}
.rbt-drawer-wrap-content {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
width: 100%;
height: 100%;
}
.rbt-drawer-close {
z-index: 1;
font-size: 14px;
position: absolute;
right: 8px;
top: 8px;
overflow: hidden;
cursor: pointer;
}
.rbt-drawer-close .rbt-icon-md-close {
font-size: 20px;
color: #ccc;
transition: color 0.25s ease;
position: relative;
top: 5px;
}
.rbt-drawer-close .rbt-icon-md-close:hover {
color: #55585e;
}
.rbt-drawer-header {
position: relative;
padding: 16px;
border-bottom: 1px solid #e8eaec;
}
.rbt-drawer-title {
display: inline-block;
color: #2c3e50;
font-weight: 500;
font-size: 16px;
line-height: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.rbt-drawer-body {
height: calc(100% - 51px);
flex-grow: 1;
padding: 16px;
overflow: auto;
font-size: 14px;
line-height: 1.5715;
word-wrap: break-word;
}
.rbt-drawer-footer {
flex-shrink: 0;
padding: 10px;
border-top: 1px solid #e8eaec;
}
|
src/style/components/drawer.css
|
@import "../common/index.css";
@import "../common/iconfont/icons.css";
@-webkit-keyframes rbtFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes rbtFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes rbtFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes rbtFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.rbt-drawer {
width: 0;
height: 100%;
position: fixed;
z-index: 1000;
overflow: hidden;
-webkit-overflow-scrolling: touch;
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.25s, width 0s ease 0.25s;
}
.rbt-drawer * {
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.25s cubic-bezier(0.7, 0.3, 0.1, 1);
-webkit-tap-highlight-color: transparent;
}
.rbt-drawer-wrap {
position: fixed;
width: 100%;
height: 100%;
}
.rbt-drawer-mask {
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.45);
outline: 0;
position: fixed;
transition: opacity 0.25s linear, height 0s ease 0.25s;
pointer-events: none;
opacity: 0;
}
.rbt-drawer-open .rbt-drawer-mask {
height: 100%;
opacity: 1;
transition: none;
-webkit-animation: rbtFadeIn 0.25s ease;
animation: rbtFadeIn 0.25s ease;
pointer-events: auto;
}
.rbt-drawer-close .rbt-drawer-mask {
-webkit-animation: rbtFadeOut 0.25s ease-in-out;
animation: rbtFadeOut 0.25s ease-in-out;
}
.rbt-drawer-top,
.rbt-drawer-bottom {
left: 0;
width: 100%;
height: 0%;
}
.rbt-drawer-top .rbt-drawer-wrap,
.rbt-drawer-bottom .rbt-drawer-wrap {
width: 100%;
}
.rbt-drawer-top.rbt-drawer-open,
.rbt-drawer-bottom.rbt-drawer-open {
height: 100%;
transition: transform 0.4s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.rbt-drawer-top {
top: 0;
}
.rbt-drawer-top .rbt-drawer-wrap {
top: 0;
}
.rbt-drawer-top.rbt-drawer-open .rbt-drawer-wrap {
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-bottom {
bottom: 0;
}
.rbt-drawer-bottom .rbt-drawer-wrap {
bottom: 0;
}
.rbt-drawer-bottom.rbt-drawer-open .rbt-drawer-wrap {
box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-right,
.rbt-drawer-left {
top: 0;
width: 0;
height: 100%;
}
.rbt-drawer-right .rbt-drawer-wrap,
.rbt-drawer-left .rbt-drawer-wrap {
height: 100%;
}
.rbt-drawer-right.rbt-drawer-open,
.rbt-drawer-left.rbt-drawer-open {
width: 100%;
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.rbt-drawer-right {
right: 0;
}
.rbt-drawer-right .rbt-drawer-wrap {
right: 0;
}
.rbt-drawer-right .rbt-drawer-open .rbt-drawer-wrap {
box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.rbt-drawer-left {
left: 0;
}
.rbt-drawer-left .rbt-drawer-wrap {
left: 0;
}
.rbt-drawer-content {
width: 100%;
height: 100%;
position: relative;
z-index: 1;
overflow: auto;
background-color: #fff;
background-clip: padding-box;
border: 0;
}
.rbt-drawer-wrap-content {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
width: 100%;
height: 100%;
}
.rbt-drawer-close {
z-index: 1;
font-size: 14px;
position: absolute;
right: 8px;
top: 8px;
overflow: hidden;
cursor: pointer;
}
.rbt-drawer-close .rbt-icon-md-close {
font-size: 20px;
color: #ccc;
transition: color 0.25s ease;
position: relative;
top: 5px;
}
.rbt-drawer-close .rbt-icon-md-close:hover {
color: #55585e;
}
.rbt-drawer-header {
position: relative;
padding: 16px;
border-bottom: 1px solid #e8eaec;
}
.rbt-drawer-title {
display: inline-block;
color: #2c3e50;
font-weight: 500;
font-size: 16px;
line-height: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.rbt-drawer-body {
height: calc(100% - 51px);
flex-grow: 1;
padding: 16px;
overflow: auto;
font-size: 14px;
line-height: 1.5715;
word-wrap: break-word;
}
.rbt-drawer-footer {
flex-shrink: 0;
padding: 10px;
border-top: 1px solid #e8eaec;
}
| 0.387343 | 0.078325 |
body{
background: #F1F1F1;
}
.addthis-settings-page{
font-weight: 200;
margin: 0;
font-family: roboto, sans-serif;
color: #3E3F3F;
font-weight: 300;
font-size: 16px;
line-height: 1.5;
}
.addthis-settings-page label,
.addthis-settings-page p{
color: #3E3F3F;
font-weight: 300;
font-size: 16px;
}
.addthis-settings-page h1{
font-weight: 100;
font-size: 36px;
}
.at-tool-new {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.at-tool-new h1 {
font-size: 23px;
font-weight: 400;
margin: 0;
padding: 9px 0 4px;
line-height: 29px;
}
.addthis-settings-page h2{
font-weight: 100;
font-size: 24px;
}
.addthis-settings-page label.strong,
.addthis-settings-page h3{
font-weight: 500;
font-size: 16px;
}
.addthis-settings-page h4{
font-weight: 500;
font-size: 10px;
}
.addthis-settings-page a:link,
.addthis-settings-page a:visited{
color: #359af9;
text-decoration: none;
}
.at-tool-new a.page-title-action {
margin-left: 4px;
padding: 4px 8px;
position: relative;
top: -3px;
text-decoration: none;
border: none;
border: 1px solid #ccc;
-webkit-border-radius: 2px;
border-radius: 2px;
background: #f7f7f7;
text-shadow: none;
font-weight: 600;
font-size: 13px;
line-height: normal;
color: #0073aa;
cursor: pointer;
outline: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.at-tool-new a.page-title-action:hover {
color: #ffffff !important;
}
.addthis-settings-page [ng-click] {
cursor: pointer;
}
.addthis-settings-page .pull-left{
float: left;
}
.addthis-settings-page .pull-right{
float: right;
}
.addthis-settings-page .transclude-here,
.addthis-settings-page div.input-description {
margin: 10px 0;
}
.addthis-settings-page .header-container{
margin: 0 0 0 -20px;
position: relative;
}
.addthis-settings-page .header-logo svg{
padding-left: calc(50% - 85px);
padding-right: calc(50% - 85px);
display:block;
position: absolute;
top: 50px;
}
.at-tool-new .share-service-icon-pointer-event-cover-hack {
width: 32px!important;
height: 32px!important;
position: absolute;
}
.at-tool-new #screen-meta-links {
position: absolute;
top: 0;
right: 0;
}
.at-tool-new .tablenav {
margin: 6px 0 4px;
}
.at-tool-new .tablenav-pages {
margin-top: 0px;
}
.at-tool-new .tool-image {
float: left;
margin-right: 10px;
}
.at-tool-new .tool-image img {
border: 1px solid #dddddd;
max-width: 80px;
}
.at-tool-new a {
color: #49a5d8 !important;
}
.at-tool-new .tool-left {
width: 81%;
float: left;
margin-top: 20px;
box-sizing: border-box;
padding-right: 20px;
}
.at-tool-new .tool-right {
width: 19%;
float: left;
margin-top: 20px;
box-sizing: border-box;
}
.at-tool-new .tool-right img{
width: 100%;
max-width: 100%;
}
.at-tool-new .tool-right .sidebar-review {
padding: 21px;
box-sizing: border-box;
margin-top: 10px;
color: #fff;
text-align: center;
background: #202135;
background: -moz-linear-gradient(top, #202135 0%, #403d8e 100%);
background: -webkit-linear-gradient(top, #202135 0%,#403d8e 100%);
background: linear-gradient(to bottom, #202135 0%,#403d8e 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#202135', endColorstr='#403d8e',GradientType=0 );
}
.at-tool-new .tool-right .sidebar-review h2 {
color: #fff;
font-weight: 400;
margin: 0 0 20px 0;
font-size: 29px;
}
.at-tool-new .tool-right .sidebar-review .h2-lengthy {
color: #fff;
font-weight: 400;
margin: 0 0 20px 0;
font-size: 22px;
}
.at-tool-new .tool-right .sidebar-review .link-btn {
color: #fff!important;
font-weight: 400;
font-size: 16px;
display: inline-block;
border: 2px solid #fff;
padding: 5px 10px;
margin: 0 5px 10px;
border-radius: 5px;
transition: all .2s;
}
.at-tool-new .tool-right .sidebar-review .link-btn:hover {
color: #353677 !important;
border: 2px solid #fff;
background-color: #fff;
transition: all 0.2s;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide {
display: block;
width: 70%;
font-size: 17px;
margin: 0px auto 10px;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide-noborder {
border: none;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide-noborder:hover {
border: none;
background-color: transparent;
color: #fff !important;
text-decoration: underline;
}
.at-tool-new .tool-right .sidebar-callout {
border: 1px solid #e5e5e5;
background-color: #ffffff;
padding: 14px;
margin-top: 15px;
font-size: 14px;
}
.at-tool-new .tool-right .sidebar-callout p {
font-size: 13px;
color: #6b6b6b;
margin-top: -10px;
}
.at-tool-new .tool-right .sidebar-callout .feedback {
color: #000;
font-size: 12px;
}
.at-tool-new .tool-right .sidebar-callout .feedback a {
color: #000;
font-size: 12px;
display: inline-block;
}
.at-tool-new .tool-right .sidebar-callout h2 {
margin-top: 0;
margin-bottom: 20px;
font-weight: bold;
font-size: 14px;
}
.at-tool-new .tool-right .sidebar-callout a {
display: block;
text-decoration: underline;
margin-bottom: 7px;
}
.at-tool-new .tool-right .sidebar-callout a:hover {
text-decoration: none;
}
.at-tool-new .tool-grid-container {
margin-top: 35px;
}
.at-tool-new .error-message {
color: #ff0000;
font-style: italic;
font-weight: 300;
font-size: 13px;
}
.at-tool-new .shortcode-container {
margin-top: 10px;
}
.at-tool-new .shortcode-container .shortcode-blurb {
font-style: italic;
color: #4f4f4f;
font-size: 13px;
display: block;
margin-bottom: 7px;
}
.at-tool-new .shortcode-container .shortcode-code {
background-color: #0084bc;
display: block;
padding: 6px;
color: white;
font-size: 12px;
font-family: "Lucida Console", Monaco, monospace;
}
.at-tool-new .tool-container {
width: 25%;
float: left;
margin-right: 15px;
margin-bottom: 15px;
}
.at-tool-new .tool-container img {
width: 99.6%;
max-width: 100%;
border-left: 1px solid #e5e5e5;
border-top: 1px solid #e5e5e5;
border-right: 1px solid #e5e5e5;
margin-bottom: -6px;
}
.at-tool-new .tool-container .tool-title {
background-color: #f9f9f9;
padding: 13px;
font-size: 18px;
font-weight: bold;
color: #222629;
border: 1px solid #e5e5e5;
}
.at-tool-new .tool-container .tool-title a {
color: #5e5e5e !important;
font-weight: 100;
float: right;
margin-top: -2px;
}
.at-tool-new .postbox {
min-width: 100%;
}
.at-tool-new .postbox .inside {
overflow: hidden;
}
.at-tool-new .postbox .inside h3 {
margin-bottom: 0px;
}
.at-tool-new .postbox .inside label {
margin-top: 10px;
}
.at-tool-new .postbox .inside .tool-positions {
margin-right: 25px;
margin-bottom: 15px;
}
.at-tool-new .postbox .inside,
.at-tool-new .postbox .inside p,
.at-tool-new .postbox .inside label {
font-size: 14px;
}
.at-tool-new .postbox h2 {
font-size: 14px;
padding: 8px 12px;
margin: 0;
line-height: 1.4;
font-weight: 600;
}
.at-tool-new #submitdiv .inside {
margin: 0;
padding: 0;
}
.at-tool-new div.mce-toolbar-grp {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
padding: 20px;
}
.at-tool-new .wp-editor-container {
border: none;
}
.at-tool-new .wp-editor-tabs {
float: left;
margin-left: 10px;
margin-right: -10px;
}
.at-tool-new .filter-active-inactive {
font-size: 14px;
margin-bottom: 15px;
}
.at-tool-new .filter-active-inactive .active {
color: #000000 !important;
font-weight: bold;
}
.at-tool-new .button-disabled {
cursor: not-allowed;
}
.at-tool-new .msg-deleted {
padding: 6px 10px;
margin-top: 10px;
font-size: 13px;
font-weight: bold;
border: 1px solid #e5e5e5;
background-color: #fff;
border-left: 4px solid #46b451;
}
.at-tool-new .delete {
display: inline-block;
width: 14px;
float: right;
margin-top: 2px;
}
.at-tool-new .add svg .background {
fill: #3E3F3F !important;
}
.at-tool-new .add {
display: inline-block;
width: 14px;
float: right;
margin-top: 2px;
}
.at-tool-new .msg-deleted .social-delete {
margin-top: 2px;
}
.at-tool-new .inside-grey {
background-color: #f9f9f9;
margin: 0;
color: #646464;
padding: 1px 20px 20px;
}
.at-tool-new .inside-grey .addthis-checkbox-label {
display: inline-block;
margin: 10px 0 0px;
}
.at-tool-new .inside-grey strong {
color: #646464;
}
.at-tool-new .inside-grey h3 {
color: #282828;
}
.at-tool-new .settings-subsetting {
margin-top: 10px;
margin-left: 24px;
margin-bottom: 15px;
}
.at-tool-new .inside-grey select {
min-width: 10%;
margin-top: 5px;
}
.at-tool-new .inside-grey small {
color: #aeaeae;
}
.at-tool-new .inside-grey input[type=number] {
min-width: 6%;
max-width: 6%;
margin-top: 5px;
padding: 4.5px;
}
.at-tool-new .inside-grey input[type=text] {
min-width: 10%;
margin-top: 5px;
padding: 4.5px;
}
.at-tool-new .select-sm {
margin-left: 6px;
min-width: 5% !important;
}
.at-tool-new .sidebar-bg {
margin-top: 10px;
}
.at-tool-new .sidebar-bg .label-bg {
display: inline-block;
margin-left: 7px;
margin-top: 1px;
}
.at-tool-new .social-addmore {
width: 202px;
color: white !important;
text-align: center;
}
.at-tool-new .select-your-own {
border: 1px solid #dddddd;
width: 200px;
color: #5a5a5a;
font-size: 13px;
margin-bottom: 5px;
}
.at-tool-new .social-add-more .select-your-own {
border: none;
width: 100%;
color: #5a5a5a;
font-size: 13px;
margin-bottom: 5px;
}
.at-tool-new .select-your-own ul {
margin: 0;
padding: 0;
list-style: none;
}
.at-tool-new .select-your-own ul li {
margin: 0;
padding: 7px;
border-bottom: 1px solid #dddddd;
overflow: hidden;
line-height: 29px;
}
.at-tool-new .social-add-more .select-your-own ul li {
border-bottom: none;
}
.at-tool-new .select-your-own .at-icon-wrapper {
width: 32px !important;
height: 32px !important;
float: left;
margin-right: 10px;
}
.at-tool-new .select-your-own .at-icon-wrapper svg {
width: 32px !important;
height: 32px !important;
}
.at-tool-new .select-your-own ul li:last-of-type {
border-bottom: none;
}
.at-tool-new .social-delete {
float: right;
width: 15px;
height: 15px;
background-color: #747579;
color: white;
border-radius: 50%;
line-height: 14px;
font-weight: 700;
text-indent: 4px;
font-size: 10px;
display: inline-block;
margin-top: 7px;
cursor: pointer;
}
.at-tool-new .select-your-own .social-add {
float: right;
width: 15px;
height: 15px;
background-color: #747579;
color: white;
border-radius: 50%;
line-height: 14px;
font-weight: 700;
text-indent: 4.1px;
font-size: 11px;
display: inline-block;
margin-top: 7px;
cursor: pointer;
}
.at-tool-new .select-your-own .social-delete:hover {
background-color: #4d4d50;
}
.at-tool-new .at-tool-overlay {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 9999;
top: 0;
left: 0;
}
.at-tool-new .social-add-more {
position: fixed;
left: 50%;
top: 7%;
transform: translateX(-50%);
width: 280px;
height: 530px;
background-color: #f9f9f9;
z-index: 99999;
overflow-y: scroll;
overflow-x: hidden;
border: 1px solid #ebebed;
}
.at-tool-new .social-add-more-header {
font-size: 12px;
font-weight: bold;
color: #28292b;
padding: 10px;
border-bottom: 1px solid #ebebed;
}
.at-tool-new .social-add-more-close {
display: inline-block;
float: right;
font-weight: bold;
color: #545454 !important;
font-family: verdana;
}
.at-tool-new .social-add-more-close a {
color: #545454 !important;
}
.at-tool-new #social-add-more-search-input {
width: 100% !important;
border-radius: 0px !important;
border: none !important;
font-size: 12px;
padding: 10px;
background-color: #ffffff;
margin-top: -1px;
background-image: url('http://localhost:3000/frontend/src/images/icon-search.png');
background-repeat: no-repeat;
background-position: 96% 50%
}
/* MEDIA QUERIES */
@media screen and (max-width: 599px) {
.addthis-settings-page .header-logo svg{
top: 46px;
}
}
.addthis-settings-page pre{
text-align: left;
background-color: #3E3F3F;
color: #FFFFFF;
padding: 10px;
font-family: Courier, monospace;
border: 1px solid #e2e5e8;
border-radius: 2px;
margin: 20px 20px 20px 0;
}
.addthis-settings-page .delete svg .background {
fill: #3E3F3F
}
.addthis-settings-page .delete svg .symbol,
.addthis-settings-page .add svg .symbol,
.addthis-settings-page .up svg .symbol,
.addthis-settings-page .down svg .symbol {
stroke: #FFFFFF;
}
.addthis-settings-page .add svg .background {
fill: #7ED321;
}
.addthis-settings-page .add svg {
transform: rotate(45deg);
}
.addthis-settings-page .up svg .background,
.addthis-settings-page .down svg .background {
fill: #0088F7;
}
.addthis-settings-page .down svg {
transform: rotate(180deg);
fill: #0088F7;
}
.addthis-settings-page input[type=checkbox] {
padding: 0;
margin: 0;
}
.at-tool-new input[type=checkbox] {
margin: 0 0 0 8px;
}
|
www/wp-content/plugins/addthis/frontend/src/css/admin/general.css
|
body{
background: #F1F1F1;
}
.addthis-settings-page{
font-weight: 200;
margin: 0;
font-family: roboto, sans-serif;
color: #3E3F3F;
font-weight: 300;
font-size: 16px;
line-height: 1.5;
}
.addthis-settings-page label,
.addthis-settings-page p{
color: #3E3F3F;
font-weight: 300;
font-size: 16px;
}
.addthis-settings-page h1{
font-weight: 100;
font-size: 36px;
}
.at-tool-new {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.at-tool-new h1 {
font-size: 23px;
font-weight: 400;
margin: 0;
padding: 9px 0 4px;
line-height: 29px;
}
.addthis-settings-page h2{
font-weight: 100;
font-size: 24px;
}
.addthis-settings-page label.strong,
.addthis-settings-page h3{
font-weight: 500;
font-size: 16px;
}
.addthis-settings-page h4{
font-weight: 500;
font-size: 10px;
}
.addthis-settings-page a:link,
.addthis-settings-page a:visited{
color: #359af9;
text-decoration: none;
}
.at-tool-new a.page-title-action {
margin-left: 4px;
padding: 4px 8px;
position: relative;
top: -3px;
text-decoration: none;
border: none;
border: 1px solid #ccc;
-webkit-border-radius: 2px;
border-radius: 2px;
background: #f7f7f7;
text-shadow: none;
font-weight: 600;
font-size: 13px;
line-height: normal;
color: #0073aa;
cursor: pointer;
outline: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.at-tool-new a.page-title-action:hover {
color: #ffffff !important;
}
.addthis-settings-page [ng-click] {
cursor: pointer;
}
.addthis-settings-page .pull-left{
float: left;
}
.addthis-settings-page .pull-right{
float: right;
}
.addthis-settings-page .transclude-here,
.addthis-settings-page div.input-description {
margin: 10px 0;
}
.addthis-settings-page .header-container{
margin: 0 0 0 -20px;
position: relative;
}
.addthis-settings-page .header-logo svg{
padding-left: calc(50% - 85px);
padding-right: calc(50% - 85px);
display:block;
position: absolute;
top: 50px;
}
.at-tool-new .share-service-icon-pointer-event-cover-hack {
width: 32px!important;
height: 32px!important;
position: absolute;
}
.at-tool-new #screen-meta-links {
position: absolute;
top: 0;
right: 0;
}
.at-tool-new .tablenav {
margin: 6px 0 4px;
}
.at-tool-new .tablenav-pages {
margin-top: 0px;
}
.at-tool-new .tool-image {
float: left;
margin-right: 10px;
}
.at-tool-new .tool-image img {
border: 1px solid #dddddd;
max-width: 80px;
}
.at-tool-new a {
color: #49a5d8 !important;
}
.at-tool-new .tool-left {
width: 81%;
float: left;
margin-top: 20px;
box-sizing: border-box;
padding-right: 20px;
}
.at-tool-new .tool-right {
width: 19%;
float: left;
margin-top: 20px;
box-sizing: border-box;
}
.at-tool-new .tool-right img{
width: 100%;
max-width: 100%;
}
.at-tool-new .tool-right .sidebar-review {
padding: 21px;
box-sizing: border-box;
margin-top: 10px;
color: #fff;
text-align: center;
background: #202135;
background: -moz-linear-gradient(top, #202135 0%, #403d8e 100%);
background: -webkit-linear-gradient(top, #202135 0%,#403d8e 100%);
background: linear-gradient(to bottom, #202135 0%,#403d8e 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#202135', endColorstr='#403d8e',GradientType=0 );
}
.at-tool-new .tool-right .sidebar-review h2 {
color: #fff;
font-weight: 400;
margin: 0 0 20px 0;
font-size: 29px;
}
.at-tool-new .tool-right .sidebar-review .h2-lengthy {
color: #fff;
font-weight: 400;
margin: 0 0 20px 0;
font-size: 22px;
}
.at-tool-new .tool-right .sidebar-review .link-btn {
color: #fff!important;
font-weight: 400;
font-size: 16px;
display: inline-block;
border: 2px solid #fff;
padding: 5px 10px;
margin: 0 5px 10px;
border-radius: 5px;
transition: all .2s;
}
.at-tool-new .tool-right .sidebar-review .link-btn:hover {
color: #353677 !important;
border: 2px solid #fff;
background-color: #fff;
transition: all 0.2s;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide {
display: block;
width: 70%;
font-size: 17px;
margin: 0px auto 10px;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide-noborder {
border: none;
}
.at-tool-new .tool-right .sidebar-review .link-btn-wide-noborder:hover {
border: none;
background-color: transparent;
color: #fff !important;
text-decoration: underline;
}
.at-tool-new .tool-right .sidebar-callout {
border: 1px solid #e5e5e5;
background-color: #ffffff;
padding: 14px;
margin-top: 15px;
font-size: 14px;
}
.at-tool-new .tool-right .sidebar-callout p {
font-size: 13px;
color: #6b6b6b;
margin-top: -10px;
}
.at-tool-new .tool-right .sidebar-callout .feedback {
color: #000;
font-size: 12px;
}
.at-tool-new .tool-right .sidebar-callout .feedback a {
color: #000;
font-size: 12px;
display: inline-block;
}
.at-tool-new .tool-right .sidebar-callout h2 {
margin-top: 0;
margin-bottom: 20px;
font-weight: bold;
font-size: 14px;
}
.at-tool-new .tool-right .sidebar-callout a {
display: block;
text-decoration: underline;
margin-bottom: 7px;
}
.at-tool-new .tool-right .sidebar-callout a:hover {
text-decoration: none;
}
.at-tool-new .tool-grid-container {
margin-top: 35px;
}
.at-tool-new .error-message {
color: #ff0000;
font-style: italic;
font-weight: 300;
font-size: 13px;
}
.at-tool-new .shortcode-container {
margin-top: 10px;
}
.at-tool-new .shortcode-container .shortcode-blurb {
font-style: italic;
color: #4f4f4f;
font-size: 13px;
display: block;
margin-bottom: 7px;
}
.at-tool-new .shortcode-container .shortcode-code {
background-color: #0084bc;
display: block;
padding: 6px;
color: white;
font-size: 12px;
font-family: "Lucida Console", Monaco, monospace;
}
.at-tool-new .tool-container {
width: 25%;
float: left;
margin-right: 15px;
margin-bottom: 15px;
}
.at-tool-new .tool-container img {
width: 99.6%;
max-width: 100%;
border-left: 1px solid #e5e5e5;
border-top: 1px solid #e5e5e5;
border-right: 1px solid #e5e5e5;
margin-bottom: -6px;
}
.at-tool-new .tool-container .tool-title {
background-color: #f9f9f9;
padding: 13px;
font-size: 18px;
font-weight: bold;
color: #222629;
border: 1px solid #e5e5e5;
}
.at-tool-new .tool-container .tool-title a {
color: #5e5e5e !important;
font-weight: 100;
float: right;
margin-top: -2px;
}
.at-tool-new .postbox {
min-width: 100%;
}
.at-tool-new .postbox .inside {
overflow: hidden;
}
.at-tool-new .postbox .inside h3 {
margin-bottom: 0px;
}
.at-tool-new .postbox .inside label {
margin-top: 10px;
}
.at-tool-new .postbox .inside .tool-positions {
margin-right: 25px;
margin-bottom: 15px;
}
.at-tool-new .postbox .inside,
.at-tool-new .postbox .inside p,
.at-tool-new .postbox .inside label {
font-size: 14px;
}
.at-tool-new .postbox h2 {
font-size: 14px;
padding: 8px 12px;
margin: 0;
line-height: 1.4;
font-weight: 600;
}
.at-tool-new #submitdiv .inside {
margin: 0;
padding: 0;
}
.at-tool-new div.mce-toolbar-grp {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
padding: 20px;
}
.at-tool-new .wp-editor-container {
border: none;
}
.at-tool-new .wp-editor-tabs {
float: left;
margin-left: 10px;
margin-right: -10px;
}
.at-tool-new .filter-active-inactive {
font-size: 14px;
margin-bottom: 15px;
}
.at-tool-new .filter-active-inactive .active {
color: #000000 !important;
font-weight: bold;
}
.at-tool-new .button-disabled {
cursor: not-allowed;
}
.at-tool-new .msg-deleted {
padding: 6px 10px;
margin-top: 10px;
font-size: 13px;
font-weight: bold;
border: 1px solid #e5e5e5;
background-color: #fff;
border-left: 4px solid #46b451;
}
.at-tool-new .delete {
display: inline-block;
width: 14px;
float: right;
margin-top: 2px;
}
.at-tool-new .add svg .background {
fill: #3E3F3F !important;
}
.at-tool-new .add {
display: inline-block;
width: 14px;
float: right;
margin-top: 2px;
}
.at-tool-new .msg-deleted .social-delete {
margin-top: 2px;
}
.at-tool-new .inside-grey {
background-color: #f9f9f9;
margin: 0;
color: #646464;
padding: 1px 20px 20px;
}
.at-tool-new .inside-grey .addthis-checkbox-label {
display: inline-block;
margin: 10px 0 0px;
}
.at-tool-new .inside-grey strong {
color: #646464;
}
.at-tool-new .inside-grey h3 {
color: #282828;
}
.at-tool-new .settings-subsetting {
margin-top: 10px;
margin-left: 24px;
margin-bottom: 15px;
}
.at-tool-new .inside-grey select {
min-width: 10%;
margin-top: 5px;
}
.at-tool-new .inside-grey small {
color: #aeaeae;
}
.at-tool-new .inside-grey input[type=number] {
min-width: 6%;
max-width: 6%;
margin-top: 5px;
padding: 4.5px;
}
.at-tool-new .inside-grey input[type=text] {
min-width: 10%;
margin-top: 5px;
padding: 4.5px;
}
.at-tool-new .select-sm {
margin-left: 6px;
min-width: 5% !important;
}
.at-tool-new .sidebar-bg {
margin-top: 10px;
}
.at-tool-new .sidebar-bg .label-bg {
display: inline-block;
margin-left: 7px;
margin-top: 1px;
}
.at-tool-new .social-addmore {
width: 202px;
color: white !important;
text-align: center;
}
.at-tool-new .select-your-own {
border: 1px solid #dddddd;
width: 200px;
color: #5a5a5a;
font-size: 13px;
margin-bottom: 5px;
}
.at-tool-new .social-add-more .select-your-own {
border: none;
width: 100%;
color: #5a5a5a;
font-size: 13px;
margin-bottom: 5px;
}
.at-tool-new .select-your-own ul {
margin: 0;
padding: 0;
list-style: none;
}
.at-tool-new .select-your-own ul li {
margin: 0;
padding: 7px;
border-bottom: 1px solid #dddddd;
overflow: hidden;
line-height: 29px;
}
.at-tool-new .social-add-more .select-your-own ul li {
border-bottom: none;
}
.at-tool-new .select-your-own .at-icon-wrapper {
width: 32px !important;
height: 32px !important;
float: left;
margin-right: 10px;
}
.at-tool-new .select-your-own .at-icon-wrapper svg {
width: 32px !important;
height: 32px !important;
}
.at-tool-new .select-your-own ul li:last-of-type {
border-bottom: none;
}
.at-tool-new .social-delete {
float: right;
width: 15px;
height: 15px;
background-color: #747579;
color: white;
border-radius: 50%;
line-height: 14px;
font-weight: 700;
text-indent: 4px;
font-size: 10px;
display: inline-block;
margin-top: 7px;
cursor: pointer;
}
.at-tool-new .select-your-own .social-add {
float: right;
width: 15px;
height: 15px;
background-color: #747579;
color: white;
border-radius: 50%;
line-height: 14px;
font-weight: 700;
text-indent: 4.1px;
font-size: 11px;
display: inline-block;
margin-top: 7px;
cursor: pointer;
}
.at-tool-new .select-your-own .social-delete:hover {
background-color: #4d4d50;
}
.at-tool-new .at-tool-overlay {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 9999;
top: 0;
left: 0;
}
.at-tool-new .social-add-more {
position: fixed;
left: 50%;
top: 7%;
transform: translateX(-50%);
width: 280px;
height: 530px;
background-color: #f9f9f9;
z-index: 99999;
overflow-y: scroll;
overflow-x: hidden;
border: 1px solid #ebebed;
}
.at-tool-new .social-add-more-header {
font-size: 12px;
font-weight: bold;
color: #28292b;
padding: 10px;
border-bottom: 1px solid #ebebed;
}
.at-tool-new .social-add-more-close {
display: inline-block;
float: right;
font-weight: bold;
color: #545454 !important;
font-family: verdana;
}
.at-tool-new .social-add-more-close a {
color: #545454 !important;
}
.at-tool-new #social-add-more-search-input {
width: 100% !important;
border-radius: 0px !important;
border: none !important;
font-size: 12px;
padding: 10px;
background-color: #ffffff;
margin-top: -1px;
background-image: url('http://localhost:3000/frontend/src/images/icon-search.png');
background-repeat: no-repeat;
background-position: 96% 50%
}
/* MEDIA QUERIES */
@media screen and (max-width: 599px) {
.addthis-settings-page .header-logo svg{
top: 46px;
}
}
.addthis-settings-page pre{
text-align: left;
background-color: #3E3F3F;
color: #FFFFFF;
padding: 10px;
font-family: Courier, monospace;
border: 1px solid #e2e5e8;
border-radius: 2px;
margin: 20px 20px 20px 0;
}
.addthis-settings-page .delete svg .background {
fill: #3E3F3F
}
.addthis-settings-page .delete svg .symbol,
.addthis-settings-page .add svg .symbol,
.addthis-settings-page .up svg .symbol,
.addthis-settings-page .down svg .symbol {
stroke: #FFFFFF;
}
.addthis-settings-page .add svg .background {
fill: #7ED321;
}
.addthis-settings-page .add svg {
transform: rotate(45deg);
}
.addthis-settings-page .up svg .background,
.addthis-settings-page .down svg .background {
fill: #0088F7;
}
.addthis-settings-page .down svg {
transform: rotate(180deg);
fill: #0088F7;
}
.addthis-settings-page input[type=checkbox] {
padding: 0;
margin: 0;
}
.at-tool-new input[type=checkbox] {
margin: 0 0 0 8px;
}
| 0.344885 | 0.05921 |
.clear{
clear:both;
}
.dragDropWrap{
max-width:85%;
min-height: 460px;
margin:0 auto;
padding:0;
position:relative;
}
.dragDropWrap .innerContent{
margin:0 20px;
position:relative;
}
.lftColumn{
float:left;
width:306px;
min-height:459px;
padding:8px 8px 0;
background: url(assets/images/lft_col_bg.png) repeat 0 0;
}
.lftColumn .info, .dragItem{
float:left;
width:135px;
height:135px;
/* margin:8px 8px 18px; */
position:relative;
border:solid 1px #949494;
background:#edebeb;
}
.dragItem{
cursor: move;
}
.lftColumn .info{
display:table;
width:114px;
padding:0 8px;
border-top:none;
border-right:none;
border-bottom:none;
border-left:solid 5px #e4801b;
}
.lftColumn .info span{
display:table-cell;
height:135px;
font:normal 15px/18px Arial;
color:#004e96;
vertical-align:middle;
}
.dragItem img{
width:auto;
}
.dragItem .textStripe{
display:table;
width:100%;
height:38px;
padding:0;
position:absolute;
bottom:0;
left:0;
}
.dragItem .textStripe span{
display:table-cell;
width:100%;
height:38px;
font:14px/14px Arial;
color:#FFF;
text-align:center;
vertical-align:middle;
padding:0 10px;
background:#008da8;
}
.rhtColumn{
float:right;
min-height:459px;
padding:0 8px;
background: url(assets/images/rht_col_bg.png) repeat 0 0;
}
.rhtColumn .dropWrap{
float:left;
width:172px;
min-height:479px;
margin:8px;
border:solid 1px #a2a2a2;
background:#FFF;
}
.dropWrap .title{
font:bold 14px/24px Arial;
color:#FFF;
text-align:center;
background:#333;
}
.dropWrap .dragItem{
float:none;
margin:8px auto 0;
border:solid 3px transparent;
}
.dropWrap .dragItem.correct{
border-color:#8dc63f;
}
.dropWrap .dragItem.incorrect{
border-color:#b5101c;
}
.dnd_v2Holder .submitBtn {
float: right;
margin:0 !important;
}
.dnd_v2Holder .resetBtn {
float: right;
margin-right: 3px;
}
.dragDropWrap .resetBtn input{
margin:0 !important;
}
.dragDropWrap .submitBtn input{
margin:0 !important;
}
.DNDclose{
cursor: pointer;
font-size:0;
float: right;
width: 36px;
height: 35px;
position: absolute;
right: 10px;
top: 0;
background:url("../../../assets/images/popup_buttons.png") no-repeat -16px -76px;
}
.popupClose{
top:3px !important;
right:3px !important;
}
.DNDclose:hover{
background-position:-16px -112px;
}
.disabled:hover{
background-position:-16px -148px;
}
.feedbackWrap{
background: none repeat scroll 0 0 hsl(0, 0%, 20%);
height:auto;
left: 0;
position: absolute;
top: 0;
width:327px;
overflow: hidden;
display:none;
}
.feedbackWrap .contentSec {
height:307px;
margin:35px 0 10px;
overflow:auto;
}
.feedbackWrap .row {
border-bottom: 1px solid #D17C1F;
color: #FFFFFF;
margin: 0 0 12px;
overflow: hidden;
padding: 0 0 12px;
}
.feedbackWrap .row .imgBlock {
float: left;
}
.feedbackWrap .row .txtBlock {
padding: 0 8px 0 81px;
}
.feedbackWrap .row .txtBlock .ttl {
color: #D17C1F;
font: bold 14px Arial;
padding: 0 0 8px;
}
.feedbackWrap .row .txtBlock .feedbackTxt {
font: 13px Arial;
}
.feedbackWrap .row:last-child{
margin:0;
border:none;
}
.tempDragOption, .tempFeedback{
display: none;
}
.disabled{
/* opacity:0.4; */
cursor: default;
}
.dnd_v2_dropContent {
float: right;
width:48%;
max-width:48%;
min-height: 309px;
background: #cfcfcf;
}
.dnd_v2_correct{
background-color:green !important;
}
.dnd_v2_incorrect{
background-color:red !important;
}
.dnd_v2_dragContent {
width:48%;
max-width:48%;
float: left;
display:table;
padding:3px;
background:#cfcfcf;
}
.dnd_v2_dropContent .title {
/*float: left;*/
font:bold 14px/24px Arial;
color:#FFF;
text-align:left;
margin:10px 10px 0;
padding:13px 22px;
/*display: table;
width:88.5%;*/
background:#4e4e4d;
}
.dnd_v2Holder {
float: left;
height: 40px;
margin-top: 2px;
width: 100%;
}
.dnd_v2_dragContent .info {
/*width:98.2%;*/
height:50px;
line-height:50px;
padding:2px;
color: #004E96;
/*display: table;*/
border-left:5px solid #E4801B;
background: none repeat scroll 0 0 #EDEBEB;
}
#instructionTxt > span {
display: table-cell;
padding-left: 15px;
vertical-align: middle;
}
#dnd_2Container .drag_wraper {
/* min-height: 245px; */
}
.drag_wraper .dragItem {
float: left;
/*width:162px;*/
width:36%;
max-width:36%;
height: 65px;
color:#fff;
font:14px/24px arial;
text-align: center;
margin:5% 6%;
border-top:solid 1px #b6eaf6;
border-left:solid 1px #b6eaf6;
border-right:solid 1px #345d67;
border-bottom:solid 1px #345d67;
background:#008DA8;
box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-o-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}
.drag_wraper .dragCloneItem {
float: left;
/*width:162px;*/
width:36%;
max-width:36%;
height: 65px;
color:#fff;
font:14px/24px arial;
text-align: center;
display:none;
margin:5% 6%;
position: relative;
border-top:solid 1px #b6eaf6;
border-left:solid 1px #b6eaf6;
border-right:solid 1px #345d67;
border-bottom:solid 1px #345d67;
background:#008DA8;
opacity:0.4;
filter :alpha(opacity=40) !important;
box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-o-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}
.drag_wraper .dropItem {
float: left;
height: 65px;
margin: 5% 6%;
text-align: center;
/*width: 162px;*/
width: 36%;
max-width: 36%;
border: 1px solid #949494;
background:#EDEBEB;
}
.DND_OneToOne_correct{
box-shadow: 0px 2px 3px 1px #008000 !important;
-webkit-box-shadow: 0px 2px 3px 1px #008000 !important;
-moz-box-shadow: 0px 2px 3px 1px #008000 !important;
-o-box-shadow: 0px 2px 3px 1px #008000 !important;
-ms-box-shadow: 0px 2px 3px 1px #008000 !important;
border:2px solid #00800;
}
.DND_OneToOne_incorrect{
box-shadow: 0px 2px 3px 1px #FF0000 !important;
-webkit-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-moz-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-o-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-ms-box-shadow: 0px 2px 3px 1px #FF0000 !important;
border:2px solid #FF0000;
}
/* iPads (Landsacpe) */
@media screen and (max-device-width:1024px) and (orientation:landscape){
.dragDropWrap{
margin:15px auto;
max-width: 806px;
min-height: 364px;
}
.dnd_v2_dragContent{
width:368px;
max-width:inherit;
display: table;
float: left;
background:#CFCFCF;
min-height: 325px;
}
.dnd_v2_dropContent{
min-height: 318px;
width: 397px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
height:58px;
line-height:58px;
}
.dnd_v2_dropContent .title {
font:bold 14px/24px Arial;
margin: 10px 10px 0;
width: 332px;
}
.drag_wraper .dragItem {
height: 65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 65px;
margin: 15px 0 0 21px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
min-height:255px;
}
.dnd_v2Holder{
float:right !important;
}
}
/* iPads (Portrait) */
@media screen and (max-device-width:768px) and (orientation:portrait){
.dragDropWrap{
margin-right:52px;
max-width:90%;
}
.dnd_v2_dragContent{
width:48.5%;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
}
.dnd_v2_dropContent .title {
font:bold 14px/24px Arial;
margin: 10px 10px 0;
width: 267px;
}
#dnd_2Container .drag_wraper{
float:left;
margin-bottom:15px;
}
.drag_wraper .dropItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
.drag_wraper .dragItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
}
/*Note8 Lansacpe Orientation Start*/
@media only screen and (min-device-width : 800px) and (max-device-width : 1280px) and (device-aspect-ratio : 8/5) and (-webkit-min-device-pixel-ratio : 1.33) and (orientation : landscape){
.item {
top:0 !important;
}
.dragDropWrap{
margin:15px auto;
max-width: 806px;
min-height: 364px;
}
.dnd_v2_dragContent{
width:368px;
display: table;
float: left;
background:#CFCFCF;
min-height: 325px;
max-width:inherit;
}
.dnd_v2_dropContent{
min-height: 318px;
width: 397px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
height:61px;
line-height:61px;
}
.dnd_v2_dropContent .title {
height: 30px;
margin: 10px 10px 0;
/*width: 375px;*/
}
.drag_wraper .dragItem {
height: 65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 65px;
margin: 15px 0 0 21px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
min-height:255px;
}
.dnd_v2Holder{
float:right !important;
}
}
/*Note8 Potrait Orientation Start*/
@media only screen and (min-device-width : 800px) and (max-device-width : 1280px) and (device-aspect-ratio : 5/8) and (-webkit-min-device-pixel-ratio : 1.33) and (orientation : portrait){
.item {
top:0 !important;
}
.dragDropWrap{
margin:8px auto 0;
max-width: 422px;
min-height: 585px;
}
.dnd_v2_dragContent{
width:422px;
display: table;
float: left;
background:#CFCFCF;
max-width:inherit;
}
.dnd_v2_dropContent{
min-height: 318px;
margin-top:1px;
width:422px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
}
.dnd_v2_dropContent .title {
height: 30px;
margin: 10px 10px 0;
/*width: 402px;*/
}
.drag_wraper .dragItem {
height: 60px;
margin: 16px 0 0 24px;
width: 173px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 60px;
margin: 15px 0 0 25px;
width: 173px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:60px;
margin: 16px 0 0 25px;
width: 173px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
float: left;
margin-bottom: 30px;
margin-top: 10px;
}
.dragDropWrap .submitBtn {
bottom:0;
right: 0;
}
}
|
lalit/assets/css/templates/dnd_one_to_one.css
|
.clear{
clear:both;
}
.dragDropWrap{
max-width:85%;
min-height: 460px;
margin:0 auto;
padding:0;
position:relative;
}
.dragDropWrap .innerContent{
margin:0 20px;
position:relative;
}
.lftColumn{
float:left;
width:306px;
min-height:459px;
padding:8px 8px 0;
background: url(assets/images/lft_col_bg.png) repeat 0 0;
}
.lftColumn .info, .dragItem{
float:left;
width:135px;
height:135px;
/* margin:8px 8px 18px; */
position:relative;
border:solid 1px #949494;
background:#edebeb;
}
.dragItem{
cursor: move;
}
.lftColumn .info{
display:table;
width:114px;
padding:0 8px;
border-top:none;
border-right:none;
border-bottom:none;
border-left:solid 5px #e4801b;
}
.lftColumn .info span{
display:table-cell;
height:135px;
font:normal 15px/18px Arial;
color:#004e96;
vertical-align:middle;
}
.dragItem img{
width:auto;
}
.dragItem .textStripe{
display:table;
width:100%;
height:38px;
padding:0;
position:absolute;
bottom:0;
left:0;
}
.dragItem .textStripe span{
display:table-cell;
width:100%;
height:38px;
font:14px/14px Arial;
color:#FFF;
text-align:center;
vertical-align:middle;
padding:0 10px;
background:#008da8;
}
.rhtColumn{
float:right;
min-height:459px;
padding:0 8px;
background: url(assets/images/rht_col_bg.png) repeat 0 0;
}
.rhtColumn .dropWrap{
float:left;
width:172px;
min-height:479px;
margin:8px;
border:solid 1px #a2a2a2;
background:#FFF;
}
.dropWrap .title{
font:bold 14px/24px Arial;
color:#FFF;
text-align:center;
background:#333;
}
.dropWrap .dragItem{
float:none;
margin:8px auto 0;
border:solid 3px transparent;
}
.dropWrap .dragItem.correct{
border-color:#8dc63f;
}
.dropWrap .dragItem.incorrect{
border-color:#b5101c;
}
.dnd_v2Holder .submitBtn {
float: right;
margin:0 !important;
}
.dnd_v2Holder .resetBtn {
float: right;
margin-right: 3px;
}
.dragDropWrap .resetBtn input{
margin:0 !important;
}
.dragDropWrap .submitBtn input{
margin:0 !important;
}
.DNDclose{
cursor: pointer;
font-size:0;
float: right;
width: 36px;
height: 35px;
position: absolute;
right: 10px;
top: 0;
background:url("../../../assets/images/popup_buttons.png") no-repeat -16px -76px;
}
.popupClose{
top:3px !important;
right:3px !important;
}
.DNDclose:hover{
background-position:-16px -112px;
}
.disabled:hover{
background-position:-16px -148px;
}
.feedbackWrap{
background: none repeat scroll 0 0 hsl(0, 0%, 20%);
height:auto;
left: 0;
position: absolute;
top: 0;
width:327px;
overflow: hidden;
display:none;
}
.feedbackWrap .contentSec {
height:307px;
margin:35px 0 10px;
overflow:auto;
}
.feedbackWrap .row {
border-bottom: 1px solid #D17C1F;
color: #FFFFFF;
margin: 0 0 12px;
overflow: hidden;
padding: 0 0 12px;
}
.feedbackWrap .row .imgBlock {
float: left;
}
.feedbackWrap .row .txtBlock {
padding: 0 8px 0 81px;
}
.feedbackWrap .row .txtBlock .ttl {
color: #D17C1F;
font: bold 14px Arial;
padding: 0 0 8px;
}
.feedbackWrap .row .txtBlock .feedbackTxt {
font: 13px Arial;
}
.feedbackWrap .row:last-child{
margin:0;
border:none;
}
.tempDragOption, .tempFeedback{
display: none;
}
.disabled{
/* opacity:0.4; */
cursor: default;
}
.dnd_v2_dropContent {
float: right;
width:48%;
max-width:48%;
min-height: 309px;
background: #cfcfcf;
}
.dnd_v2_correct{
background-color:green !important;
}
.dnd_v2_incorrect{
background-color:red !important;
}
.dnd_v2_dragContent {
width:48%;
max-width:48%;
float: left;
display:table;
padding:3px;
background:#cfcfcf;
}
.dnd_v2_dropContent .title {
/*float: left;*/
font:bold 14px/24px Arial;
color:#FFF;
text-align:left;
margin:10px 10px 0;
padding:13px 22px;
/*display: table;
width:88.5%;*/
background:#4e4e4d;
}
.dnd_v2Holder {
float: left;
height: 40px;
margin-top: 2px;
width: 100%;
}
.dnd_v2_dragContent .info {
/*width:98.2%;*/
height:50px;
line-height:50px;
padding:2px;
color: #004E96;
/*display: table;*/
border-left:5px solid #E4801B;
background: none repeat scroll 0 0 #EDEBEB;
}
#instructionTxt > span {
display: table-cell;
padding-left: 15px;
vertical-align: middle;
}
#dnd_2Container .drag_wraper {
/* min-height: 245px; */
}
.drag_wraper .dragItem {
float: left;
/*width:162px;*/
width:36%;
max-width:36%;
height: 65px;
color:#fff;
font:14px/24px arial;
text-align: center;
margin:5% 6%;
border-top:solid 1px #b6eaf6;
border-left:solid 1px #b6eaf6;
border-right:solid 1px #345d67;
border-bottom:solid 1px #345d67;
background:#008DA8;
box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-o-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}
.drag_wraper .dragCloneItem {
float: left;
/*width:162px;*/
width:36%;
max-width:36%;
height: 65px;
color:#fff;
font:14px/24px arial;
text-align: center;
display:none;
margin:5% 6%;
position: relative;
border-top:solid 1px #b6eaf6;
border-left:solid 1px #b6eaf6;
border-right:solid 1px #345d67;
border-bottom:solid 1px #345d67;
background:#008DA8;
opacity:0.4;
filter :alpha(opacity=40) !important;
box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-o-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}
.drag_wraper .dropItem {
float: left;
height: 65px;
margin: 5% 6%;
text-align: center;
/*width: 162px;*/
width: 36%;
max-width: 36%;
border: 1px solid #949494;
background:#EDEBEB;
}
.DND_OneToOne_correct{
box-shadow: 0px 2px 3px 1px #008000 !important;
-webkit-box-shadow: 0px 2px 3px 1px #008000 !important;
-moz-box-shadow: 0px 2px 3px 1px #008000 !important;
-o-box-shadow: 0px 2px 3px 1px #008000 !important;
-ms-box-shadow: 0px 2px 3px 1px #008000 !important;
border:2px solid #00800;
}
.DND_OneToOne_incorrect{
box-shadow: 0px 2px 3px 1px #FF0000 !important;
-webkit-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-moz-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-o-box-shadow: 0px 2px 3px 1px #FF0000 !important;
-ms-box-shadow: 0px 2px 3px 1px #FF0000 !important;
border:2px solid #FF0000;
}
/* iPads (Landsacpe) */
@media screen and (max-device-width:1024px) and (orientation:landscape){
.dragDropWrap{
margin:15px auto;
max-width: 806px;
min-height: 364px;
}
.dnd_v2_dragContent{
width:368px;
max-width:inherit;
display: table;
float: left;
background:#CFCFCF;
min-height: 325px;
}
.dnd_v2_dropContent{
min-height: 318px;
width: 397px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
height:58px;
line-height:58px;
}
.dnd_v2_dropContent .title {
font:bold 14px/24px Arial;
margin: 10px 10px 0;
width: 332px;
}
.drag_wraper .dragItem {
height: 65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 65px;
margin: 15px 0 0 21px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
min-height:255px;
}
.dnd_v2Holder{
float:right !important;
}
}
/* iPads (Portrait) */
@media screen and (max-device-width:768px) and (orientation:portrait){
.dragDropWrap{
margin-right:52px;
max-width:90%;
}
.dnd_v2_dragContent{
width:48.5%;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
}
.dnd_v2_dropContent .title {
font:bold 14px/24px Arial;
margin: 10px 10px 0;
width: 267px;
}
#dnd_2Container .drag_wraper{
float:left;
margin-bottom:15px;
}
.drag_wraper .dropItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
.drag_wraper .dragItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
width:145px;
margin:15px 0 0 12px;
max-width:inherit;
}
}
/*Note8 Lansacpe Orientation Start*/
@media only screen and (min-device-width : 800px) and (max-device-width : 1280px) and (device-aspect-ratio : 8/5) and (-webkit-min-device-pixel-ratio : 1.33) and (orientation : landscape){
.item {
top:0 !important;
}
.dragDropWrap{
margin:15px auto;
max-width: 806px;
min-height: 364px;
}
.dnd_v2_dragContent{
width:368px;
display: table;
float: left;
background:#CFCFCF;
min-height: 325px;
max-width:inherit;
}
.dnd_v2_dropContent{
min-height: 318px;
width: 397px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
height:61px;
line-height:61px;
}
.dnd_v2_dropContent .title {
height: 30px;
margin: 10px 10px 0;
/*width: 375px;*/
}
.drag_wraper .dragItem {
height: 65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 65px;
margin: 15px 0 0 21px;
width: 162px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:65px;
margin: 14px 0 0 12px;
width: 162px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
min-height:255px;
}
.dnd_v2Holder{
float:right !important;
}
}
/*Note8 Potrait Orientation Start*/
@media only screen and (min-device-width : 800px) and (max-device-width : 1280px) and (device-aspect-ratio : 5/8) and (-webkit-min-device-pixel-ratio : 1.33) and (orientation : portrait){
.item {
top:0 !important;
}
.dragDropWrap{
margin:8px auto 0;
max-width: 422px;
min-height: 585px;
}
.dnd_v2_dragContent{
width:422px;
display: table;
float: left;
background:#CFCFCF;
max-width:inherit;
}
.dnd_v2_dropContent{
min-height: 318px;
margin-top:1px;
width:422px;
max-width:inherit;
}
.dnd_v2_dragContent .info{
padding:0;
}
.dnd_v2_dropContent .title {
height: 30px;
margin: 10px 10px 0;
/*width: 402px;*/
}
.drag_wraper .dragItem {
height: 60px;
margin: 16px 0 0 24px;
width: 173px;
max-width:inherit;
}
.drag_wraper .dropItem{
height: 60px;
margin: 15px 0 0 25px;
width: 173px;
max-width:inherit;
}
.drag_wraper .dragCloneItem{
height:60px;
margin: 16px 0 0 25px;
width: 173px;
max-width:inherit;
}
#dnd_2Container .drag_wraper {
float: left;
margin-bottom: 30px;
margin-top: 10px;
}
.dragDropWrap .submitBtn {
bottom:0;
right: 0;
}
}
| 0.228156 | 0.067547 |
html, body {
position: fixed;
overflow: hidden;
right: 0;
left: 0;
bottom: 0;
top: 0; }
.reader_layout {
position: fixed;
top: 30px;
bottom: 0;
left: 0;
right: 0;
border-top: 1px solid #eee; }
.reader_layout_navigation {
width: 20%;
height: 100%;
position: absolute;
border-right: 1px solid #eee;
box-sizing: border-box; }
.reader_layout_list {
top: 0;
bottom: 100px;
width: 30%;
position: absolute;
left: 20%;
background: #fff;
border-right: 1px solid #eee;
box-sizing: border-box; }
.reader_layout_viewer {
right: 0;
position: absolute;
left: 50%;
top: 0;
bottom: 100px; }
.reader_layout_info {
position: absolute;
right: 0px;
left: 20%;
bottom: 0;
height: 100px;
background: #fff;
border-top: 1px solid #eee;
box-sizing: border-box; }
@media screen and (min-width: 1000px) {
.reader_layout_navigation {
width: 199px; }
.reader_layout_list {
position: absolute;
width: 399px;
bottom: 0;
left: 200px; }
.reader_layout_info {
left: 599px; }
.reader_layout_viewer {
left: 599px; } }
@media screen and (min-width: 1600px) {
.reader_layout_viewer {
right: 200px;
bottom: 0; }
.reader_layout_info {
width: 200px;
height: 100%;
left: auto;
border-top: none;
border-left: 1px solid #eee; } }
.reader_sidebar {
height: 100%;
overflow: hidden; }
.reader_sidebar_block {
padding: 10px 10px 10px 15px; }
.reader_sidebar_title {
text-transform: uppercase;
color: #ccc;
margin: 0 0 3px;
font-weight: 300;
font-size: 13px;
letter-spacing: 1px; }
.reader_sidebar_feeds {
position: relative; }
.reader_sidebar_feeds_add {
color: #999;
position: absolute;
top: 5px;
right: 10px;
opacity: 0;
transition: opacity, .3s; }
.reader_sidebar_feeds_add:hover {
color: #333; }
.reader_sidebar_feeds:hover .reader_sidebar_feeds_add {
opacity: 1; }
.reader_list_top {
border-bottom: 1px solid #eee;
padding: 0 4px;
height: 30px;
background: #fafafa;
display: flex;
align-items: center; }
.reader_list_middle {
position: absolute;
top: 31px;
bottom: 0;
width: 100%; }
/* Actions */
.reader_bar {
display: flex;
height: 30px;
align-items: center; }
.reader_bar_item {
margin-left: 5px;
color: #999;
text-decoration: none;
font-size: 0;
display: inline-block;
vertical-align: middle;
padding: 0 5px; }
.reader_bar_item:hover {
color: #000; }
.reader_bar_item_text {
line-height: 30px;
vertical-align: middle;
font-size: 14px;
margin-left: 5px; }
.reader_selection {
font-size: 0; }
.reader_selection_icon {
color: #666;
display: inline-block;
padding: 3px; }
.reader_selection_icon:hover {
color: #000; }
.reader_meta {
padding: 10px; }
.reader_meta_header {
margin: 0;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
font-weight: 400;
color: #999; }
.reader_meta_tags {
margin-top: 5px;
font-size: 0; }
.reader_meta_tags_item {
display: inline-block;
height: 16px;
line-height: 16px;
border-radius: 8px;
border: 1px solid #eee;
padding: 0 10px;
font-size: 11px;
color: #666;
text-decoration: none;
background: #fff;
overflow: hidden;
margin: 0 3px 3px 0; }
.reader_meta_tags_item:hover {
cursor: pointer;
background: #f6f6f6;
border-color: #ddd;
color: #666; }
.reader_meta_tags_item.is-tag {
font-style: italic; }
.reader_meta_tags_item.is-add {
border-style: dashed;
color: #bbb; }
.reader_head {
position: absolute;
height: 65px;
border-bottom: 1px solid #ECE5D5;
width: 100%;
box-sizing: border-box;
background: #F5F2E2; }
.reader_head_title {
font-size: 18px;
font-weight: 300;
margin: 0 40px 0 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 32px;
padding: 5px 0 0 10px;
color: #3A3326; }
.reader_head_url {
font-size: 11px;
margin: 5px 320px 0 0;
padding-left: 10px;
white-space: nowrap;
overflow: hidden; }
.reader_head_url > a {
text-decoration: none;
color: #B3B09D; }
.reader_head_url > a:hover {
text-decoration: underline; }
.reader_head_info:hover p > a {
color: #8C876C;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
.reader_head_info:hover p > a:hover {
color: #36f; }
.reader_head_actions {
position: absolute;
right: 5px;
bottom: 5px;
font-size: 0; }
.reader_head_action {
color: #A79F89;
margin-right: 10px;
vertical-align: middle;
display: inline-block;
cursor: pointer; }
.reader_head_action:hover {
color: #565141; }
.reader_head_action:active {
transform: scale(0.8); }
.reader_head_action.oo_icon-selected {
color: #5D583F; }
.reader_head_action.oo_icon-selected:hover {
color: #3f3b2a; }
.reader_segmented {
display: inline-block;
vertical-align: middle;
font-size: 0; }
.reader_segmented_item {
text-transform: uppercase;
text-decoration: none;
color: #A79F89;
font-size: 12px;
padding: 0 3px;
letter-spacing: 0.5px; }
.reader_segmented_item:hover {
color: #565141; }
.reader_segmented_item.is-selected {
color: #5D583F;
font-weight: 600;
letter-spacing: 0.3px; }
.reader_segmented_item.is-selected:hover {
color: #3f3b2a; }
|
src/main/webapp/WEB-INF/apps/knowledge/web/css/reader.css
|
html, body {
position: fixed;
overflow: hidden;
right: 0;
left: 0;
bottom: 0;
top: 0; }
.reader_layout {
position: fixed;
top: 30px;
bottom: 0;
left: 0;
right: 0;
border-top: 1px solid #eee; }
.reader_layout_navigation {
width: 20%;
height: 100%;
position: absolute;
border-right: 1px solid #eee;
box-sizing: border-box; }
.reader_layout_list {
top: 0;
bottom: 100px;
width: 30%;
position: absolute;
left: 20%;
background: #fff;
border-right: 1px solid #eee;
box-sizing: border-box; }
.reader_layout_viewer {
right: 0;
position: absolute;
left: 50%;
top: 0;
bottom: 100px; }
.reader_layout_info {
position: absolute;
right: 0px;
left: 20%;
bottom: 0;
height: 100px;
background: #fff;
border-top: 1px solid #eee;
box-sizing: border-box; }
@media screen and (min-width: 1000px) {
.reader_layout_navigation {
width: 199px; }
.reader_layout_list {
position: absolute;
width: 399px;
bottom: 0;
left: 200px; }
.reader_layout_info {
left: 599px; }
.reader_layout_viewer {
left: 599px; } }
@media screen and (min-width: 1600px) {
.reader_layout_viewer {
right: 200px;
bottom: 0; }
.reader_layout_info {
width: 200px;
height: 100%;
left: auto;
border-top: none;
border-left: 1px solid #eee; } }
.reader_sidebar {
height: 100%;
overflow: hidden; }
.reader_sidebar_block {
padding: 10px 10px 10px 15px; }
.reader_sidebar_title {
text-transform: uppercase;
color: #ccc;
margin: 0 0 3px;
font-weight: 300;
font-size: 13px;
letter-spacing: 1px; }
.reader_sidebar_feeds {
position: relative; }
.reader_sidebar_feeds_add {
color: #999;
position: absolute;
top: 5px;
right: 10px;
opacity: 0;
transition: opacity, .3s; }
.reader_sidebar_feeds_add:hover {
color: #333; }
.reader_sidebar_feeds:hover .reader_sidebar_feeds_add {
opacity: 1; }
.reader_list_top {
border-bottom: 1px solid #eee;
padding: 0 4px;
height: 30px;
background: #fafafa;
display: flex;
align-items: center; }
.reader_list_middle {
position: absolute;
top: 31px;
bottom: 0;
width: 100%; }
/* Actions */
.reader_bar {
display: flex;
height: 30px;
align-items: center; }
.reader_bar_item {
margin-left: 5px;
color: #999;
text-decoration: none;
font-size: 0;
display: inline-block;
vertical-align: middle;
padding: 0 5px; }
.reader_bar_item:hover {
color: #000; }
.reader_bar_item_text {
line-height: 30px;
vertical-align: middle;
font-size: 14px;
margin-left: 5px; }
.reader_selection {
font-size: 0; }
.reader_selection_icon {
color: #666;
display: inline-block;
padding: 3px; }
.reader_selection_icon:hover {
color: #000; }
.reader_meta {
padding: 10px; }
.reader_meta_header {
margin: 0;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
font-weight: 400;
color: #999; }
.reader_meta_tags {
margin-top: 5px;
font-size: 0; }
.reader_meta_tags_item {
display: inline-block;
height: 16px;
line-height: 16px;
border-radius: 8px;
border: 1px solid #eee;
padding: 0 10px;
font-size: 11px;
color: #666;
text-decoration: none;
background: #fff;
overflow: hidden;
margin: 0 3px 3px 0; }
.reader_meta_tags_item:hover {
cursor: pointer;
background: #f6f6f6;
border-color: #ddd;
color: #666; }
.reader_meta_tags_item.is-tag {
font-style: italic; }
.reader_meta_tags_item.is-add {
border-style: dashed;
color: #bbb; }
.reader_head {
position: absolute;
height: 65px;
border-bottom: 1px solid #ECE5D5;
width: 100%;
box-sizing: border-box;
background: #F5F2E2; }
.reader_head_title {
font-size: 18px;
font-weight: 300;
margin: 0 40px 0 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 32px;
padding: 5px 0 0 10px;
color: #3A3326; }
.reader_head_url {
font-size: 11px;
margin: 5px 320px 0 0;
padding-left: 10px;
white-space: nowrap;
overflow: hidden; }
.reader_head_url > a {
text-decoration: none;
color: #B3B09D; }
.reader_head_url > a:hover {
text-decoration: underline; }
.reader_head_info:hover p > a {
color: #8C876C;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
.reader_head_info:hover p > a:hover {
color: #36f; }
.reader_head_actions {
position: absolute;
right: 5px;
bottom: 5px;
font-size: 0; }
.reader_head_action {
color: #A79F89;
margin-right: 10px;
vertical-align: middle;
display: inline-block;
cursor: pointer; }
.reader_head_action:hover {
color: #565141; }
.reader_head_action:active {
transform: scale(0.8); }
.reader_head_action.oo_icon-selected {
color: #5D583F; }
.reader_head_action.oo_icon-selected:hover {
color: #3f3b2a; }
.reader_segmented {
display: inline-block;
vertical-align: middle;
font-size: 0; }
.reader_segmented_item {
text-transform: uppercase;
text-decoration: none;
color: #A79F89;
font-size: 12px;
padding: 0 3px;
letter-spacing: 0.5px; }
.reader_segmented_item:hover {
color: #565141; }
.reader_segmented_item.is-selected {
color: #5D583F;
font-weight: 600;
letter-spacing: 0.3px; }
.reader_segmented_item.is-selected:hover {
color: #3f3b2a; }
| 0.653127 | 0.078219 |
* {
engine: adwaita;
padding: 1;
/* Style properties */
-GtkToolButton-icon-spacing: 6;
-GtkTextView-error-underline-color: #7c3547;
-GtkPaned-handle-size: 3;
-GtkCheckButton-indicator-size: 16;
-GtkCheckMenuItem-indicator-size: 12;
-GtkScrolledWindow-scrollbar-spacing: 0;
-GtkScrolledWindow-scrollbars-within-bevel: 1;
-GtkToolItemGroup-expander-size: 12;
-GtkExpander-expander-size: 12;
-GtkToolbar-internal-padding: 4;
-GtkMenu-horizontal-padding: 0;
-GtkMenu-vertical-padding: 0;
-GtkWidget-link-color: @link_color;
-GtkWidget-visited-link-color: @link_color;
-GtkIMHtml-hyperlink-color: @link_color;
-GtkHTML-link-color: @link_color;
-GtkWidget-wide-separators: 1;
-WnckTasklist-fade-overlay-rect: 0;
-GtkEntry-inner-border: 1;
-GtkEntry-progress-border: 1;
/* Style */
background-color: #e6e6e3;
color: #444;
border-radius: 3;
-GtkWidget-focus-padding: 2;
-GtkWidget-focus-line-width: 0;
-adwaita-focus-border-color: #ccc;
-adwaita-focus-border-radius: 3;
-adwaita-focus-fill-color: none;
-adwaita-focus-border-gradient: none;
-adwaita-focus-border-dashes: 0;
}
/***************
* Base States *
***************/
*:hover {
background-color: #ddd;
color: #444;
}
*:selected {
background-color: #bbb;
color: #444;
}
*:selected:focused {
background-color: #eee;
color: #444;
}
*:insensitive {
background-color: #eee;
color: #bbb;
}
*:active {
background-color: #eee;
color: #444;
}
.background {
}
.tooltip {
padding: 4 4;
border-width: 1;
border-style: solid;
border-color: #777;
background-color: #e6e6e3;
color: #444;
}
.grip {
background-color: #aaa;
}
.pane-separator {
background-color: #e6e6e3;
border-color: #e6e6e3;
}
.pane-separator:prelight,
.pane-separator:selected {
background-color: #e6e6e3;
border-color: #e6e6e3;
}
/****************
* Text Entries *
****************/
.entry,
.toolbar.entry {
background-color: #fff;
background-image: none;
border-radius: 3;
border-width: 1;
border-style: solid;
border-color: #bbb;
padding: 3;
}
.entry:focused {
border-color: #bbb;
background-color: #fff;
color: #444;
}
.entry:insensitive {
background-color: #ededeb;
border-color: #ccc;
color: #888;
}
.entry.progressbar {
background-color: #333;
color: #333;
border-width: 1;
border-radius: 1;
border-color: #333;
}
/*****************
* GtkSpinButton *
*****************/
.spinbutton.button,
.spinbutton.button:insensitive,
.spinbutton.button:prelight,
.spinbutton.button:active {
background-image: none;
background-color: @theme_base_color;
border-width: 1;
border-style: none;
}
.spinbutton {
padding: 3 2;
}
/****************
* Progress bar *
****************/
GtkProgressBar.progressbar {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@progressbar_background_a),
to (@progressbar_background_b));
border-radius: 4;
border-style: solid;
border-color: #888;
}
GtkProgressBar.trough {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@trough_progressbar_color_a),
to (@trough_progressbar_color_b));
border-color: #bbb;
border-width: 1;
border-radius: 4;
border-style: solid;
padding: 2;
}
/************
* GtkScale *
************/
GtkScale {
-GtkScale-slider-length: 15;
-GtkRange-slider-width: 15;
-GtkRange-trough-border: 0;
}
GtkScale.slider {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.slider:insensitive {
border-width: 1;
border-radius: 3;
border-style: solid;
border-color: #ccc;
background-color: #eee;
background-image: none;
}
GtkScale.scale-has-marks-below.slider.horizontal {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.scale-has-marks-below.slider.vertical {
-adwaita-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (@tab_gradient_color_c),
to (@tab_gradient_color_c));
}
GtkScale.scale-has-marks-above.slider.horizontal {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.scale-has-marks-above.slider.vertical {
-adwaita-border-gradient: -gtk-gradient (linear,
right top, left top,
from (@tab_gradient_color_c),
to (@tab_gradient_color_c));
}
GtkScale.trough {
border-radius: 1;
border-color: #b6b8b0;
}
GtkScale.trough:insensitive {
background-color: #eee;
border-color: #ccc;
}
GtkScale.trough.horizontal {
background-color: #cecfca;
}
GtkScale.trough.vertical {
background-color: #cecfca;
}
GtkScale.progressbar {
background-color: #783644;
border-color: #a2495c;
border-width: 1;
border-radius: 1;
border-style: solid;
}
GtkScale.mark {
background-color: #202020;
border-color: #111;
border-width: 1;
border-radius: 1;
border-style: solid;
}
GtkFrame,
GtkCalendar {
padding: 2;
}
.frame {
color: lighter (@theme_fg_color);
border-style: none;
border-width: 0;
}
/*****************
* Notebooks and *
* tabs *
*****************/
.notebook {
padding: 4;
border-color: #bbb;
border-style: solid;
border-width: 1;
border-radius: 0;
background-color: #e6e6e3;
color: #666;
-GtkNotebook-tab-overlap: 0;
-GtkNotebook-tab-curvature: 2;
}
.notebook tab {
border-radius: 0;
border-width: 1;
border-color: #bbb;
border-style: solid;
padding: 3 8 0;
background-color: #cecfca;
-adwaita-focus-border-radius: 4;
}
.notebook tab:active {
border-width: 1;
border-color: #bbb;
border-style: solid;
border-radius:6;
-adwaita-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (@highlighted_border),
to (@highlighted_border));
-adwaita-selected-tab-color: #e6e7e2;
background-color: #e6e7e2;
color: #444;
}
.notebook tab .button,
.notebook tab .button:hover,
.notebook tab .button:hover:active {
border-style: none;
background-color: alpha (@theme_bg_color, 0.0);
background-image: none;
}
/**************
* ComboBoxes *
**************/
GtkComboBox {
padding: 1 2;
-GtkWidget-focus-padding: 0;
-GtkWidget-focus-line-width: 0;
-GtkComboBox-arrow-scaling: 0.5;
-GtkComboBox-shadow-type: 2;
}
GtkComboBox .button {
color: @internal_element_color;
padding: 0;
}
GtkComboBox .button:prelight {
color: shade (@internal_element_color, 0.66);
}
/**************
* Scrollbars *
**************/
.scrollbar {
border-style: solid;
-GtkRange-trough-border: 1;
-GtkRange-arrow-scaling: 0.444;
-GtkRange-slider-width: 13;
-GtkRange-stepper-size: 15;
-GtkScrollbar-min-slider-length: 35;
-GtkRange-stepper-spacing: 1;
-GtkRange-trough-under-steppers: 2;
}
.scrollbar.trough {
background-image: -gtk-gradient (linear,
right top, left top,
from (@trough_bg_color_b),
to (@trough_bg_color_a));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
.scrollbar.slider {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
border-radius: 8;
}
.scrollbar.button {
background-color: #e6e6e3;
border-width: 1;
border-color: #e6e6e3;
border-radius: 0;
}
.scrollbar.slider:prelight {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_prelight_right),
to (@scrollbar_prelight_left));
border-style: solid;
border-color: #bbb;
border-radius: 8;
border-width: 1;
}
.scrollbar.slider:prelight:active {
background-color: #c5c5c5;
}
.scrollbar.button {
color: #e6e6e3;
background-color: #e6e6e3;
background-image: none;
}
.scrollbar.button:prelight {
background-color: #e6e6e3;
background-image: none;
border-color: #e6e6e3;
color: #e6e6e3;
}
.scrollbar.button:prelight:active {
background-image: none;
background-color: #e6e6e3;
border-color: #aaa;
color: #e6e6e3;
}
.scrollbar.button:insensitive {
background-image: none;
color: #e6e6e3;
background-color: #e6e6e3;
border-color: #e6e6e3;
}
.scrollbar.slider:insensitive {
background-color: #e6e6e3;
}
.scrollbar.trough:insensitive {
background-color: #e6e6e3;
}
/***********
* Buttons *
***********/
.button {
padding: 4 8;
-adwaita-focus-fill-color: alpha (@theme_base_color, 0.35);
-adwaita-focus-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (alpha (@keyboard_focus_border_a, 0.62)),
to (alpha (@keyboard_focus_border_b, 0.62)));
-adwaita-focus-border-radius: 1;
-adwaita-focus-border-dashes: 0;
-GtkWidget-focus-line-width: 0;
-GtkButton-child-displacement-x: 1;
-GtkButton-child-displacement-y: 1;
-GtkButton-image-spacing: 4;
-GtkButton-interior-focus: true;
-GtkButton-default-border: 1;
-GtkButton-inner-border: 0;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button.png");
}
.button:hover {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:active {
background-image: url ("assets/button.png");
color: #111;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.toolbar.button:active {
background-image: url ("assets/button.png");
color: #111;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:hover:active {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.toolbar.button:hover:active {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:insensitive {
border-width: 1;
border-color: #ddd;
border-style: solid;
background-image: none;
background-color: #eee;
color: #bbb;
}
.button.default {
border-width: 1;
border-color: #ccc;
border-style: solid;
}
/*********
* Menus *
*********/
/* this controls the general appearance of the menubar */
.menubar {
background-color: #e6e6e3;
border-width: 0;
border-style: none;
border-color: #aaa;
padding: 4;
color: #444;
-GtkWidget-window-dragging: true;
-GtkMenuBar-internal-padding: 0;
}
.menubar.menuitem:prelight {
background-color: #383838;
border-radius: 0;
border-width: 1;
border-style: none;
border-color: #444;
color: #fff;
}
.menubar.menuitem {
border-width: 1;
border-style: none;
color: #444;
}
GtkTreeMenu .menuitem * {
color: #333;
}
.menu {
padding: 2;
background-color: #f5f5f5;
color: #444;
border-style: solid;
border-width: 1;
border-radius: 0;
border-color: #aaa;
-GtkMenuItem-arrow-scaling: 0.4;
}
.menuitem {
-adwaita-menuitem-arrow-color: #666;
}
.menuitem.accelerator {
color: #666;
}
.menuitem.accelerator:prelight,
.menuitem.accelerator:active {
color: #777;
}
.menuitem:active,
.menuitem:prelight {
border-width: 1;
border-style: solid;
border-color: #ccc;
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@button_active_gradient_color_a),
to (@button_active_gradient_color_b));
color: #444;
border-radius: 2;
}
.menu.separator {
border-color: #ddd;
-GtkSeparatorMenuItem-horizontal-padding: 0;
-GtkWidget-separator-height: 1;
}
/* menu radio and check items are drawn differently */
.menu.check:active {
color: #444;
}
.menu.radio:active {
color: #444;
}
.menu.check:prelight {
color: #222;
}
.menu.radio:prelight {
color: #222;
}
/*************************
* Check and Radio items *
*************************/
/* draw regular check and radio items using our SVG assets */
.check,
.check row:selected,
.check row:selected:focused {
background-image: url ("assets/checkbox-unchecked.svg");
}
.check:insensitive,
.check row:selected:insensitive,
.check row:selected:focused:insensitive {
background-image: url ("assets/checkbox-unchecked-insensitive.svg");
}
.check:active,
.check row:selected:active,
.check row:selected:focused:active {
background-image: url ("assets/checkbox-checked.svg");
}
.check:active:insensitive,
.check row:selected:active:insensitive,
.check row:selected:focused:active:insensitive
{
background-image: url ("assets/checkbox-checked-insensitive.svg");
}
.check:inconsistent,
.check row:selected:inconsistent,
.check row:selected:focused:inconsistent {
background-image: url ("assets/checkbox-mixed.svg");
}
.radio,
.radio row:selected,
.radio row:selected:focused {
background-image: url ("assets/radio-unselected.svg");
}
.radio:insensitive,
.radio row:selected:insensitive,
.radio row:selected:focused:insensitive {
background-image: url ("assets/radio-unselected-insensitive.svg");
}
.radio:active,
.radio row:selected:active,
.radio row:selected:focused:active {
background-image: url ("assets/radio-selected.svg");
}
.radio:active:insensitive,
.radio row:selected:active:insensitive,
.radio row:selected:focused:active:insensitive {
background-image: url ("assets/radio-selected-insensitive.svg");
}
.radio:inconsistent,
.radio row:selected:inconsistent,
.radio row:selected:focused:inconsistent {
background-image: url ("assets/radio-mixed.svg");
}
/************
* Toolbars *
************/
.toolbar {
border-style: none;
background-color: #e6e6e3;
border-width: 0;
border-radius: 0;
padding: 3;
}
.toolbar.button:active {
border-style: solid;
border-radius: 3;
border-color: #ccc;
color: #222;
}
.toolbar.button:hover {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.toolbar.button:active:prelight {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.toolbar:insensitive {
color: #888;
}
/********************
* Primary Toolbars *
********************/
.primary-toolbar.toolbar {
background-color: #e6e6e3;
color: #444;
-GtkWidget-window-dragging: true;
-GtkToolbar-button-relief: 2;
}
.primary-toolbar.toolbar:insensitive {
background-image: none;
background-color: shade (@theme_bg_color, 0.97);
border-style: solid;
border-width: 1;
border-color: #bbb;
}
/* primary toolbar buttons */
.primary-toolbar.toolbar.button {
padding: 4;
background-image: none;
background-color: #e6e6e3;
color: #666;
border-style: none;
border-width: 1;
color: #444;
}
.primary-toolbar.toolbar.button:insensitive {
background-image: none;
background-color: #e6e6e3;
color: #888;
border-style: none;
border-width: 1;
}
.primary-toolbar.toolbar.button:hover {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.button:active {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button.png");
color: #444;
}
.primary-toolbar.toolbar.button:active:prelight {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.button:active:insensitive {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.primary-toolbar.toolbar GtkSeparatorToolItem {
-GtkWidget-wide-separators: 1;
-GtkWidget-separator-width: 1;
border-style: solid;
border-width: 1;
border-color: #ccc;
}
/* primary toolbar raised buttons */
.primary-toolbar.toolbar.raised.button,
.primary-toolbar.toolbar.raised.button:insensitive {
background-color: #e6e6e3;
background-image: none;
color: #666;
border-style: none;
border-width: 1;
}
.primary-toolbar.toolbar.raised.button:hover {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.raised.button:hover:active,
.primary-toolbar.toolbar.raised.button:active {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
/* progressbars on primary toolbar entries are special */
.primary-toolbar.toolbar.entry.progressbar {
background-color: #b9b8b6;
background-image: none;
}
/*******************
* Inline toolbars *
*******************/
.inline-toolbar.toolbar {
border-width: 1;
border-radius: 3;
border-style: solid;
border-color: #bbb;
background-image: -gtk-gradient (linear,
right top, right bottom,
from (@scrollbar_left),
to (@scrollbar_right));
}
/*************
* GtkSwitch *
*************/
GtkSwitch {
font: bold condensed 10;
}
GtkSwitch.trough {
color: #444;
background-image: -gtk-gradient (linear,
right top, left top,
from (@trough_bg_color_b),
to (@trough_bg_color_a));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
GtkSwitch.trough:active {
color: #444;
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@trough_bg_color_a),
to (@trough_bg_color_b));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
GtkSwitch.trough:insensitive {
color: #ccc;
background-image: none;
background-color: #eee;
border-color: #ccc;
}
GtkSwitch.slider {
border-radius: 8;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
-adwaita-switch-grip-color: shade (@switch_slider_color, 0.37);
}
GtkSwitch.slider:active {
border-color: #bbb;
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
}
GtkSwitch.slider:insensitive {
border-radius: 8;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-color: #eee;
}
GtkStatusbar {
padding: 5;
color: @theme_fg_color;
-GtkStatusbar-shadow-type: none;
}
GtkScrolledWindow.frame {
border-style: solid;
border-color: #bbb;
border-width: 1;
border-radius: 3;
}
GtkViewport,
GtkIconView {
border-radius: 0;
padding: 0;
}
GtkIconView.view.cell:selected,
GtkIconView.view.cell:selected:focused {
background-color: @theme_selected_bg_color;
border-radius: 4;
-adwaita-focus-border-color: @progressbar_border;
-adwaita-focus-border-radius: 3;
-adwaita-focus-border-dashes: 0;
}
.view {
background-color: #fff;
color: @theme_fg_color;
border-radius: 2;
border-width: 1;
border-color: #999;
border-style: solid;
}
GtkTreeView {
-GtkTreeView-vertical-separator: 0;
-GtkTreeView-expander-size: 8;
-GtkWidget-focus-line-width: 1;
-adwaita-focus-border-radius: 3;
-adwaita-focus-border-dashes: 0;
-adwaita-focus-border-color: #ccc;
}
GtkTreeMenu.menu {
background-color: #eee;
color: #444;
}
GtkTreeView.separator {
background-color: darker (@theme_bg_color);
}
column-header {
padding: 1 2;
}
column-header .button {
border-style: none;
border-width: 0;
border-color: #ccc;
border-radius: 0;
}
row:hover {
background-color: #eee;
border-width: 0;
}
row:insensitive {
border-width: 0;
}
row:selected:focused {
border-width: 0;
background-color: #eee;
}
row:selected {
border-width: 0;
background-color: #eee;
}
.cell {
color: @theme_text_color;
padding: 2;
border-width: 0;
}
.cell:selected {
background-color: #eee;
}
.expander {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
.expander:active {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
.expander:prelight {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #f3f3e9;
}
.expander row:selected,
.expander row:selected:focused {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
/* Calendars */
GtkCalendar.view {
border-radius: 3;
border-style: solid;
border-width: 1;
padding: 2;
}
GtkCalendar.header {
border-radius: 0;
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (shade (@theme_bg_color, 1.04)),
to (shade (@theme_bg_color, 0.89)));
border-width: 0;
}
GtkCalendar.button {
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (rgba (0, 0, 0, 0)),
to (rgba (0, 0, 0, 0)));
}
.highlight,
GtkCalendar.highlight {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
border-radius: 0;
padding: 0;
border-width: 0;
}
.info {
background-color: @info_bg_color;
color: @info_fg_color;
}
.warning {
background-color: @warning_bg_color;
color: @warning_fg_color;
}
.question {
background-color: @question_bg_color;
color: @question_fg_color;
}
.error {
background-color: @error_bg_color;
color: @error_fg_color;
}
.dim-label {
color: mix (@theme_fg_color, @theme_bg_color, 0.50);
}
.sidebar,
.sidebar.view {
background-color: #e6e6e3;
color: #444;
}
ApDocView, /* Abiword */
EogScrollView, /* Eog */
CheeseThumbView /* Cheese */
{
background-color: @chrome_bg_color;
-EogScrollView-shadow-type: none;
}
/* gnome-terminal */
TerminalScreen {
background-color: @theme_base_color;
color: @theme_fg_color;
-TerminalScreen-background-darkness: 0.95;
}
/**********************
* Fallback Mode Panel
**********************/
PanelToplevel {
background-color: #1b1b1b;
color: #ccc;
}
PanelApplet {
background-color: #1b1b1b;
color: #ccc;
}
PanelWidget {
background-color: #1b1b1b;
color: #ccc;
}
PanelMenuBar.menubar {
background-color: #1b1b1b;
color: #ccc;
}
PanelAppletFrame {
background-color: #3a3a3a;
color: #fff;
}
.gnome-panel-menu-bar {
background-color: #1b1b1b;
color: #ccc;
}
PanelApplet > GtkMenuBar.menubar {
background-color: #1b1b1b;
color: #ccc;
}
ClockBox,
.gnome-panel-menu-bar {
font: bold;
}
PanelApplet > GtkMenuBar.menubar.menuitem:prelight,
.gnome-panel-menu-bar.menuitem:prelight {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
/* panel buttons (clock, tasklist etc) */
PanelApplet GtkToggleButton {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
PanelApplet GtkToggleButton:prelight:active,
PanelApplet GtkToggleButton:active {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
PanelApplet GtkToggleButton:prelight {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #888;
}
NaTrayApplet {
-NaTrayApplet-icon-padding: 12;
-NaTrayApplet-icon-size: 16;
}
WnckPager, WnckTasklist {
background-color: @os_chrome_selected_bg_color;
background-image: none;
color: @os_chrome_fg_color;
}
GsmFailWhaleDialog,
GsmFailWhaleDialog * {
background-color: @os_chrome_bg_color;
background-image: none;
color: @os_chrome_fg_color;
}
|
gtk/naos/gtk-3.0/gtk-widgets.css
|
* {
engine: adwaita;
padding: 1;
/* Style properties */
-GtkToolButton-icon-spacing: 6;
-GtkTextView-error-underline-color: #7c3547;
-GtkPaned-handle-size: 3;
-GtkCheckButton-indicator-size: 16;
-GtkCheckMenuItem-indicator-size: 12;
-GtkScrolledWindow-scrollbar-spacing: 0;
-GtkScrolledWindow-scrollbars-within-bevel: 1;
-GtkToolItemGroup-expander-size: 12;
-GtkExpander-expander-size: 12;
-GtkToolbar-internal-padding: 4;
-GtkMenu-horizontal-padding: 0;
-GtkMenu-vertical-padding: 0;
-GtkWidget-link-color: @link_color;
-GtkWidget-visited-link-color: @link_color;
-GtkIMHtml-hyperlink-color: @link_color;
-GtkHTML-link-color: @link_color;
-GtkWidget-wide-separators: 1;
-WnckTasklist-fade-overlay-rect: 0;
-GtkEntry-inner-border: 1;
-GtkEntry-progress-border: 1;
/* Style */
background-color: #e6e6e3;
color: #444;
border-radius: 3;
-GtkWidget-focus-padding: 2;
-GtkWidget-focus-line-width: 0;
-adwaita-focus-border-color: #ccc;
-adwaita-focus-border-radius: 3;
-adwaita-focus-fill-color: none;
-adwaita-focus-border-gradient: none;
-adwaita-focus-border-dashes: 0;
}
/***************
* Base States *
***************/
*:hover {
background-color: #ddd;
color: #444;
}
*:selected {
background-color: #bbb;
color: #444;
}
*:selected:focused {
background-color: #eee;
color: #444;
}
*:insensitive {
background-color: #eee;
color: #bbb;
}
*:active {
background-color: #eee;
color: #444;
}
.background {
}
.tooltip {
padding: 4 4;
border-width: 1;
border-style: solid;
border-color: #777;
background-color: #e6e6e3;
color: #444;
}
.grip {
background-color: #aaa;
}
.pane-separator {
background-color: #e6e6e3;
border-color: #e6e6e3;
}
.pane-separator:prelight,
.pane-separator:selected {
background-color: #e6e6e3;
border-color: #e6e6e3;
}
/****************
* Text Entries *
****************/
.entry,
.toolbar.entry {
background-color: #fff;
background-image: none;
border-radius: 3;
border-width: 1;
border-style: solid;
border-color: #bbb;
padding: 3;
}
.entry:focused {
border-color: #bbb;
background-color: #fff;
color: #444;
}
.entry:insensitive {
background-color: #ededeb;
border-color: #ccc;
color: #888;
}
.entry.progressbar {
background-color: #333;
color: #333;
border-width: 1;
border-radius: 1;
border-color: #333;
}
/*****************
* GtkSpinButton *
*****************/
.spinbutton.button,
.spinbutton.button:insensitive,
.spinbutton.button:prelight,
.spinbutton.button:active {
background-image: none;
background-color: @theme_base_color;
border-width: 1;
border-style: none;
}
.spinbutton {
padding: 3 2;
}
/****************
* Progress bar *
****************/
GtkProgressBar.progressbar {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@progressbar_background_a),
to (@progressbar_background_b));
border-radius: 4;
border-style: solid;
border-color: #888;
}
GtkProgressBar.trough {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@trough_progressbar_color_a),
to (@trough_progressbar_color_b));
border-color: #bbb;
border-width: 1;
border-radius: 4;
border-style: solid;
padding: 2;
}
/************
* GtkScale *
************/
GtkScale {
-GtkScale-slider-length: 15;
-GtkRange-slider-width: 15;
-GtkRange-trough-border: 0;
}
GtkScale.slider {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.slider:insensitive {
border-width: 1;
border-radius: 3;
border-style: solid;
border-color: #ccc;
background-color: #eee;
background-image: none;
}
GtkScale.scale-has-marks-below.slider.horizontal {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.scale-has-marks-below.slider.vertical {
-adwaita-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (@tab_gradient_color_c),
to (@tab_gradient_color_c));
}
GtkScale.scale-has-marks-above.slider.horizontal {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
}
GtkScale.scale-has-marks-above.slider.vertical {
-adwaita-border-gradient: -gtk-gradient (linear,
right top, left top,
from (@tab_gradient_color_c),
to (@tab_gradient_color_c));
}
GtkScale.trough {
border-radius: 1;
border-color: #b6b8b0;
}
GtkScale.trough:insensitive {
background-color: #eee;
border-color: #ccc;
}
GtkScale.trough.horizontal {
background-color: #cecfca;
}
GtkScale.trough.vertical {
background-color: #cecfca;
}
GtkScale.progressbar {
background-color: #783644;
border-color: #a2495c;
border-width: 1;
border-radius: 1;
border-style: solid;
}
GtkScale.mark {
background-color: #202020;
border-color: #111;
border-width: 1;
border-radius: 1;
border-style: solid;
}
GtkFrame,
GtkCalendar {
padding: 2;
}
.frame {
color: lighter (@theme_fg_color);
border-style: none;
border-width: 0;
}
/*****************
* Notebooks and *
* tabs *
*****************/
.notebook {
padding: 4;
border-color: #bbb;
border-style: solid;
border-width: 1;
border-radius: 0;
background-color: #e6e6e3;
color: #666;
-GtkNotebook-tab-overlap: 0;
-GtkNotebook-tab-curvature: 2;
}
.notebook tab {
border-radius: 0;
border-width: 1;
border-color: #bbb;
border-style: solid;
padding: 3 8 0;
background-color: #cecfca;
-adwaita-focus-border-radius: 4;
}
.notebook tab:active {
border-width: 1;
border-color: #bbb;
border-style: solid;
border-radius:6;
-adwaita-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (@highlighted_border),
to (@highlighted_border));
-adwaita-selected-tab-color: #e6e7e2;
background-color: #e6e7e2;
color: #444;
}
.notebook tab .button,
.notebook tab .button:hover,
.notebook tab .button:hover:active {
border-style: none;
background-color: alpha (@theme_bg_color, 0.0);
background-image: none;
}
/**************
* ComboBoxes *
**************/
GtkComboBox {
padding: 1 2;
-GtkWidget-focus-padding: 0;
-GtkWidget-focus-line-width: 0;
-GtkComboBox-arrow-scaling: 0.5;
-GtkComboBox-shadow-type: 2;
}
GtkComboBox .button {
color: @internal_element_color;
padding: 0;
}
GtkComboBox .button:prelight {
color: shade (@internal_element_color, 0.66);
}
/**************
* Scrollbars *
**************/
.scrollbar {
border-style: solid;
-GtkRange-trough-border: 1;
-GtkRange-arrow-scaling: 0.444;
-GtkRange-slider-width: 13;
-GtkRange-stepper-size: 15;
-GtkScrollbar-min-slider-length: 35;
-GtkRange-stepper-spacing: 1;
-GtkRange-trough-under-steppers: 2;
}
.scrollbar.trough {
background-image: -gtk-gradient (linear,
right top, left top,
from (@trough_bg_color_b),
to (@trough_bg_color_a));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
.scrollbar.slider {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
border-style: solid;
border-color: #bbb;
border-width: 1;
border-radius: 8;
}
.scrollbar.button {
background-color: #e6e6e3;
border-width: 1;
border-color: #e6e6e3;
border-radius: 0;
}
.scrollbar.slider:prelight {
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_prelight_right),
to (@scrollbar_prelight_left));
border-style: solid;
border-color: #bbb;
border-radius: 8;
border-width: 1;
}
.scrollbar.slider:prelight:active {
background-color: #c5c5c5;
}
.scrollbar.button {
color: #e6e6e3;
background-color: #e6e6e3;
background-image: none;
}
.scrollbar.button:prelight {
background-color: #e6e6e3;
background-image: none;
border-color: #e6e6e3;
color: #e6e6e3;
}
.scrollbar.button:prelight:active {
background-image: none;
background-color: #e6e6e3;
border-color: #aaa;
color: #e6e6e3;
}
.scrollbar.button:insensitive {
background-image: none;
color: #e6e6e3;
background-color: #e6e6e3;
border-color: #e6e6e3;
}
.scrollbar.slider:insensitive {
background-color: #e6e6e3;
}
.scrollbar.trough:insensitive {
background-color: #e6e6e3;
}
/***********
* Buttons *
***********/
.button {
padding: 4 8;
-adwaita-focus-fill-color: alpha (@theme_base_color, 0.35);
-adwaita-focus-border-gradient: -gtk-gradient (linear,
left top, left bottom,
from (alpha (@keyboard_focus_border_a, 0.62)),
to (alpha (@keyboard_focus_border_b, 0.62)));
-adwaita-focus-border-radius: 1;
-adwaita-focus-border-dashes: 0;
-GtkWidget-focus-line-width: 0;
-GtkButton-child-displacement-x: 1;
-GtkButton-child-displacement-y: 1;
-GtkButton-image-spacing: 4;
-GtkButton-interior-focus: true;
-GtkButton-default-border: 1;
-GtkButton-inner-border: 0;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button.png");
}
.button:hover {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:active {
background-image: url ("assets/button.png");
color: #111;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.toolbar.button:active {
background-image: url ("assets/button.png");
color: #111;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:hover:active {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.toolbar.button:hover:active {
background-image: url ("assets/button-hover.png");
color: #333;
border-radius: 3;
border-width: 1;
border-color: #ccc;
border-style: solid;
}
.button:insensitive {
border-width: 1;
border-color: #ddd;
border-style: solid;
background-image: none;
background-color: #eee;
color: #bbb;
}
.button.default {
border-width: 1;
border-color: #ccc;
border-style: solid;
}
/*********
* Menus *
*********/
/* this controls the general appearance of the menubar */
.menubar {
background-color: #e6e6e3;
border-width: 0;
border-style: none;
border-color: #aaa;
padding: 4;
color: #444;
-GtkWidget-window-dragging: true;
-GtkMenuBar-internal-padding: 0;
}
.menubar.menuitem:prelight {
background-color: #383838;
border-radius: 0;
border-width: 1;
border-style: none;
border-color: #444;
color: #fff;
}
.menubar.menuitem {
border-width: 1;
border-style: none;
color: #444;
}
GtkTreeMenu .menuitem * {
color: #333;
}
.menu {
padding: 2;
background-color: #f5f5f5;
color: #444;
border-style: solid;
border-width: 1;
border-radius: 0;
border-color: #aaa;
-GtkMenuItem-arrow-scaling: 0.4;
}
.menuitem {
-adwaita-menuitem-arrow-color: #666;
}
.menuitem.accelerator {
color: #666;
}
.menuitem.accelerator:prelight,
.menuitem.accelerator:active {
color: #777;
}
.menuitem:active,
.menuitem:prelight {
border-width: 1;
border-style: solid;
border-color: #ccc;
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@button_active_gradient_color_a),
to (@button_active_gradient_color_b));
color: #444;
border-radius: 2;
}
.menu.separator {
border-color: #ddd;
-GtkSeparatorMenuItem-horizontal-padding: 0;
-GtkWidget-separator-height: 1;
}
/* menu radio and check items are drawn differently */
.menu.check:active {
color: #444;
}
.menu.radio:active {
color: #444;
}
.menu.check:prelight {
color: #222;
}
.menu.radio:prelight {
color: #222;
}
/*************************
* Check and Radio items *
*************************/
/* draw regular check and radio items using our SVG assets */
.check,
.check row:selected,
.check row:selected:focused {
background-image: url ("assets/checkbox-unchecked.svg");
}
.check:insensitive,
.check row:selected:insensitive,
.check row:selected:focused:insensitive {
background-image: url ("assets/checkbox-unchecked-insensitive.svg");
}
.check:active,
.check row:selected:active,
.check row:selected:focused:active {
background-image: url ("assets/checkbox-checked.svg");
}
.check:active:insensitive,
.check row:selected:active:insensitive,
.check row:selected:focused:active:insensitive
{
background-image: url ("assets/checkbox-checked-insensitive.svg");
}
.check:inconsistent,
.check row:selected:inconsistent,
.check row:selected:focused:inconsistent {
background-image: url ("assets/checkbox-mixed.svg");
}
.radio,
.radio row:selected,
.radio row:selected:focused {
background-image: url ("assets/radio-unselected.svg");
}
.radio:insensitive,
.radio row:selected:insensitive,
.radio row:selected:focused:insensitive {
background-image: url ("assets/radio-unselected-insensitive.svg");
}
.radio:active,
.radio row:selected:active,
.radio row:selected:focused:active {
background-image: url ("assets/radio-selected.svg");
}
.radio:active:insensitive,
.radio row:selected:active:insensitive,
.radio row:selected:focused:active:insensitive {
background-image: url ("assets/radio-selected-insensitive.svg");
}
.radio:inconsistent,
.radio row:selected:inconsistent,
.radio row:selected:focused:inconsistent {
background-image: url ("assets/radio-mixed.svg");
}
/************
* Toolbars *
************/
.toolbar {
border-style: none;
background-color: #e6e6e3;
border-width: 0;
border-radius: 0;
padding: 3;
}
.toolbar.button:active {
border-style: solid;
border-radius: 3;
border-color: #ccc;
color: #222;
}
.toolbar.button:hover {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.toolbar.button:active:prelight {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.toolbar:insensitive {
color: #888;
}
/********************
* Primary Toolbars *
********************/
.primary-toolbar.toolbar {
background-color: #e6e6e3;
color: #444;
-GtkWidget-window-dragging: true;
-GtkToolbar-button-relief: 2;
}
.primary-toolbar.toolbar:insensitive {
background-image: none;
background-color: shade (@theme_bg_color, 0.97);
border-style: solid;
border-width: 1;
border-color: #bbb;
}
/* primary toolbar buttons */
.primary-toolbar.toolbar.button {
padding: 4;
background-image: none;
background-color: #e6e6e3;
color: #666;
border-style: none;
border-width: 1;
color: #444;
}
.primary-toolbar.toolbar.button:insensitive {
background-image: none;
background-color: #e6e6e3;
color: #888;
border-style: none;
border-width: 1;
}
.primary-toolbar.toolbar.button:hover {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.button:active {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button.png");
color: #444;
}
.primary-toolbar.toolbar.button:active:prelight {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.button:active:insensitive {
border-style: solid;
border-radius: 3;
border-color: #ccc;
}
.primary-toolbar.toolbar GtkSeparatorToolItem {
-GtkWidget-wide-separators: 1;
-GtkWidget-separator-width: 1;
border-style: solid;
border-width: 1;
border-color: #ccc;
}
/* primary toolbar raised buttons */
.primary-toolbar.toolbar.raised.button,
.primary-toolbar.toolbar.raised.button:insensitive {
background-color: #e6e6e3;
background-image: none;
color: #666;
border-style: none;
border-width: 1;
}
.primary-toolbar.toolbar.raised.button:hover {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
.primary-toolbar.toolbar.raised.button:hover:active,
.primary-toolbar.toolbar.raised.button:active {
border-radius: 6;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #444;
}
/* progressbars on primary toolbar entries are special */
.primary-toolbar.toolbar.entry.progressbar {
background-color: #b9b8b6;
background-image: none;
}
/*******************
* Inline toolbars *
*******************/
.inline-toolbar.toolbar {
border-width: 1;
border-radius: 3;
border-style: solid;
border-color: #bbb;
background-image: -gtk-gradient (linear,
right top, right bottom,
from (@scrollbar_left),
to (@scrollbar_right));
}
/*************
* GtkSwitch *
*************/
GtkSwitch {
font: bold condensed 10;
}
GtkSwitch.trough {
color: #444;
background-image: -gtk-gradient (linear,
right top, left top,
from (@trough_bg_color_b),
to (@trough_bg_color_a));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
GtkSwitch.trough:active {
color: #444;
background-image: -gtk-gradient (linear,
left top, left bottom,
from (@trough_bg_color_a),
to (@trough_bg_color_b));
border-width: 1;
border-color: #e6e7e2;
border-radius: 8;
}
GtkSwitch.trough:insensitive {
color: #ccc;
background-image: none;
background-color: #eee;
border-color: #ccc;
}
GtkSwitch.slider {
border-radius: 8;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
-adwaita-switch-grip-color: shade (@switch_slider_color, 0.37);
}
GtkSwitch.slider:active {
border-color: #bbb;
background-image: -gtk-gradient (linear,
right top, left top,
from (@scrollbar_right),
to (@scrollbar_left));
}
GtkSwitch.slider:insensitive {
border-radius: 8;
border-width: 1;
border-color: #ccc;
border-style: solid;
background-color: #eee;
}
GtkStatusbar {
padding: 5;
color: @theme_fg_color;
-GtkStatusbar-shadow-type: none;
}
GtkScrolledWindow.frame {
border-style: solid;
border-color: #bbb;
border-width: 1;
border-radius: 3;
}
GtkViewport,
GtkIconView {
border-radius: 0;
padding: 0;
}
GtkIconView.view.cell:selected,
GtkIconView.view.cell:selected:focused {
background-color: @theme_selected_bg_color;
border-radius: 4;
-adwaita-focus-border-color: @progressbar_border;
-adwaita-focus-border-radius: 3;
-adwaita-focus-border-dashes: 0;
}
.view {
background-color: #fff;
color: @theme_fg_color;
border-radius: 2;
border-width: 1;
border-color: #999;
border-style: solid;
}
GtkTreeView {
-GtkTreeView-vertical-separator: 0;
-GtkTreeView-expander-size: 8;
-GtkWidget-focus-line-width: 1;
-adwaita-focus-border-radius: 3;
-adwaita-focus-border-dashes: 0;
-adwaita-focus-border-color: #ccc;
}
GtkTreeMenu.menu {
background-color: #eee;
color: #444;
}
GtkTreeView.separator {
background-color: darker (@theme_bg_color);
}
column-header {
padding: 1 2;
}
column-header .button {
border-style: none;
border-width: 0;
border-color: #ccc;
border-radius: 0;
}
row:hover {
background-color: #eee;
border-width: 0;
}
row:insensitive {
border-width: 0;
}
row:selected:focused {
border-width: 0;
background-color: #eee;
}
row:selected {
border-width: 0;
background-color: #eee;
}
.cell {
color: @theme_text_color;
padding: 2;
border-width: 0;
}
.cell:selected {
background-color: #eee;
}
.expander {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
.expander:active {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
.expander:prelight {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #f3f3e9;
}
.expander row:selected,
.expander row:selected:focused {
color: #444;
border-style: solid;
border-width: 1;
border-color: #bbb;
background-color: #e6e6e3;
}
/* Calendars */
GtkCalendar.view {
border-radius: 3;
border-style: solid;
border-width: 1;
padding: 2;
}
GtkCalendar.header {
border-radius: 0;
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (shade (@theme_bg_color, 1.04)),
to (shade (@theme_bg_color, 0.89)));
border-width: 0;
}
GtkCalendar.button {
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (rgba (0, 0, 0, 0)),
to (rgba (0, 0, 0, 0)));
}
.highlight,
GtkCalendar.highlight {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
border-radius: 0;
padding: 0;
border-width: 0;
}
.info {
background-color: @info_bg_color;
color: @info_fg_color;
}
.warning {
background-color: @warning_bg_color;
color: @warning_fg_color;
}
.question {
background-color: @question_bg_color;
color: @question_fg_color;
}
.error {
background-color: @error_bg_color;
color: @error_fg_color;
}
.dim-label {
color: mix (@theme_fg_color, @theme_bg_color, 0.50);
}
.sidebar,
.sidebar.view {
background-color: #e6e6e3;
color: #444;
}
ApDocView, /* Abiword */
EogScrollView, /* Eog */
CheeseThumbView /* Cheese */
{
background-color: @chrome_bg_color;
-EogScrollView-shadow-type: none;
}
/* gnome-terminal */
TerminalScreen {
background-color: @theme_base_color;
color: @theme_fg_color;
-TerminalScreen-background-darkness: 0.95;
}
/**********************
* Fallback Mode Panel
**********************/
PanelToplevel {
background-color: #1b1b1b;
color: #ccc;
}
PanelApplet {
background-color: #1b1b1b;
color: #ccc;
}
PanelWidget {
background-color: #1b1b1b;
color: #ccc;
}
PanelMenuBar.menubar {
background-color: #1b1b1b;
color: #ccc;
}
PanelAppletFrame {
background-color: #3a3a3a;
color: #fff;
}
.gnome-panel-menu-bar {
background-color: #1b1b1b;
color: #ccc;
}
PanelApplet > GtkMenuBar.menubar {
background-color: #1b1b1b;
color: #ccc;
}
ClockBox,
.gnome-panel-menu-bar {
font: bold;
}
PanelApplet > GtkMenuBar.menubar.menuitem:prelight,
.gnome-panel-menu-bar.menuitem:prelight {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
/* panel buttons (clock, tasklist etc) */
PanelApplet GtkToggleButton {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
PanelApplet GtkToggleButton:prelight:active,
PanelApplet GtkToggleButton:active {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button.png");
color: #888;
}
PanelApplet GtkToggleButton:prelight {
border-radius: 3;
border-width: 1;
border-color: #222;
border-style: solid;
background-image: url ("assets/button-hover.png");
color: #888;
}
NaTrayApplet {
-NaTrayApplet-icon-padding: 12;
-NaTrayApplet-icon-size: 16;
}
WnckPager, WnckTasklist {
background-color: @os_chrome_selected_bg_color;
background-image: none;
color: @os_chrome_fg_color;
}
GsmFailWhaleDialog,
GsmFailWhaleDialog * {
background-color: @os_chrome_bg_color;
background-image: none;
color: @os_chrome_fg_color;
}
| 0.477554 | 0.159217 |
html {
-webkit-text-size-adjust: auto;
-ms-text-size-adjust: auto;
}
html,
body,
img,
form {
margin: 0px;
padding: 0px;
border: none;
letter-spacing: normal;
}
html,
body {
height: 100%;
-webkit-font-smoothing: antialiased;
}
body {
background-color: #fafafa;
}
body.inner-body {
background-color: #fff;
}
body.gray-inner {
background-color: #fafafa;
}
body,
td {
font: 14px Arial, sans-serif;
color: #000;
}
a {
color: #000;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
td {
vertical-align: top;
}
p {
padding: 0px;
margin: 0px 0px 14px 0px;
}
.pabt {
padding: 0px;
margin: 0px 0px 14px 0px;
text-align: justify;
font-size: 16px;
line-height: 30px;
}
.imgcenter1{
padding-left: 150px;
}
.imgcenter2{
padding-left: 284px;
}
object {
outline: none;
}
fieldset {
border: 0;
}
input,
select,
textarea,
button {
outline: none !important;
}
h1 {
font-size: 17px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
h2 {
font-size: 15px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
h3 {
font-size: 13px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
.clear {
clear: both;
}
.none {
line-height: 0;
}
.relative {
width: 100%;
position: relative;
}
.img-marg {
float: left;
margin: 0 10px 5px 0;
}
.float-l {
float: left;
}
.float-r {
float: right;
}
.highlight {
font-weight: bold;
}
.hfeed .posts {
margin-bottom: 10px;
}
input,
select,
button,
textarea {
outline: none;
}
.body-padding {
padding-bottom: 30px;
}
.index-page .body-padding {
padding-bottom: 0px;
}
.body-wrapper {
padding-bottom: 110px;
padding-top: 112px;
}
#top {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
z-index: 999;
}
.mobile-menu {
background: #141d1e;
display: none;
width: 100%;
position: absolute;
left: 0px;
top: 89px;
padding-top: 27px;
padding-bottom: 26px;
}
.mobile-menu li {
display: block;
padding: 0px 60px 0px 60px;
}
.mobile-menu li a {
font-size: 12px;
color: #fff;
font-family: 'Raleway';
display: block;
padding: 14px 0px 14px 0px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
border-bottom: 1px solid #1a2526;
}
.mobile-menu li a:hover {
color: #ff7200;
}
.mobile-menu li:last-child a {
border-bottom: 0px;
}
.mobile-menu li ul {
display: none;
}
.mobile-menu li li {
padding: 0px;
}
.mobile-menu li li:last-child a {
border-bottom: 1px solid #1a2526;
}
.mobile-menu li li a {
padding-left: 10px;
padding-right: 10px;
}
.fixed .mobile-menu {
top: 59px;
}
/* Bordered form */
form {
border: 3px solid #f1f1f1;
}
/* Full-width inputs */
.input-login {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
/* Add a hover effect for buttons */
button:hover {
opacity: 0.8;
}
/* Add padding to containers */
.container {
padding: 16px;
}
.form-login {
width:60%;
margin:auto;
}
.menu-btn {
float: right;
display: none;
width: 12px;
height: 10px;
background: url(../img/menu-btn.png) right top no-repeat;
margin: 4px 23px 0px 0px;
}
.wrapper-padding {
position: relative;
}
.main-cont {
width: 100%;
min-width: 300px;
/*min-height:100%;*/
}
.header-a {
height: 40px;
width: 100%;
background: #141d1e;
}
.header-b {
position: relative;
}
.header-phone {
float: left;
padding: 11px 16px 0px 16px;
height: 29px;
border-left: 1px solid #333333;
border-right: 1px solid #333333;
}
.header-phone span {
background: url(../img/icon-phone.png) left top no-repeat;
background-position: left 1px;
padding: 1px 0px 0px 25px;
font-size: 11px;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
display: inline-block;
min-height: 15px;
}
.header-phone a[href^=tel] {
color: #fff;
text-decoration: none;
}
.header-account {
float: right;
}
.header-account a {
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
display: inline-block;
border-left: 1px solid #333333;
border-right: 1px solid #333333;
padding: 14px 22px 0px 22px;
height: 26px;
}
.header-social {
float: right;
border-left: 1px solid #333333;
padding: 13px 22px 0px 25px;
height: 27px;
}
.header-social a {
display: inline-block;
width: 14px;
height: 14px;
margin: 0px 9px 0px 9px;
}
.header-social .social-twitter {
background: url(../img/head-twitter.png) left top no-repeat;
margin-left: 0px;
}
.header-social .social-facebook {
background: url(../img/head-facebook.png) left top no-repeat;
}
.header-social .social-vimeo {
background: url(../img/head-vimeo.png) left top no-repeat;
}
.header-social .social-pinterest {
background: url(../img/head-pinterest.png) left top no-repeat;
}
.header-social .social-instagram {
background: url(../img/head-instargam.png) left top no-repeat;
margin-right: 0px;
}
.header-social a:hover {
background-position: left -14px;
}
.header-viewed {
float: right;
position: relative;
}
.viewed-drop {
display: none;
position: absolute;
left: 0px;
top: 40px;
z-index: 999;
border-top: 8px solid #fff;
width: 330px;
background: #fcf8f5;
}
.viewed-drop-a {
padding: 17px 16px 17px 16px;
}
.viewed-item {
border-bottom: 1px solid #ebe7e4;
padding-bottom: 13px;
margin-bottom: 13px;
}
.viewed-item:last-child {
border-bottom: 0px;
margin-bottom: 0px;
padding-bottom: 0px;
}
.viewed-item-l {
margin-top: 3px;
width: 79px;
float: left;
}
.viewed-item-lbl {
margin-bottom: 7px;
}
.viewed-item-lbl a {
font-family: 'Montserrat';
font-weight: normal;
font-size: 13px;
text-transform: uppercase;
color: #252525;
text-decoration: none;
}
.viewed-item-cat {
margin-bottom: 8px;
font-size: 10px;
text-transform: uppercase;
color: #939393;
font-family: 'Raleway';
font-weight: 600;
}
.viewed-price {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
}
.viewed-item-r {
width: 208px;
float: right;
}
.header-viewed-btn {
display: block;
border-left: 1px solid #333333;
padding: 14px 22px 0px 25px;
height: 26px;
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
}
.header-lang {
float: right;
position: relative;
}
.langs-drop {
display: none;
position: absolute;
left: 0px;
top: 41px;
border-top: 5px solid #fff;
padding: 10px 10px 3px 15px;
background: #fcf8f5;
width: 125px;
z-index: 999;
}
.header-lang a {
display: block;
border-left: 1px solid #333333;
padding: 13px 13px 0px 13px;
height: 27px;
}
.header-lang a.langs-item {
display: inline-block;
font-size: 10px;
color: #697374;
margin: 0px;
padding: 0px;
height: auto;
padding: 0px 0px 0px 24px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
border: 0px;
line-height: 13px;
margin-bottom: 11px;
}
.header-lang a.langs-item:hover {
color: #ff7200;
}
.header-lang a.langs-item.en {
background: url(../img/en.gif) left top no-repeat;
}
.header-lang a.langs-item.fr {
background: url(../img/fr.gif) left top no-repeat;
}
.header-lang a.langs-item.de {
background: url(../img/de.gif) left top no-repeat;
}
.header-lang a.langs-item.it {
background: url(../img/it.gif) left top no-repeat;
}
.header-curency {
float: right;
position: relative;
}
.header-curency:hover a {
color: #ff7200;
}
.curency-drop {
position: absolute;
left: 0px;
display: none;
top: 40px;
border-top: 4px solid #fff;
z-index: 999;
font-family: 'Raleway';
font-weight: 700;
background: #fcf8f5;
width: 126px;
padding: 11px 10px 7px 14px;
}
.header-curency a {
display: block;
border-left: 1px solid #333333;
padding: 14px 14px 0px 14px;
height: 26px;
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
}
.header-curency .curency-drop div {
margin-bottom: 8px;
}
.header-curency .curency-drop a {
font-size: 11px;
color: #697374;
margin: 0px;
padding: 0px;
height: auto;
display: inline;
text-transform: uppercase;
border: 0px;
}
.header-b {
height: 89px;
width: 100%;
background: #fff;
-webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
-moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
}
.header-logo {
float: left;
margin: 26px 0px 0px 0px;
}
.header-logo img {
width: 188px;
}
.fixed .header-logo img {
width: 39px;
}
.header-right {
float: right;
margin-top: 37px;
}
.header-nav {
float: right;
}
.header-nav ul,
.header-nav ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.header-nav ul li {
margin-left: 30px;
float: left;
}
.header-nav ul li a {
font-size: 12px;
color: #2c2c2c;
font-family: 'Montserrat';
font-weight: normal;
text-decoration: none;
text-transform: uppercase;
}
.hdr-srch-devider {
float: right;
height: 15px;
width: 1px;
margin: 1px 17px 0px 21px;
background: #e2e2e2;
}
.hdr-srch {
position: relative;
float: right;
margin: 2px 0px 0px 0px;
}
.hdr-srch-overlay {
display: none;
height: 36px;
padding-top: 14px;
background: #fff;
width: 100%;
position: absolute;
right: 0px;
top: 22px;
z-index: 999;
}
.hdr-srch-overlay input[type='text'] {
font-family: 'PT Sans';
font-size: 13px;
color: #6e6e6e;
font-weight: 700;
border: 0px;
width: 90%;
float: left;
background: transparent;
text-transform: uppercase;
}
.srch-close {
display: block;
width: 13px;
height: 13px;
float: right;
margin: 3px 0px 0px 0px;
background: url(../img/srch-close.png) left top no-repeat;
}
.hdr-srch-btn {
display: block;
width: 13px;
height: 13px;
background: url(../img/srch-icon.png) left top no-repeat;
}
.hdr-srch-btn:hover {
background-position: left -13px;
}
.mp-slider {
position: relative;
padding: 130px 0px 0px 0px;
}
.mp-slider .arrow-left {
display: block;
position: absolute;
left: 45px;
top: 50%;
margin-top: -16px;
z-index: 99;
width: 17px;
height: 31px;
background: url(../img/swipe-l.png) left top no-repeat;
}
.mp-slider .arrow-right {
display: block;
position: absolute;
right: 45px;
top: 50%;
margin-top: -16px;
z-index: 99;
width: 17px;
height: 31px;
background: url(../img/swipe-r.png) left top no-repeat;
}
.mp-slider .arrow-left:hover,
.mp-slider .arrow-right:hover {
opacity: 1;
}
.mp-slider .slide-section {
width: 100%;
height: 807px;
}
.swiper-container {
position: relative;
}
.swiper-preloader-bg {
width: 100%;
height: 100%;
background: #fcf8f5;
position: absolute;
left: 0px;
top: 0px;
z-index: 99;
}
.swiper-preloader {
position: absolute;
z-index: 999;
left: 50%;
top: 50%;
width: 30px;
height: 30px;
margin-left: -15px;
margin-top: -15px;
}
.swiper-container,
.swiper-slide {
width: 100%;
height: 807px;
}
.swiper-pagination {
position: absolute;
right: 40px;
bottom: 32px;
z-index: 999;
}
.swiper-pagination-switch {
display: block;
cursor: pointer;
width: 6px;
height: 6px;
margin-top: 4px;
border: 1px solid #fff;
border-radius: 10000px;
}
.swiper-visible-switch.swiper-active-switch {
background: #fff;
}
.mp-slider-lbl {
padding: 170px 0px 0px 0px;
text-align: center;
width: 100%;
font-size: 39px;
text-transform: uppercase;
font-family: 'Montserrat';
color: #fff;
position: relative;
top: 18px;
opacity: 0;
}
.search-only .mp-slider-lbl {
padding-top: 290px;
}
.mp-slider-lbl-a {
padding: 20px 0px 28px 0px;
text-align: center;
font-size: 17px;
color: #fff;
position: relative;
top: 18px;
opacity: 0;
font-weight: 400;
font-family: 'Lora';
font-style: italic;
}
.mp-slider-lbl-b {
margin-bottom: 22px;
color: #ff7200;
font-family: 'Lato';
font-size: 39px;
text-transform: uppercase;
text-align: center;
position: relative;
top: 18px;
opacity: 0;
}
.btn-a {
font-family: 'Montserrat';
font-weight: 700;
display: inline-block;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
padding: 12px 33px 12px 33px;
text-align: center;
font-size: 11px;
border-radius: 3px;
webkit-border-radius: 3px;
moz-border-radius: 3px;
text-transform: uppercase;
position: relative;
top: 18px;
opacity: 0;
}
.btn-a:hover {
color: #4a90a4;
background: #fff;
}
.slide-b .mp-slider-lbl,
.slide-b .mp-slider-lbl-a {
color: #fff;
}
.mp-slider-btn {
text-align: center;
}
.page-search {
float: left;
width: 347px;
height: 385px;
margin: 0px 31px 0px 0px;
background: transparent;
}
.page-search.full-width-search {
float: none;
width: 100%;
height: 385px;
margin: 0px 0px 0px 0px;
background: transparent;
}
.page-search.full-width-search .search-tab-content {
width: 100%;
}
.search-tab-content {
display: none;
}
.search-tab-content:first-child {
display: block;
}
.page-search.full-width-search .page-search-tabs {
width: 347px;
}
.search-tab {
height: 27px;
display: inline-block;
margin: 0px 3px 0px 0px;
float: left;
text-align: center;
font-size: 12px;
color: #fff;
text-transform: uppercase;
font-family: 'Montserrat';
background: #1d292e;
cursor: pointer;
padding: 14px 33px 0px 33px;
}
.search-tab.nth {
margin-right: 0px;
float: right;
}
.search-tab.active {
background: #fff;
cursor: default;
color: #000000;
}
.page-search-content {
min-height: 120px;
background: #fff;
}
.page-search-p {
padding: 26px 21px 29px 21px;
}
.full-width-search .page-search-p {
padding: 26px 21px 21px 21px;
}
.page-search-content label {
display: block;
font-size: 11px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 9px;
}
.search-line {
margin: 0px 0px 18px 0px;
}
.search-line input[type='text'] {
border: 1px solid #e3e3e3;
background: #fff;
width: 284px;
border-radius: 3px;
padding: 9px 8px 9px 8px;
text-transform: uppercase;
font-family: 'Raleway';
font-size: 11px;
color: #8a8a8a;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
}
.search-line-a {
float: left;
width: 140px;
margin: 0px 0px 18px 0px;
}
.full-width-search .search-line-a {
width: auto;
margin-right: 19px;
margin-bottom: 0px;
}
.search-line-b {
float: right;
width: 140px;
margin: 0px 0px 18px 0px;
}
.search-line-c {
margin-bottom: 17px;
}
.search-line-a.nth,
.search-line-b.nth,
.search-line-c.nth {
margin-bottom: 0px;
}
.search-line-a input[type='text'],
.search-line-b input[type='text'] {
border: 1px solid #e3e3e3;
background: #fff;
width: 120px;
border-radius: 3px;
font-size: 11px;
padding: 8px;
text-transform: uppercase;
font-family: 'Raleway';
color: #8a8a8a;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
}
.search-line-a.large input[type='text'] {
width: 305px;
}
.search-line-a.middle input[type='text'] {
width: 143px;
}
.search-line-a.middle-a input[type='text'] {
width: 133px;
}
.search-line-select {
width: 87px;
float: left;
margin: 0px 21px 0px 0px;
}
.search-line-select.nth {
margin-right: 0px;
float: right;
}
.search-select {
width: 83px;
overflow: hidden;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border: 1px solid #e3e3e3;
}
.search-line-select.middle {
width: 94px;
}
.search-line-select.middle.last {
margin-right: 0px;
}
.search-line-select.middle .search-select {
width: 90px;
}
.srch-horizontal {
margin-right: 12px;
float: left;
}
.search-select select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 80% center;
background-repeat: no-repeat;
border: 0px;
border-radius: 0;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 117%;
-webkit-appearance: none;
-o-appearance: none;
-khtml-appearance: none;
appearance: none;
text-transform: uppercase;
font-family: 'Raleway';
color: #8a8a8a;
}
.search-select.full-width {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 300px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width select,
.search-select.full-width-a select,
.search-select.full-width-b select,
.search-select.full-width-c select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 94.3% center;
background-repeat: no-repeat;
border: medium none;
border-radius: 0;
color: #d3d3d3;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 105%;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select.middle-c {
border: 1px solid #d6d6d6;
background: #fff;
font-size: 11px;
width: 149px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.full-width-search .search-line-a.last {
margin-right: 0px;
}
.search-select.full-width-a {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 341px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width-b {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 321px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width-c {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 321px;
margin-right: 18px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-line-select.middle-b {
width: auto;
float: left;
margin-right: 0px;
margin-left: 18px;
}
.search-select.half-width select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 89% center;
background-repeat: no-repeat;
border: medium none;
border-radius: 0;
color: #d3d3d3;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 110%;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select.half-width {
width: 136px;
}
.search-select span {
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select-a {
cursor: pointer;
padding: 8px;
}
.search-footer {
border-top: 1px solid #f8f1eb;
padding: 23px 21px 30px 22px;
}
.search-asvanced {
display: none;
padding-top: 17px;
}
.overlay {
display: none;
width: 100%;
height: 100%;
background: rgba(20, 29, 30, 0.19);
position: fixed;
left: 0px;
top: 0px;
z-index: 9999;
}
.autorize-popup {
z-index: 9999;
width: 444px;
height: 255px;
background: #fff;
position: fixed;
left: 50%;
top: -300px;
margin-top: -128px;
margin-left: -222px;
}
.autorize-tab-a {
display: block;
float: left;
width: 82px;
height: 27px;
text-align: center;
text-decoration: none;
font-family: 'Raleway';
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
color: #fff;
background: #141d1e;
padding-top: 12px;
}
.autorize-tab-b {
display: block;
float: left;
width: 303px;
height: 27px;
text-decoration: none;
font-family: 'Raleway';
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
color: #fff;
background: #141d1e;
padding-top: 12px;
padding-left: 20px;
}
.autorize-tabs a.current {
color: #292828;
background: #fff;
cursor: default;
}
.autorize-close {
display: block;
width: 39px;
height: 39px;
float: right;
background: url(../img/popup-close.png) left top no-repeat;
}
.autorize-close:hover {
background-position: left -39px;
}
.autorize-lbl {
font-family: 'Raleway';
font-size: 13px;
color: #6d6d6d;
margin: 0px 0px 18px 0px;
}
.autorize-padding {
padding: 22px 20px 20px 21px;
}
.autorize-tab-content {
display: none;
}
.autorize-tab-content input[type='text'] {
border: 1px solid #ebebeb;
background: #fff;
width: 381px;
border-radius: 3px;
font-size: 11px;
padding: 10px 8px 10px 8px;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
margin-bottom: 15px;
}
.authorize-btn {
display: block;
width: 118px;
height: 34px;
padding-top: 3px;
cursor: pointer;
background: #ff7200;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
text-align: center;
font-size: 11px;
text-decoration: none;
color: #fff;
float: left;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
border: 0px;
}
.authorize-btn:hover {
background: #ff8f35;
}
.authorize-forget-pass {
float: left;
font-family: 'Raleway';
font-size: 12px;
color: #6d6d6d;
text-decoration: none;
margin: 12px 0px 0px 15px;
}
.header-account a:hover,
.header-viewed-btn:hover,
.header-viewed:hover .header-viewed-btn,
.header-curency a:hover,
.header-nav ul li a:hover {
color: #ff7200;
}
.header-nav ul li {
position: relative;
}
.header-nav ul li a {
padding-bottom: 39px;
}
.fixed .header-nav ul li a {
padding-bottom: 39px;
}
.fixed .header-nav ul ul {
top: 37px;
}
.fixed .hdr-srch-overlay {
top: 7px;
}
.header-nav ul ul {
display: none;
position: absolute;
left: -14px;
top: 53px;
z-index: 999;
width: 211px;
background: #111111;
padding: 17px 0px 18px 0px;
}
.header-nav ul li:hover>a {
color: #ff7200;
}
.header-nav ul ul li {
margin: 0px;
padding: 0px;
display: block;
float: none;
margin-bottom: 19px;
padding: 0px 15px 0px 15px;
}
.header-nav ul ul li:last-child {
margin-bottom: 0px;
}
.header-nav ul ul li a {
margin: 0px;
padding: 0px;
font-size: 11px;
color: #d8d8d8;
font-family: 'Raleway';
font-weight: 600;
}
.wrapper-padding {
max-width: 1100px;
margin: 0 auto;
}
.wrapper-padding-a {
max-width: 1190px;
margin: 0 auto;
}
.wrapper-a-holder {
max-width: 1100px;
margin: 0 auto;
position: relative;
height: 1px;
}
.wrapper-a {
max-width: 1100px;
width: 100%;
margin: 0 auto;
position: absolute;
height: 1px;
left: 0px;
z-index: 99;
bottom: 420px;
}
.full-width-search .wrapper-a {
bottom: 146px;
}
.special-offer-a {
margin: 42px 0px 0px 0px;
float: left;
width: 346px;
}
.special-offer-img {
height: auto;
margin: 0px;
}
.special-offer-img img {
width: 100%;
}
.special-offer-img a {
display: block;
line-height: 0px;
}
.special-offer-img img,
.special-offer-img a {
height: auto;
margin: 0px;
padding: 0px;
}
.special-offer-foot-l {
margin-top: 3px;
float: left;
width: 230px;
}
.special-offer-foot-l b {
display: block;
font-weight: normal;
display: block;
text-transform: uppercase;
color: #252525;
margin-bottom: 7px;
font-family: 'Montserrat';
}
.special-offer-foot-l span {
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
font-size: 10px;
color: #939393;
}
.special-offer-foot-r {
float: right;
text-align: right;
margin-top: 1px;
}
.special-offer-foot-r b {
font-family: 'Montserrat';
font-size: 20px;
display: block;
font-weight: normal;
margin-bottom: 3px;
color: #ff7200;
}
.special-offer-foot-r span {
display: block;
font-size: 10px;
font-family: 'Raleway';
font-weight: 600;
color: #939393;
text-transform: uppercase;
}
.special-offer-foot {
background: #fff;
padding: 21px 19px 25px 20px;
}
.special-offer-b {
float: left;
width: 345px;
height: 344px;
margin: 42px 0px 0px 31px;
}
.weather-block {
width: 345px;
height: 344px;
background: url(../img/paris.jpg) left top no-repeat;
background-size: 345px 344px;
;
}
.weather-i {
display: inline-block;
text-align: center;
vertical-align: top;
margin: 57px 13px 0px 14px;
}
.weather-i:nth-child(2n) {
margin-left: 19px;
}
.weather-i:nth-child(2n) .weather-b {
margin-left: 3px;
}
.weather-devider {
margin: 56px 0px 0px 0px;
height: 1px;
background: #9f9e9d;
}
.weather-a {
margin: 0px 0px 19px 0px;
font-size: 13px;
color: #fff;
font-family: 'Montserrat';
text-transform: uppercase;
}
.weather-b {
margin-bottom: 17px;
}
.weather-c {
text-align: center;
font-size: 12px;
color: #fff;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.weather-block-padding {
text-align: center;
}
.weather-footer {
text-align: left;
padding: 20px 0px 0px 18px;
}
.weather-foot-link-a {
font-size: 21px;
line-height: 25px;
color: #fff;
font-weight: nomal;
font-family: 'Montserrat';
font-weight: normal;
display: block;
}
.weather-footer a {
text-decoration: none;
}
.weather-foot-link {
display: block;
font-size: 12px;
color: #fff;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 5px;
}
.srch-btn {
display: block;
width: 102px;
height: 24px;
padding-top: 10px;
background: #ff7200;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
text-align: center;
font-size: 11px;
text-decoration: none;
color: #fff;
border: 0px;
margin-top: 1px;
float: left;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
}
button.srch-btn {
cursor: pointer;
font-family: 'Montserrat';
font-size: 11px;
font-weight: normal;
padding-top: 10px;
float: none;
margin-top: 21px;
height: 34px;
}
.date-icon {
display: block;
width: 16px;
height: 15px;
background: url(../img/datepick.png) left top no-repeat;
position: absolute;
z-index: 1;
top: 7px;
right: 8px;
}
.input-a {
position: relative;
}
.date-inpt {
cursor: pointer;
z-index: 99;
position: relative;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-radius: 0px !important;
border-color: #ebebeb;
background: #fff;
}
.ui-widget-header {
background: #fff !important;
border: 0px !important;
}
.ui-datepicker .ui-datepicker-title {
font-size: 12px;
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
color: #4c4c4c;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
font-family: 'Montserrat';
border: 0px !important;
font-size: 11px;
font-weight: normal;
border-radius: 0px !important;
display: block;
}
.ui-datepicker td span,
.ui-datepicker td a {
padding: 5px 5px 10px 10px !important;
font-weight: normal !important;
width: 20px !important;
height: 20px !important;
background: #fafafa !important;
}
.ui-datepicker td {
padding: 0px !important;
color: #686d6e;
border: 1px solid #eaeaea;
}
.ui-datepicker td a:hover {
background: #ff7200 !important;
color: #fff;
}
.ui-state-default.ui-state-active {
background: #ff7200 !important;
color: #fff;
}
.ui-datepicker th {
font-size: 11px;
font-weight: normal;
}
.ui-datepicker {
padding: 10px 14px 10px 14px;
margin-left: -8px;
margin-top: 15px;
width: 252px;
}
.ui-widget-header .ui-icon.ui-icon-circle-triangle-w {
width: 4px;
height: 8px;
left: 10px;
background: url(../img/cal-left.png) left top no-repeat;
background-position: 0px 0px;
}
.ui-widget-header .ui-icon.ui-icon-circle-triangle-e {
width: 4px;
height: 8px;
left: auto;
margin-left: 0px;
right: 0px;
background: url(../img/cal-right.png) left top no-repeat;
background-position: 0px 0px;
}
.ui-datepicker .ui-datepicker-prev {
left: 0px;
cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
right: 0px;
cursor: pointer;
}
.ui-corner-all.ui-state-hover {
border-color: transparent;
background: transparent;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover {
left: -1px;
}
.ui-datepicker .ui-datepicker-next.ui-state-hover {
right: -1px;
}
.input-a {
padding: 6px 7px 7px 7px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
}
.input-a input[type='text'] {
width: 100%;
border: 0px;
background: transparent;
font-family: "Raleway";
font-size: 11px;
text-transform: uppercase;
}
.textarea-a {
padding: 7px 7px 7px 7px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
}
.textarea-a textarea {
width: 100%;
border: 0px;
resize: none;
background: transparent;
font-family: "Raleway";
font-size: 11px;
text-transform: uppercase;
}
.srch-tab-left {
float: left;
width: 46.5%;
}
.srch-tab-right {
float: right;
width: 46.5%;
}
.srch-tab-3c {
width: 28.6%;
float: left;
margin-right: 7%;
}
.srch-tab-3c:nth-child(3n) {
float: right;
margin-right: 0px;
}
.srch-tab-3c .custom-select {
cursor: pointer;
height: 34px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
background: url(../img/mp-select.png) right top no-repeat;
font-size: 11px;
color: #8a8a8a;
}
.srch-tab-3c .custom-select span {
display: block;
padding: 10px 7px 9px 7px;
}
.select-wrapper {
padding-right: 2px;
}
.srch-tab-line {
margin-bottom: 17px;
}
.srch-tab-line.no-margin-bottom {
margin-bottom: 0px;
}
.srch-tab-line select {
cursor: pointer;
}
.srch-tab-line .custom-select {
cursor: pointer;
width: 100% !important;
height: 32px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
background: url(../img/mp-select.png) right top no-repeat;
font-size: 11px;
color: #8a8a8a;
}
.srch-tab-line .custom-select span {
display: block;
width: 90% !important;
padding: 8px 7px 9px 7px;
}
.select-wrapper {
position: relative;
}
.search-large-i {
width: 31.5%;
margin-right: 2.7%;
float: left;
}
.search-large-i:nth-child(3n) {
float: right;
margin-right: 0px;
}
.srch-btn:hover {
background: #ff8f35;
}
.srch-lbl {
cursor: pointer;
float: right;
font-family: 'Raleway';
font-weight: 500;
color: #566065;
margin: 12px 0px 0px 0px;
font-size: 10px;
text-transform: uppercase;
}
.mp-offesr {
font-family: 'Raleway';
padding: 65px 0px 0px 0px;
}
.mp-offesr.no-margin {
padding-top: 0px;
}
.mp-pop {
padding: 182px 0px 0px 0px;
}
.offer-slider {
margin-bottom: 95px;
}
.offer-sliderabt {
margin-top: 60px;
margin-bottom: 95px;
}
.offer-slider-lead {
margin-top: 9px;
font-size: 13px;
color: #455051;
line-height: 20px;
font-family: 'Raleway';
}
.offer-slider header {
text-align: center;
margin-bottom: 32px;
}
.mp-popular {
margin-bottom: 95px;
}
.mp-popular header,
header.page-lbl {
text-align: center;
margin-bottom: 31px;
}
.mp-popular header b,
.page-lbl b,
.offer-slider-lbl {
font-size: 23px;
color: #141d1e;
display: block;
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
margin-bottom: 12px;
padding: 0px 0px 16px 0px;
background: url(../img/pop-hdr.png) center bottom no-repeat;
}
.mp-popular header p,
.page-lbl p {
font-family: Raleway;
line-height: 26px;
font-size: 15px;
color: #455051;
}
.offer-slider-lbl {
font-size: 23px;
color: #141d1e;
font-family: 'Montserrat';
text-transform: uppercase;
}
.offer-slider header p {
font-family: 'Lora';
line-height: 26px;
font-size: 15px;
font-style: italic;
color: #455051;
display: inline-block;
width: 640px;
}
.mp-popular header p,
.page-lbl p {
font-style: italic;
display: inline-block;
width: 640px;
font-family: 'Lora';
}
.offer-slider-i {
/* width:254px;*/
}
.offer-slider-i.catalog-i {
width: 32%;
float: left;
margin: 0px 2% 2% 0px;
font-family: 'Raleway';
}
.offer-slider-i.catalog-i:nth-child(3n) {
margin-right: 0px;
float: right;
}
.offer-slider-i.catalog-i .cat-list-btn {
margin-bottom: 5px;
font-family: 'Montserrat';
font-weight: normal;
font-size: 10px;
border-radius: 3px;
padding-top: 9px;
padding-bottom: 9px;
margin-top: 15px;
background: #fff;
border: 1px solid #e5e5e5;
color: #838383;
}
.offer-slider-i.catalog-i .cat-list-btn:hover {
color: #ff7200;
}
.catalog-i .offer-slider-l {
width: auto;
margin-top: 1px;
}
.catalog-i .offer-slider-devider {
margin-right: 15px;
}
.offer-slider-img img {
width: 100%;
}
.catalog-head {
background: #fff;
padding: 9px 17px 9px 17px;
margin-bottom: 25px;
}
.catalog-head label {
font-family: 'Raleway';
float: left;
margin: 9px 15px 0px 0px;
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
color: #3a4142;
}
.catalog-head .search-select {
float: left;
width: 89px;
margin-top: 1px;
margin-right: 10px;
border: 1px solid #dedcdc;
}
.catalog-head .search-select select {
background-image: url("../img/select-bg2.png");
padding-top: 9px;
padding-bottom: 8px;
font-size: 9px;
color: #8a8a8a;
background-position: 80% center;
background-repeat: no-repeat;
}
.show-thumbs,
.show-table,
.show-list {
margin-left: 5px;
display: block;
width: 29px;
height: 29px;
float: right;
}
.show-thumbs {
background: url(../img/sort-a.png) left top no-repeat;
}
.show-table {
background: url(../img/sort-b.png) left top no-repeat;
}
.show-list {
background: url(../img/sort-c.png) left top no-repeat;
}
.show-thumbs.chosen,
.show-table.chosen,
.show-list.chosen {
background-position: left -29px;
}
.cat-list-item-h {
width: 100%;
float: left;
}
.cat-list-item-l {
width: 241px;
float: left;
margin: 0px;
padding: 0px;
line-height: 0px;
overflow: hidden;
}
.cat-list-item-l img {
width: 100%;
}
.cat-list-item-r {
margin: 0px 0px 0px 241px;
}
.cat-list-item-rb {
width: 100%;
float: left;
overflow: hidden;
}
.cat-list-item-p {
padding: 0px 0px 0px 18px;
}
.cat-list-item {
background: #fff;
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.cat-list-content-a {
width: 100%;
float: left;
}
.cat-list-content-l {
margin: 0px 125px 0px 0px;
}
.cat-list-content-lb {
width: 100%;
float: left;
overflow: hidden;
}
.cat-list-content-lpadding {
padding: 18px 30px 7px 0px;
min-height: 156px;
border-right: 1px solid #ede7e1;
}
.cat-list-content-r {
width: 124px;
float: left;
overflow: hidden;
margin: 0 0 0 -125px;
}
.cat-list-content-p {
padding: 17px 0px 17px 18px;
}
.cat-list-item .offer-slider-link {
font-family: 'Raleway';
color: #252525;
margin-bottom: 8px;
}
.cat-list-item .offer-slider-location {
font-size: 10px;
line-height: 15px;
margin-bottom: 0px;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
}
.cat-list-content-l p {
font-size: 13px;
line-height: 21px;
margin: 13px 0px 14px 0px;
color: #455051;
font-family: 'Raleway';
}
.cat-icon-01 {
display: block;
float: left;
width: 15px;
height: 13px;
background: url(../img/cat-icon-01.png) left top no-repeat;
}
.cat-icon-02 {
display: block;
float: left;
width: 9px;
height: 13px;
background: url(../img/cat-icon-02.png) left top no-repeat;
}
.cat-icon-03 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-03.png) left top no-repeat;
}
.cat-icon-04 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-04.png) left top no-repeat;
}
.cat-icon-05 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-05.png) left top no-repeat;
}
.cat-icon-06 {
display: block;
float: left;
width: 7px;
height: 13px;
background: url(../img/cat-icon-06.png) left top no-repeat;
}
.cat-icons span.active {
background-position: left -13px;
;
}
.cat-icons span {
margin-right: 13px;
}
.cat-list-review {
font-size: 10px;
margin-bottom: 17px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
}
.cat-list-item .offer-slider-r {
float: none;
margin-bottom: 18px;
font-family: 'Raleway';
}
.cat-list-item .stars {
margin-bottom: 7px;
}
.cat-list-btn {
display: inline-block;
font-family: 'Montserrat';
font-weight: normal;
background: #fff;
padding: 9px 15px 9px 15px;
border-radius: 3px;
border: 1px solid #e5e5e5;
text-decoration: none;
color: #838383;
font-size: 10px;
text-transform: uppercase;
}
.cat-list-btn:hover {
color: #ff7200;
}
.cat-list-item .cat-list-btn {
padding-left: 26px;
padding-right: 26px;
}
.cat-list-content-l .offer-slider-link {
margin-bottom: 8px;
}
.cat-list-item-rb .offer-slider-r b {
font-weight: 500 !important;
margin-bottom: 7px;
}
.cat-list-item-rb .offer-slider-r span {
font-size: 10px;
}
.cat-list-item-rb .cat-list-btn {
background: transparent;
border: 1px solid #e5e5e5;
border-radius: 3px;
font-size: 10px;
padding-bottom: 9px;
padding-top: 9px;
font-family: 'Montserrat';
color: #838383;
font-weight: normal;
}
.cat-list-item-rb .cat-list-btn:hover {
color: #ff7200;
}
.cat-list-item-rb .offer-slider-link a {
font-size: 13px;
}
.offer-slider-txt {
padding: 20px 55px 21px 13px;
background: #fff;
}
.offer-slider-img {
text-decoration: none;
display: block;
margin: 0px;
padding: 0px;
line-height: 0px;
width: 100%;
height: 100%;
position: relative;
}
.offer-slider-overlay {
display: none;
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
background: url(../img/offer-over.png) left top repeat;
}
.offer-slider-btn {
font-family: 'Raleway';
font-weight: 600;
font-size: 10px;
text-transform: uppercase;
color: #fff;
display: inline-block;
border: 2px solid #fff;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
width: 104px;
height: 23px;
padding-top: 6px;
text-align: center;
line-height: 18px;
position: absolute;
margin-left: -52px;
margin-top: -15px;
left: 50%;
top: -200px;
}
.last-order {
height: 353px;
padding: 147px 0px 0px 0px;
margin-bottom: 40px;
}
.last-order-content {
text-align: center;
}
.last-order-a {
font-size: 12px;
font-family: 'Montserrat';
font-weight: normal;
color: #fff;
margin-bottom: 19px;
text-transform: uppercase;
}
.last-order-b {
font-size: 23px;
color: #fff;
margin-bottom: 18px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.last-order-c {
font-size: 14px;
color: #fff;
margin-bottom: 17px;
font-family: 'Lola';
font-weight: normal;
font-style: italic;
}
.last-order-d {
margin-bottom: 22px;
font-family: 'Montserrat';
font-weight: normal;
}
.last-order-btn {
font-family: 'Montserrat';
font-weight: narmal;
border: 2px solid #fff;
display: inline-block;
font-size: 11px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
padding: 11px 26px 11px 26px;
}
.last-order-btn:hover {
background: #fff;
color: #303b3c;
}
.duble-margin {
margin-bottom: 100px;
}
.partners {
text-align: center;
border-bottom: 1px solid #f0e9e4;
padding-bottom: 30px;
margin-bottom: 94px;
}
.partners a {
margin: 0px 28px 0px 28px;
}
.partners a:first-child {
margin-left: 0px;
}
.partners a:last-child {
margin-right: 0px;
}
.testimonials {
background: #fff;
padding: 93px 0px 96px 0px;
}
.testimonials-lbl {
text-align: center;
font-size: 23px;
margin-bottom: 16px;
color: #141d1e;
padding-bottom: 16px;
text-transform: uppercase;
font-family: 'Montserrat';
background: url("../img/pop-hdr.png") center bottom no-repeat;
}
.testimonials-lbl-a {
text-align: center;
font-size: 15px;
margin-bottom: 36px;
color: #455051;
font-style: italic;
font-family: 'Lora';
}
.testimonials-i {
text-align: center;
}
.testimonials-a {
margin-bottom: 17px;
}
.testimonials-b {
margin-bottom: 15px;
font-size: 15px;
color: #455051;
font-family: 'Raleway';
line-height: 26px;
}
.testimonials-c {
margin-bottom: 18px;
}
.testimonials-c li {
display: inline-block;
}
.testimonials-d {
font-family: 'Raleway';
font-size: 11px;
color: #454545;
font-weight: 500;
text-transform: uppercase;
}
.testimonials-holder {
max-width: 1100px;
margin: 0 auto;
position: relative;
}
.testimonials-holder .bx-pager {
display: none;
}
.testimonials-holder .bx-prev,
.testimonials-holder .bx-next {
display: block;
width: 11px;
height: 21px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -10px;
}
.testimonials-holder .bx-prev {
background: url(../img/test-l.gif) left top no-repeat;
left: 0px;
}
.testimonials-holder .bx-next {
background: url(../img/test-r.gif) left top no-repeat;
right: 0px;
}
.testimonials-holder .bx-prev:hover,
.testimonials-holder .bx-next:hover {
background-position: left -21px;
}
.last-order-d {
font-family: 'Open Sans';
font-size: 24px;
font-weight: 600;
color: #ff7200;
}
.mp-popular-row {
max-width: 1100px;
margin: 0 auto;
}
.mp-popular-row .offer-slider-i {
float: left;
width: 346px;
margin-right: 31px;
}
.mp-popular-row .offer-slider-i:last-child {
margin-right: 0px;
}
.offer-slider-link {
margin-bottom: 10px;
margin-top: 10px;
}
.offer-slider-link a {
font-size: 25px;
color: #4c4c4c;
text-decoration: none;
font-weight: normal;
font-family: "Montserrat";
}
.offer-slider-l {
width: 900px;
float: left;
}
.offer-slider-location {
margin-bottom: 7px;
font-size: 10px;
color: #747d7e;
font-weight: 600;
text-transform: uppercase;
}
.stars ul,
.stars ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.stars ul li {
float: left;
margin-right: 1px;
}
.popular-slider {
margin-bottom: 90px;
}
.offer-slider-r {
float: right;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
}
.offer-slider-r b {
font-family: 'Montserrat';
font-weight: normal;
letter-spacing: -0.03em;
display: block;
font-size: 16px;
margin-bottom: 6px;
color: #ff7200;
line-height: 15px;
}
.offer-slider-devider {
width: 2px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
height: 40px;
background: #ede7e1;
float: right;
}
.offer-slider-r span {
font-family: 'Raleway';
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: #939393;
}
.offer-slider-r span {
float: right;
margin-bottom: 7px;
}
.offer-slider-c {
padding: 0px 45px 0px 45px;
position: relative;
}
.offer-slider-c .bx-pager {
display: none;
}
.offer-slider-c .owl-next,
.offer-slider-c .owl-prev {
display: none !important;
position: absolute;
width: 15px;
height: 29px;
margin-top: -16px;
top: 50%;
overflow: hidden;
text-indent: -9999px;
}
.offer-slider-c .owl-prev {
background: url(../img/offers-l.png) left top no-repeat;
left: -45px;
}
.offer-slider-c .owl-next {
background: url(../img/offers-r.png) left top no-repeat;
right: -45px;
}
.offer-slider-c .owl-next:hover,
.offer-slider-c .owl-prev:hover {
background-position: left -29px;
}
.mp-b {
margin-top: 100px;
padding-bottom: 95px;
background: #ffffff;
padding-top: 75px;
}
.mp-b-left {
width: 357px;
float: left;
}
.mp-b-right {
width: 723px;
float: right;
}
.mp-b-lbl {
font-family: 'Montserrat';
font-weight: normal;
font-size: 18px;
text-transform: uppercase;
color: #141d1e;
margin-bottom: 32px;
}
nav ul,
nav ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.regions {
margin-bottom: 12px;
}
.regions-holder {
width: 347px;
height: 177px;
position: relative;
}
.regions-holder .asia,
.regions-holder .africa,
.regions-holder .austalia,
.regions-holder .europe,
.regions-holder .north-america,
.regions-holder .south-america {
width: 347px;
height: 177px;
position: absolute;
left: 0px;
top: 0px;
}
.regions-holder .asia {
background: url(../img/asia.png) left top no-repeat;
}
.regions-holder .africa {
background: url(../img/africa.png) left top no-repeat;
}
.regions-holder .austalia {
background: url(../img/australia.png) left top no-repeat;
}
.regions-holder .europe {
background: url(../img/europe.png) left top no-repeat;
}
.regions-holder .north-america {
background: url(../img/north-america.png) left top no-repeat;
}
.regions-holder .south-america {
background: url(../img/south-america.png) left top no-repeat;
}
.regions-holder area {
cursor: pointer;
}
.regions-holder map {
position: absolute;
left: 0px;
top: 0px;
z-index: 9999;
}
.regions-nav ul li {
display: inline-block;
background: url(../img/regions-nav.png) right top no-repeat;
padding: 0px 9px 4px 0px;
margin: 0px 0px 0px 2px;
background-position: right 7px;
}
.regions-nav ul li a.chosen {
color: #ff7200;
}
.regions-nav ul li:first-child {
margin-left: 0px;
}
.regions-nav ul li:nth-child(4n),
.regions-nav ul li:last-child {
background: transparent;
}
.regions-nav ul li:nth-child(4n) {
margin-right: 12px;
}
.regions-nav ul li:nth-child(5n) {
margin-left: 0px;
}
.regions-nav ul li a {
font-family: 'Raleway';
color: #3a4142;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
font-size: 11px;
}
.regions-nav ul li a:hover {
color: #ff7200;
}
.reasons-item-a {
width: 286px;
float: left;
background: url(../img/reasons-01.png) left top no-repeat;
padding: 6px 0px 0px 63px;
margin: 0px 0px 26px 0px;
}
.reasons-item-b {
width: 286px;
float: right;
background: url(../img/reasons-02.png) left top no-repeat;
padding: 6px 0px 0px 63px;
margin: 0px 0px 26px 0px;
}
.reasons-item-c {
width: 286px;
float: left;
background: url(../img/reasons-03.png) left top no-repeat;
padding: 6px 0px 0px 63px;
}
.reasons-item-d {
width: 286px;
float: right;
background: url(../img/reasons-04.png) left top no-repeat;
padding: 6px 0px 0px 63px;
}
.reasons-lbl {
font-size: 14px;
color: #3a4142;
background: url(../img/reasons-lbl.gif) left bottom no-repeat;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 10px;
padding: 0px 0px 14px 0px;
text-transform: uppercase;
}
.reasons-txt {
font-family: 'Raleway';
color: #626262;
line-height: 25px;
}
.advantages-row {
text-align: center;
}
.advantages-i {
display: inline-block;
text-align: center;
margin: 3px 31px 0px 31px;
width: 315px;
}
.advantages-a {
margin-bottom: 19px;
}
.advantages-b {
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
margin-bottom: 14px;
}
.advantages-c {
font-size: 15px;
font-family: 'Raleway';
line-height: 25px;
color: #626262;
}
.footer-a {
color: #fff;
background: #141d1e;
padding: 56px 0px 31px 0px;
}
.footer-a .section {
width: 281px;
float: left;
display: block;
}
.footer-a .section:last-child {
float: right;
width: 254px;
}
.footer-lbl {
font-size: 14px;
color: #ffffff;
margin-bottom: 12px;
font-family: 'Montserrat';
font-weight: normal;
background: url(../img/foot-lbl.gif) left bottom no-repeat;
padding: 0px 0px 18px 0px;
text-transform: uppercase;
}
.footer-adress {
font-family: 'Raleway';
font-size: 13px;
line-height: 33px;
color: #f7f7f7;
background: url(../img/footer-icon-01.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 9px;
margin: 0px 0px 9px 0px;
}
.footer-phones {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
background: url(../img/footer-icon-02.png) left top no-repeat;
padding: 0px 0px 0px 22px;
margin: 0px 0px 17px 0px;
background-position: left 1px;
}
.footer-phones a[href^=tel] {
color: #fff;
text-decoration: none;
}
.footer-email {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
margin: 0px 0px 17px 0px;
background: url(../img/footer-icon-03.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 2px;
}
.footer-skype {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
background: url(../img/footer-icon-04.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 2px;
}
.footer-tour {
width: 218px;
padding-bottom: 25px;
}
.footer-tours {
margin-top: 19px;
}
.footer-tour-l {
float: left;
margin-top: 3px;
width: 84px;
}
.footer-tour-l img {
width: 100%;
}
.footer-tour-r {
float: right;
width: 118px;
}
.footer-tour-a {
margin-bottom: 8px;
font-size: 12px;
color: #ffffff;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
letter-spacing: -0.03em;
}
.footer-tour-b {
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 9px;
font-size: 9px;
color: #a2a2a2;
text-transform: uppercase;
}
.footer-tour-c {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
text-transform: uppercase;
}
.tweet {
margin-bottom: 17px;
background: url(../img/icon-tweet.png) left top no-repeat;
padding: 0px 0px 0px 25px;
font-size: 13px;
background-position: left 7px;
color: #f7f7f7;
width: 240px;
line-height: 26px;
font-family: 'Raleway';
}
.tweet-date {
font-size: 12px;
font-family: 'Raleway';
color: #b7b7b7;
font-weight: 300;
}
.tweet a {
color: #f7f7f7;
text-decoration: none;
}
.twitter-follow {
margin-top: 24px;
font-size: 10px;
font-weight: 600;
font-family: 'Raleway';
color: #fff;
text-transform: uppercase;
}
.twitter-follow a {
color: #fff;
text-decoration: none;
}
.footer-subscribe {
width: 243px;
height: 27px;
margin: 22px 0px 11px 0px;
padding: 7px 0px 0px 10px;
background: #2c3536;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
}
.footer-subscribe-a {
background: url(../img/icon-subscribe.png) left top no-repeat;
min-height: 11px;
background-position: left 4px;
padding: 0px 0px 0px 21px;
}
.footer-subscribe-a input {
background: transparent;
width: 204px;
border: 0px;
font-family: 'Raleway';
color: #525f60;
font-size: 13px;
}
.footer-subscribe-btn {
display: block;
border: 0px;
cursor: pointer;
width: 85px;
height: 32px;
padding-bottom: 1px;
color: #fff;
font-family: 'Montserrat';
font-weight: normal;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background: #ff7200;
font-size: 11px;
text-transform: uppercase;
}
.footer-subscribe-btn:hover {
background: #f98528;
}
.footer-b {
height: 52px;
background: #000000;
color: #fff;
}
.footer-left {
font-size: 10px;
color: #fff;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
float: left;
margin: 19px 0px 0px 0px;
letter-spacing: -0.03em;
}
.footer-social {
float: right;
margin: 19px 0px 0px 0px;
}
.footer-social a {
float: left;
display: block;
margin: 0px 10px 0px 10px;
width: 14px;
height: 14px;
}
.footer-social a:last-child {
margin-right: 0px;
}
.footer-social a.footer-twitter {
background: url(../img/footer-twitter.png) left top no-repeat;
}
.footer-social a.footer-facebook {
background: url(../img/footer-facebook.png) left top no-repeat;
}
.footer-social a.footer-vimeo {
background: url(../img/footer-vimeo.png) left top no-repeat;
}
.footer-social a.footer-pinterest {
background: url(../img/footer-pinterest.png) left top no-repeat;
}
.footer-social a.footer-instagram {
background: url(../img/footer-instagram.png) left top no-repeat;
}
.footer-social a:hover {
background-position: left -14px;
}
.advantages-row.flat {
text-align: left;
margin-top: 39px;
}
.flat-adv-a {
width: 100%;
float: left;
}
.flat-adv-l {
width: 80px;
margin-top: 3px;
float: left;
}
.flat-adv-r {
margin: 0px 0px 0px 80px;
}
.flat-adv-rb {
width: 100%;
float: left;
}
.flat-adv {
width: 48%;
float: left;
margin-bottom: 29px;
}
.flat-adv:nth-child(2n) {
width: 48%;
float: right;
}
.flat-adv:nth-child(3n),
.flat-adv:nth-child(4n) {
margin-bottom: 0px;
}
.flat-adv.large .flat-adv-l {
width: 127px;
margin-top: 3px;
float: left;
}
.flat-adv.large .flat-adv-r {
margin: 0px 0px 0px 127px;
}
.flat-adv.large {
margin-bottom: 45px;
}
.flat-adv-b {
font-size: 14px;
color: #3a4142;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 14px;
}
.flat-adv-c {
font-size: 14px;
color: #626262;
line-height: 26px;
font-family: 'Raleway';
}
.testimonials-flat {
padding: 150px 0px 0px 0px;
width: 100%;
height: 350px;
margin: 0px 0px 93px 0px;
background: url(../img/testimonials-s.jpg) center top no-repeat;
}
.testimonials-flat.about-ts {
background: url(../img/about-ts.jpg) left top no-repeat;
}
.testimonials-flat .testimonials-b,
.testimonials-flat .testimonials-d {
color: #fff;
}
.testimonials-flat .testimonials-holder .bx-prev {
background: url(../img/ss-l.png) left top no-repeat;
height: 21px;
width: 12px;
}
.testimonials-flat .testimonials-holder .bx-next {
background: url(../img/ss-r.png) left top no-repeat;
height: 21px;
width: 12px;
}
.testimonials-flat .testimonials-holder .bx-prev:hover,
.testimonials-flat .testimonials-holder .bx-next:hover {
background-position: left -21px;
}
.inform-block {
padding: 0px 0px 60px 0px;
}
.flat-adv-btn {
display: inline-block;
margin-top: 17px;
font-size: 11px;
color: #30353a;
text-decoration: none;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
border: 2px solid #e6e6e6;
border-radius: 3px;
padding: 10px 19px 10px 19px;
}
.flat-adv-btn:hover {
color: #ff7200;
}
.pop-destinations {
background: #ffffff;
padding: 92px 20px 61px 20px;
}
.pop-destinations .offer-slider-i,
.offer-slider-c {
font-family: 'Raleway';
font-weight: 500;
}
.pop-destinations .offer-slider-i {
margin-bottom: 13px;
}
.pop-destinations .offer-slider-i:nth-child(3n) {
margin-right: 0px;
}
.pop-destinations .offer-slider-txt {
padding-left: 0px;
padding-right: 0px;
}
.partners-wrapper {
padding: 94px 0px 0px 0px;
}
.partners-wrapper .partners {
margin-top: 32px;
margin-bottom: 66px;
border: 0px;
}
.partners-wrapper.no-margin {
padding-top: 0px;
}
.partners-wrapper.no-margin .partners {
margin-bottom: 33px;
}
.travel_experience {
background: #fff;
text-align: center;
margin-top: 105px;
padding: 92px 0px 92px 0px;
}
.travel_experience.mp-popular {
margin-bottom: 0px;
}
.t-experience-i {
display: inline-block;
margin: 0px 29px 0px 29px;
width: 325px;
text-align: center;
font-family: 'Raleway';
}
.t-experience-i:first-child {
margin-left: 0px;
}
.t-experience-i:last-child {
margin-right: 0px;
}
.t-experience-a {
margin-bottom: 22px;
}
.t-experience-b {
font-size: 14px;
font-family: 'Montserrat';
margin-bottom: 13px;
color: #3a4142;
font-weight: normal;
text-transform: uppercase;
}
.t-experience-c {
font-size: 14px;
color: #626262;
line-height: 24px;
}
.theme-teaser {
width: 100%;
height: 500px;
margin-bottom: 93px;
background: url(../img/theme-teaser.jpg) center top no-repeat;
}
.theme-teaser .wrapper-padding {
border-collapse: collapse;
display: table;
width: 100%;
}
.theme-teaser-l {
width: 40%;
height: 500px;
padding: 0px 20px 0px 0px;
vertical-align: middle;
display: table-cell;
}
.theme-teaser-r {
width: 60%;
height: 500px;
padding: 0px;
line-height: 0px;
text-align: right;
vertical-align: bottom;
display: table-cell;
}
.theme-teaser-a {
color: #fff;
font-size: 24px;
font-weight: normal;
margin-bottom: 7px;
font-family: 'Montserrat';
line-height: 36px;
text-transform: uppercase;
}
.theme-teaser-b {
margin-bottom: 18px;
font-size: 15px;
color: #fff;
line-height: 25px;
font-family: 'Raleway';
}
.theme-teaser-c {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
background: #fff;
text-decoration: none;
border-radius: 2px;
padding: 12px 36px 12px 36px;
color: #1d292e;
}
.theme-teaser-c:hover {
color: #ff7200;
}
.theme-teaser-padding {
padding: 0px 60px 0px 60px;
}
.pagination a {
display: inline-block;
background: #fff;
text-decoration: none;
text-align: center;
float: left;
margin-right: 6px;
width: 34px;
height: 26px;
padding-top: 8px;
font-size: 13px;
font-family: 'Open Sans';
color: #737778;
}
.pagination a:hover,
.pagination a.active {
color: #ff7200;
}
.two-colls {
width: 100%;
float: left;
}
.two-colls-left {
width: 346px;
float: left;
overflow: hidden;
}
.two-colls-right {
/*margin: 0px 0px 0px 346px;*/
}
.two-colls-right-b {
width: 100%;
float: left;
overflow: hidden;
}
.two-colls-right .padding {
padding: 0px 0px 0px 26px;
}
.page-title {
float: left;
font-family: 'Montserrat';
font-size: 15px;
text-transform: uppercase;
color: #141d1e;
font-weight: normal;
}
.page-title span {
color: #788687;
}
.breadcrumbs {
float: right;
text-transform: uppercase;
font-size: 11px;
color: #828282;
font-family: 'Raleway';
font-weight: 600;
}
.breadcrumbs a {
text-decoration: none;
margin: 0px 7px 0px 7px;
color: #828282;
}
.breadcrumbs span {
color: #4a90a4;
margin: 0px 0px 0px 7px;
}
.page-head {
padding-bottom: 30px;
}
.srch-results-lbl {
background: #fff;
margin-bottom: 25px;
padding: 16px 18px 16px 18px;
font-size: 13px;
color: #3a4142;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.srch-results-lbl span {
display: block;
height: 15px;
background: url(../img/result-icon.png) left top no-repeat;
background-position: left 2px;
padding: 0px 0px 0px 28px;
}
.side-block-search input[type='text'] {
font-size: 11px;
}
.side-block-search .search-select {
border: 1px solid #dedcdc;
width: 89px;
}
.side-block-search .search-line-select {
width: 89px;
}
.side-block-search .search-line input[type='text'] {
width: 294px;
}
.side-block-search .search-select.half-width {
border: 1px solid #dedcdc;
width: 145px;
}
.side-block {
background: #fff;
margin-bottom: 10px;
}
.side-block .page-search-p {
padding: 22px 18px 22px 18px;
}
.side-block .page-search-p label {
display: block;
font-size: 11px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 9px;
}
.side-block .search-line-a {
width: 144px;
}
.side-block .search-line-b {
width: 145px;
}
.side-block .search-line-a input {
width: 129px;
}
.side-block .search-line-b input {
width: 129px;
}
.side-padding {
padding: 21px 18px 20px 18px;
}
.side-lbl {
font-size: 13px;
margin-bottom: 16px;
color: #3a4142;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.price-ammounts {
margin: 14px 0px 0px 0px;
}
.side-block .ui-slider-horizontal {
height: 3px!important;
border: 0px!important;
background: #d9e0e2 !important;
border-radius: 100px!important;
}
.side-block .ui-widget-header {
background: #4a90a4!important;
}
.side-block .ui-state-default,
.side-block .ui-widget-content .ui-state-default,
.side-block .ui-widget-header .ui-state-default,
.side-block .ui-widget-header .ui-state-focus {
background: #fff !important;
border-radius: 100px !important;
border: 1px solid #c2c5c8 !important;
cursor: pointer !important;
top: -8px;
width: 17px;
height: 17px;
}
.price-ammounts input[type='text'] {
width: 100px;
font-size: 12px;
color: #666666;
font-family: 'Open Sans';
border: 0px;
background: #fff;
}
#ammount-to {
float: right;
text-align: right;
}
.price-ranger {
margin-top: 24px;
}
.star-rating-l {
margin: 1px 0px 0px 0px;
font-size: 11px;
color: #848484;
font-family: 'Raleway';
font-weight: 600;
float: left;
}
.star-rating-r {
margin-left: 8px;
float: left;
}
.star-rating-r a {
margin-right: 3px;
float: left;
}
.side-block .jq-checkbox {
width: 15px;
margin: 0px 5px 0px 0px;
background: #fff;
box-shadow: none;
border: 1px solid #dedcdc;
border-radius: 2px;
height: 15px;
position: relative;
}
.side-block .jq-checkbox.checked span {
width: 10px;
height: 8px;
left: 2px;
bottom: 4px;
margin: 0px;
box-shadow: none;
background: transparent url(../img/checkbox.png) left top no-repeat;
position: absolute;
}
.side-block .checkbox {
margin-bottom: 18px;
}
.side-block .checkbox label {
font-family: 'Raleway';
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
color: #848484;
}
.side-block .checkbox label.active {
color: #4a90a4;
}
.side-block .checkbox:last-child {
margin-bottom: 5px;
}
.checkbox .jq-checkbox {
width: 15px;
margin: 0px 5px 0px 0px;
background: #fff;
box-shadow: none;
border: 1px solid #dedcdc;
border-radius: 2px;
height: 15px;
position: relative;
}
.checkbox .jq-checkbox.checked span {
width: 10px;
height: 8px;
left: 2px;
bottom: 4px;
margin: 0px;
box-shadow: none;
background: transparent url(../img/checkbox.png) left top no-repeat;
position: absolute;
}
.jq-radio {
width: 13px;
height: 13px;
position: relative;
background: #fff;
box-shadow: none;
border: 1px solid #96a0a1;
}
.jq-radio.checked {
background: #96a0a1;
}
.jq-radio.checked span {
display: block;
width: 7px;
height: 7px;
position: absolute;
left: 3px;
top: 3px;
background: #fff;
border-radius: 100px;
}
.portfolio-photos {
display: none;
}
.fancybox-skin,
.fancybox-opened .fancybox-skin {
background: transparent;
box-shadow: none;
}
.fancybox-title-over-wrap {
background: transparent;
bottom: -50px;
left: -10px;
font-family: 'Montserrat';
font-size: 12px;
text-transform: uppercase;
}
.fancybox-close {
width: 10px;
height: 10px;
background: url(../img/colorbox-close.png) left top no-repeat;
bottom: -20px;
right: 14px;
top: auto;
}
.fancybox-prev span {
display: block;
width: 10px;
height: 16px;
left: -40px;
background: url(../img/colorbox-left.png) left top no-repeat;
visibility: visible;
}
.fancybox-next span {
display: block;
width: 10px;
height: 16px;
right: -40px;
background: url(../img/colorbox-right.png) left top no-repeat;
visibility: visible;
}
.flight-item {
background: #fff;
margin-bottom: 19px;
padding: 18px 18px 13px 18px;
}
.flt-i-a {
width: 100%;
float: left;
}
.flt-i-b {
margin: 0px 117px 0px 0px;
}
.flt-i-bb {
width: 100%;
float: left;
overflow: hidden;
}
.flt-i-bb.flight-return {
padding-top: 18px;
}
.flt-i-c {
width: 117px;
float: left;
overflow: hidden;
margin: 0 0 0 -117px;
}
.flt-l-a {
width: 100%;
float: left;
}
.flt-l-b {
width: 112px;
float: left;
overflow: hidden;
}
.flt-l-c {
margin: 0px 0px 0px 112px;
}
.flt-l-cb {
width: 100%;
float: left;
overflow: hidden;
}
.way-lbl {
margin-bottom: 23px;
margin-top: 5px;
text-transform: uppercase;
font-size: 12px;
color: #8a8a8a;
font-family: 'Raleway';
display: inline-block;
padding-right: 27px;
font-weight: 500;
background: url(../img/depart-icon.png) right top no-repeat;
background-position: right 1px;
}
.flt-i-bb.flight-return .way-lbl {
background: url(../img/return-icon.png) right top no-repeat;
padding-right: 48px;
background-position: right 1px;
}
.flyght-info-head {
font-size: 12px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
background: #f5f7f7;
padding: 5px 9px 4px 9px;
margin-bottom: 5px;
}
.flight-line {
padding: 2px 0px 14px 0px;
border-bottom: 1px solid #ebebeb;
}
.flight-line:last-child {
border-bottom: 0px;
padding-bottom: 6px;
}
.flight-radio {
display: inline-block;
vertical-align: middle;
margin: -3px 5px 0px 9px;
}
.flight-line-a {
display: inline-block;
vertical-align: middle;
}
.flight-line-a b {
font-size: 10px;
margin-bottom: 3px;
color: #848484;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
display: block;
}
.flight-line-a span {
font-size: 12px;
color: #4a90a4;
font-family: 'Open Sans';
font-weight: bold;
}
.flight-line-d {
display: inline-block;
vertical-align: middle;
width: 4px;
height: 7px;
background: url(../img/flt-devider.png) left top no-repeat;
margin: 0px 11px 0px 13px;
}
.flight-line-b {
float: right;
margin-top: -3px;
line-height: 16px;
}
.flight-line-b b {
cursor: pointer;
display: block;
background: url(../img/details-icon.png) right top no-repeat;
background-position: right 6px;
font-size: 11px;
font-family: 'Open Sans';
font-weight: normal;
text-transform: uppercase;
font-weight: 600;
color: #4d4d4d;
}
.flight-line-b b.open {
cursor: pointer;
display: block;
background: url(../img/details-icon-up.png) right top no-repeat;
background-position: right 6px;
font-size: 11px;
font-family: 'Open Sans';
font-weight: normal;
text-transform: uppercase;
font-weight: 600;
}
.flight-line-b .ui-slider-handle {
outline: none !important;
}
.flight-line-b span {
font-family: 'Raleway';
font-weight: 500;
color: #ff0000;
font-size: 10px;
}
.flt-l-c-padding {
padding-right: 4px;
}
.flt-i-padding {
padding-top: 2px;
padding-left: 15px;
}
.flt-i-price {
font-family: 'Montserrat';
margin-bottom: 4px;
line-height: 23px;
font-weight: normal;
font-size: 20px;
color: #ff7200;
}
.flt-i-price-b {
margin-bottom: 14px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
font-size: 9px;
color: #939393;
}
.flight-details {
display: none;
background: #f7fafa;
padding: 14px 10px 12px 33px;
font-family: 'Raleway';
font-weight: 600;
margin: 12px 0px 0px 0px;
}
.flight-details-l {
float: left;
width: 211px;
}
.flight-details-r {
float: right;
width: 198px;
}
.flight-details-a {
margin-bottom: 3px;
font-size: 11px;
color: #4a90a4;
}
.flight-details-b {
margin-bottom: 6px;
font-size: 12px;
color: #4d4d4d;
}
.flight-details-c {
font-size: 11px;
color: #a0a0a0;
}
.flight-details-d {
text-transform: uppercase;
margin: 6px 0px 0px 0px;
font-size: 11px;
color: #848484;
line-height: 22px;
}
.side-time-holder {
padding-top: 4px;
}
.side-time {
margin-bottom: 22px;
}
.side-time .ui-widget-header {
background: #ff7200;
}
.side-lbl-a {
font-size: 11px;
margin-bottom: 15px;
text-transform: uppercase;
font-family: 'Open Sans';
font-weight: bold;
color: #4a90a4;
}
.time-ammounts {
text-transform: uppercase;
margin-bottom: 18px;
font-size: 10px;
text-transform: uppercase;
color: #666666;
font-family: 'Open Sans';
}
.alt-flight {
background: #fff;
margin-bottom: 20px;
}
.alt-flight-a {
width: 100%;
float: left;
}
.alt-flight-l {
margin: 0px 135px 0px 0px;
}
.alt-flight-lb {
width: 100%;
float: left;
overflow: hidden;
}
.alt-flight-lr {
width: 135px;
float: left;
overflow: hidden;
margin: 0 0 0 -135px;
}
.alt-flight-lr .padding {
padding: 29px 0px 10px 18px;
}
.alt-flight .flt-i-price {
font-weight: 500;
}
.alt-flight .alt-flight-lr .cat-list-btn {
text-align: center;
width: 97px;
padding-left: 0px;
padding-right: 0px;
}
#preloader {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #FFF;
z-index: 11000;
}
#spinner {
position: relative;
height: 35px;
width: 35px;
top: 50%;
margin-bottom: -12px;
margin: 0 auto;
border: 3px solid rgba(226, 226, 226, 0.75);
border-radius: 100%;
-webkit-animation: rotation .6s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
}
#spinner:before {
content: "";
display: block;
position: absolute;
left: -3px;
top: -3px;
height: 100%;
width: 100%;
border-top: 3px solid #ff7200;
border-left: 3px solid transparent;
border-bottom: 3px solid transparent;
border-right: 3px solid transparent;
border-radius: 100%;
}
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(359deg);
}
}
@-moz-keyframes rotation {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(359deg);
}
}
@-o-keyframes rotation {
from {
-o-transform: rotate(0deg);
}
to {
-o-transform: rotate(359deg);
}
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.datepicker-popup {
min-width: 534px !important;
}
.alt-flight-lr .cat-list-btn {
padding-left: 20px;
padding-right: 20px;
}
.alt-center-l {
width: 161px;
float: left;
overflow: hidden;
}
.alt-center {
width: 100%;
float: left;
}
.alt-center-c {
margin: 0px 0px 0px 161px;
}
.alt-center-cb {
width: 100%;
float: left;
overflow: hidden;
}
.alt-center-lp {
padding: 18px 0px 18px 18px;
}
.alt-logo {
display: table;
}
.alt-logo a {
display: table-cell;
width: 161px;
height: 112px;
background: #f7f9fa;
text-align: center;
vertical-align: middle;
}
.alt-center-cp {
padding: 27px 0px 30px 18px;
border-right: 1px solid #ede7e1;
}
.alt-lbl {
font-family: 'Montserrat';
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
margin-bottom: 5px;
color: #4c4c4c;
}
.alt-info {
font-family: 'Raleway';
font-weight: 500;
color: #747d7e;
font-size: 10px;
text-transform: uppercase;
}
.alt-info b {
font-family: 'Open Sans';
font-weight: bold;
color: #4a90a4;
margin-right: 6px;
}
.alt-devider {
width: 100%;
height: 1px;
border-bottom: 1px solid #ede7e1;
margin: 11px 0px 13px 0px;
}
.alt-data-i {
line-height: 12px;
float: left;
}
.alt-data-i b {
display: block;
font-family: 'Raleway';
font-weight: 600px;
margin-bottom: 4px;
text-transform: uppercase;
font-size: 10px;
color: #848484;
}
.alt-data-i span {
font-family: 'Open Sans';
font-weight: bold;
font-size: 12px;
color: #4a90a4;
}
.alt-departure {
background: url(../img/alt-depart.png) left center no-repeat;
margin-right: 26px;
padding: 0px 0px 0px 23px;
}
.alt-arrival {
background: url(../img/alt-return.png) left center no-repeat;
margin-right: 27px;
padding: 0px 0px 0px 23px;
}
.alt-time {
background: url(../img/alt-time.png) left center no-repeat;
margin-right: 20px;
padding: 0px 0px 0px 23px;
}
.alt-center-c .flight-line-b {
line-height: 15px;
margin-top: -1px;
margin-right: 32px;
}
.alt-details {
display: none;
padding: 23px 21px 25px 21px;
border-top: 1px solid #e8e8e8;
}
.alt-details-i {
font-family: 'Raleway';
float: left;
margin-right: 70px;
font-weight: 600;
}
.alt-details-i:nth-child(2n) {
margin-right: 56px;
}
.alt-details-i b {
display: block;
font-size: 12px;
margin-bottom: 3px;
color: #4d4d4d;
}
.alt-details-i span {
color: #a0a0a0;
font-size: 11px;
}
.alt-fligt-table {
width: 230px;
float: left;
background: #ffffff;
margin-bottom: 19px;
margin-right: 19px;
}
.alt-fligt-table:nth-child(3n) {
float: right;
margin-right: 0px;
}
.alt-fligt-table-a {
padding: 10px 10px 17px 10px;
}
.alt-fligt-table-img {
display: table;
width: 100%;
border-collapse: collapse;
}
.alt-fligt-table-img a {
display: table-cell;
height: 124px;
width: 100%;
background: #f7f9fa;
text-align: center;
vertical-align: middle;
}
.alt-fligt-table-content {
padding: 16px 8px 0px 8px;
}
.alt-fligt-table-info {
border-top: 1px solid #ede7e1;
border-bottom: 1px solid #ede7e1;
padding: 13px 0px 13px 0px;
margin-bottom: 16px;
}
.alt-fligt-table-info .alt-departure {
margin-right: 22px;
float: left;
}
.alt-fligt-table-info .alt-arrival {
margin: 0px;
}
.alt-fligt-table .alt-info {
margin-bottom: 13px;
}
.alt-fligt-table-foot-l {
float: left;
}
.alt-fligt-table-foot-r {
float: right;
}
.alt-fligt-table .flt-i-price {
margin-bottom: 3px;
margin-top: -4px;
font-size: 18px;
}
.alt-fligt-table .flt-i-price-b {
font-size: 9px;
margin-bottom: 0px;
color: #939393;
}
.alt-fligt-table .cat-list-btn {
padding-left: 20px;
padding-right: 20px;
}
.cat-list-item .offer-slider-r span {
float: none;
}
.offer-slider-i .offer-slider-r b {
margin-bottom: 1px;
}
.preloader {
background: url(../img/89.gif) center center no-repeat #ffffff;
}
.tour-item .cat-list-item-p {
padding: 0px;
}
.tour-item .cat-list-content-lpadding {
padding: 0px;
}
.tour-item-a {
padding: 20px 0px 20px 17px;
}
.tour-item-b {
padding: 17px 17px 20px 17px;
}
.tour-item-lbl {
margin-bottom: 6px;
}
.tour-item-lbl a {
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
color: #4c4c4c;
font-weight: normal;
font-family: 'Montserrat';
}
.tour-item-date {
font-size: 10px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
}
.tour-item-devider {
width: 100%;
height: 1px;
background: #ede7e1;
}
.tour-item-b p {
margin: 0px 0px 10px 0px;
}
.tour-item-plus {
margin: 0px 3px 0px 2px;
display: inline-block;
}
.tour-item-icons {
float: left;
}
.tour-icon-txt {
float: left;
font-size: 10px;
margin: 4px 0px 0px 9px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.tour-duration {
float: left;
font-size: 10px;
margin: 4px 0px 0px 33px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.tour-item .offer-slider-r span {
font-weight: 500;
color: #747d7e;
}
.tour-item .cat-list-item-rb .offer-slider-r b {
margin-bottom: 6px;
}
.tour-item .cat-list-btn:hover {
background: #4a90a4;
}
.tour-i-holder {
float: left;
}
.tour-grid .offer-slider-link a {
font-weight: normal;
font-family: 'Montserrat';
letter-spacing: -0.03em;
font-size: 12px;
color: #4c4c4c;
}
.tour-grid .offer-slider-txt {
padding: 17px 15px 19px 17px;
}
.tour-grid .offer-slider-link {
margin-bottom: 11px;
}
.tour-grid .offer-slider-r b {
font-weight: 500;
}
.tour-grid .offer-slider-r span {
float: none;
font-weight: 500;
}
.tour-grid .offer-slider-location {
margin-bottom: 3px;
}
.tour-grid .cat-list-btn {
width: 86px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
.sp-page-a {
width: 100%;
float: left;
}
.sp-page-l {
margin: 0px 348px 0px 0px;
}
.sp-page-com {
margin: auto;
}
.sp-page-lb {
width: 100%;
float: left;
overflow: hidden;
}
.sp-page-r {
width: 348px;
float: left;
overflow: hidden;
margin: 0 0 0 -348px;
}
.sp-page-p {
padding-right: 29px;
}
.h-detail-r {
background: #fff;
padding: 20px 20px 10px 20px;
margin-bottom: 7px;
}
.h-detail-lbl {
margin: 0px 0px 17px 0px;
font-size: 16px;
color: #4c4c4c;
}
.h-help {
background: #fff;
padding: 21px 20px 21px 20px;
margin-bottom: 28px;
}
.h-help-lbl {
font-family: 'Montserrat';
margin-bottom: 8px;
color: #4c4c4c;
font-weight: normal;
font-size: 16px;
}
.h-help-lbl-a {
font-family: 'Raleway';
margin-bottom: 15px;
font-weight: 500;
font-size: 11px;
text-transform: uppercase;
color: #747d7e;
}
.h-help-phone {
font-family: 'Open Sans';
font-size: 20px;
color: #4a90a4;
background: url(../img/h-phone.png) left top no-repeat;
padding: 0px 0px 0px 23px;
background-position: left 5px;
}
.h-help-email {
font-family: 'Raleway';
margin: 6px 0px 0px 23px;
font-size: 13px;
color: #888888;
}
.h-liked {
background: #fff;
margin-bottom: 28px;
padding: 21px 20px 21px 20px;
}
.h-liked-lbl {
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 16px;
font-size: 16px;
color: #4c4c4c;
}
.h-liked-rating {
margin-bottom: 8px;
}
.h-liked-item {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px solid #ebebeb;
}
.h-liked-item:last-child {
border-bottom: 0px;
padding: 0px;
margin: 0px;
}
.h-liked-item-i {
width: 100%;
float: left;
}
.h-liked-item-l {
width: 81px;
float: left;
overflow: hidden;
margin-top: 4px;
}
.h-liked-item-c {
margin: 0px 0px 0px 81px;
}
.h-liked-item-cb {
width: 100%;
float: left;
overflow: hidden;
}
.h-liked-item-p {
padding: 0px 20px 0px 17px;
}
.h-liked-title {
margin-bottom: 5px;
}
.h-liked-title a {
font-size: 12px;
text-decoration: none;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.h-liked-price {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
}
.h-liked-comment {
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
margin-left: 5px;
font-size: 9px;
color: #939393;
}
.h-detail-lbl-a {
font-family: 'Montserrat';
margin-bottom: 7px;
font-size: 18px;
color: #4c4c4c;
font-weight: normal;
}
.h-detail-lbl-b {
font-family: 'Raleway';
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
font-weight: 500;
}
.h-detail-stars {
padding: 17px 0px 18px 0px;
font-weight: 500;
font-family: 'Raleway';
border-bottom: 1px solid #ebebeb;
border-top: 1px solid #ebebeb;
}
.h-stars-list,
.h-stars-list li {
margin: 0px;
padding: 0px;
list-style: none;
}
.h-stars-list li {
float: left;
margin-right: 1px;
}
.h-stars-list {
float: left;
margin-right: 8px;
}
.h-stars-lbl {
float: left;
margin: 2px 0px 0px 0px;
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
}
.h-add-review {
text-decoration: none;
margin: 2px 0px 0px 0px;
float: right;
background: url(../img/add.png) left top no-repeat;
padding: 0px 0px 0px 17px;
background-position: left 0px;
text-transform: uppercase;
font-size: 11px;
color: #747d7e;
}
.h-details-text {
padding: 16px 0px 17px 0px;
margin-bottom: 22px;
border-bottom: 1px solid #ebebeb;
}
.h-details-text p {
font-size: 13px;
color: #626262;
font-family: 'Raleway';
line-height: 21px;
margin-bottom: 20px;
}
.h-details-text p:last-child {
margin-bottom: 0px;
}
.wishlist-btn {
display: block;
height: 41px;
margin-bottom: 15px;
border: 1px solid #e5e5e5;
border-radius: 3px;
}
.wishlist-btn:hover .wishlist-btn-r {
color: #4a90a4;
}
.wishlist-btn:hover .wishlist-btn-l i {
background-position: left -10px;
}
.wishlist-btn:hover {
-webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
-moz-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
}
.book-btn:hover {
background: #ff8521;
}
.reasons-rating-txt {
font-family: 'Raleway';
font-size: 14px;
color: #7e898b;
line-height: 26px;
margin-bottom: 12px;
}
.reasons-rating {
overflow: hidden;
position: relative;
padding: 20px 20px 20px 20px;
background: #fff;
margin-bottom: 28px;
}
.reasons-rating .bx-pager {
position: absolute;
z-index: 999;
bottom: 30px;
right: 20px;
}
.reasons-rating .bx-pager-item {
margin-bottom: 4px;
}
.reasons-rating .bx-pager-item a {
display: block;
border-radius: 1000px;
border: 1px solid #818c8e;
overflow: hidden;
text-indent: -999px;
width: 8px;
height: 8px;
}
.reasons-rating .bx-pager-item a.active {
background: #ff7200;
border-color: #ff7200;
}
.reasons-rating .bx-controls-direction {
display: none;
}
.reasons-rating-user-l {
position: relative;
float: left;
width: 52px;
}
.reasons-rating-user-l span {
display: block;
width: 20px;
height: 17px;
padding-top: 3px;
text-align: center;
background: #4a90a4;
position: absolute;
right: 0px;
bottom: 0px;
border-radius: 100px;
font-size: 9px;
color: #fff;
font-family: 'Open Sans';
font-weight: bold;
}
.reasons-rating-user-r {
float: left;
margin: 5px 0px 0px 14px;
font-family: 'Raleway';
}
.reasons-rating-user-r b {
display: block;
font-weight: 600;
font-size: 13px;
color: #4c4c4c;
}
.reasons-rating-user-r span {
font-size: 11px;
color: #555555;
}
.h-tabs-right {
float: right;
padding: 18px 0px 0px 0px;
}
.h-tabs-right i {
float: left;
display: block;
width: 15px;
height: 15px;
background: url(../img/more-icon.png) left top no-repeat;
}
.h-tabs-right span {
float: left;
font-family: 'Raleway';
font-weight: 700;
margin: 1px 0px 0px 8px;
font-size: 10px;
color: #787878;
text-transform: uppercase;
}
.h-tabs-right a:hover i {
background-position: left -15px;
}
.h-tabs-right a:hover span {
color: #4a90a4;
}
.h-reasons {
background: #fff;
padding: 21px 20px 9px 20px;
}
.h-reasons-row {
margin-top: 20px;
}
.reasons-i {
border-bottom: 1px solid #ebebeb;
margin-bottom: 13px;
}
.reasons-i:last-child {
margin-bottom: 0px;
border-bottom: 0px;
padding-bottom: none;
}
.reasons-l {
width: 41px;
margin-top: 1px;
float: left;
overflow: hidden;
}
.reasons-h {
width: 100%;
float: left;
}
.reasons-r {
margin: 0px 0px 0px 41px;
font-family: 'Raleway';
}
.reasons-rb {
width: 100%;
float: left;
overflow: hidden;
}
.reasons-i-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 7px;
text-transform: uppercase;
font-size: 12px;
color: #4c4c4c;
}
.reasons-r p {
font-size: 12px;
color: #626262;
line-height: 21px;
}
.reasons-p {
padding: 0px 0px 0px 11px;
}
.h-tabs {
background: #fff;
padding: 0px 18px 0px 14px;
margin-bottom: 7px;
height: 47px;
}
.h-tabs-left {
float: left;
padding: 12px 0px 0px 0px;
}
.h-tab-item-01 i {
display: block;
background: url(../img/gall-icon.png) left top no-repeat;
float: left;
width: 17px;
height: 16px;
}
.h-tab-item-02 i {
display: block;
background: url(../img/map-icon.png) left top no-repeat;
float: left;
width: 13px;
height: 16px;
}
.h-tab-item-03 i {
display: block;
background: url(../img/calc-icon.png) left top no-repeat;
float: left;
width: 17px;
height: 16px;
}
.h-tab-i span {
display: none;
float: left;
margin: 3px 0px 0px 7px;
text-transform: uppercase;
color: #4a90a4;
font-size: 10px;
font-weight: bold;
font-family: 'Raleway';
}
.h-tab-i.active span {
display: block;
}
.h-tab-i.active i {
background-position: left -16px;
}
.h-tab-i {
height: 22px;
float: left;
margin-right: 12px;
border-right: 1px solid #e8e8e8;
padding: 3px 12px 0px 0px;
}
.mm-tabs-wrapper {
margin-bottom: 37px;
}
.tab-item {
display: none;
position: relative;
}
.tab-item:nth-child(1) {
display: block;
}
.wishlist-btn-l {
float: left;
width: 39px;
height: 41px;
display: block;
float: left;
border-right: 1px solid #e5e5e5;
}
.wishlist-btn-r {
float: right;
width: 266px;
height: 27px;
padding-top: 14px;
font-size: 12px;
text-transform: uppercase;
font-family: 'Raleway';
color: #6a7880;
font-weight: 600;
text-align: center;
display: block;
}
.wishlist-btn-l i {
display: block;
background: url(../img/whishlist.png) left top no-repeat;
float: left;
margin: 16px 0px 0px 15px;
width: 10px;
height: 10px;
}
.book-btn {
display: block;
background: #ff7200;
height: 41px;
margin-bottom: 15px;
border: 1px solid #ff7200;
border-radius: 3px;
}
.book-btn-l {
float: left;
width: 39px;
height: 41px;
display: block;
float: left;
border-right: 1px solid #ed6b00;
}
.book-btn-r {
float: right;
width: 266px;
height: 27px;
padding-top: 14px;
font-size: 12px;
text-transform: uppercase;
font-family: 'Raleway';
color: #ffffff;
font-weight: 600;
text-align: center;
display: block;
}
.book-btn-l i {
display: block;
background: url(../img/book-icon.png) left top no-repeat;
float: left;
margin: 17px 0px 0px 14px;
width: 12px;
height: 8px;
}
.gallery-i a {
display: block;
position: relative;
}
.gallery-i span {
display: block;
width: 102px;
height: 69px;
position: absolute;
left: 0px;
top: 0px;
z-index: 999;
border: 3px solid transparent;
}
.gallery-i.active span {
border-color: #ff9e4f;
}
.gallery-i:hover img {
opacity: 0.8;
}
.tab-gallery-big {
margin-bottom: 7px;
}
.tab-gallery-preview {
position: relative;
background: #fff;
padding: 7px 10px 3px 20px;
}
.tab-gallery-preview .bx-pager {
display: none;
}
.tab-gallery-preview .bx-prev,
.tab-gallery-preview .bx-next {
display: block;
width: 20px;
height: 75px;
overflow: hidden;
text-indent: -999px;
position: absolute;
top: 7px;
}
.tab-gallery-preview .bx-prev {
left: 0px;
background: url(../img/gall-prev.png) left top no-repeat;
}
.tab-gallery-preview .bx-next {
right: 0px;
background: url(../img/gall-next.png) left top no-repeat;
}
.tab-gallery-preview .bx-prev:hover,
.tab-gallery-preview .bx-next:hover {
background-position: left -75px;
}
.tabs-lamp {
background: url(../img/icon-lamp.png) left top no-repeat;
float: right;
width: 40px;
height: 42px;
display: block;
}
.content-tabs-head ul li {
float: left;
margin-right: 3px;
}
.content-tabs-head.last-item ul li:last-child {
float: right;
margin-right: 0px;
}
.content-tabs-head.last-item ul li:last-child a {
margin: 0px;
padding: 0px;
background: #ede9e6 url(../img/icon-lamp.png) left top no-repeat;
float: right;
width: 40px;
height: 42px;
display: block;
}
.content-tabs-head ul li a {
display: block;
height: 27px;
padding: 15px 20px 0px 20px;
border-radius: 3px 3px 0px 0px;
font-family: 'Raleway';
font-weight: bold;
text-decoration: none;
color: #73716f;
font-size: 11px;
text-transform: uppercase;
background: #ede9e6;
}
.content-tabs-head ul li a.active {
background: #fff;
color: #ff7200;
}
.content-tabs-head.last-item ul li:last-child a.active {
background: #fff url(../img/icon-lamp.png) left top no-repeat;
background-position: left -42px;
}
.content-tabs-body {
background: #fff;
padding: 37px 20px 39px 20px;
}
.content-tabs-i {
font-family: 'Raleway';
display: none;
}
.content-tabs-i:nth-child(1) {
display: block;
}
.content-tabs-i h2 {
font-family: 'Montserrat';
font-weight: normal;
font-size: 16px;
color: #4c4c4c;
margin-bottom: 19px;
}
.content-tabs-i p {
font-size: 14px;
color: #626262;
line-height: 26px;
}
.content-tabs-i p.small {
font-size: 13px;
line-height: 21px;
}
.tab-reasons {
padding-top: 14px;
}
.tab-reasons h2 {
margin-bottom: 26px;
}
.tab-reasons-h {
background: #fcfbfa;
padding: 27px 20px 5px 26px;
margin-bottom: 36px;
}
.tab-reasons-i {
width: 41%;
margin-bottom: 6px;
float: left;
padding-left: 43px;
}
.tab-reasons-i:nth-child(2n) {
float: right;
}
.tab-reasons-i b {
font-family: 'Montserrat';
display: block;
margin-bottom: 9px;
font-weight: normal;
text-transform: uppercase;
font-size: 12px;
color: #3a4142;
}
.tab-reasons-i p {
font-size: 12px;
line-height: 22px;
}
.tab-reasons-i.reasons-01 {
background: url(../img/tabs-i-01.png) left top no-repeat;
}
.tab-reasons-i.reasons-02 {
background: url(../img/tabs-i-02.png) left top no-repeat;
}
.tab-reasons-i.reasons-03 {
background: url(../img/tabs-i-03.png) left top no-repeat;
}
.tab-reasons-i.reasons-04 {
background: url(../img/tabs-i-04.png) left top no-repeat;
}
.facilities table {
width: 100%;
border-collapse: collapse;
}
.facilities table {
width: 100%;
}
.facilities table td {
font-family: 'Raleway';
font-size: 13px;
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
padding: 15px 0px 14px 0px;
color: #626262;
}
.facilities table td.facilities-a {
width: 160px;
color: #4a90a4;
}
.facility-label {
background: url(../img/free-icon.png) left top no-repeat;
padding: 0px 0px 0px 14px;
background-position: left 4px;
}
.rates-line {
width: 44%;
float: left;
}
.rates-line-right {
width: 44%;
float: left;
margin-left: 24px;
}
.rates-search {
padding-top: 7px;
}
.rates-search label {
display: block;
margin-bottom: 8px;
font-size: 11px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
color: #4c4c4c;
}
.rates-search .search-line-a.middle input[type="text"] {
width: 120px;
}
.rates-search .search-line-a {
width: 152px;
margin-right: 9px;
}
.rates-search .search-line-select.middle .search-select {
width: 84px;
}
.rates-search .search-line-select.middle {
width: 87px;
}
.rates-search .search-line-select.middle.last {
width: 86px;
}
.rates-search .search-line-a input[type="text"],
.rates-search .search-line-b input[type="text"] {
padding-top: 9px;
padding-bottom: 8px;
}
.rates-srch {
display: block;
float: right;
margin: 21px 0px 0px 0px;
width: 34px;
height: 34px;
background: #ff7200 url(../img/rates-srch.png) left top no-repeat;
border-radius: 2px;
border: 0px;
cursor: pointer;
}
.rates-srch:hover {
background: #ff8f35 url(../img/rates-srch.png) left top no-repeat;
}
.rates-devider {
height: 1px;
background: #ebebeb;
margin: 12px 0px 35px 0px;
}
.available-row .cat-list-item {
border-bottom: 1px solid #ebebeb;
padding-bottom: 4px;
margin-bottom: 19px;
}
.available-row .cat-list-content-p {
padding-left: 40px;
}
.available-row .cat-list-item-l {
width: 167px;
margin-top: 4px;
}
.available-row .cat-list-item-r {
margin-left: 167px;
}
.available-row .offer-slider-link a {
font-size: 600;
}
.available-row .cat-list-content-lpadding {
padding-top: 0px;
min-height: 0px;
padding-bottom: 15px;
border: none;
}
.available-row .cat-list-content-l p {
font-size: 13px !important;
margin-top: 10px;
margin-bottom: 20px;
line-height: 21px;
}
.available-row .cat-list-content-l .offer-slider-link {
margin-bottom: 12px;
}
.available-row .cat-list-item-p {
padding-left: 19px;
}
.available-row .cat-list-content-p {
padding-top: 0px;
}
.available-btn {
width: 82px;
height: 21px;
padding-top: 10px;
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
}
.available-btn:hover {
color: #ff7200;
}
.available-price {
font-family: 'Open Sans';
margin-top: -1px;
font-weight: 600;
font-size: 20px;
color: #ff7200;
margin-bottom: 4px;
}
.available-price-a {
font-weight: 500;
font-size: 10px;
margin-bottom: 15px;
color: #747d7e;
text-transform: uppercase;
}
.available-price-c {
font-size: 13px;
color: #455051;
margin-bottom: 21px;
}
.availabe-more {
width: 100%;
height: 24px;
margin-top: 31px;
padding-top: 11px;
font-size: 11px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.availabe-more:hover {
color: #ff7200;
}
.preferences-list,
.preferences-list li {
margin: 0px;
padding: 0px;
list-style: none;
}
.preferences-list {
margin-top: 22px;
}
.preferences-list li {
display: inline-block;
float: left;
width: 175px;
font-size: 12px;
color: #626262;
margin: 0px 20px 14px 0px;
min-height: 24px;
padding: 6px 0px 0px 39px;
}
.preferences-list li:nth-child(3n) {
margin-right: 0px;
}
.preferences-list li.internet {
background: url(../img/pref-01.png) left top no-repeat;
}
.preferences-list li.conf-room {
background: url(../img/pref-02.png) left top no-repeat;
}
.preferences-list li.play-place {
background: url(../img/pref-03.png) left top no-repeat;
}
.preferences-list li.restourant {
background: url(../img/pref-04.png) left top no-repeat;
}
.preferences-list li.bar {
background: url(../img/pref-05.png) left top no-repeat;
}
.preferences-list li.doorman {
background: url(../img/pref-06.png) left top no-repeat;
}
.preferences-list li.kitchen {
background: url(../img/pref-07.png) left top no-repeat;
}
.preferences-list li.spa {
background: url(../img/pref-08.png) left top no-repeat;
}
.preferences-list li.bike {
background: url(../img/pref-09.png) left top no-repeat;
}
.preferences-list li.entertaiment {
background: url(../img/pref-10.png) left top no-repeat;
}
.preferences-list li.hot-tub {
background: url(../img/pref-11.png) left top no-repeat;
}
.preferences-list li.pool {
background: url(../img/pref-12.png) left top no-repeat;
}
.preferences-list li.parking {
background: url(../img/pref-13.png) left top no-repeat;
}
.preferences-list li.gym {
background: url(../img/pref-14.png) left top no-repeat;
}
.preferences-list li.tv {
background: url(../img/pref-15.png) left top no-repeat;
}
.preferences-list li.pets {
background: url(../img/pref-16.png) left top no-repeat;
}
.preferences-list li.handicap {
background: url(../img/pref-17.png) left top no-repeat;
}
.preferences-list li.secure {
background: url(../img/pref-18.png) left top no-repeat;
}
.preferences-devider {
width: 100%;
height: 1px;
border-bottom: 1px solid #ebebeb;
margin: 12px 0px 36px 0px;
}
.preferences-list-alt,
preferences-list-alt li {
margin: 0px;
padding: 0px;
list-style: none;
}
.preferences-list-alt {
margin-top: 24px;
}
.preferences-list-alt li {
display: inline-block;
float: left;
width: 175px;
font-size: 12px;
color: #626262;
margin: 0px 20px 11px 0px;
min-height: 24px;
padding: 5px 0px 0px 39px;
}
.preferences-list-alt li:nth-child(3n) {
margin-right: 0px;
}
.preferences-list-alt li.internet {
background: url(../img/pref-alt-01.png) left top no-repeat;
}
.preferences-list-alt li.parking {
background: url(../img/pref-alt-02.png) left top no-repeat;
}
.preferences-list-alt li.gym {
background: url(../img/pref-alt-03.png) left top no-repeat;
}
.preferences-list-alt li.restourant {
background: url(../img/pref-alt-04.png) left top no-repeat;
}
.preferences-list-alt li.pets {
background: url(../img/pref-alt-05.png) left top no-repeat;
}
.preferences-list-alt li.pool {
background: url(../img/pref-alt-06.png) left top no-repeat;
}
.preferences-list-alt li.kitchen {
background: url(../img/pref-alt-07.png) left top no-repeat;
}
.preferences-list-alt li.conf-room {
background: url(../img/pref-alt-08.png) left top no-repeat;
}
.preferences-list-alt li.bike {
background: url(../img/pref-alt-09.png) left top no-repeat;
}
.preferences-list-alt li.entertaiment {
background: url(../img/pref-alt-10.png) left top no-repeat;
}
.preferences-list-alt li.bar {
background: url(../img/pref-alt-11.png) left top no-repeat;
}
.preferences-list-alt li.secure {
background: url(../img/pref-alt-12.png) left top no-repeat;
}
.reviews-c {
width: 100%;
float: left;
}
.reviews-l {
width: 233px;
float: left;
overflow: hidden;
}
.reviews-r {
margin: 0px 0px 0px 233px;
}
.reviews-rb {
width: 100%;
float: left;
overflow: hidden;
}
.reviews-total {
font-family: 'Open Sans';
margin-top: -15px;
margin-bottom: 0px;
font-weight: 300;
font-size: 50px;
color: #4c4c4c;
}
.reviews-total-stars {
display: block;
}
.reviews-total-stars li {
float: left;
margin-right: 3px;
}
.reviews-percents {
margin-bottom: 15px;
}
.reviews-percents-i {
height: 4px;
width: 100%;
background: #ede9e6;
border-radius: 100px;
}
.reviews-percents-i span {
display: block;
height: 4px;
width: 70%;
background: #82bec5;
border-radius: 100px;
}
.reviews-percents label {
font-size: 10px;
display: block;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
margin-bottom: 9px;
color: #8c8c8c;
}
.reviews-devider {
height: 1px;
background: #ebebeb;
width: 100%;
margin: 16px 0px 36px 0px;
}
.hotel-reviews-devider {
height: 1px;
background: #ebebeb;
width: 100%;
margin: 22px 0px 36px 0px;
}
.hotel-reviews h2 {
margin-bottom: 26px;
}
.hotel-reviews-i {
width: 181px;
float: left;
margin-right: 50px;
margin-bottom: 21px;
}
.hotel-reviews-i:nth-child(3n) {
margin-right: 0px;
}
.hotel-reviews-left {
float: left;
font-size: 13px;
color: #4c4c4c;
}
.hotel-reviews-right {
float: right;
}
.hotel-reviews-right li {
float: left;
margin-left: 1px;
}
.guest-reviews h2 {
margin-bottom: 23px;
}
.guest-reviews-i {
padding-bottom: 14px;
margin-bottom: 14px;
border-bottom: 1px solid #ebebeb;
}
.guest-reviews-a {
width: 100%;
float: left;
}
.guest-reviews-l {
width: 89px;
float: left;
overflow: hidden;
}
.guest-reviews-r {
margin: 0px 0px 0px 89px;
}
.guest-reviews-rb {
width: 100%;
float: left;
overflow: hidden;
}
.guest-reviews-img {
position: relative;
margin-top: 3px;
width: 70px;
height: 70px;
}
.guest-reviews-img span {
display: block;
width: 26px;
height: 22px;
padding-top: 4px;
border-radius: 1000px;
text-align: center;
position: absolute;
right: 0px;
bottom: 0px;
background: #4a90a4;
color: #fff;
font-size: 12px;
font-family: 'Open Sans';
font-weight: 600;
}
.guest-reviews-b {
width: 100%;
float: left;
}
.guest-reviews-bl {
margin: 0px 173px 0px 0px;
}
.guest-reviews-blb {
width: 100%;
float: left;
overflow: hidden;
}
.guest-reviews-br {
width: 173px;
padding-top: 3px;
float: left;
overflow: hidden;
margin: 0 0 0 -173px;
}
.guest-reviews-lbl {
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
color: #343434;
}
.guest-reviews-lbl-a {
font-size: 12px;
margin-bottom: 10px;
color: #555555;
}
.guest-reviews-txt {
font-size: 13px;
line-height: 21px;
color: #626262;
}
.guest-reviews-br nav li {
float: left;
margin-right: 1px;
}
.guest-reviews-br nav {
float: left;
margin-right: 8px;
}
.guest-rating {
float: left;
font-size: 12px;
color: #939393;
font-family: 'Open Sans';
}
.guest-rating-txt {
font-size: 13px;
margin-top: 32px;
color: #4cb318;
}
.guest-reviews-padding {
padding-left: 60px;
}
.guest-reviews-more {
width: 239px;
height: 24px;
padding-top: 13px;
font-size: 10px;
margin: 30px 0px 0px 0px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.guest-reviews-more:hover {
color: #ff7200;
}
.review-form {
margin: 35px 0px 0px 0px;
}
.review-form label {
display: block;
font-size: 13px;
color: #4c4c4c;
margin-bottom: 9px;
}
.review-form .input-a {
width: 63%;
margin-bottom: 24px;
}
.review-form .input-a input {
text-transform: none;
}
.review-form .textarea-a {
margin-bottom: 36px;
}
.review-form .textarea-a textarea {
text-transform: none;
height: 100px;
}
.input-with-icon-container .input-a {
padding-top: 8px;
padding-bottom: 8px;
}
/*
.review-form input[type='text'] {border-radius:2px; margin-bottom: 24px; font-family: 'Raleway'; width:423px; font-size: 14px; padding:7px 7px 7px 7px; border:1px solid #dedcdc;}
.review-form textarea {border-radius:2px; margin-bottom: 36px; resize: none; height:100px; font-family: 'Raleway'; width:667px; font-size: 14px; padding:7px 7px 7px 7px; border:1px solid #dedcdc;}
*/
.review-ranger {
margin-bottom: 26px;
}
.review-ranger label {
float: left;
width: 100px;
font-size: 13px;
color: #4c4c4c;
display: block;
}
.review-ranger-r {
float: left;
margin: 6px 0px 0px 0px;
width: 338px;
}
.review-ranger-r .ui-slider-horizontal {
height: 5px;
}
.range-holder {
position: relative;
display: block;
width: 20px;
text-align: center;
}
.range-holder i {
position: absolute;
display: block;
width: 20px;
left: 1px;
top: -18px;
width: 17px;
text-align: center;
display: inline-block;
font-size: 11px;
font-family: 'Open Sans';
color: #4c4c4c;
font-style: normal;
}
.review-form .custom-select {
cursor: pointer;
}
.review-form .customSelect {
padding: 8px 7px 8px 7px;
margin-bottom: 24px;
cursor: pointer;
border: 1px solid #dedcdc;
background: url(../img/custom-select.png) right top no-repeat;
cursor: pointer !important;
width: 63%;
border-radius: 2px;
}
.review-form .customSelectInner {
font-size: 14px;
}
.review-send {
margin-top: 5px;
width: 239px;
height: 40px;
color: #fff;
text-transform: uppercase;
border: none;
cursor: pointer;
font-size: 11px;
font-family: 'Raleway';
font-weight: 700;
background: #ff7200;
display: block;
border-radius: 2px;
}
.review-send:hover {
background: #ff8521;
}
.todo-row .cat-list-content-lpadding {
padding: 0px 16px 0px 20px;
min-height: 0px;
}
.todo-row .cat-list-item-l {
width: 194px;
margin-top: 2px;
}
.todo-row .cat-list-item-r {
margin-left: 194px;
}
.todo-row .cat-list-item-p {
padding: 0px;
}
.todo-row .cat-list-item-rb .offer-slider-link a {
font-size: 14px;
color: #343434;
font-weight: 600;
text-transform: none;
}
.todo-row .offer-rate {
font-size: 12px;
margin-bottom: 9px;
color: #4a90a4;
}
.todo-row .cat-list-content-l .offer-slider-link {
margin-bottom: 12px;
}
.todo-row .cat-list-content-l p {
line-height: 21px;
font-size: 13px;
margin: 0px;
}
.todo-row .cat-list-content-r {
width: 146px;
margin-left: -146px;
}
.todo-row .cat-list-content-l {
margin-right: 146px;
}
.todo-row .stars ul li {
margin-right: 2px;
}
.todo-row .cat-list-review {
margin-bottom: 16px;
font-size: 12px;
text-transform: none;
color: #626262;
}
.todo-row .cat-list-item .stars {
margin-bottom: 8px;
}
.todo-btn {
width: 85px;
height: 21px;
padding-top: 10px;
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
}
.todo-btn:hover {
color: #ff7200;
}
.todo-row .cat-list-content-p {
padding-left: 29px;
padding-right: 0px;
padding-top: 0px;
margin-top: -9px;
}
@media all and (-webkit-min-device-pixel-ratio: 0) {
.todo-row .cat-list-content-p {
margin-top: -2px;
}
}
.todo-devider {
height: 1px;
background: #ebebeb;
margin: 24px 0px 27px 0px;
}
.todo-row .cat-list-item {
border-bottom: 1px solid #ebebeb;
margin-bottom: 22px;
padding-bottom: 20px;
}
.faq-item {
padding-bottom: 17px;
margin-bottom: 17px;
border-bottom: 1px solid #ebebeb;
}
.faq-item-a {
cursor: pointer;
}
.faq-item-left {
font-size: 14px;
color: #4c4c4c;
font-weight: 500;
}
.faq-item-i {
float: right;
margin-top: 2px;
display: block;
width: 12px;
height: 12px;
background: url(../img/faq.png) left top no-repeat;
}
.faq-item.open .faq-item-i {
background-position: left -12px;
}
.faq-item-p {
display: none;
font-size: 13px;
padding-top: 13px;
color: #626262;
line-height: 21px;
}
#map {
width: 100%;
height: 546px;
}
.calendar-tab {
background: #fff;
padding: 24px 20px 17px 20px;
}
.calendar-tab-select label {
font-size: 12px;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 12px;
display: block;
text-transform: uppercase;
color: #3a4142;
}
.calendar-tab-select select {
cursor: pointer;
}
.calendar-tab-select .customSelect {
border-radius: 2px;
margin-bottom: 17px;
background: url(../img/tab-select.png) right top no-repeat;
width: 257px;
height: 25px;
padding: 7px 0px 0px 9px;
border: 1px solid #dedcdc;
}
.calendar-tab-select .customSelectInner {
font-size: 11px;
color: #8a8a8a;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
}
.tab-calendar-s {
padding: 21px 0px 0px 15px;
}
.tab-calendar-colls {
width: 100%;
float: left;
}
.tab-calendar-collsl {
margin: 0px 117px 0px 0px;
}
.tab-calendar-collslb {
width: 100%;
float: left;
overflow: hidden;
}
.tab-calendar-collsr {
width: 117px;
float: left;
overflow: hidden;
margin: 0 0 0 -117px;
}
.tab-calendar-colls table {
width: 100%;
border-collapse: collapse;
}
.tab-calendar-colls table thead td {
font-size: 10px;
color: #636e70;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
padding-bottom: 8px;
}
.tab-calendar-colls table tbody td {
width: 72px;
height: 72px;
padding: 0px 7px 7px 0px;
}
.tab-calendar-colls table tbody td span {
font-size: 13px;
text-align: right;
border-radius: 2px;
color: #a5b5be;
font-family: 'Open Sans';
font-weight: 600;
display: block;
width: 100%;
height: 100%;
border: 1px solid #afd1db;
}
.tab-calendar-colls table tbody td span p {
display: block;
padding: 6px 7px 0px 0px;
}
.tab-calendar-colls table tbody td.date-passed span {
background: #f6f9fa;
}
.tab-calendar-colls table tbody td.date-available span {
color: #84d840;
border-color: #84d840;
}
.tab-calendar-colls table tbody td.date-unavailable span {
color: #f69191;
border-color: #f69191;
}
.map-symbol-l {
float: left;
width: 14px;
height: 14px;
border-radius: 2px;
}
.map-symbol-r {
float: left;
margin: 2px 0px 0px 7px;
font-size: 11px;
color: #747d7e;
font-weight: 500;
text-transform: uppercase;
}
.passed .map-symbol-l {
border: 1px solid #afd1db;
}
.available .map-symbol-l {
border: 1px solid #84d840;
}
.unavailable .map-symbol-l {
border: 1px solid #f69191;
}
.map-symbol {
margin-bottom: 13px;
}
.booking-left {
background: #fff;
padding: 22px 19px 29px 19px;
font-family: 'Raleway';
}
.booking-left h2 {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 18px;
font-size: 16px;
color: #4c4c4c;
}
.booking-form-i label {
font-size: 12px;
display: block;
margin-bottom: 11px;
color: #626262;
}
.booking-form-i {
width: 48.55%;
margin-bottom: 18px;
float: left;
}
.booking-form-i:nth-child(2n) {
float: right;
}
.booking-form-i .input {
padding: 6px 10px 6px 10px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .input input[type='text'] {
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.booking-form .checkbox {
margin-top: 2px;
}
.booking-form .checkbox label {
font-size: 12px;
font-weight: 500;
color: #848484;
font-family: 'Raleway';
cursor: pointer;
}
.booking-form .checkbox .jq-checkbox {
margin-right: 7px;
}
.booking-form-i .textarea {
padding: 6px 10px 6px 10px;
height: 113px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .textarea textarea {
resize: none;
height: 113px;
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.booking-devider {
width: 100%;
height: 1px;
background: #ebebeb;
margin: 19px 0px 27px 0px;
}
.booking-devider.no-margin {
margin-top: 7px;
}
.payment-wrapper {
padding-top: 3px;
margin-bottom: 27px;
}
.payment-tabs a {
display: block;
position: relative;
height: 26px;
border-radius: 2px 2px 0px 0px;
padding: 13px 20px 0px 20px;
background: #f7f7f7;
border: 1px solid #fff;
border-bottom: 0px;
text-decoration: none;
float: left;
margin: 0px 1px 0px 0px;
font-size: 11px;
color: #73716f;
text-transform: uppercase;
font-weight: 700;
}
.payment-tabs a.active {
border-color: #ebebeb;
background: #fff;
color: #ff7200;
}
.payment-tabs a.active span {
display: block;
width: 100%;
height: 5px;
background: #fff;
position: absolute;
left: 0px;
bottom: -2px;
}
.payment-tabs-content {
padding: 20px 18px 10px 18px;
border: 1px solid #ebebeb;
}
.payment-tab label {
display: block;
font-size: 12px;
color: #626262;
margin-bottom: 11px;
font-family: 'Raleway';
}
.payment-tab {
display: none;
}
.payment-tab:first-child {
display: block;
}
.payment-tab .checkbox label {
cursor: pointer;
font-weight: 500;
}
.payment-tab .jq-checkbox {
margin-top: -1px;
}
.payment-tab .checkbox label a {
text-decoration: none;
color: #4a90a4;
}
.payment-type {
margin-bottom: 18px;
}
.booking-complete p {
font-size: 13px;
color: #626262;
line-height: 21px;
}
.booking-left .booking-complete h2 {
margin-bottom: 16px;
}
.booking-complete-btn {
display: block;
margin-top: 24px;
width: 189px;
height: 40px;
background: #ff7200;
color: #fff;
text-transform: uppercase;
border: 0px;
cursor: pointer;
border-radius: 2px;
font-size: 11px;
font-family: 'Raleway';
font-weight: bold;
}
.booking-complete-btn:hover {
background: #ff8521;
}
.card-type {
width: 58px;
height: 23px;
float: left;
margin: 0px 5px 0px 0px;
padding-top: 7px;
text-align: center;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.card-expiration .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.card-expiration select {
cursor: pointer;
}
.card-expiration {
float: left;
width: 47.5%;
}
.card-expiration:nth-child(2n) {
float: right;
margin-right: 3px;
}
.card-expiration .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.inpt-comment {
width: 100%;
float: left;
}
.inpt-comment-l {
margin: 0px 79px 0px 0px;
}
.inpt-comment-lb {
width: 100%;
float: left;
overflow: hidden;
}
.inpt-comment-r {
width: 79px;
float: left;
overflow: hidden;
margin: 0 0 0 -79px;
}
.inpt-comment-r .padding {
text-align: right;
padding: 7px 0px 0px 10px;
}
.inpt-comment-r a {
text-decoration: none;
font-size: 11px;
color: #626262;
}
.inpt-comment-r a:hover {
color: #ff7200;
}
.checkout-coll {
padding: 22px 20px 20px 20px;
font-family: 'Raleway';
background: #fff;
margin-bottom: 28px;
}
.checkout-head {
width: 100%;
margin-bottom: 18px;
}
.checkout-headl {
width: 94px;
margin-top: 4px;
float: left;
overflow: hidden;
}
.checkout-headr {
margin: 0px 0px 0px 94px;
}
.checkout-headrb {
width: 100%;
float: left;
overflow: hidden;
}
.checkout-headrp {
padding: 0px 0px 0px 15px;
}
.chk-logo {
margin-top: 10px;
}
.chk-lbl {
margin-bottom: 7px;
}
.chk-lbl a {
text-decoration: none;
text-transform: uppercase;
font-weight: normal;
font-family: 'Montserrat';
font-size: 13px;
color: #4c4c4c;
}
.chk-lbl-a {
font-weight: 500;
margin-bottom: 7px;
font-size: 11px;
text-transform: uppercase;
color: #747d7e;
}
.chk-stars li {
float: left;
margin-right: 1px;
}
.chk-left {
float: left;
}
.chk-right {
float: right;
margin-top: 2px;
}
.chk-lines {
margin-bottom: 21px;
}
.chk-line {
font-weight: 500;
font-size: 11px;
padding: 15px 0px 15px 0px;
text-transform: uppercase;
color: #777777;
border-top: 1px solid #f2f2f2;
}
.chk-line.chk-fligth-info {
padding: 8px 0px 8px 0px;
}
.chk-line:last-child {
border-bottom: 1px solid #f2f2f2;
}
.chk-nights {
background: url(../img/icon-nights.png) left top no-repeat;
margin-right: 16px;
color: #4a90a4;
padding: 0px 0px 0px 16px;
background-position: left 2px;
}
.chk-persons {
color: #ff6739;
}
.chk-details h2 {
font-weight: 600;
margin-bottom: 14px;
text-transform: uppercase;
font-size: 12px;
color: #3a4142;
}
.chk-l {
float: left;
color: #4a90a4;
}
.chk-r {
float: right;
}
.chk-detais-row {
margin-bottom: 17px;
}
.chk-total-l {
float: left;
font-size: 12px;
color: #3a4142;
font-weight: 600;
text-transform: uppercase;
margin-top: 4px;
}
.chk-total-r {
float: right;
font-size: 15px;
color: #ff7200;
font-weight: normal;
font-family: 'Montserrat';
}
.chk-departure span {
font-size: 10px;
font-weight: 600;
color: #848484;
display: block;
margin-right: 9px;
margin-top: 1px;
float: left;
}
.chk-departure b {
display: block;
font-size: 10px;
font-family: 'Open Sans';
font-weight: 700;
color: #4a90a4;
float: left;
}
.chk-arrival {
float: right;
}
.chk-arrival span {
font-size: 10px;
font-weight: 600;
color: #848484;
display: block;
margin-right: 9px;
margin-top: 1px;
float: left;
}
.chk-arrival b {
display: block;
font-size: 10px;
font-family: 'Open Sans';
font-weight: 700;
color: #4a90a4;
float: left;
}
.chk-fligth-devider {
float: left;
width: 1px;
height: 22px;
background: #ebebeb;
margin: 4px 16px 0px 17px;
}
.chk-fligth-time {
float: left;
margin: 10px 0px 0px 2px;
}
.payment-alert {
line-height: 19px;
position: relative;
background: #f2f7f9;
border: 1px solid #d7e7ec;
border-radius: 2px;
margin-top: 3px;
padding: 18px 50px 18px 13px;
font-size: 12px;
color: #4a90a4;
font-weight: 500;
}
.payment-alert-close {
width: 10px;
height: 10px;
position: absolute;
top: 50%;
margin-top: -7px;
right: 15px;
}
.payment-alert-close:hover {
opacity: 0.8;
}
.payment-alert span {
background: url(../img/alert-info.png) left top no-repeat;
padding: 1px 0px 0px 17px;
background-position: left 2px;
}
.paypal-btn {
width: 155px;
height: 24px;
padding-top: 11px;
font-size: 11px;
margin: 20px 0px 12px 0px;
text-transform: uppercase;
font-weight: 600;
color: #839098;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.paypal-btn:hover {
color: #5d676d;
}
.comlete-alert {
border-top: 1px solid #ebebeb;
padding: 18px 0px 18px 0px;
margin: 22px 0px 20px 0px;
border-bottom: 1px solid #ebebeb;
}
.comlete-alert-a {
background: url(../img/icon-complete.png) left top no-repeat;
background-position: left 4px;
padding: 10px 0px 0px 40px;
}
.comlete-alert-a b {
display: block;
font-weight: 500;
font-size: 16px;
color: #4a90a4;
}
.comlete-alert-a span {
font-size: 13px;
color: #626262;
}
.complete-info h2 {
margin-bottom: 18px;
}
.complete-info-l {
float: left;
width: 138px;
}
.complete-info-table {
font-size: 13px;
color: #626262;
}
.complete-info-i {
margin-bottom: 19px;
}
.complete-info-table {
margin-bottom: 27px;
}
.complete-devider {
height: 1px;
background: #ebebeb;
margin-bottom: 25px;
}
.complete-txt {
margin-bottom: 26px;
}
.complete-txt.final {
margin-bottom: 0px;
}
.complete-info .complete-txt h2 {
margin-bottom: 16px;
}
.complete-txt p {
font-size: 13px;
margin-bottom: 15px;
color: #626262;
line-height: 21px;
}
.complete-txt-link a {
font-size: 13px;
text-decoration: none;
color: #ff7200;
}
.flight-image {
position: relative;
}
.flight-image span {
position: absolute;
left: 0px;
bottom: 0px;
color: #fff;
font-size: 14px;
font-weight: 500;
line-height: 21px;
font-family: 'Raleway';
padding: 0px 15px 20px 15px;
}
.flight-d-logo {
margin: 26px 0px 17px 0px;
}
.flight-d-i {
width: 100%;
float: left;
}
.flight-d-left {
width: 157px;
border-right: 1px solid #ebebeb;
line-height: 27px;
float: left;
overflow: hidden;
}
.flight-d-right {
margin: 0px 0px 0px 158px;
}
.flight-d-rightb {
width: 100%;
float: left;
overflow: hidden;
}
.flight-d-rightp {
padding: 0px 0px 0px 25px;
}
.flight-da {
font-size: 12px;
color: #626262;
}
.flight-da b {
color: #515657;
margin: 0px 0px 0px 5px;
}
.flight-d-depart {
font-size: 12px;
margin: 0px 49px 0px 0px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-depart span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-time {
font-size: 12px;
margin: 0px 19px 0px 0px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-time span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-arrival {
font-size: 12px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-arrival span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-time-icon {
margin-top: 2px;
}
.flight-d-devider {
height: 1px;
background: #ebebeb;
margin: 22px 0px 26px 0px;
}
.flight-d-text p:last-child {
margin-bottom: 0px;
}
.h-detail-stars .flight-line-a b {
margin-bottom: 0px;
}
.h-detail-stars.fligts-s {
padding: 13px 0px 12px 0px;
}
.h-details-logo {
border-bottom: 1px solid #ebebeb;
padding: 17px 0px 14px 0px;
}
.h-tour .tour-icon-txt {
margin-top: 0px;
font-weight: 600;
font-size: 11px;
color: #747d7e;
font-family: 'Raleway';
}
.tour-icon-person {
float: left;
font-weight: 600;
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
padding: 0px 0px 0px 25px;
margin: 0px 0px 0px 22px;
font-family: 'Raleway';
background: url(../img/persons-icon.png) left top no-repeat;
}
.h-tour {
border-top: 1px solid #ebebeb;
padding: 16px 0px 16px 0px;
}
.sex-type {
float: left;
padding: 9px 0px 9px 0px;
font-weight: 500;
width: 39px;
text-align: center;
margin-right: 4px;
cursor: pointer;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
font-size: 11px;
color: #626262;
}
.sex-type.chosen {
background: #ff7200;
color: #fff;
border-color: #e37012;
-webkit-box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
-moz-box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
}
.form-sex {
float: left;
}
.form-calendar {
float: right;
margin-right: 2px;
}
.form-calendar-a select,
.form-calendar-b select {
cursor: pointer;
}
.form-calendar-a {
float: left;
width: 61px;
margin-right: 6px;
}
.form-calendar-a .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.form-calendar-a .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.form-calendar-b {
float: left;
width: 90px;
margin-right: 0px;
}
.form-calendar-b .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.form-calendar-b .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.bookin-three-coll .booking-form-i {
width: 31.35%;
margin-right: 20px;
}
.bookin-three-coll .booking-form-i:nth-child(2n) {
float: left;
}
.bookin-three-coll .booking-form-i:nth-child(3n) {
float: right;
margin-right: 0px;
}
.bookin-three-coll .booking-form-i .form-calendar-b {
width: 80px;
}
.add-passanger {
font-size: 12px;
color: #848484;
font-weight: 500;
text-decoration: none;
margin: 4px 0px 0px 0px;
padding: 0px 0px 0px 14px;
float: right;
background: url(../img/add-pass-icon.png) left top no-repeat;
background-position: left 2px;
}
.contacts-map {
padding-top: 129px;
}
.contacts-map #map {
height: 457px;
}
.contacts-page {
max-width: 1100px;
margin: 0 auto;
padding-top: 76px;
}
.contacts-page .page-lbl p {
font-size: 15px;
color: #455051;
}
.contacts-page .page-lbl {
margin-bottom: 49px;
}
.contacts-page-holder {
padding-bottom: 124px;
background: #fff;
}
.contacts-colls {
width: 100%;
float: left;
font-family: 'Raleway';
}
.contacts-colls-l {
width: 377px;
float: left;
overflow: hidden;
}
.contacts-colls-r {
margin: 0px 0px 0px 377px;
}
.contacts-colls-rb {
width: 100%;
float: left;
overflow: hidden;
}
.contact-colls-lbl {
text-transform: uppercase;
font-family: 'Montserrat';
margin-bottom: 28px;
font-size: 17px;
font-weight: normal;
color: #141d1e;
}
.side-social {
margin-top: 28px;
}
.side-social a {
display: inline-block;
margin-right: 20px;
width: 13px;
height: 14px;
vertical-align: middle;
}
.side-social a.side-social-twitter {
background: url(../img/left-social-01.png) left top no-repeat;
}
.side-social a.side-social-facebook {
background: url(../img/left-social-02.png) left top no-repeat;
}
.side-social a.side-social-vimeo {
background: url(../img/left-social-03.png) left top no-repeat;
}
.side-social a.side-social-pinterest {
background: url(../img/left-social-04.png) left top no-repeat;
}
.side-social a.side-social-instagram {
background: url(../img/left-social-05.png) left top no-repeat;
}
.side-social a:hover {
background-position: left -14px;
}
.contacts-colls-txt p {
font-size: 13px;
color: #626262;
margin-bottom: 18px;
}
.contacts-colls .booking-form-i {
width: 47.90%;
margin-bottom: 21px;
}
.contacts-colls .booking-form-i label {
font-size: 13px;
color: #626262;
}
.contacts-colls .booking-form-i label {
margin-bottom: 8px;
}
.contacts-colls .booking-form {
padding-bottom: 10px;
}
.booking-form-i.textarea {
width: 100%;
}
.booking-form-i .textarea-wrapper {
padding: 6px 10px 6px 10px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .textarea-wrapper textarea {
resize: none;
height: 112px;
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.contacts-send {
width: 124px;
height: 36px;
color: #fff;
margin-top: 4px;
border-radius: 2px;
border: 0px;
font-size: 11px;
font-family: 'Montserrat';
font-weight: normal;
background: #ff7200;
text-transform: uppercase;
cursor: pointer;
}
.contacts-send:hover {
background: #ff8f35;
}
.inner-page {
padding: 130px 0px 0px 0px;
}
.inner-breadcrumbs {
height: 75px;
background: #fafafa;
}
.gray-inner .inner-breadcrumbs {
border-bottom: 1px solid #ededed;
max-width: 1100px;
margin: 0 auto;
}
.content-wrapper {
max-width: 1100px;
margin: 0 auto;
}
.inner-breadcrumbs {
margin-bottom: 93px;
}
.inner-breadcrumbs .page-title {
font-family: 'Montserrat';
float: left;
margin: 27px 0px 0px 0px;
font-weight: normal;
font-size: 17px;
color: #141d1e;
}
.inner-breadcrumbs .breadcrumbs {
margin: 31px 0px 0px 0px;
}
.inner-breadcrumbs .breadcrumbs,
.inner-breadcrumbs .breadcrumbs a,
.inner-breadcrumbs .breadcrumbs span {
color: #141d1e;
font-weight: normal;
font-size: 11px;
}
.paragraph {
display: inline-block;
margin: 9px 12px 0px 0px;
float: left;
background: #141d1e;
color: #fff;
text-align: center;
font-size: 20px;
border-radius: 2px;
width: 33px;
height: 29px;
padding-top: 4px;
}
.paragraph-a {
display: inline-block;
margin: 9px 3px 0px 0px;
float: left;
color: #141d1e;
text-align: center;
font-size: 33px;
font-weight: 500;
border-radius: 2px;
width: 39px;
height: 29px;
padding-top: 4px;
}
.paragraph-b {
display: inline-block;
margin: 9px 10px 0px 0px;
float: left;
border-radius: 1000px;
background: #ff7200;
color: #fff;
text-align: center;
font-size: 21px;
font-weight: 500;
width: 32px;
height: 29px;
padding-top: 3px;
}
.about-content {
font-family: 'Raleway';
}
.about-content .page-lbl p {
font-size: 15px;
color: #455051;
}
.about-content .page-lbl {
margin-bottom: 10px;
}
.about-text {
margin-bottom: 39px;
}
.about-text p {
font-size: 14px;
line-height: 24px;
color: #626262;
}
.tree-colls-i {
width: 31.5%;
margin-right: 2.9%;
float: left;
}
.about-percent label {
display: block;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 7px;
color: #626262;
}
.about-percent-a {
width: 100%;
height: 4px;
background: #ebeef0;
border-radius: 100px;
overflow: hidden;
}
.about-percent-a span {
display: block;
width: 0px;
height: 4px;
border-radius: 100px;
background: #ff7200;
}
.tree-colls-i:nth-child(2) {
margin-right: 0px;
}
.tree-colls-i:last-child {
float: right;
margin-right: 0px;
}
.about-percent {
margin-bottom: 19px;
}
.about-photo-image {
margin-bottom: 21px;
position: relative;
}
.about-photo-image img {
width: 100%;
}
.about-photo {
text-align: center;
}
.about-photo-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 6px;
text-transform: uppercase;
font-size: 14px;
color: #141d1e;
}
.about-photo-sublbl {
font-size: 13px;
color: #717171;
}
.about-slider-h {
font-family: 'Raleway';
background: #fafafa;
padding: 79px 0px 75px 0px;
margin: 57px 0px 75px 0px;
text-align: center;
}
.about-slider-h.styled {
height: 280px;
padding: 80px 0px 0px 0px;
background: url(../img/about-styled.jpg) center top no-repeat;
}
.about-slider-txt {
font-size: 15px;
margin-bottom: 14px;
line-height: 26px;
color: #626262;
}
.about-content .about-slider-txt {
width: 640px;
margin: 0 auto;
margin-bottom: 14px;
}
.about-slider-txt-a {
font-size: 13px;
color: #7f7f7f;
}
.about-slider-img {
margin-bottom: 18px;
}
.about-slider-h .bx-controls-direction {
display: none;
}
.about-slider-h .bx-pager {
text-align: center;
margin-top: 22px;
}
.about-slider-h .bx-pager-item {
display: inline-block;
margin: 0px 5px 0px 5px;
}
.about-slider-h .bx-pager-item a {
display: inline-block;
overflow: hidden;
text-indent: -9999px;
width: 7px;
height: 7px;
border: 1px solid #b6b6b6;
border-radius: 1000px;
}
.about-slider-h .bx-pager-item a.active {
border-color: #ff6638;
background: #ff6638;
}
.about-slider-h.styled .about-slider-txt,
.about-slider-h.styled .about-slider-txt-a {
color: #ffffff;
}
.why-we {
font-family: 'Raleway';
padding-bottom: 114px;
}
.why-we .page-lbl p {
font-size: 15px;
color: #455051;
}
.why-we .page-lbl {
margin-bottom: 18px;
}
.why-we-item {
text-align: center;
}
.why-we-img {
margin-bottom: 25px;
}
.why-we-lbl {
font-size: 15px;
font-family: 'Montserrat';
margin-bottom: 25px;
color: #3a4142;
text-transform: uppercase;
}
.why-we-txt {
font-size: 14px;
line-height: 24px;
color: #626262;
}
.about-two-colls-h {
width: 100%;
float: left;
margin-bottom: 40px;
}
.about-two-colls-l {
width: 348px;
float: left;
overflow: hidden;
font-size: 14px;
line-height: 24px;
color: #626262;
}
.about-two-colls-r {
margin: 0px 0px 0px 348px;
}
.about-two-colls-rb {
width: 100%;
float: left;
overflow: hidden;
}
.about-two-colls-rp {
padding: 4px 0px 0px 29px;
}
.about-us-devider {
height: 1px;
margin: 40px 0px 92px 0px;
background: #f0f0f0;
}
.about-content .counters {
padding-bottom: 96px;
}
.counters-i {
display: inline-block;
width: 132px;
margin-right: 9.4%;
float: left;
text-align: center;
}
.counters-i:first-child {
margin-left: 17px;
}
.counters-i:last-child {
float: right;
margin-right: 6px;
}
.counters-i b {
color: #1a232b;
display: block;
line-height: 50px;
margin-bottom: 5px;
font-family: 'Montserrat';
font-weight: normal;
font-size: 50px;
}
.counters-i span {
font-size: 12px;
color: #1a232b;
font-weight: 500;
text-transform: uppercase;
}
.our-team {
margin-bottom: 78px;
}
.our-team .page-lbl p {
font-size: 15px;
color: #455051;
}
.our-team .page-lbl {
margin-bottom: 18px;
}
.team-row-h {
padding-bottom: 55px;
}
.team-row-i {
margin-right: 3.3%;
width: 22.5%;
font-family: 'Raleway';
text-align: center;
float: left;
}
.team-row-i:last-child {
margin-right: 0px;
float: right;
}
.team-row-img {
margin-bottom: 20px;
position: relative;
}
.team-row-img img {
width: 100%;
}
.team-row-lbl {
text-transform: uppercase;
font-family: 'Montserrat';
margin-bottom: 6px;
font-weight: normal;
}
.team-row-txt {
font-size: 13px;
color: #717171;
}
.team-more-h {
width: 92%;
height: 89%;
display: none;
padding: 5% 4% 4% 4%;
position: absolute;
left: 0px;
top: 0px;
}
.team-row-i:hover .team-more-h {
display: block;
}
.about-photo:hover .team-more-h {
display: block;
}
.team-row-b {
margin-bottom: 77px;
}
.team-more {
width: 100%;
height: 100%;
display: table;
text-align: center;
background: rgba(255, 255, 255, 0.9);
}
.team-more-a {
font-size: 13px;
display: table-cell;
text-align: center;
vertical-align: middle;
padding: 0px 10px 0px 10px;
line-height: 23px;
color: #525659;
}
.team-more-social {
text-align: center;
padding-top: 12px;
}
.team-more-social a {
margin: 0px 6px 0px 6px;
}
.team-fb {
display: inline-block;
background: url(../img/about-facebook.png) left top no-repeat;
width: 8px;
height: 13px;
}
.team-tw {
display: inline-block;
background: url(../img/about-twitter.png) left top no-repeat;
width: 13px;
height: 13px;
}
.team-gp {
display: inline-block;
background: url(../img/about-gp.png) left top no-repeat;
width: 13px;
height: 13px;
}
.team-inst {
display: inline-block;
background: url(../img/about-insta.png) left top no-repeat;
width: 11px;
height: 13px;
}
.team-pint {
display: inline-block;
background: url(../img/about-pinterest.png) left top no-repeat;
width: 10px;
height: 13px;
}
.team-vk {
display: inline-block;
background: url(../img/about-vk.png) left top no-repeat;
width: 15px;
height: 13px;
}
.team-more-social a:hover {
background-position: left -13px;
}
.services {
padding-top: 7px;
padding-bottom: 53px;
}
.services-i {
display: inline-block;
float: left;
width: 22%;
margin-right: 4%;
text-align: center;
}
.services-i:last-child {
margin-right: 0px;
float: right;
}
.services-img {
margin-bottom: 22px;
}
.services-lbl {
text-transform: uppercase;
margin-bottom: 15px;
font-size: 15px;
color: #3a4142;
font-weight: normal;
font-family: 'Montserrat';
}
.services-txt {
line-height: 25px;
font-size: 14px;
color: #687172;
}
.solutions {
font-family: 'Raleway';
padding: 5px 0px 100px 0px;
}
.solutions .page-lbl p {
font-size: 15px;
color: #455051;
}
.solutions .page-lbl {
margin-bottom: 18px;
}
.solutions-i {
position: relative;
margin-right: 2.7%;
float: left;
cursor: pointer;
width: 31.5%;
}
.solutions-i:last-child {
float: right;
margin-right: 0px;
}
.solutions-img {
line-height: 0px;
}
.solutions-img img {
width: 100%;
height: 100%;
line-height: 0px;
margin: 0px;
padding: 0px;
}
.solutions-over {
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.5);
}
.solutions-over-a {
display: table;
width: 100%;
height: 100%;
}
.solutions-over-b {
display: table-cell;
color: #fff;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
.solutions-over-d {
display: none;
}
.solution-icon {
display: inline-block;
width: 16px;
height: 10px;
background: url(../img/icon-solution.png) left top no-repeat;
}
.solution-lbl {
text-transform: uppercase;
margin-top: 11px;
font-size: 16px;
font-weight: normal;
font-family: 'Montserrat';
}
.solution-txt {
font-size: 14px;
padding: 0px 10px 0px 10px;
line-height: 26px;
margin-top: 5px;
}
.solution-icon-a {
display: block;
background: url(../img/solutions-i-a.png) left top no-repeat;
position: absolute;
left: 50%;
margin-left: -4px;
bottom: 18px;
z-index: 999;
width: 8px;
height: 8px;
}
.solution-partners {
background: #fafafa;
padding: 94px 0px 93px 0px;
}
.solution-partners .page-lbl p {
font-size: 15px;
color: #455051;
}
.solution-partners .page-lbl {
margin-bottom: 18px;
}
.solutions-partners-row {
padding: 0px 10px 0px 10px;
}
.solutions-partners-row a {
float: left;
margin-right: 5%;
opacity: 0.65;
}
.solutions-partners-row a:last-child {
margin-right: 0px;
float: right;
}
.solutions-partners-row a:hover {
opacity: 1;
}
.solution-partners .partners {
padding: 0px 10px 0px 10px;
border: 0px;
margin: 0px;
}
.cover_boxes {
overflow: hidden;
position: relative;
}
.cover_boxes ul {
list-style: outside none none;
margin: 0 -20px 0 0;
padding: 0;
width: 200%;
}
.cover_boxes ul li {
float: left;
margin-right: 17px;
margin-bottom: 28px;
overflow: hidden;
position: relative;
transition: all 0.5s ease 0s;
width: 265px;
}
.cover_boxes ul li.act {
width: 530px;
margin-right: 34px;
}
.cover_boxes ul li .box {
width: 530px;
}
.cover_boxes ul li .box .thumb {
display: inline-block;
float: left;
margin-right: 17px;
position: relative;
z-index: 10;
}
.cover_boxes ul li .box .thumb img {
display: block;
max-width: 100%;
position: relative;
}
.cover_boxes ul li .box .box_content {
bottom: 0;
left: 281px;
padding: 0;
position: absolute;
top: 0;
width: 245px;
padding-top: 1px;
padding-right: 16px;
z-index: 9;
}
.cover_boxes ul li .box h3 {
font-size: 15px;
margin-bottom: 16px;
color: #3a4142;
font-weight: 500;
text-transform: uppercase;
}
.cover_boxes ul li .box p {
font-size: 14px;
margin-bottom: 20px;
color: #687172;
line-height: 25px;
}
.cover_boxes ul li .box .qbutton,
.cover_boxes ul li .box h5 {
margin: 20px 0 0;
}
.ga_button {
width: 100px;
height: 22px;
padding-top: 10px;
text-transform: uppercase;
color: #6a7880;
font-size: 11px;
font-weight: 600;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-align: center;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.ga_button:hover {
color: #fe6739;
}
.cover_gallery {
padding-bottom: 119px;
padding-top: 7px;
}
.portfolio-filters {
text-align: center;
padding: 74px 0px 50px 0px;
font-family: 'Raleway';
}
.portfolio-filters ul li {
display: inline-block;
margin: 0px 5px 0px 5px;
}
.portfolio-filters ul li a {
font-size: 12px;
border-bottom: 2px solid transparent;
display: inline-block;
padding-bottom: 4px;
color: #141d1e;
text-transform: uppercase;
text-decoration: none;
}
.portfolio-filters ul li a:hover {
color: #515e5f;
}
.portfolio-filters ul li.active a {
border-bottom: 2px solid #ff6638;
color: #ff6638;
}
.portfolio-holder {
overflow: hidden;
max-width: 1128px;
margin: 0 auto;
}
.portfolio-i {
width: 22.4%;
margin-bottom: 28px;
margin-right: 1.3%;
margin-left: 1.3%;
text-align: center;
}
.portfolio-three-colls .portfolio-i {
margin-bottom: 30px;
width: 30.5%;
margin-right: 1.4%;
margin-left: 1.4%;
}
.portfolio-i-img {
position: relative;
overflow: hidden;
line-height: 0px;
cursor: pointer;
}
.portfolio-i-img img {
width: 100%;
-webkit-transition: all 1s;
-moz-transition: all 0.6s;
-ms-transition: all 0.6s;
transition: all 0.6s;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
.portfolio-i:hover img {
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.portfolio-i-text {
font-family: 'Raleway';
background: #fff;
height: 77px;
}
.portfolio-i-text b {
text-transform: uppercase;
padding: 20px 0px 3px 0px;
font-size: 13px;
color: #3a4142;
font-weight: normal;
font-family: 'Montserrat';
display: block;
}
.portfolio-i-text span {
font-size: 12px;
color: #687172;
}
.portfolio-i-over {
position: absolute;
z-index: 99;
display: none;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.45);
}
.portfolio-i-over-a {
display: table;
width: 100%;
height: 100%;
}
.portfolio-i-over-b {
display: table-cell;
text-align: center;
vertical-align: middle;
width: 100%;
height: 100%;
}
.portfolio-zoom {
display: inline-block;
background: url(../img/portfolio-zoom.png) left top no-repeat;
margin-right: 1px;
width: 38px;
height: 38px;
}
.portfolio-more {
display: inline-block;
background: url(../img/portfolio-more.png) left top no-repeat;
margin-left: 1px;
width: 38px;
height: 38px;
}
.portfolio-zoom:hover,
.portfolio-more:hover {
opacity: 0.8;
}
.portfolio-i:hover .portfolio-i-over {
display: block;
}
.portfolio-four-colls {
padding-bottom: 95px;
}
.portfolio-three-colls {
padding-bottom: 70px;
}
.portfolio-more-btn {
padding-bottom: 111px;
}
.portfolio-more-btn a {
font-size: 12px;
text-transform: uppercase;
color: #6a7880;
font-weight: 600;
font-family: 'Raleway';
display: block;
width: 180px;
float: none;
height: 30px;
padding-top: 13px;
background: #fff;
text-align: center;
text-decoration: none;
background: #fff;
border-radius: 2px;
margin: 0 auto;
}
.portfolio-more-btn a:hover {
color: #ff7200;
}
.p-item-page {
width: 100%;
padding-bottom: 54px;
float: left;
font-family: 'Raleway';
}
.p-item-page-l {
margin: 3px 348px 0px 0px;
}
.p-item-page-lb {
width: 100%;
float: left;
overflow: hidden;
}
.p-item-page-r {
width: 348px;
font-family: 'Raleway';
float: left;
overflow: hidden;
margin: 0 0 0 -348px;
}
.p-item-page-r h3 {
font-weight: normal;
font-family: 'Montserrat';
color: #3a4142;
font-size: 13px;
text-transform: uppercase;
}
.p-item-details {
padding-top: 14px;
padding-bottom: 29px;
}
.p-item-details-i {
font-size: 13px;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 7px;
margin-bottom: 7px;
color: #687172;
}
.p-item-details-il {
width: 90px;
float: left;
}
.p-item-details-ir {
float: left;
}
.p-item-more {
font-size: 13px;
color: #687172;
line-height: 24px;
padding: 9px 0px 32px 0px;
font-family: 'Raleway';
}
.p-item-social a {
margin-right: 21px;
}
.p-item-social a:hover {
background-position: left -13px;
}
.p-item-slide,
.p-item-slide img {
width: 100%;
}
.p-item-padding {
margin-right: 31px;
position: relative;
}
.p-item-padding .bx-pager {
display: none;
}
.p-item-padding .bx-prev,
.p-item-padding .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.p-item-padding .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 21px;
}
.p-item-padding .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 21px;
}
.portfolio-nav {
display: table;
width: 100%;
margin-bottom: 50px;
}
.portfolio-nav.no-margin {
padding-bottom: 50px;
}
.portfolio-nav-l {
display: table-cell;
text-align: left;
vertical-align: middle;
}
.portfolio-nav-c {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.portfolio-nav-r {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.portfolio-nav-l a {
display: inline-block;
background: url(../img/portfolio-l.png) left top no-repeat;
width: 36px;
height: 36px;
}
.portfolio-nav-r a {
display: inline-block;
background: url(../img/portfolio-r.png) left top no-repeat;
width: 36px;
height: 36px;
}
.portfolio-nav-l a:hover,
.portfolio-nav-r a:hover {
background-position: left -36px;
}
.portfolio-nav-c a {
display: inline-block;
opacity: 0.6;
background: url(../img/portfolio-all.png) left top no-repeat;
width: 19px;
height: 19px;
}
.portfolio-nav-c a:hover {
opacity: 1;
}
.portfolio-full {
margin-bottom: 54px;
}
.portfolio-full-img img {
width: 100%;
}
.portfolio-full-more {
width: 100%;
float: left;
padding-bottom: 26px;
}
.portfolio-full-more-l {
width: 345px;
float: left;
overflow: hidden;
}
.portfolio-full-more-r {
margin: 0px 0px 0px 345px;
}
.portfolio-full-more-rb {
width: 100%;
float: left;
overflow: hidden;
}
.portfolio-full-more .p-item-details {
padding-bottom: 22px;
}
.portfolio-full-more .p-item-details-i {
padding-bottom: 8px;
margin-bottom: 8px;
}
.portfolio-full-more h3 {
font-weight: normal;
font-family: 'Montserrat';
color: #3a4142;
font-size: 13px;
text-transform: uppercase;
}
.portfolio-full-more-txt {
width: 48%;
float: right;
font-size: 13px;
color: #687172;
line-height: 24px;
padding: 9px 0px 32px 0px;
font-family: 'Raleway';
}
.portfolio-full-more-txt:nth-child(2n) {
float: left;
}
.portfolio-full-more-p {
padding-left: 30px;
}
.portfolio-full-more-r h3 {
margin-bottom: 9px;
}
.blog-sidebar {
width: 100%;
float: left;
font-family: 'Raleway';
}
.blog-sidebar-l {
margin: 0px 255px 0px 0px;
}
.blog-sidebar-lb {
width: 100%;
float: left;
}
.blog-sidebar-p {
padding-right: 20px;
}
.blog-sidebar-r {
width: 255px;
float: left;
margin: 4px 0 0 -256px;
}
.blog-post-i {
width: 100%;
float: left;
}
.blog-post-l {
width: 127px;
float: left;
text-align: right;
}
.blog-post-c {
margin: 0px 0px 0px 127px;
}
.blog-post-cb {
width: 100%;
float: left;
}
.blog-post-p {
padding-left: 25px;
padding-right: 8px;
padding-top: 3px;
}
.blog-post {
padding-bottom: 29px;
margin-bottom: 47px;
border-bottom: 1px solid #ededed;
}
.blog-post-date {
border-bottom: 1px solid #ededed;
padding-bottom: 20px;
margin-bottom: 9px;
}
.blog-post-date b {
display: block;
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 2px;
font-size: 28px;
color: #141d1e;
}
.blog-post-date span {
display: block;
font-size: 11px;
color: #6b7373;
}
.blog-post-info {
font-size: 11px;
color: #6b7373;
text-transform: uppercase;
line-height: 28px;
}
.blog-post-info div {
margin-bottom: 1px;
}
.blog-post-title {
margin-bottom: 23px;
}
.blog-post-title a {
text-decoration: none;
text-transform: uppercase;
font-size: 17px;
color: #141d1e;
font-family: 'Montserrat';
font-weight: normal;
}
.blog-post-img img {
width: 100%;
}
.blog-post-txt {
font-size: 14px;
color: #626262;
margin-bottom: 22px;
line-height: 25px;
}
.blog-post-preview {
margin-bottom: 17px;
}
.blog-post-more {
width: 86px;
height: 21px;
padding-top: 10px;
text-transform: uppercase;
color: #6a7880;
font-size: 10px;
font-weight: 700;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-align: center;
text-decoration: none;
}
.blog-post-more:hover {
color: #fe6739;
}
.blog-post-slider-i img {
width: 100%;
}
.blog-post-slider {
position: relative;
}
.blog-post-slider .bx-pager {
display: none;
}
.blog-post-slider .bx-prev,
.blog-post-slider .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.blog-post-slider .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 21px;
}
.blog-post-slider .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 21px;
}
.blog-post-qoute {
border-left: 2px solid #ff7200;
padding: 0px 0px 0px 17px;
}
.blog-post-qoute-a {
font-size: 16px;
line-height: 27px;
margin-bottom: 9px;
color: #414f51;
}
.blog-post-qoute-b {
font-size: 13px;
color: #6b7373;
}
.blog-post.single-post {
border: 0px;
}
.mejs-container .mejs-controls {
background: #fafafa;
}
.mejs-controls .mejs-play button {
width: 11px;
height: 11px;
margin-top: 10px;
margin-left: 10px;
background: url(../img/btn-play.gif) left top no-repeat;
}
.mejs-controls .mejs-pause button {
background: url("../img/pause.png") left top no-repeat !important;
margin-left: 9px !important;
margin-top: 11px !important;
}
.mejs-controls .mejs-fullscreen-button button {
margin-top: 10px;
width: 10px;
height: 10px;
background: url(../img/full-btn.png) left top no-repeat;
}
.mejs-controls .mejs-pause button {
width: 11px;
height: 11px;
margin-top: 10px;
margin-left: 9px;
background: url(../img/btn-play.gif) left top no-repeat;
background-position: 0 0;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
margin-top: 8px;
background: #dcdcdc;
height: 6px;
}
.mejs-controls .mejs-time-rail span {
height: 6px;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
border: 0px;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
background: #ff7200;
border: 0px;
}
.mejs-controls .mejs-time-rail span {
border-radius: 0px;
}
.mejs-overlay-button {
position: absolute;
top: 50%;
left: 50%;
width: 36px;
height: 36px;
margin-left: -15px;
margin-top: -15px !important;
background: url(../img/video-play.png) no-repeat;
}
.mejs-controls .mejs-mute button {
margin-top: 11px;
width: 9px;
height: 10px;
background: url(../img/vol-btn.png) left top no-repeat;
}
.mejs-container {
width: 100% !important;
height: 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: transparent url(../img/audio-bg.gif) left top repeat-x !important;
}
.mejs-overlay:hover .mejs-overlay-button {
background: url(../img/video-play.png) no-repeat;
background-position: left 0px;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
border-radius: 0px;
background: url(../img/v-current.png) left top repeat-x;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
height: 6px;
border-radius: 0px;
margin-top: 2px;
background: #dcdcdc;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
background: #ff7200;
top: 13px;
height: 6px;
}
.mejs-controls .mejs-unmute button {
margin-top: 11px;
width: 9px;
height: 10px;
background: url(../img/vol-btn.png) left top no-repeat;
background-position: left 0 0;
}
.mejs-container .mejs-controls .mejs-time span {
font-size: 10px;
color: #898989 !important;
font-family: 'Open Sans';
}
.blog-pagination {
margin-bottom: 123px;
margin-left: 152px;
}
.blog-pagination li {
float: left;
margin: 0px 5px 0px 0px;
}
.blog-pagination a {
text-align: center;
text-decoration: none;
font-size: 13px;
font-family: 'Open Sans';
border-radius: 2px;
color: #797979;
border: 1px solid #c3c3c3;
opacity: 0.7;
display: block;
width: 31px;
height: 25px;
padding-top: 6px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-pagination a:hover {
opacity: 1;
}
.blog-pagination li:first-child a,
.blog-pagination li:last-child a {
padding-top: 0px;
height: 31px;
}
.blog-widget {
font-family: 'Raleway';
margin-bottom: 38px;
}
.blog-widget h2 {
font-size: 13px;
color: #3a4142;
margin-bottom: 14px;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
}
.search-widget {
margin-bottom: 46px;
}
.search-widget input[type='text'] {
width: 234px;
margin-top: 22px;
padding: 10px 10px 10px 10px;
color: #6a7880;
font-family: 'Raleway';
font-size: 11px;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.text-widget {
margin-bottom: 39px;
}
.text-widget p {
font-size: 13px;
color: #455051;
line-height: 25px;
}
.recent-widget {
margin-bottom: 47px;
}
.recent-widget nav li a {
text-decoration: none;
padding: 17px 0px 15px 0px;
display: block;
font-size: 13px;
color: #455051;
border-bottom: 1px solid #ededed;
}
.recent-widget nav li:first-child a {
padding-top: 5px;
}
.tweeter-widget {
margin-bottom: 46px;
}
.tweeter-item {
padding-bottom: 12px;
margin-bottom: 13px;
border-bottom: 1px solid #ededed;
}
.tweeter-item-l {
width: 12px;
margin-top: 8px;
height: 10px;
background: url(../img/tweeter-i.png) left top no-repeat;
float: left;
}
.tweeter-item-r {
line-height: 25px;
width: 234px;
float: right;
}
.tweeter-item-r span {
font-size: 13px;
display: block;
color: #455051;
}
.tweeter-item-r b {
font-size: 13px;
color: #848b8c;
font-weight: normal;
}
.tags-row {
padding-top: 7px;
}
.tags-row a {
display: inline-block;
float: left;
margin-right: 5px;
margin-bottom: 5px;
text-transform: uppercase;
color: #858585;
border: 1px solid #e5e5e5;
border-radius: 2px;
padding: 7px 12px 6px 12px;
text-decoration: none;
font-weight: 600;
font-size: 10px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.tags-row a:hover {
color: #ff7200;
}
.blog-masonry {
font-family: 'Raleway';
margin: 0 auto;
max-width: 1128px;
}
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 1.44%;
margin-right: 1.44%;
width: 30.4%;
}
.blog-masonry-lbl {
margin-bottom: 11px;
}
.blog-masonry-lbl a {
text-decoration: none;
font-size: 15px;
font-family: 'Montserrat';
color: #141d1e;
text-transform: uppercase;
}
.blog-masonry-txt {
font-size: 14px;
margin-bottom: 12px;
color: #626262;
line-height: 25px;
}
.blog-masonry-preview {
margin-bottom: 22px;
}
.blog-masonry-gallery-i {
width: 100%;
}
.blog-masonry-img img,
.blog-masonry-gallery-i img {
width: 100%;
}
.blog-masonry-info {
font-size: 14px;
color: #868d8e;
}
.blog-masonry-preview {
position: relative;
}
.blog-masonry-preview .bx-pager {
display: none;
}
.blog-masonry-preview .bx-prev,
.blog-masonry-preview .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.blog-masonry-preview .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 14px;
}
.blog-masonry-preview .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 14px;
}
.blog-masonry-quote-a {
font-size: 16px;
color: #414f51;
padding: 0px 0px 0px 26px;
margin-bottom: 9px;
line-height: 27px;
background: url(../img/quote-icon.png) left top no-repeat;
background-position: left 7px;
}
.blog-masonry-quote-b {
font-size: 13px;
color: #6b7373;
padding-left: 26px;
}
.blog-masonry-quote {
border: 1px solid #e9e9e9;
border-radius: 2px;
padding: 16px 19px 21px 15px;
margin-bottom: 19px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-more {
text-align: center;
padding-bottom: 107px;
padding-top: 9px;
}
.blog-more a {
display: inline-block;
font-size: 12px;
color: #707070;
font-family: 'Raleway';
font-weight: 600;
width: 173px;
height: 27px;
padding-top: 13px;
border: 1px solid #e5e5e5;
border-radius: 2px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-more a:hover {
color: #ff7200;
}
.text-quote {
border-left: 2px solid #ff7200;
margin-bottom: 12px;
padding-left: 16px;
}
.text-quote-a {
margin-bottom: 4px;
line-height: 28px;
font-size: 16px;
color: #414f51;
}
.text-quote-b {
font-size: 13px;
color: #6b7373;
}
.post-tags {
margin-bottom: 48px;
}
.post-tags a {
font-size: 13px;
color: #484d4e;
text-decoration: none;
}
.post-tags span {
font-size: 13px;
color: #484d4e;
}
.post-tags a:hover {
color: #ff7200;
}
.blog-comments {
margin-bottom: 56px;
}
.blog-comment-i {
padding-bottom: 24px;
margin-bottom: 25px;
border-bottom: 1px solid #ededed;
}
.blog-comment-i .guest-reviews-l {
margin-top: 4px;
}
.blog-comments-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 26px;
font-size: 17px;
color: #141d1e;
text-transform: uppercase;
}
.blog-comment-lbl {
font-family: 'Montserrat';
font-size: 14px;
margin-bottom: 13px;
color: #141d1e;
text-transform: uppercase;
font-weight: normal;
}
.blog-comment-info {
font-size: 13px;
color: #6b7373;
margin-bottom: 9px;
}
.blog-comment-info a {
text-decoration: none;
color: #ff7200;
margin-left: 14px;
}
.post-comment {
padding-bottom: 66px;
}
.post-comment .booking-form-i {
width: 100%;
float: none;
}
.blog-comment-txt {
line-height: 25px;
font-size: 14px;
color: #687172;
}
.post-comment-btn {
display: block;
margin-top: 25px;
padding-top: 2px;
width: 124px;
height: 36px;
background: #ff7200;
color: #fff;
text-transform: uppercase;
border: 0px;
cursor: pointer;
border-radius: 2px;
font-size: 11px;
font-family: 'Montserrat';
font-weight: normal;
}
.post-comment-btn:hover {
background: #ff8521;
}
.shareholder {
position: relative;
}
.share-popup {
background: url(../img/share-popup.png) left top no-repeat;
display: none;
position: absolute;
top: 28px;
right: 3px;
width: 29px;
height: 79px;
padding-top: 10px;
}
.share-popup a {
width: 12px;
height: 12px;
display: block;
margin: 0 auto;
margin-bottom: 13px;
}
.shareholder span {
cursor: pointer;
}
.content-wrapper.columns {
max-width: 1140px;
}
.columns {
padding-bottom: 34px;
}
.columns-block-lbl {
padding-left: 1.8%;
font-family: 'Montserrat';
font-size: 15px;
color: #141d1e;
font-weight: normal;
text-transform: uppercase;
margin-bottom: 13px;
}
.columns-block-lbl span {
background: url(../img/columns-bg.png) left bottom no-repeat;
padding-bottom: 18px;
display: block;
}
.mm-12 {
width: 70%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-6 {
width: 63%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-4 {
width: 21%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-3 {
width: 29.7%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-2 {
width: 46.5%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.columns-block {
margin-bottom: 48px;
}
.column {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.columns-block {
font-family: 'Raleway';
}
.typography {
font-family: 'Raleway';
padding-bottom: 104px;
}
.typography-heading {
text-align: center;
margin-bottom: 35px;
font-size: 15px;
color: #141d1e;
font-weight: 500;
text-transform: uppercase;
background: url("../img/columns-bg.png") center bottom no-repeat;
padding-bottom: 17px;
}
.typography h1 {
font-family: 'Montserrat';
margin-bottom: 11px;
text-transform: uppercase;
font-size: 23px;
color: #141d1e;
font-weight: normal;
}
.typography h2 {
font-family: 'Montserrat';
margin-bottom: 11px;
text-transform: uppercase;
font-size: 20px;
color: #141d1e;
font-weight: normal;
}
.typography h3 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 18px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography h4 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 16px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography h5 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography p {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.typography-block {
margin-bottom: 29px;
}
.block-qoutes {
padding: 20px 0px 0px 0px;
}
.blockqoute-tp-a {
border-left: 2px solid #ff7200;
margin-bottom: 12px;
padding-left: 17px;
}
.blockqoute-tp-a span {
display: block;
margin-bottom: 7px;
font-size: 16px;
color: #414f51;
line-height: 27px;
}
.blockqoute-tp-a b {
font-weight: normal;
font-size: 13px;
padding-bottom: 5px;
display: block;
color: #6b7373;
}
.blockqoute-tp-a.float-left {
width: 320px;
float: left;
margin-top: 5px;
margin-right: 40px;
}
.blockqoute-tp-a.float-right {
width: 320px;
float: right;
margin-top: 5px;
margin-left: 40px;
}
.highlights {
padding: 35px 0px 0px 0px;
}
.hightile-a {
display: inline-block;
background: #ff7200;
color: #fff;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.hightile-b {
display: inline-block;
background: #141d1e;
color: #fff;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.hightile-c {
display: inline-block;
background: #e7e7e7;
color: #2c3132;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.dropcaps {
padding: 35px 0px 0px 0px;
}
.accordeons-toggles {
padding-bottom: 47px;
}
.shortcodes-left {
width: 48.8%;
float: left;
}
.shortcodes-right {
width: 48.8%;
float: right;
}
.toggle {
margin-top: 1px;
}
.toggle-ia-a {
width: 100%;
float: left;
}
.toggle-ia-l {
width: 58px;
float: left;
overflow: hidden;
}
.toggle-ia-r {
margin: 0px 0px 0px 58px;
}
.toggle-ia-rb {
width: 100%;
float: left;
overflow: hidden;
}
.toggle-trigger {
width: 40px;
height: 40px;
display: block;
background: url(../img/toggle.png) left top no-repeat;
}
.toggle-lbl {
font-size: 14px;
margin-top: 12px;
margin-bottom: 11px;
color: #4f5657;
text-transform: uppercase;
font-weight: 500;
}
.toggle-txt {
display: none;
padding-bottom: 7px;
padding-top: 2px;
font-size: 14px;
color: #606869;
line-height: 25px;
}
.toggle-i {
margin-bottom: 10px;
}
.toggle-i.open .toggle-trigger {
background-position: left -40px;
}
.toggle-i:first-child .toggle-txt {
display: block;
}
.accordeon-a {
cursor: pointer;
border: 1px solid #e3e3e3;
border-radius: 2px;
padding: 12px 13px 11px 13px;
}
.accordeon-icon {
display: block;
margin: 3px 18px 0px 0px;
background: url(../img/accordeon-i.png) left top no-repeat;
float: left;
width: 10px;
height: 10px;
}
.accordeon-a span {
font-weight: 500;
font-size: 14p;
color: #4f5657;
text-transform: uppercase;
float: left;
}
.accordeon-b {
font-size: 14px;
display: none;
color: #606869;
line-height: 25px;
padding: 16px 0px 6px 43px;
}
.accordeon-item {
margin-bottom: 10px;
}
.accordeon-item:first-child .accordeon-b {
display: block;
}
.accordeon-item.open .accordeon-icon {
background-position: left -10px;
}
.tabs {
padding-bottom: 34px;
}
.tabs .typography-heading {
margin-bottom: 42px;
}
.tabs-type-a .tabs-nav li {
float: left;
margin-right: 4px;
}
.tabs-type-a .tabs-nav a {
display: inline-block;
font-size: 12px;
color: #656b70;
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
border: 1px solid #e3e3e3;
border-radius: 2px;
padding: 13px 20px 13px 20px;
}
.tabs-type-a .tabs-nav a:hover {
color: #30353a;
}
.tabs-type-a .tabs-content {
padding-top: 15px;
}
.tabs-type-a .tabs-nav a.active {
color: #ff7200;
}
.tabs-content-i {
padding-bottom: 5px;
padding-top: 3px;
display: none;
}
.tabs-content-i:first-child {
display: block;
}
.tabs-content-i p {
margin-bottom: 24px;
}
.tabs-content-i p:last-child {
margin-bottom: 0px;
}
.tabs-type-bi-a {
width: 100%;
float: left;
}
.tabs-type-bi-l {
width: 128px;
float: left;
}
.tabs-type-bi-r {
margin: 0px 0px 0px 128px;
}
.tabs-type-bi-rb {
width: 100%;
float: left;
border-left: 1px solid #e3e3e3;
overflow: hidden;
}
.tabs-type-b .tabs-nav a {
text-align: center;
display: block;
font-size: 12px;
position: relative;
border: 1px solid transparent;
border-right: 0px;
border-radius: 2px;
color: #656b70;
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
padding: 14px 0px 13px 0px;
}
.tabs-type-b .tabs-nav a span {
display: none;
width: 5px;
height: 100%;
background: #fff;
position: absolute;
top: 0px;
right: -2px;
}
.tabs-type-b .tabs-nav a.active,
.tabs-type-b .tabs-nav a.active:hover {
color: #ff7200;
border: 1px solid #e3e3e3;
border-right: 0px;
}
.tabs-type-b .tabs-nav a.active span {
display: block;
}
.tabs-type-b .tabs-nav a:hover {
color: #30353a;
}
.tabs-type-bi-p {
padding-left: 13px;
}
.message-box {
padding-bottom: 44px;
}
.message-box .typography-heading {
margin-bottom: 41px;
}
.message-box-a {
border: 1px solid #e3e3e3;
border-radius: 2px;
margin-bottom: 12px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #555a5e;
text-align: center;
padding: 21px 0px 20px 0px;
}
.message-box-b {
border: 1px solid #f7f7f7;
background: #f7f7f7;
margin-bottom: 12px;
border-radius: 2px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #30353a;
text-align: center;
padding: 21px 0px 20px 0px;
}
.message-box-c {
border: 1px solid #ff7200;
background: #ff7200;
margin-bottom: 12px;
border-radius: 2px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #fff;
text-align: center;
padding: 21px 0px 20px 0px;
}
.list-elements {
padding-bottom: 39px;
}
.list-elements .typography-heading {
margin-bottom: 37px;
}
.list-row-i {
float: left;
width: 31%;
margin-right: 3.5%;
}
.list-row-i:last-child {
float: right;
margin: 0px;
}
.marked-a li {
line-height: 18px;
background: url(../img/marked-01.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 3px;
}
.marked-b li {
line-height: 18px;
background: url(../img/marked-02.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 2px;
}
.marked-c li {
line-height: 18px;
background: url(../img/marked-03.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 2px;
}
.small-push-3 {
position: static;
display: block;
width: 200px;
margin: 0 auto;
padding: 0px !important;
float: none;
}
.small-push-3 a {
width: auto;
display: block;
}
.tables {
padding-bottom: 20px;
}
.tables .typography-heading {
margin-bottom: 40px;
}
.table-a {
width: 100%;
border-collapse: collapse;
}
.table-a th,
.table-a td {
border: 1px solid #e6e6e6;
font-family: 'Raleway';
}
.table-a th {
font-weight: 600;
padding: 13px 14px 13px 14px;
text-transform: uppercase;
font-size: 12px;
color: #2f3341;
text-align: left;
}
.table-a td {
font-family: 'Open Sans';
padding: 12px 14px 12px 14px;
font-size: 13px;
color: #6b7373;
}
.table-a tr:nth-child(2n+1) td {
background: #fcfcfc;
}
.table-a.light tr th,
.table-a.light tr td {
border-left: 0px;
border-right: 0px;
}
.icon_combination {
padding-bottom: 89px;
}
.icon_combination .typography-heading {
margin-bottom: 40px;
font-family: 'Montserrat';
}
.icons-three-colls .icons-item {
width: 30.6%;
margin-right: 4%;
text-align: center;
float: left;
}
.icons-three-colls .icons-item:last-child {
float: right;
margin: 0px;
}
.icons-two-colls {
padding-top: 66px;
}
.icons-two-colls .icons-item {
width: 20.5%;
margin-right: 6%;
text-align: center;
float: left;
}
.icons-two-colls .icons-item:last-child {
float: right;
margin: 0px;
}
.icons-item-img {
margin-bottom: 21px;
}
.icons-item-lbl {
font-family: 'Montserrat';
margin-bottom: 16px;
text-transform: uppercase;
color: #3a4142;
font-weight: normal;
}
.icons-item-txt {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.typography-heading {
font-family: 'Montserrat';
}
.counters {
padding-bottom: 93px;
}
.counters .typography-heading {
margin-bottom: 28px;
font-family: 'Montserrat';
}
.counters-five-colls .counters-row-i {
float: left;
margin-right: 7.2%;
width: 14%;
text-align: center;
}
.counters-five-colls .counters-row-i:last-child {
float: right;
margin: 0px;
}
.counters-five-colls b {
background: url(../img/counters-d.png) center bottom no-repeat;
padding-bottom: 9px;
margin-bottom: 9px;
}
.counters-four-colls {
padding-top: 55px;
}
.counters-four-colls .counters-row-i {
float: left;
margin-right: 2%;
width: 23.5%;
text-align: center;
}
.counters-four-colls .counters-row-i:last-child {
float: right;
margin: 0px;
}
.counters-four-colls b {
margin-bottom: 7px;
}
.counters-row-i b {
display: block;
font-size: 50px;
color: #373737;
font-weight: 300;
}
.counters-row-i span {
display: block;
font-size: 12px;
color: #4d4d4d;
font-weight: 500;
text-transform: uppercase;
}
.counters-row-i img {
margin-bottom: 2px;
}
.progress-bars {
padding-bottom: 77px;
}
.progress-bars .typography-heading {
margin-bottom: 37px;
}
.chart {
position: relative;
display: inline-block;
width: 131px;
height: 131px;
text-align: center;
font-family: 'Open Sans';
font-weight: 600;
}
.chart canvas {
position: absolute;
top: 0;
left: 0;
}
.percent {
display: inline-block;
line-height: 131px;
z-index: 2;
padding-left: 7px;
}
.percent:after {
content: '%';
font-family: 'Open Sans';
font-weight: 600;
margin-left: 0.1em;
font-size: 15px;
}
.pie-charts {
padding-bottom: 89px;
}
.pie-charts .typography-heading {
margin-bottom: 40px;
}
.pie-charts-i {
width: 20.1%;
margin-right: 6.5%;
text-align: center;
float: left;
}
.pie-charts-i:last-child {
float: right;
margin: 0px;
}
.pie-charts-a {
margin-bottom: 22px;
}
.pie-charts-lbl {
text-transform: uppercase;
font-size: 14px;
margin-bottom: 8px;
color: #3a4142;
font-weight: 500;
padding-bottom: 11px;
background: url(../img/columns-bg.png) center bottom no-repeat;
}
.pie-charts-txt {
font-size: 14px;
color: #6b7373;
line-height: 25px;
}
.align-right {
text-align: right;
}
.interactive-block .typography-heading {
margin-bottom: 40px;
}
.interactive-inverse {
padding-top: 19px;
}
.inter-i {
margin-bottom: 34px;
}
.inter-ia {
width: 100%;
float: left;
}
.inter-i-l {
width: 53px;
float: left;
overflow: hidden;
}
.inter-i-r {
margin: 0px 0px 0px 53px;
}
.inter-i-rb {
width: 100%;
float: left;
overflow: hidden;
}
.inter-i-b {
padding: 1px 0px 0px 13px;
}
.inter-i-lbl {
font-family: 'Montserrat';
text-transform: uppercase;
margin-bottom: 10px;
color: #3a4142;
font-size: 14px;
font-weight: normal;
}
.inter-i-txt {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.mp-popular {
padding-left: 20px;
padding-right: 20px;
}
.mp-popular-row .offer-slider-i {
width: 31.3%;
}
.testimonials-b {
padding-left: 60px;
padding-right: 60px;
}
.row {
display: none;
}
.row.collapse {
display: block;
}
.datepicker-popup {
margin-top: 15px;
margin-left: -8px;
}
.form-element-popup-container-spacer {
display: none;
}
@media screen and (max-width: 1130px) {
.mp-popular-row .offer-slider-i {
width: 31.1%;
margin-right: 3.3%;
}
.mp-popular-row .offer-slider-i:last-child {
margin-right: 0px;
float: right;
}
.swiper-pagination {
display: none;
}
.special-offer-b {
display: none;
}
.page-search {
float: none;
display: inline-block;
margin: 0px;
margin-right: 0px;
vertical-align: top;
}
.special-offer-a {
float: none;
display: inline-block;
vertical-align: top;
margin-left: 10px;
}
.wrapper-a {
text-align: center;
}
.page-search-content label,
.special-offer-foot-l {
text-align: left;
}
.mp-slider-lbl {
padding-top: 170px;
}
.mp-slider .arrow-left {
left: 20px;
}
.mp-slider .arrow-right {
right: 20px;
}
.mp-slider-lbl {
padding-left: 20px;
padding-right: 20px;
width: auto;
}
.offer-slider-c .owl-next,
.offer-slider-c .owl-prev {
display: none !important;
}
.mp-b-left {
display: none;
}
.mp-b-right {
float: none;
width: 100%;
}
.wrapper-padding,
.offer-slider-c,
.offer-slider header,
.mp-popular,
.partners,
.testimonials,
.inner-breadcrumbs .content-wrapper,
.about-content .content-wrapper,
.why-we .content-wrapper,
.about-slider-h,
.blog-page,
.contacts-page,
.typography .content-wrapper,
.inner-page .content-wrapper,
.portfolio-holder {
padding-left: 60px;
padding-right: 60px;
}
.hdr-srch-overlay-a {
margin-left: 60px;
margin-right: 60px;
}
.about-content.no-wrapper .content-wrapper {
padding-left: 0px;
padding-right: 0px;
}
.columns .content-wrapper {
padding-left: 47px;
padding-right: 47px;
}
.blog-wrapper {
padding-left: 47px;
padding-right: 47px;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 41.5%;
}
.footer-a .section:last-child {
float: none;
width: 100%;
clear: both;
}
.footer-a .section {
width: 37%;
}
.footer-a .section:nth-child(3) {
float: right;
width: 230px;
}
.footer-subscribe {
width: 100%;
}
.footer-subscribe-a input {
width: 98%;
}
.offer-slider-devider {
display: none;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 440px;
}
.srch-horizontal {
margin-right: 0px;
}
.srch-horizontal .search-line-a.middle:last-child {
margin-right: 0px;
}
.search-line-a.middle input[type="text"] {
width: 161px;
}
.search-line-select.middle {
width: 270px;
margin-top: 16px;
}
.search-line-select.middle .search-select {
width: 270px;
}
.search-select select {
width: 108%;
background-position: 93% center;
}
.full-width-search .wrapper-a {
bottom: 147px;
}
.search-asvanced .search-line-a.middle-a input[type="text"] {
width: 108px;
}
.search-asvanced .search-select.full-width-a {
width: 270px;
}
.search-asvanced .search-line-select.middle-b {
margin-left: 20px;
}
.search-asvanced .search-select.full-width-b {
width: 270px;
}
.custom-select {
text-align: left;
}
.search-type-padding {
padding-left: 60px;
padding-right: 60px;
}
.partners {
padding-bottom: 7px;
}
.partners a:first-child {
margin-left: 24px;
}
.partners a:last-child {
margin-right: 24px;
}
.partners a {
margin-bottom: 25px;
display: inline-block;
}
.pop-destinations {
padding-left: 60px;
padding-right: 60px;
}
.t-experience-i:first-child {
margin-left: 29px;
}
.t-experience-i:last-child {
margin-right: 29px;
}
.alt-fligt-table {
width: 32%;
margin-right: 2%;
}
.two-colls-left {
width: 30%;
}
.two-colls-right {
margin-left: 30%;
}
#departure_return {
width: 93%;
}
.two-colls-right .padding {
padding-left: 16px;
}
.alt-fligt-table .cat-list-btn {
padding-left: 15px;
padding-right: 15px;
}
.alt-fligt-table .flt-i-price-b {
font-size: 8px;
}
.alt-fligt-table-info .alt-departure {
margin-bottom: 10px;
}
.alt-fligt-table-content {
padding-left: 0px;
padding-right: 0px;
}
.search-select select {
width: 118%;
}
.counters-i {
width: 18%;
margin-right: 2%;
}
.counters-i:first-child {
margin-left: 0px;
}
.sp-page-l {
margin-right: 35%;
}
.sp-page-r {
width: 35%;
margin-left: -35%;
}
.alt-time {
margin-top: 10px;
}
.alt-details-i:nth-child(3) {
margin-top: 12px;
}
.sp-page-l {
margin-right: 33%;
}
.sp-page-r {
width: 33%;
margin-left: -33%;
}
.chk-fligth-devider,
.chk-fligth-time {
display: none;
}
.chk-departure {
margin-bottom: 5px;
}
.chk-departure,
.chk-arrival {
width: 100%;
}
.chk-departure span,
.chk-arrival span {
display: inline;
float: none;
}
.chk-departure b,
.chk-arrival b {
display: inline;
float: none;
}
.chk-departure b br,
.chk-arrival b br {
display: none;
}
.booking-form .booking-form-i {
width: 100%;
float: none;
}
.form-calendar {
float: left;
margin-left: 5px;
}
.flight-image img {
width: 100%;
}
.tab-calendar-colls table tbody td {
height: 55px;
}
.flight-d-left {
width: auto;
border: 0px;
float: none;
display: block;
margin: 0px 0px 20px 0px;
padding: 0px;
}
.flight-d-right {
width: auto;
float: none;
display: inline;
margin: 0px;
padding: 0px;
}
.flight-d-rightp {
padding: 0px;
}
.book-btn {
width: 100%;
}
.book-btn-l {
width: 18%;
}
.book-btn-r {
width: 81%;
}
.wishlist-btn-l {
width: 18%;
}
.wishlist-btn-r {
width: 81%;
}
.preferences-list li {
width: 40%;
float: left;
margin-right: 0px;
}
.preferences-list li:nth-child(2n) {
float: right;
margin-right: 0px;
}
.faq-item-left {
margin-right: 0px;
}
.faq-item-i {
display: none;
}
.flt-i-b {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-c {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-padding {
padding: 20px 0px 0px 0px;
text-align: right;
}
.flight-details-l {
float: none;
margin-bottom: 12px;
}
.flight-details-r {
float: none;
margin-bottom: 12px;
}
.tab-gallery-big img {
width: 100%;
}
.content-tabs-head ul li a {
padding-left: 12px;
padding-right: 12px;
}
.preferences-list-alt li {
width: 40%;
float: left;
margin-right: 0px;
}
.preferences-list-alt li:nth-child(2n) {
width: 40%;
float: right;
margin-right: 0px;
}
.hotel-reviews-i {
width: 45%;
float: left;
margin-right: 0px;
}
.hotel-reviews-i:nth-child(2n) {
width: 45%;
float: right;
margin-right: 0px;
}
.todo-row .cat-list-content-l {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.todo-row .cat-list-content-r {
width: 100%;
float: none;
overflow: visible;
margin: 0px 0px 0px 0px;
}
.todo-row .cat-list-content-p {
padding-left: 0px;
}
.cat-list-content-lpadding {
/*border-right: 0px ;*/
}
.shortcodes-left img,
.shortcodes-right img {
width: 100%;
}
.offer-slider-txt {
min-height: 80px;
}
.with-text .offer-slider-txt {
min-height: 180px;
}
.offer-slider-link a {
font-size: 25px;
}
.catalog-head.large label {
float: none;
display: block;
margin-bottom: 10px;
}
.catalog-head.large .search-select {
width: 16%;
}
.list-rows .cat-list-item-l {
width: 30%;
}
.list-rows .cat-list-item-l img {
width: 100%;
}
.list-rows .cat-list-item-r {
margin-left: 30%;
}
.list-rows .cat-list-content-r {
overflow: visible;
}
.list-rows .cat-list-content-p {
padding-left: 18px;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.portfolio-three-colls .portfolio-i {
width: 31.1%;
margin-left: 1.1%;
margin-right: 1.1%;
}
.portfolio-holder-three {
padding-left: 51px;
padding-right: 51px;
}
.tour-i-holder {
float: none;
width: 100%;
}
.tour-duration {
width: 100%;
float: none;
margin: 8px 0px 0px 0px;
}
.header-nav ul li {
margin-left: 20px;
}
.theme-teaser-r img {
width: 100%;
}
}
@media screen and (max-width: 1050px) {
.tab-reasons-i,
.tab-reasons-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
}
@media screen and (max-width: 1035px) {
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.tab-calendar-colls table tbody td {
height: 40px;
}
.chk-nights {
width: 100%;
float: none;
margin: 0px 0px 10px 0px;
display: block;
}
.chk-line {
float: none;
width: 100%;
margin: 0px;
display: block;
}
.chk-persons {
display: block;
margin-top: 5px;
}
.rates-line {
width: 100%;
float: none;
}
.rates-line-right {
width: 89%;
float: left;
margin-left: 0px;
}
.grid .offer-slider-l {
width: 100%;
margin-bottom: 12px;
float: none;
}
.grid .offer-slider-r {
width: 100%;
float: none;
}
.columns .content-wrapper {
padding-left: 48px;
padding-right: 48px;
}
}
@media screen and (max-width: 1010px) {
.footer-a .section {
width: 35%;
}
.header-curency {
display: none;
}
.header-viewed {
display: none;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 317px;
}
.search-line-a.middle input[type="text"] {
width: 124px;
}
.search-line-select.middle {
width: 204px;
margin-top: 16px;
}
.search-line-select.middle .search-select {
width: 204px;
}
.search-only .mp-slider-lbl {
padding-top: 167px;
}
.search-asvanced .search-select.full-width-a {
width: 170px;
}
.search-asvanced .search-select.full-width-b {
width: 170px;
}
.search-select.full-width select,
.search-select.full-width-a select,
.search-select.full-width-b select,
.search-select.full-width-c select {
background-position: 90% center;
width: 111%;
}
.advantages-i {
width: 100%;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 18px;
}
.advantages-i:last-child {
margin-bottom: 0px;
}
.blog-sidebar-r {
width: 25%;
margin-left: -25.2%;
margin-top: 12px;
}
.blog-sidebar-l {
margin-right: 25%;
}
.search-widget input[type="text"] {
display: block;
width: 90%;
}
.blog-sidebar-p {
padding-right: 10px;
}
.blog-post-l {
width: 19%;
}
.blog-post-c {
margin-left: 19%;
}
.blog-post-info {
font-size: 9px;
}
.tweeter-item-r {
width: 89%;
}
.blog-post-info div {
line-height: 18px;
margin-bottom: 10px;
}
.flight-d-depart {
float: none;
margin-bottom: 20px;
}
.flight-d-time {
float: none;
margin-bottom: 20px;
}
.flight-d-arrival {
float: none;
}
.h-stars-list {
float: none;
margin: 0px 0px 0px 0px;
}
.h-stars-list li {
margin-bottom: 4px;
}
.h-stars-lbl {
float: none;
clear: both;
margin: 5px 0px 10px 0px;
}
.h-add-review {
float: none;
}
.content-tabs-head ul li a {
padding-left: 9px;
padding-right: 9px;
}
.facilities table td {
line-height: 21px;
}
.portfolio-i {
width: 31.1%;
margin-right: 1.1%;
margin-left: 1.1%;
}
.columns .content-wrapper {
padding-left: 49px;
padding-right: 49px;
}
.portfolio-holder {
padding-left: 53px;
padding-right: 52px;
}
.shortcodes-left,
.shortcodes-right {
width: 48%;
}
.tabs-type-a .tabs-nav a {
padding-left: 10px;
padding-right: 10px;
}
.header-nav ul li {
margin-left: 18px;
}
.header-nav {
display: none;
}
.hdr-srch-devider {
display: none;
}
.menu-btn {
display: block;
}
}
@media screen and (max-width: 910px) {
.header-social {
display: none;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 40.5%;
}
.footer-a .section {
width: 26%;
margin-right: 10%;
}
.footer-a .section:nth-child(3) {
margin: 0px;
width: 170px;
}
.tweet {
width: auto;
}
.t-experience-i:first-child,
.t-experience-i:last-child,
.t-experience-i {
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
width: 100%;
}
.t-experience-i:last-child {
margin-bottom: 0px;
}
.theme-teaser-r {
display: none;
}
.theme-teaser-l {
width: 100%;
padding-right: 0px;
text-align: center;
}
.two-colls-left {
width: 100%;
margin: 0px;
padding: 0px;
float: none;
}
.two-colls-right {
width: 100%;
margin: 0px;
padding: 0px;
float: none;
}
.two-colls-right .padding {
padding-left: 0px;
}
.two-colls-left .srch-tab-left {
width: 48%;
}
.two-colls-left .srch-tab-right {
width: 48%;
}
.team-row-i {
width: 49%;
float: left;
margin: 0px 0px 20px 0px;
}
.team-row-i:nth-child(2n) {
width: 49%;
float: right;
margin: 0px 0px 20px 0px;
}
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 1.64%;
margin-right: 1.64%;
width: 46.5%;
}
.blog-sidebar-l {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.blog-sidebar-r {
width: 100%;
float: none;
margin: 0px;
}
.blog-sidebar-p {
padding: 0px;
}
.blog-post-p {
padding-right: 0px;
}
.tweeter-item-r {
width: 97%;
}
.blog-pagination {
margin-left: 0px;
margin-bottom: 60px;
}
.blog-sidebar {
float: none;
}
.search-widget input[type="text"] {
width: 97%;
}
.sp-page-l {
margin-right: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.sp-page-r {
width: 100%;
margin: 0px;
}
.sp-page-p {
padding-right: 0px;
}
.alt-flight-lr .padding {
padding-left: 15px;
}
.alt-departure {
width: auto;
float: left;
margin-bottom: 0px;
margin-right: 17px;
}
.alt-arrival {
width: auto;
float: left;
margin-bottom: 0px;
margin-right: 17px;
}
.alt-time {
width: auto;
float: left;
margin-bottom: 0px;
margin-top: 0px;
margin-right: 0px;
}
.tab-calendar-colls table tbody td {
height: 72px;
}
.flight-d-depart {
float: left;
margin-bottom: 20px;
}
.flight-d-time {
float: left;
margin-bottom: 20px;
}
.flight-d-arrival {
float: left;
}
.flight-d-left {
float: left;
margin-right: 35px;
}
.flight-d-right {
float: left;
}
.book-btn-l {
display: none;
}
.book-btn-r {
width: 100%;
}
.tab-calendar-collsl {
width: 100%;
float: none;
margin: 0px;
}
.tab-calendar-collsr {
width: 100%;
float: none;
margin: 0px;
}
.map-symbol {
float: left;
margin-right: 20px;
}
.tab-calendar-s {
padding-left: 0px;
}
.wishlist-btn-l {
display: none;
}
.wishlist-btn-r {
width: 100%;
}
.counters-five-colls {
text-align: center;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
float: none;
vertical-align: top;
width: 150px;
display: inline-block;
margin: 0px 20px 25px 20px;
}
.p-item-page-l {
width: 100%;
float: none;
margin: 0px;
}
.p-item-page-r {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.p-item-padding {
margin-right: 0px;
}
.p-item-page {
float: none;
}
.with-text .offer-slider-txt,
.offer-slider-txt {
min-height: auto;
}
@media screen and (max-width: 860px) {
.shortcodes-left, .shortcodes-right {
width: 100%;
float: none;
margin: 0px 0px 60px 0px;
}
.about-content .about-slider-txt {
width: 100%
}
.offer-slider header p {
width: 100%;
}
.mp-popular header p,
.page-lbl p {
width: 100%;
}
.fancybox-prev span {
left: 10px;
}
.fancybox-next span {
right: 10px;
}
}
@media screen and (max-width: 800px) {
.special-offer-a {
display: none;
}
.tweeter-item-r {
width: 96%;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 36%;
}
/*.mp-slider-lbl {padding-top:100px;}*/
.footer-a .section {
width: 23%;
margin-right: 8%;
}
.footer-a .section:nth-child(3) {
margin: 0px;
width: 140px;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 287px;
}
.search-line-select.middle .search-select {
width: 83px;
}
.search-select select {
background-position: 86% center;
width: 115%;
}
.search-line-a.large input[type="text"] {
margin-bottom: 18px;
}
.search-line-select.middle {
width: 87px;
}
.full-width-search .wrapper-a {
bottom: 299px;
}
.search-line-select.middle {
margin-top: 18px;
}
.search-only .mp-slider-lbl {
padding-top: 110px;
}
.full-width-search .page-search-p {
padding-bottom: 29px;
}
.offer-slider-lbl {
line-height: 36px;
padding-bottom: 12px;
}
.srch-tab-line .custom-select {
text-align: left;
}
.page-search.full-width-search {
width: 347px;
}
.search-type-padding {
padding: 0px;
}
.search-large-i {
width: 100%;
float: none;
margin: 0px 0px 16px 0px;
}
.search-large-i:nth-child(3) {
float: none;
margin: 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i {
width: 47.6%;
float: left;
margin: 0px 0px 20px 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i:nth-child(2n) {
width: 47.6%;
float: right;
margin: 0px 0px 20px 0px;
}
.flat-adv,
.flat-adv:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 45px 0px;
}
.flat-adv.large .flat-adv-l {
width: 100%;
float: none;
margin: 0px 0px 12px 0px;
padding: 0px;
text-align: center;
}
.flat-adv.large .flat-adv-r {
width: 100%;
float: none;
margin: 0px 0px 12px 0px;
padding: 0px;
text-align: center;
}
.flat-adv-a {
float: none;
}
.flat-adv-rb {
float: none;
}
.breadcrumbs {
display: none;
}
.tree-colls-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.three-team {
text-align: center;
}
.three-team .tree-colls-i {
width: 41%;
display: inline-block;
float: none;
margin: 0px 20px 20px 20px;
}
.about-two-colls-l {
width: 100%;
margin: 0px 0px 20px 0px;
float: none;
}
.about-two-colls-r {
width: 100%;
margin: 0px;
float: none;
}
.about-two-colls-rp {
padding-left: 0px;
}
.counters {
text-align: center;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 22%;
vertical-align: top;
float: none;
display: inline-block;
margin: 0px 20px 30px 20px;
}
.comlete-alert-a b {
margin-bottom: 5px;
}
.alt-time {
margin-top: 10px;
}
.datepicker-v2-month-container {
margin-top: 15px !important;
}
.search-engine-calendar-done-button {
margin-top: 10px;
}
.contacts-colls-l {
width: 100%;
float: none;
margin: 0px 0px 50px 0px;
padding: 0px;
}
.contacts-colls-r {
width: 100%;
float: none;
margin: 0px;
padding: 0px;
}
.portfolio-full-more-l {
width: 100%;
float: none;
margin: 0px 0px 50px 0px;
}
.portfolio-full-more-r {
width: 100%;
float: none;
margin: 0px;
}
.portfolio-full-more-p {
padding-left: 0px;
}
.list-rows .cat-list-item-l {
width: 100%;
float: none;
margin: 0px;
}
.list-rows .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.services-i {
width: 47%;
margin: 0px 0px 20px 0px;
float: left;
}
.services-i:nth-child(2n) {
float: right;
}
.solutions-i {
width: 100%;
margin: 0px 0px 20px 0px;
float: none;
}
.list-row-i {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.list-row-i:last-child {
margin-bottom: 0px;
}
.datepicker-popup {
width: 490px !important;
min-width: 490px !important;
}
.datepicker-v2-month-container:first-child,
.datepicker-v2-month-container:last-child {
width: 48%;
}
.datepicker-v2-month-container:first-child table,
.datepicker-v2-month-container:last-child table {
width: 100%;
}
.footer-a .section,
.footer-a .section:nth-child(3) {
width: 100%;
float: none;
margin-bottom: 21px;
}
.footer-social {
display: none;
}
.footer-subscribe {
width: 98%;
}
.footer-a .section:nth-child(1) {
margin-bottom: 42px;
}
.footer-a .section:nth-child(2) {
margin-bottom: 18px;
}
.footer-a .section:nth-child(3) {
margin-bottom: 43px;
}
}
@media screen and (max-width: 734px) {
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.content-tabs-head ul li {
float: none;
margin: 0px;
width: 100%;
border-bottom: 1px solid #fff;
}
.tab-calendar-colls table tbody td {
height: 65px;
}
.content-tabs-head.last-item ul li:last-child a {
width: 100%;
}
.cat-list-content-l {
width: 100%;
float: none;
margin: 0px;
}
.cat-list-content-r {
width: 100%;
float: none;
margin: 0px;
overflow: visible;
}
.available-row .cat-list-content-p {
padding-left: 0px;
}
.cat-list-content-lpadding {
padding-right: 0px;
}
.pie-charts-i {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.pie-charts-i:nth-child(2n) {
float: right;
}
.icons-two-colls .icons-item {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.icons-two-colls .icons-item:nth-child(2n) {
float: right;
}
.counters-four-colls .counters-row-i {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.counters-four-colls .counters-row-i:nth-child(2n) {
width: 49%;
float: right;
margin: 0px 0px 30px 0px;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
width: 49%;
margin-right: 0px;
margin-left: 0px;
}
.shortcodes-left {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.shortcodes-right {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.offer-slider-i.catalog-i,
.offer-slider-i.catalog-i:nth-child(3n) {
margin-bottom: 20px;
width: 48%;
float: left;
margin-left: 0px;
margin-right: 0px;
}
.offer-slider-i.catalog-i:nth-child(2n) {
width: 48%;
float: right;
margin-left: 0px;
margin-right: 0px;
}
.show-list,
.show-thumbs {
display: none;
}
.list-rows .cat-list-content-l {
margin-right: 125px;
width: auto;
float: left;
}
.list-rows .cat-list-content-r {
width: 125px;
float: left;
margin-left: -125px;
overflow: visible;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.list-rows .cat-list-content-lpadding {
padding-right: 30px;
}
.portfolio-i,
.portfolio-three-colls .portfolio-i {
width: 45.4%;
margin-right: 2.3%;
margin-left: 2.3%;
}
.portfolio-holder {
padding-left: 48px;
padding-right: 48px;
}
.tour-item .cat-list-content-lpadding {
border-right: 0px;
}
.datepicker-popup {
width: 440px !important;
min-width: 440px !important;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: auto;
float: none;
}
.mp-slider-lbl {
font-size: 36px;
padding-top: 172px;
}
}
@media screen and (max-width: 660px) {
.mp-slider .arrow-left, .mp-slider .arrow-right {
display: none;
}
.mp-slider-lbl-a {
padding-left: 20px;
padding-right: 20px;
}
.popular-destinations .offer-slider-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.testimonials-holder .bx-prev,
.testimonials-holder .bx-next {
display: none;
}
.testimonials-b {
padding-left: 0px;
padding-right: 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.alt-fligt-table {
width: 48%;
margin-right: 0px !important;
float: left !important;
}
.alt-fligt-table:nth-child(2n) {
width: 48%;
margin-right: 0px !important;
float: right !important;
}
.catalog-head label {
width: 100%;
display: block;
float: none;
margin: 0px 0px 10px 0px;
}
.search-select select {
width: 120%;
}
.three-team .tree-colls-i {
width: 100%;
display: block;
float: none;
margin: 0px 0px 20px 0px;
}
.tree-colls-i:last-child {
margin-bottom: 0px;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 30%;
}
.team-row-i,
.team-row-i:nth-child(2n) {
width: 100%;
float: none;
}
.tweeter-item-r {
width: 95%;
}
.search-widget input[type="text"] {
width: 95%;
}
.alt-center-l {
width: 100%;
float: none;
margin: 0px;
}
.alt-center-c {
width: 100%;
float: none;
margin: 0px;
}
.alt-logo {
width: 100%;
}
.alt-flight-a {
float: none;
}
.alt-flight-l {
width: 100%;
margin: 0px;
float: none;
}
.alt-flight-lr {
width: 100%;
float: none;
margin: 0px;
}
.alt-center-lp {
padding-right: 18px;
}
.alt-center-cp {
border-right: 0px;
padding-bottom: 20px;
padding-right: 18px;
padding-top: 0px;
}
.alt-departure,
.alt-arrival,
.alt-time {
width: auto;
float: left;
margin: 0px 9px 0px 0px;
}
.alt-flight-lr .padding {
padding-top: 0px;
padding-left: 18px;
}
.flight-d-depart {
float: none;
margin-bottom: 20px;
}
.flight-d-time {
float: none;
margin-bottom: 20px;
}
.flight-d-arrival {
float: none;
}
.flight-d-left {
width: 100%;
float: none;
}
.tab-calendar-colls table tbody td {
height: 50px;
}
.preferences-list li,
.preferences-list li:nth-child(2n) {
float: none;
width: 100%;
}
.flight-line-b {
float: none;
margin: 10px 0px 0px 32px;
}
.flight-line-b b {
display: inline;
padding-right: 12px;
margin-right: 5px;
}
.flight-line-b span {
display: inline;
}
.flight-line-b b.open {
display: inline;
}
.flt-l-b {
width: 100%;
float: none;
margin: 0px 0px 26px 0px;
}
.flt-l-c {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-padding {
text-align: left;
margin-left: 25px;
}
.flight-radio {
margin-left: 0px;
}
.flight-line-b {
margin-left: 25px;
}
.alternative .flight-line-b {
float: right;
margin-right: 0px;
margin-left: 0px;
}
.alternative .flight-line-b b {
display: block;
}
.flight-details {
padding-left: 25px;
}
.tab-reasons-i {
padding: 40px 0px 0px 0px;
text-align: center;
}
.tab-reasons-i.reasons-01 {
background: url(../img/tabs-i-01.png) center top no-repeat;
}
.tab-reasons-i.reasons-02 {
background: url(../img/tabs-i-02.png) center top no-repeat;
}
.tab-reasons-i.reasons-03 {
background: url(../img/tabs-i-03.png) center top no-repeat;
}
.tab-reasons-i.reasons-04 {
background: url(../img/tabs-i-04.png) center top no-repeat;
}
.preferences-list-alt li,
.preferences-list-alt li:nth-child(2n) {
width: 100%;
float: none;
}
.guest-reviews-bl {
width: 100%;
float: none;
margin: 0px;
}
.guest-reviews-br {
width: 100%;
float: none;
margin: 0px;
}
.guest-reviews-padding {
padding-left: 0px;
padding-top: 10px;
}
.guest-rating-txt {
margin-top: 10px;
}
.review-ranger-r {
width: 100%;
float: none;
}
.review-ranger label {
float: none;
display: block;
}
.icons-three-colls .icons-item {
width: 100%;
float: none;
text-align: center;
margin: 0px 0px 25px 0px;
}
.catalog-head.large .search-select {
width: 46%;
margin-bottom: 15px;
margin-right: 0px;
float: left;
}
.catalog-head.large .search-select:nth-child(2n) {
float: right;
}
.show-table {
display: none;
}
.tour-item .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
padding: 0px;
}
.tour-item .cat-list-item-l img {
width: 100%;
}
.tour-item .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.blockqoute-tp-a.float-left {
width: auto;
float: none;
margin-right: 0px;
}
.blockqoute-tp-a.float-right {
width: auto;
float: none;
margin-left: 0px;
}
.mm-4,
.mm-3,
.mm-2,
.mm-6,
.mm-12 {
width: 100%;
float: none;
padding: 0px;
margin-bottom: 15px;
}
.columns .content-wrapper {
padding-left: 60px;
padding-right: 60px;
}
.datepicker-popup {
width: 350px !important;
min-width: 350px !important;
}
.datepicker-v2-month-container:first-child,
.datepicker-v2-month-container:last-child {
width: 100%;
}
.tour-item-a {
padding-top: 0px;
}
}
@media screen and (max-width: 560px) {
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 0px;
margin-right: 0px;
width: 100%;
}
.blog-wrapper {
padding-left: 60px;
padding-right: 60px;
}
.blog-post-i {
float: none;
}
.blog-post-l {
width: 100%;
text-align: left;
float: none;
margin: 0px 0px 20px 0px;
}
.blog-post-c {
width: 100%;
float: none;
margin: 0px;
}
.blog-post-p {
padding: 0px;
}
.alt-details-i {
width: 100%;
margin: 0px 0px 12px 0px;
float: none;
}
.alt-details-i:nth-child(3) {
margin-bottom: 0px;
}
.faq-item-i {
margin-top: -5px;
}
.h-tabs-right span {
display: none;
}
.available-row .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.available-row .cat-list-item-l img {
width: 100%;
}
.available-row .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.available-row .cat-list-item-p {
padding-left: 0px;
}
.hotel-reviews-i,
.hotel-reviews-i:nth-child(2n) {
width: 100%;
float: none;
}
.reviews-l {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.reviews-r {
width: 100%;
float: none;
margin: 0px;
}
.todo-row .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.todo-row .cat-list-item-r {
float: none;
margin: 0px;
width: 100%;
}
.todo-row .cat-list-item-l img {
width: 100%;
}
.icons-two-colls .icons-item,
.icons-two-colls .icons-item:nth-child(2n) {
width: 100%;
float: none;
text-align: center;
margin: 0px 0px 25px 0px;
}
.services-i,
.services-i:nth-child(2n) {
width: 100%;
float: none;
}
.services-i:last-child {
margin-bottom: 0px;
}
.datepicker-popup {
width: 300px !important;
min-width: 300px !important;
}
.blog-post-info div {
display: inline-block;
margin-right: 15px;
}
}
@media screen and (max-width: 500px) {
.wrapper-padding, .offer-slider-c, .offer-slider header, .mp-popular, .partners, .testimonials, .pop-destinations, .theme-teaser-padding, .mobile-menu li, .about-content .content-wrapper, .about-slider-h, .why-we .content-wrapper, .inner-breadcrumbs .content-wrapper, .blog-wrapper, .blog-page, .contacts-page, .typography .content-wrapper, .inner-page .content-wrapper, .columns .content-wrapper, .testimonials-b {
padding-left: 20px;
padding-right: 20px;
}
.hdr-srch-overlay-a {
margin-left: 20px;
margin-right: 20px;
}
.testimonials-flat {
width: auto;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 100%;
display: block;
margin: 0px 0px 60px 0px;
}
.counters-i:last-child {
margin-bottom: 0px;
}
.about-slider-h.styled {
height: 310px;
padding: 50px 0px 0px 0px;
}
.flight-line-d {
margin-left: 6px;
margin-right: 6px;
}
.tab-reasons h2 {
line-height: 25px;
margin-bottom: 20px;
}
.rates-line-right {
width: 84%;
}
.guest-reviews-l {
width: 100%;
float: none;
margin: 0px;
text-align: center;
}
.guest-reviews-r {
width: 100%;
float: none;
margin: 0px;
text-align: center;
}
.guest-reviews-img {
margin: 0 auto;
margin-bottom: 13px;
}
.guest-reviews-br nav {
float: none;
}
.guest-rating {
float: none;
}
.guest-reviews-br nav li {
display: inline-block;
float: none;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
width: 100%;
float: none;
margin: 0px 0px 30px 0px;
}
.counters-four-colls .counters-row-i,
.counters-four-colls .counters-row-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.pie-charts-i,
.pie-charts-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.portfolio-full-more-txt,
.portfolio-full-more-txt:nth-child(2n) {
width: 100%;
float: none;
}
.offer-slider-i.catalog-i,
.offer-slider-i.catalog-i:nth-child(2n),
.offer-slider-i.catalog-i:nth-child(3n) {
float: none;
width: 100%;
}
.list-rows .cat-list-content-l {
margin: 0px;
float: none;
width: 100%;
float: none;
}
.list-rows .cat-list-content-r {
width: 100%;
float: none;
margin: 0px;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.list-rows .cat-list-content-lpadding {
padding-right: 0px;
}
.list-rows .cat-list-content-p {
padding-left: 0px;
}
.portfolio-i {
width: 100%;
margin-right: 0px;
margin-left: 0px;
}
.portfolio-holder {
padding-left: 20px;
padding-right: 20px;
}
.portfolio-three-colls .portfolio-i {
width: 100%;
margin-left: 0px;
margin-right: 0px;
}
.portfolio-holder-three {
padding-left: 20px;
padding-right: 20px;
}
.table-a tr th:nth-child(4),
.table-a tr td:nth-child(4) {
display: none;
}
.tabs-type-a .tabs-nav li {
float: none;
width: 100%;
margin: 0px 0px 5px 0px;
}
.tabs-type-a .tabs-nav li a {
width: 100%;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
.tabs-type-bi-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.tabs-type-bi-r {
width: 100%;
float: none;
margin: 0px;
}
.tabs-type-bi-p {
padding-left: 0px;
}
.tabs-type-bi-rb {
border-left: 0px;
}
.tabs-type-b .tabs-nav a.active,
.tabs-type-b .tabs-nav a.active:hover {
border-right: 1px solid #E3E3E3 !important;
}
.tabs-type-b .tabs-nav a.active span {
display: none;
}
.accordeon-a span {
float: right;
width: 90%;
line-height: 20px;
}
.toggle-lbl {
line-height: 20px;
margin-top: 10px;
}
.datepicker-popup {
width: 280px !important;
min-width: 280px !important;
}
.testimonials-flat {
padding: 40px 0px 0px 0px;
height: 320px;
}
.list-rows .cat-list-content-lpadding {
border-right: 0px;
}
}
@media screen and (max-width: 435px) {
.form-sex {
float: none;
width: 100%;
margin-bottom: 17px;
}
.form-calendar {
float: none;
width: 100%;
margin: 0px;
}
.tab-calendar-colls table tbody td {
height: 40px;
}
.accordeon-a span {
float: right;
width: 89%;
}
.mp-slider-lbl {
font-size: 29px;
padding-top: 150px;
}
}
@media screen and (max-width: 401px) {
.alt-time {
margin-top: 10px;
}
}
@media screen and (max-width: 390px) {
.about-slider-txt {
line-height: 22px;
}
.mp-slider-lbl {
font-size: 22px;
font-weight: 300;
line-height: 30px;
}
.mp-slider-lbl-a {
font-size: 15px;
line-height: 24px;
padding-top: 11px;
padding-bottom: 19px;
}
.mp-slider-lbl {
padding-top: 123px;
}
.page-search {
width: 302px;
}
.search-tab {
padding-left: 25px;
padding-right: 26px;
}
.search-tab.nth {
padding-right: 26px;
padding-left: 25px;
}
.search-line input[type="text"] {
width: 240px;
}
.search-line-a input[type="text"],
.search-line-b input[type="text"] {
width: 102px;
}
.search-line-a,
.search-line-b {
width: 121px;
}
.search-select select {
width: 114%;
}
.search-line-select {
width: 122px;
}
.search-select {
width: 118px;
}
.search-line-select {
margin-right: 0px;
margin-bottom: 18px;
}
.search-line-select.adults {
float: right;
margin-right: 0px;
}
.search-line-select.nth {
float: none;
margin-bottom: 0px;
}
.search-line-select.nth .search-select {
width: 253px;
}
.wrapper-a {
bottom: 374px;
}
.header-phone {
border-left: 0px;
padding-left: 0px;
}
.header-lang a {
border-left: 0px;
}
.search-select.full-width {
width: 253px;
}
.search-select.full-width select {
width: 109%;
}
.search-select.half-width {
width: 118px;
}
.search-select.half-width select {
width: 113%;
}
.search-line-a.hotel-stars {
float: none;
margin-bottom: 20px;
width: 100%;
margin-right: 0px;
}
.search-line-a.hotel-stars .search-select.half-width {
width: 253px;
}
.search-line-b.peoples {
float: none;
width: 100%;
margin-right: 0px;
}
.search-line-b.peoples .search-select.half-width {
width: 253px;
}
.search-select.half-width select {
width: 110.7%;
}
.search-line-a.peoples,
.search-line-a.price {
float: none;
margin-bottom: 20px;
width: 100%;
margin-right: 0px;
}
.search-line-a.peoples .search-select.half-width,
.search-line-a.price .search-select.half-width {
width: 253px;
}
.search-line-b.class,
.search-line-b.company {
float: none;
width: 100%;
margin-right: 0px;
}
.search-line-b.class .search-select.half-width,
.search-line-b.company .search-select.half-width {
width: 253px;
}
.search-type-a .srch-tab-3c {
width: 46.5%;
float: left;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-3c:nth-child(2) {
width: 46.5%;
float: right;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-3c:nth-child(3) {
width: 100%;
float: none;
margin: 0px;
}
.search-type-b .srch-tab-3c {
width: 46.5%;
float: left;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-3c:nth-child(2) {
width: 46.5%;
float: right;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-3c:nth-child(3) {
width: 100%;
float: none;
margin: 0px;
}
.search-type-a .srch-tab-left.transformed {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-right.transformed {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.search-type-b .srch-tab-left.transformed {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-right.transformed {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.search-only .mp-slider-lbl {
padding-top: 60px;
}
.page-search.full-width-search {
width: 302px;
}
.page-search.full-width-search .page-search-tabs {
width: 100%;
}
.full-width-search .wrapper-a {
bottom: 374px;
}
.footer-subscribe {
width: 97.5%;
}
.alt-fligt-table {
width: 100%;
margin-right: 0px !important;
float: none !important;
}
.alt-fligt-table:nth-child(2n) {
width: 100%;
margin-right: 0px !important;
float: none !important;
}
.search-select select {
width: 122%;
}
.catalog-head .search-select {
width: 100%;
float: none;
margin-bottom: 15px;
}
.catalog-head .search-select:last-child {
margin-bottom: 0px;
}
.header-account a {
padding-left: 19px;
padding-right: 19px;
}
.header-lang {
display: none;
}
.tweeter-item-r {
width: 93.2%;
}
.search-widget input[type="text"] {
width: 93.2%;
}
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.contacts-colls .booking-form-i {
width: 100%;
float: none;
}
.booking-form .checkbox label {
width: 100%;
float: none;
}
.add-passanger {
float: none;
width: 100%;
display: block;
margin-bottom: 15px;
}
.card-type {
width: 100%;
float: none;
margin-bottom: 9px;
}
.payment-tab .checkbox label {
line-height: 19px;
}
.flight-line-a {
margin-top: 13px;
}
.flight-image span {
display: none;
}
.tab-calendar-colls table tbody td {
height: 27px;
}
.calendar-tab-select select,
.calendar-tab-select .customSelect {
width: 95%;
}
.tab-calendar-colls table tbody td span p {
padding: 4px 6px 0px 0px;
}
.flight-line-d {
margin-left: 5px;
margin-right: 5px;
}
.rates-line-right {
width: 100%;
float: none;
}
.rates-line .srch-tab-left {
width: 100%;
float: none;
margin-bottom: 15px;
}
.rates-line .srch-tab-right {
width: 100%;
float: none;
}
.rates-srch {
width: 100%;
background-position: center center;
}
.rates-srch:hover {
width: 100%;
background-position: center center;
}
.catalog-head.large .search-select,
.catalog-head.large .search-select:nth-child(2n) {
width: 100%;
float: none;
}
.catalog-head.large .search-select:nth-child(5) {
margin-bottom: 5px;
}
.accordeon-a span {
float: right;
width: 87%;
}
.datepicker-popup {
width: 210px !important;
min-width: 210px !important;
}
.testimonials-flat {
padding: 30px 0px 0px 0px;
height: 330px;
}
}
@media screen and (max-width: 313px) {
.header-logo {
margin: -12px 0px 0px 0px;
}
.header-right {
margin-top: 0;
}
}
|
assets/css/style.css
|
html {
-webkit-text-size-adjust: auto;
-ms-text-size-adjust: auto;
}
html,
body,
img,
form {
margin: 0px;
padding: 0px;
border: none;
letter-spacing: normal;
}
html,
body {
height: 100%;
-webkit-font-smoothing: antialiased;
}
body {
background-color: #fafafa;
}
body.inner-body {
background-color: #fff;
}
body.gray-inner {
background-color: #fafafa;
}
body,
td {
font: 14px Arial, sans-serif;
color: #000;
}
a {
color: #000;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
td {
vertical-align: top;
}
p {
padding: 0px;
margin: 0px 0px 14px 0px;
}
.pabt {
padding: 0px;
margin: 0px 0px 14px 0px;
text-align: justify;
font-size: 16px;
line-height: 30px;
}
.imgcenter1{
padding-left: 150px;
}
.imgcenter2{
padding-left: 284px;
}
object {
outline: none;
}
fieldset {
border: 0;
}
input,
select,
textarea,
button {
outline: none !important;
}
h1 {
font-size: 17px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
h2 {
font-size: 15px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
h3 {
font-size: 13px;
padding: 0px;
margin: 0px 0px 10px 0px;
}
.clear {
clear: both;
}
.none {
line-height: 0;
}
.relative {
width: 100%;
position: relative;
}
.img-marg {
float: left;
margin: 0 10px 5px 0;
}
.float-l {
float: left;
}
.float-r {
float: right;
}
.highlight {
font-weight: bold;
}
.hfeed .posts {
margin-bottom: 10px;
}
input,
select,
button,
textarea {
outline: none;
}
.body-padding {
padding-bottom: 30px;
}
.index-page .body-padding {
padding-bottom: 0px;
}
.body-wrapper {
padding-bottom: 110px;
padding-top: 112px;
}
#top {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
z-index: 999;
}
.mobile-menu {
background: #141d1e;
display: none;
width: 100%;
position: absolute;
left: 0px;
top: 89px;
padding-top: 27px;
padding-bottom: 26px;
}
.mobile-menu li {
display: block;
padding: 0px 60px 0px 60px;
}
.mobile-menu li a {
font-size: 12px;
color: #fff;
font-family: 'Raleway';
display: block;
padding: 14px 0px 14px 0px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
border-bottom: 1px solid #1a2526;
}
.mobile-menu li a:hover {
color: #ff7200;
}
.mobile-menu li:last-child a {
border-bottom: 0px;
}
.mobile-menu li ul {
display: none;
}
.mobile-menu li li {
padding: 0px;
}
.mobile-menu li li:last-child a {
border-bottom: 1px solid #1a2526;
}
.mobile-menu li li a {
padding-left: 10px;
padding-right: 10px;
}
.fixed .mobile-menu {
top: 59px;
}
/* Bordered form */
form {
border: 3px solid #f1f1f1;
}
/* Full-width inputs */
.input-login {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
/* Add a hover effect for buttons */
button:hover {
opacity: 0.8;
}
/* Add padding to containers */
.container {
padding: 16px;
}
.form-login {
width:60%;
margin:auto;
}
.menu-btn {
float: right;
display: none;
width: 12px;
height: 10px;
background: url(../img/menu-btn.png) right top no-repeat;
margin: 4px 23px 0px 0px;
}
.wrapper-padding {
position: relative;
}
.main-cont {
width: 100%;
min-width: 300px;
/*min-height:100%;*/
}
.header-a {
height: 40px;
width: 100%;
background: #141d1e;
}
.header-b {
position: relative;
}
.header-phone {
float: left;
padding: 11px 16px 0px 16px;
height: 29px;
border-left: 1px solid #333333;
border-right: 1px solid #333333;
}
.header-phone span {
background: url(../img/icon-phone.png) left top no-repeat;
background-position: left 1px;
padding: 1px 0px 0px 25px;
font-size: 11px;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
display: inline-block;
min-height: 15px;
}
.header-phone a[href^=tel] {
color: #fff;
text-decoration: none;
}
.header-account {
float: right;
}
.header-account a {
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
display: inline-block;
border-left: 1px solid #333333;
border-right: 1px solid #333333;
padding: 14px 22px 0px 22px;
height: 26px;
}
.header-social {
float: right;
border-left: 1px solid #333333;
padding: 13px 22px 0px 25px;
height: 27px;
}
.header-social a {
display: inline-block;
width: 14px;
height: 14px;
margin: 0px 9px 0px 9px;
}
.header-social .social-twitter {
background: url(../img/head-twitter.png) left top no-repeat;
margin-left: 0px;
}
.header-social .social-facebook {
background: url(../img/head-facebook.png) left top no-repeat;
}
.header-social .social-vimeo {
background: url(../img/head-vimeo.png) left top no-repeat;
}
.header-social .social-pinterest {
background: url(../img/head-pinterest.png) left top no-repeat;
}
.header-social .social-instagram {
background: url(../img/head-instargam.png) left top no-repeat;
margin-right: 0px;
}
.header-social a:hover {
background-position: left -14px;
}
.header-viewed {
float: right;
position: relative;
}
.viewed-drop {
display: none;
position: absolute;
left: 0px;
top: 40px;
z-index: 999;
border-top: 8px solid #fff;
width: 330px;
background: #fcf8f5;
}
.viewed-drop-a {
padding: 17px 16px 17px 16px;
}
.viewed-item {
border-bottom: 1px solid #ebe7e4;
padding-bottom: 13px;
margin-bottom: 13px;
}
.viewed-item:last-child {
border-bottom: 0px;
margin-bottom: 0px;
padding-bottom: 0px;
}
.viewed-item-l {
margin-top: 3px;
width: 79px;
float: left;
}
.viewed-item-lbl {
margin-bottom: 7px;
}
.viewed-item-lbl a {
font-family: 'Montserrat';
font-weight: normal;
font-size: 13px;
text-transform: uppercase;
color: #252525;
text-decoration: none;
}
.viewed-item-cat {
margin-bottom: 8px;
font-size: 10px;
text-transform: uppercase;
color: #939393;
font-family: 'Raleway';
font-weight: 600;
}
.viewed-price {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
}
.viewed-item-r {
width: 208px;
float: right;
}
.header-viewed-btn {
display: block;
border-left: 1px solid #333333;
padding: 14px 22px 0px 25px;
height: 26px;
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
}
.header-lang {
float: right;
position: relative;
}
.langs-drop {
display: none;
position: absolute;
left: 0px;
top: 41px;
border-top: 5px solid #fff;
padding: 10px 10px 3px 15px;
background: #fcf8f5;
width: 125px;
z-index: 999;
}
.header-lang a {
display: block;
border-left: 1px solid #333333;
padding: 13px 13px 0px 13px;
height: 27px;
}
.header-lang a.langs-item {
display: inline-block;
font-size: 10px;
color: #697374;
margin: 0px;
padding: 0px;
height: auto;
padding: 0px 0px 0px 24px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
border: 0px;
line-height: 13px;
margin-bottom: 11px;
}
.header-lang a.langs-item:hover {
color: #ff7200;
}
.header-lang a.langs-item.en {
background: url(../img/en.gif) left top no-repeat;
}
.header-lang a.langs-item.fr {
background: url(../img/fr.gif) left top no-repeat;
}
.header-lang a.langs-item.de {
background: url(../img/de.gif) left top no-repeat;
}
.header-lang a.langs-item.it {
background: url(../img/it.gif) left top no-repeat;
}
.header-curency {
float: right;
position: relative;
}
.header-curency:hover a {
color: #ff7200;
}
.curency-drop {
position: absolute;
left: 0px;
display: none;
top: 40px;
border-top: 4px solid #fff;
z-index: 999;
font-family: 'Raleway';
font-weight: 700;
background: #fcf8f5;
width: 126px;
padding: 11px 10px 7px 14px;
}
.header-curency a {
display: block;
border-left: 1px solid #333333;
padding: 14px 14px 0px 14px;
height: 26px;
color: #fff;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: 700;
text-decoration: none;
}
.header-curency .curency-drop div {
margin-bottom: 8px;
}
.header-curency .curency-drop a {
font-size: 11px;
color: #697374;
margin: 0px;
padding: 0px;
height: auto;
display: inline;
text-transform: uppercase;
border: 0px;
}
.header-b {
height: 89px;
width: 100%;
background: #fff;
-webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
-moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.11);
}
.header-logo {
float: left;
margin: 26px 0px 0px 0px;
}
.header-logo img {
width: 188px;
}
.fixed .header-logo img {
width: 39px;
}
.header-right {
float: right;
margin-top: 37px;
}
.header-nav {
float: right;
}
.header-nav ul,
.header-nav ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.header-nav ul li {
margin-left: 30px;
float: left;
}
.header-nav ul li a {
font-size: 12px;
color: #2c2c2c;
font-family: 'Montserrat';
font-weight: normal;
text-decoration: none;
text-transform: uppercase;
}
.hdr-srch-devider {
float: right;
height: 15px;
width: 1px;
margin: 1px 17px 0px 21px;
background: #e2e2e2;
}
.hdr-srch {
position: relative;
float: right;
margin: 2px 0px 0px 0px;
}
.hdr-srch-overlay {
display: none;
height: 36px;
padding-top: 14px;
background: #fff;
width: 100%;
position: absolute;
right: 0px;
top: 22px;
z-index: 999;
}
.hdr-srch-overlay input[type='text'] {
font-family: 'PT Sans';
font-size: 13px;
color: #6e6e6e;
font-weight: 700;
border: 0px;
width: 90%;
float: left;
background: transparent;
text-transform: uppercase;
}
.srch-close {
display: block;
width: 13px;
height: 13px;
float: right;
margin: 3px 0px 0px 0px;
background: url(../img/srch-close.png) left top no-repeat;
}
.hdr-srch-btn {
display: block;
width: 13px;
height: 13px;
background: url(../img/srch-icon.png) left top no-repeat;
}
.hdr-srch-btn:hover {
background-position: left -13px;
}
.mp-slider {
position: relative;
padding: 130px 0px 0px 0px;
}
.mp-slider .arrow-left {
display: block;
position: absolute;
left: 45px;
top: 50%;
margin-top: -16px;
z-index: 99;
width: 17px;
height: 31px;
background: url(../img/swipe-l.png) left top no-repeat;
}
.mp-slider .arrow-right {
display: block;
position: absolute;
right: 45px;
top: 50%;
margin-top: -16px;
z-index: 99;
width: 17px;
height: 31px;
background: url(../img/swipe-r.png) left top no-repeat;
}
.mp-slider .arrow-left:hover,
.mp-slider .arrow-right:hover {
opacity: 1;
}
.mp-slider .slide-section {
width: 100%;
height: 807px;
}
.swiper-container {
position: relative;
}
.swiper-preloader-bg {
width: 100%;
height: 100%;
background: #fcf8f5;
position: absolute;
left: 0px;
top: 0px;
z-index: 99;
}
.swiper-preloader {
position: absolute;
z-index: 999;
left: 50%;
top: 50%;
width: 30px;
height: 30px;
margin-left: -15px;
margin-top: -15px;
}
.swiper-container,
.swiper-slide {
width: 100%;
height: 807px;
}
.swiper-pagination {
position: absolute;
right: 40px;
bottom: 32px;
z-index: 999;
}
.swiper-pagination-switch {
display: block;
cursor: pointer;
width: 6px;
height: 6px;
margin-top: 4px;
border: 1px solid #fff;
border-radius: 10000px;
}
.swiper-visible-switch.swiper-active-switch {
background: #fff;
}
.mp-slider-lbl {
padding: 170px 0px 0px 0px;
text-align: center;
width: 100%;
font-size: 39px;
text-transform: uppercase;
font-family: 'Montserrat';
color: #fff;
position: relative;
top: 18px;
opacity: 0;
}
.search-only .mp-slider-lbl {
padding-top: 290px;
}
.mp-slider-lbl-a {
padding: 20px 0px 28px 0px;
text-align: center;
font-size: 17px;
color: #fff;
position: relative;
top: 18px;
opacity: 0;
font-weight: 400;
font-family: 'Lora';
font-style: italic;
}
.mp-slider-lbl-b {
margin-bottom: 22px;
color: #ff7200;
font-family: 'Lato';
font-size: 39px;
text-transform: uppercase;
text-align: center;
position: relative;
top: 18px;
opacity: 0;
}
.btn-a {
font-family: 'Montserrat';
font-weight: 700;
display: inline-block;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
padding: 12px 33px 12px 33px;
text-align: center;
font-size: 11px;
border-radius: 3px;
webkit-border-radius: 3px;
moz-border-radius: 3px;
text-transform: uppercase;
position: relative;
top: 18px;
opacity: 0;
}
.btn-a:hover {
color: #4a90a4;
background: #fff;
}
.slide-b .mp-slider-lbl,
.slide-b .mp-slider-lbl-a {
color: #fff;
}
.mp-slider-btn {
text-align: center;
}
.page-search {
float: left;
width: 347px;
height: 385px;
margin: 0px 31px 0px 0px;
background: transparent;
}
.page-search.full-width-search {
float: none;
width: 100%;
height: 385px;
margin: 0px 0px 0px 0px;
background: transparent;
}
.page-search.full-width-search .search-tab-content {
width: 100%;
}
.search-tab-content {
display: none;
}
.search-tab-content:first-child {
display: block;
}
.page-search.full-width-search .page-search-tabs {
width: 347px;
}
.search-tab {
height: 27px;
display: inline-block;
margin: 0px 3px 0px 0px;
float: left;
text-align: center;
font-size: 12px;
color: #fff;
text-transform: uppercase;
font-family: 'Montserrat';
background: #1d292e;
cursor: pointer;
padding: 14px 33px 0px 33px;
}
.search-tab.nth {
margin-right: 0px;
float: right;
}
.search-tab.active {
background: #fff;
cursor: default;
color: #000000;
}
.page-search-content {
min-height: 120px;
background: #fff;
}
.page-search-p {
padding: 26px 21px 29px 21px;
}
.full-width-search .page-search-p {
padding: 26px 21px 21px 21px;
}
.page-search-content label {
display: block;
font-size: 11px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 9px;
}
.search-line {
margin: 0px 0px 18px 0px;
}
.search-line input[type='text'] {
border: 1px solid #e3e3e3;
background: #fff;
width: 284px;
border-radius: 3px;
padding: 9px 8px 9px 8px;
text-transform: uppercase;
font-family: 'Raleway';
font-size: 11px;
color: #8a8a8a;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
}
.search-line-a {
float: left;
width: 140px;
margin: 0px 0px 18px 0px;
}
.full-width-search .search-line-a {
width: auto;
margin-right: 19px;
margin-bottom: 0px;
}
.search-line-b {
float: right;
width: 140px;
margin: 0px 0px 18px 0px;
}
.search-line-c {
margin-bottom: 17px;
}
.search-line-a.nth,
.search-line-b.nth,
.search-line-c.nth {
margin-bottom: 0px;
}
.search-line-a input[type='text'],
.search-line-b input[type='text'] {
border: 1px solid #e3e3e3;
background: #fff;
width: 120px;
border-radius: 3px;
font-size: 11px;
padding: 8px;
text-transform: uppercase;
font-family: 'Raleway';
color: #8a8a8a;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
}
.search-line-a.large input[type='text'] {
width: 305px;
}
.search-line-a.middle input[type='text'] {
width: 143px;
}
.search-line-a.middle-a input[type='text'] {
width: 133px;
}
.search-line-select {
width: 87px;
float: left;
margin: 0px 21px 0px 0px;
}
.search-line-select.nth {
margin-right: 0px;
float: right;
}
.search-select {
width: 83px;
overflow: hidden;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border: 1px solid #e3e3e3;
}
.search-line-select.middle {
width: 94px;
}
.search-line-select.middle.last {
margin-right: 0px;
}
.search-line-select.middle .search-select {
width: 90px;
}
.srch-horizontal {
margin-right: 12px;
float: left;
}
.search-select select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 80% center;
background-repeat: no-repeat;
border: 0px;
border-radius: 0;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 117%;
-webkit-appearance: none;
-o-appearance: none;
-khtml-appearance: none;
appearance: none;
text-transform: uppercase;
font-family: 'Raleway';
color: #8a8a8a;
}
.search-select.full-width {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 300px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width select,
.search-select.full-width-a select,
.search-select.full-width-b select,
.search-select.full-width-c select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 94.3% center;
background-repeat: no-repeat;
border: medium none;
border-radius: 0;
color: #d3d3d3;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 105%;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select.middle-c {
border: 1px solid #d6d6d6;
background: #fff;
font-size: 11px;
width: 149px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.full-width-search .search-line-a.last {
margin-right: 0px;
}
.search-select.full-width-a {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 341px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width-b {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 321px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-select.full-width-c {
border: 1px solid #e3e3e3;
background: #fff;
font-size: 11px;
width: 321px;
margin-right: 18px;
background: url(../img/select-bg.gif) right center no-repeat;
border-radius: 3px;
}
.search-line-select.middle-b {
width: auto;
float: left;
margin-right: 0px;
margin-left: 18px;
}
.search-select.half-width select {
background-color: #fff;
cursor: pointer;
background-image: url(../img/select-bg.gif);
background-position: 89% center;
background-repeat: no-repeat;
border: medium none;
border-radius: 0;
color: #d3d3d3;
font-size: 11px;
padding: 7px 0px 8px 4px;
outline: medium none;
width: 110%;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select.half-width {
width: 136px;
}
.search-select span {
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
}
.search-select-a {
cursor: pointer;
padding: 8px;
}
.search-footer {
border-top: 1px solid #f8f1eb;
padding: 23px 21px 30px 22px;
}
.search-asvanced {
display: none;
padding-top: 17px;
}
.overlay {
display: none;
width: 100%;
height: 100%;
background: rgba(20, 29, 30, 0.19);
position: fixed;
left: 0px;
top: 0px;
z-index: 9999;
}
.autorize-popup {
z-index: 9999;
width: 444px;
height: 255px;
background: #fff;
position: fixed;
left: 50%;
top: -300px;
margin-top: -128px;
margin-left: -222px;
}
.autorize-tab-a {
display: block;
float: left;
width: 82px;
height: 27px;
text-align: center;
text-decoration: none;
font-family: 'Raleway';
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
color: #fff;
background: #141d1e;
padding-top: 12px;
}
.autorize-tab-b {
display: block;
float: left;
width: 303px;
height: 27px;
text-decoration: none;
font-family: 'Raleway';
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
color: #fff;
background: #141d1e;
padding-top: 12px;
padding-left: 20px;
}
.autorize-tabs a.current {
color: #292828;
background: #fff;
cursor: default;
}
.autorize-close {
display: block;
width: 39px;
height: 39px;
float: right;
background: url(../img/popup-close.png) left top no-repeat;
}
.autorize-close:hover {
background-position: left -39px;
}
.autorize-lbl {
font-family: 'Raleway';
font-size: 13px;
color: #6d6d6d;
margin: 0px 0px 18px 0px;
}
.autorize-padding {
padding: 22px 20px 20px 21px;
}
.autorize-tab-content {
display: none;
}
.autorize-tab-content input[type='text'] {
border: 1px solid #ebebeb;
background: #fff;
width: 381px;
border-radius: 3px;
font-size: 11px;
padding: 10px 8px 10px 8px;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
color: #8a8a8a;
margin-bottom: 15px;
}
.authorize-btn {
display: block;
width: 118px;
height: 34px;
padding-top: 3px;
cursor: pointer;
background: #ff7200;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
text-align: center;
font-size: 11px;
text-decoration: none;
color: #fff;
float: left;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
border: 0px;
}
.authorize-btn:hover {
background: #ff8f35;
}
.authorize-forget-pass {
float: left;
font-family: 'Raleway';
font-size: 12px;
color: #6d6d6d;
text-decoration: none;
margin: 12px 0px 0px 15px;
}
.header-account a:hover,
.header-viewed-btn:hover,
.header-viewed:hover .header-viewed-btn,
.header-curency a:hover,
.header-nav ul li a:hover {
color: #ff7200;
}
.header-nav ul li {
position: relative;
}
.header-nav ul li a {
padding-bottom: 39px;
}
.fixed .header-nav ul li a {
padding-bottom: 39px;
}
.fixed .header-nav ul ul {
top: 37px;
}
.fixed .hdr-srch-overlay {
top: 7px;
}
.header-nav ul ul {
display: none;
position: absolute;
left: -14px;
top: 53px;
z-index: 999;
width: 211px;
background: #111111;
padding: 17px 0px 18px 0px;
}
.header-nav ul li:hover>a {
color: #ff7200;
}
.header-nav ul ul li {
margin: 0px;
padding: 0px;
display: block;
float: none;
margin-bottom: 19px;
padding: 0px 15px 0px 15px;
}
.header-nav ul ul li:last-child {
margin-bottom: 0px;
}
.header-nav ul ul li a {
margin: 0px;
padding: 0px;
font-size: 11px;
color: #d8d8d8;
font-family: 'Raleway';
font-weight: 600;
}
.wrapper-padding {
max-width: 1100px;
margin: 0 auto;
}
.wrapper-padding-a {
max-width: 1190px;
margin: 0 auto;
}
.wrapper-a-holder {
max-width: 1100px;
margin: 0 auto;
position: relative;
height: 1px;
}
.wrapper-a {
max-width: 1100px;
width: 100%;
margin: 0 auto;
position: absolute;
height: 1px;
left: 0px;
z-index: 99;
bottom: 420px;
}
.full-width-search .wrapper-a {
bottom: 146px;
}
.special-offer-a {
margin: 42px 0px 0px 0px;
float: left;
width: 346px;
}
.special-offer-img {
height: auto;
margin: 0px;
}
.special-offer-img img {
width: 100%;
}
.special-offer-img a {
display: block;
line-height: 0px;
}
.special-offer-img img,
.special-offer-img a {
height: auto;
margin: 0px;
padding: 0px;
}
.special-offer-foot-l {
margin-top: 3px;
float: left;
width: 230px;
}
.special-offer-foot-l b {
display: block;
font-weight: normal;
display: block;
text-transform: uppercase;
color: #252525;
margin-bottom: 7px;
font-family: 'Montserrat';
}
.special-offer-foot-l span {
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
font-size: 10px;
color: #939393;
}
.special-offer-foot-r {
float: right;
text-align: right;
margin-top: 1px;
}
.special-offer-foot-r b {
font-family: 'Montserrat';
font-size: 20px;
display: block;
font-weight: normal;
margin-bottom: 3px;
color: #ff7200;
}
.special-offer-foot-r span {
display: block;
font-size: 10px;
font-family: 'Raleway';
font-weight: 600;
color: #939393;
text-transform: uppercase;
}
.special-offer-foot {
background: #fff;
padding: 21px 19px 25px 20px;
}
.special-offer-b {
float: left;
width: 345px;
height: 344px;
margin: 42px 0px 0px 31px;
}
.weather-block {
width: 345px;
height: 344px;
background: url(../img/paris.jpg) left top no-repeat;
background-size: 345px 344px;
;
}
.weather-i {
display: inline-block;
text-align: center;
vertical-align: top;
margin: 57px 13px 0px 14px;
}
.weather-i:nth-child(2n) {
margin-left: 19px;
}
.weather-i:nth-child(2n) .weather-b {
margin-left: 3px;
}
.weather-devider {
margin: 56px 0px 0px 0px;
height: 1px;
background: #9f9e9d;
}
.weather-a {
margin: 0px 0px 19px 0px;
font-size: 13px;
color: #fff;
font-family: 'Montserrat';
text-transform: uppercase;
}
.weather-b {
margin-bottom: 17px;
}
.weather-c {
text-align: center;
font-size: 12px;
color: #fff;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.weather-block-padding {
text-align: center;
}
.weather-footer {
text-align: left;
padding: 20px 0px 0px 18px;
}
.weather-foot-link-a {
font-size: 21px;
line-height: 25px;
color: #fff;
font-weight: nomal;
font-family: 'Montserrat';
font-weight: normal;
display: block;
}
.weather-footer a {
text-decoration: none;
}
.weather-foot-link {
display: block;
font-size: 12px;
color: #fff;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 5px;
}
.srch-btn {
display: block;
width: 102px;
height: 24px;
padding-top: 10px;
background: #ff7200;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
text-align: center;
font-size: 11px;
text-decoration: none;
color: #fff;
border: 0px;
margin-top: 1px;
float: left;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
}
button.srch-btn {
cursor: pointer;
font-family: 'Montserrat';
font-size: 11px;
font-weight: normal;
padding-top: 10px;
float: none;
margin-top: 21px;
height: 34px;
}
.date-icon {
display: block;
width: 16px;
height: 15px;
background: url(../img/datepick.png) left top no-repeat;
position: absolute;
z-index: 1;
top: 7px;
right: 8px;
}
.input-a {
position: relative;
}
.date-inpt {
cursor: pointer;
z-index: 99;
position: relative;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-radius: 0px !important;
border-color: #ebebeb;
background: #fff;
}
.ui-widget-header {
background: #fff !important;
border: 0px !important;
}
.ui-datepicker .ui-datepicker-title {
font-size: 12px;
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
color: #4c4c4c;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
font-family: 'Montserrat';
border: 0px !important;
font-size: 11px;
font-weight: normal;
border-radius: 0px !important;
display: block;
}
.ui-datepicker td span,
.ui-datepicker td a {
padding: 5px 5px 10px 10px !important;
font-weight: normal !important;
width: 20px !important;
height: 20px !important;
background: #fafafa !important;
}
.ui-datepicker td {
padding: 0px !important;
color: #686d6e;
border: 1px solid #eaeaea;
}
.ui-datepicker td a:hover {
background: #ff7200 !important;
color: #fff;
}
.ui-state-default.ui-state-active {
background: #ff7200 !important;
color: #fff;
}
.ui-datepicker th {
font-size: 11px;
font-weight: normal;
}
.ui-datepicker {
padding: 10px 14px 10px 14px;
margin-left: -8px;
margin-top: 15px;
width: 252px;
}
.ui-widget-header .ui-icon.ui-icon-circle-triangle-w {
width: 4px;
height: 8px;
left: 10px;
background: url(../img/cal-left.png) left top no-repeat;
background-position: 0px 0px;
}
.ui-widget-header .ui-icon.ui-icon-circle-triangle-e {
width: 4px;
height: 8px;
left: auto;
margin-left: 0px;
right: 0px;
background: url(../img/cal-right.png) left top no-repeat;
background-position: 0px 0px;
}
.ui-datepicker .ui-datepicker-prev {
left: 0px;
cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
right: 0px;
cursor: pointer;
}
.ui-corner-all.ui-state-hover {
border-color: transparent;
background: transparent;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover {
left: -1px;
}
.ui-datepicker .ui-datepicker-next.ui-state-hover {
right: -1px;
}
.input-a {
padding: 6px 7px 7px 7px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
}
.input-a input[type='text'] {
width: 100%;
border: 0px;
background: transparent;
font-family: "Raleway";
font-size: 11px;
text-transform: uppercase;
}
.textarea-a {
padding: 7px 7px 7px 7px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
}
.textarea-a textarea {
width: 100%;
border: 0px;
resize: none;
background: transparent;
font-family: "Raleway";
font-size: 11px;
text-transform: uppercase;
}
.srch-tab-left {
float: left;
width: 46.5%;
}
.srch-tab-right {
float: right;
width: 46.5%;
}
.srch-tab-3c {
width: 28.6%;
float: left;
margin-right: 7%;
}
.srch-tab-3c:nth-child(3n) {
float: right;
margin-right: 0px;
}
.srch-tab-3c .custom-select {
cursor: pointer;
height: 34px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
background: url(../img/mp-select.png) right top no-repeat;
font-size: 11px;
color: #8a8a8a;
}
.srch-tab-3c .custom-select span {
display: block;
padding: 10px 7px 9px 7px;
}
.select-wrapper {
padding-right: 2px;
}
.srch-tab-line {
margin-bottom: 17px;
}
.srch-tab-line.no-margin-bottom {
margin-bottom: 0px;
}
.srch-tab-line select {
cursor: pointer;
}
.srch-tab-line .custom-select {
cursor: pointer;
width: 100% !important;
height: 32px;
background: #fff none repeat scroll 0 0;
border: 1px solid #e3e3e3;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.05);
color: #8a8a8a;
background: url(../img/mp-select.png) right top no-repeat;
font-size: 11px;
color: #8a8a8a;
}
.srch-tab-line .custom-select span {
display: block;
width: 90% !important;
padding: 8px 7px 9px 7px;
}
.select-wrapper {
position: relative;
}
.search-large-i {
width: 31.5%;
margin-right: 2.7%;
float: left;
}
.search-large-i:nth-child(3n) {
float: right;
margin-right: 0px;
}
.srch-btn:hover {
background: #ff8f35;
}
.srch-lbl {
cursor: pointer;
float: right;
font-family: 'Raleway';
font-weight: 500;
color: #566065;
margin: 12px 0px 0px 0px;
font-size: 10px;
text-transform: uppercase;
}
.mp-offesr {
font-family: 'Raleway';
padding: 65px 0px 0px 0px;
}
.mp-offesr.no-margin {
padding-top: 0px;
}
.mp-pop {
padding: 182px 0px 0px 0px;
}
.offer-slider {
margin-bottom: 95px;
}
.offer-sliderabt {
margin-top: 60px;
margin-bottom: 95px;
}
.offer-slider-lead {
margin-top: 9px;
font-size: 13px;
color: #455051;
line-height: 20px;
font-family: 'Raleway';
}
.offer-slider header {
text-align: center;
margin-bottom: 32px;
}
.mp-popular {
margin-bottom: 95px;
}
.mp-popular header,
header.page-lbl {
text-align: center;
margin-bottom: 31px;
}
.mp-popular header b,
.page-lbl b,
.offer-slider-lbl {
font-size: 23px;
color: #141d1e;
display: block;
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
margin-bottom: 12px;
padding: 0px 0px 16px 0px;
background: url(../img/pop-hdr.png) center bottom no-repeat;
}
.mp-popular header p,
.page-lbl p {
font-family: Raleway;
line-height: 26px;
font-size: 15px;
color: #455051;
}
.offer-slider-lbl {
font-size: 23px;
color: #141d1e;
font-family: 'Montserrat';
text-transform: uppercase;
}
.offer-slider header p {
font-family: 'Lora';
line-height: 26px;
font-size: 15px;
font-style: italic;
color: #455051;
display: inline-block;
width: 640px;
}
.mp-popular header p,
.page-lbl p {
font-style: italic;
display: inline-block;
width: 640px;
font-family: 'Lora';
}
.offer-slider-i {
/* width:254px;*/
}
.offer-slider-i.catalog-i {
width: 32%;
float: left;
margin: 0px 2% 2% 0px;
font-family: 'Raleway';
}
.offer-slider-i.catalog-i:nth-child(3n) {
margin-right: 0px;
float: right;
}
.offer-slider-i.catalog-i .cat-list-btn {
margin-bottom: 5px;
font-family: 'Montserrat';
font-weight: normal;
font-size: 10px;
border-radius: 3px;
padding-top: 9px;
padding-bottom: 9px;
margin-top: 15px;
background: #fff;
border: 1px solid #e5e5e5;
color: #838383;
}
.offer-slider-i.catalog-i .cat-list-btn:hover {
color: #ff7200;
}
.catalog-i .offer-slider-l {
width: auto;
margin-top: 1px;
}
.catalog-i .offer-slider-devider {
margin-right: 15px;
}
.offer-slider-img img {
width: 100%;
}
.catalog-head {
background: #fff;
padding: 9px 17px 9px 17px;
margin-bottom: 25px;
}
.catalog-head label {
font-family: 'Raleway';
float: left;
margin: 9px 15px 0px 0px;
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
color: #3a4142;
}
.catalog-head .search-select {
float: left;
width: 89px;
margin-top: 1px;
margin-right: 10px;
border: 1px solid #dedcdc;
}
.catalog-head .search-select select {
background-image: url("../img/select-bg2.png");
padding-top: 9px;
padding-bottom: 8px;
font-size: 9px;
color: #8a8a8a;
background-position: 80% center;
background-repeat: no-repeat;
}
.show-thumbs,
.show-table,
.show-list {
margin-left: 5px;
display: block;
width: 29px;
height: 29px;
float: right;
}
.show-thumbs {
background: url(../img/sort-a.png) left top no-repeat;
}
.show-table {
background: url(../img/sort-b.png) left top no-repeat;
}
.show-list {
background: url(../img/sort-c.png) left top no-repeat;
}
.show-thumbs.chosen,
.show-table.chosen,
.show-list.chosen {
background-position: left -29px;
}
.cat-list-item-h {
width: 100%;
float: left;
}
.cat-list-item-l {
width: 241px;
float: left;
margin: 0px;
padding: 0px;
line-height: 0px;
overflow: hidden;
}
.cat-list-item-l img {
width: 100%;
}
.cat-list-item-r {
margin: 0px 0px 0px 241px;
}
.cat-list-item-rb {
width: 100%;
float: left;
overflow: hidden;
}
.cat-list-item-p {
padding: 0px 0px 0px 18px;
}
.cat-list-item {
background: #fff;
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.cat-list-content-a {
width: 100%;
float: left;
}
.cat-list-content-l {
margin: 0px 125px 0px 0px;
}
.cat-list-content-lb {
width: 100%;
float: left;
overflow: hidden;
}
.cat-list-content-lpadding {
padding: 18px 30px 7px 0px;
min-height: 156px;
border-right: 1px solid #ede7e1;
}
.cat-list-content-r {
width: 124px;
float: left;
overflow: hidden;
margin: 0 0 0 -125px;
}
.cat-list-content-p {
padding: 17px 0px 17px 18px;
}
.cat-list-item .offer-slider-link {
font-family: 'Raleway';
color: #252525;
margin-bottom: 8px;
}
.cat-list-item .offer-slider-location {
font-size: 10px;
line-height: 15px;
margin-bottom: 0px;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
}
.cat-list-content-l p {
font-size: 13px;
line-height: 21px;
margin: 13px 0px 14px 0px;
color: #455051;
font-family: 'Raleway';
}
.cat-icon-01 {
display: block;
float: left;
width: 15px;
height: 13px;
background: url(../img/cat-icon-01.png) left top no-repeat;
}
.cat-icon-02 {
display: block;
float: left;
width: 9px;
height: 13px;
background: url(../img/cat-icon-02.png) left top no-repeat;
}
.cat-icon-03 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-03.png) left top no-repeat;
}
.cat-icon-04 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-04.png) left top no-repeat;
}
.cat-icon-05 {
display: block;
float: left;
width: 11px;
height: 13px;
background: url(../img/cat-icon-05.png) left top no-repeat;
}
.cat-icon-06 {
display: block;
float: left;
width: 7px;
height: 13px;
background: url(../img/cat-icon-06.png) left top no-repeat;
}
.cat-icons span.active {
background-position: left -13px;
;
}
.cat-icons span {
margin-right: 13px;
}
.cat-list-review {
font-size: 10px;
margin-bottom: 17px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
}
.cat-list-item .offer-slider-r {
float: none;
margin-bottom: 18px;
font-family: 'Raleway';
}
.cat-list-item .stars {
margin-bottom: 7px;
}
.cat-list-btn {
display: inline-block;
font-family: 'Montserrat';
font-weight: normal;
background: #fff;
padding: 9px 15px 9px 15px;
border-radius: 3px;
border: 1px solid #e5e5e5;
text-decoration: none;
color: #838383;
font-size: 10px;
text-transform: uppercase;
}
.cat-list-btn:hover {
color: #ff7200;
}
.cat-list-item .cat-list-btn {
padding-left: 26px;
padding-right: 26px;
}
.cat-list-content-l .offer-slider-link {
margin-bottom: 8px;
}
.cat-list-item-rb .offer-slider-r b {
font-weight: 500 !important;
margin-bottom: 7px;
}
.cat-list-item-rb .offer-slider-r span {
font-size: 10px;
}
.cat-list-item-rb .cat-list-btn {
background: transparent;
border: 1px solid #e5e5e5;
border-radius: 3px;
font-size: 10px;
padding-bottom: 9px;
padding-top: 9px;
font-family: 'Montserrat';
color: #838383;
font-weight: normal;
}
.cat-list-item-rb .cat-list-btn:hover {
color: #ff7200;
}
.cat-list-item-rb .offer-slider-link a {
font-size: 13px;
}
.offer-slider-txt {
padding: 20px 55px 21px 13px;
background: #fff;
}
.offer-slider-img {
text-decoration: none;
display: block;
margin: 0px;
padding: 0px;
line-height: 0px;
width: 100%;
height: 100%;
position: relative;
}
.offer-slider-overlay {
display: none;
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
background: url(../img/offer-over.png) left top repeat;
}
.offer-slider-btn {
font-family: 'Raleway';
font-weight: 600;
font-size: 10px;
text-transform: uppercase;
color: #fff;
display: inline-block;
border: 2px solid #fff;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
width: 104px;
height: 23px;
padding-top: 6px;
text-align: center;
line-height: 18px;
position: absolute;
margin-left: -52px;
margin-top: -15px;
left: 50%;
top: -200px;
}
.last-order {
height: 353px;
padding: 147px 0px 0px 0px;
margin-bottom: 40px;
}
.last-order-content {
text-align: center;
}
.last-order-a {
font-size: 12px;
font-family: 'Montserrat';
font-weight: normal;
color: #fff;
margin-bottom: 19px;
text-transform: uppercase;
}
.last-order-b {
font-size: 23px;
color: #fff;
margin-bottom: 18px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.last-order-c {
font-size: 14px;
color: #fff;
margin-bottom: 17px;
font-family: 'Lola';
font-weight: normal;
font-style: italic;
}
.last-order-d {
margin-bottom: 22px;
font-family: 'Montserrat';
font-weight: normal;
}
.last-order-btn {
font-family: 'Montserrat';
font-weight: narmal;
border: 2px solid #fff;
display: inline-block;
font-size: 11px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
padding: 11px 26px 11px 26px;
}
.last-order-btn:hover {
background: #fff;
color: #303b3c;
}
.duble-margin {
margin-bottom: 100px;
}
.partners {
text-align: center;
border-bottom: 1px solid #f0e9e4;
padding-bottom: 30px;
margin-bottom: 94px;
}
.partners a {
margin: 0px 28px 0px 28px;
}
.partners a:first-child {
margin-left: 0px;
}
.partners a:last-child {
margin-right: 0px;
}
.testimonials {
background: #fff;
padding: 93px 0px 96px 0px;
}
.testimonials-lbl {
text-align: center;
font-size: 23px;
margin-bottom: 16px;
color: #141d1e;
padding-bottom: 16px;
text-transform: uppercase;
font-family: 'Montserrat';
background: url("../img/pop-hdr.png") center bottom no-repeat;
}
.testimonials-lbl-a {
text-align: center;
font-size: 15px;
margin-bottom: 36px;
color: #455051;
font-style: italic;
font-family: 'Lora';
}
.testimonials-i {
text-align: center;
}
.testimonials-a {
margin-bottom: 17px;
}
.testimonials-b {
margin-bottom: 15px;
font-size: 15px;
color: #455051;
font-family: 'Raleway';
line-height: 26px;
}
.testimonials-c {
margin-bottom: 18px;
}
.testimonials-c li {
display: inline-block;
}
.testimonials-d {
font-family: 'Raleway';
font-size: 11px;
color: #454545;
font-weight: 500;
text-transform: uppercase;
}
.testimonials-holder {
max-width: 1100px;
margin: 0 auto;
position: relative;
}
.testimonials-holder .bx-pager {
display: none;
}
.testimonials-holder .bx-prev,
.testimonials-holder .bx-next {
display: block;
width: 11px;
height: 21px;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -10px;
}
.testimonials-holder .bx-prev {
background: url(../img/test-l.gif) left top no-repeat;
left: 0px;
}
.testimonials-holder .bx-next {
background: url(../img/test-r.gif) left top no-repeat;
right: 0px;
}
.testimonials-holder .bx-prev:hover,
.testimonials-holder .bx-next:hover {
background-position: left -21px;
}
.last-order-d {
font-family: 'Open Sans';
font-size: 24px;
font-weight: 600;
color: #ff7200;
}
.mp-popular-row {
max-width: 1100px;
margin: 0 auto;
}
.mp-popular-row .offer-slider-i {
float: left;
width: 346px;
margin-right: 31px;
}
.mp-popular-row .offer-slider-i:last-child {
margin-right: 0px;
}
.offer-slider-link {
margin-bottom: 10px;
margin-top: 10px;
}
.offer-slider-link a {
font-size: 25px;
color: #4c4c4c;
text-decoration: none;
font-weight: normal;
font-family: "Montserrat";
}
.offer-slider-l {
width: 900px;
float: left;
}
.offer-slider-location {
margin-bottom: 7px;
font-size: 10px;
color: #747d7e;
font-weight: 600;
text-transform: uppercase;
}
.stars ul,
.stars ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.stars ul li {
float: left;
margin-right: 1px;
}
.popular-slider {
margin-bottom: 90px;
}
.offer-slider-r {
float: right;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
}
.offer-slider-r b {
font-family: 'Montserrat';
font-weight: normal;
letter-spacing: -0.03em;
display: block;
font-size: 16px;
margin-bottom: 6px;
color: #ff7200;
line-height: 15px;
}
.offer-slider-devider {
width: 2px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
height: 40px;
background: #ede7e1;
float: right;
}
.offer-slider-r span {
font-family: 'Raleway';
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: #939393;
}
.offer-slider-r span {
float: right;
margin-bottom: 7px;
}
.offer-slider-c {
padding: 0px 45px 0px 45px;
position: relative;
}
.offer-slider-c .bx-pager {
display: none;
}
.offer-slider-c .owl-next,
.offer-slider-c .owl-prev {
display: none !important;
position: absolute;
width: 15px;
height: 29px;
margin-top: -16px;
top: 50%;
overflow: hidden;
text-indent: -9999px;
}
.offer-slider-c .owl-prev {
background: url(../img/offers-l.png) left top no-repeat;
left: -45px;
}
.offer-slider-c .owl-next {
background: url(../img/offers-r.png) left top no-repeat;
right: -45px;
}
.offer-slider-c .owl-next:hover,
.offer-slider-c .owl-prev:hover {
background-position: left -29px;
}
.mp-b {
margin-top: 100px;
padding-bottom: 95px;
background: #ffffff;
padding-top: 75px;
}
.mp-b-left {
width: 357px;
float: left;
}
.mp-b-right {
width: 723px;
float: right;
}
.mp-b-lbl {
font-family: 'Montserrat';
font-weight: normal;
font-size: 18px;
text-transform: uppercase;
color: #141d1e;
margin-bottom: 32px;
}
nav ul,
nav ul li {
margin: 0px;
padding: 0px;
list-style: none;
}
.regions {
margin-bottom: 12px;
}
.regions-holder {
width: 347px;
height: 177px;
position: relative;
}
.regions-holder .asia,
.regions-holder .africa,
.regions-holder .austalia,
.regions-holder .europe,
.regions-holder .north-america,
.regions-holder .south-america {
width: 347px;
height: 177px;
position: absolute;
left: 0px;
top: 0px;
}
.regions-holder .asia {
background: url(../img/asia.png) left top no-repeat;
}
.regions-holder .africa {
background: url(../img/africa.png) left top no-repeat;
}
.regions-holder .austalia {
background: url(../img/australia.png) left top no-repeat;
}
.regions-holder .europe {
background: url(../img/europe.png) left top no-repeat;
}
.regions-holder .north-america {
background: url(../img/north-america.png) left top no-repeat;
}
.regions-holder .south-america {
background: url(../img/south-america.png) left top no-repeat;
}
.regions-holder area {
cursor: pointer;
}
.regions-holder map {
position: absolute;
left: 0px;
top: 0px;
z-index: 9999;
}
.regions-nav ul li {
display: inline-block;
background: url(../img/regions-nav.png) right top no-repeat;
padding: 0px 9px 4px 0px;
margin: 0px 0px 0px 2px;
background-position: right 7px;
}
.regions-nav ul li a.chosen {
color: #ff7200;
}
.regions-nav ul li:first-child {
margin-left: 0px;
}
.regions-nav ul li:nth-child(4n),
.regions-nav ul li:last-child {
background: transparent;
}
.regions-nav ul li:nth-child(4n) {
margin-right: 12px;
}
.regions-nav ul li:nth-child(5n) {
margin-left: 0px;
}
.regions-nav ul li a {
font-family: 'Raleway';
color: #3a4142;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
font-size: 11px;
}
.regions-nav ul li a:hover {
color: #ff7200;
}
.reasons-item-a {
width: 286px;
float: left;
background: url(../img/reasons-01.png) left top no-repeat;
padding: 6px 0px 0px 63px;
margin: 0px 0px 26px 0px;
}
.reasons-item-b {
width: 286px;
float: right;
background: url(../img/reasons-02.png) left top no-repeat;
padding: 6px 0px 0px 63px;
margin: 0px 0px 26px 0px;
}
.reasons-item-c {
width: 286px;
float: left;
background: url(../img/reasons-03.png) left top no-repeat;
padding: 6px 0px 0px 63px;
}
.reasons-item-d {
width: 286px;
float: right;
background: url(../img/reasons-04.png) left top no-repeat;
padding: 6px 0px 0px 63px;
}
.reasons-lbl {
font-size: 14px;
color: #3a4142;
background: url(../img/reasons-lbl.gif) left bottom no-repeat;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 10px;
padding: 0px 0px 14px 0px;
text-transform: uppercase;
}
.reasons-txt {
font-family: 'Raleway';
color: #626262;
line-height: 25px;
}
.advantages-row {
text-align: center;
}
.advantages-i {
display: inline-block;
text-align: center;
margin: 3px 31px 0px 31px;
width: 315px;
}
.advantages-a {
margin-bottom: 19px;
}
.advantages-b {
font-family: 'Montserrat';
text-transform: uppercase;
font-weight: normal;
margin-bottom: 14px;
}
.advantages-c {
font-size: 15px;
font-family: 'Raleway';
line-height: 25px;
color: #626262;
}
.footer-a {
color: #fff;
background: #141d1e;
padding: 56px 0px 31px 0px;
}
.footer-a .section {
width: 281px;
float: left;
display: block;
}
.footer-a .section:last-child {
float: right;
width: 254px;
}
.footer-lbl {
font-size: 14px;
color: #ffffff;
margin-bottom: 12px;
font-family: 'Montserrat';
font-weight: normal;
background: url(../img/foot-lbl.gif) left bottom no-repeat;
padding: 0px 0px 18px 0px;
text-transform: uppercase;
}
.footer-adress {
font-family: 'Raleway';
font-size: 13px;
line-height: 33px;
color: #f7f7f7;
background: url(../img/footer-icon-01.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 9px;
margin: 0px 0px 9px 0px;
}
.footer-phones {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
background: url(../img/footer-icon-02.png) left top no-repeat;
padding: 0px 0px 0px 22px;
margin: 0px 0px 17px 0px;
background-position: left 1px;
}
.footer-phones a[href^=tel] {
color: #fff;
text-decoration: none;
}
.footer-email {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
margin: 0px 0px 17px 0px;
background: url(../img/footer-icon-03.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 2px;
}
.footer-skype {
font-family: 'Raleway';
font-size: 13px;
color: #f7f7f7;
background: url(../img/footer-icon-04.png) left top no-repeat;
padding: 0px 0px 0px 22px;
background-position: left 2px;
}
.footer-tour {
width: 218px;
padding-bottom: 25px;
}
.footer-tours {
margin-top: 19px;
}
.footer-tour-l {
float: left;
margin-top: 3px;
width: 84px;
}
.footer-tour-l img {
width: 100%;
}
.footer-tour-r {
float: right;
width: 118px;
}
.footer-tour-a {
margin-bottom: 8px;
font-size: 12px;
color: #ffffff;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
letter-spacing: -0.03em;
}
.footer-tour-b {
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 9px;
font-size: 9px;
color: #a2a2a2;
text-transform: uppercase;
}
.footer-tour-c {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
text-transform: uppercase;
}
.tweet {
margin-bottom: 17px;
background: url(../img/icon-tweet.png) left top no-repeat;
padding: 0px 0px 0px 25px;
font-size: 13px;
background-position: left 7px;
color: #f7f7f7;
width: 240px;
line-height: 26px;
font-family: 'Raleway';
}
.tweet-date {
font-size: 12px;
font-family: 'Raleway';
color: #b7b7b7;
font-weight: 300;
}
.tweet a {
color: #f7f7f7;
text-decoration: none;
}
.twitter-follow {
margin-top: 24px;
font-size: 10px;
font-weight: 600;
font-family: 'Raleway';
color: #fff;
text-transform: uppercase;
}
.twitter-follow a {
color: #fff;
text-decoration: none;
}
.footer-subscribe {
width: 243px;
height: 27px;
margin: 22px 0px 11px 0px;
padding: 7px 0px 0px 10px;
background: #2c3536;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
}
.footer-subscribe-a {
background: url(../img/icon-subscribe.png) left top no-repeat;
min-height: 11px;
background-position: left 4px;
padding: 0px 0px 0px 21px;
}
.footer-subscribe-a input {
background: transparent;
width: 204px;
border: 0px;
font-family: 'Raleway';
color: #525f60;
font-size: 13px;
}
.footer-subscribe-btn {
display: block;
border: 0px;
cursor: pointer;
width: 85px;
height: 32px;
padding-bottom: 1px;
color: #fff;
font-family: 'Montserrat';
font-weight: normal;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background: #ff7200;
font-size: 11px;
text-transform: uppercase;
}
.footer-subscribe-btn:hover {
background: #f98528;
}
.footer-b {
height: 52px;
background: #000000;
color: #fff;
}
.footer-left {
font-size: 10px;
color: #fff;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
float: left;
margin: 19px 0px 0px 0px;
letter-spacing: -0.03em;
}
.footer-social {
float: right;
margin: 19px 0px 0px 0px;
}
.footer-social a {
float: left;
display: block;
margin: 0px 10px 0px 10px;
width: 14px;
height: 14px;
}
.footer-social a:last-child {
margin-right: 0px;
}
.footer-social a.footer-twitter {
background: url(../img/footer-twitter.png) left top no-repeat;
}
.footer-social a.footer-facebook {
background: url(../img/footer-facebook.png) left top no-repeat;
}
.footer-social a.footer-vimeo {
background: url(../img/footer-vimeo.png) left top no-repeat;
}
.footer-social a.footer-pinterest {
background: url(../img/footer-pinterest.png) left top no-repeat;
}
.footer-social a.footer-instagram {
background: url(../img/footer-instagram.png) left top no-repeat;
}
.footer-social a:hover {
background-position: left -14px;
}
.advantages-row.flat {
text-align: left;
margin-top: 39px;
}
.flat-adv-a {
width: 100%;
float: left;
}
.flat-adv-l {
width: 80px;
margin-top: 3px;
float: left;
}
.flat-adv-r {
margin: 0px 0px 0px 80px;
}
.flat-adv-rb {
width: 100%;
float: left;
}
.flat-adv {
width: 48%;
float: left;
margin-bottom: 29px;
}
.flat-adv:nth-child(2n) {
width: 48%;
float: right;
}
.flat-adv:nth-child(3n),
.flat-adv:nth-child(4n) {
margin-bottom: 0px;
}
.flat-adv.large .flat-adv-l {
width: 127px;
margin-top: 3px;
float: left;
}
.flat-adv.large .flat-adv-r {
margin: 0px 0px 0px 127px;
}
.flat-adv.large {
margin-bottom: 45px;
}
.flat-adv-b {
font-size: 14px;
color: #3a4142;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 14px;
}
.flat-adv-c {
font-size: 14px;
color: #626262;
line-height: 26px;
font-family: 'Raleway';
}
.testimonials-flat {
padding: 150px 0px 0px 0px;
width: 100%;
height: 350px;
margin: 0px 0px 93px 0px;
background: url(../img/testimonials-s.jpg) center top no-repeat;
}
.testimonials-flat.about-ts {
background: url(../img/about-ts.jpg) left top no-repeat;
}
.testimonials-flat .testimonials-b,
.testimonials-flat .testimonials-d {
color: #fff;
}
.testimonials-flat .testimonials-holder .bx-prev {
background: url(../img/ss-l.png) left top no-repeat;
height: 21px;
width: 12px;
}
.testimonials-flat .testimonials-holder .bx-next {
background: url(../img/ss-r.png) left top no-repeat;
height: 21px;
width: 12px;
}
.testimonials-flat .testimonials-holder .bx-prev:hover,
.testimonials-flat .testimonials-holder .bx-next:hover {
background-position: left -21px;
}
.inform-block {
padding: 0px 0px 60px 0px;
}
.flat-adv-btn {
display: inline-block;
margin-top: 17px;
font-size: 11px;
color: #30353a;
text-decoration: none;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
border: 2px solid #e6e6e6;
border-radius: 3px;
padding: 10px 19px 10px 19px;
}
.flat-adv-btn:hover {
color: #ff7200;
}
.pop-destinations {
background: #ffffff;
padding: 92px 20px 61px 20px;
}
.pop-destinations .offer-slider-i,
.offer-slider-c {
font-family: 'Raleway';
font-weight: 500;
}
.pop-destinations .offer-slider-i {
margin-bottom: 13px;
}
.pop-destinations .offer-slider-i:nth-child(3n) {
margin-right: 0px;
}
.pop-destinations .offer-slider-txt {
padding-left: 0px;
padding-right: 0px;
}
.partners-wrapper {
padding: 94px 0px 0px 0px;
}
.partners-wrapper .partners {
margin-top: 32px;
margin-bottom: 66px;
border: 0px;
}
.partners-wrapper.no-margin {
padding-top: 0px;
}
.partners-wrapper.no-margin .partners {
margin-bottom: 33px;
}
.travel_experience {
background: #fff;
text-align: center;
margin-top: 105px;
padding: 92px 0px 92px 0px;
}
.travel_experience.mp-popular {
margin-bottom: 0px;
}
.t-experience-i {
display: inline-block;
margin: 0px 29px 0px 29px;
width: 325px;
text-align: center;
font-family: 'Raleway';
}
.t-experience-i:first-child {
margin-left: 0px;
}
.t-experience-i:last-child {
margin-right: 0px;
}
.t-experience-a {
margin-bottom: 22px;
}
.t-experience-b {
font-size: 14px;
font-family: 'Montserrat';
margin-bottom: 13px;
color: #3a4142;
font-weight: normal;
text-transform: uppercase;
}
.t-experience-c {
font-size: 14px;
color: #626262;
line-height: 24px;
}
.theme-teaser {
width: 100%;
height: 500px;
margin-bottom: 93px;
background: url(../img/theme-teaser.jpg) center top no-repeat;
}
.theme-teaser .wrapper-padding {
border-collapse: collapse;
display: table;
width: 100%;
}
.theme-teaser-l {
width: 40%;
height: 500px;
padding: 0px 20px 0px 0px;
vertical-align: middle;
display: table-cell;
}
.theme-teaser-r {
width: 60%;
height: 500px;
padding: 0px;
line-height: 0px;
text-align: right;
vertical-align: bottom;
display: table-cell;
}
.theme-teaser-a {
color: #fff;
font-size: 24px;
font-weight: normal;
margin-bottom: 7px;
font-family: 'Montserrat';
line-height: 36px;
text-transform: uppercase;
}
.theme-teaser-b {
margin-bottom: 18px;
font-size: 15px;
color: #fff;
line-height: 25px;
font-family: 'Raleway';
}
.theme-teaser-c {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
background: #fff;
text-decoration: none;
border-radius: 2px;
padding: 12px 36px 12px 36px;
color: #1d292e;
}
.theme-teaser-c:hover {
color: #ff7200;
}
.theme-teaser-padding {
padding: 0px 60px 0px 60px;
}
.pagination a {
display: inline-block;
background: #fff;
text-decoration: none;
text-align: center;
float: left;
margin-right: 6px;
width: 34px;
height: 26px;
padding-top: 8px;
font-size: 13px;
font-family: 'Open Sans';
color: #737778;
}
.pagination a:hover,
.pagination a.active {
color: #ff7200;
}
.two-colls {
width: 100%;
float: left;
}
.two-colls-left {
width: 346px;
float: left;
overflow: hidden;
}
.two-colls-right {
/*margin: 0px 0px 0px 346px;*/
}
.two-colls-right-b {
width: 100%;
float: left;
overflow: hidden;
}
.two-colls-right .padding {
padding: 0px 0px 0px 26px;
}
.page-title {
float: left;
font-family: 'Montserrat';
font-size: 15px;
text-transform: uppercase;
color: #141d1e;
font-weight: normal;
}
.page-title span {
color: #788687;
}
.breadcrumbs {
float: right;
text-transform: uppercase;
font-size: 11px;
color: #828282;
font-family: 'Raleway';
font-weight: 600;
}
.breadcrumbs a {
text-decoration: none;
margin: 0px 7px 0px 7px;
color: #828282;
}
.breadcrumbs span {
color: #4a90a4;
margin: 0px 0px 0px 7px;
}
.page-head {
padding-bottom: 30px;
}
.srch-results-lbl {
background: #fff;
margin-bottom: 25px;
padding: 16px 18px 16px 18px;
font-size: 13px;
color: #3a4142;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.srch-results-lbl span {
display: block;
height: 15px;
background: url(../img/result-icon.png) left top no-repeat;
background-position: left 2px;
padding: 0px 0px 0px 28px;
}
.side-block-search input[type='text'] {
font-size: 11px;
}
.side-block-search .search-select {
border: 1px solid #dedcdc;
width: 89px;
}
.side-block-search .search-line-select {
width: 89px;
}
.side-block-search .search-line input[type='text'] {
width: 294px;
}
.side-block-search .search-select.half-width {
border: 1px solid #dedcdc;
width: 145px;
}
.side-block {
background: #fff;
margin-bottom: 10px;
}
.side-block .page-search-p {
padding: 22px 18px 22px 18px;
}
.side-block .page-search-p label {
display: block;
font-size: 11px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 9px;
}
.side-block .search-line-a {
width: 144px;
}
.side-block .search-line-b {
width: 145px;
}
.side-block .search-line-a input {
width: 129px;
}
.side-block .search-line-b input {
width: 129px;
}
.side-padding {
padding: 21px 18px 20px 18px;
}
.side-lbl {
font-size: 13px;
margin-bottom: 16px;
color: #3a4142;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.price-ammounts {
margin: 14px 0px 0px 0px;
}
.side-block .ui-slider-horizontal {
height: 3px!important;
border: 0px!important;
background: #d9e0e2 !important;
border-radius: 100px!important;
}
.side-block .ui-widget-header {
background: #4a90a4!important;
}
.side-block .ui-state-default,
.side-block .ui-widget-content .ui-state-default,
.side-block .ui-widget-header .ui-state-default,
.side-block .ui-widget-header .ui-state-focus {
background: #fff !important;
border-radius: 100px !important;
border: 1px solid #c2c5c8 !important;
cursor: pointer !important;
top: -8px;
width: 17px;
height: 17px;
}
.price-ammounts input[type='text'] {
width: 100px;
font-size: 12px;
color: #666666;
font-family: 'Open Sans';
border: 0px;
background: #fff;
}
#ammount-to {
float: right;
text-align: right;
}
.price-ranger {
margin-top: 24px;
}
.star-rating-l {
margin: 1px 0px 0px 0px;
font-size: 11px;
color: #848484;
font-family: 'Raleway';
font-weight: 600;
float: left;
}
.star-rating-r {
margin-left: 8px;
float: left;
}
.star-rating-r a {
margin-right: 3px;
float: left;
}
.side-block .jq-checkbox {
width: 15px;
margin: 0px 5px 0px 0px;
background: #fff;
box-shadow: none;
border: 1px solid #dedcdc;
border-radius: 2px;
height: 15px;
position: relative;
}
.side-block .jq-checkbox.checked span {
width: 10px;
height: 8px;
left: 2px;
bottom: 4px;
margin: 0px;
box-shadow: none;
background: transparent url(../img/checkbox.png) left top no-repeat;
position: absolute;
}
.side-block .checkbox {
margin-bottom: 18px;
}
.side-block .checkbox label {
font-family: 'Raleway';
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
color: #848484;
}
.side-block .checkbox label.active {
color: #4a90a4;
}
.side-block .checkbox:last-child {
margin-bottom: 5px;
}
.checkbox .jq-checkbox {
width: 15px;
margin: 0px 5px 0px 0px;
background: #fff;
box-shadow: none;
border: 1px solid #dedcdc;
border-radius: 2px;
height: 15px;
position: relative;
}
.checkbox .jq-checkbox.checked span {
width: 10px;
height: 8px;
left: 2px;
bottom: 4px;
margin: 0px;
box-shadow: none;
background: transparent url(../img/checkbox.png) left top no-repeat;
position: absolute;
}
.jq-radio {
width: 13px;
height: 13px;
position: relative;
background: #fff;
box-shadow: none;
border: 1px solid #96a0a1;
}
.jq-radio.checked {
background: #96a0a1;
}
.jq-radio.checked span {
display: block;
width: 7px;
height: 7px;
position: absolute;
left: 3px;
top: 3px;
background: #fff;
border-radius: 100px;
}
.portfolio-photos {
display: none;
}
.fancybox-skin,
.fancybox-opened .fancybox-skin {
background: transparent;
box-shadow: none;
}
.fancybox-title-over-wrap {
background: transparent;
bottom: -50px;
left: -10px;
font-family: 'Montserrat';
font-size: 12px;
text-transform: uppercase;
}
.fancybox-close {
width: 10px;
height: 10px;
background: url(../img/colorbox-close.png) left top no-repeat;
bottom: -20px;
right: 14px;
top: auto;
}
.fancybox-prev span {
display: block;
width: 10px;
height: 16px;
left: -40px;
background: url(../img/colorbox-left.png) left top no-repeat;
visibility: visible;
}
.fancybox-next span {
display: block;
width: 10px;
height: 16px;
right: -40px;
background: url(../img/colorbox-right.png) left top no-repeat;
visibility: visible;
}
.flight-item {
background: #fff;
margin-bottom: 19px;
padding: 18px 18px 13px 18px;
}
.flt-i-a {
width: 100%;
float: left;
}
.flt-i-b {
margin: 0px 117px 0px 0px;
}
.flt-i-bb {
width: 100%;
float: left;
overflow: hidden;
}
.flt-i-bb.flight-return {
padding-top: 18px;
}
.flt-i-c {
width: 117px;
float: left;
overflow: hidden;
margin: 0 0 0 -117px;
}
.flt-l-a {
width: 100%;
float: left;
}
.flt-l-b {
width: 112px;
float: left;
overflow: hidden;
}
.flt-l-c {
margin: 0px 0px 0px 112px;
}
.flt-l-cb {
width: 100%;
float: left;
overflow: hidden;
}
.way-lbl {
margin-bottom: 23px;
margin-top: 5px;
text-transform: uppercase;
font-size: 12px;
color: #8a8a8a;
font-family: 'Raleway';
display: inline-block;
padding-right: 27px;
font-weight: 500;
background: url(../img/depart-icon.png) right top no-repeat;
background-position: right 1px;
}
.flt-i-bb.flight-return .way-lbl {
background: url(../img/return-icon.png) right top no-repeat;
padding-right: 48px;
background-position: right 1px;
}
.flyght-info-head {
font-size: 12px;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
background: #f5f7f7;
padding: 5px 9px 4px 9px;
margin-bottom: 5px;
}
.flight-line {
padding: 2px 0px 14px 0px;
border-bottom: 1px solid #ebebeb;
}
.flight-line:last-child {
border-bottom: 0px;
padding-bottom: 6px;
}
.flight-radio {
display: inline-block;
vertical-align: middle;
margin: -3px 5px 0px 9px;
}
.flight-line-a {
display: inline-block;
vertical-align: middle;
}
.flight-line-a b {
font-size: 10px;
margin-bottom: 3px;
color: #848484;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
display: block;
}
.flight-line-a span {
font-size: 12px;
color: #4a90a4;
font-family: 'Open Sans';
font-weight: bold;
}
.flight-line-d {
display: inline-block;
vertical-align: middle;
width: 4px;
height: 7px;
background: url(../img/flt-devider.png) left top no-repeat;
margin: 0px 11px 0px 13px;
}
.flight-line-b {
float: right;
margin-top: -3px;
line-height: 16px;
}
.flight-line-b b {
cursor: pointer;
display: block;
background: url(../img/details-icon.png) right top no-repeat;
background-position: right 6px;
font-size: 11px;
font-family: 'Open Sans';
font-weight: normal;
text-transform: uppercase;
font-weight: 600;
color: #4d4d4d;
}
.flight-line-b b.open {
cursor: pointer;
display: block;
background: url(../img/details-icon-up.png) right top no-repeat;
background-position: right 6px;
font-size: 11px;
font-family: 'Open Sans';
font-weight: normal;
text-transform: uppercase;
font-weight: 600;
}
.flight-line-b .ui-slider-handle {
outline: none !important;
}
.flight-line-b span {
font-family: 'Raleway';
font-weight: 500;
color: #ff0000;
font-size: 10px;
}
.flt-l-c-padding {
padding-right: 4px;
}
.flt-i-padding {
padding-top: 2px;
padding-left: 15px;
}
.flt-i-price {
font-family: 'Montserrat';
margin-bottom: 4px;
line-height: 23px;
font-weight: normal;
font-size: 20px;
color: #ff7200;
}
.flt-i-price-b {
margin-bottom: 14px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
font-size: 9px;
color: #939393;
}
.flight-details {
display: none;
background: #f7fafa;
padding: 14px 10px 12px 33px;
font-family: 'Raleway';
font-weight: 600;
margin: 12px 0px 0px 0px;
}
.flight-details-l {
float: left;
width: 211px;
}
.flight-details-r {
float: right;
width: 198px;
}
.flight-details-a {
margin-bottom: 3px;
font-size: 11px;
color: #4a90a4;
}
.flight-details-b {
margin-bottom: 6px;
font-size: 12px;
color: #4d4d4d;
}
.flight-details-c {
font-size: 11px;
color: #a0a0a0;
}
.flight-details-d {
text-transform: uppercase;
margin: 6px 0px 0px 0px;
font-size: 11px;
color: #848484;
line-height: 22px;
}
.side-time-holder {
padding-top: 4px;
}
.side-time {
margin-bottom: 22px;
}
.side-time .ui-widget-header {
background: #ff7200;
}
.side-lbl-a {
font-size: 11px;
margin-bottom: 15px;
text-transform: uppercase;
font-family: 'Open Sans';
font-weight: bold;
color: #4a90a4;
}
.time-ammounts {
text-transform: uppercase;
margin-bottom: 18px;
font-size: 10px;
text-transform: uppercase;
color: #666666;
font-family: 'Open Sans';
}
.alt-flight {
background: #fff;
margin-bottom: 20px;
}
.alt-flight-a {
width: 100%;
float: left;
}
.alt-flight-l {
margin: 0px 135px 0px 0px;
}
.alt-flight-lb {
width: 100%;
float: left;
overflow: hidden;
}
.alt-flight-lr {
width: 135px;
float: left;
overflow: hidden;
margin: 0 0 0 -135px;
}
.alt-flight-lr .padding {
padding: 29px 0px 10px 18px;
}
.alt-flight .flt-i-price {
font-weight: 500;
}
.alt-flight .alt-flight-lr .cat-list-btn {
text-align: center;
width: 97px;
padding-left: 0px;
padding-right: 0px;
}
#preloader {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #FFF;
z-index: 11000;
}
#spinner {
position: relative;
height: 35px;
width: 35px;
top: 50%;
margin-bottom: -12px;
margin: 0 auto;
border: 3px solid rgba(226, 226, 226, 0.75);
border-radius: 100%;
-webkit-animation: rotation .6s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
}
#spinner:before {
content: "";
display: block;
position: absolute;
left: -3px;
top: -3px;
height: 100%;
width: 100%;
border-top: 3px solid #ff7200;
border-left: 3px solid transparent;
border-bottom: 3px solid transparent;
border-right: 3px solid transparent;
border-radius: 100%;
}
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(359deg);
}
}
@-moz-keyframes rotation {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(359deg);
}
}
@-o-keyframes rotation {
from {
-o-transform: rotate(0deg);
}
to {
-o-transform: rotate(359deg);
}
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.datepicker-popup {
min-width: 534px !important;
}
.alt-flight-lr .cat-list-btn {
padding-left: 20px;
padding-right: 20px;
}
.alt-center-l {
width: 161px;
float: left;
overflow: hidden;
}
.alt-center {
width: 100%;
float: left;
}
.alt-center-c {
margin: 0px 0px 0px 161px;
}
.alt-center-cb {
width: 100%;
float: left;
overflow: hidden;
}
.alt-center-lp {
padding: 18px 0px 18px 18px;
}
.alt-logo {
display: table;
}
.alt-logo a {
display: table-cell;
width: 161px;
height: 112px;
background: #f7f9fa;
text-align: center;
vertical-align: middle;
}
.alt-center-cp {
padding: 27px 0px 30px 18px;
border-right: 1px solid #ede7e1;
}
.alt-lbl {
font-family: 'Montserrat';
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
margin-bottom: 5px;
color: #4c4c4c;
}
.alt-info {
font-family: 'Raleway';
font-weight: 500;
color: #747d7e;
font-size: 10px;
text-transform: uppercase;
}
.alt-info b {
font-family: 'Open Sans';
font-weight: bold;
color: #4a90a4;
margin-right: 6px;
}
.alt-devider {
width: 100%;
height: 1px;
border-bottom: 1px solid #ede7e1;
margin: 11px 0px 13px 0px;
}
.alt-data-i {
line-height: 12px;
float: left;
}
.alt-data-i b {
display: block;
font-family: 'Raleway';
font-weight: 600px;
margin-bottom: 4px;
text-transform: uppercase;
font-size: 10px;
color: #848484;
}
.alt-data-i span {
font-family: 'Open Sans';
font-weight: bold;
font-size: 12px;
color: #4a90a4;
}
.alt-departure {
background: url(../img/alt-depart.png) left center no-repeat;
margin-right: 26px;
padding: 0px 0px 0px 23px;
}
.alt-arrival {
background: url(../img/alt-return.png) left center no-repeat;
margin-right: 27px;
padding: 0px 0px 0px 23px;
}
.alt-time {
background: url(../img/alt-time.png) left center no-repeat;
margin-right: 20px;
padding: 0px 0px 0px 23px;
}
.alt-center-c .flight-line-b {
line-height: 15px;
margin-top: -1px;
margin-right: 32px;
}
.alt-details {
display: none;
padding: 23px 21px 25px 21px;
border-top: 1px solid #e8e8e8;
}
.alt-details-i {
font-family: 'Raleway';
float: left;
margin-right: 70px;
font-weight: 600;
}
.alt-details-i:nth-child(2n) {
margin-right: 56px;
}
.alt-details-i b {
display: block;
font-size: 12px;
margin-bottom: 3px;
color: #4d4d4d;
}
.alt-details-i span {
color: #a0a0a0;
font-size: 11px;
}
.alt-fligt-table {
width: 230px;
float: left;
background: #ffffff;
margin-bottom: 19px;
margin-right: 19px;
}
.alt-fligt-table:nth-child(3n) {
float: right;
margin-right: 0px;
}
.alt-fligt-table-a {
padding: 10px 10px 17px 10px;
}
.alt-fligt-table-img {
display: table;
width: 100%;
border-collapse: collapse;
}
.alt-fligt-table-img a {
display: table-cell;
height: 124px;
width: 100%;
background: #f7f9fa;
text-align: center;
vertical-align: middle;
}
.alt-fligt-table-content {
padding: 16px 8px 0px 8px;
}
.alt-fligt-table-info {
border-top: 1px solid #ede7e1;
border-bottom: 1px solid #ede7e1;
padding: 13px 0px 13px 0px;
margin-bottom: 16px;
}
.alt-fligt-table-info .alt-departure {
margin-right: 22px;
float: left;
}
.alt-fligt-table-info .alt-arrival {
margin: 0px;
}
.alt-fligt-table .alt-info {
margin-bottom: 13px;
}
.alt-fligt-table-foot-l {
float: left;
}
.alt-fligt-table-foot-r {
float: right;
}
.alt-fligt-table .flt-i-price {
margin-bottom: 3px;
margin-top: -4px;
font-size: 18px;
}
.alt-fligt-table .flt-i-price-b {
font-size: 9px;
margin-bottom: 0px;
color: #939393;
}
.alt-fligt-table .cat-list-btn {
padding-left: 20px;
padding-right: 20px;
}
.cat-list-item .offer-slider-r span {
float: none;
}
.offer-slider-i .offer-slider-r b {
margin-bottom: 1px;
}
.preloader {
background: url(../img/89.gif) center center no-repeat #ffffff;
}
.tour-item .cat-list-item-p {
padding: 0px;
}
.tour-item .cat-list-content-lpadding {
padding: 0px;
}
.tour-item-a {
padding: 20px 0px 20px 17px;
}
.tour-item-b {
padding: 17px 17px 20px 17px;
}
.tour-item-lbl {
margin-bottom: 6px;
}
.tour-item-lbl a {
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
color: #4c4c4c;
font-weight: normal;
font-family: 'Montserrat';
}
.tour-item-date {
font-size: 10px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
}
.tour-item-devider {
width: 100%;
height: 1px;
background: #ede7e1;
}
.tour-item-b p {
margin: 0px 0px 10px 0px;
}
.tour-item-plus {
margin: 0px 3px 0px 2px;
display: inline-block;
}
.tour-item-icons {
float: left;
}
.tour-icon-txt {
float: left;
font-size: 10px;
margin: 4px 0px 0px 9px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.tour-duration {
float: left;
font-size: 10px;
margin: 4px 0px 0px 33px;
color: #747d7e;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
}
.tour-item .offer-slider-r span {
font-weight: 500;
color: #747d7e;
}
.tour-item .cat-list-item-rb .offer-slider-r b {
margin-bottom: 6px;
}
.tour-item .cat-list-btn:hover {
background: #4a90a4;
}
.tour-i-holder {
float: left;
}
.tour-grid .offer-slider-link a {
font-weight: normal;
font-family: 'Montserrat';
letter-spacing: -0.03em;
font-size: 12px;
color: #4c4c4c;
}
.tour-grid .offer-slider-txt {
padding: 17px 15px 19px 17px;
}
.tour-grid .offer-slider-link {
margin-bottom: 11px;
}
.tour-grid .offer-slider-r b {
font-weight: 500;
}
.tour-grid .offer-slider-r span {
float: none;
font-weight: 500;
}
.tour-grid .offer-slider-location {
margin-bottom: 3px;
}
.tour-grid .cat-list-btn {
width: 86px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
.sp-page-a {
width: 100%;
float: left;
}
.sp-page-l {
margin: 0px 348px 0px 0px;
}
.sp-page-com {
margin: auto;
}
.sp-page-lb {
width: 100%;
float: left;
overflow: hidden;
}
.sp-page-r {
width: 348px;
float: left;
overflow: hidden;
margin: 0 0 0 -348px;
}
.sp-page-p {
padding-right: 29px;
}
.h-detail-r {
background: #fff;
padding: 20px 20px 10px 20px;
margin-bottom: 7px;
}
.h-detail-lbl {
margin: 0px 0px 17px 0px;
font-size: 16px;
color: #4c4c4c;
}
.h-help {
background: #fff;
padding: 21px 20px 21px 20px;
margin-bottom: 28px;
}
.h-help-lbl {
font-family: 'Montserrat';
margin-bottom: 8px;
color: #4c4c4c;
font-weight: normal;
font-size: 16px;
}
.h-help-lbl-a {
font-family: 'Raleway';
margin-bottom: 15px;
font-weight: 500;
font-size: 11px;
text-transform: uppercase;
color: #747d7e;
}
.h-help-phone {
font-family: 'Open Sans';
font-size: 20px;
color: #4a90a4;
background: url(../img/h-phone.png) left top no-repeat;
padding: 0px 0px 0px 23px;
background-position: left 5px;
}
.h-help-email {
font-family: 'Raleway';
margin: 6px 0px 0px 23px;
font-size: 13px;
color: #888888;
}
.h-liked {
background: #fff;
margin-bottom: 28px;
padding: 21px 20px 21px 20px;
}
.h-liked-lbl {
font-family: 'Montserrat';
font-weight: normal;
margin-bottom: 16px;
font-size: 16px;
color: #4c4c4c;
}
.h-liked-rating {
margin-bottom: 8px;
}
.h-liked-item {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px solid #ebebeb;
}
.h-liked-item:last-child {
border-bottom: 0px;
padding: 0px;
margin: 0px;
}
.h-liked-item-i {
width: 100%;
float: left;
}
.h-liked-item-l {
width: 81px;
float: left;
overflow: hidden;
margin-top: 4px;
}
.h-liked-item-c {
margin: 0px 0px 0px 81px;
}
.h-liked-item-cb {
width: 100%;
float: left;
overflow: hidden;
}
.h-liked-item-p {
padding: 0px 20px 0px 17px;
}
.h-liked-title {
margin-bottom: 5px;
}
.h-liked-title a {
font-size: 12px;
text-decoration: none;
color: #4c4c4c;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: normal;
}
.h-liked-price {
font-family: 'Montserrat';
font-weight: normal;
font-size: 17px;
color: #ff7200;
}
.h-liked-comment {
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
margin-left: 5px;
font-size: 9px;
color: #939393;
}
.h-detail-lbl-a {
font-family: 'Montserrat';
margin-bottom: 7px;
font-size: 18px;
color: #4c4c4c;
font-weight: normal;
}
.h-detail-lbl-b {
font-family: 'Raleway';
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
font-weight: 500;
}
.h-detail-stars {
padding: 17px 0px 18px 0px;
font-weight: 500;
font-family: 'Raleway';
border-bottom: 1px solid #ebebeb;
border-top: 1px solid #ebebeb;
}
.h-stars-list,
.h-stars-list li {
margin: 0px;
padding: 0px;
list-style: none;
}
.h-stars-list li {
float: left;
margin-right: 1px;
}
.h-stars-list {
float: left;
margin-right: 8px;
}
.h-stars-lbl {
float: left;
margin: 2px 0px 0px 0px;
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
}
.h-add-review {
text-decoration: none;
margin: 2px 0px 0px 0px;
float: right;
background: url(../img/add.png) left top no-repeat;
padding: 0px 0px 0px 17px;
background-position: left 0px;
text-transform: uppercase;
font-size: 11px;
color: #747d7e;
}
.h-details-text {
padding: 16px 0px 17px 0px;
margin-bottom: 22px;
border-bottom: 1px solid #ebebeb;
}
.h-details-text p {
font-size: 13px;
color: #626262;
font-family: 'Raleway';
line-height: 21px;
margin-bottom: 20px;
}
.h-details-text p:last-child {
margin-bottom: 0px;
}
.wishlist-btn {
display: block;
height: 41px;
margin-bottom: 15px;
border: 1px solid #e5e5e5;
border-radius: 3px;
}
.wishlist-btn:hover .wishlist-btn-r {
color: #4a90a4;
}
.wishlist-btn:hover .wishlist-btn-l i {
background-position: left -10px;
}
.wishlist-btn:hover {
-webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
-moz-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.07);
}
.book-btn:hover {
background: #ff8521;
}
.reasons-rating-txt {
font-family: 'Raleway';
font-size: 14px;
color: #7e898b;
line-height: 26px;
margin-bottom: 12px;
}
.reasons-rating {
overflow: hidden;
position: relative;
padding: 20px 20px 20px 20px;
background: #fff;
margin-bottom: 28px;
}
.reasons-rating .bx-pager {
position: absolute;
z-index: 999;
bottom: 30px;
right: 20px;
}
.reasons-rating .bx-pager-item {
margin-bottom: 4px;
}
.reasons-rating .bx-pager-item a {
display: block;
border-radius: 1000px;
border: 1px solid #818c8e;
overflow: hidden;
text-indent: -999px;
width: 8px;
height: 8px;
}
.reasons-rating .bx-pager-item a.active {
background: #ff7200;
border-color: #ff7200;
}
.reasons-rating .bx-controls-direction {
display: none;
}
.reasons-rating-user-l {
position: relative;
float: left;
width: 52px;
}
.reasons-rating-user-l span {
display: block;
width: 20px;
height: 17px;
padding-top: 3px;
text-align: center;
background: #4a90a4;
position: absolute;
right: 0px;
bottom: 0px;
border-radius: 100px;
font-size: 9px;
color: #fff;
font-family: 'Open Sans';
font-weight: bold;
}
.reasons-rating-user-r {
float: left;
margin: 5px 0px 0px 14px;
font-family: 'Raleway';
}
.reasons-rating-user-r b {
display: block;
font-weight: 600;
font-size: 13px;
color: #4c4c4c;
}
.reasons-rating-user-r span {
font-size: 11px;
color: #555555;
}
.h-tabs-right {
float: right;
padding: 18px 0px 0px 0px;
}
.h-tabs-right i {
float: left;
display: block;
width: 15px;
height: 15px;
background: url(../img/more-icon.png) left top no-repeat;
}
.h-tabs-right span {
float: left;
font-family: 'Raleway';
font-weight: 700;
margin: 1px 0px 0px 8px;
font-size: 10px;
color: #787878;
text-transform: uppercase;
}
.h-tabs-right a:hover i {
background-position: left -15px;
}
.h-tabs-right a:hover span {
color: #4a90a4;
}
.h-reasons {
background: #fff;
padding: 21px 20px 9px 20px;
}
.h-reasons-row {
margin-top: 20px;
}
.reasons-i {
border-bottom: 1px solid #ebebeb;
margin-bottom: 13px;
}
.reasons-i:last-child {
margin-bottom: 0px;
border-bottom: 0px;
padding-bottom: none;
}
.reasons-l {
width: 41px;
margin-top: 1px;
float: left;
overflow: hidden;
}
.reasons-h {
width: 100%;
float: left;
}
.reasons-r {
margin: 0px 0px 0px 41px;
font-family: 'Raleway';
}
.reasons-rb {
width: 100%;
float: left;
overflow: hidden;
}
.reasons-i-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 7px;
text-transform: uppercase;
font-size: 12px;
color: #4c4c4c;
}
.reasons-r p {
font-size: 12px;
color: #626262;
line-height: 21px;
}
.reasons-p {
padding: 0px 0px 0px 11px;
}
.h-tabs {
background: #fff;
padding: 0px 18px 0px 14px;
margin-bottom: 7px;
height: 47px;
}
.h-tabs-left {
float: left;
padding: 12px 0px 0px 0px;
}
.h-tab-item-01 i {
display: block;
background: url(../img/gall-icon.png) left top no-repeat;
float: left;
width: 17px;
height: 16px;
}
.h-tab-item-02 i {
display: block;
background: url(../img/map-icon.png) left top no-repeat;
float: left;
width: 13px;
height: 16px;
}
.h-tab-item-03 i {
display: block;
background: url(../img/calc-icon.png) left top no-repeat;
float: left;
width: 17px;
height: 16px;
}
.h-tab-i span {
display: none;
float: left;
margin: 3px 0px 0px 7px;
text-transform: uppercase;
color: #4a90a4;
font-size: 10px;
font-weight: bold;
font-family: 'Raleway';
}
.h-tab-i.active span {
display: block;
}
.h-tab-i.active i {
background-position: left -16px;
}
.h-tab-i {
height: 22px;
float: left;
margin-right: 12px;
border-right: 1px solid #e8e8e8;
padding: 3px 12px 0px 0px;
}
.mm-tabs-wrapper {
margin-bottom: 37px;
}
.tab-item {
display: none;
position: relative;
}
.tab-item:nth-child(1) {
display: block;
}
.wishlist-btn-l {
float: left;
width: 39px;
height: 41px;
display: block;
float: left;
border-right: 1px solid #e5e5e5;
}
.wishlist-btn-r {
float: right;
width: 266px;
height: 27px;
padding-top: 14px;
font-size: 12px;
text-transform: uppercase;
font-family: 'Raleway';
color: #6a7880;
font-weight: 600;
text-align: center;
display: block;
}
.wishlist-btn-l i {
display: block;
background: url(../img/whishlist.png) left top no-repeat;
float: left;
margin: 16px 0px 0px 15px;
width: 10px;
height: 10px;
}
.book-btn {
display: block;
background: #ff7200;
height: 41px;
margin-bottom: 15px;
border: 1px solid #ff7200;
border-radius: 3px;
}
.book-btn-l {
float: left;
width: 39px;
height: 41px;
display: block;
float: left;
border-right: 1px solid #ed6b00;
}
.book-btn-r {
float: right;
width: 266px;
height: 27px;
padding-top: 14px;
font-size: 12px;
text-transform: uppercase;
font-family: 'Raleway';
color: #ffffff;
font-weight: 600;
text-align: center;
display: block;
}
.book-btn-l i {
display: block;
background: url(../img/book-icon.png) left top no-repeat;
float: left;
margin: 17px 0px 0px 14px;
width: 12px;
height: 8px;
}
.gallery-i a {
display: block;
position: relative;
}
.gallery-i span {
display: block;
width: 102px;
height: 69px;
position: absolute;
left: 0px;
top: 0px;
z-index: 999;
border: 3px solid transparent;
}
.gallery-i.active span {
border-color: #ff9e4f;
}
.gallery-i:hover img {
opacity: 0.8;
}
.tab-gallery-big {
margin-bottom: 7px;
}
.tab-gallery-preview {
position: relative;
background: #fff;
padding: 7px 10px 3px 20px;
}
.tab-gallery-preview .bx-pager {
display: none;
}
.tab-gallery-preview .bx-prev,
.tab-gallery-preview .bx-next {
display: block;
width: 20px;
height: 75px;
overflow: hidden;
text-indent: -999px;
position: absolute;
top: 7px;
}
.tab-gallery-preview .bx-prev {
left: 0px;
background: url(../img/gall-prev.png) left top no-repeat;
}
.tab-gallery-preview .bx-next {
right: 0px;
background: url(../img/gall-next.png) left top no-repeat;
}
.tab-gallery-preview .bx-prev:hover,
.tab-gallery-preview .bx-next:hover {
background-position: left -75px;
}
.tabs-lamp {
background: url(../img/icon-lamp.png) left top no-repeat;
float: right;
width: 40px;
height: 42px;
display: block;
}
.content-tabs-head ul li {
float: left;
margin-right: 3px;
}
.content-tabs-head.last-item ul li:last-child {
float: right;
margin-right: 0px;
}
.content-tabs-head.last-item ul li:last-child a {
margin: 0px;
padding: 0px;
background: #ede9e6 url(../img/icon-lamp.png) left top no-repeat;
float: right;
width: 40px;
height: 42px;
display: block;
}
.content-tabs-head ul li a {
display: block;
height: 27px;
padding: 15px 20px 0px 20px;
border-radius: 3px 3px 0px 0px;
font-family: 'Raleway';
font-weight: bold;
text-decoration: none;
color: #73716f;
font-size: 11px;
text-transform: uppercase;
background: #ede9e6;
}
.content-tabs-head ul li a.active {
background: #fff;
color: #ff7200;
}
.content-tabs-head.last-item ul li:last-child a.active {
background: #fff url(../img/icon-lamp.png) left top no-repeat;
background-position: left -42px;
}
.content-tabs-body {
background: #fff;
padding: 37px 20px 39px 20px;
}
.content-tabs-i {
font-family: 'Raleway';
display: none;
}
.content-tabs-i:nth-child(1) {
display: block;
}
.content-tabs-i h2 {
font-family: 'Montserrat';
font-weight: normal;
font-size: 16px;
color: #4c4c4c;
margin-bottom: 19px;
}
.content-tabs-i p {
font-size: 14px;
color: #626262;
line-height: 26px;
}
.content-tabs-i p.small {
font-size: 13px;
line-height: 21px;
}
.tab-reasons {
padding-top: 14px;
}
.tab-reasons h2 {
margin-bottom: 26px;
}
.tab-reasons-h {
background: #fcfbfa;
padding: 27px 20px 5px 26px;
margin-bottom: 36px;
}
.tab-reasons-i {
width: 41%;
margin-bottom: 6px;
float: left;
padding-left: 43px;
}
.tab-reasons-i:nth-child(2n) {
float: right;
}
.tab-reasons-i b {
font-family: 'Montserrat';
display: block;
margin-bottom: 9px;
font-weight: normal;
text-transform: uppercase;
font-size: 12px;
color: #3a4142;
}
.tab-reasons-i p {
font-size: 12px;
line-height: 22px;
}
.tab-reasons-i.reasons-01 {
background: url(../img/tabs-i-01.png) left top no-repeat;
}
.tab-reasons-i.reasons-02 {
background: url(../img/tabs-i-02.png) left top no-repeat;
}
.tab-reasons-i.reasons-03 {
background: url(../img/tabs-i-03.png) left top no-repeat;
}
.tab-reasons-i.reasons-04 {
background: url(../img/tabs-i-04.png) left top no-repeat;
}
.facilities table {
width: 100%;
border-collapse: collapse;
}
.facilities table {
width: 100%;
}
.facilities table td {
font-family: 'Raleway';
font-size: 13px;
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
padding: 15px 0px 14px 0px;
color: #626262;
}
.facilities table td.facilities-a {
width: 160px;
color: #4a90a4;
}
.facility-label {
background: url(../img/free-icon.png) left top no-repeat;
padding: 0px 0px 0px 14px;
background-position: left 4px;
}
.rates-line {
width: 44%;
float: left;
}
.rates-line-right {
width: 44%;
float: left;
margin-left: 24px;
}
.rates-search {
padding-top: 7px;
}
.rates-search label {
display: block;
margin-bottom: 8px;
font-size: 11px;
font-family: 'Raleway';
font-weight: 600;
text-transform: uppercase;
color: #4c4c4c;
}
.rates-search .search-line-a.middle input[type="text"] {
width: 120px;
}
.rates-search .search-line-a {
width: 152px;
margin-right: 9px;
}
.rates-search .search-line-select.middle .search-select {
width: 84px;
}
.rates-search .search-line-select.middle {
width: 87px;
}
.rates-search .search-line-select.middle.last {
width: 86px;
}
.rates-search .search-line-a input[type="text"],
.rates-search .search-line-b input[type="text"] {
padding-top: 9px;
padding-bottom: 8px;
}
.rates-srch {
display: block;
float: right;
margin: 21px 0px 0px 0px;
width: 34px;
height: 34px;
background: #ff7200 url(../img/rates-srch.png) left top no-repeat;
border-radius: 2px;
border: 0px;
cursor: pointer;
}
.rates-srch:hover {
background: #ff8f35 url(../img/rates-srch.png) left top no-repeat;
}
.rates-devider {
height: 1px;
background: #ebebeb;
margin: 12px 0px 35px 0px;
}
.available-row .cat-list-item {
border-bottom: 1px solid #ebebeb;
padding-bottom: 4px;
margin-bottom: 19px;
}
.available-row .cat-list-content-p {
padding-left: 40px;
}
.available-row .cat-list-item-l {
width: 167px;
margin-top: 4px;
}
.available-row .cat-list-item-r {
margin-left: 167px;
}
.available-row .offer-slider-link a {
font-size: 600;
}
.available-row .cat-list-content-lpadding {
padding-top: 0px;
min-height: 0px;
padding-bottom: 15px;
border: none;
}
.available-row .cat-list-content-l p {
font-size: 13px !important;
margin-top: 10px;
margin-bottom: 20px;
line-height: 21px;
}
.available-row .cat-list-content-l .offer-slider-link {
margin-bottom: 12px;
}
.available-row .cat-list-item-p {
padding-left: 19px;
}
.available-row .cat-list-content-p {
padding-top: 0px;
}
.available-btn {
width: 82px;
height: 21px;
padding-top: 10px;
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
}
.available-btn:hover {
color: #ff7200;
}
.available-price {
font-family: 'Open Sans';
margin-top: -1px;
font-weight: 600;
font-size: 20px;
color: #ff7200;
margin-bottom: 4px;
}
.available-price-a {
font-weight: 500;
font-size: 10px;
margin-bottom: 15px;
color: #747d7e;
text-transform: uppercase;
}
.available-price-c {
font-size: 13px;
color: #455051;
margin-bottom: 21px;
}
.availabe-more {
width: 100%;
height: 24px;
margin-top: 31px;
padding-top: 11px;
font-size: 11px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.availabe-more:hover {
color: #ff7200;
}
.preferences-list,
.preferences-list li {
margin: 0px;
padding: 0px;
list-style: none;
}
.preferences-list {
margin-top: 22px;
}
.preferences-list li {
display: inline-block;
float: left;
width: 175px;
font-size: 12px;
color: #626262;
margin: 0px 20px 14px 0px;
min-height: 24px;
padding: 6px 0px 0px 39px;
}
.preferences-list li:nth-child(3n) {
margin-right: 0px;
}
.preferences-list li.internet {
background: url(../img/pref-01.png) left top no-repeat;
}
.preferences-list li.conf-room {
background: url(../img/pref-02.png) left top no-repeat;
}
.preferences-list li.play-place {
background: url(../img/pref-03.png) left top no-repeat;
}
.preferences-list li.restourant {
background: url(../img/pref-04.png) left top no-repeat;
}
.preferences-list li.bar {
background: url(../img/pref-05.png) left top no-repeat;
}
.preferences-list li.doorman {
background: url(../img/pref-06.png) left top no-repeat;
}
.preferences-list li.kitchen {
background: url(../img/pref-07.png) left top no-repeat;
}
.preferences-list li.spa {
background: url(../img/pref-08.png) left top no-repeat;
}
.preferences-list li.bike {
background: url(../img/pref-09.png) left top no-repeat;
}
.preferences-list li.entertaiment {
background: url(../img/pref-10.png) left top no-repeat;
}
.preferences-list li.hot-tub {
background: url(../img/pref-11.png) left top no-repeat;
}
.preferences-list li.pool {
background: url(../img/pref-12.png) left top no-repeat;
}
.preferences-list li.parking {
background: url(../img/pref-13.png) left top no-repeat;
}
.preferences-list li.gym {
background: url(../img/pref-14.png) left top no-repeat;
}
.preferences-list li.tv {
background: url(../img/pref-15.png) left top no-repeat;
}
.preferences-list li.pets {
background: url(../img/pref-16.png) left top no-repeat;
}
.preferences-list li.handicap {
background: url(../img/pref-17.png) left top no-repeat;
}
.preferences-list li.secure {
background: url(../img/pref-18.png) left top no-repeat;
}
.preferences-devider {
width: 100%;
height: 1px;
border-bottom: 1px solid #ebebeb;
margin: 12px 0px 36px 0px;
}
.preferences-list-alt,
preferences-list-alt li {
margin: 0px;
padding: 0px;
list-style: none;
}
.preferences-list-alt {
margin-top: 24px;
}
.preferences-list-alt li {
display: inline-block;
float: left;
width: 175px;
font-size: 12px;
color: #626262;
margin: 0px 20px 11px 0px;
min-height: 24px;
padding: 5px 0px 0px 39px;
}
.preferences-list-alt li:nth-child(3n) {
margin-right: 0px;
}
.preferences-list-alt li.internet {
background: url(../img/pref-alt-01.png) left top no-repeat;
}
.preferences-list-alt li.parking {
background: url(../img/pref-alt-02.png) left top no-repeat;
}
.preferences-list-alt li.gym {
background: url(../img/pref-alt-03.png) left top no-repeat;
}
.preferences-list-alt li.restourant {
background: url(../img/pref-alt-04.png) left top no-repeat;
}
.preferences-list-alt li.pets {
background: url(../img/pref-alt-05.png) left top no-repeat;
}
.preferences-list-alt li.pool {
background: url(../img/pref-alt-06.png) left top no-repeat;
}
.preferences-list-alt li.kitchen {
background: url(../img/pref-alt-07.png) left top no-repeat;
}
.preferences-list-alt li.conf-room {
background: url(../img/pref-alt-08.png) left top no-repeat;
}
.preferences-list-alt li.bike {
background: url(../img/pref-alt-09.png) left top no-repeat;
}
.preferences-list-alt li.entertaiment {
background: url(../img/pref-alt-10.png) left top no-repeat;
}
.preferences-list-alt li.bar {
background: url(../img/pref-alt-11.png) left top no-repeat;
}
.preferences-list-alt li.secure {
background: url(../img/pref-alt-12.png) left top no-repeat;
}
.reviews-c {
width: 100%;
float: left;
}
.reviews-l {
width: 233px;
float: left;
overflow: hidden;
}
.reviews-r {
margin: 0px 0px 0px 233px;
}
.reviews-rb {
width: 100%;
float: left;
overflow: hidden;
}
.reviews-total {
font-family: 'Open Sans';
margin-top: -15px;
margin-bottom: 0px;
font-weight: 300;
font-size: 50px;
color: #4c4c4c;
}
.reviews-total-stars {
display: block;
}
.reviews-total-stars li {
float: left;
margin-right: 3px;
}
.reviews-percents {
margin-bottom: 15px;
}
.reviews-percents-i {
height: 4px;
width: 100%;
background: #ede9e6;
border-radius: 100px;
}
.reviews-percents-i span {
display: block;
height: 4px;
width: 70%;
background: #82bec5;
border-radius: 100px;
}
.reviews-percents label {
font-size: 10px;
display: block;
font-family: 'Raleway';
font-weight: 500;
text-transform: uppercase;
margin-bottom: 9px;
color: #8c8c8c;
}
.reviews-devider {
height: 1px;
background: #ebebeb;
width: 100%;
margin: 16px 0px 36px 0px;
}
.hotel-reviews-devider {
height: 1px;
background: #ebebeb;
width: 100%;
margin: 22px 0px 36px 0px;
}
.hotel-reviews h2 {
margin-bottom: 26px;
}
.hotel-reviews-i {
width: 181px;
float: left;
margin-right: 50px;
margin-bottom: 21px;
}
.hotel-reviews-i:nth-child(3n) {
margin-right: 0px;
}
.hotel-reviews-left {
float: left;
font-size: 13px;
color: #4c4c4c;
}
.hotel-reviews-right {
float: right;
}
.hotel-reviews-right li {
float: left;
margin-left: 1px;
}
.guest-reviews h2 {
margin-bottom: 23px;
}
.guest-reviews-i {
padding-bottom: 14px;
margin-bottom: 14px;
border-bottom: 1px solid #ebebeb;
}
.guest-reviews-a {
width: 100%;
float: left;
}
.guest-reviews-l {
width: 89px;
float: left;
overflow: hidden;
}
.guest-reviews-r {
margin: 0px 0px 0px 89px;
}
.guest-reviews-rb {
width: 100%;
float: left;
overflow: hidden;
}
.guest-reviews-img {
position: relative;
margin-top: 3px;
width: 70px;
height: 70px;
}
.guest-reviews-img span {
display: block;
width: 26px;
height: 22px;
padding-top: 4px;
border-radius: 1000px;
text-align: center;
position: absolute;
right: 0px;
bottom: 0px;
background: #4a90a4;
color: #fff;
font-size: 12px;
font-family: 'Open Sans';
font-weight: 600;
}
.guest-reviews-b {
width: 100%;
float: left;
}
.guest-reviews-bl {
margin: 0px 173px 0px 0px;
}
.guest-reviews-blb {
width: 100%;
float: left;
overflow: hidden;
}
.guest-reviews-br {
width: 173px;
padding-top: 3px;
float: left;
overflow: hidden;
margin: 0 0 0 -173px;
}
.guest-reviews-lbl {
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
color: #343434;
}
.guest-reviews-lbl-a {
font-size: 12px;
margin-bottom: 10px;
color: #555555;
}
.guest-reviews-txt {
font-size: 13px;
line-height: 21px;
color: #626262;
}
.guest-reviews-br nav li {
float: left;
margin-right: 1px;
}
.guest-reviews-br nav {
float: left;
margin-right: 8px;
}
.guest-rating {
float: left;
font-size: 12px;
color: #939393;
font-family: 'Open Sans';
}
.guest-rating-txt {
font-size: 13px;
margin-top: 32px;
color: #4cb318;
}
.guest-reviews-padding {
padding-left: 60px;
}
.guest-reviews-more {
width: 239px;
height: 24px;
padding-top: 13px;
font-size: 10px;
margin: 30px 0px 0px 0px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.guest-reviews-more:hover {
color: #ff7200;
}
.review-form {
margin: 35px 0px 0px 0px;
}
.review-form label {
display: block;
font-size: 13px;
color: #4c4c4c;
margin-bottom: 9px;
}
.review-form .input-a {
width: 63%;
margin-bottom: 24px;
}
.review-form .input-a input {
text-transform: none;
}
.review-form .textarea-a {
margin-bottom: 36px;
}
.review-form .textarea-a textarea {
text-transform: none;
height: 100px;
}
.input-with-icon-container .input-a {
padding-top: 8px;
padding-bottom: 8px;
}
/*
.review-form input[type='text'] {border-radius:2px; margin-bottom: 24px; font-family: 'Raleway'; width:423px; font-size: 14px; padding:7px 7px 7px 7px; border:1px solid #dedcdc;}
.review-form textarea {border-radius:2px; margin-bottom: 36px; resize: none; height:100px; font-family: 'Raleway'; width:667px; font-size: 14px; padding:7px 7px 7px 7px; border:1px solid #dedcdc;}
*/
.review-ranger {
margin-bottom: 26px;
}
.review-ranger label {
float: left;
width: 100px;
font-size: 13px;
color: #4c4c4c;
display: block;
}
.review-ranger-r {
float: left;
margin: 6px 0px 0px 0px;
width: 338px;
}
.review-ranger-r .ui-slider-horizontal {
height: 5px;
}
.range-holder {
position: relative;
display: block;
width: 20px;
text-align: center;
}
.range-holder i {
position: absolute;
display: block;
width: 20px;
left: 1px;
top: -18px;
width: 17px;
text-align: center;
display: inline-block;
font-size: 11px;
font-family: 'Open Sans';
color: #4c4c4c;
font-style: normal;
}
.review-form .custom-select {
cursor: pointer;
}
.review-form .customSelect {
padding: 8px 7px 8px 7px;
margin-bottom: 24px;
cursor: pointer;
border: 1px solid #dedcdc;
background: url(../img/custom-select.png) right top no-repeat;
cursor: pointer !important;
width: 63%;
border-radius: 2px;
}
.review-form .customSelectInner {
font-size: 14px;
}
.review-send {
margin-top: 5px;
width: 239px;
height: 40px;
color: #fff;
text-transform: uppercase;
border: none;
cursor: pointer;
font-size: 11px;
font-family: 'Raleway';
font-weight: 700;
background: #ff7200;
display: block;
border-radius: 2px;
}
.review-send:hover {
background: #ff8521;
}
.todo-row .cat-list-content-lpadding {
padding: 0px 16px 0px 20px;
min-height: 0px;
}
.todo-row .cat-list-item-l {
width: 194px;
margin-top: 2px;
}
.todo-row .cat-list-item-r {
margin-left: 194px;
}
.todo-row .cat-list-item-p {
padding: 0px;
}
.todo-row .cat-list-item-rb .offer-slider-link a {
font-size: 14px;
color: #343434;
font-weight: 600;
text-transform: none;
}
.todo-row .offer-rate {
font-size: 12px;
margin-bottom: 9px;
color: #4a90a4;
}
.todo-row .cat-list-content-l .offer-slider-link {
margin-bottom: 12px;
}
.todo-row .cat-list-content-l p {
line-height: 21px;
font-size: 13px;
margin: 0px;
}
.todo-row .cat-list-content-r {
width: 146px;
margin-left: -146px;
}
.todo-row .cat-list-content-l {
margin-right: 146px;
}
.todo-row .stars ul li {
margin-right: 2px;
}
.todo-row .cat-list-review {
margin-bottom: 16px;
font-size: 12px;
text-transform: none;
color: #626262;
}
.todo-row .cat-list-item .stars {
margin-bottom: 8px;
}
.todo-btn {
width: 85px;
height: 21px;
padding-top: 10px;
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
color: #6a7880;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
}
.todo-btn:hover {
color: #ff7200;
}
.todo-row .cat-list-content-p {
padding-left: 29px;
padding-right: 0px;
padding-top: 0px;
margin-top: -9px;
}
@media all and (-webkit-min-device-pixel-ratio: 0) {
.todo-row .cat-list-content-p {
margin-top: -2px;
}
}
.todo-devider {
height: 1px;
background: #ebebeb;
margin: 24px 0px 27px 0px;
}
.todo-row .cat-list-item {
border-bottom: 1px solid #ebebeb;
margin-bottom: 22px;
padding-bottom: 20px;
}
.faq-item {
padding-bottom: 17px;
margin-bottom: 17px;
border-bottom: 1px solid #ebebeb;
}
.faq-item-a {
cursor: pointer;
}
.faq-item-left {
font-size: 14px;
color: #4c4c4c;
font-weight: 500;
}
.faq-item-i {
float: right;
margin-top: 2px;
display: block;
width: 12px;
height: 12px;
background: url(../img/faq.png) left top no-repeat;
}
.faq-item.open .faq-item-i {
background-position: left -12px;
}
.faq-item-p {
display: none;
font-size: 13px;
padding-top: 13px;
color: #626262;
line-height: 21px;
}
#map {
width: 100%;
height: 546px;
}
.calendar-tab {
background: #fff;
padding: 24px 20px 17px 20px;
}
.calendar-tab-select label {
font-size: 12px;
font-family: 'Raleway';
font-weight: 600;
margin-bottom: 12px;
display: block;
text-transform: uppercase;
color: #3a4142;
}
.calendar-tab-select select {
cursor: pointer;
}
.calendar-tab-select .customSelect {
border-radius: 2px;
margin-bottom: 17px;
background: url(../img/tab-select.png) right top no-repeat;
width: 257px;
height: 25px;
padding: 7px 0px 0px 9px;
border: 1px solid #dedcdc;
}
.calendar-tab-select .customSelectInner {
font-size: 11px;
color: #8a8a8a;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
}
.tab-calendar-s {
padding: 21px 0px 0px 15px;
}
.tab-calendar-colls {
width: 100%;
float: left;
}
.tab-calendar-collsl {
margin: 0px 117px 0px 0px;
}
.tab-calendar-collslb {
width: 100%;
float: left;
overflow: hidden;
}
.tab-calendar-collsr {
width: 117px;
float: left;
overflow: hidden;
margin: 0 0 0 -117px;
}
.tab-calendar-colls table {
width: 100%;
border-collapse: collapse;
}
.tab-calendar-colls table thead td {
font-size: 10px;
color: #636e70;
text-transform: uppercase;
font-family: 'Raleway';
font-weight: 600;
padding-bottom: 8px;
}
.tab-calendar-colls table tbody td {
width: 72px;
height: 72px;
padding: 0px 7px 7px 0px;
}
.tab-calendar-colls table tbody td span {
font-size: 13px;
text-align: right;
border-radius: 2px;
color: #a5b5be;
font-family: 'Open Sans';
font-weight: 600;
display: block;
width: 100%;
height: 100%;
border: 1px solid #afd1db;
}
.tab-calendar-colls table tbody td span p {
display: block;
padding: 6px 7px 0px 0px;
}
.tab-calendar-colls table tbody td.date-passed span {
background: #f6f9fa;
}
.tab-calendar-colls table tbody td.date-available span {
color: #84d840;
border-color: #84d840;
}
.tab-calendar-colls table tbody td.date-unavailable span {
color: #f69191;
border-color: #f69191;
}
.map-symbol-l {
float: left;
width: 14px;
height: 14px;
border-radius: 2px;
}
.map-symbol-r {
float: left;
margin: 2px 0px 0px 7px;
font-size: 11px;
color: #747d7e;
font-weight: 500;
text-transform: uppercase;
}
.passed .map-symbol-l {
border: 1px solid #afd1db;
}
.available .map-symbol-l {
border: 1px solid #84d840;
}
.unavailable .map-symbol-l {
border: 1px solid #f69191;
}
.map-symbol {
margin-bottom: 13px;
}
.booking-left {
background: #fff;
padding: 22px 19px 29px 19px;
font-family: 'Raleway';
}
.booking-left h2 {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 18px;
font-size: 16px;
color: #4c4c4c;
}
.booking-form-i label {
font-size: 12px;
display: block;
margin-bottom: 11px;
color: #626262;
}
.booking-form-i {
width: 48.55%;
margin-bottom: 18px;
float: left;
}
.booking-form-i:nth-child(2n) {
float: right;
}
.booking-form-i .input {
padding: 6px 10px 6px 10px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .input input[type='text'] {
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.booking-form .checkbox {
margin-top: 2px;
}
.booking-form .checkbox label {
font-size: 12px;
font-weight: 500;
color: #848484;
font-family: 'Raleway';
cursor: pointer;
}
.booking-form .checkbox .jq-checkbox {
margin-right: 7px;
}
.booking-form-i .textarea {
padding: 6px 10px 6px 10px;
height: 113px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .textarea textarea {
resize: none;
height: 113px;
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.booking-devider {
width: 100%;
height: 1px;
background: #ebebeb;
margin: 19px 0px 27px 0px;
}
.booking-devider.no-margin {
margin-top: 7px;
}
.payment-wrapper {
padding-top: 3px;
margin-bottom: 27px;
}
.payment-tabs a {
display: block;
position: relative;
height: 26px;
border-radius: 2px 2px 0px 0px;
padding: 13px 20px 0px 20px;
background: #f7f7f7;
border: 1px solid #fff;
border-bottom: 0px;
text-decoration: none;
float: left;
margin: 0px 1px 0px 0px;
font-size: 11px;
color: #73716f;
text-transform: uppercase;
font-weight: 700;
}
.payment-tabs a.active {
border-color: #ebebeb;
background: #fff;
color: #ff7200;
}
.payment-tabs a.active span {
display: block;
width: 100%;
height: 5px;
background: #fff;
position: absolute;
left: 0px;
bottom: -2px;
}
.payment-tabs-content {
padding: 20px 18px 10px 18px;
border: 1px solid #ebebeb;
}
.payment-tab label {
display: block;
font-size: 12px;
color: #626262;
margin-bottom: 11px;
font-family: 'Raleway';
}
.payment-tab {
display: none;
}
.payment-tab:first-child {
display: block;
}
.payment-tab .checkbox label {
cursor: pointer;
font-weight: 500;
}
.payment-tab .jq-checkbox {
margin-top: -1px;
}
.payment-tab .checkbox label a {
text-decoration: none;
color: #4a90a4;
}
.payment-type {
margin-bottom: 18px;
}
.booking-complete p {
font-size: 13px;
color: #626262;
line-height: 21px;
}
.booking-left .booking-complete h2 {
margin-bottom: 16px;
}
.booking-complete-btn {
display: block;
margin-top: 24px;
width: 189px;
height: 40px;
background: #ff7200;
color: #fff;
text-transform: uppercase;
border: 0px;
cursor: pointer;
border-radius: 2px;
font-size: 11px;
font-family: 'Raleway';
font-weight: bold;
}
.booking-complete-btn:hover {
background: #ff8521;
}
.card-type {
width: 58px;
height: 23px;
float: left;
margin: 0px 5px 0px 0px;
padding-top: 7px;
text-align: center;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.card-expiration .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.card-expiration select {
cursor: pointer;
}
.card-expiration {
float: left;
width: 47.5%;
}
.card-expiration:nth-child(2n) {
float: right;
margin-right: 3px;
}
.card-expiration .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.inpt-comment {
width: 100%;
float: left;
}
.inpt-comment-l {
margin: 0px 79px 0px 0px;
}
.inpt-comment-lb {
width: 100%;
float: left;
overflow: hidden;
}
.inpt-comment-r {
width: 79px;
float: left;
overflow: hidden;
margin: 0 0 0 -79px;
}
.inpt-comment-r .padding {
text-align: right;
padding: 7px 0px 0px 10px;
}
.inpt-comment-r a {
text-decoration: none;
font-size: 11px;
color: #626262;
}
.inpt-comment-r a:hover {
color: #ff7200;
}
.checkout-coll {
padding: 22px 20px 20px 20px;
font-family: 'Raleway';
background: #fff;
margin-bottom: 28px;
}
.checkout-head {
width: 100%;
margin-bottom: 18px;
}
.checkout-headl {
width: 94px;
margin-top: 4px;
float: left;
overflow: hidden;
}
.checkout-headr {
margin: 0px 0px 0px 94px;
}
.checkout-headrb {
width: 100%;
float: left;
overflow: hidden;
}
.checkout-headrp {
padding: 0px 0px 0px 15px;
}
.chk-logo {
margin-top: 10px;
}
.chk-lbl {
margin-bottom: 7px;
}
.chk-lbl a {
text-decoration: none;
text-transform: uppercase;
font-weight: normal;
font-family: 'Montserrat';
font-size: 13px;
color: #4c4c4c;
}
.chk-lbl-a {
font-weight: 500;
margin-bottom: 7px;
font-size: 11px;
text-transform: uppercase;
color: #747d7e;
}
.chk-stars li {
float: left;
margin-right: 1px;
}
.chk-left {
float: left;
}
.chk-right {
float: right;
margin-top: 2px;
}
.chk-lines {
margin-bottom: 21px;
}
.chk-line {
font-weight: 500;
font-size: 11px;
padding: 15px 0px 15px 0px;
text-transform: uppercase;
color: #777777;
border-top: 1px solid #f2f2f2;
}
.chk-line.chk-fligth-info {
padding: 8px 0px 8px 0px;
}
.chk-line:last-child {
border-bottom: 1px solid #f2f2f2;
}
.chk-nights {
background: url(../img/icon-nights.png) left top no-repeat;
margin-right: 16px;
color: #4a90a4;
padding: 0px 0px 0px 16px;
background-position: left 2px;
}
.chk-persons {
color: #ff6739;
}
.chk-details h2 {
font-weight: 600;
margin-bottom: 14px;
text-transform: uppercase;
font-size: 12px;
color: #3a4142;
}
.chk-l {
float: left;
color: #4a90a4;
}
.chk-r {
float: right;
}
.chk-detais-row {
margin-bottom: 17px;
}
.chk-total-l {
float: left;
font-size: 12px;
color: #3a4142;
font-weight: 600;
text-transform: uppercase;
margin-top: 4px;
}
.chk-total-r {
float: right;
font-size: 15px;
color: #ff7200;
font-weight: normal;
font-family: 'Montserrat';
}
.chk-departure span {
font-size: 10px;
font-weight: 600;
color: #848484;
display: block;
margin-right: 9px;
margin-top: 1px;
float: left;
}
.chk-departure b {
display: block;
font-size: 10px;
font-family: 'Open Sans';
font-weight: 700;
color: #4a90a4;
float: left;
}
.chk-arrival {
float: right;
}
.chk-arrival span {
font-size: 10px;
font-weight: 600;
color: #848484;
display: block;
margin-right: 9px;
margin-top: 1px;
float: left;
}
.chk-arrival b {
display: block;
font-size: 10px;
font-family: 'Open Sans';
font-weight: 700;
color: #4a90a4;
float: left;
}
.chk-fligth-devider {
float: left;
width: 1px;
height: 22px;
background: #ebebeb;
margin: 4px 16px 0px 17px;
}
.chk-fligth-time {
float: left;
margin: 10px 0px 0px 2px;
}
.payment-alert {
line-height: 19px;
position: relative;
background: #f2f7f9;
border: 1px solid #d7e7ec;
border-radius: 2px;
margin-top: 3px;
padding: 18px 50px 18px 13px;
font-size: 12px;
color: #4a90a4;
font-weight: 500;
}
.payment-alert-close {
width: 10px;
height: 10px;
position: absolute;
top: 50%;
margin-top: -7px;
right: 15px;
}
.payment-alert-close:hover {
opacity: 0.8;
}
.payment-alert span {
background: url(../img/alert-info.png) left top no-repeat;
padding: 1px 0px 0px 17px;
background-position: left 2px;
}
.paypal-btn {
width: 155px;
height: 24px;
padding-top: 11px;
font-size: 11px;
margin: 20px 0px 12px 0px;
text-transform: uppercase;
font-weight: 600;
color: #839098;
display: block;
text-decoration: none;
text-align: center;
border: 1px solid #e5e5e5;
border-radius: 2px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.paypal-btn:hover {
color: #5d676d;
}
.comlete-alert {
border-top: 1px solid #ebebeb;
padding: 18px 0px 18px 0px;
margin: 22px 0px 20px 0px;
border-bottom: 1px solid #ebebeb;
}
.comlete-alert-a {
background: url(../img/icon-complete.png) left top no-repeat;
background-position: left 4px;
padding: 10px 0px 0px 40px;
}
.comlete-alert-a b {
display: block;
font-weight: 500;
font-size: 16px;
color: #4a90a4;
}
.comlete-alert-a span {
font-size: 13px;
color: #626262;
}
.complete-info h2 {
margin-bottom: 18px;
}
.complete-info-l {
float: left;
width: 138px;
}
.complete-info-table {
font-size: 13px;
color: #626262;
}
.complete-info-i {
margin-bottom: 19px;
}
.complete-info-table {
margin-bottom: 27px;
}
.complete-devider {
height: 1px;
background: #ebebeb;
margin-bottom: 25px;
}
.complete-txt {
margin-bottom: 26px;
}
.complete-txt.final {
margin-bottom: 0px;
}
.complete-info .complete-txt h2 {
margin-bottom: 16px;
}
.complete-txt p {
font-size: 13px;
margin-bottom: 15px;
color: #626262;
line-height: 21px;
}
.complete-txt-link a {
font-size: 13px;
text-decoration: none;
color: #ff7200;
}
.flight-image {
position: relative;
}
.flight-image span {
position: absolute;
left: 0px;
bottom: 0px;
color: #fff;
font-size: 14px;
font-weight: 500;
line-height: 21px;
font-family: 'Raleway';
padding: 0px 15px 20px 15px;
}
.flight-d-logo {
margin: 26px 0px 17px 0px;
}
.flight-d-i {
width: 100%;
float: left;
}
.flight-d-left {
width: 157px;
border-right: 1px solid #ebebeb;
line-height: 27px;
float: left;
overflow: hidden;
}
.flight-d-right {
margin: 0px 0px 0px 158px;
}
.flight-d-rightb {
width: 100%;
float: left;
overflow: hidden;
}
.flight-d-rightp {
padding: 0px 0px 0px 25px;
}
.flight-da {
font-size: 12px;
color: #626262;
}
.flight-da b {
color: #515657;
margin: 0px 0px 0px 5px;
}
.flight-d-depart {
font-size: 12px;
margin: 0px 49px 0px 0px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-depart span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-time {
font-size: 12px;
margin: 0px 19px 0px 0px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-time span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-arrival {
font-size: 12px;
float: left;
color: #515657;
line-height: 27px;
font-weight: 700;
}
.flight-d-arrival span {
margin-right: 5px;
font-weight: normal;
color: #4a90a4;
}
.flight-d-time-icon {
margin-top: 2px;
}
.flight-d-devider {
height: 1px;
background: #ebebeb;
margin: 22px 0px 26px 0px;
}
.flight-d-text p:last-child {
margin-bottom: 0px;
}
.h-detail-stars .flight-line-a b {
margin-bottom: 0px;
}
.h-detail-stars.fligts-s {
padding: 13px 0px 12px 0px;
}
.h-details-logo {
border-bottom: 1px solid #ebebeb;
padding: 17px 0px 14px 0px;
}
.h-tour .tour-icon-txt {
margin-top: 0px;
font-weight: 600;
font-size: 11px;
color: #747d7e;
font-family: 'Raleway';
}
.tour-icon-person {
float: left;
font-weight: 600;
font-size: 11px;
color: #747d7e;
text-transform: uppercase;
padding: 0px 0px 0px 25px;
margin: 0px 0px 0px 22px;
font-family: 'Raleway';
background: url(../img/persons-icon.png) left top no-repeat;
}
.h-tour {
border-top: 1px solid #ebebeb;
padding: 16px 0px 16px 0px;
}
.sex-type {
float: left;
padding: 9px 0px 9px 0px;
font-weight: 500;
width: 39px;
text-align: center;
margin-right: 4px;
cursor: pointer;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
font-size: 11px;
color: #626262;
}
.sex-type.chosen {
background: #ff7200;
color: #fff;
border-color: #e37012;
-webkit-box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
-moz-box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
box-shadow: inset 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
}
.form-sex {
float: left;
}
.form-calendar {
float: right;
margin-right: 2px;
}
.form-calendar-a select,
.form-calendar-b select {
cursor: pointer;
}
.form-calendar-a {
float: left;
width: 61px;
margin-right: 6px;
}
.form-calendar-a .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.form-calendar-a .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.form-calendar-b {
float: left;
width: 90px;
margin-right: 0px;
}
.form-calendar-b .customSelectInner {
font-size: 11px;
color: #8a8a8a;
padding-left: 9px;
}
.form-calendar-b .customSelect {
width: 100%;
padding: 7px 0px 7px 0px;
border: 1px solid #e3e3e3;
background: url(../img/card-select.png) right top no-repeat;
-webkit-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
-moz-box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.05);
border-radius: 2px;
}
.bookin-three-coll .booking-form-i {
width: 31.35%;
margin-right: 20px;
}
.bookin-three-coll .booking-form-i:nth-child(2n) {
float: left;
}
.bookin-three-coll .booking-form-i:nth-child(3n) {
float: right;
margin-right: 0px;
}
.bookin-three-coll .booking-form-i .form-calendar-b {
width: 80px;
}
.add-passanger {
font-size: 12px;
color: #848484;
font-weight: 500;
text-decoration: none;
margin: 4px 0px 0px 0px;
padding: 0px 0px 0px 14px;
float: right;
background: url(../img/add-pass-icon.png) left top no-repeat;
background-position: left 2px;
}
.contacts-map {
padding-top: 129px;
}
.contacts-map #map {
height: 457px;
}
.contacts-page {
max-width: 1100px;
margin: 0 auto;
padding-top: 76px;
}
.contacts-page .page-lbl p {
font-size: 15px;
color: #455051;
}
.contacts-page .page-lbl {
margin-bottom: 49px;
}
.contacts-page-holder {
padding-bottom: 124px;
background: #fff;
}
.contacts-colls {
width: 100%;
float: left;
font-family: 'Raleway';
}
.contacts-colls-l {
width: 377px;
float: left;
overflow: hidden;
}
.contacts-colls-r {
margin: 0px 0px 0px 377px;
}
.contacts-colls-rb {
width: 100%;
float: left;
overflow: hidden;
}
.contact-colls-lbl {
text-transform: uppercase;
font-family: 'Montserrat';
margin-bottom: 28px;
font-size: 17px;
font-weight: normal;
color: #141d1e;
}
.side-social {
margin-top: 28px;
}
.side-social a {
display: inline-block;
margin-right: 20px;
width: 13px;
height: 14px;
vertical-align: middle;
}
.side-social a.side-social-twitter {
background: url(../img/left-social-01.png) left top no-repeat;
}
.side-social a.side-social-facebook {
background: url(../img/left-social-02.png) left top no-repeat;
}
.side-social a.side-social-vimeo {
background: url(../img/left-social-03.png) left top no-repeat;
}
.side-social a.side-social-pinterest {
background: url(../img/left-social-04.png) left top no-repeat;
}
.side-social a.side-social-instagram {
background: url(../img/left-social-05.png) left top no-repeat;
}
.side-social a:hover {
background-position: left -14px;
}
.contacts-colls-txt p {
font-size: 13px;
color: #626262;
margin-bottom: 18px;
}
.contacts-colls .booking-form-i {
width: 47.90%;
margin-bottom: 21px;
}
.contacts-colls .booking-form-i label {
font-size: 13px;
color: #626262;
}
.contacts-colls .booking-form-i label {
margin-bottom: 8px;
}
.contacts-colls .booking-form {
padding-bottom: 10px;
}
.booking-form-i.textarea {
width: 100%;
}
.booking-form-i .textarea-wrapper {
padding: 6px 10px 6px 10px;
border: 1px solid #e3e3e3;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
border-radius: 2px;
}
.booking-form-i .textarea-wrapper textarea {
resize: none;
height: 112px;
border: 0px;
width: 100%;
font-size: 14px;
font-family: 'Raleway';
}
.contacts-send {
width: 124px;
height: 36px;
color: #fff;
margin-top: 4px;
border-radius: 2px;
border: 0px;
font-size: 11px;
font-family: 'Montserrat';
font-weight: normal;
background: #ff7200;
text-transform: uppercase;
cursor: pointer;
}
.contacts-send:hover {
background: #ff8f35;
}
.inner-page {
padding: 130px 0px 0px 0px;
}
.inner-breadcrumbs {
height: 75px;
background: #fafafa;
}
.gray-inner .inner-breadcrumbs {
border-bottom: 1px solid #ededed;
max-width: 1100px;
margin: 0 auto;
}
.content-wrapper {
max-width: 1100px;
margin: 0 auto;
}
.inner-breadcrumbs {
margin-bottom: 93px;
}
.inner-breadcrumbs .page-title {
font-family: 'Montserrat';
float: left;
margin: 27px 0px 0px 0px;
font-weight: normal;
font-size: 17px;
color: #141d1e;
}
.inner-breadcrumbs .breadcrumbs {
margin: 31px 0px 0px 0px;
}
.inner-breadcrumbs .breadcrumbs,
.inner-breadcrumbs .breadcrumbs a,
.inner-breadcrumbs .breadcrumbs span {
color: #141d1e;
font-weight: normal;
font-size: 11px;
}
.paragraph {
display: inline-block;
margin: 9px 12px 0px 0px;
float: left;
background: #141d1e;
color: #fff;
text-align: center;
font-size: 20px;
border-radius: 2px;
width: 33px;
height: 29px;
padding-top: 4px;
}
.paragraph-a {
display: inline-block;
margin: 9px 3px 0px 0px;
float: left;
color: #141d1e;
text-align: center;
font-size: 33px;
font-weight: 500;
border-radius: 2px;
width: 39px;
height: 29px;
padding-top: 4px;
}
.paragraph-b {
display: inline-block;
margin: 9px 10px 0px 0px;
float: left;
border-radius: 1000px;
background: #ff7200;
color: #fff;
text-align: center;
font-size: 21px;
font-weight: 500;
width: 32px;
height: 29px;
padding-top: 3px;
}
.about-content {
font-family: 'Raleway';
}
.about-content .page-lbl p {
font-size: 15px;
color: #455051;
}
.about-content .page-lbl {
margin-bottom: 10px;
}
.about-text {
margin-bottom: 39px;
}
.about-text p {
font-size: 14px;
line-height: 24px;
color: #626262;
}
.tree-colls-i {
width: 31.5%;
margin-right: 2.9%;
float: left;
}
.about-percent label {
display: block;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 7px;
color: #626262;
}
.about-percent-a {
width: 100%;
height: 4px;
background: #ebeef0;
border-radius: 100px;
overflow: hidden;
}
.about-percent-a span {
display: block;
width: 0px;
height: 4px;
border-radius: 100px;
background: #ff7200;
}
.tree-colls-i:nth-child(2) {
margin-right: 0px;
}
.tree-colls-i:last-child {
float: right;
margin-right: 0px;
}
.about-percent {
margin-bottom: 19px;
}
.about-photo-image {
margin-bottom: 21px;
position: relative;
}
.about-photo-image img {
width: 100%;
}
.about-photo {
text-align: center;
}
.about-photo-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 6px;
text-transform: uppercase;
font-size: 14px;
color: #141d1e;
}
.about-photo-sublbl {
font-size: 13px;
color: #717171;
}
.about-slider-h {
font-family: 'Raleway';
background: #fafafa;
padding: 79px 0px 75px 0px;
margin: 57px 0px 75px 0px;
text-align: center;
}
.about-slider-h.styled {
height: 280px;
padding: 80px 0px 0px 0px;
background: url(../img/about-styled.jpg) center top no-repeat;
}
.about-slider-txt {
font-size: 15px;
margin-bottom: 14px;
line-height: 26px;
color: #626262;
}
.about-content .about-slider-txt {
width: 640px;
margin: 0 auto;
margin-bottom: 14px;
}
.about-slider-txt-a {
font-size: 13px;
color: #7f7f7f;
}
.about-slider-img {
margin-bottom: 18px;
}
.about-slider-h .bx-controls-direction {
display: none;
}
.about-slider-h .bx-pager {
text-align: center;
margin-top: 22px;
}
.about-slider-h .bx-pager-item {
display: inline-block;
margin: 0px 5px 0px 5px;
}
.about-slider-h .bx-pager-item a {
display: inline-block;
overflow: hidden;
text-indent: -9999px;
width: 7px;
height: 7px;
border: 1px solid #b6b6b6;
border-radius: 1000px;
}
.about-slider-h .bx-pager-item a.active {
border-color: #ff6638;
background: #ff6638;
}
.about-slider-h.styled .about-slider-txt,
.about-slider-h.styled .about-slider-txt-a {
color: #ffffff;
}
.why-we {
font-family: 'Raleway';
padding-bottom: 114px;
}
.why-we .page-lbl p {
font-size: 15px;
color: #455051;
}
.why-we .page-lbl {
margin-bottom: 18px;
}
.why-we-item {
text-align: center;
}
.why-we-img {
margin-bottom: 25px;
}
.why-we-lbl {
font-size: 15px;
font-family: 'Montserrat';
margin-bottom: 25px;
color: #3a4142;
text-transform: uppercase;
}
.why-we-txt {
font-size: 14px;
line-height: 24px;
color: #626262;
}
.about-two-colls-h {
width: 100%;
float: left;
margin-bottom: 40px;
}
.about-two-colls-l {
width: 348px;
float: left;
overflow: hidden;
font-size: 14px;
line-height: 24px;
color: #626262;
}
.about-two-colls-r {
margin: 0px 0px 0px 348px;
}
.about-two-colls-rb {
width: 100%;
float: left;
overflow: hidden;
}
.about-two-colls-rp {
padding: 4px 0px 0px 29px;
}
.about-us-devider {
height: 1px;
margin: 40px 0px 92px 0px;
background: #f0f0f0;
}
.about-content .counters {
padding-bottom: 96px;
}
.counters-i {
display: inline-block;
width: 132px;
margin-right: 9.4%;
float: left;
text-align: center;
}
.counters-i:first-child {
margin-left: 17px;
}
.counters-i:last-child {
float: right;
margin-right: 6px;
}
.counters-i b {
color: #1a232b;
display: block;
line-height: 50px;
margin-bottom: 5px;
font-family: 'Montserrat';
font-weight: normal;
font-size: 50px;
}
.counters-i span {
font-size: 12px;
color: #1a232b;
font-weight: 500;
text-transform: uppercase;
}
.our-team {
margin-bottom: 78px;
}
.our-team .page-lbl p {
font-size: 15px;
color: #455051;
}
.our-team .page-lbl {
margin-bottom: 18px;
}
.team-row-h {
padding-bottom: 55px;
}
.team-row-i {
margin-right: 3.3%;
width: 22.5%;
font-family: 'Raleway';
text-align: center;
float: left;
}
.team-row-i:last-child {
margin-right: 0px;
float: right;
}
.team-row-img {
margin-bottom: 20px;
position: relative;
}
.team-row-img img {
width: 100%;
}
.team-row-lbl {
text-transform: uppercase;
font-family: 'Montserrat';
margin-bottom: 6px;
font-weight: normal;
}
.team-row-txt {
font-size: 13px;
color: #717171;
}
.team-more-h {
width: 92%;
height: 89%;
display: none;
padding: 5% 4% 4% 4%;
position: absolute;
left: 0px;
top: 0px;
}
.team-row-i:hover .team-more-h {
display: block;
}
.about-photo:hover .team-more-h {
display: block;
}
.team-row-b {
margin-bottom: 77px;
}
.team-more {
width: 100%;
height: 100%;
display: table;
text-align: center;
background: rgba(255, 255, 255, 0.9);
}
.team-more-a {
font-size: 13px;
display: table-cell;
text-align: center;
vertical-align: middle;
padding: 0px 10px 0px 10px;
line-height: 23px;
color: #525659;
}
.team-more-social {
text-align: center;
padding-top: 12px;
}
.team-more-social a {
margin: 0px 6px 0px 6px;
}
.team-fb {
display: inline-block;
background: url(../img/about-facebook.png) left top no-repeat;
width: 8px;
height: 13px;
}
.team-tw {
display: inline-block;
background: url(../img/about-twitter.png) left top no-repeat;
width: 13px;
height: 13px;
}
.team-gp {
display: inline-block;
background: url(../img/about-gp.png) left top no-repeat;
width: 13px;
height: 13px;
}
.team-inst {
display: inline-block;
background: url(../img/about-insta.png) left top no-repeat;
width: 11px;
height: 13px;
}
.team-pint {
display: inline-block;
background: url(../img/about-pinterest.png) left top no-repeat;
width: 10px;
height: 13px;
}
.team-vk {
display: inline-block;
background: url(../img/about-vk.png) left top no-repeat;
width: 15px;
height: 13px;
}
.team-more-social a:hover {
background-position: left -13px;
}
.services {
padding-top: 7px;
padding-bottom: 53px;
}
.services-i {
display: inline-block;
float: left;
width: 22%;
margin-right: 4%;
text-align: center;
}
.services-i:last-child {
margin-right: 0px;
float: right;
}
.services-img {
margin-bottom: 22px;
}
.services-lbl {
text-transform: uppercase;
margin-bottom: 15px;
font-size: 15px;
color: #3a4142;
font-weight: normal;
font-family: 'Montserrat';
}
.services-txt {
line-height: 25px;
font-size: 14px;
color: #687172;
}
.solutions {
font-family: 'Raleway';
padding: 5px 0px 100px 0px;
}
.solutions .page-lbl p {
font-size: 15px;
color: #455051;
}
.solutions .page-lbl {
margin-bottom: 18px;
}
.solutions-i {
position: relative;
margin-right: 2.7%;
float: left;
cursor: pointer;
width: 31.5%;
}
.solutions-i:last-child {
float: right;
margin-right: 0px;
}
.solutions-img {
line-height: 0px;
}
.solutions-img img {
width: 100%;
height: 100%;
line-height: 0px;
margin: 0px;
padding: 0px;
}
.solutions-over {
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.5);
}
.solutions-over-a {
display: table;
width: 100%;
height: 100%;
}
.solutions-over-b {
display: table-cell;
color: #fff;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
.solutions-over-d {
display: none;
}
.solution-icon {
display: inline-block;
width: 16px;
height: 10px;
background: url(../img/icon-solution.png) left top no-repeat;
}
.solution-lbl {
text-transform: uppercase;
margin-top: 11px;
font-size: 16px;
font-weight: normal;
font-family: 'Montserrat';
}
.solution-txt {
font-size: 14px;
padding: 0px 10px 0px 10px;
line-height: 26px;
margin-top: 5px;
}
.solution-icon-a {
display: block;
background: url(../img/solutions-i-a.png) left top no-repeat;
position: absolute;
left: 50%;
margin-left: -4px;
bottom: 18px;
z-index: 999;
width: 8px;
height: 8px;
}
.solution-partners {
background: #fafafa;
padding: 94px 0px 93px 0px;
}
.solution-partners .page-lbl p {
font-size: 15px;
color: #455051;
}
.solution-partners .page-lbl {
margin-bottom: 18px;
}
.solutions-partners-row {
padding: 0px 10px 0px 10px;
}
.solutions-partners-row a {
float: left;
margin-right: 5%;
opacity: 0.65;
}
.solutions-partners-row a:last-child {
margin-right: 0px;
float: right;
}
.solutions-partners-row a:hover {
opacity: 1;
}
.solution-partners .partners {
padding: 0px 10px 0px 10px;
border: 0px;
margin: 0px;
}
.cover_boxes {
overflow: hidden;
position: relative;
}
.cover_boxes ul {
list-style: outside none none;
margin: 0 -20px 0 0;
padding: 0;
width: 200%;
}
.cover_boxes ul li {
float: left;
margin-right: 17px;
margin-bottom: 28px;
overflow: hidden;
position: relative;
transition: all 0.5s ease 0s;
width: 265px;
}
.cover_boxes ul li.act {
width: 530px;
margin-right: 34px;
}
.cover_boxes ul li .box {
width: 530px;
}
.cover_boxes ul li .box .thumb {
display: inline-block;
float: left;
margin-right: 17px;
position: relative;
z-index: 10;
}
.cover_boxes ul li .box .thumb img {
display: block;
max-width: 100%;
position: relative;
}
.cover_boxes ul li .box .box_content {
bottom: 0;
left: 281px;
padding: 0;
position: absolute;
top: 0;
width: 245px;
padding-top: 1px;
padding-right: 16px;
z-index: 9;
}
.cover_boxes ul li .box h3 {
font-size: 15px;
margin-bottom: 16px;
color: #3a4142;
font-weight: 500;
text-transform: uppercase;
}
.cover_boxes ul li .box p {
font-size: 14px;
margin-bottom: 20px;
color: #687172;
line-height: 25px;
}
.cover_boxes ul li .box .qbutton,
.cover_boxes ul li .box h5 {
margin: 20px 0 0;
}
.ga_button {
width: 100px;
height: 22px;
padding-top: 10px;
text-transform: uppercase;
color: #6a7880;
font-size: 11px;
font-weight: 600;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-align: center;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.ga_button:hover {
color: #fe6739;
}
.cover_gallery {
padding-bottom: 119px;
padding-top: 7px;
}
.portfolio-filters {
text-align: center;
padding: 74px 0px 50px 0px;
font-family: 'Raleway';
}
.portfolio-filters ul li {
display: inline-block;
margin: 0px 5px 0px 5px;
}
.portfolio-filters ul li a {
font-size: 12px;
border-bottom: 2px solid transparent;
display: inline-block;
padding-bottom: 4px;
color: #141d1e;
text-transform: uppercase;
text-decoration: none;
}
.portfolio-filters ul li a:hover {
color: #515e5f;
}
.portfolio-filters ul li.active a {
border-bottom: 2px solid #ff6638;
color: #ff6638;
}
.portfolio-holder {
overflow: hidden;
max-width: 1128px;
margin: 0 auto;
}
.portfolio-i {
width: 22.4%;
margin-bottom: 28px;
margin-right: 1.3%;
margin-left: 1.3%;
text-align: center;
}
.portfolio-three-colls .portfolio-i {
margin-bottom: 30px;
width: 30.5%;
margin-right: 1.4%;
margin-left: 1.4%;
}
.portfolio-i-img {
position: relative;
overflow: hidden;
line-height: 0px;
cursor: pointer;
}
.portfolio-i-img img {
width: 100%;
-webkit-transition: all 1s;
-moz-transition: all 0.6s;
-ms-transition: all 0.6s;
transition: all 0.6s;
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
.portfolio-i:hover img {
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.portfolio-i-text {
font-family: 'Raleway';
background: #fff;
height: 77px;
}
.portfolio-i-text b {
text-transform: uppercase;
padding: 20px 0px 3px 0px;
font-size: 13px;
color: #3a4142;
font-weight: normal;
font-family: 'Montserrat';
display: block;
}
.portfolio-i-text span {
font-size: 12px;
color: #687172;
}
.portfolio-i-over {
position: absolute;
z-index: 99;
display: none;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.45);
}
.portfolio-i-over-a {
display: table;
width: 100%;
height: 100%;
}
.portfolio-i-over-b {
display: table-cell;
text-align: center;
vertical-align: middle;
width: 100%;
height: 100%;
}
.portfolio-zoom {
display: inline-block;
background: url(../img/portfolio-zoom.png) left top no-repeat;
margin-right: 1px;
width: 38px;
height: 38px;
}
.portfolio-more {
display: inline-block;
background: url(../img/portfolio-more.png) left top no-repeat;
margin-left: 1px;
width: 38px;
height: 38px;
}
.portfolio-zoom:hover,
.portfolio-more:hover {
opacity: 0.8;
}
.portfolio-i:hover .portfolio-i-over {
display: block;
}
.portfolio-four-colls {
padding-bottom: 95px;
}
.portfolio-three-colls {
padding-bottom: 70px;
}
.portfolio-more-btn {
padding-bottom: 111px;
}
.portfolio-more-btn a {
font-size: 12px;
text-transform: uppercase;
color: #6a7880;
font-weight: 600;
font-family: 'Raleway';
display: block;
width: 180px;
float: none;
height: 30px;
padding-top: 13px;
background: #fff;
text-align: center;
text-decoration: none;
background: #fff;
border-radius: 2px;
margin: 0 auto;
}
.portfolio-more-btn a:hover {
color: #ff7200;
}
.p-item-page {
width: 100%;
padding-bottom: 54px;
float: left;
font-family: 'Raleway';
}
.p-item-page-l {
margin: 3px 348px 0px 0px;
}
.p-item-page-lb {
width: 100%;
float: left;
overflow: hidden;
}
.p-item-page-r {
width: 348px;
font-family: 'Raleway';
float: left;
overflow: hidden;
margin: 0 0 0 -348px;
}
.p-item-page-r h3 {
font-weight: normal;
font-family: 'Montserrat';
color: #3a4142;
font-size: 13px;
text-transform: uppercase;
}
.p-item-details {
padding-top: 14px;
padding-bottom: 29px;
}
.p-item-details-i {
font-size: 13px;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 7px;
margin-bottom: 7px;
color: #687172;
}
.p-item-details-il {
width: 90px;
float: left;
}
.p-item-details-ir {
float: left;
}
.p-item-more {
font-size: 13px;
color: #687172;
line-height: 24px;
padding: 9px 0px 32px 0px;
font-family: 'Raleway';
}
.p-item-social a {
margin-right: 21px;
}
.p-item-social a:hover {
background-position: left -13px;
}
.p-item-slide,
.p-item-slide img {
width: 100%;
}
.p-item-padding {
margin-right: 31px;
position: relative;
}
.p-item-padding .bx-pager {
display: none;
}
.p-item-padding .bx-prev,
.p-item-padding .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.p-item-padding .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 21px;
}
.p-item-padding .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 21px;
}
.portfolio-nav {
display: table;
width: 100%;
margin-bottom: 50px;
}
.portfolio-nav.no-margin {
padding-bottom: 50px;
}
.portfolio-nav-l {
display: table-cell;
text-align: left;
vertical-align: middle;
}
.portfolio-nav-c {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.portfolio-nav-r {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.portfolio-nav-l a {
display: inline-block;
background: url(../img/portfolio-l.png) left top no-repeat;
width: 36px;
height: 36px;
}
.portfolio-nav-r a {
display: inline-block;
background: url(../img/portfolio-r.png) left top no-repeat;
width: 36px;
height: 36px;
}
.portfolio-nav-l a:hover,
.portfolio-nav-r a:hover {
background-position: left -36px;
}
.portfolio-nav-c a {
display: inline-block;
opacity: 0.6;
background: url(../img/portfolio-all.png) left top no-repeat;
width: 19px;
height: 19px;
}
.portfolio-nav-c a:hover {
opacity: 1;
}
.portfolio-full {
margin-bottom: 54px;
}
.portfolio-full-img img {
width: 100%;
}
.portfolio-full-more {
width: 100%;
float: left;
padding-bottom: 26px;
}
.portfolio-full-more-l {
width: 345px;
float: left;
overflow: hidden;
}
.portfolio-full-more-r {
margin: 0px 0px 0px 345px;
}
.portfolio-full-more-rb {
width: 100%;
float: left;
overflow: hidden;
}
.portfolio-full-more .p-item-details {
padding-bottom: 22px;
}
.portfolio-full-more .p-item-details-i {
padding-bottom: 8px;
margin-bottom: 8px;
}
.portfolio-full-more h3 {
font-weight: normal;
font-family: 'Montserrat';
color: #3a4142;
font-size: 13px;
text-transform: uppercase;
}
.portfolio-full-more-txt {
width: 48%;
float: right;
font-size: 13px;
color: #687172;
line-height: 24px;
padding: 9px 0px 32px 0px;
font-family: 'Raleway';
}
.portfolio-full-more-txt:nth-child(2n) {
float: left;
}
.portfolio-full-more-p {
padding-left: 30px;
}
.portfolio-full-more-r h3 {
margin-bottom: 9px;
}
.blog-sidebar {
width: 100%;
float: left;
font-family: 'Raleway';
}
.blog-sidebar-l {
margin: 0px 255px 0px 0px;
}
.blog-sidebar-lb {
width: 100%;
float: left;
}
.blog-sidebar-p {
padding-right: 20px;
}
.blog-sidebar-r {
width: 255px;
float: left;
margin: 4px 0 0 -256px;
}
.blog-post-i {
width: 100%;
float: left;
}
.blog-post-l {
width: 127px;
float: left;
text-align: right;
}
.blog-post-c {
margin: 0px 0px 0px 127px;
}
.blog-post-cb {
width: 100%;
float: left;
}
.blog-post-p {
padding-left: 25px;
padding-right: 8px;
padding-top: 3px;
}
.blog-post {
padding-bottom: 29px;
margin-bottom: 47px;
border-bottom: 1px solid #ededed;
}
.blog-post-date {
border-bottom: 1px solid #ededed;
padding-bottom: 20px;
margin-bottom: 9px;
}
.blog-post-date b {
display: block;
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 2px;
font-size: 28px;
color: #141d1e;
}
.blog-post-date span {
display: block;
font-size: 11px;
color: #6b7373;
}
.blog-post-info {
font-size: 11px;
color: #6b7373;
text-transform: uppercase;
line-height: 28px;
}
.blog-post-info div {
margin-bottom: 1px;
}
.blog-post-title {
margin-bottom: 23px;
}
.blog-post-title a {
text-decoration: none;
text-transform: uppercase;
font-size: 17px;
color: #141d1e;
font-family: 'Montserrat';
font-weight: normal;
}
.blog-post-img img {
width: 100%;
}
.blog-post-txt {
font-size: 14px;
color: #626262;
margin-bottom: 22px;
line-height: 25px;
}
.blog-post-preview {
margin-bottom: 17px;
}
.blog-post-more {
width: 86px;
height: 21px;
padding-top: 10px;
text-transform: uppercase;
color: #6a7880;
font-size: 10px;
font-weight: 700;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-align: center;
text-decoration: none;
}
.blog-post-more:hover {
color: #fe6739;
}
.blog-post-slider-i img {
width: 100%;
}
.blog-post-slider {
position: relative;
}
.blog-post-slider .bx-pager {
display: none;
}
.blog-post-slider .bx-prev,
.blog-post-slider .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.blog-post-slider .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 21px;
}
.blog-post-slider .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 21px;
}
.blog-post-qoute {
border-left: 2px solid #ff7200;
padding: 0px 0px 0px 17px;
}
.blog-post-qoute-a {
font-size: 16px;
line-height: 27px;
margin-bottom: 9px;
color: #414f51;
}
.blog-post-qoute-b {
font-size: 13px;
color: #6b7373;
}
.blog-post.single-post {
border: 0px;
}
.mejs-container .mejs-controls {
background: #fafafa;
}
.mejs-controls .mejs-play button {
width: 11px;
height: 11px;
margin-top: 10px;
margin-left: 10px;
background: url(../img/btn-play.gif) left top no-repeat;
}
.mejs-controls .mejs-pause button {
background: url("../img/pause.png") left top no-repeat !important;
margin-left: 9px !important;
margin-top: 11px !important;
}
.mejs-controls .mejs-fullscreen-button button {
margin-top: 10px;
width: 10px;
height: 10px;
background: url(../img/full-btn.png) left top no-repeat;
}
.mejs-controls .mejs-pause button {
width: 11px;
height: 11px;
margin-top: 10px;
margin-left: 9px;
background: url(../img/btn-play.gif) left top no-repeat;
background-position: 0 0;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
margin-top: 8px;
background: #dcdcdc;
height: 6px;
}
.mejs-controls .mejs-time-rail span {
height: 6px;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
border: 0px;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
background: #ff7200;
border: 0px;
}
.mejs-controls .mejs-time-rail span {
border-radius: 0px;
}
.mejs-overlay-button {
position: absolute;
top: 50%;
left: 50%;
width: 36px;
height: 36px;
margin-left: -15px;
margin-top: -15px !important;
background: url(../img/video-play.png) no-repeat;
}
.mejs-controls .mejs-mute button {
margin-top: 11px;
width: 9px;
height: 10px;
background: url(../img/vol-btn.png) left top no-repeat;
}
.mejs-container {
width: 100% !important;
height: 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: transparent url(../img/audio-bg.gif) left top repeat-x !important;
}
.mejs-overlay:hover .mejs-overlay-button {
background: url(../img/video-play.png) no-repeat;
background-position: left 0px;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
border-radius: 0px;
background: url(../img/v-current.png) left top repeat-x;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
height: 6px;
border-radius: 0px;
margin-top: 2px;
background: #dcdcdc;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
background: #ff7200;
top: 13px;
height: 6px;
}
.mejs-controls .mejs-unmute button {
margin-top: 11px;
width: 9px;
height: 10px;
background: url(../img/vol-btn.png) left top no-repeat;
background-position: left 0 0;
}
.mejs-container .mejs-controls .mejs-time span {
font-size: 10px;
color: #898989 !important;
font-family: 'Open Sans';
}
.blog-pagination {
margin-bottom: 123px;
margin-left: 152px;
}
.blog-pagination li {
float: left;
margin: 0px 5px 0px 0px;
}
.blog-pagination a {
text-align: center;
text-decoration: none;
font-size: 13px;
font-family: 'Open Sans';
border-radius: 2px;
color: #797979;
border: 1px solid #c3c3c3;
opacity: 0.7;
display: block;
width: 31px;
height: 25px;
padding-top: 6px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-pagination a:hover {
opacity: 1;
}
.blog-pagination li:first-child a,
.blog-pagination li:last-child a {
padding-top: 0px;
height: 31px;
}
.blog-widget {
font-family: 'Raleway';
margin-bottom: 38px;
}
.blog-widget h2 {
font-size: 13px;
color: #3a4142;
margin-bottom: 14px;
font-family: 'Montserrat';
font-weight: normal;
text-transform: uppercase;
}
.search-widget {
margin-bottom: 46px;
}
.search-widget input[type='text'] {
width: 234px;
margin-top: 22px;
padding: 10px 10px 10px 10px;
color: #6a7880;
font-family: 'Raleway';
font-size: 11px;
border-radius: 2px;
border: 1px solid #e5e5e5;
display: block;
text-decoration: none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.text-widget {
margin-bottom: 39px;
}
.text-widget p {
font-size: 13px;
color: #455051;
line-height: 25px;
}
.recent-widget {
margin-bottom: 47px;
}
.recent-widget nav li a {
text-decoration: none;
padding: 17px 0px 15px 0px;
display: block;
font-size: 13px;
color: #455051;
border-bottom: 1px solid #ededed;
}
.recent-widget nav li:first-child a {
padding-top: 5px;
}
.tweeter-widget {
margin-bottom: 46px;
}
.tweeter-item {
padding-bottom: 12px;
margin-bottom: 13px;
border-bottom: 1px solid #ededed;
}
.tweeter-item-l {
width: 12px;
margin-top: 8px;
height: 10px;
background: url(../img/tweeter-i.png) left top no-repeat;
float: left;
}
.tweeter-item-r {
line-height: 25px;
width: 234px;
float: right;
}
.tweeter-item-r span {
font-size: 13px;
display: block;
color: #455051;
}
.tweeter-item-r b {
font-size: 13px;
color: #848b8c;
font-weight: normal;
}
.tags-row {
padding-top: 7px;
}
.tags-row a {
display: inline-block;
float: left;
margin-right: 5px;
margin-bottom: 5px;
text-transform: uppercase;
color: #858585;
border: 1px solid #e5e5e5;
border-radius: 2px;
padding: 7px 12px 6px 12px;
text-decoration: none;
font-weight: 600;
font-size: 10px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.tags-row a:hover {
color: #ff7200;
}
.blog-masonry {
font-family: 'Raleway';
margin: 0 auto;
max-width: 1128px;
}
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 1.44%;
margin-right: 1.44%;
width: 30.4%;
}
.blog-masonry-lbl {
margin-bottom: 11px;
}
.blog-masonry-lbl a {
text-decoration: none;
font-size: 15px;
font-family: 'Montserrat';
color: #141d1e;
text-transform: uppercase;
}
.blog-masonry-txt {
font-size: 14px;
margin-bottom: 12px;
color: #626262;
line-height: 25px;
}
.blog-masonry-preview {
margin-bottom: 22px;
}
.blog-masonry-gallery-i {
width: 100%;
}
.blog-masonry-img img,
.blog-masonry-gallery-i img {
width: 100%;
}
.blog-masonry-info {
font-size: 14px;
color: #868d8e;
}
.blog-masonry-preview {
position: relative;
}
.blog-masonry-preview .bx-pager {
display: none;
}
.blog-masonry-preview .bx-prev,
.blog-masonry-preview .bx-next {
width: 44px;
height: 44px;
display: block;
overflow: hidden;
text-indent: -9999px;
position: absolute;
top: 50%;
margin-top: -22px;
}
.blog-masonry-preview .bx-prev {
background: url(../img/p-slider-l.png) left top no-repeat;
left: 14px;
}
.blog-masonry-preview .bx-next {
background: url(../img/p-slider-r.png) left top no-repeat;
right: 14px;
}
.blog-masonry-quote-a {
font-size: 16px;
color: #414f51;
padding: 0px 0px 0px 26px;
margin-bottom: 9px;
line-height: 27px;
background: url(../img/quote-icon.png) left top no-repeat;
background-position: left 7px;
}
.blog-masonry-quote-b {
font-size: 13px;
color: #6b7373;
padding-left: 26px;
}
.blog-masonry-quote {
border: 1px solid #e9e9e9;
border-radius: 2px;
padding: 16px 19px 21px 15px;
margin-bottom: 19px;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-more {
text-align: center;
padding-bottom: 107px;
padding-top: 9px;
}
.blog-more a {
display: inline-block;
font-size: 12px;
color: #707070;
font-family: 'Raleway';
font-weight: 600;
width: 173px;
height: 27px;
padding-top: 13px;
border: 1px solid #e5e5e5;
border-radius: 2px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.04);
}
.blog-more a:hover {
color: #ff7200;
}
.text-quote {
border-left: 2px solid #ff7200;
margin-bottom: 12px;
padding-left: 16px;
}
.text-quote-a {
margin-bottom: 4px;
line-height: 28px;
font-size: 16px;
color: #414f51;
}
.text-quote-b {
font-size: 13px;
color: #6b7373;
}
.post-tags {
margin-bottom: 48px;
}
.post-tags a {
font-size: 13px;
color: #484d4e;
text-decoration: none;
}
.post-tags span {
font-size: 13px;
color: #484d4e;
}
.post-tags a:hover {
color: #ff7200;
}
.blog-comments {
margin-bottom: 56px;
}
.blog-comment-i {
padding-bottom: 24px;
margin-bottom: 25px;
border-bottom: 1px solid #ededed;
}
.blog-comment-i .guest-reviews-l {
margin-top: 4px;
}
.blog-comments-lbl {
font-weight: normal;
font-family: 'Montserrat';
margin-bottom: 26px;
font-size: 17px;
color: #141d1e;
text-transform: uppercase;
}
.blog-comment-lbl {
font-family: 'Montserrat';
font-size: 14px;
margin-bottom: 13px;
color: #141d1e;
text-transform: uppercase;
font-weight: normal;
}
.blog-comment-info {
font-size: 13px;
color: #6b7373;
margin-bottom: 9px;
}
.blog-comment-info a {
text-decoration: none;
color: #ff7200;
margin-left: 14px;
}
.post-comment {
padding-bottom: 66px;
}
.post-comment .booking-form-i {
width: 100%;
float: none;
}
.blog-comment-txt {
line-height: 25px;
font-size: 14px;
color: #687172;
}
.post-comment-btn {
display: block;
margin-top: 25px;
padding-top: 2px;
width: 124px;
height: 36px;
background: #ff7200;
color: #fff;
text-transform: uppercase;
border: 0px;
cursor: pointer;
border-radius: 2px;
font-size: 11px;
font-family: 'Montserrat';
font-weight: normal;
}
.post-comment-btn:hover {
background: #ff8521;
}
.shareholder {
position: relative;
}
.share-popup {
background: url(../img/share-popup.png) left top no-repeat;
display: none;
position: absolute;
top: 28px;
right: 3px;
width: 29px;
height: 79px;
padding-top: 10px;
}
.share-popup a {
width: 12px;
height: 12px;
display: block;
margin: 0 auto;
margin-bottom: 13px;
}
.shareholder span {
cursor: pointer;
}
.content-wrapper.columns {
max-width: 1140px;
}
.columns {
padding-bottom: 34px;
}
.columns-block-lbl {
padding-left: 1.8%;
font-family: 'Montserrat';
font-size: 15px;
color: #141d1e;
font-weight: normal;
text-transform: uppercase;
margin-bottom: 13px;
}
.columns-block-lbl span {
background: url(../img/columns-bg.png) left bottom no-repeat;
padding-bottom: 18px;
display: block;
}
.mm-12 {
width: 70%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-6 {
width: 63%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-4 {
width: 21%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-3 {
width: 29.7%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.mm-2 {
width: 46.5%;
padding: 0px 1.7% 0px 1.7%;
float: left;
}
.columns-block {
margin-bottom: 48px;
}
.column {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.columns-block {
font-family: 'Raleway';
}
.typography {
font-family: 'Raleway';
padding-bottom: 104px;
}
.typography-heading {
text-align: center;
margin-bottom: 35px;
font-size: 15px;
color: #141d1e;
font-weight: 500;
text-transform: uppercase;
background: url("../img/columns-bg.png") center bottom no-repeat;
padding-bottom: 17px;
}
.typography h1 {
font-family: 'Montserrat';
margin-bottom: 11px;
text-transform: uppercase;
font-size: 23px;
color: #141d1e;
font-weight: normal;
}
.typography h2 {
font-family: 'Montserrat';
margin-bottom: 11px;
text-transform: uppercase;
font-size: 20px;
color: #141d1e;
font-weight: normal;
}
.typography h3 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 18px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography h4 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 16px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography h5 {
font-family: 'Montserrat';
margin-bottom: 12px;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
color: #141d1e;
font-weight: normal;
}
.typography p {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.typography-block {
margin-bottom: 29px;
}
.block-qoutes {
padding: 20px 0px 0px 0px;
}
.blockqoute-tp-a {
border-left: 2px solid #ff7200;
margin-bottom: 12px;
padding-left: 17px;
}
.blockqoute-tp-a span {
display: block;
margin-bottom: 7px;
font-size: 16px;
color: #414f51;
line-height: 27px;
}
.blockqoute-tp-a b {
font-weight: normal;
font-size: 13px;
padding-bottom: 5px;
display: block;
color: #6b7373;
}
.blockqoute-tp-a.float-left {
width: 320px;
float: left;
margin-top: 5px;
margin-right: 40px;
}
.blockqoute-tp-a.float-right {
width: 320px;
float: right;
margin-top: 5px;
margin-left: 40px;
}
.highlights {
padding: 35px 0px 0px 0px;
}
.hightile-a {
display: inline-block;
background: #ff7200;
color: #fff;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.hightile-b {
display: inline-block;
background: #141d1e;
color: #fff;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.hightile-c {
display: inline-block;
background: #e7e7e7;
color: #2c3132;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
margin-left: 3px;
margin-right: 3px;
}
.dropcaps {
padding: 35px 0px 0px 0px;
}
.accordeons-toggles {
padding-bottom: 47px;
}
.shortcodes-left {
width: 48.8%;
float: left;
}
.shortcodes-right {
width: 48.8%;
float: right;
}
.toggle {
margin-top: 1px;
}
.toggle-ia-a {
width: 100%;
float: left;
}
.toggle-ia-l {
width: 58px;
float: left;
overflow: hidden;
}
.toggle-ia-r {
margin: 0px 0px 0px 58px;
}
.toggle-ia-rb {
width: 100%;
float: left;
overflow: hidden;
}
.toggle-trigger {
width: 40px;
height: 40px;
display: block;
background: url(../img/toggle.png) left top no-repeat;
}
.toggle-lbl {
font-size: 14px;
margin-top: 12px;
margin-bottom: 11px;
color: #4f5657;
text-transform: uppercase;
font-weight: 500;
}
.toggle-txt {
display: none;
padding-bottom: 7px;
padding-top: 2px;
font-size: 14px;
color: #606869;
line-height: 25px;
}
.toggle-i {
margin-bottom: 10px;
}
.toggle-i.open .toggle-trigger {
background-position: left -40px;
}
.toggle-i:first-child .toggle-txt {
display: block;
}
.accordeon-a {
cursor: pointer;
border: 1px solid #e3e3e3;
border-radius: 2px;
padding: 12px 13px 11px 13px;
}
.accordeon-icon {
display: block;
margin: 3px 18px 0px 0px;
background: url(../img/accordeon-i.png) left top no-repeat;
float: left;
width: 10px;
height: 10px;
}
.accordeon-a span {
font-weight: 500;
font-size: 14p;
color: #4f5657;
text-transform: uppercase;
float: left;
}
.accordeon-b {
font-size: 14px;
display: none;
color: #606869;
line-height: 25px;
padding: 16px 0px 6px 43px;
}
.accordeon-item {
margin-bottom: 10px;
}
.accordeon-item:first-child .accordeon-b {
display: block;
}
.accordeon-item.open .accordeon-icon {
background-position: left -10px;
}
.tabs {
padding-bottom: 34px;
}
.tabs .typography-heading {
margin-bottom: 42px;
}
.tabs-type-a .tabs-nav li {
float: left;
margin-right: 4px;
}
.tabs-type-a .tabs-nav a {
display: inline-block;
font-size: 12px;
color: #656b70;
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
border: 1px solid #e3e3e3;
border-radius: 2px;
padding: 13px 20px 13px 20px;
}
.tabs-type-a .tabs-nav a:hover {
color: #30353a;
}
.tabs-type-a .tabs-content {
padding-top: 15px;
}
.tabs-type-a .tabs-nav a.active {
color: #ff7200;
}
.tabs-content-i {
padding-bottom: 5px;
padding-top: 3px;
display: none;
}
.tabs-content-i:first-child {
display: block;
}
.tabs-content-i p {
margin-bottom: 24px;
}
.tabs-content-i p:last-child {
margin-bottom: 0px;
}
.tabs-type-bi-a {
width: 100%;
float: left;
}
.tabs-type-bi-l {
width: 128px;
float: left;
}
.tabs-type-bi-r {
margin: 0px 0px 0px 128px;
}
.tabs-type-bi-rb {
width: 100%;
float: left;
border-left: 1px solid #e3e3e3;
overflow: hidden;
}
.tabs-type-b .tabs-nav a {
text-align: center;
display: block;
font-size: 12px;
position: relative;
border: 1px solid transparent;
border-right: 0px;
border-radius: 2px;
color: #656b70;
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
padding: 14px 0px 13px 0px;
}
.tabs-type-b .tabs-nav a span {
display: none;
width: 5px;
height: 100%;
background: #fff;
position: absolute;
top: 0px;
right: -2px;
}
.tabs-type-b .tabs-nav a.active,
.tabs-type-b .tabs-nav a.active:hover {
color: #ff7200;
border: 1px solid #e3e3e3;
border-right: 0px;
}
.tabs-type-b .tabs-nav a.active span {
display: block;
}
.tabs-type-b .tabs-nav a:hover {
color: #30353a;
}
.tabs-type-bi-p {
padding-left: 13px;
}
.message-box {
padding-bottom: 44px;
}
.message-box .typography-heading {
margin-bottom: 41px;
}
.message-box-a {
border: 1px solid #e3e3e3;
border-radius: 2px;
margin-bottom: 12px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #555a5e;
text-align: center;
padding: 21px 0px 20px 0px;
}
.message-box-b {
border: 1px solid #f7f7f7;
background: #f7f7f7;
margin-bottom: 12px;
border-radius: 2px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #30353a;
text-align: center;
padding: 21px 0px 20px 0px;
}
.message-box-c {
border: 1px solid #ff7200;
background: #ff7200;
margin-bottom: 12px;
border-radius: 2px;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
color: #fff;
text-align: center;
padding: 21px 0px 20px 0px;
}
.list-elements {
padding-bottom: 39px;
}
.list-elements .typography-heading {
margin-bottom: 37px;
}
.list-row-i {
float: left;
width: 31%;
margin-right: 3.5%;
}
.list-row-i:last-child {
float: right;
margin: 0px;
}
.marked-a li {
line-height: 18px;
background: url(../img/marked-01.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 3px;
}
.marked-b li {
line-height: 18px;
background: url(../img/marked-02.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 2px;
}
.marked-c li {
line-height: 18px;
background: url(../img/marked-03.png) left top no-repeat;
font-size: 14px;
color: #606869;
padding: 0px 0px 0px 18px;
margin-bottom: 13px;
background-position: left 2px;
}
.small-push-3 {
position: static;
display: block;
width: 200px;
margin: 0 auto;
padding: 0px !important;
float: none;
}
.small-push-3 a {
width: auto;
display: block;
}
.tables {
padding-bottom: 20px;
}
.tables .typography-heading {
margin-bottom: 40px;
}
.table-a {
width: 100%;
border-collapse: collapse;
}
.table-a th,
.table-a td {
border: 1px solid #e6e6e6;
font-family: 'Raleway';
}
.table-a th {
font-weight: 600;
padding: 13px 14px 13px 14px;
text-transform: uppercase;
font-size: 12px;
color: #2f3341;
text-align: left;
}
.table-a td {
font-family: 'Open Sans';
padding: 12px 14px 12px 14px;
font-size: 13px;
color: #6b7373;
}
.table-a tr:nth-child(2n+1) td {
background: #fcfcfc;
}
.table-a.light tr th,
.table-a.light tr td {
border-left: 0px;
border-right: 0px;
}
.icon_combination {
padding-bottom: 89px;
}
.icon_combination .typography-heading {
margin-bottom: 40px;
font-family: 'Montserrat';
}
.icons-three-colls .icons-item {
width: 30.6%;
margin-right: 4%;
text-align: center;
float: left;
}
.icons-three-colls .icons-item:last-child {
float: right;
margin: 0px;
}
.icons-two-colls {
padding-top: 66px;
}
.icons-two-colls .icons-item {
width: 20.5%;
margin-right: 6%;
text-align: center;
float: left;
}
.icons-two-colls .icons-item:last-child {
float: right;
margin: 0px;
}
.icons-item-img {
margin-bottom: 21px;
}
.icons-item-lbl {
font-family: 'Montserrat';
margin-bottom: 16px;
text-transform: uppercase;
color: #3a4142;
font-weight: normal;
}
.icons-item-txt {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.typography-heading {
font-family: 'Montserrat';
}
.counters {
padding-bottom: 93px;
}
.counters .typography-heading {
margin-bottom: 28px;
font-family: 'Montserrat';
}
.counters-five-colls .counters-row-i {
float: left;
margin-right: 7.2%;
width: 14%;
text-align: center;
}
.counters-five-colls .counters-row-i:last-child {
float: right;
margin: 0px;
}
.counters-five-colls b {
background: url(../img/counters-d.png) center bottom no-repeat;
padding-bottom: 9px;
margin-bottom: 9px;
}
.counters-four-colls {
padding-top: 55px;
}
.counters-four-colls .counters-row-i {
float: left;
margin-right: 2%;
width: 23.5%;
text-align: center;
}
.counters-four-colls .counters-row-i:last-child {
float: right;
margin: 0px;
}
.counters-four-colls b {
margin-bottom: 7px;
}
.counters-row-i b {
display: block;
font-size: 50px;
color: #373737;
font-weight: 300;
}
.counters-row-i span {
display: block;
font-size: 12px;
color: #4d4d4d;
font-weight: 500;
text-transform: uppercase;
}
.counters-row-i img {
margin-bottom: 2px;
}
.progress-bars {
padding-bottom: 77px;
}
.progress-bars .typography-heading {
margin-bottom: 37px;
}
.chart {
position: relative;
display: inline-block;
width: 131px;
height: 131px;
text-align: center;
font-family: 'Open Sans';
font-weight: 600;
}
.chart canvas {
position: absolute;
top: 0;
left: 0;
}
.percent {
display: inline-block;
line-height: 131px;
z-index: 2;
padding-left: 7px;
}
.percent:after {
content: '%';
font-family: 'Open Sans';
font-weight: 600;
margin-left: 0.1em;
font-size: 15px;
}
.pie-charts {
padding-bottom: 89px;
}
.pie-charts .typography-heading {
margin-bottom: 40px;
}
.pie-charts-i {
width: 20.1%;
margin-right: 6.5%;
text-align: center;
float: left;
}
.pie-charts-i:last-child {
float: right;
margin: 0px;
}
.pie-charts-a {
margin-bottom: 22px;
}
.pie-charts-lbl {
text-transform: uppercase;
font-size: 14px;
margin-bottom: 8px;
color: #3a4142;
font-weight: 500;
padding-bottom: 11px;
background: url(../img/columns-bg.png) center bottom no-repeat;
}
.pie-charts-txt {
font-size: 14px;
color: #6b7373;
line-height: 25px;
}
.align-right {
text-align: right;
}
.interactive-block .typography-heading {
margin-bottom: 40px;
}
.interactive-inverse {
padding-top: 19px;
}
.inter-i {
margin-bottom: 34px;
}
.inter-ia {
width: 100%;
float: left;
}
.inter-i-l {
width: 53px;
float: left;
overflow: hidden;
}
.inter-i-r {
margin: 0px 0px 0px 53px;
}
.inter-i-rb {
width: 100%;
float: left;
overflow: hidden;
}
.inter-i-b {
padding: 1px 0px 0px 13px;
}
.inter-i-lbl {
font-family: 'Montserrat';
text-transform: uppercase;
margin-bottom: 10px;
color: #3a4142;
font-size: 14px;
font-weight: normal;
}
.inter-i-txt {
font-size: 14px;
color: #606869;
line-height: 25px;
}
.mp-popular {
padding-left: 20px;
padding-right: 20px;
}
.mp-popular-row .offer-slider-i {
width: 31.3%;
}
.testimonials-b {
padding-left: 60px;
padding-right: 60px;
}
.row {
display: none;
}
.row.collapse {
display: block;
}
.datepicker-popup {
margin-top: 15px;
margin-left: -8px;
}
.form-element-popup-container-spacer {
display: none;
}
@media screen and (max-width: 1130px) {
.mp-popular-row .offer-slider-i {
width: 31.1%;
margin-right: 3.3%;
}
.mp-popular-row .offer-slider-i:last-child {
margin-right: 0px;
float: right;
}
.swiper-pagination {
display: none;
}
.special-offer-b {
display: none;
}
.page-search {
float: none;
display: inline-block;
margin: 0px;
margin-right: 0px;
vertical-align: top;
}
.special-offer-a {
float: none;
display: inline-block;
vertical-align: top;
margin-left: 10px;
}
.wrapper-a {
text-align: center;
}
.page-search-content label,
.special-offer-foot-l {
text-align: left;
}
.mp-slider-lbl {
padding-top: 170px;
}
.mp-slider .arrow-left {
left: 20px;
}
.mp-slider .arrow-right {
right: 20px;
}
.mp-slider-lbl {
padding-left: 20px;
padding-right: 20px;
width: auto;
}
.offer-slider-c .owl-next,
.offer-slider-c .owl-prev {
display: none !important;
}
.mp-b-left {
display: none;
}
.mp-b-right {
float: none;
width: 100%;
}
.wrapper-padding,
.offer-slider-c,
.offer-slider header,
.mp-popular,
.partners,
.testimonials,
.inner-breadcrumbs .content-wrapper,
.about-content .content-wrapper,
.why-we .content-wrapper,
.about-slider-h,
.blog-page,
.contacts-page,
.typography .content-wrapper,
.inner-page .content-wrapper,
.portfolio-holder {
padding-left: 60px;
padding-right: 60px;
}
.hdr-srch-overlay-a {
margin-left: 60px;
margin-right: 60px;
}
.about-content.no-wrapper .content-wrapper {
padding-left: 0px;
padding-right: 0px;
}
.columns .content-wrapper {
padding-left: 47px;
padding-right: 47px;
}
.blog-wrapper {
padding-left: 47px;
padding-right: 47px;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 41.5%;
}
.footer-a .section:last-child {
float: none;
width: 100%;
clear: both;
}
.footer-a .section {
width: 37%;
}
.footer-a .section:nth-child(3) {
float: right;
width: 230px;
}
.footer-subscribe {
width: 100%;
}
.footer-subscribe-a input {
width: 98%;
}
.offer-slider-devider {
display: none;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 440px;
}
.srch-horizontal {
margin-right: 0px;
}
.srch-horizontal .search-line-a.middle:last-child {
margin-right: 0px;
}
.search-line-a.middle input[type="text"] {
width: 161px;
}
.search-line-select.middle {
width: 270px;
margin-top: 16px;
}
.search-line-select.middle .search-select {
width: 270px;
}
.search-select select {
width: 108%;
background-position: 93% center;
}
.full-width-search .wrapper-a {
bottom: 147px;
}
.search-asvanced .search-line-a.middle-a input[type="text"] {
width: 108px;
}
.search-asvanced .search-select.full-width-a {
width: 270px;
}
.search-asvanced .search-line-select.middle-b {
margin-left: 20px;
}
.search-asvanced .search-select.full-width-b {
width: 270px;
}
.custom-select {
text-align: left;
}
.search-type-padding {
padding-left: 60px;
padding-right: 60px;
}
.partners {
padding-bottom: 7px;
}
.partners a:first-child {
margin-left: 24px;
}
.partners a:last-child {
margin-right: 24px;
}
.partners a {
margin-bottom: 25px;
display: inline-block;
}
.pop-destinations {
padding-left: 60px;
padding-right: 60px;
}
.t-experience-i:first-child {
margin-left: 29px;
}
.t-experience-i:last-child {
margin-right: 29px;
}
.alt-fligt-table {
width: 32%;
margin-right: 2%;
}
.two-colls-left {
width: 30%;
}
.two-colls-right {
margin-left: 30%;
}
#departure_return {
width: 93%;
}
.two-colls-right .padding {
padding-left: 16px;
}
.alt-fligt-table .cat-list-btn {
padding-left: 15px;
padding-right: 15px;
}
.alt-fligt-table .flt-i-price-b {
font-size: 8px;
}
.alt-fligt-table-info .alt-departure {
margin-bottom: 10px;
}
.alt-fligt-table-content {
padding-left: 0px;
padding-right: 0px;
}
.search-select select {
width: 118%;
}
.counters-i {
width: 18%;
margin-right: 2%;
}
.counters-i:first-child {
margin-left: 0px;
}
.sp-page-l {
margin-right: 35%;
}
.sp-page-r {
width: 35%;
margin-left: -35%;
}
.alt-time {
margin-top: 10px;
}
.alt-details-i:nth-child(3) {
margin-top: 12px;
}
.sp-page-l {
margin-right: 33%;
}
.sp-page-r {
width: 33%;
margin-left: -33%;
}
.chk-fligth-devider,
.chk-fligth-time {
display: none;
}
.chk-departure {
margin-bottom: 5px;
}
.chk-departure,
.chk-arrival {
width: 100%;
}
.chk-departure span,
.chk-arrival span {
display: inline;
float: none;
}
.chk-departure b,
.chk-arrival b {
display: inline;
float: none;
}
.chk-departure b br,
.chk-arrival b br {
display: none;
}
.booking-form .booking-form-i {
width: 100%;
float: none;
}
.form-calendar {
float: left;
margin-left: 5px;
}
.flight-image img {
width: 100%;
}
.tab-calendar-colls table tbody td {
height: 55px;
}
.flight-d-left {
width: auto;
border: 0px;
float: none;
display: block;
margin: 0px 0px 20px 0px;
padding: 0px;
}
.flight-d-right {
width: auto;
float: none;
display: inline;
margin: 0px;
padding: 0px;
}
.flight-d-rightp {
padding: 0px;
}
.book-btn {
width: 100%;
}
.book-btn-l {
width: 18%;
}
.book-btn-r {
width: 81%;
}
.wishlist-btn-l {
width: 18%;
}
.wishlist-btn-r {
width: 81%;
}
.preferences-list li {
width: 40%;
float: left;
margin-right: 0px;
}
.preferences-list li:nth-child(2n) {
float: right;
margin-right: 0px;
}
.faq-item-left {
margin-right: 0px;
}
.faq-item-i {
display: none;
}
.flt-i-b {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-c {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-padding {
padding: 20px 0px 0px 0px;
text-align: right;
}
.flight-details-l {
float: none;
margin-bottom: 12px;
}
.flight-details-r {
float: none;
margin-bottom: 12px;
}
.tab-gallery-big img {
width: 100%;
}
.content-tabs-head ul li a {
padding-left: 12px;
padding-right: 12px;
}
.preferences-list-alt li {
width: 40%;
float: left;
margin-right: 0px;
}
.preferences-list-alt li:nth-child(2n) {
width: 40%;
float: right;
margin-right: 0px;
}
.hotel-reviews-i {
width: 45%;
float: left;
margin-right: 0px;
}
.hotel-reviews-i:nth-child(2n) {
width: 45%;
float: right;
margin-right: 0px;
}
.todo-row .cat-list-content-l {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.todo-row .cat-list-content-r {
width: 100%;
float: none;
overflow: visible;
margin: 0px 0px 0px 0px;
}
.todo-row .cat-list-content-p {
padding-left: 0px;
}
.cat-list-content-lpadding {
/*border-right: 0px ;*/
}
.shortcodes-left img,
.shortcodes-right img {
width: 100%;
}
.offer-slider-txt {
min-height: 80px;
}
.with-text .offer-slider-txt {
min-height: 180px;
}
.offer-slider-link a {
font-size: 25px;
}
.catalog-head.large label {
float: none;
display: block;
margin-bottom: 10px;
}
.catalog-head.large .search-select {
width: 16%;
}
.list-rows .cat-list-item-l {
width: 30%;
}
.list-rows .cat-list-item-l img {
width: 100%;
}
.list-rows .cat-list-item-r {
margin-left: 30%;
}
.list-rows .cat-list-content-r {
overflow: visible;
}
.list-rows .cat-list-content-p {
padding-left: 18px;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.portfolio-three-colls .portfolio-i {
width: 31.1%;
margin-left: 1.1%;
margin-right: 1.1%;
}
.portfolio-holder-three {
padding-left: 51px;
padding-right: 51px;
}
.tour-i-holder {
float: none;
width: 100%;
}
.tour-duration {
width: 100%;
float: none;
margin: 8px 0px 0px 0px;
}
.header-nav ul li {
margin-left: 20px;
}
.theme-teaser-r img {
width: 100%;
}
}
@media screen and (max-width: 1050px) {
.tab-reasons-i,
.tab-reasons-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
}
@media screen and (max-width: 1035px) {
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.tab-calendar-colls table tbody td {
height: 40px;
}
.chk-nights {
width: 100%;
float: none;
margin: 0px 0px 10px 0px;
display: block;
}
.chk-line {
float: none;
width: 100%;
margin: 0px;
display: block;
}
.chk-persons {
display: block;
margin-top: 5px;
}
.rates-line {
width: 100%;
float: none;
}
.rates-line-right {
width: 89%;
float: left;
margin-left: 0px;
}
.grid .offer-slider-l {
width: 100%;
margin-bottom: 12px;
float: none;
}
.grid .offer-slider-r {
width: 100%;
float: none;
}
.columns .content-wrapper {
padding-left: 48px;
padding-right: 48px;
}
}
@media screen and (max-width: 1010px) {
.footer-a .section {
width: 35%;
}
.header-curency {
display: none;
}
.header-viewed {
display: none;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 317px;
}
.search-line-a.middle input[type="text"] {
width: 124px;
}
.search-line-select.middle {
width: 204px;
margin-top: 16px;
}
.search-line-select.middle .search-select {
width: 204px;
}
.search-only .mp-slider-lbl {
padding-top: 167px;
}
.search-asvanced .search-select.full-width-a {
width: 170px;
}
.search-asvanced .search-select.full-width-b {
width: 170px;
}
.search-select.full-width select,
.search-select.full-width-a select,
.search-select.full-width-b select,
.search-select.full-width-c select {
background-position: 90% center;
width: 111%;
}
.advantages-i {
width: 100%;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 18px;
}
.advantages-i:last-child {
margin-bottom: 0px;
}
.blog-sidebar-r {
width: 25%;
margin-left: -25.2%;
margin-top: 12px;
}
.blog-sidebar-l {
margin-right: 25%;
}
.search-widget input[type="text"] {
display: block;
width: 90%;
}
.blog-sidebar-p {
padding-right: 10px;
}
.blog-post-l {
width: 19%;
}
.blog-post-c {
margin-left: 19%;
}
.blog-post-info {
font-size: 9px;
}
.tweeter-item-r {
width: 89%;
}
.blog-post-info div {
line-height: 18px;
margin-bottom: 10px;
}
.flight-d-depart {
float: none;
margin-bottom: 20px;
}
.flight-d-time {
float: none;
margin-bottom: 20px;
}
.flight-d-arrival {
float: none;
}
.h-stars-list {
float: none;
margin: 0px 0px 0px 0px;
}
.h-stars-list li {
margin-bottom: 4px;
}
.h-stars-lbl {
float: none;
clear: both;
margin: 5px 0px 10px 0px;
}
.h-add-review {
float: none;
}
.content-tabs-head ul li a {
padding-left: 9px;
padding-right: 9px;
}
.facilities table td {
line-height: 21px;
}
.portfolio-i {
width: 31.1%;
margin-right: 1.1%;
margin-left: 1.1%;
}
.columns .content-wrapper {
padding-left: 49px;
padding-right: 49px;
}
.portfolio-holder {
padding-left: 53px;
padding-right: 52px;
}
.shortcodes-left,
.shortcodes-right {
width: 48%;
}
.tabs-type-a .tabs-nav a {
padding-left: 10px;
padding-right: 10px;
}
.header-nav ul li {
margin-left: 18px;
}
.header-nav {
display: none;
}
.hdr-srch-devider {
display: none;
}
.menu-btn {
display: block;
}
}
@media screen and (max-width: 910px) {
.header-social {
display: none;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 40.5%;
}
.footer-a .section {
width: 26%;
margin-right: 10%;
}
.footer-a .section:nth-child(3) {
margin: 0px;
width: 170px;
}
.tweet {
width: auto;
}
.t-experience-i:first-child,
.t-experience-i:last-child,
.t-experience-i {
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
width: 100%;
}
.t-experience-i:last-child {
margin-bottom: 0px;
}
.theme-teaser-r {
display: none;
}
.theme-teaser-l {
width: 100%;
padding-right: 0px;
text-align: center;
}
.two-colls-left {
width: 100%;
margin: 0px;
padding: 0px;
float: none;
}
.two-colls-right {
width: 100%;
margin: 0px;
padding: 0px;
float: none;
}
.two-colls-right .padding {
padding-left: 0px;
}
.two-colls-left .srch-tab-left {
width: 48%;
}
.two-colls-left .srch-tab-right {
width: 48%;
}
.team-row-i {
width: 49%;
float: left;
margin: 0px 0px 20px 0px;
}
.team-row-i:nth-child(2n) {
width: 49%;
float: right;
margin: 0px 0px 20px 0px;
}
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 1.64%;
margin-right: 1.64%;
width: 46.5%;
}
.blog-sidebar-l {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.blog-sidebar-r {
width: 100%;
float: none;
margin: 0px;
}
.blog-sidebar-p {
padding: 0px;
}
.blog-post-p {
padding-right: 0px;
}
.tweeter-item-r {
width: 97%;
}
.blog-pagination {
margin-left: 0px;
margin-bottom: 60px;
}
.blog-sidebar {
float: none;
}
.search-widget input[type="text"] {
width: 97%;
}
.sp-page-l {
margin-right: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.sp-page-r {
width: 100%;
margin: 0px;
}
.sp-page-p {
padding-right: 0px;
}
.alt-flight-lr .padding {
padding-left: 15px;
}
.alt-departure {
width: auto;
float: left;
margin-bottom: 0px;
margin-right: 17px;
}
.alt-arrival {
width: auto;
float: left;
margin-bottom: 0px;
margin-right: 17px;
}
.alt-time {
width: auto;
float: left;
margin-bottom: 0px;
margin-top: 0px;
margin-right: 0px;
}
.tab-calendar-colls table tbody td {
height: 72px;
}
.flight-d-depart {
float: left;
margin-bottom: 20px;
}
.flight-d-time {
float: left;
margin-bottom: 20px;
}
.flight-d-arrival {
float: left;
}
.flight-d-left {
float: left;
margin-right: 35px;
}
.flight-d-right {
float: left;
}
.book-btn-l {
display: none;
}
.book-btn-r {
width: 100%;
}
.tab-calendar-collsl {
width: 100%;
float: none;
margin: 0px;
}
.tab-calendar-collsr {
width: 100%;
float: none;
margin: 0px;
}
.map-symbol {
float: left;
margin-right: 20px;
}
.tab-calendar-s {
padding-left: 0px;
}
.wishlist-btn-l {
display: none;
}
.wishlist-btn-r {
width: 100%;
}
.counters-five-colls {
text-align: center;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
float: none;
vertical-align: top;
width: 150px;
display: inline-block;
margin: 0px 20px 25px 20px;
}
.p-item-page-l {
width: 100%;
float: none;
margin: 0px;
}
.p-item-page-r {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.p-item-padding {
margin-right: 0px;
}
.p-item-page {
float: none;
}
.with-text .offer-slider-txt,
.offer-slider-txt {
min-height: auto;
}
@media screen and (max-width: 860px) {
.shortcodes-left, .shortcodes-right {
width: 100%;
float: none;
margin: 0px 0px 60px 0px;
}
.about-content .about-slider-txt {
width: 100%
}
.offer-slider header p {
width: 100%;
}
.mp-popular header p,
.page-lbl p {
width: 100%;
}
.fancybox-prev span {
left: 10px;
}
.fancybox-next span {
right: 10px;
}
}
@media screen and (max-width: 800px) {
.special-offer-a {
display: none;
}
.tweeter-item-r {
width: 96%;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: 36%;
}
/*.mp-slider-lbl {padding-top:100px;}*/
.footer-a .section {
width: 23%;
margin-right: 8%;
}
.footer-a .section:nth-child(3) {
margin: 0px;
width: 140px;
}
.page-search.full-width-search {
width: 100%;
}
.search-line-a.large input[type="text"] {
width: 287px;
}
.search-line-select.middle .search-select {
width: 83px;
}
.search-select select {
background-position: 86% center;
width: 115%;
}
.search-line-a.large input[type="text"] {
margin-bottom: 18px;
}
.search-line-select.middle {
width: 87px;
}
.full-width-search .wrapper-a {
bottom: 299px;
}
.search-line-select.middle {
margin-top: 18px;
}
.search-only .mp-slider-lbl {
padding-top: 110px;
}
.full-width-search .page-search-p {
padding-bottom: 29px;
}
.offer-slider-lbl {
line-height: 36px;
padding-bottom: 12px;
}
.srch-tab-line .custom-select {
text-align: left;
}
.page-search.full-width-search {
width: 347px;
}
.search-type-padding {
padding: 0px;
}
.search-large-i {
width: 100%;
float: none;
margin: 0px 0px 16px 0px;
}
.search-large-i:nth-child(3) {
float: none;
margin: 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i {
width: 47.6%;
float: left;
margin: 0px 0px 20px 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i:nth-child(2n) {
width: 47.6%;
float: right;
margin: 0px 0px 20px 0px;
}
.flat-adv,
.flat-adv:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 45px 0px;
}
.flat-adv.large .flat-adv-l {
width: 100%;
float: none;
margin: 0px 0px 12px 0px;
padding: 0px;
text-align: center;
}
.flat-adv.large .flat-adv-r {
width: 100%;
float: none;
margin: 0px 0px 12px 0px;
padding: 0px;
text-align: center;
}
.flat-adv-a {
float: none;
}
.flat-adv-rb {
float: none;
}
.breadcrumbs {
display: none;
}
.tree-colls-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.three-team {
text-align: center;
}
.three-team .tree-colls-i {
width: 41%;
display: inline-block;
float: none;
margin: 0px 20px 20px 20px;
}
.about-two-colls-l {
width: 100%;
margin: 0px 0px 20px 0px;
float: none;
}
.about-two-colls-r {
width: 100%;
margin: 0px;
float: none;
}
.about-two-colls-rp {
padding-left: 0px;
}
.counters {
text-align: center;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 22%;
vertical-align: top;
float: none;
display: inline-block;
margin: 0px 20px 30px 20px;
}
.comlete-alert-a b {
margin-bottom: 5px;
}
.alt-time {
margin-top: 10px;
}
.datepicker-v2-month-container {
margin-top: 15px !important;
}
.search-engine-calendar-done-button {
margin-top: 10px;
}
.contacts-colls-l {
width: 100%;
float: none;
margin: 0px 0px 50px 0px;
padding: 0px;
}
.contacts-colls-r {
width: 100%;
float: none;
margin: 0px;
padding: 0px;
}
.portfolio-full-more-l {
width: 100%;
float: none;
margin: 0px 0px 50px 0px;
}
.portfolio-full-more-r {
width: 100%;
float: none;
margin: 0px;
}
.portfolio-full-more-p {
padding-left: 0px;
}
.list-rows .cat-list-item-l {
width: 100%;
float: none;
margin: 0px;
}
.list-rows .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.services-i {
width: 47%;
margin: 0px 0px 20px 0px;
float: left;
}
.services-i:nth-child(2n) {
float: right;
}
.solutions-i {
width: 100%;
margin: 0px 0px 20px 0px;
float: none;
}
.list-row-i {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.list-row-i:last-child {
margin-bottom: 0px;
}
.datepicker-popup {
width: 490px !important;
min-width: 490px !important;
}
.datepicker-v2-month-container:first-child,
.datepicker-v2-month-container:last-child {
width: 48%;
}
.datepicker-v2-month-container:first-child table,
.datepicker-v2-month-container:last-child table {
width: 100%;
}
.footer-a .section,
.footer-a .section:nth-child(3) {
width: 100%;
float: none;
margin-bottom: 21px;
}
.footer-social {
display: none;
}
.footer-subscribe {
width: 98%;
}
.footer-a .section:nth-child(1) {
margin-bottom: 42px;
}
.footer-a .section:nth-child(2) {
margin-bottom: 18px;
}
.footer-a .section:nth-child(3) {
margin-bottom: 43px;
}
}
@media screen and (max-width: 734px) {
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.content-tabs-head ul li {
float: none;
margin: 0px;
width: 100%;
border-bottom: 1px solid #fff;
}
.tab-calendar-colls table tbody td {
height: 65px;
}
.content-tabs-head.last-item ul li:last-child a {
width: 100%;
}
.cat-list-content-l {
width: 100%;
float: none;
margin: 0px;
}
.cat-list-content-r {
width: 100%;
float: none;
margin: 0px;
overflow: visible;
}
.available-row .cat-list-content-p {
padding-left: 0px;
}
.cat-list-content-lpadding {
padding-right: 0px;
}
.pie-charts-i {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.pie-charts-i:nth-child(2n) {
float: right;
}
.icons-two-colls .icons-item {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.icons-two-colls .icons-item:nth-child(2n) {
float: right;
}
.counters-four-colls .counters-row-i {
width: 49%;
float: left;
margin: 0px 0px 30px 0px;
}
.counters-four-colls .counters-row-i:nth-child(2n) {
width: 49%;
float: right;
margin: 0px 0px 30px 0px;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
width: 49%;
margin-right: 0px;
margin-left: 0px;
}
.shortcodes-left {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.shortcodes-right {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.offer-slider-i.catalog-i,
.offer-slider-i.catalog-i:nth-child(3n) {
margin-bottom: 20px;
width: 48%;
float: left;
margin-left: 0px;
margin-right: 0px;
}
.offer-slider-i.catalog-i:nth-child(2n) {
width: 48%;
float: right;
margin-left: 0px;
margin-right: 0px;
}
.show-list,
.show-thumbs {
display: none;
}
.list-rows .cat-list-content-l {
margin-right: 125px;
width: auto;
float: left;
}
.list-rows .cat-list-content-r {
width: 125px;
float: left;
margin-left: -125px;
overflow: visible;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.list-rows .cat-list-content-lpadding {
padding-right: 30px;
}
.portfolio-i,
.portfolio-three-colls .portfolio-i {
width: 45.4%;
margin-right: 2.3%;
margin-left: 2.3%;
}
.portfolio-holder {
padding-left: 48px;
padding-right: 48px;
}
.tour-item .cat-list-content-lpadding {
border-right: 0px;
}
.datepicker-popup {
width: 440px !important;
min-width: 440px !important;
}
.reasons-item-a,
.reasons-item-b,
.reasons-item-c,
.reasons-item-d {
width: auto;
float: none;
}
.mp-slider-lbl {
font-size: 36px;
padding-top: 172px;
}
}
@media screen and (max-width: 660px) {
.mp-slider .arrow-left, .mp-slider .arrow-right {
display: none;
}
.mp-slider-lbl-a {
padding-left: 20px;
padding-right: 20px;
}
.popular-destinations .offer-slider-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.testimonials-holder .bx-prev,
.testimonials-holder .bx-next {
display: none;
}
.testimonials-b {
padding-left: 0px;
padding-right: 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.pop-destinations .mp-popular-row .offer-slider-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.alt-fligt-table {
width: 48%;
margin-right: 0px !important;
float: left !important;
}
.alt-fligt-table:nth-child(2n) {
width: 48%;
margin-right: 0px !important;
float: right !important;
}
.catalog-head label {
width: 100%;
display: block;
float: none;
margin: 0px 0px 10px 0px;
}
.search-select select {
width: 120%;
}
.three-team .tree-colls-i {
width: 100%;
display: block;
float: none;
margin: 0px 0px 20px 0px;
}
.tree-colls-i:last-child {
margin-bottom: 0px;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 30%;
}
.team-row-i,
.team-row-i:nth-child(2n) {
width: 100%;
float: none;
}
.tweeter-item-r {
width: 95%;
}
.search-widget input[type="text"] {
width: 95%;
}
.alt-center-l {
width: 100%;
float: none;
margin: 0px;
}
.alt-center-c {
width: 100%;
float: none;
margin: 0px;
}
.alt-logo {
width: 100%;
}
.alt-flight-a {
float: none;
}
.alt-flight-l {
width: 100%;
margin: 0px;
float: none;
}
.alt-flight-lr {
width: 100%;
float: none;
margin: 0px;
}
.alt-center-lp {
padding-right: 18px;
}
.alt-center-cp {
border-right: 0px;
padding-bottom: 20px;
padding-right: 18px;
padding-top: 0px;
}
.alt-departure,
.alt-arrival,
.alt-time {
width: auto;
float: left;
margin: 0px 9px 0px 0px;
}
.alt-flight-lr .padding {
padding-top: 0px;
padding-left: 18px;
}
.flight-d-depart {
float: none;
margin-bottom: 20px;
}
.flight-d-time {
float: none;
margin-bottom: 20px;
}
.flight-d-arrival {
float: none;
}
.flight-d-left {
width: 100%;
float: none;
}
.tab-calendar-colls table tbody td {
height: 50px;
}
.preferences-list li,
.preferences-list li:nth-child(2n) {
float: none;
width: 100%;
}
.flight-line-b {
float: none;
margin: 10px 0px 0px 32px;
}
.flight-line-b b {
display: inline;
padding-right: 12px;
margin-right: 5px;
}
.flight-line-b span {
display: inline;
}
.flight-line-b b.open {
display: inline;
}
.flt-l-b {
width: 100%;
float: none;
margin: 0px 0px 26px 0px;
}
.flt-l-c {
width: 100%;
float: none;
margin: 0px;
}
.flt-i-padding {
text-align: left;
margin-left: 25px;
}
.flight-radio {
margin-left: 0px;
}
.flight-line-b {
margin-left: 25px;
}
.alternative .flight-line-b {
float: right;
margin-right: 0px;
margin-left: 0px;
}
.alternative .flight-line-b b {
display: block;
}
.flight-details {
padding-left: 25px;
}
.tab-reasons-i {
padding: 40px 0px 0px 0px;
text-align: center;
}
.tab-reasons-i.reasons-01 {
background: url(../img/tabs-i-01.png) center top no-repeat;
}
.tab-reasons-i.reasons-02 {
background: url(../img/tabs-i-02.png) center top no-repeat;
}
.tab-reasons-i.reasons-03 {
background: url(../img/tabs-i-03.png) center top no-repeat;
}
.tab-reasons-i.reasons-04 {
background: url(../img/tabs-i-04.png) center top no-repeat;
}
.preferences-list-alt li,
.preferences-list-alt li:nth-child(2n) {
width: 100%;
float: none;
}
.guest-reviews-bl {
width: 100%;
float: none;
margin: 0px;
}
.guest-reviews-br {
width: 100%;
float: none;
margin: 0px;
}
.guest-reviews-padding {
padding-left: 0px;
padding-top: 10px;
}
.guest-rating-txt {
margin-top: 10px;
}
.review-ranger-r {
width: 100%;
float: none;
}
.review-ranger label {
float: none;
display: block;
}
.icons-three-colls .icons-item {
width: 100%;
float: none;
text-align: center;
margin: 0px 0px 25px 0px;
}
.catalog-head.large .search-select {
width: 46%;
margin-bottom: 15px;
margin-right: 0px;
float: left;
}
.catalog-head.large .search-select:nth-child(2n) {
float: right;
}
.show-table {
display: none;
}
.tour-item .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
padding: 0px;
}
.tour-item .cat-list-item-l img {
width: 100%;
}
.tour-item .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.blockqoute-tp-a.float-left {
width: auto;
float: none;
margin-right: 0px;
}
.blockqoute-tp-a.float-right {
width: auto;
float: none;
margin-left: 0px;
}
.mm-4,
.mm-3,
.mm-2,
.mm-6,
.mm-12 {
width: 100%;
float: none;
padding: 0px;
margin-bottom: 15px;
}
.columns .content-wrapper {
padding-left: 60px;
padding-right: 60px;
}
.datepicker-popup {
width: 350px !important;
min-width: 350px !important;
}
.datepicker-v2-month-container:first-child,
.datepicker-v2-month-container:last-child {
width: 100%;
}
.tour-item-a {
padding-top: 0px;
}
}
@media screen and (max-width: 560px) {
.blog-masonry-i {
margin-bottom: 38px;
opacity: 0;
margin-left: 0px;
margin-right: 0px;
width: 100%;
}
.blog-wrapper {
padding-left: 60px;
padding-right: 60px;
}
.blog-post-i {
float: none;
}
.blog-post-l {
width: 100%;
text-align: left;
float: none;
margin: 0px 0px 20px 0px;
}
.blog-post-c {
width: 100%;
float: none;
margin: 0px;
}
.blog-post-p {
padding: 0px;
}
.alt-details-i {
width: 100%;
margin: 0px 0px 12px 0px;
float: none;
}
.alt-details-i:nth-child(3) {
margin-bottom: 0px;
}
.faq-item-i {
margin-top: -5px;
}
.h-tabs-right span {
display: none;
}
.available-row .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.available-row .cat-list-item-l img {
width: 100%;
}
.available-row .cat-list-item-r {
width: 100%;
float: none;
margin: 0px;
}
.available-row .cat-list-item-p {
padding-left: 0px;
}
.hotel-reviews-i,
.hotel-reviews-i:nth-child(2n) {
width: 100%;
float: none;
}
.reviews-l {
width: 100%;
float: none;
margin: 0px 0px 25px 0px;
}
.reviews-r {
width: 100%;
float: none;
margin: 0px;
}
.todo-row .cat-list-item-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.todo-row .cat-list-item-r {
float: none;
margin: 0px;
width: 100%;
}
.todo-row .cat-list-item-l img {
width: 100%;
}
.icons-two-colls .icons-item,
.icons-two-colls .icons-item:nth-child(2n) {
width: 100%;
float: none;
text-align: center;
margin: 0px 0px 25px 0px;
}
.services-i,
.services-i:nth-child(2n) {
width: 100%;
float: none;
}
.services-i:last-child {
margin-bottom: 0px;
}
.datepicker-popup {
width: 300px !important;
min-width: 300px !important;
}
.blog-post-info div {
display: inline-block;
margin-right: 15px;
}
}
@media screen and (max-width: 500px) {
.wrapper-padding, .offer-slider-c, .offer-slider header, .mp-popular, .partners, .testimonials, .pop-destinations, .theme-teaser-padding, .mobile-menu li, .about-content .content-wrapper, .about-slider-h, .why-we .content-wrapper, .inner-breadcrumbs .content-wrapper, .blog-wrapper, .blog-page, .contacts-page, .typography .content-wrapper, .inner-page .content-wrapper, .columns .content-wrapper, .testimonials-b {
padding-left: 20px;
padding-right: 20px;
}
.hdr-srch-overlay-a {
margin-left: 20px;
margin-right: 20px;
}
.testimonials-flat {
width: auto;
}
.counters-i,
.counters-i:first-child,
.counters-i:last-child {
width: 100%;
display: block;
margin: 0px 0px 60px 0px;
}
.counters-i:last-child {
margin-bottom: 0px;
}
.about-slider-h.styled {
height: 310px;
padding: 50px 0px 0px 0px;
}
.flight-line-d {
margin-left: 6px;
margin-right: 6px;
}
.tab-reasons h2 {
line-height: 25px;
margin-bottom: 20px;
}
.rates-line-right {
width: 84%;
}
.guest-reviews-l {
width: 100%;
float: none;
margin: 0px;
text-align: center;
}
.guest-reviews-r {
width: 100%;
float: none;
margin: 0px;
text-align: center;
}
.guest-reviews-img {
margin: 0 auto;
margin-bottom: 13px;
}
.guest-reviews-br nav {
float: none;
}
.guest-rating {
float: none;
}
.guest-reviews-br nav li {
display: inline-block;
float: none;
}
.counters-five-colls .counters-row-i,
.counters-five-colls .counters-row-i:last-child {
width: 100%;
float: none;
margin: 0px 0px 30px 0px;
}
.counters-four-colls .counters-row-i,
.counters-four-colls .counters-row-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.pie-charts-i,
.pie-charts-i:nth-child(2n) {
width: 100%;
float: none;
margin: 0px 0px 40px 0px;
}
.portfolio-full-more-txt,
.portfolio-full-more-txt:nth-child(2n) {
width: 100%;
float: none;
}
.offer-slider-i.catalog-i,
.offer-slider-i.catalog-i:nth-child(2n),
.offer-slider-i.catalog-i:nth-child(3n) {
float: none;
width: 100%;
}
.list-rows .cat-list-content-l {
margin: 0px;
float: none;
width: 100%;
float: none;
}
.list-rows .cat-list-content-r {
width: 100%;
float: none;
margin: 0px;
}
.list-rows .cat-list-content-lpadding {
padding-bottom: 16px;
}
.list-rows .cat-list-content-lpadding {
padding-right: 0px;
}
.list-rows .cat-list-content-p {
padding-left: 0px;
}
.portfolio-i {
width: 100%;
margin-right: 0px;
margin-left: 0px;
}
.portfolio-holder {
padding-left: 20px;
padding-right: 20px;
}
.portfolio-three-colls .portfolio-i {
width: 100%;
margin-left: 0px;
margin-right: 0px;
}
.portfolio-holder-three {
padding-left: 20px;
padding-right: 20px;
}
.table-a tr th:nth-child(4),
.table-a tr td:nth-child(4) {
display: none;
}
.tabs-type-a .tabs-nav li {
float: none;
width: 100%;
margin: 0px 0px 5px 0px;
}
.tabs-type-a .tabs-nav li a {
width: 100%;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
.tabs-type-bi-l {
width: 100%;
float: none;
margin: 0px 0px 20px 0px;
}
.tabs-type-bi-r {
width: 100%;
float: none;
margin: 0px;
}
.tabs-type-bi-p {
padding-left: 0px;
}
.tabs-type-bi-rb {
border-left: 0px;
}
.tabs-type-b .tabs-nav a.active,
.tabs-type-b .tabs-nav a.active:hover {
border-right: 1px solid #E3E3E3 !important;
}
.tabs-type-b .tabs-nav a.active span {
display: none;
}
.accordeon-a span {
float: right;
width: 90%;
line-height: 20px;
}
.toggle-lbl {
line-height: 20px;
margin-top: 10px;
}
.datepicker-popup {
width: 280px !important;
min-width: 280px !important;
}
.testimonials-flat {
padding: 40px 0px 0px 0px;
height: 320px;
}
.list-rows .cat-list-content-lpadding {
border-right: 0px;
}
}
@media screen and (max-width: 435px) {
.form-sex {
float: none;
width: 100%;
margin-bottom: 17px;
}
.form-calendar {
float: none;
width: 100%;
margin: 0px;
}
.tab-calendar-colls table tbody td {
height: 40px;
}
.accordeon-a span {
float: right;
width: 89%;
}
.mp-slider-lbl {
font-size: 29px;
padding-top: 150px;
}
}
@media screen and (max-width: 401px) {
.alt-time {
margin-top: 10px;
}
}
@media screen and (max-width: 390px) {
.about-slider-txt {
line-height: 22px;
}
.mp-slider-lbl {
font-size: 22px;
font-weight: 300;
line-height: 30px;
}
.mp-slider-lbl-a {
font-size: 15px;
line-height: 24px;
padding-top: 11px;
padding-bottom: 19px;
}
.mp-slider-lbl {
padding-top: 123px;
}
.page-search {
width: 302px;
}
.search-tab {
padding-left: 25px;
padding-right: 26px;
}
.search-tab.nth {
padding-right: 26px;
padding-left: 25px;
}
.search-line input[type="text"] {
width: 240px;
}
.search-line-a input[type="text"],
.search-line-b input[type="text"] {
width: 102px;
}
.search-line-a,
.search-line-b {
width: 121px;
}
.search-select select {
width: 114%;
}
.search-line-select {
width: 122px;
}
.search-select {
width: 118px;
}
.search-line-select {
margin-right: 0px;
margin-bottom: 18px;
}
.search-line-select.adults {
float: right;
margin-right: 0px;
}
.search-line-select.nth {
float: none;
margin-bottom: 0px;
}
.search-line-select.nth .search-select {
width: 253px;
}
.wrapper-a {
bottom: 374px;
}
.header-phone {
border-left: 0px;
padding-left: 0px;
}
.header-lang a {
border-left: 0px;
}
.search-select.full-width {
width: 253px;
}
.search-select.full-width select {
width: 109%;
}
.search-select.half-width {
width: 118px;
}
.search-select.half-width select {
width: 113%;
}
.search-line-a.hotel-stars {
float: none;
margin-bottom: 20px;
width: 100%;
margin-right: 0px;
}
.search-line-a.hotel-stars .search-select.half-width {
width: 253px;
}
.search-line-b.peoples {
float: none;
width: 100%;
margin-right: 0px;
}
.search-line-b.peoples .search-select.half-width {
width: 253px;
}
.search-select.half-width select {
width: 110.7%;
}
.search-line-a.peoples,
.search-line-a.price {
float: none;
margin-bottom: 20px;
width: 100%;
margin-right: 0px;
}
.search-line-a.peoples .search-select.half-width,
.search-line-a.price .search-select.half-width {
width: 253px;
}
.search-line-b.class,
.search-line-b.company {
float: none;
width: 100%;
margin-right: 0px;
}
.search-line-b.class .search-select.half-width,
.search-line-b.company .search-select.half-width {
width: 253px;
}
.search-type-a .srch-tab-3c {
width: 46.5%;
float: left;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-3c:nth-child(2) {
width: 46.5%;
float: right;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-3c:nth-child(3) {
width: 100%;
float: none;
margin: 0px;
}
.search-type-b .srch-tab-3c {
width: 46.5%;
float: left;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-3c:nth-child(2) {
width: 46.5%;
float: right;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-3c:nth-child(3) {
width: 100%;
float: none;
margin: 0px;
}
.search-type-a .srch-tab-left.transformed {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.search-type-a .srch-tab-right.transformed {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.search-type-b .srch-tab-left.transformed {
width: 100%;
float: none;
margin: 0px 0px 15px 0px;
}
.search-type-b .srch-tab-right.transformed {
width: 100%;
float: none;
margin: 0px 0px 0px 0px;
}
.search-only .mp-slider-lbl {
padding-top: 60px;
}
.page-search.full-width-search {
width: 302px;
}
.page-search.full-width-search .page-search-tabs {
width: 100%;
}
.full-width-search .wrapper-a {
bottom: 374px;
}
.footer-subscribe {
width: 97.5%;
}
.alt-fligt-table {
width: 100%;
margin-right: 0px !important;
float: none !important;
}
.alt-fligt-table:nth-child(2n) {
width: 100%;
margin-right: 0px !important;
float: none !important;
}
.search-select select {
width: 122%;
}
.catalog-head .search-select {
width: 100%;
float: none;
margin-bottom: 15px;
}
.catalog-head .search-select:last-child {
margin-bottom: 0px;
}
.header-account a {
padding-left: 19px;
padding-right: 19px;
}
.header-lang {
display: none;
}
.tweeter-item-r {
width: 93.2%;
}
.search-widget input[type="text"] {
width: 93.2%;
}
.alt-departure {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-arrival {
width: 100%;
float: none;
margin-bottom: 10px;
}
.alt-time {
width: 100%;
float: none;
margin-bottom: 0px;
}
.contacts-colls .booking-form-i {
width: 100%;
float: none;
}
.booking-form .checkbox label {
width: 100%;
float: none;
}
.add-passanger {
float: none;
width: 100%;
display: block;
margin-bottom: 15px;
}
.card-type {
width: 100%;
float: none;
margin-bottom: 9px;
}
.payment-tab .checkbox label {
line-height: 19px;
}
.flight-line-a {
margin-top: 13px;
}
.flight-image span {
display: none;
}
.tab-calendar-colls table tbody td {
height: 27px;
}
.calendar-tab-select select,
.calendar-tab-select .customSelect {
width: 95%;
}
.tab-calendar-colls table tbody td span p {
padding: 4px 6px 0px 0px;
}
.flight-line-d {
margin-left: 5px;
margin-right: 5px;
}
.rates-line-right {
width: 100%;
float: none;
}
.rates-line .srch-tab-left {
width: 100%;
float: none;
margin-bottom: 15px;
}
.rates-line .srch-tab-right {
width: 100%;
float: none;
}
.rates-srch {
width: 100%;
background-position: center center;
}
.rates-srch:hover {
width: 100%;
background-position: center center;
}
.catalog-head.large .search-select,
.catalog-head.large .search-select:nth-child(2n) {
width: 100%;
float: none;
}
.catalog-head.large .search-select:nth-child(5) {
margin-bottom: 5px;
}
.accordeon-a span {
float: right;
width: 87%;
}
.datepicker-popup {
width: 210px !important;
min-width: 210px !important;
}
.testimonials-flat {
padding: 30px 0px 0px 0px;
height: 330px;
}
}
@media screen and (max-width: 313px) {
.header-logo {
margin: -12px 0px 0px 0px;
}
.header-right {
margin-top: 0;
}
}
| 0.314893 | 0.074973 |
body {
width: 100%;
height: 100%;
}
.bgdark {
background-color: #242424 !important;
}
#result {
overflow: hidden;
margin: auto;
height: 100%;
background-color: #242424;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadein-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* 다시 뒤로 갔을 때 애니메이션을 다시 실행하지 않고 해제시키기 위한 class */
.noanimation {
opacity: 1 !important;
animation: none !important;
}
.nocongrats {
opacity: 0 !important;
animation: none !important;
}
.head {
width: 100%;
text-align: center;
overflow-wrap: normal;
position: relative;
top: 30px;
opacity: 0;
font-family: "BMHANNAPro";
font-size: 7vh;
color: white;
margin: auto;
animation: fadein-up 2s;
animation-delay: 2.5s;
animation-fill-mode: forwards;
}
.head > div {
display: inline-block;
font-family: "BMHANNAPro";
}
#today {
width: 100%;
}
#foodName {
font-family: "BMHANNAPro";
font-size: 1em;
color: #ff9e2c;
}
.congrats {
opacity: 1;
text-align: center;
animation: fadeout 1s;
animation-delay: 1s;
animation-fill-mode: forwards;
}
.food {
opacity: 0;
font-family: "BMHANNAPro";
font-size: 8rem;
position: relative;
text-align: center;
top: -260px;
margin-bottom: -160px;
color: #ff9e2c;
animation: fadein 2s;
animation-delay: 1.7s;
animation-fill-mode: forwards;
}
.hashtag {
opacity: 0;
font-family: "BMHANNAPro";
font-size: 1.5em;
color: #2ac1bc;
margin-bottom: 20px;
position: relative;
bottom: 50px;
animation: fadein 1s;
animation-delay: 2.5s;
animation-fill-mode: forwards;
}
#explanation {
font-family: "BMHANNAPro";
color: white;
}
.buttons {
position: relative;
bottom: 40px;
display: flex;
flex-direction: row;
}
#hotplace,
#again {
opacity: 0;
width: 170px;
height: 50px;
border-radius: 8px;
border: 0px;
font-size: 1.3rem;
color: #fefbf9;
box-shadow: 1px 7px 6px -1px #2b2a2a;
margin: 2px;
animation: fadein-up 1s;
animation-delay: 4s;
animation-fill-mode: forwards;
}
#hotplace {
margin-right: 10px;
}
#hotplace:hover,
#again:hover {
color: #a7e4e2;
}
@media (max-width: 360px) {
#hotplace,
#again {
width: 130px;
}
.hashtag {
font-size: 1.3em;
}
}
@media (max-width: 1024px) {
#result {
width: 100%;
height: 100%;
}
}
|
src/assets/css/pages/result.css
|
body {
width: 100%;
height: 100%;
}
.bgdark {
background-color: #242424 !important;
}
#result {
overflow: hidden;
margin: auto;
height: 100%;
background-color: #242424;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadein-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* 다시 뒤로 갔을 때 애니메이션을 다시 실행하지 않고 해제시키기 위한 class */
.noanimation {
opacity: 1 !important;
animation: none !important;
}
.nocongrats {
opacity: 0 !important;
animation: none !important;
}
.head {
width: 100%;
text-align: center;
overflow-wrap: normal;
position: relative;
top: 30px;
opacity: 0;
font-family: "BMHANNAPro";
font-size: 7vh;
color: white;
margin: auto;
animation: fadein-up 2s;
animation-delay: 2.5s;
animation-fill-mode: forwards;
}
.head > div {
display: inline-block;
font-family: "BMHANNAPro";
}
#today {
width: 100%;
}
#foodName {
font-family: "BMHANNAPro";
font-size: 1em;
color: #ff9e2c;
}
.congrats {
opacity: 1;
text-align: center;
animation: fadeout 1s;
animation-delay: 1s;
animation-fill-mode: forwards;
}
.food {
opacity: 0;
font-family: "BMHANNAPro";
font-size: 8rem;
position: relative;
text-align: center;
top: -260px;
margin-bottom: -160px;
color: #ff9e2c;
animation: fadein 2s;
animation-delay: 1.7s;
animation-fill-mode: forwards;
}
.hashtag {
opacity: 0;
font-family: "BMHANNAPro";
font-size: 1.5em;
color: #2ac1bc;
margin-bottom: 20px;
position: relative;
bottom: 50px;
animation: fadein 1s;
animation-delay: 2.5s;
animation-fill-mode: forwards;
}
#explanation {
font-family: "BMHANNAPro";
color: white;
}
.buttons {
position: relative;
bottom: 40px;
display: flex;
flex-direction: row;
}
#hotplace,
#again {
opacity: 0;
width: 170px;
height: 50px;
border-radius: 8px;
border: 0px;
font-size: 1.3rem;
color: #fefbf9;
box-shadow: 1px 7px 6px -1px #2b2a2a;
margin: 2px;
animation: fadein-up 1s;
animation-delay: 4s;
animation-fill-mode: forwards;
}
#hotplace {
margin-right: 10px;
}
#hotplace:hover,
#again:hover {
color: #a7e4e2;
}
@media (max-width: 360px) {
#hotplace,
#again {
width: 130px;
}
.hashtag {
font-size: 1.3em;
}
}
@media (max-width: 1024px) {
#result {
width: 100%;
height: 100%;
}
}
| 0.47025 | 0.115262 |
html,body
{
padding: 0px;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
color: #333333;
background-color: white;
scroll-behavior: smooth;
}
#site{
margin: 8%;
margin-top: 0px;
padding-bottom: 90px;
}
.add-new{
border: solid #c9c9c9;
border-width: 1px;
color: #f5f5f5;
opacity: 0.8;
font-size: 1.1em;
padding: 15px;
padding-top: 3px;
padding-bottom: 3px;
margin: 30px;
cursor: pointer;
display: inline-block;
text-align: center;
vertical-align: middle;
background-color: #1fad4e;
}
.add-new:hover{
opacity: 1;
text-shadow: #f5f5f5 0px 0px 1px;
}
.add-new img{
width: 1em;
height: 1em;
margin-left: 5px;
vertical-align: middle;
filter: brightness(0) invert(1);
box-shadow: white 0px 0px 1px;
}
fieldset {
border-radius: 6px;
border-color: #c9c9c9;
border-width: 1px;
margin-top: 45px;
margin-bottom: 45px;
background-color: #f5f5f5;
}
fieldset legend{
font-weight: bold;
padding: 1em;
text-shadow: #bbb 0px 0px 2px;
}
.collapse-arrow::after{
content: "▲";
margin: 1em;
color: #61b9ff;
text-shadow: #61b9ff 0px 0px 4px;
cursor: pointer;
font-size: 1.2em;
}
.expand-arrow::after {
content: "▼";
}
@keyframes expand {
0%{
transform: scale(0.5);
}
90%{
transform: scale(1.1);
}
100%{
transform: scale(1.0);
}
}
/* when expand-arrow hide all siblings */
.expand-arrow ~ *{
display:none;
}
fieldset label{
padding: 1em;
padding-left: 2em;
text-shadow: #f0f0f0 0px 0px 2px;
width: 230px;
display: inline-block;
}
fieldset input{
border: solid #c9c9c9;
border-radius: 6px;
border-width: 1px;
padding: 5px;
padding-left: 15px;
color: #333333;
width: 150px;
}
fieldset input:hover{
background-color: #e8e8e8;
}
button{
border: solid #c9c9c9;
border-width: 1px;
height: 45px;
width: 170px;
color: #f5f5f5;
opacity: 0.8;
font-size: 1.1em;
margin: 30px;
cursor: pointer;
}
button:hover{
opacity: 1;
text-shadow: #f5f5f5 0px 0px 1px;
}
#save-changes{
background-color: #50affa;
float: right;
}
#save-changes::after{
content: "";
clear: both;
display: inline;
}
#delete{
background-color: #fa3c3c;
}
#reload{
background-color: #1fad4e;
}
button img{
width: 1em;
height: 1em;
margin-right: 10px;
margin-left: 10px;
filter: brightness(0) invert(1);
}
#save-changes.changed{
background-color: #deae00;
}
select{
background-color: white;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
border: solid #c9c9c9;
border-radius: 6px;
border-width: 1px;
padding: 3px;
padding-left: 15px;
color: #333333;
min-width: 150px;
cursor: pointer;
}
select:hover{
background-color: #e8e8e8;
}
.select::after{
content: "▼";
color: transparent;
text-shadow: #61b9ff -1.5em 0px 0px;
}
|
sdv/docker/sdvmodel/website/style/index.css
|
html,body
{
padding: 0px;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
color: #333333;
background-color: white;
scroll-behavior: smooth;
}
#site{
margin: 8%;
margin-top: 0px;
padding-bottom: 90px;
}
.add-new{
border: solid #c9c9c9;
border-width: 1px;
color: #f5f5f5;
opacity: 0.8;
font-size: 1.1em;
padding: 15px;
padding-top: 3px;
padding-bottom: 3px;
margin: 30px;
cursor: pointer;
display: inline-block;
text-align: center;
vertical-align: middle;
background-color: #1fad4e;
}
.add-new:hover{
opacity: 1;
text-shadow: #f5f5f5 0px 0px 1px;
}
.add-new img{
width: 1em;
height: 1em;
margin-left: 5px;
vertical-align: middle;
filter: brightness(0) invert(1);
box-shadow: white 0px 0px 1px;
}
fieldset {
border-radius: 6px;
border-color: #c9c9c9;
border-width: 1px;
margin-top: 45px;
margin-bottom: 45px;
background-color: #f5f5f5;
}
fieldset legend{
font-weight: bold;
padding: 1em;
text-shadow: #bbb 0px 0px 2px;
}
.collapse-arrow::after{
content: "▲";
margin: 1em;
color: #61b9ff;
text-shadow: #61b9ff 0px 0px 4px;
cursor: pointer;
font-size: 1.2em;
}
.expand-arrow::after {
content: "▼";
}
@keyframes expand {
0%{
transform: scale(0.5);
}
90%{
transform: scale(1.1);
}
100%{
transform: scale(1.0);
}
}
/* when expand-arrow hide all siblings */
.expand-arrow ~ *{
display:none;
}
fieldset label{
padding: 1em;
padding-left: 2em;
text-shadow: #f0f0f0 0px 0px 2px;
width: 230px;
display: inline-block;
}
fieldset input{
border: solid #c9c9c9;
border-radius: 6px;
border-width: 1px;
padding: 5px;
padding-left: 15px;
color: #333333;
width: 150px;
}
fieldset input:hover{
background-color: #e8e8e8;
}
button{
border: solid #c9c9c9;
border-width: 1px;
height: 45px;
width: 170px;
color: #f5f5f5;
opacity: 0.8;
font-size: 1.1em;
margin: 30px;
cursor: pointer;
}
button:hover{
opacity: 1;
text-shadow: #f5f5f5 0px 0px 1px;
}
#save-changes{
background-color: #50affa;
float: right;
}
#save-changes::after{
content: "";
clear: both;
display: inline;
}
#delete{
background-color: #fa3c3c;
}
#reload{
background-color: #1fad4e;
}
button img{
width: 1em;
height: 1em;
margin-right: 10px;
margin-left: 10px;
filter: brightness(0) invert(1);
}
#save-changes.changed{
background-color: #deae00;
}
select{
background-color: white;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
border: solid #c9c9c9;
border-radius: 6px;
border-width: 1px;
padding: 3px;
padding-left: 15px;
color: #333333;
min-width: 150px;
cursor: pointer;
}
select:hover{
background-color: #e8e8e8;
}
.select::after{
content: "▼";
color: transparent;
text-shadow: #61b9ff -1.5em 0px 0px;
}
| 0.265119 | 0.077134 |
span.mtk3 {
font-family: liga-gidole;
margin-left: 2px;
font-size: 1.2em
}
span.mtk3.ced-1-TextEditorDecorationType34-1 {
font-family: liga-gidole;
font-size: 1.5em;
font-weight: 700;
text-shadow: 0 0 4px #72edeb
}
span.mtk3.ced-1-TextEditorDecorationType33-1 {
text-shadow: 0 0 3px rgba(114, 237, 235, 0) !important
}
span.mtk3.ced-1-TextEditorDecorationType23-1,
span.mtk3.ced-1-TextEditorDecorationType24-1,
span.mtk3.ced-1-TextEditorDecorationType25-1,
span.mtk3.ced-1-TextEditorDecorationType26-1,
span.mtk3.ced-1-TextEditorDecorationType36-1,
span.mtk3.ced-1-TextEditorDecorationType37-1,
span.mtk3.ced-1-TextEditorDecorationType38-1,
span.mtk3.ced-1-TextEditorDecorationType43-1,
span.mtk3.ced-1-TextEditorDecorationType44-1,
span.mtk3.ced-1-TextEditorDecorationType45-1,
span.mtk3.ced-1-TextEditorDecorationType52-1,
span.mtk3.ced-1-TextEditorDecorationType53-1,
span.mtk3.ced-1-TextEditorDecorationType54-1 {
margin-left: 1px;
font-family: FuraCode Nerd Font Mono;
font-size: 1em
}
.mtk10 {
margin-left: 2px;
padding-left: 2px;
font-size: 1em;
color: #ff677b
}
.mtk4 {
font-size: 1em !important
}
.mtk13 {
font-size: 1.2em
}
.mtk13.ced-1-TextEditorDecorationType47-1 {
padding: 0 5px 0 0;
margin: 0
}
.mtk13.ced-1-TextEditorDecorationType51-1 {
padding: 0 0 0 5px;
margin: 0
}
.mtk13.ced-1-TextEditorDecorationType51-1+.mtk13 {
color: #9075ac !important
}
span.mtk1 {
font-family: liga-input-sans;
font-size: 1.2em
}
span.mtk1.ced-1-TextEditorDecorationType39-1,
span.mtk1.ced-1-TextEditorDecorationType41-1,
span.mtk1.ced-1-TextEditorDecorationType42-1 {
padding: 0 5px 0 0;
margin: 0;
border: none
}
span.mtk1.ced-1-TextEditorDecorationType49-1 {
padding: 0 0 0 5px
}
.monaco-workbench .activitybar>.content .monaco-action-bar .badge .badge-content {
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #fff951), to(#fc28a8));
background: linear-gradient(180deg, #fff951 25%, #fc28a8)
}
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container>.tab.sizing-fit.active {
-webkit-box-shadow: inset 0 -5px 25px rgba(252, 40, 168, .15);
box-shadow: inset 0 -5px 25px rgba(252, 40, 168, .15);
position: relative
}
/*# sourceMappingURL=styles.css.map */
|
vscode/injectedTheme/styles.css
|
span.mtk3 {
font-family: liga-gidole;
margin-left: 2px;
font-size: 1.2em
}
span.mtk3.ced-1-TextEditorDecorationType34-1 {
font-family: liga-gidole;
font-size: 1.5em;
font-weight: 700;
text-shadow: 0 0 4px #72edeb
}
span.mtk3.ced-1-TextEditorDecorationType33-1 {
text-shadow: 0 0 3px rgba(114, 237, 235, 0) !important
}
span.mtk3.ced-1-TextEditorDecorationType23-1,
span.mtk3.ced-1-TextEditorDecorationType24-1,
span.mtk3.ced-1-TextEditorDecorationType25-1,
span.mtk3.ced-1-TextEditorDecorationType26-1,
span.mtk3.ced-1-TextEditorDecorationType36-1,
span.mtk3.ced-1-TextEditorDecorationType37-1,
span.mtk3.ced-1-TextEditorDecorationType38-1,
span.mtk3.ced-1-TextEditorDecorationType43-1,
span.mtk3.ced-1-TextEditorDecorationType44-1,
span.mtk3.ced-1-TextEditorDecorationType45-1,
span.mtk3.ced-1-TextEditorDecorationType52-1,
span.mtk3.ced-1-TextEditorDecorationType53-1,
span.mtk3.ced-1-TextEditorDecorationType54-1 {
margin-left: 1px;
font-family: FuraCode Nerd Font Mono;
font-size: 1em
}
.mtk10 {
margin-left: 2px;
padding-left: 2px;
font-size: 1em;
color: #ff677b
}
.mtk4 {
font-size: 1em !important
}
.mtk13 {
font-size: 1.2em
}
.mtk13.ced-1-TextEditorDecorationType47-1 {
padding: 0 5px 0 0;
margin: 0
}
.mtk13.ced-1-TextEditorDecorationType51-1 {
padding: 0 0 0 5px;
margin: 0
}
.mtk13.ced-1-TextEditorDecorationType51-1+.mtk13 {
color: #9075ac !important
}
span.mtk1 {
font-family: liga-input-sans;
font-size: 1.2em
}
span.mtk1.ced-1-TextEditorDecorationType39-1,
span.mtk1.ced-1-TextEditorDecorationType41-1,
span.mtk1.ced-1-TextEditorDecorationType42-1 {
padding: 0 5px 0 0;
margin: 0;
border: none
}
span.mtk1.ced-1-TextEditorDecorationType49-1 {
padding: 0 0 0 5px
}
.monaco-workbench .activitybar>.content .monaco-action-bar .badge .badge-content {
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #fff951), to(#fc28a8));
background: linear-gradient(180deg, #fff951 25%, #fc28a8)
}
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container>.tab.sizing-fit.active {
-webkit-box-shadow: inset 0 -5px 25px rgba(252, 40, 168, .15);
box-shadow: inset 0 -5px 25px rgba(252, 40, 168, .15);
position: relative
}
/*# sourceMappingURL=styles.css.map */
| 0.385837 | 0.402862 |
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: "Intro_Script", CenturyGothic, AppleGothic, sans-serif;
font-size: 14px;
font-weight: 400;
color: #681e20;
}
a, a:hover, a:focus {
text-decoration: none;
color: inherit;
}
.outer-wrapper {
display: table;
width: 100%;
}
.inner-wrapper {
display: table-cell;
vertical-align: middle;
height: 100vh;
}
.container-md {
width: 100%;
max-width: 1180px;
margin: 0 auto;
position: relative;
}
.container-sm {
width: 100%;
max-width: 960px;
margin: 0 auto;
position: relative;
}
.space-btw {
text-align: justify;
}
.space-btw:after {
content: '';
display: inline-block;
width: 100%;
}
.space-btw>* {
display: inline-block;
}
.regular-lg {
font-size: 16px;
font-weight: 400;
}
.up_link {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
}
.up_link>img {
width: 40px;
}
.main-block {
position: relative;
width: 100%;
min-height: 100vh;
background-image: url(../img/transparent_stripes.jpg);
background-position: top;
background-repeat: repeat-y;
background-size: cover;
background-attachment: scroll;
overflow: hidden;
}
.woman-left {
position: absolute;
height: 100%;
left: 0;
top: 0;
}
.woman-right {
position: absolute;
height: 100%;
right: 0;
top: 0;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.main-text {
width: 100%;
text-align: center;
margin-top: 60vh;
}
.main-text h2 {
font-size: 44px;
font-weight: 400;
}
.main-text h1 {
font-size: 68px;
font-weight: 700;
}
.white-thought {
text-align: center;
background-image: url(../img/white_block.png);
background-position: center;
background-size: 100% 100%;
padding: 30px 50px 60px 50px;
position: absolute;
top: 100px;
left: 59vh;
width: 100%;
max-width: 430px;
font-size: 24px;
}
.md-info-row {
width: 100%;
max-width: 1040px;
margin: 60px auto;
}
.md-info {
width: 100%;
max-width: 610px;
text-align: center;
margin: 0 auto;
font-size: 28px;
padding: 60px 20px 0 20px;
}
.sm-info {
width: 100%;
max-width: 360px;
text-align: center;
font-size: 28px;
padding: 0 20px;
vertical-align: top;
}
.figure-image-holder {
width: 100%;
max-width: 280px;
vertical-align: top;
padding-top: 20px;
}
.container-femininity {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
}
.main-info-holder {
background-image: url(../img/woman_conv.jpg);
background-position: right;
background-repeat: no-repeat;
background-size: cover;
padding: 75px 0 145px 0;
}
.info-holder {
width: 45%;
max-width: 560px;
padding: 0 20px;
font-size: 28px;
text-align: justify;
line-height: 1.3;
}
.pink-header {
background-image: url(../img/transparent_stripes.jpg);
background-position: top;
background-repeat: repeat-y;
background-size: cover;
font-size: 46px;
padding: 90px 0;
text-align: center;
width: 100%;
}
.about-point {
display: table;
width: 100%;
margin: 70px 0;
}
.about-point-image {
width: 230px;
height: 230px;
vertical-align: middle;
margin-right: 30px;
}
.about-point-info {
font-size: 46px;
width: 100%;
max-width: 740px;
display: table-cell;
vertical-align: middle;
padding: 0 20px;
}
.modal-dialog .fem-btn {
margin: 20px auto;
float: none;
}
.modal-body {
padding: 10px;
}
.input-field, .modal-header .close {
font-size: 30px;
}
.words-block {
background-image: url(../img/emma_comments.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
padding: 50px 0 100px 0;
}
.words-comment {
margin-left: 44%;
background-image: url(../img/wom_quote.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
width: 55%;
max-width: 700px;
padding: 130px 80px 130px 30px;
font-size: 22px;
text-align: center;
margin-top: 50px;
}
.words-header {
width: 100%;
max-width: 300px;
display: block;
font-size: 28px;
margin-bottom: 40px;
}
.circled-info-block {
background-image: url(../img/edit.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
.circled-info {
width: 100%;
max-width: 540px;
min-height: 540px;
background-color: #fbcdcd;
border-radius: 100%;
border: 10px solid #fff;
margin: 50px auto 0 auto;
text-align: center;
font-size: 32px;
}
.pad-vl-10 {
padding: 200px 0;
}
.vl-cl {
display: table;
width: 100%;
min-height: 540px;
}
.vl-cl>div {
display: table-cell;
vertical-align: middle;
min-height: 620px;
padding: 0 60px;
}
.count-white-block {
position: relative;
width: 100%;
min-height: 100vh;
background-color: rgba(255, 255, 255, 0.4);
overflow: hidden;
}
.count-block {
width: 100%;
max-width: 600px;
margin: 200px auto 0 auto;
text-align: center;
}
.count-header {
font-size: 34px;
}
.count-border {
font-size: 30px;
border: 2px solid #681e20;
padding: 2px 30px;
}
.fem-btn {
background-image: url(../img/pinkbox.png);
background-position: center;
background-size: 100% 100%;
height: 70px;
width: 100%;
max-width: 320px;
font-size: 36px;
text-align: center;
background-color: transparent!important;
border: none!important;
outline: none!important;
box-shadow: none!important;
margin-top: 70px;
cursor: pointer;
}
/* Styles for navigation */
.mobile-hidden{
-webkit-transition: all 300ms ease-out;
-moz-transition: all 300ms ease-out;
-o-transition: all 300ms ease-out;
transition: all 300ms ease-out;
left: -200px;
}
.mobile-visible{
-webkit-transition: all 400ms ease-out;
-moz-transition: all 400ms ease-out;
-o-transition: all 400ms ease-out;
transition: all 400ms ease-out;
left: 0;
}
#toggle_nav {
cursor: pointer;
position: absolute;
right: -44px;
top: 20px;
height: 40px;
width: 44px;
background-color: #aaece4;
z-index: 999;
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
}
#toggle_nav img {
width: 30px;
margin-top: 5px;
margin-left: 7px;
}
#mobile_nav {
position: fixed;
top: 50px;
width: 200px;
padding: 20px 0;
background-color: #fff;
z-index: 999;
}
#mobile_nav>li {
display: block;
margin: 7px 0 7px 30px;
font-size: 18px;
}
#mobile_nav>li>a {
text-decoration: none;
color: #000;
}
/* Styles for navigation */
/* Appear animation */
.popup-up {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-up.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-down {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
-moz-transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
opacity: 0;
}
.popup-down.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-left {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-left.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-left-lg {
-webkit-transition: all 800ms ease-in;
-moz-transition: all 800ms ease-in;
-o-transition: all 800ms ease-in;
transition: all 800ms ease-in;
-webkit-transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-left-lg.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-right {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-right.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-delayed-1 {
-webkit-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
-moz-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.popup-delayed-2 {
-webkit-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.popup-delayed-3 {
-webkit-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.popup-delayed-4 {
-webkit-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.popup-delayed-5 {
-webkit-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
-moz-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.popup-delayed-8 {
-webkit-transition-delay: 0.8s;
-o-transition-delay: 0.8s;
-moz-transition-delay: 0.8s;
transition-delay: 0.8s;
}
.popup-delayed-10 {
-webkit-transition-delay: 1s;
-o-transition-delay: 1s;
-moz-transition-delay: 1s;
transition-delay: 1s;
}
.popup-delayed-12 {
-webkit-transition-delay: 1.2s;
-o-transition-delay: 1.2s;
-moz-transition-delay: 1.2s;
transition-delay: 1.2s;
}
/* Appear animation */
/* Carousel fade animation */
.carousel-inner > .item {
-webkit-transition: 0.2s ease-in-out left;
-moz-transition: 0.2s ease-in-out left;
-o-transition: 0.2s ease-in-out left;
transition: 0.2s ease-in-out left;
}
.carousel-inner .item {
transition-property: opacity;
}
.item, .active.left, .active.right {
opacity: 0;
}
.active, .next.left, .prev.right {
opacity: 1;
}
.next, .prev, .active.left, .active.right {
left: 0;
transform: translate3d(0, 0, 0);
}
.carousel-control {
z-index: 2;
}
.carousel-fade .carousel-inner .item {
-webkit-transition-property: opacity;
transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
z-index: 2;
}
/* Carousel fade animation */
/* Margins and paddings */
.zero {
margin: 0;
padding: 0;
}
.mar-vl-0 {
margin-top: 0px;
margin-bottom: 0px;
}
.mar-lt-1 {
margin-left: 10px;
}
.mar-lt-2 {
margin-left: 20px;
}
.mar-lt-3 {
margin-left: 30px;
}
.mar-rt-1 {
margin-right: 10px;
}
.mar-rt-2 {
margin-right: 20px;
}
.mar-bt-0 {
margin-bottom: 0px;
}
.mar-bt-2 {
margin-bottom: 20px;
}
.mar-bt-3 {
margin-bottom: 30px;
}
.mar-bt-4 {
margin-bottom: 40px;
}
.mar-bt-5 {
margin-bottom: 50px;
}
.mar-bt-6 {
margin-bottom: 60px;
}
.mar-tp-0 {
margin-top: 0px;
}
.mar-tp-1 {
margin-top: 10px;
}
.mar-tp-2 {
margin-top: 20px;
}
.mar-tp-3 {
margin-top: 30px;
}
.mar-tp-4 {
margin-top: 40px;
}
.mar-tp-6 {
margin-top: 60px;
}
.mar-tp-7 {
margin-top: 70px;
}
.mar-tp-8 {
margin-top: 80px;
}
.mar-tp-10 {
margin-top: 100px;
}
.mar-tp-15 {
margin-top: 150px;
}
.pad-bt-0 {
padding-bottom: 0px!important;
}
.pad-lt-1 {
padding-left: 10px;
}
.pad-rt-1 {
padding-right: 10px;
}
.pad-hz-0 {
padding-left: 0px;
padding-right: 0px;
}
.pad-hz-2 {
padding-left: 20px;
padding-right: 20px;
}
.pad-hz-3 {
padding-left: 30px;
padding-right: 30px;
}
.pad-hz-4 {
padding-left: 40px;
padding-right: 40px;
}
.pad-vl-2 {
padding-top: 20px;
padding-bottom: 20px;
}
.pad-vl-4 {
padding-top: 40px;
padding-bottom: 40px;
}
.pad-vl-6 {
padding-top: 60px;
padding-bottom: 60px;
}
.pad-tp-2 {
padding-top: 20px;
}
.pad-tp-5 {
padding-top: 50px;
}
.pad-tp-7 {
padding-top: 70px;
}
/* Margins and paddings */
/* Responsive layout */
@media screen and (max-width: 1200px) {
.main-info-holder {
background-position: center;
}
.info-holder {
width: 52%;
}
.woman-left {
left: -80px;
}
.woman-right {
right: -80px;
}
}
@media screen and (max-width: 1060px) {
.white-thought {
left: 27%;
}
.figure-image-holder, .sm-info {
display: block;
margin: 10px auto;
}
.info-holder {
max-width: 100%;
}
.about-point-info {
font-size: 30px;
}
.words-block {
background-image: url(../img/fembg.jpg);
min-height: 1300px;
background-position: bottom;
}
.words-comment {
margin: 0 auto;
width: 100%;
}
}
@media screen and (max-width: 880px) {
.woman-left, .woman-right, .white-thought {
display: none;
}
.main-block {
min-height: 1200px;
background-image: url(../img/top_fem_sm.jpg);
background-position: bottom;
}
.main-text {
margin-top: 20vh;
}
.count-white-block {
min-height: 1100px;
background-image: url(../img/bot_fem.jpg);
background-position: bottom;
background-size: cover;
}
.fem-btn {
margin-top: 100px;
float: right;
}
}
@media screen and (max-width: 650px) {
.main-info-holder {
background-image: url(../img/girls_sm.jpg);
background-position: bottom;
min-height: 700px;
}
.info-holder {
width: 100%;
}
}
@media screen and (max-width: 600px) {
.main-block {
background-position: right;
}
.modal-dialog {
margin: 0 auto;
}
}
@media screen and (max-width: 520px) {
.main-block {
min-height: 885px;
background-position: 87%;
}
.main-info-holder {
min-height: 900px;
}
.about-point-image {
width: 180px;
height: 180px;
}
.about-point {
padding: 0 10px;
}
.count-block {
margin: 100px auto 0 auto;
}
.count-white-block {
min-height: 890px;
padding: 0 10px;
}
.words-block {
min-height: 1000px;
}
.words-comment {
background: #fff;
border-radius: 40px;
padding: 30px;
text-align: justify;
}
.about-point {
padding: 0;
}
}
@media screen and (max-width: 420px) {
.main-text h1 {
font-size: 56px;
}
.container-femininity {
margin-bottom: 120px;
}
.words-block {
min-height: 1170px;
}
.count-white-block {
min-height: 716px;
}
.about-point-image {
margin-right: 10px;
}
.about-point-info {
padding: 0 10px;
}
}
@media screen and (max-width: 375px) {
.about-point-info {
font-size: 26px;
}
.about-point-image {
width: 100px;
height: 100px;
}
.main-text h2 {
font-size: 32px;
font-weight: 400;
}
.main-text h1 {
font-size: 46px;
}
.vl-cl>div {
padding: 0 29px;
}
.modal-body {
padding: 0;
}
}
@media screen and (max-width: 335px) {
.main-block {
background-position: 83%;
}
.words-block {
min-height: 1340px;
}
.container-femininity {
padding: 0;
}
}
/* Responsive layout */
|
public/css/style-femininity.css
|
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: "Intro_Script", CenturyGothic, AppleGothic, sans-serif;
font-size: 14px;
font-weight: 400;
color: #681e20;
}
a, a:hover, a:focus {
text-decoration: none;
color: inherit;
}
.outer-wrapper {
display: table;
width: 100%;
}
.inner-wrapper {
display: table-cell;
vertical-align: middle;
height: 100vh;
}
.container-md {
width: 100%;
max-width: 1180px;
margin: 0 auto;
position: relative;
}
.container-sm {
width: 100%;
max-width: 960px;
margin: 0 auto;
position: relative;
}
.space-btw {
text-align: justify;
}
.space-btw:after {
content: '';
display: inline-block;
width: 100%;
}
.space-btw>* {
display: inline-block;
}
.regular-lg {
font-size: 16px;
font-weight: 400;
}
.up_link {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
}
.up_link>img {
width: 40px;
}
.main-block {
position: relative;
width: 100%;
min-height: 100vh;
background-image: url(../img/transparent_stripes.jpg);
background-position: top;
background-repeat: repeat-y;
background-size: cover;
background-attachment: scroll;
overflow: hidden;
}
.woman-left {
position: absolute;
height: 100%;
left: 0;
top: 0;
}
.woman-right {
position: absolute;
height: 100%;
right: 0;
top: 0;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.main-text {
width: 100%;
text-align: center;
margin-top: 60vh;
}
.main-text h2 {
font-size: 44px;
font-weight: 400;
}
.main-text h1 {
font-size: 68px;
font-weight: 700;
}
.white-thought {
text-align: center;
background-image: url(../img/white_block.png);
background-position: center;
background-size: 100% 100%;
padding: 30px 50px 60px 50px;
position: absolute;
top: 100px;
left: 59vh;
width: 100%;
max-width: 430px;
font-size: 24px;
}
.md-info-row {
width: 100%;
max-width: 1040px;
margin: 60px auto;
}
.md-info {
width: 100%;
max-width: 610px;
text-align: center;
margin: 0 auto;
font-size: 28px;
padding: 60px 20px 0 20px;
}
.sm-info {
width: 100%;
max-width: 360px;
text-align: center;
font-size: 28px;
padding: 0 20px;
vertical-align: top;
}
.figure-image-holder {
width: 100%;
max-width: 280px;
vertical-align: top;
padding-top: 20px;
}
.container-femininity {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
}
.main-info-holder {
background-image: url(../img/woman_conv.jpg);
background-position: right;
background-repeat: no-repeat;
background-size: cover;
padding: 75px 0 145px 0;
}
.info-holder {
width: 45%;
max-width: 560px;
padding: 0 20px;
font-size: 28px;
text-align: justify;
line-height: 1.3;
}
.pink-header {
background-image: url(../img/transparent_stripes.jpg);
background-position: top;
background-repeat: repeat-y;
background-size: cover;
font-size: 46px;
padding: 90px 0;
text-align: center;
width: 100%;
}
.about-point {
display: table;
width: 100%;
margin: 70px 0;
}
.about-point-image {
width: 230px;
height: 230px;
vertical-align: middle;
margin-right: 30px;
}
.about-point-info {
font-size: 46px;
width: 100%;
max-width: 740px;
display: table-cell;
vertical-align: middle;
padding: 0 20px;
}
.modal-dialog .fem-btn {
margin: 20px auto;
float: none;
}
.modal-body {
padding: 10px;
}
.input-field, .modal-header .close {
font-size: 30px;
}
.words-block {
background-image: url(../img/emma_comments.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
padding: 50px 0 100px 0;
}
.words-comment {
margin-left: 44%;
background-image: url(../img/wom_quote.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
width: 55%;
max-width: 700px;
padding: 130px 80px 130px 30px;
font-size: 22px;
text-align: center;
margin-top: 50px;
}
.words-header {
width: 100%;
max-width: 300px;
display: block;
font-size: 28px;
margin-bottom: 40px;
}
.circled-info-block {
background-image: url(../img/edit.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
.circled-info {
width: 100%;
max-width: 540px;
min-height: 540px;
background-color: #fbcdcd;
border-radius: 100%;
border: 10px solid #fff;
margin: 50px auto 0 auto;
text-align: center;
font-size: 32px;
}
.pad-vl-10 {
padding: 200px 0;
}
.vl-cl {
display: table;
width: 100%;
min-height: 540px;
}
.vl-cl>div {
display: table-cell;
vertical-align: middle;
min-height: 620px;
padding: 0 60px;
}
.count-white-block {
position: relative;
width: 100%;
min-height: 100vh;
background-color: rgba(255, 255, 255, 0.4);
overflow: hidden;
}
.count-block {
width: 100%;
max-width: 600px;
margin: 200px auto 0 auto;
text-align: center;
}
.count-header {
font-size: 34px;
}
.count-border {
font-size: 30px;
border: 2px solid #681e20;
padding: 2px 30px;
}
.fem-btn {
background-image: url(../img/pinkbox.png);
background-position: center;
background-size: 100% 100%;
height: 70px;
width: 100%;
max-width: 320px;
font-size: 36px;
text-align: center;
background-color: transparent!important;
border: none!important;
outline: none!important;
box-shadow: none!important;
margin-top: 70px;
cursor: pointer;
}
/* Styles for navigation */
.mobile-hidden{
-webkit-transition: all 300ms ease-out;
-moz-transition: all 300ms ease-out;
-o-transition: all 300ms ease-out;
transition: all 300ms ease-out;
left: -200px;
}
.mobile-visible{
-webkit-transition: all 400ms ease-out;
-moz-transition: all 400ms ease-out;
-o-transition: all 400ms ease-out;
transition: all 400ms ease-out;
left: 0;
}
#toggle_nav {
cursor: pointer;
position: absolute;
right: -44px;
top: 20px;
height: 40px;
width: 44px;
background-color: #aaece4;
z-index: 999;
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
}
#toggle_nav img {
width: 30px;
margin-top: 5px;
margin-left: 7px;
}
#mobile_nav {
position: fixed;
top: 50px;
width: 200px;
padding: 20px 0;
background-color: #fff;
z-index: 999;
}
#mobile_nav>li {
display: block;
margin: 7px 0 7px 30px;
font-size: 18px;
}
#mobile_nav>li>a {
text-decoration: none;
color: #000;
}
/* Styles for navigation */
/* Appear animation */
.popup-up {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(0, 70px, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-up.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-down {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
-moz-transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
transform:
translate3d(0, -70px, 0)
rotateX(-40deg)
scale(1, 1);
opacity: 0;
}
.popup-down.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-left {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(70px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-left.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-left-lg {
-webkit-transition: all 800ms ease-in;
-moz-transition: all 800ms ease-in;
-o-transition: all 800ms ease-in;
transition: all 800ms ease-in;
-webkit-transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(570px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-left-lg.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-right {
-webkit-transition: all 550ms ease;
-moz-transition: all 550ms ease;
-o-transition: all 550ms ease;
transition: all 550ms ease;
-webkit-transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
-moz-transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
transform:
translate3d(-70px, 0, 0)
rotateX(0deg)
scale(1, 1);
opacity: 0;
}
.popup-right.appeared {
-webkit-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
-moz-transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
transform:
translate3d(0px, 0px, 0px)
rotateX(0)
scale(1, 1);
opacity: 1;
}
.popup-delayed-1 {
-webkit-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
-moz-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.popup-delayed-2 {
-webkit-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.popup-delayed-3 {
-webkit-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.popup-delayed-4 {
-webkit-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.popup-delayed-5 {
-webkit-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
-moz-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.popup-delayed-8 {
-webkit-transition-delay: 0.8s;
-o-transition-delay: 0.8s;
-moz-transition-delay: 0.8s;
transition-delay: 0.8s;
}
.popup-delayed-10 {
-webkit-transition-delay: 1s;
-o-transition-delay: 1s;
-moz-transition-delay: 1s;
transition-delay: 1s;
}
.popup-delayed-12 {
-webkit-transition-delay: 1.2s;
-o-transition-delay: 1.2s;
-moz-transition-delay: 1.2s;
transition-delay: 1.2s;
}
/* Appear animation */
/* Carousel fade animation */
.carousel-inner > .item {
-webkit-transition: 0.2s ease-in-out left;
-moz-transition: 0.2s ease-in-out left;
-o-transition: 0.2s ease-in-out left;
transition: 0.2s ease-in-out left;
}
.carousel-inner .item {
transition-property: opacity;
}
.item, .active.left, .active.right {
opacity: 0;
}
.active, .next.left, .prev.right {
opacity: 1;
}
.next, .prev, .active.left, .active.right {
left: 0;
transform: translate3d(0, 0, 0);
}
.carousel-control {
z-index: 2;
}
.carousel-fade .carousel-inner .item {
-webkit-transition-property: opacity;
transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
z-index: 2;
}
/* Carousel fade animation */
/* Margins and paddings */
.zero {
margin: 0;
padding: 0;
}
.mar-vl-0 {
margin-top: 0px;
margin-bottom: 0px;
}
.mar-lt-1 {
margin-left: 10px;
}
.mar-lt-2 {
margin-left: 20px;
}
.mar-lt-3 {
margin-left: 30px;
}
.mar-rt-1 {
margin-right: 10px;
}
.mar-rt-2 {
margin-right: 20px;
}
.mar-bt-0 {
margin-bottom: 0px;
}
.mar-bt-2 {
margin-bottom: 20px;
}
.mar-bt-3 {
margin-bottom: 30px;
}
.mar-bt-4 {
margin-bottom: 40px;
}
.mar-bt-5 {
margin-bottom: 50px;
}
.mar-bt-6 {
margin-bottom: 60px;
}
.mar-tp-0 {
margin-top: 0px;
}
.mar-tp-1 {
margin-top: 10px;
}
.mar-tp-2 {
margin-top: 20px;
}
.mar-tp-3 {
margin-top: 30px;
}
.mar-tp-4 {
margin-top: 40px;
}
.mar-tp-6 {
margin-top: 60px;
}
.mar-tp-7 {
margin-top: 70px;
}
.mar-tp-8 {
margin-top: 80px;
}
.mar-tp-10 {
margin-top: 100px;
}
.mar-tp-15 {
margin-top: 150px;
}
.pad-bt-0 {
padding-bottom: 0px!important;
}
.pad-lt-1 {
padding-left: 10px;
}
.pad-rt-1 {
padding-right: 10px;
}
.pad-hz-0 {
padding-left: 0px;
padding-right: 0px;
}
.pad-hz-2 {
padding-left: 20px;
padding-right: 20px;
}
.pad-hz-3 {
padding-left: 30px;
padding-right: 30px;
}
.pad-hz-4 {
padding-left: 40px;
padding-right: 40px;
}
.pad-vl-2 {
padding-top: 20px;
padding-bottom: 20px;
}
.pad-vl-4 {
padding-top: 40px;
padding-bottom: 40px;
}
.pad-vl-6 {
padding-top: 60px;
padding-bottom: 60px;
}
.pad-tp-2 {
padding-top: 20px;
}
.pad-tp-5 {
padding-top: 50px;
}
.pad-tp-7 {
padding-top: 70px;
}
/* Margins and paddings */
/* Responsive layout */
@media screen and (max-width: 1200px) {
.main-info-holder {
background-position: center;
}
.info-holder {
width: 52%;
}
.woman-left {
left: -80px;
}
.woman-right {
right: -80px;
}
}
@media screen and (max-width: 1060px) {
.white-thought {
left: 27%;
}
.figure-image-holder, .sm-info {
display: block;
margin: 10px auto;
}
.info-holder {
max-width: 100%;
}
.about-point-info {
font-size: 30px;
}
.words-block {
background-image: url(../img/fembg.jpg);
min-height: 1300px;
background-position: bottom;
}
.words-comment {
margin: 0 auto;
width: 100%;
}
}
@media screen and (max-width: 880px) {
.woman-left, .woman-right, .white-thought {
display: none;
}
.main-block {
min-height: 1200px;
background-image: url(../img/top_fem_sm.jpg);
background-position: bottom;
}
.main-text {
margin-top: 20vh;
}
.count-white-block {
min-height: 1100px;
background-image: url(../img/bot_fem.jpg);
background-position: bottom;
background-size: cover;
}
.fem-btn {
margin-top: 100px;
float: right;
}
}
@media screen and (max-width: 650px) {
.main-info-holder {
background-image: url(../img/girls_sm.jpg);
background-position: bottom;
min-height: 700px;
}
.info-holder {
width: 100%;
}
}
@media screen and (max-width: 600px) {
.main-block {
background-position: right;
}
.modal-dialog {
margin: 0 auto;
}
}
@media screen and (max-width: 520px) {
.main-block {
min-height: 885px;
background-position: 87%;
}
.main-info-holder {
min-height: 900px;
}
.about-point-image {
width: 180px;
height: 180px;
}
.about-point {
padding: 0 10px;
}
.count-block {
margin: 100px auto 0 auto;
}
.count-white-block {
min-height: 890px;
padding: 0 10px;
}
.words-block {
min-height: 1000px;
}
.words-comment {
background: #fff;
border-radius: 40px;
padding: 30px;
text-align: justify;
}
.about-point {
padding: 0;
}
}
@media screen and (max-width: 420px) {
.main-text h1 {
font-size: 56px;
}
.container-femininity {
margin-bottom: 120px;
}
.words-block {
min-height: 1170px;
}
.count-white-block {
min-height: 716px;
}
.about-point-image {
margin-right: 10px;
}
.about-point-info {
padding: 0 10px;
}
}
@media screen and (max-width: 375px) {
.about-point-info {
font-size: 26px;
}
.about-point-image {
width: 100px;
height: 100px;
}
.main-text h2 {
font-size: 32px;
font-weight: 400;
}
.main-text h1 {
font-size: 46px;
}
.vl-cl>div {
padding: 0 29px;
}
.modal-body {
padding: 0;
}
}
@media screen and (max-width: 335px) {
.main-block {
background-position: 83%;
}
.words-block {
min-height: 1340px;
}
.container-femininity {
padding: 0;
}
}
/* Responsive layout */
| 0.498291 | 0.075176 |
height: auto;
width: 100%;
margin: 0px;
padding-top: 30px;
padding-right: 0px;
padding-bottom: 30px;
padding-left: 0px;
}
.padma-row{
width: 100%;
position: relative;
}
.padma-row-header1{
width: 100%;
}
.padma-row-header1-nav{
width: 100%;
height: 80px;
}
.padma-row-header1-nav-logo{
max-width: 150px;
max-height: 80px;
text-align: center;
margin-left: 50px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-header1-nav-logo img {
max-height: 80px;
width: auto;
}
.padma-row-header1-nav-links{
float: right;
height: 80px;
margin-right: 50px;
}
.padma-row-header1-nav-links a{
color: rgba(63,141,191,1);
text-decoration: none;
margin-top: 30px;
margin-right: 25px;
font-size: 15px;
}
.padma-row-header1-nav-links a:hover {
text-decoration: underline;
}
.padma-row-header1-nav-links-contact{
margin-top: 25px;
background-color: rgba(63,141,191,1);
line-height: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header1-nav-links-contact:hover {
background-color: rgba(150,111,177,1);
}
.padma-row-header1-nav-links-contact a {
color: rgba(255,255,255,1);
margin: 0px;
display: block;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
}
.padma-row-header1-nav-links-contact a:hover {
text-decoration: none;
}
.padma-row-header1-slider{
width: 100%;
}
.padma-row-header1-slider-left{
}
.padma-row-header1-slider-left-title{
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
min-height: 25px;
}
.padma-row-header1-slider-left-subtitle{
font-size: 20px;
}
.padma-row-header1-slider-left-text{
margin-top: 15px;
font-size: 15px;
text-align: justify;
}
.padma-row-header1-slider-left-link{
margin-top: 15px;
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header1-slider-left-link:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-header1-slider-left-link a {
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-header1-slider-right{
}
.padma-row-header1-slider-right img {
height: auto;
width: auto;
}
.padma-row-header2{
width: 100%;
}
.padma-row-header2-nav{
width: 100%;
background-color: rgba(255,255,255,1);
height: 80px;
}
.padma-row-header2-nav-logo{
max-width: 150px;
max-height: 80px;
text-align: center;
margin-left: 50px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-header2-nav-logo img {
max-height: 80px;
width: auto;
}
.padma-row-header2-nav-links{
float: right;
height: 80px;
margin-right: 50px;
}
.padma-row-header2-nav-links a{
color: rgba(63,141,191,1);
text-decoration: none;
margin-top: 30px;
margin-right: 25px;
font-size: 15px;
}
.padma-row-header2-nav-links a:hover {
text-decoration: underline;
}
.padma-row-header2-nav-links-contact{
margin-top: 25px;
background-color: rgba(63,141,191,1);
line-height: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header2-nav-links-contact:hover {
background-color: rgba(150,111,177,1);
}
.padma-row-header2-nav-links-contact a {
color: rgba(255,255,255,1);
margin: 0px;
display: block;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
}
.padma-row-header2-nav-links-contact a:hover {
text-decoration: none;
}
.padma-row-header2-slider{
width: 100%;
}
.padma-row-header2-slider-top{
height: 225px;
width: 100%;
text-align: center;
}
.padma-row-header2-slider-top-title{
width: 1025px;
margin-left: 50px;
font-size: 26px;
color: rgba(136,136,136,1);
margin-top: 25px;
}
.padma-row-header2-slider-top-text{
width: 1025px;
margin-left: 50px;
margin-top: 15px;
font-size: 16px;
color: rgba(136,136,136,1);
line-height: 24px;
font-weight: 300;
}
.padma-row-header2-slider-top-link{
width: 1025px;
margin-left: 50px;
margin-top: 25px;
}
.padma-row-header2-slider-top-link-button{
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
margin-right: auto;
margin-left: auto;
width: 100px;
}
.padma-row-header2-slider-top-link-button:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-header2-slider-top-link-button a {
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
display: block;
width: 100px;
}
.padma-row-header2-slider-bottom{
height: 225px;
width: 100%;
overflow: hidden;
}
.padma-row-header2-slider-bottom img {
height: auto;
width: 100%;
}
.padma-row-content1{
}
.padma-row-content1-tab{
text-align: center;
}
.padma-row-content1-tab-icon{
background-color: rgba(63,141,191,1);
height: 90px;
width: 90px;
margin-right: auto;
margin-left: auto;
color: rgba(255,255,255,1);
line-height: 60px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
font-size: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
.padma-row-content1-tab-icon i {
line-height: 90px;
}
.padma-row-content1-tab:hover .padma-row-content1-tab-icon {
background-color: rgba(150,111,177,1);
}
.padma-row-content1-tab-title{
margin-top: 20px;
font-size: 18px;
color: #1f4f80;
}
.padma-row-content1-tab-text{
font-size: 15px;
color: #666666;
margin-top: 5px;
}
.padma-row-content2{
}
.padma-row-content2-left {
}
.padma-row-content2-left img {
height: auto;
width: auto;
}
.padma-row-content2-right{
}
.padma-row-content2-right-title{
width: 100%;
font-size: 25px;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content2-right-text{
margin-top: 15px;
font-size: 15px;
}
.padma-row-content2-right-button{
margin-top: 15px;
text-align: center;
}
.padma-row-content2-right-button a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content2-right-button a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content3{
width: 100%;
}
.padma-row-content3-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content3-center{
}
.padma-row-content3-center-tab{
margin: 15px 0px;
}
.padma-row-content3-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content3-center-tab-image{
text-align: center;
}
.padma-row-content3-center-tab-image img {
}
.padma-row-content3-center-tab-text{
width: 100%;
height: 60px;
background-color: rgba(242,244,250,1);
color: #656565;
line-height: 60px;
text-align: center;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.padma-row-content4{
width: 100%;
}
.padma-row-content4-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content4-content{
font-size: 15px;
margin: 15px 0px;
text-align: center;
}
.padma-row-content4-images{
width: 100%;
margin-top: 20px;
height: 225px;
overflow: hidden;
}
.padma-row-content4-images img {
height: auto;
width: 100%;
}
.padma-row-content5{
width: 100%;
}
.padma-row-content5-left{
}
.padma-row-content5-left-title{
font-size: 25px;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content5-left-text{
margin-top: 15px;
font-size: 15px;
}
.padma-row-content5-left-button{
margin-top: 15px;
width: 100%;
text-align: center;
}
.padma-row-content5-left-button a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content5-left-button a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content5-right {
text-align: center;
overflow: hidden;
}
.padma-row-content5-right img {
}
.padma-row-content6{
}
.padma-row-content6-center{
}
.padma-row-content6-center-tab{
text-align: center;
}
.padma-row-content6-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content6-center-tab-image{
width: 90px;
font-size: 45px;
color: rgba(136,136,136,1);
line-height: 90px;
height: 90px;
margin-right: auto;
margin-left: auto;
background-color: rgba(255,255,255,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.padma-row-content6-center-tab-image i {
line-height: 90px;
}
.padma-row-content6-center-tab-text{
font-size: 16px;
margin-top: 15px;
}
.padma-row-content7{
background-color: rgba(255,255,255,1);
width: 100%;
padding-top: 75px;
padding-bottom: 75px;
}
.padma-row-content7-title{
width: 100%;
margin-left: 50px;
font-size: 26px;
text-align: center;
color: #1f4f69;
}
.padma-row-content7-center{
width: 970px;
margin-left: 100px;
margin-top: 40px;
}
.padma-row-content7-center-tab{
width: 290px;
background-color: rgba(242,244,250,1);
margin-right: 30px;
padding-bottom: 15px;
}
.padma-row-content7-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content7-center-tab-image{
height: 290px;
width: 290px;
text-align: center;
background-color: rgba(255,255,255,1);
overflow: hidden;
}
.padma-row-content7-center-tab-image img {
height: 290px;
width: auto;
}
.padma-row-content7-center-tab-title{
width: 270px;
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
margin-left: 15px;
}
.padma-row-content7-center-tab-text {
width: 270px;
font-size: 14px;
color: rgba(102,102,102,1);
line-height: 24px;
margin-top: 5px;
margin-left: 15px;
}
.padma-row-content8{
background-color: rgba(242,244,250,1);
width: 100%;
padding-top: 75px;
padding-bottom: 75px;
}
.padma-row-content8-title{
width: 1070px;
margin-left: 50px;
font-size: 26px;
text-align: center;
color: #1f4f69;
}
.padma-row-content8-center{
width: 970px;
margin-left: 100px;
margin-top: 40px;
}
.padma-row-content8-center-tab{
width: 470px;
background-color: rgba(255,255,255,1);
margin-right: 30px;
padding-bottom: 15px;
}
.padma-row-content8-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content8-center-tab-image{
height: 340px;
width: 470px;
text-align: center;
background-color: rgba(255,255,255,1);
overflow: hidden;
}
.padma-row-content8-center-tab-image img {
height: auto;
width: 470px;
}
.padma-row-content8-center-tab-title{
width: 470px;
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
margin-left: 15px;
}
.padma-row-content8-center-tab-text {
width: 470px;
font-size: 14px;
color: rgba(102,102,102,1);
line-height: 24px;
margin-top: 5px;
margin-left: 15px;
}
.padma-row-content9{
width: 100%;
background-color: rgba(255,255,255,1);
}
.padma-row-content9-title{
width: 1000px;
margin-left: 75px;
font-size: 26px;
text-align: center;
color: #1f4f69;
margin-top: 50px;
}
.padma-row-content9-content{
width: 1000px;
margin-left: 75px;
margin-top: 25px;
color: #656565;
font-size: 16px;
line-height: 24px;
font-weight: 300;
text-align: center;
}
.padma-row-content9-images{
width: 100%;
margin-top: 50px;
height: 225px;
overflow: hidden;
}
.padma-row-content9-images img {
height: auto;
width: 100%;
}
.padma-row-content10{
width: 100%;
padding: 0px;
}
.padma-row-content10-title{
width: 100%;
font-size: 25px;
text-align: left;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content10-center{
width: 100%;
}
.padma-row-content10-center-tab{
width: 100%;
}
.padma-row-content10-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content10-center-tab-image{
height: 303px;
width: 303px;
text-align: center;
background-color: rgba(242,244,250,1);
overflow: hidden;
}
.padma-row-content10-center-tab-image img {
height: 303px;
width: auto;
}
.padma-row-content10-center-tab-title{
width: 100%;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content10-center-tab-text {
width: 100%;
font-size: 15px;
margin-top: 10px;
}
.padma-row-content11{
width: 100%;
}
.padma-row-content11-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content11-center{
margin-top: 15px;
}
.padma-row-content11-center-tab{
text-align: center;
}
.padma-row-content11-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content11-center-tab-image{
text-align: center;
overflow: hidden;
}
.padma-row-content11-center-tab-image img {
height: auto;
}
.padma-row-content11-center-tab-title{
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
}
.padma-row-content11-center-tab-text {
font-size: 145x;
margin-top: 15px;
}
.padma-row-content11-center-tab-text-link {
margin-top: 15px;
}
.padma-row-content11-center-tab-text-link a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 25px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content11-center-tab-text-link a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content12{
text-align: center;
}
.padma-row-content12-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content12-center{
margin-top: 15px;
}
.padma-row-content12-center-tab{
margin-top: 15px;
margin-bottom: 15px;
padding: 10px;
}
.padma-row-content12-center-tab:nth-child(even) {
margin-right: 0px;
}
.padma-row-content12-center-tab-icon {
height: 80px;
width: 80px;
color: rgba(128,147,161,1);
font-size: 24px;
line-height: 40px;
text-align: center;
float: left;
}
.padma-row-content12-center-tab-icon i {
line-height: 80px;
font-size: 48px;
}
.padma-row-content12-center-tab-title{
float: left;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
height: 40px;
line-height: 40px;
width:85%;
text-align: left;
clear: right;
}
.padma-row-content12-center-tab-text {
font-size: 14px;
line-height: 24px;
text-align: left;
}
.padma-row-content13{
width: 100%;
background-color: rgba(255,255,255,1);
padding-top: 50px;
padding-bottom: 50px;
}
.padma-row-content13-center {
width: 970px;
margin-left: 100px;
margin-top: 10px;
}
.padma-row-content13-center-left{
}
.padma-row-content13-center-left-title{
font-size: 20px;
color: rgba(136,136,136,1);
line-height: 30px;
}
.padma-row-content13-center-left-subtitle{
font-size: 16px;
line-height: 20px;
font-weight: bold;
text-transform: uppercase;
margin-top: 8px;
}
.padma-row-content13-center-right{
float: right;
}
.padma-row-content13-center-right a {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(136,136,136,1);
font-size: 15px;
line-height: 40px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
background-color: rgba(255,255,255,0);
border: 1px solid rgba(255,255,255,1);
}
.padma-row-content13-center-right a:hover {
background-color: rgba(255,255,255,0.2);
}
.padma-row-content14{
width: 100%;
background-color: rgba(53,57,70,1);
padding-top: 25px;
padding-bottom: 25px;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content14-center{
width: 970px;
margin-left: 100px;
}
.padma-row-content14-center-left{
width: 470px;
}
.padma-row-content14-center-left-title{
color: #747885;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.padma-row-content14-center-left-text{
color: #b9bcc5;
font-size: 14px;
line-height: 24px;
}
.padma-row-content14-center-right{
float: right;
width: 470px;
}
.padma-row-content14-center-right-title{
color: #747885;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.padma-row-content14-center-right-row{
color: #b9bcc5;
font-size: 14px;
line-height: 24px;
width: 100%;
}
.padma-row-content14-center-right-type{
width: 80px;
font-weight: 600;
}
.padma-row-content14-center-right-content{
float: right;
width: 385px;
}
.padma-row-content15{
background-color: rgba(53,57,70,1);
width: 100%;
height: 80px;
}
.padma-row-content15-center{
width: 970px;
margin-left: 100px;
}
.padma-row-content15-center-left{
width: 310px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-content15-center-left img {
max-height: 80px;
width: auto;
}
.padma-row-content15-center-right{
float: right;
color: #b9bcc5;
font-size: 14px;
line-height: 80px;
width: 640px;
text-align: right;
}
.ml20 {
margin-left: 20px;
}
|
public/builder/pagebuilderfront.css
|
height: auto;
width: 100%;
margin: 0px;
padding-top: 30px;
padding-right: 0px;
padding-bottom: 30px;
padding-left: 0px;
}
.padma-row{
width: 100%;
position: relative;
}
.padma-row-header1{
width: 100%;
}
.padma-row-header1-nav{
width: 100%;
height: 80px;
}
.padma-row-header1-nav-logo{
max-width: 150px;
max-height: 80px;
text-align: center;
margin-left: 50px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-header1-nav-logo img {
max-height: 80px;
width: auto;
}
.padma-row-header1-nav-links{
float: right;
height: 80px;
margin-right: 50px;
}
.padma-row-header1-nav-links a{
color: rgba(63,141,191,1);
text-decoration: none;
margin-top: 30px;
margin-right: 25px;
font-size: 15px;
}
.padma-row-header1-nav-links a:hover {
text-decoration: underline;
}
.padma-row-header1-nav-links-contact{
margin-top: 25px;
background-color: rgba(63,141,191,1);
line-height: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header1-nav-links-contact:hover {
background-color: rgba(150,111,177,1);
}
.padma-row-header1-nav-links-contact a {
color: rgba(255,255,255,1);
margin: 0px;
display: block;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
}
.padma-row-header1-nav-links-contact a:hover {
text-decoration: none;
}
.padma-row-header1-slider{
width: 100%;
}
.padma-row-header1-slider-left{
}
.padma-row-header1-slider-left-title{
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
min-height: 25px;
}
.padma-row-header1-slider-left-subtitle{
font-size: 20px;
}
.padma-row-header1-slider-left-text{
margin-top: 15px;
font-size: 15px;
text-align: justify;
}
.padma-row-header1-slider-left-link{
margin-top: 15px;
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header1-slider-left-link:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-header1-slider-left-link a {
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-header1-slider-right{
}
.padma-row-header1-slider-right img {
height: auto;
width: auto;
}
.padma-row-header2{
width: 100%;
}
.padma-row-header2-nav{
width: 100%;
background-color: rgba(255,255,255,1);
height: 80px;
}
.padma-row-header2-nav-logo{
max-width: 150px;
max-height: 80px;
text-align: center;
margin-left: 50px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-header2-nav-logo img {
max-height: 80px;
width: auto;
}
.padma-row-header2-nav-links{
float: right;
height: 80px;
margin-right: 50px;
}
.padma-row-header2-nav-links a{
color: rgba(63,141,191,1);
text-decoration: none;
margin-top: 30px;
margin-right: 25px;
font-size: 15px;
}
.padma-row-header2-nav-links a:hover {
text-decoration: underline;
}
.padma-row-header2-nav-links-contact{
margin-top: 25px;
background-color: rgba(63,141,191,1);
line-height: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
.padma-row-header2-nav-links-contact:hover {
background-color: rgba(150,111,177,1);
}
.padma-row-header2-nav-links-contact a {
color: rgba(255,255,255,1);
margin: 0px;
display: block;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
}
.padma-row-header2-nav-links-contact a:hover {
text-decoration: none;
}
.padma-row-header2-slider{
width: 100%;
}
.padma-row-header2-slider-top{
height: 225px;
width: 100%;
text-align: center;
}
.padma-row-header2-slider-top-title{
width: 1025px;
margin-left: 50px;
font-size: 26px;
color: rgba(136,136,136,1);
margin-top: 25px;
}
.padma-row-header2-slider-top-text{
width: 1025px;
margin-left: 50px;
margin-top: 15px;
font-size: 16px;
color: rgba(136,136,136,1);
line-height: 24px;
font-weight: 300;
}
.padma-row-header2-slider-top-link{
width: 1025px;
margin-left: 50px;
margin-top: 25px;
}
.padma-row-header2-slider-top-link-button{
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
margin-right: auto;
margin-left: auto;
width: 100px;
}
.padma-row-header2-slider-top-link-button:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-header2-slider-top-link-button a {
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
display: block;
width: 100px;
}
.padma-row-header2-slider-bottom{
height: 225px;
width: 100%;
overflow: hidden;
}
.padma-row-header2-slider-bottom img {
height: auto;
width: 100%;
}
.padma-row-content1{
}
.padma-row-content1-tab{
text-align: center;
}
.padma-row-content1-tab-icon{
background-color: rgba(63,141,191,1);
height: 90px;
width: 90px;
margin-right: auto;
margin-left: auto;
color: rgba(255,255,255,1);
line-height: 60px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
font-size: 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
.padma-row-content1-tab-icon i {
line-height: 90px;
}
.padma-row-content1-tab:hover .padma-row-content1-tab-icon {
background-color: rgba(150,111,177,1);
}
.padma-row-content1-tab-title{
margin-top: 20px;
font-size: 18px;
color: #1f4f80;
}
.padma-row-content1-tab-text{
font-size: 15px;
color: #666666;
margin-top: 5px;
}
.padma-row-content2{
}
.padma-row-content2-left {
}
.padma-row-content2-left img {
height: auto;
width: auto;
}
.padma-row-content2-right{
}
.padma-row-content2-right-title{
width: 100%;
font-size: 25px;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content2-right-text{
margin-top: 15px;
font-size: 15px;
}
.padma-row-content2-right-button{
margin-top: 15px;
text-align: center;
}
.padma-row-content2-right-button a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content2-right-button a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content3{
width: 100%;
}
.padma-row-content3-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content3-center{
}
.padma-row-content3-center-tab{
margin: 15px 0px;
}
.padma-row-content3-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content3-center-tab-image{
text-align: center;
}
.padma-row-content3-center-tab-image img {
}
.padma-row-content3-center-tab-text{
width: 100%;
height: 60px;
background-color: rgba(242,244,250,1);
color: #656565;
line-height: 60px;
text-align: center;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.padma-row-content4{
width: 100%;
}
.padma-row-content4-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content4-content{
font-size: 15px;
margin: 15px 0px;
text-align: center;
}
.padma-row-content4-images{
width: 100%;
margin-top: 20px;
height: 225px;
overflow: hidden;
}
.padma-row-content4-images img {
height: auto;
width: 100%;
}
.padma-row-content5{
width: 100%;
}
.padma-row-content5-left{
}
.padma-row-content5-left-title{
font-size: 25px;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content5-left-text{
margin-top: 15px;
font-size: 15px;
}
.padma-row-content5-left-button{
margin-top: 15px;
width: 100%;
text-align: center;
}
.padma-row-content5-left-button a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 35px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content5-left-button a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content5-right {
text-align: center;
overflow: hidden;
}
.padma-row-content5-right img {
}
.padma-row-content6{
}
.padma-row-content6-center{
}
.padma-row-content6-center-tab{
text-align: center;
}
.padma-row-content6-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content6-center-tab-image{
width: 90px;
font-size: 45px;
color: rgba(136,136,136,1);
line-height: 90px;
height: 90px;
margin-right: auto;
margin-left: auto;
background-color: rgba(255,255,255,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.padma-row-content6-center-tab-image i {
line-height: 90px;
}
.padma-row-content6-center-tab-text{
font-size: 16px;
margin-top: 15px;
}
.padma-row-content7{
background-color: rgba(255,255,255,1);
width: 100%;
padding-top: 75px;
padding-bottom: 75px;
}
.padma-row-content7-title{
width: 100%;
margin-left: 50px;
font-size: 26px;
text-align: center;
color: #1f4f69;
}
.padma-row-content7-center{
width: 970px;
margin-left: 100px;
margin-top: 40px;
}
.padma-row-content7-center-tab{
width: 290px;
background-color: rgba(242,244,250,1);
margin-right: 30px;
padding-bottom: 15px;
}
.padma-row-content7-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content7-center-tab-image{
height: 290px;
width: 290px;
text-align: center;
background-color: rgba(255,255,255,1);
overflow: hidden;
}
.padma-row-content7-center-tab-image img {
height: 290px;
width: auto;
}
.padma-row-content7-center-tab-title{
width: 270px;
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
margin-left: 15px;
}
.padma-row-content7-center-tab-text {
width: 270px;
font-size: 14px;
color: rgba(102,102,102,1);
line-height: 24px;
margin-top: 5px;
margin-left: 15px;
}
.padma-row-content8{
background-color: rgba(242,244,250,1);
width: 100%;
padding-top: 75px;
padding-bottom: 75px;
}
.padma-row-content8-title{
width: 1070px;
margin-left: 50px;
font-size: 26px;
text-align: center;
color: #1f4f69;
}
.padma-row-content8-center{
width: 970px;
margin-left: 100px;
margin-top: 40px;
}
.padma-row-content8-center-tab{
width: 470px;
background-color: rgba(255,255,255,1);
margin-right: 30px;
padding-bottom: 15px;
}
.padma-row-content8-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content8-center-tab-image{
height: 340px;
width: 470px;
text-align: center;
background-color: rgba(255,255,255,1);
overflow: hidden;
}
.padma-row-content8-center-tab-image img {
height: auto;
width: 470px;
}
.padma-row-content8-center-tab-title{
width: 470px;
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
margin-left: 15px;
}
.padma-row-content8-center-tab-text {
width: 470px;
font-size: 14px;
color: rgba(102,102,102,1);
line-height: 24px;
margin-top: 5px;
margin-left: 15px;
}
.padma-row-content9{
width: 100%;
background-color: rgba(255,255,255,1);
}
.padma-row-content9-title{
width: 1000px;
margin-left: 75px;
font-size: 26px;
text-align: center;
color: #1f4f69;
margin-top: 50px;
}
.padma-row-content9-content{
width: 1000px;
margin-left: 75px;
margin-top: 25px;
color: #656565;
font-size: 16px;
line-height: 24px;
font-weight: 300;
text-align: center;
}
.padma-row-content9-images{
width: 100%;
margin-top: 50px;
height: 225px;
overflow: hidden;
}
.padma-row-content9-images img {
height: auto;
width: 100%;
}
.padma-row-content10{
width: 100%;
padding: 0px;
}
.padma-row-content10-title{
width: 100%;
font-size: 25px;
text-align: left;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content10-center{
width: 100%;
}
.padma-row-content10-center-tab{
width: 100%;
}
.padma-row-content10-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content10-center-tab-image{
height: 303px;
width: 303px;
text-align: center;
background-color: rgba(242,244,250,1);
overflow: hidden;
}
.padma-row-content10-center-tab-image img {
height: 303px;
width: auto;
}
.padma-row-content10-center-tab-title{
width: 100%;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content10-center-tab-text {
width: 100%;
font-size: 15px;
margin-top: 10px;
}
.padma-row-content11{
width: 100%;
}
.padma-row-content11-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content11-center{
margin-top: 15px;
}
.padma-row-content11-center-tab{
text-align: center;
}
.padma-row-content11-center-tab:last-child {
margin-right: 0px;
}
.padma-row-content11-center-tab-image{
text-align: center;
overflow: hidden;
}
.padma-row-content11-center-tab-image img {
height: auto;
}
.padma-row-content11-center-tab-title{
color: #00ACCC;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-top: 15px;
}
.padma-row-content11-center-tab-text {
font-size: 145x;
margin-top: 15px;
}
.padma-row-content11-center-tab-text-link {
margin-top: 15px;
}
.padma-row-content11-center-tab-text-link a {
background-color: rgba(150,111,177,1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(255,255,255,1);
font-size: 15px;
line-height: 25px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
}
.padma-row-content11-center-tab-text-link a:hover {
background-color: rgba(63,141,191,1);
}
.padma-row-content12{
text-align: center;
}
.padma-row-content12-title{
font-size: 25px;
text-align: center;
color: #444;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content12-center{
margin-top: 15px;
}
.padma-row-content12-center-tab{
margin-top: 15px;
margin-bottom: 15px;
padding: 10px;
}
.padma-row-content12-center-tab:nth-child(even) {
margin-right: 0px;
}
.padma-row-content12-center-tab-icon {
height: 80px;
width: 80px;
color: rgba(128,147,161,1);
font-size: 24px;
line-height: 40px;
text-align: center;
float: left;
}
.padma-row-content12-center-tab-icon i {
line-height: 80px;
font-size: 48px;
}
.padma-row-content12-center-tab-title{
float: left;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
height: 40px;
line-height: 40px;
width:85%;
text-align: left;
clear: right;
}
.padma-row-content12-center-tab-text {
font-size: 14px;
line-height: 24px;
text-align: left;
}
.padma-row-content13{
width: 100%;
background-color: rgba(255,255,255,1);
padding-top: 50px;
padding-bottom: 50px;
}
.padma-row-content13-center {
width: 970px;
margin-left: 100px;
margin-top: 10px;
}
.padma-row-content13-center-left{
}
.padma-row-content13-center-left-title{
font-size: 20px;
color: rgba(136,136,136,1);
line-height: 30px;
}
.padma-row-content13-center-left-subtitle{
font-size: 16px;
line-height: 20px;
font-weight: bold;
text-transform: uppercase;
margin-top: 8px;
}
.padma-row-content13-center-right{
float: right;
}
.padma-row-content13-center-right a {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
color: rgba(136,136,136,1);
font-size: 15px;
line-height: 40px;
text-decoration: none;
padding-right: 15px;
padding-left: 15px;
display: block;
background-color: rgba(255,255,255,0);
border: 1px solid rgba(255,255,255,1);
}
.padma-row-content13-center-right a:hover {
background-color: rgba(255,255,255,0.2);
}
.padma-row-content14{
width: 100%;
background-color: rgba(53,57,70,1);
padding-top: 25px;
padding-bottom: 25px;
font-weight: bold;
text-transform: uppercase;
}
.padma-row-content14-center{
width: 970px;
margin-left: 100px;
}
.padma-row-content14-center-left{
width: 470px;
}
.padma-row-content14-center-left-title{
color: #747885;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.padma-row-content14-center-left-text{
color: #b9bcc5;
font-size: 14px;
line-height: 24px;
}
.padma-row-content14-center-right{
float: right;
width: 470px;
}
.padma-row-content14-center-right-title{
color: #747885;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.padma-row-content14-center-right-row{
color: #b9bcc5;
font-size: 14px;
line-height: 24px;
width: 100%;
}
.padma-row-content14-center-right-type{
width: 80px;
font-weight: 600;
}
.padma-row-content14-center-right-content{
float: right;
width: 385px;
}
.padma-row-content15{
background-color: rgba(53,57,70,1);
width: 100%;
height: 80px;
}
.padma-row-content15-center{
width: 970px;
margin-left: 100px;
}
.padma-row-content15-center-left{
width: 310px;
overflow: hidden;
margin-top: 30px;
}
.padma-row-content15-center-left img {
max-height: 80px;
width: auto;
}
.padma-row-content15-center-right{
float: right;
color: #b9bcc5;
font-size: 14px;
line-height: 80px;
width: 640px;
text-align: right;
}
.ml20 {
margin-left: 20px;
}
| 0.29209 | 0.060836 |
.textField{
width: 100%;
}
.menu{
width: 97%;
margin: auto;
}
.botonCarro{
width: 90%;
height: auto;
background: #282828;
color: #ffffff;
border-color: #ffffff;
padding:5px;
font-weight: bold;
margin: auto;
}
.botonCarro:hover{
width: 90%;
height: auto;
background: #fff;
color: #282828;
border-color: #282828;
padding:5px;
font-weight: bold;
margin: auto;
}
.cajaCabecera{
background: #D4D4D4;
color: #fff;
padding: 5px;
margin: auto;
text-align: center;
}
.cajaPie{
background: #D4D4D4;
color: #fff;
padding: 5px;
margin: auto;
text-align: center;
}
.cajaCuerpo{
padding: 5px;
margin: auto;
}
div.cajaCuerpo>div{
border-style: solid;
border-color: #D4D4D4;
}
.botonFavorito{
width: 10%;
height: auto;
background: #fff;
color: #282828;
border-color: #282828;
padding:5px;
font-weight: bold;
margin-left: -5px;
}
.botonFavorito:hover{
width: 10%;
height: auto;
background: #282828;
color: #ffffff;
border-color: #ffffff;
padding:5px;
font-weight: bold;
margin-left: -5px;
}
.divColeccion{
background-color: #282828;
width: 100%;
font-weight: bold;
font-family:serif;
padding: 15px;
margin-bottom: .5em;
color: #FFFFFF;
clear: both;
text-align: center;
}
.tituloLetra{
margin-left: 5%;
text-transform: uppercase;
margin-bottom: .5em;
color: #3e3e3e;
clear: both;
}
.carousel-inner{
background: #D8D8D8;
width: 100%;
height: 100%;
}
.nombreLetra{
margin-left: 5%;
line-height: 1.1;
font-size: 1;
color: #757676;
clear: both;
}
.contenidoTextArea{
line-height: 1.1;
font-size: 1;
color: #757676;
clear: both;
text-align:justify;
}
.margenMenu{
padding-right: 5px;
padding-left: 5px;
width: 90%;
}
.margenes{
position: relative;
min-height: 1px;
padding-right: 10px;
padding-left: 10px;
margin: 10px;
}
.tamañoDialog {
width: 75%;
margin: auto;
margin-top: 5px;
border-radius: 15px;
background-color: #EDEDED;
}
.cajaDocumentacion{
background-color: #fff;
width: 100%;
margin: auto;
}
.cajaDocumentacion2{
width: 100%;
vertical-align: middle;
margin: auto;
}
.fot{
margin-top: 5%;
}
.descriptionTextArea {
padding: .5em;
}
.modalContenido{
height: 20%;
margin: auto;
position:E5E5E5 relative;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.2);
border-radius: 15px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5)
}
.contenedorPie {
padding-right: 5px;
padding-left: 5px;
margin-right: auto;
margin-left: auto;
background: #282828;
}
tr{
border: 1px solid;
border-color: #D4D4D4;
height: 70px;
}
td{
margin: auto;
border: none;
padding: 10px;
font-size: 11px;
}
table{
width: 100%;
}
.letraFooter{
color:white;
}
|
css/invitaciones.css
|
.textField{
width: 100%;
}
.menu{
width: 97%;
margin: auto;
}
.botonCarro{
width: 90%;
height: auto;
background: #282828;
color: #ffffff;
border-color: #ffffff;
padding:5px;
font-weight: bold;
margin: auto;
}
.botonCarro:hover{
width: 90%;
height: auto;
background: #fff;
color: #282828;
border-color: #282828;
padding:5px;
font-weight: bold;
margin: auto;
}
.cajaCabecera{
background: #D4D4D4;
color: #fff;
padding: 5px;
margin: auto;
text-align: center;
}
.cajaPie{
background: #D4D4D4;
color: #fff;
padding: 5px;
margin: auto;
text-align: center;
}
.cajaCuerpo{
padding: 5px;
margin: auto;
}
div.cajaCuerpo>div{
border-style: solid;
border-color: #D4D4D4;
}
.botonFavorito{
width: 10%;
height: auto;
background: #fff;
color: #282828;
border-color: #282828;
padding:5px;
font-weight: bold;
margin-left: -5px;
}
.botonFavorito:hover{
width: 10%;
height: auto;
background: #282828;
color: #ffffff;
border-color: #ffffff;
padding:5px;
font-weight: bold;
margin-left: -5px;
}
.divColeccion{
background-color: #282828;
width: 100%;
font-weight: bold;
font-family:serif;
padding: 15px;
margin-bottom: .5em;
color: #FFFFFF;
clear: both;
text-align: center;
}
.tituloLetra{
margin-left: 5%;
text-transform: uppercase;
margin-bottom: .5em;
color: #3e3e3e;
clear: both;
}
.carousel-inner{
background: #D8D8D8;
width: 100%;
height: 100%;
}
.nombreLetra{
margin-left: 5%;
line-height: 1.1;
font-size: 1;
color: #757676;
clear: both;
}
.contenidoTextArea{
line-height: 1.1;
font-size: 1;
color: #757676;
clear: both;
text-align:justify;
}
.margenMenu{
padding-right: 5px;
padding-left: 5px;
width: 90%;
}
.margenes{
position: relative;
min-height: 1px;
padding-right: 10px;
padding-left: 10px;
margin: 10px;
}
.tamañoDialog {
width: 75%;
margin: auto;
margin-top: 5px;
border-radius: 15px;
background-color: #EDEDED;
}
.cajaDocumentacion{
background-color: #fff;
width: 100%;
margin: auto;
}
.cajaDocumentacion2{
width: 100%;
vertical-align: middle;
margin: auto;
}
.fot{
margin-top: 5%;
}
.descriptionTextArea {
padding: .5em;
}
.modalContenido{
height: 20%;
margin: auto;
position:E5E5E5 relative;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.2);
border-radius: 15px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5)
}
.contenedorPie {
padding-right: 5px;
padding-left: 5px;
margin-right: auto;
margin-left: auto;
background: #282828;
}
tr{
border: 1px solid;
border-color: #D4D4D4;
height: 70px;
}
td{
margin: auto;
border: none;
padding: 10px;
font-size: 11px;
}
table{
width: 100%;
}
.letraFooter{
color:white;
}
| 0.369429 | 0.097648 |
.GeneralDialog {
width: 500px;
}
.GeneralContent {
position: relative;
background-color: #FFF;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
/*====================================================*/
/*RobotState*/
#GeneralSettingRobotDiv {
position: absolute;
top: 2%;
left: 25%;
width: 250px;
height: 60px;
}
#GeneralSettingRobotDiv table {
width: 100%;
height: 100%;
}
#GeneralRobot1Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot1Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#GeneralRobot2Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot2Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#GeneralRobot3Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot3Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#SetGeneralButton1 table {
width: 100%;
height: 100%;
text-align: center;
}
#SetGeneralButton2 table {
width: 100%;
height: 100%;
text-align: center;
}
#SetGeneralButton3 table {
width: 100%;
height: 100%;
text-align: center;
}
/*====================================================*/
/*StrategyButton*/
/*Robot1*/
#SPlanningVelocity1 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity1.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan1 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan1.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*Robot2*/
#SPlanningVelocity2 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity2.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan2 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan2.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*Robot3*/
#SPlanningVelocity3 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity3.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan3 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan3.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*====================================================*/
/*table*/
/*Robot1*/
#SPlanningVelocityModule1 td {
width: 50%;
}
#PathPlanModule1 td {
width: 50%;
}
/*Robot2*/
#SPlanningVelocityModule2 td {
width: 50%;
}
#PathPlanModule2 td {
width: 50%;
}
/*Robot3*/
#SPlanningVelocityModule3 td {
width: 50%;
}
#PathPlanModule3 td {
width: 50%;
}
/*=====================================================*/
/*Module*/
/*Robot1*/
#SPlanningVelocityModule1 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule1 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*Robot2*/
#SPlanningVelocityModule2 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule2 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*Robot3*/
#SPlanningVelocityModule3 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule3 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*=====================================================*/
/*form-group*/
#SPlanningVelocityModule1.form-group {
background-color: #ffb6c1;
}
#SPlanningVelocityModule2.form-group {
background-color: #90ee90;
}
#SPlanningVelocityModule3.form-group {
background-color: #b0c4de;
}
#PathPlanModule1.form-group {
background-color: #ffb6c1;
}
#PathPlanModule2.form-group {
background-color: #90ee90;
}
#PathPlanModule3.form-group {
background-color: #b0c4de;
}
/*=====================================================*/
/*Save*/
#SetGeneralExecute {
text-align: center;
}
|
web/Regular_UI/css/general.css
|
.GeneralDialog {
width: 500px;
}
.GeneralContent {
position: relative;
background-color: #FFF;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
/*====================================================*/
/*RobotState*/
#GeneralSettingRobotDiv {
position: absolute;
top: 2%;
left: 25%;
width: 250px;
height: 60px;
}
#GeneralSettingRobotDiv table {
width: 100%;
height: 100%;
}
#GeneralRobot1Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot1Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#GeneralRobot2Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot2Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#GeneralRobot3Button {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#GeneralRobot3Button.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#SetGeneralButton1 table {
width: 100%;
height: 100%;
text-align: center;
}
#SetGeneralButton2 table {
width: 100%;
height: 100%;
text-align: center;
}
#SetGeneralButton3 table {
width: 100%;
height: 100%;
text-align: center;
}
/*====================================================*/
/*StrategyButton*/
/*Robot1*/
#SPlanningVelocity1 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity1.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan1 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan1.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*Robot2*/
#SPlanningVelocity2 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity2.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan2 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan2.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*Robot3*/
#SPlanningVelocity3 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#SPlanningVelocity3.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
#PathPlan3 {
background-image: none;
/*background-color: #99CCFF;*/
font-size: 14px;
color: #663D00;
}
#PathPlan3.ui-state-active {
background-color: #FFCC00;
font-size: 14px;
color: #1A1A65;
}
/*====================================================*/
/*table*/
/*Robot1*/
#SPlanningVelocityModule1 td {
width: 50%;
}
#PathPlanModule1 td {
width: 50%;
}
/*Robot2*/
#SPlanningVelocityModule2 td {
width: 50%;
}
#PathPlanModule2 td {
width: 50%;
}
/*Robot3*/
#SPlanningVelocityModule3 td {
width: 50%;
}
#PathPlanModule3 td {
width: 50%;
}
/*=====================================================*/
/*Module*/
/*Robot1*/
#SPlanningVelocityModule1 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule1 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*Robot2*/
#SPlanningVelocityModule2 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule2 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*Robot3*/
#SPlanningVelocityModule3 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
#PathPlanModule3 {
height: 200px;
text-align: left;
border-style: solid;
overflow: scroll;
}
/*=====================================================*/
/*form-group*/
#SPlanningVelocityModule1.form-group {
background-color: #ffb6c1;
}
#SPlanningVelocityModule2.form-group {
background-color: #90ee90;
}
#SPlanningVelocityModule3.form-group {
background-color: #b0c4de;
}
#PathPlanModule1.form-group {
background-color: #ffb6c1;
}
#PathPlanModule2.form-group {
background-color: #90ee90;
}
#PathPlanModule3.form-group {
background-color: #b0c4de;
}
/*=====================================================*/
/*Save*/
#SetGeneralExecute {
text-align: center;
}
| 0.442877 | 0.085366 |
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*colors:
green: #003a07
white: #fffff0
blue: #161687
black: #000B02*/
/*Universal Selectors****************/
h1,h3,button {
font-family: 'Permanent Marker', cursive;
color: #fffff0;
}
h2,h4,h5,h6,p,label,input {
font-family: 'Reenie Beanie', cursive;
color: #fffff0;
}
body {
background-color: #003a07;
margin: 0;
}
/*Class Selectors********************/
/*HEADER img and NAVBAR*/
.hero-photo img {
height: auto;
position:relative;
margin-left: auto;
margin-right: auto;
width: 1280px;
background-size: cover;
}
.hero-photo h2 {
position: absolute;
top: 284px;
left: 241px;
font-size: 6em;
}
.navbar {
position: fixed;
z-index: 100;
width: 100%;
top: 0;
height: 80px;
background-color: rgba(0, 11, 2, 1);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.5);
}
.navbar h1 {
position: fixed;
z-index: 100;
left: 30px;
font-size: 3.2em;
margin-top: 0px;
letter-spacing: 2px;
}
.navbar h3:first-of-type {
right: 170px;
}
.navbar h3 {
position: fixed;
z-index: 100;
right: 30px;
margin-top: 20px;
font-size: 1.7em;
letter-spacing: 2px;
}
/*Current logs div with featured log and log-tiles*/
.current-logs {
width: 100%;
margin-left: 15px;
padding-bottom: 100px;
position: relative;
/*display: inline-block;*/
}
.current-logs h1 {
padding: 0 0 5px 5px;
border-bottom: 2px solid #161687;
letter-spacing: 2px;
}
/*featured log tile*/
.featured-log {
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
width: 500px;
height: auto;
text-align: center;
margin-top: 60px;
float: left;
}
.featured-log:hover {
transform: rotate(3deg);
}
.featured-log::before {
content: url('../img/pin.png');
position:absolute;
z-index: 1;
transform: scale(.25);
filter: hue-rotate(210deg);
margin-top: -165px;
margin-left: -160px;
}
.featured-log h2 {
color: #000B02;
font-size: 3em;
padding-top: 10px;
}
.featured-log img {
width: 450px;
height: 325px;
border: 3px solid #000B02;
object-fit: cover;
}
.featured-log p {
color: #000B02;
font-size: 1.5em;
margin-right: 25px;
margin-left: 25px;
margin-bottom: 0;
text-align: justify;
}
.featured-log p::first-letter {
color: #000B02;
font-size: 3em;
font-weight: bold;
padding-right: 20px;
margin-top: -25px;
float: left;
}
.featured-log p::first-line {
font-weight: bold;
font-size: 1.5em;
}
.featured-log button {
color: #161687;
background-color: #fffff0;
font-size: 1.5em;
padding: 0 10px 0 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 3px solid #161687;
}
.featured-log button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.20) rotate(-5deg);
}
/*log tiles inline block or flexed*/
.log-tiles {
display: inline-block;
margin-top: 92px;
max-width: 700px;
}
.log-tileA {
height: 200px;
width: 200px;
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
text-align: center;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
}
.log-tileA:hover {
transform: rotate(3deg);
}
.log-tileA h2 {
color: #000B02;
margin: 0;
font-size: 2em;
}
.log-tileA img {
height: 120px;
width: 200px;
object-fit: cover;
}
.log-tileA button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.log-tileA button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(-5deg);
}
.log-tileB {
height: 200px;
width: 200px;
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
text-align: center;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
}
.log-tileB:hover {
transform: rotate(-3deg);
}
.log-tileB h2 {
color: #000B02;
margin: 0;
font-size: 2em;
}
.log-tileB img {
height: 120px;
width: 200px;
object-fit: cover;
}
.log-tileB button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.log-tileB button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(5deg);
}
/*Footer div with song lyrics and deals form*/
.footer {
margin: 0;
width: 100%;
height: auto;
background-color: #fffff0;
}
.song {
padding: 40px 0 0 40px;
float: left;
}
.song h2 {
color: #000B02;
font-size: 2.5em;
}
.song p {
color: #000B02;
font-size: 2em;
max-width: 560px;
}
.form1 {
float: right;
max-width: 400px;
margin: 40px 120px 20px 20px;
padding: 0 20px 20px 20px;
text-align: justify;
border: 2px solid #161687;
}
.form1 h2,label,input {
color: #000B02;
font-size: 2em;
}
.form h2 {
color: red;
border: 2px solid #161687;
}
.form1 input {
padding: 10px;
margin-bottom: 10px;
}
.form1 input:focus {
outline-color: #161687;
outline-style: double;
}
.form1 button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
margin-left: 135px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.form1 button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(5deg);
}
.clearfix {
clear: both;
}
/*Id Selectors***********************/
/*Media Queries**********************/
|
css/styles.css
|
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*colors:
green: #003a07
white: #fffff0
blue: #161687
black: #000B02*/
/*Universal Selectors****************/
h1,h3,button {
font-family: 'Permanent Marker', cursive;
color: #fffff0;
}
h2,h4,h5,h6,p,label,input {
font-family: 'Reenie Beanie', cursive;
color: #fffff0;
}
body {
background-color: #003a07;
margin: 0;
}
/*Class Selectors********************/
/*HEADER img and NAVBAR*/
.hero-photo img {
height: auto;
position:relative;
margin-left: auto;
margin-right: auto;
width: 1280px;
background-size: cover;
}
.hero-photo h2 {
position: absolute;
top: 284px;
left: 241px;
font-size: 6em;
}
.navbar {
position: fixed;
z-index: 100;
width: 100%;
top: 0;
height: 80px;
background-color: rgba(0, 11, 2, 1);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.5);
}
.navbar h1 {
position: fixed;
z-index: 100;
left: 30px;
font-size: 3.2em;
margin-top: 0px;
letter-spacing: 2px;
}
.navbar h3:first-of-type {
right: 170px;
}
.navbar h3 {
position: fixed;
z-index: 100;
right: 30px;
margin-top: 20px;
font-size: 1.7em;
letter-spacing: 2px;
}
/*Current logs div with featured log and log-tiles*/
.current-logs {
width: 100%;
margin-left: 15px;
padding-bottom: 100px;
position: relative;
/*display: inline-block;*/
}
.current-logs h1 {
padding: 0 0 5px 5px;
border-bottom: 2px solid #161687;
letter-spacing: 2px;
}
/*featured log tile*/
.featured-log {
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
width: 500px;
height: auto;
text-align: center;
margin-top: 60px;
float: left;
}
.featured-log:hover {
transform: rotate(3deg);
}
.featured-log::before {
content: url('../img/pin.png');
position:absolute;
z-index: 1;
transform: scale(.25);
filter: hue-rotate(210deg);
margin-top: -165px;
margin-left: -160px;
}
.featured-log h2 {
color: #000B02;
font-size: 3em;
padding-top: 10px;
}
.featured-log img {
width: 450px;
height: 325px;
border: 3px solid #000B02;
object-fit: cover;
}
.featured-log p {
color: #000B02;
font-size: 1.5em;
margin-right: 25px;
margin-left: 25px;
margin-bottom: 0;
text-align: justify;
}
.featured-log p::first-letter {
color: #000B02;
font-size: 3em;
font-weight: bold;
padding-right: 20px;
margin-top: -25px;
float: left;
}
.featured-log p::first-line {
font-weight: bold;
font-size: 1.5em;
}
.featured-log button {
color: #161687;
background-color: #fffff0;
font-size: 1.5em;
padding: 0 10px 0 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 3px solid #161687;
}
.featured-log button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.20) rotate(-5deg);
}
/*log tiles inline block or flexed*/
.log-tiles {
display: inline-block;
margin-top: 92px;
max-width: 700px;
}
.log-tileA {
height: 200px;
width: 200px;
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
text-align: center;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
}
.log-tileA:hover {
transform: rotate(3deg);
}
.log-tileA h2 {
color: #000B02;
margin: 0;
font-size: 2em;
}
.log-tileA img {
height: 120px;
width: 200px;
object-fit: cover;
}
.log-tileA button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.log-tileA button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(-5deg);
}
.log-tileB {
height: 200px;
width: 200px;
background-color: #fffff0;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
text-align: center;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
}
.log-tileB:hover {
transform: rotate(-3deg);
}
.log-tileB h2 {
color: #000B02;
margin: 0;
font-size: 2em;
}
.log-tileB img {
height: 120px;
width: 200px;
object-fit: cover;
}
.log-tileB button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.log-tileB button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(5deg);
}
/*Footer div with song lyrics and deals form*/
.footer {
margin: 0;
width: 100%;
height: auto;
background-color: #fffff0;
}
.song {
padding: 40px 0 0 40px;
float: left;
}
.song h2 {
color: #000B02;
font-size: 2.5em;
}
.song p {
color: #000B02;
font-size: 2em;
max-width: 560px;
}
.form1 {
float: right;
max-width: 400px;
margin: 40px 120px 20px 20px;
padding: 0 20px 20px 20px;
text-align: justify;
border: 2px solid #161687;
}
.form1 h2,label,input {
color: #000B02;
font-size: 2em;
}
.form h2 {
color: red;
border: 2px solid #161687;
}
.form1 input {
padding: 10px;
margin-bottom: 10px;
}
.form1 input:focus {
outline-color: #161687;
outline-style: double;
}
.form1 button {
color: #161687;
background-color: #fffff0;
padding: 0 10px 0 10px;
margin-top: 10px;
margin-left: 135px;
border-radius: 5px;
border: 3px solid #161687;
font-size: 1em;
}
.form1 button:hover {
background-color: #161687;
color: #fffff0;
transform: scale(1.10) rotate(5deg);
}
.clearfix {
clear: both;
}
/*Id Selectors***********************/
/*Media Queries**********************/
| 0.407923 | 0.087175 |
.plans {
width: 836px;
margin: 50px auto;
overflow: hidden;
}
.plan {
float: left;
width: 22%;
margin: 20px 2px;
padding: 15px 25px;
text-align: center;
background: white;
background-clip: padding-box;
border: 2px solid #e5ded6;
border-color: rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.plan-title {
margin-bottom: 12px;
font-size: 20px;
color: #36bce6;
}
.plan-price {
margin-bottom: 20px;
line-height: 1;
font-size: 28px;
font-weight: bold;
color: #fd935a;
}
.plan-unit {
display: block;
margin-top: 5px;
font-size: 13px;
font-weight: normal;
color: #aaa;
}
.plan-features {
width: 120px;
margin: 20px auto 15px;
padding: 15px 0 0 15px;
border-top: 1px solid #e5ded6;
text-align: left;
}
.plan-feature {
line-height: 20px;
font-size: 24px;
font-weight: 500;
color: #333;
}
.plan-feature + .plan-feature {
margin-top: 5px;
}
.plan-feature-unit {
margin-left: 2px;
font-size: 16px;
}
.plan-feature-name {
font-size: 13px;
font-weight: normal;
color: #aaa;
}
.plan-button {
position: relative;
display: block;
line-height: 40px;
font-size: 16px;
font-weight: 500;
color: white;
text-align: center;
text-decoration: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
background: #fd935c;
border-bottom: 2px solid #cf7e3b;
border-color: rgba(0, 0, 0, 0.15);
border-radius: 4px;
width: 100%;
}
.plan-button:active {
top: 2px;
margin-bottom: 2px;
border-bottom: 0;
}
.plan-highlight {
margin-top: 0;
margin-bottom: 0;
padding-left: 15px;
padding-right: 15px;
width: 23%;
border: 4px solid #37bbe6;
}
.plan-highlight .plan-button {
font-size: 18px;
line-height: 49px;
background: #37bce5;
border-color: #3996b3;
border-color: rgba(0, 0, 0, 0.15);
}
.plan-recommended {
width: 160px;
margin: -15px auto 15px;
padding-bottom: 2px;
line-height: 22px;
font-size: 14px;
font-weight: bold;
color: white;
text-shadow: 0 1px rgba(0, 0, 0, 0.05);
background: #37bbe6;
border-radius: 0 0 4px 4px;
}
h1{
margin-top: 0px;
}
.special{
margin-top: -100px;
}
.special h2{
color: #FFFFFF;
}
.two{
}
.special span{
color: #FFFFFF;
}
#my-payment-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#recover-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#recover-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#recover-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#recover-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#login-form {
color: #FFFFFF;
}
#login-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#login-form input:hover{
font-size: 18px;
}
#login-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#login-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#login-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input:hover{
font-size: 18px;
}
#my-payment-form select{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
}
#my-payment-form select option {
background-color: #2db3ca;
}
#my-payment-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#register:hover {
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#login:hover {
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#recover:hover{
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#login{
margin-top: -21px;
}
.log{
padding-bottom: 116px!important;
}
.reco{
padding-bottom: 188px!important;
}
#login-phase a{
color: white;
}
#login-phase a:hover{
color: #F4C00B;
}
|
assets/css/style.css
|
.plans {
width: 836px;
margin: 50px auto;
overflow: hidden;
}
.plan {
float: left;
width: 22%;
margin: 20px 2px;
padding: 15px 25px;
text-align: center;
background: white;
background-clip: padding-box;
border: 2px solid #e5ded6;
border-color: rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.plan-title {
margin-bottom: 12px;
font-size: 20px;
color: #36bce6;
}
.plan-price {
margin-bottom: 20px;
line-height: 1;
font-size: 28px;
font-weight: bold;
color: #fd935a;
}
.plan-unit {
display: block;
margin-top: 5px;
font-size: 13px;
font-weight: normal;
color: #aaa;
}
.plan-features {
width: 120px;
margin: 20px auto 15px;
padding: 15px 0 0 15px;
border-top: 1px solid #e5ded6;
text-align: left;
}
.plan-feature {
line-height: 20px;
font-size: 24px;
font-weight: 500;
color: #333;
}
.plan-feature + .plan-feature {
margin-top: 5px;
}
.plan-feature-unit {
margin-left: 2px;
font-size: 16px;
}
.plan-feature-name {
font-size: 13px;
font-weight: normal;
color: #aaa;
}
.plan-button {
position: relative;
display: block;
line-height: 40px;
font-size: 16px;
font-weight: 500;
color: white;
text-align: center;
text-decoration: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
background: #fd935c;
border-bottom: 2px solid #cf7e3b;
border-color: rgba(0, 0, 0, 0.15);
border-radius: 4px;
width: 100%;
}
.plan-button:active {
top: 2px;
margin-bottom: 2px;
border-bottom: 0;
}
.plan-highlight {
margin-top: 0;
margin-bottom: 0;
padding-left: 15px;
padding-right: 15px;
width: 23%;
border: 4px solid #37bbe6;
}
.plan-highlight .plan-button {
font-size: 18px;
line-height: 49px;
background: #37bce5;
border-color: #3996b3;
border-color: rgba(0, 0, 0, 0.15);
}
.plan-recommended {
width: 160px;
margin: -15px auto 15px;
padding-bottom: 2px;
line-height: 22px;
font-size: 14px;
font-weight: bold;
color: white;
text-shadow: 0 1px rgba(0, 0, 0, 0.05);
background: #37bbe6;
border-radius: 0 0 4px 4px;
}
h1{
margin-top: 0px;
}
.special{
margin-top: -100px;
}
.special h2{
color: #FFFFFF;
}
.two{
}
.special span{
color: #FFFFFF;
}
#my-payment-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#recover-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#recover-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#recover-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#recover-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#login-form {
color: #FFFFFF;
}
#login-form input{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
transition: font-size 0.5s;
}
#login-form input:hover{
font-size: 18px;
}
#login-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#login-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#login-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input:hover{
font-size: 18px;
}
#my-payment-form select{
background-color: transparent;
border: 2px solid #FFFFFF;
color: #FFFFFF;
}
#my-payment-form select option {
background-color: #2db3ca;
}
#my-payment-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#my-payment-form input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #FFFFFF;
opacity: 1;
}
#type_chose::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
opacity: 1;
}
#register:hover {
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#login:hover {
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#recover:hover{
text-decoration: none;
background: white;
border-color: #2db3ca;
color: #F4890B;
}
#login{
margin-top: -21px;
}
.log{
padding-bottom: 116px!important;
}
.reco{
padding-bottom: 188px!important;
}
#login-phase a{
color: white;
}
#login-phase a:hover{
color: #F4C00B;
}
| 0.332527 | 0.130452 |
@import url('https://fonts.googleapis.com/css?family=Montserrat');
/* Addition aside from original template */
.center {
margin-left: auto;
margin-right: auto;
width: 100%;
}
.text-center{
text-align: center;
}
.middle {
top:10px;
width: 100%;
}
.v-center{
display: flex;
justify-content: center;
flex-direction: column;
height: 100%;
}
.thick{
font-weight: 600;
}
table{
font-size:small;
font-weight: 600;
}
.alert{
padding: 0px 10px;
position: relative;
top: 10px;
}
.h-100{
box-shadow: 7px 7px 7px silver;
}
.img-book{
max-width: 280px;
min-width: 280px;
max-height: 440px;
min-height: 151px;
}
.img-cover:hover{
opacity: 0.9;
}
.img-frame{
width: 166px;
height: 250px;
position: relative;
overflow: hidden;
}
.img-frame-profile{
width: 150px;
height: 250px;
position: relative;
overflow: hidden;
}
.img-center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
object-fit: cover;
border-radius:8px;
}
.img-cover{
max-height:250px;
min-height:100px;
max-width: 171.25px;
min-width: 100px;
transition: 0.3s ease-in-out;
}
.img-cover:hover{
opacity: 0.9;
border: 2px solid white;
}
.img-cover:active{
opacity: initial;
}
.img-cover-profile{
max-height:250px;
min-height:50px;
max-width: 150px;
min-width: 150px;
transition: 0.3s ease-in-out;
}
.img-cover-profile:hover{
opacity: 0.9;
border: 2px solid white;
}
.img-cover-profile:active{
opacity: initial;
}
.img-frame .img-cover,.img-frame-profile .img-cover-profile {
max-height: 100%;
max-width: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.img-user{
width: 150px;
height: 150px;
}
.img-user1{
width: 100px;
height: 100px;
}
.img-user-nav{
object-fit: cover;
border-radius:50%;
width: 40px;
height: 40px;
border:2px solid white
}
.img-user-comment{
object-fit: cover;
border-radius:50%;
width: 70px;
height: 70px;
border:2px solid black
}
.img-user-message{
object-fit: cover;
border-radius:50%;
width: 50px;
height: 50px;
/* border:1px solid #d3d3d3; */
}
.flex-column a.nav-link{
color:black;
transition: 0.3s;
}
.flex-column a.nav-link.active{
background-color:#e6e6e6;
color:black;
border-radius: 0px;
}
a .fa-circle{
color:#2d1f93;
transition: 0.3s;
}
a:hover .fa-circle{
color:#338bd5;
}
a:active .fa-circle{
color:#2d1f93;
}
tr{
line-height: 2;
}
.fas.fa-star{
color: blue;
}
#navb{
font-family : Montserrat, sans-serif;
}
.title{
border-left: 10px solid #343A40;
background-color: white ;
border-right: 1px solid #343A40;
border-bottom: 1px solid #343A40;
border-top: 1px solid #343A40;
}
#userTab{
color:black;
}
.nav-tabs a{
color:black;
font-weight: 600;
}
.nav-tabs a:hover{
color:black;
font-weight: 700;
}
.nav-tabs a:target{
color: #343A40;
}
.pull-right {
float: right !important;
}
.chatbox{
border:1px solid lightgray;
border-radius:10px;
}
.show-read-more .more-text{
display: none;
}
/* Color Used */
/* Main Template, picked from startbootstrap */
html{
overflow-x: scroll;
overflow-y: scroll;
display: block;
}
body {
overflow-x: hidden;
font-family : 'Montserrat', sans-serif;
background-color: whitesmoke;
width: 100%;
}
p {
line-height: 1.75;
}
a {
color: white;
}
a:hover {
color: #87CEFA;
}
.text-primary {
color: #3366ff !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: 'Montserrat', sans-serif;
}
section {
padding: 100px 0;
}
section h2.section-heading {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
section h3.section-subheading {
font-size: 16px;
font-weight: 400;
font-style: italic;
margin-bottom: 75px;
text-transform: none;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
section {
padding: 150px 0;
}
}
.btn {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary {
background-color: #3366ff;
border-color: #3366ff;
}
::-moz-selection {
background: #3366ff;
text-shadow: none;
}
::selection {
background: #338bd5;
text-shadow: none;
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
#mainNav {
background-color: #212529;
max-height: 50px;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color: #3366ff;
font-family: 'Montserrat', sans-serif;
}
#mainNav .navbar-brand {
color: white;
font-family : 'Montserrat', sans-serif;
transition: 1s ease;
}
#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
color: lightblue;
font-size: 170%;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 90%;
font-weight: 400;
padding: 0.75em 0;
letter-spacing: 1px;
color: white;
font-family: 'Montserrat', sans-serif;
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color: lightblue;
}
@media (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
transition: padding-top 0.3s, padding-bottom 0.3s;
border: none;
background-color: transparent;
}
#mainNav .navbar-brand {
font-size: 1.75em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s ease;
}
#mainNav .navbar-nav .nav-item .nav-link {
padding: 1.1em 1em !important;
}
#mainNav.navbar-shrink {
padding-top: 0;
padding-bottom: 0;
background-color: #212529;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
header.masthead {
text-align: center;
color: white;
background-image: url("../img/header-bg.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
header.masthead .intro-text {
padding-top: 150px;
padding-bottom: 100px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 22px;
font-style: italic;
line-height: 22px;
margin-bottom: 25px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
header.masthead .intro-text .intro-heading {
font-size: 50px;
font-weight: 700;
line-height: 50px;
margin-bottom: 25px;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
header.masthead .intro-text {
padding-top: 300px;
padding-bottom: 200px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 40px;
font-style: italic;
line-height: 40px;
margin-bottom: 25px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
header.masthead .intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin-bottom: 50px;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
}
.service-heading {
margin: 15px 0;
text-transform: none;
}
#portfolio .portfolio-item {
right: 0;
margin: 0 0 15px;
}
#portfolio .portfolio-item .portfolio-link {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
transition: all ease 0.5s;
opacity: 0;
background: rgba(254, 209, 54, 0.9);
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 20px;
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
color: white;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
margin: 0;
}
#portfolio .portfolio-item .portfolio-caption {
max-width: 400px;
margin: 0 auto;
padding: 25px;
text-align: center;
background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption h4 {
margin: 0;
text-transform: none;
}
#portfolio .portfolio-item .portfolio-caption p {
font-size: 16px;
font-style: italic;
margin: 0;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#portfolio * {
z-index: 2;
}
@media (min-width: 767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
.portfolio-modal {
padding-right: 0px !important;
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding: 100px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3em;
margin-bottom: 15px;
}
.portfolio-modal .modal-content p {
margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
font-size: 16px;
font-style: italic;
margin: 20px 0 30px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.portfolio-modal .modal-content ul.list-inline {
margin-top: 0;
margin-bottom: 30px;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content button {
cursor: pointer;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
/* Safari and Chrome */
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
/* IE 9 */
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
background-color: #212529;
}
.portfolio-modal .close-modal .lr .rl {
/* Safari and Chrome */
z-index: 1052;
width: 1px;
height: 75px;
/* IE 9 */
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background-color: #212529;
}
.timeline {
position: relative;
padding: 0;
list-style: none;
}
.timeline:before {
position: absolute;
top: 0;
bottom: 0;
left: 40px;
width: 2px;
margin-left: -1.5px;
content: '';
background-color: #e9ecef;
}
.timeline > li {
position: relative;
min-height: 50px;
margin-bottom: 50px;
}
.timeline > li:after, .timeline > li:before {
display: table;
content: ' ';
}
.timeline > li:after {
clear: both;
}
.timeline > li .timeline-panel {
position: relative;
float: right;
width: 100%;
padding: 0 20px 0 100px;
text-align: left;
}
.timeline > li .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
.timeline > li .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.timeline > li .timeline-image {
position: absolute;
z-index: 100;
left: 0;
width: 80px;
height: 80px;
margin-left: 0;
text-align: center;
color: white;
border: 7px solid #e9ecef;
border-radius: 100%;
background-color: #fed136;
}
.timeline > li .timeline-image h4 {
font-size: 10px;
line-height: 14px;
margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 20px 0 100px;
text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.timeline > li:last-child {
margin-bottom: 0;
}
.timeline .timeline-heading h4 {
margin-top: 0;
color: inherit;
}
.timeline .timeline-heading h4.subheading {
text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
margin-bottom: 0;
}
@media (min-width: 768px) {
.timeline:before {
left: 50%;
}
.timeline > li {
min-height: 100px;
margin-bottom: 100px;
}
.timeline > li .timeline-panel {
float: left;
width: 41%;
padding: 0 20px 20px 30px;
text-align: right;
}
.timeline > li .timeline-image {
left: 50%;
width: 100px;
height: 100px;
margin-left: -50px;
}
.timeline > li .timeline-image h4 {
font-size: 13px;
line-height: 18px;
margin-top: 16px;
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 30px 20px 20px;
text-align: left;
}
}
@media (min-width: 992px) {
.timeline > li {
min-height: 150px;
}
.timeline > li .timeline-panel {
padding: 0 20px 20px;
}
.timeline > li .timeline-image {
width: 150px;
height: 150px;
margin-left: -75px;
}
.timeline > li .timeline-image h4 {
font-size: 18px;
line-height: 26px;
margin-top: 30px;
}
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 20px 20px;
}
}
@media (min-width: 1200px) {
.timeline > li {
min-height: 170px;
}
.timeline > li .timeline-panel {
padding: 0 20px 20px 100px;
}
.timeline > li .timeline-image {
width: 170px;
height: 170px;
margin-left: -85px;
}
.timeline > li .timeline-image h4 {
margin-top: 40px;
}
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 100px 20px 20px;
}
}
.team-member {
margin-bottom: 50px;
text-align: center;
}
.team-member img {
width: 225px;
height: 225px;
border: 7px solid #fff;
}
.team-member h4 {
margin-top: 25px;
margin-bottom: 0;
text-transform: none;
}
.team-member p {
margin-top: 0;
}
section#contact {
background-color: #212529;
background-image: url("../img/map-image.png");
background-repeat: no-repeat;
background-position: center;
}
section#contact .section-heading {
color: #fff;
}
section#contact .form-group {
margin-bottom: 25px;
}
section#contact .form-group input,
section#contact .form-group textarea {
padding: 20px;
}
section#contact .form-group input.form-control {
height: auto;
}
section#contact .form-group textarea.form-control {
height: 248px;
}
section#contact .form-control:focus {
border-color: #fed136;
box-shadow: none;
}
section#contact ::-webkit-input-placeholder {
font-weight: 700;
color: #ced4da;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact :-moz-placeholder {
font-weight: 700;
color: #ced4da;
/* Firefox 18- */
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact ::-moz-placeholder {
font-weight: 700;
color: #ced4da;
/* Firefox 19+ */
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact :-ms-input-placeholder {
font-weight: 700;
color: #ced4da;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
footer {
padding: 25px 0;
text-align: center;
}
footer span.copyright {
font-size: 90%;
line-height: 40px;
text-transform: none;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
footer ul.quicklinks {
font-size: 90%;
line-height: 40px;
margin-bottom: 0;
text-transform: none;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
ul.social-buttons {
margin-bottom: 0;
}
ul.social-buttons li a {
font-size: 20px;
line-height: 40px;
display: block;
width: 40px;
height: 40px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
color: white;
border-radius: 100%;
outline: none;
background-color: #212529;
}
ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
background-color: #fed136;
}
.form-group{
padding: 5px 5px;
border-radius:10px
}
.card{
width: 105%;
}
.card-body{
padding:10px;
}
.portfolio-item {
margin-bottom: 20px;
}
.pagination {
margin-bottom: 30px;
}
.dropmenu {
background: #616161;
height: 30px;
list-style-type: none;
margin: 0;
padding: 0px;
}
.dropmenu li {
border-right: solid 1px white;
float: left;
height: 30px;
}
.dropmenu li a {
color: #fff;
display: block;
font: 12px;
font-weight: bold;
padding: 9px 20px;
text-decoration: none;
}
.dropmenu li:hover { background: #778899; position: relative; }
.dropmenu li:hover a { text-decoration: underline; }
.dropmenu li:hover ul {
background-color: #3f4a54;
border: 1px solid grey;
left: 0px;
padding: 3px;
top: 30px;
width: 160px;
}
.dropmenu li:hover ul li { border: none; height: 18px; }
.dropmenu li:hover ul li a {
background-color: #778899;
border: 1px solid transparent;
color: #fff;
display: block;
font-size: 11px;
height: 18px;
line-height: 18px;
padding: 0px;
text-decoration: none;
text-indent: 5px;
width: 158px;
padding: 3px;
}
.dropmenu li:hover ul li a:hover {
background: silver;
border: solid 1px #444;
color: #000;
height: 18px;
padding: 3px;
}
.dropmenu ul {
left: -9999px;
list-style-type: none;
position: absolute;
top: -9999px;
}
|
public/css/agency.css
|
@import url('https://fonts.googleapis.com/css?family=Montserrat');
/* Addition aside from original template */
.center {
margin-left: auto;
margin-right: auto;
width: 100%;
}
.text-center{
text-align: center;
}
.middle {
top:10px;
width: 100%;
}
.v-center{
display: flex;
justify-content: center;
flex-direction: column;
height: 100%;
}
.thick{
font-weight: 600;
}
table{
font-size:small;
font-weight: 600;
}
.alert{
padding: 0px 10px;
position: relative;
top: 10px;
}
.h-100{
box-shadow: 7px 7px 7px silver;
}
.img-book{
max-width: 280px;
min-width: 280px;
max-height: 440px;
min-height: 151px;
}
.img-cover:hover{
opacity: 0.9;
}
.img-frame{
width: 166px;
height: 250px;
position: relative;
overflow: hidden;
}
.img-frame-profile{
width: 150px;
height: 250px;
position: relative;
overflow: hidden;
}
.img-center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
object-fit: cover;
border-radius:8px;
}
.img-cover{
max-height:250px;
min-height:100px;
max-width: 171.25px;
min-width: 100px;
transition: 0.3s ease-in-out;
}
.img-cover:hover{
opacity: 0.9;
border: 2px solid white;
}
.img-cover:active{
opacity: initial;
}
.img-cover-profile{
max-height:250px;
min-height:50px;
max-width: 150px;
min-width: 150px;
transition: 0.3s ease-in-out;
}
.img-cover-profile:hover{
opacity: 0.9;
border: 2px solid white;
}
.img-cover-profile:active{
opacity: initial;
}
.img-frame .img-cover,.img-frame-profile .img-cover-profile {
max-height: 100%;
max-width: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.img-user{
width: 150px;
height: 150px;
}
.img-user1{
width: 100px;
height: 100px;
}
.img-user-nav{
object-fit: cover;
border-radius:50%;
width: 40px;
height: 40px;
border:2px solid white
}
.img-user-comment{
object-fit: cover;
border-radius:50%;
width: 70px;
height: 70px;
border:2px solid black
}
.img-user-message{
object-fit: cover;
border-radius:50%;
width: 50px;
height: 50px;
/* border:1px solid #d3d3d3; */
}
.flex-column a.nav-link{
color:black;
transition: 0.3s;
}
.flex-column a.nav-link.active{
background-color:#e6e6e6;
color:black;
border-radius: 0px;
}
a .fa-circle{
color:#2d1f93;
transition: 0.3s;
}
a:hover .fa-circle{
color:#338bd5;
}
a:active .fa-circle{
color:#2d1f93;
}
tr{
line-height: 2;
}
.fas.fa-star{
color: blue;
}
#navb{
font-family : Montserrat, sans-serif;
}
.title{
border-left: 10px solid #343A40;
background-color: white ;
border-right: 1px solid #343A40;
border-bottom: 1px solid #343A40;
border-top: 1px solid #343A40;
}
#userTab{
color:black;
}
.nav-tabs a{
color:black;
font-weight: 600;
}
.nav-tabs a:hover{
color:black;
font-weight: 700;
}
.nav-tabs a:target{
color: #343A40;
}
.pull-right {
float: right !important;
}
.chatbox{
border:1px solid lightgray;
border-radius:10px;
}
.show-read-more .more-text{
display: none;
}
/* Color Used */
/* Main Template, picked from startbootstrap */
html{
overflow-x: scroll;
overflow-y: scroll;
display: block;
}
body {
overflow-x: hidden;
font-family : 'Montserrat', sans-serif;
background-color: whitesmoke;
width: 100%;
}
p {
line-height: 1.75;
}
a {
color: white;
}
a:hover {
color: #87CEFA;
}
.text-primary {
color: #3366ff !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: 'Montserrat', sans-serif;
}
section {
padding: 100px 0;
}
section h2.section-heading {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
section h3.section-subheading {
font-size: 16px;
font-weight: 400;
font-style: italic;
margin-bottom: 75px;
text-transform: none;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
section {
padding: 150px 0;
}
}
.btn {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary {
background-color: #3366ff;
border-color: #3366ff;
}
::-moz-selection {
background: #3366ff;
text-shadow: none;
}
::selection {
background: #338bd5;
text-shadow: none;
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
#mainNav {
background-color: #212529;
max-height: 50px;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color: #3366ff;
font-family: 'Montserrat', sans-serif;
}
#mainNav .navbar-brand {
color: white;
font-family : 'Montserrat', sans-serif;
transition: 1s ease;
}
#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
color: lightblue;
font-size: 170%;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 90%;
font-weight: 400;
padding: 0.75em 0;
letter-spacing: 1px;
color: white;
font-family: 'Montserrat', sans-serif;
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color: lightblue;
}
@media (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
transition: padding-top 0.3s, padding-bottom 0.3s;
border: none;
background-color: transparent;
}
#mainNav .navbar-brand {
font-size: 1.75em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s ease;
}
#mainNav .navbar-nav .nav-item .nav-link {
padding: 1.1em 1em !important;
}
#mainNav.navbar-shrink {
padding-top: 0;
padding-bottom: 0;
background-color: #212529;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
header.masthead {
text-align: center;
color: white;
background-image: url("../img/header-bg.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
header.masthead .intro-text {
padding-top: 150px;
padding-bottom: 100px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 22px;
font-style: italic;
line-height: 22px;
margin-bottom: 25px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
header.masthead .intro-text .intro-heading {
font-size: 50px;
font-weight: 700;
line-height: 50px;
margin-bottom: 25px;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
header.masthead .intro-text {
padding-top: 300px;
padding-bottom: 200px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 40px;
font-style: italic;
line-height: 40px;
margin-bottom: 25px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
header.masthead .intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin-bottom: 50px;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
}
.service-heading {
margin: 15px 0;
text-transform: none;
}
#portfolio .portfolio-item {
right: 0;
margin: 0 0 15px;
}
#portfolio .portfolio-item .portfolio-link {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
transition: all ease 0.5s;
opacity: 0;
background: rgba(254, 209, 54, 0.9);
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 20px;
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
color: white;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
margin: 0;
}
#portfolio .portfolio-item .portfolio-caption {
max-width: 400px;
margin: 0 auto;
padding: 25px;
text-align: center;
background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption h4 {
margin: 0;
text-transform: none;
}
#portfolio .portfolio-item .portfolio-caption p {
font-size: 16px;
font-style: italic;
margin: 0;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#portfolio * {
z-index: 2;
}
@media (min-width: 767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
.portfolio-modal {
padding-right: 0px !important;
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding: 100px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3em;
margin-bottom: 15px;
}
.portfolio-modal .modal-content p {
margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
font-size: 16px;
font-style: italic;
margin: 20px 0 30px;
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.portfolio-modal .modal-content ul.list-inline {
margin-top: 0;
margin-bottom: 30px;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content button {
cursor: pointer;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
/* Safari and Chrome */
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
/* IE 9 */
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
background-color: #212529;
}
.portfolio-modal .close-modal .lr .rl {
/* Safari and Chrome */
z-index: 1052;
width: 1px;
height: 75px;
/* IE 9 */
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background-color: #212529;
}
.timeline {
position: relative;
padding: 0;
list-style: none;
}
.timeline:before {
position: absolute;
top: 0;
bottom: 0;
left: 40px;
width: 2px;
margin-left: -1.5px;
content: '';
background-color: #e9ecef;
}
.timeline > li {
position: relative;
min-height: 50px;
margin-bottom: 50px;
}
.timeline > li:after, .timeline > li:before {
display: table;
content: ' ';
}
.timeline > li:after {
clear: both;
}
.timeline > li .timeline-panel {
position: relative;
float: right;
width: 100%;
padding: 0 20px 0 100px;
text-align: left;
}
.timeline > li .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
.timeline > li .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.timeline > li .timeline-image {
position: absolute;
z-index: 100;
left: 0;
width: 80px;
height: 80px;
margin-left: 0;
text-align: center;
color: white;
border: 7px solid #e9ecef;
border-radius: 100%;
background-color: #fed136;
}
.timeline > li .timeline-image h4 {
font-size: 10px;
line-height: 14px;
margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 20px 0 100px;
text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.timeline > li:last-child {
margin-bottom: 0;
}
.timeline .timeline-heading h4 {
margin-top: 0;
color: inherit;
}
.timeline .timeline-heading h4.subheading {
text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
margin-bottom: 0;
}
@media (min-width: 768px) {
.timeline:before {
left: 50%;
}
.timeline > li {
min-height: 100px;
margin-bottom: 100px;
}
.timeline > li .timeline-panel {
float: left;
width: 41%;
padding: 0 20px 20px 30px;
text-align: right;
}
.timeline > li .timeline-image {
left: 50%;
width: 100px;
height: 100px;
margin-left: -50px;
}
.timeline > li .timeline-image h4 {
font-size: 13px;
line-height: 18px;
margin-top: 16px;
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 30px 20px 20px;
text-align: left;
}
}
@media (min-width: 992px) {
.timeline > li {
min-height: 150px;
}
.timeline > li .timeline-panel {
padding: 0 20px 20px;
}
.timeline > li .timeline-image {
width: 150px;
height: 150px;
margin-left: -75px;
}
.timeline > li .timeline-image h4 {
font-size: 18px;
line-height: 26px;
margin-top: 30px;
}
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 20px 20px;
}
}
@media (min-width: 1200px) {
.timeline > li {
min-height: 170px;
}
.timeline > li .timeline-panel {
padding: 0 20px 20px 100px;
}
.timeline > li .timeline-image {
width: 170px;
height: 170px;
margin-left: -85px;
}
.timeline > li .timeline-image h4 {
margin-top: 40px;
}
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 100px 20px 20px;
}
}
.team-member {
margin-bottom: 50px;
text-align: center;
}
.team-member img {
width: 225px;
height: 225px;
border: 7px solid #fff;
}
.team-member h4 {
margin-top: 25px;
margin-bottom: 0;
text-transform: none;
}
.team-member p {
margin-top: 0;
}
section#contact {
background-color: #212529;
background-image: url("../img/map-image.png");
background-repeat: no-repeat;
background-position: center;
}
section#contact .section-heading {
color: #fff;
}
section#contact .form-group {
margin-bottom: 25px;
}
section#contact .form-group input,
section#contact .form-group textarea {
padding: 20px;
}
section#contact .form-group input.form-control {
height: auto;
}
section#contact .form-group textarea.form-control {
height: 248px;
}
section#contact .form-control:focus {
border-color: #fed136;
box-shadow: none;
}
section#contact ::-webkit-input-placeholder {
font-weight: 700;
color: #ced4da;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact :-moz-placeholder {
font-weight: 700;
color: #ced4da;
/* Firefox 18- */
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact ::-moz-placeholder {
font-weight: 700;
color: #ced4da;
/* Firefox 19+ */
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
section#contact :-ms-input-placeholder {
font-weight: 700;
color: #ced4da;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
footer {
padding: 25px 0;
text-align: center;
}
footer span.copyright {
font-size: 90%;
line-height: 40px;
text-transform: none;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
footer ul.quicklinks {
font-size: 90%;
line-height: 40px;
margin-bottom: 0;
text-transform: none;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
ul.social-buttons {
margin-bottom: 0;
}
ul.social-buttons li a {
font-size: 20px;
line-height: 40px;
display: block;
width: 40px;
height: 40px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
color: white;
border-radius: 100%;
outline: none;
background-color: #212529;
}
ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
background-color: #fed136;
}
.form-group{
padding: 5px 5px;
border-radius:10px
}
.card{
width: 105%;
}
.card-body{
padding:10px;
}
.portfolio-item {
margin-bottom: 20px;
}
.pagination {
margin-bottom: 30px;
}
.dropmenu {
background: #616161;
height: 30px;
list-style-type: none;
margin: 0;
padding: 0px;
}
.dropmenu li {
border-right: solid 1px white;
float: left;
height: 30px;
}
.dropmenu li a {
color: #fff;
display: block;
font: 12px;
font-weight: bold;
padding: 9px 20px;
text-decoration: none;
}
.dropmenu li:hover { background: #778899; position: relative; }
.dropmenu li:hover a { text-decoration: underline; }
.dropmenu li:hover ul {
background-color: #3f4a54;
border: 1px solid grey;
left: 0px;
padding: 3px;
top: 30px;
width: 160px;
}
.dropmenu li:hover ul li { border: none; height: 18px; }
.dropmenu li:hover ul li a {
background-color: #778899;
border: 1px solid transparent;
color: #fff;
display: block;
font-size: 11px;
height: 18px;
line-height: 18px;
padding: 0px;
text-decoration: none;
text-indent: 5px;
width: 158px;
padding: 3px;
}
.dropmenu li:hover ul li a:hover {
background: silver;
border: solid 1px #444;
color: #000;
height: 18px;
padding: 3px;
}
.dropmenu ul {
left: -9999px;
list-style-type: none;
position: absolute;
top: -9999px;
}
| 0.380299 | 0.077134 |
@import "widgets/scheduleCallbackWidget.css";
html {
color: #222;
line-height: 1.4;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100%;
width: 100%;
position: absolute;
padding: 0;
margin: 0;
}
.app {
font-family: Lato, Arial, Sans-serif;
background-color: #fcfcfc;
color: #7d7d7d;
display: flex;
flex-direction: column;
}
.header-nav {
display: flex;
flex-direction: row;
justify-content: center;
flex-shrink: 0;
}
.header-nav-content {
width: 1024px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.header-nav-ctls-1 {
display: flex;
flex-direction: row;
}
.header-nav-ctls-2 {
display: flex;
flex-direction: row;
}
.header-nav-btn {
padding-left: 30px;
padding-right: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.header-nav-btn:hover {
background-color: #f0f0f0;
color: #707070;
}
.header-nav-callback-ctls {
display: flex;
flex-direction: row;
}
/* Schedule Callback Open Dialog button */
.sch-cbk-widget {
padding-left: 30px;
padding-right: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.sch-cbk-widget:hover {
background-color: #f0f0f0;
color: #707070;
cursor: pointer;
}
/* END Schedule Callback Open Dialog button */
.header-logo {
background-color: #0e5470;
color: #fcfcfc;
padding: 20px;
display: flex;
flex-direction: row;
flex-shrink: 0;
justify-content: center;
}
.header-logo-content {
width: 1024px;
display: flex;
flex-direction: row;
align-items: center;
}
.logo {
}
.logo-slogan {
margin-left: 60px;
}
.page-body {
display: flex;
justify-content: center;
flex-grow: 1;
overflow-x: scroll;
}
.page-body-content {
width: 1024px;
}
.hero-img {
width: 100%;
text-align: center;
}
.img-left {
float: left;
padding: 15px;
}
.img-right {
float: right;
padding: 15px;
}
|
client/src/app.css
|
@import "widgets/scheduleCallbackWidget.css";
html {
color: #222;
line-height: 1.4;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100%;
width: 100%;
position: absolute;
padding: 0;
margin: 0;
}
.app {
font-family: Lato, Arial, Sans-serif;
background-color: #fcfcfc;
color: #7d7d7d;
display: flex;
flex-direction: column;
}
.header-nav {
display: flex;
flex-direction: row;
justify-content: center;
flex-shrink: 0;
}
.header-nav-content {
width: 1024px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.header-nav-ctls-1 {
display: flex;
flex-direction: row;
}
.header-nav-ctls-2 {
display: flex;
flex-direction: row;
}
.header-nav-btn {
padding-left: 30px;
padding-right: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.header-nav-btn:hover {
background-color: #f0f0f0;
color: #707070;
}
.header-nav-callback-ctls {
display: flex;
flex-direction: row;
}
/* Schedule Callback Open Dialog button */
.sch-cbk-widget {
padding-left: 30px;
padding-right: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.sch-cbk-widget:hover {
background-color: #f0f0f0;
color: #707070;
cursor: pointer;
}
/* END Schedule Callback Open Dialog button */
.header-logo {
background-color: #0e5470;
color: #fcfcfc;
padding: 20px;
display: flex;
flex-direction: row;
flex-shrink: 0;
justify-content: center;
}
.header-logo-content {
width: 1024px;
display: flex;
flex-direction: row;
align-items: center;
}
.logo {
}
.logo-slogan {
margin-left: 60px;
}
.page-body {
display: flex;
justify-content: center;
flex-grow: 1;
overflow-x: scroll;
}
.page-body-content {
width: 1024px;
}
.hero-img {
width: 100%;
text-align: center;
}
.img-left {
float: left;
padding: 15px;
}
.img-right {
float: right;
padding: 15px;
}
| 0.38145 | 0.065695 |
@charset "UTF-8";
* {
box-sizing: border-box; }
.intv-video {
position: relative;
width: 880px; }
.help-layer {
position: absolute;
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;
background-color: rgba(0, 0, 0, 0.9);
width: 100%;
height: 100%;
top: 0;
left: 0;
color: #fff;
z-index: 1; }
.help-layer .wrapper {
height: 80%;
width: 60%;
border: 1px solid sandybrown;
background-color: sandybrown;
border-radius: 12px; }
.help-layer .wrapper h2 {
text-align: center; }
.help-layer .content {
list-style: none;
list-style-type: decimal;
line-height: 1.5;
font-size: 110%; }
.video-js .vjs-big-play-button {
position: absolute;
left: 50%;
top: 50%;
margin-left: -1.5em;
margin-top: -.75em; }
.control-panel {
position: relative;
margin-top: 10px;
width: 640px;
height: 120px;
border: 1px solid #ccc;
background-color: #535356; }
.control-panel span {
position: absolute;
display: block;
left: 0;
height: 100%;
width: 2px; }
.control-panel span.current-time-pin, .control-panel span.fake-pin {
background-color: crimson;
z-index: 1; }
.control-panel span.act-pin {
background-color: antiquewhite;
width: 2px;
text-align: center;
line-height: 120px; }
.control-panel span.act-pin.active {
background-color: yellowgreen;
cursor: ew-resize; }
.time-tip {
margin-top: 10px;
width: 640px;
border: 1px solid #ccc;
line-height: 30px;
text-align: center; }
#product-info {
width: 200px;
position: absolute;
top: 0;
right: 20px; }
#product-info .basic-info {
padding: 5px 10px;
margin: 0;
border: 1px dashed #ccc;
text-align: center; }
#product-info .basic-info > img {
height: 100px;
width: 100px; }
#product-info .basic-info p {
margin: 0;
line-height: 24px; }
#product-info .basic-info p.title {
font-size: 18px; }
#product-info .basic-info > p > span {
vertical-align: middle; }
#product-info .basic-info > p > span:before {
content: '¥'; }
#product-info .basic-info > p > span.now-price {
font-size: 18px;
font-weight: bolder; }
#product-info .basic-info > p > span.original-price {
text-decoration: line-through;
color: #b3b3b3;
font-size: 14px; }
#product-info button {
padding: 10px;
border: 0;
cursor: pointer; }
#product-info button.back, #product-info button.add {
color: #808080;
background-color: #f3f3f5; }
#product-info button.preview, #product-info button.save {
color: white;
background-color: #35aeff; }
#product-info button.preview {
width: 100%; }
#product-info button.save {
clear: left; }
#product-info .time-range {
overflow: hidden; }
#product-info .time-range > div {
float: left;
width: 50%; }
#product-info .time-range > div > span {
font-size: 14px;
line-height: 24px; }
#product-info .time-range > div .input-time {
position: relative;
height: 22px;
line-height: 22px; }
#product-info .time-range > div .input-time > span {
position: absolute;
display: block;
right: 2%;
width: 10%;
text-align: center;
height: 10px;
line-height: 10px;
outline: 1px solid #ccc; }
#product-info .time-range > div .input-time > span.plus {
top: 0; }
#product-info .time-range > div .input-time > span.minus {
bottom: 0; }
#product-info .time-range > div .input-time input {
width: 88%;
height: 100%; }
#product-info > div {
width: 100%;
padding: 5px 0; }
#product-list {
margin-top: 10px;
width: 100%;
font-size: 14px; }
#product-list thead {
background-color: #333333;
color: white; }
#product-list thead tr td {
text-align: center; }
#product-list tbody tr td {
border: none;
text-align: center; }
#product-list tbody tr td:first-child {
text-align: center; }
#product-list tbody tr td:nth-of-type(2) {
max-width: 200px;
word-break: break-all;
text-align: left; }
#product-list tbody tr td button {
border: 0;
outline: 0;
background: none;
cursor: pointer; }
#product-list tbody tr td button.update {
color: #008be8; }
#product-list tbody tr td button.delete {
color: #999999; }
#product-list tbody tr td span:before {
content: '¥'; }
#product-list tbody tr td span.now-price {
font-size: 18px;
font-weight: bolder; }
#product-list tbody tr td span.original-price {
text-decoration: line-through;
color: #b3b3b3;
font-size: 14px; }
|
mergeNewFunc/intvvideo.css
|
@charset "UTF-8";
* {
box-sizing: border-box; }
.intv-video {
position: relative;
width: 880px; }
.help-layer {
position: absolute;
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;
background-color: rgba(0, 0, 0, 0.9);
width: 100%;
height: 100%;
top: 0;
left: 0;
color: #fff;
z-index: 1; }
.help-layer .wrapper {
height: 80%;
width: 60%;
border: 1px solid sandybrown;
background-color: sandybrown;
border-radius: 12px; }
.help-layer .wrapper h2 {
text-align: center; }
.help-layer .content {
list-style: none;
list-style-type: decimal;
line-height: 1.5;
font-size: 110%; }
.video-js .vjs-big-play-button {
position: absolute;
left: 50%;
top: 50%;
margin-left: -1.5em;
margin-top: -.75em; }
.control-panel {
position: relative;
margin-top: 10px;
width: 640px;
height: 120px;
border: 1px solid #ccc;
background-color: #535356; }
.control-panel span {
position: absolute;
display: block;
left: 0;
height: 100%;
width: 2px; }
.control-panel span.current-time-pin, .control-panel span.fake-pin {
background-color: crimson;
z-index: 1; }
.control-panel span.act-pin {
background-color: antiquewhite;
width: 2px;
text-align: center;
line-height: 120px; }
.control-panel span.act-pin.active {
background-color: yellowgreen;
cursor: ew-resize; }
.time-tip {
margin-top: 10px;
width: 640px;
border: 1px solid #ccc;
line-height: 30px;
text-align: center; }
#product-info {
width: 200px;
position: absolute;
top: 0;
right: 20px; }
#product-info .basic-info {
padding: 5px 10px;
margin: 0;
border: 1px dashed #ccc;
text-align: center; }
#product-info .basic-info > img {
height: 100px;
width: 100px; }
#product-info .basic-info p {
margin: 0;
line-height: 24px; }
#product-info .basic-info p.title {
font-size: 18px; }
#product-info .basic-info > p > span {
vertical-align: middle; }
#product-info .basic-info > p > span:before {
content: '¥'; }
#product-info .basic-info > p > span.now-price {
font-size: 18px;
font-weight: bolder; }
#product-info .basic-info > p > span.original-price {
text-decoration: line-through;
color: #b3b3b3;
font-size: 14px; }
#product-info button {
padding: 10px;
border: 0;
cursor: pointer; }
#product-info button.back, #product-info button.add {
color: #808080;
background-color: #f3f3f5; }
#product-info button.preview, #product-info button.save {
color: white;
background-color: #35aeff; }
#product-info button.preview {
width: 100%; }
#product-info button.save {
clear: left; }
#product-info .time-range {
overflow: hidden; }
#product-info .time-range > div {
float: left;
width: 50%; }
#product-info .time-range > div > span {
font-size: 14px;
line-height: 24px; }
#product-info .time-range > div .input-time {
position: relative;
height: 22px;
line-height: 22px; }
#product-info .time-range > div .input-time > span {
position: absolute;
display: block;
right: 2%;
width: 10%;
text-align: center;
height: 10px;
line-height: 10px;
outline: 1px solid #ccc; }
#product-info .time-range > div .input-time > span.plus {
top: 0; }
#product-info .time-range > div .input-time > span.minus {
bottom: 0; }
#product-info .time-range > div .input-time input {
width: 88%;
height: 100%; }
#product-info > div {
width: 100%;
padding: 5px 0; }
#product-list {
margin-top: 10px;
width: 100%;
font-size: 14px; }
#product-list thead {
background-color: #333333;
color: white; }
#product-list thead tr td {
text-align: center; }
#product-list tbody tr td {
border: none;
text-align: center; }
#product-list tbody tr td:first-child {
text-align: center; }
#product-list tbody tr td:nth-of-type(2) {
max-width: 200px;
word-break: break-all;
text-align: left; }
#product-list tbody tr td button {
border: 0;
outline: 0;
background: none;
cursor: pointer; }
#product-list tbody tr td button.update {
color: #008be8; }
#product-list tbody tr td button.delete {
color: #999999; }
#product-list tbody tr td span:before {
content: '¥'; }
#product-list tbody tr td span.now-price {
font-size: 18px;
font-weight: bolder; }
#product-list tbody tr td span.original-price {
text-decoration: line-through;
color: #b3b3b3;
font-size: 14px; }
| 0.385143 | 0.045777 |
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*
PALETA DE CORES:
#A7BFBD
#eeeeee
#80A3A7
#827A5C
#161E2C
#03000D
#8c01af
*/
html {
font-size: 100%;
}
body {
background-color: #A7BFBD;
}
#linha{
background-color: #8c01af;
height: 5px;
}
#principal {
width: 875px;
background-color: #eeeeee;
margin-left: auto;
margin-right: auto;
border: 5px solid #161E2C;
border-right: 5px solid #827A5C;
border-bottom: 5px solid #827A5C;
box-shadow: 2px 2px 5px #03000D;
border-radius: 15px;
margin-top: 25px;
}
#topo {
background-color: #21415A;
color: #ffffff;
margin-top: -27px;
padding-bottom: .2rem;
}
h1 {
color: #fafafa;
font-size: 2.5rem; /* 40px */
text-align: center;
font-family: 'Itim', cursive;
text-decoration: #21415A underline;
text-transform: capitalize; /* */
text-shadow: 3px 3px 4px #000000;
}
h2 {
background-color: #8c01af;
font-size: 1rem; /* 16px */
text-align: center;
font-family: "Brush Script MT ",cursive;
font-variant: small-caps;
word-spacing: normal;
letter-spacing: 1px;
margin: -1rem 280px 1rem 280px; /* 1rem / -1rem = 16px / -16px */
padding: 5px;
border-radius: 5px;
text-shadow: 3px 3px 4px #000000;
}
.titulopost {
font-family: 'Asap Condensed', sans-serif;
background-color: #A7BFBD;
border-radius: 5px;
margin: 20px 40px 20px 20px;
padding: 9px;
color: #03000D;
font-size: 1.3rem; /* 21.33px | target / context */
}
.postagem {
background-color: #eeeeee;
font-family: 'Roboto', sans-serif;
margin:15px auto 15px auto;
padding: 10px;
border: 3px solid #161E2C;
border-right: 3px solid #827A5C;
border-bottom: 3px solid #827A5C;
border-radius: 5px;
box-shadow: 3px 3px 4px #000000;
width: 700px;
}
p {
margin: 17px;
font-size: 1rem; /* 16px */
line-height: 23px;
text-indent: 15px; /* Espaço antes do parágrafo */
font-family: Arial, Helvetica, sans-serif;
}
#rodape {
background-color: #8c01af;
color: #8c01af;
padding: 30px;
height: 200px;
border-top: 5px solid #000000;
}
ul {
list-style-position: inside;
margin-left: 300px;
margin-right: 300px;
padding: 30px;
text-align: center;
list-style-image: url("imagens/icon-list.png");
}
li {
font-family: 'Asap Condensed', sans-serif;
color: #8c01af;
background-color: #fefefe;
margin-bottom: .5rem;
border-radius: 5px;
text-align: center;
box-shadow: 2px 2px 4px #03000D;
}
h5 {
color: #fefefe;
text-align: center;
margin-bottom: -20px;
}
#copy {
text-align: center;
font-size: .7rem;
color: #fefefe;
text-decoration: none;
}
#copy:hover{
text-align: center;
font-size: 1rem;
color: #fefefe;
text-decoration: none;
cursor: pointer;
}
img {
margin-left: 150px;
margin-right: 150px;
}
img{
border: 5px solid #ffffff;
background-color: #ffffff;
box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}
img:hover{
-webkit-transform: scale(1.5);
transition: all 0.6s ease-in;
opacity: 1;
border: 5px solid #ffffff;
background-color: #ffffff;
box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}
#capa{
margin-left: 250px;
margin-right: 250px;
}
|
estilo.css
|
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*
PALETA DE CORES:
#A7BFBD
#eeeeee
#80A3A7
#827A5C
#161E2C
#03000D
#8c01af
*/
html {
font-size: 100%;
}
body {
background-color: #A7BFBD;
}
#linha{
background-color: #8c01af;
height: 5px;
}
#principal {
width: 875px;
background-color: #eeeeee;
margin-left: auto;
margin-right: auto;
border: 5px solid #161E2C;
border-right: 5px solid #827A5C;
border-bottom: 5px solid #827A5C;
box-shadow: 2px 2px 5px #03000D;
border-radius: 15px;
margin-top: 25px;
}
#topo {
background-color: #21415A;
color: #ffffff;
margin-top: -27px;
padding-bottom: .2rem;
}
h1 {
color: #fafafa;
font-size: 2.5rem; /* 40px */
text-align: center;
font-family: 'Itim', cursive;
text-decoration: #21415A underline;
text-transform: capitalize; /* */
text-shadow: 3px 3px 4px #000000;
}
h2 {
background-color: #8c01af;
font-size: 1rem; /* 16px */
text-align: center;
font-family: "Brush Script MT ",cursive;
font-variant: small-caps;
word-spacing: normal;
letter-spacing: 1px;
margin: -1rem 280px 1rem 280px; /* 1rem / -1rem = 16px / -16px */
padding: 5px;
border-radius: 5px;
text-shadow: 3px 3px 4px #000000;
}
.titulopost {
font-family: 'Asap Condensed', sans-serif;
background-color: #A7BFBD;
border-radius: 5px;
margin: 20px 40px 20px 20px;
padding: 9px;
color: #03000D;
font-size: 1.3rem; /* 21.33px | target / context */
}
.postagem {
background-color: #eeeeee;
font-family: 'Roboto', sans-serif;
margin:15px auto 15px auto;
padding: 10px;
border: 3px solid #161E2C;
border-right: 3px solid #827A5C;
border-bottom: 3px solid #827A5C;
border-radius: 5px;
box-shadow: 3px 3px 4px #000000;
width: 700px;
}
p {
margin: 17px;
font-size: 1rem; /* 16px */
line-height: 23px;
text-indent: 15px; /* Espaço antes do parágrafo */
font-family: Arial, Helvetica, sans-serif;
}
#rodape {
background-color: #8c01af;
color: #8c01af;
padding: 30px;
height: 200px;
border-top: 5px solid #000000;
}
ul {
list-style-position: inside;
margin-left: 300px;
margin-right: 300px;
padding: 30px;
text-align: center;
list-style-image: url("imagens/icon-list.png");
}
li {
font-family: 'Asap Condensed', sans-serif;
color: #8c01af;
background-color: #fefefe;
margin-bottom: .5rem;
border-radius: 5px;
text-align: center;
box-shadow: 2px 2px 4px #03000D;
}
h5 {
color: #fefefe;
text-align: center;
margin-bottom: -20px;
}
#copy {
text-align: center;
font-size: .7rem;
color: #fefefe;
text-decoration: none;
}
#copy:hover{
text-align: center;
font-size: 1rem;
color: #fefefe;
text-decoration: none;
cursor: pointer;
}
img {
margin-left: 150px;
margin-right: 150px;
}
img{
border: 5px solid #ffffff;
background-color: #ffffff;
box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}
img:hover{
-webkit-transform: scale(1.5);
transition: all 0.6s ease-in;
opacity: 1;
border: 5px solid #ffffff;
background-color: #ffffff;
box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}
#capa{
margin-left: 250px;
margin-right: 250px;
}
| 0.242654 | 0.06666 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("^(http|https)://anilist\\.co/(?!(animelist|mangalist)).*")
{
body, #wrapBottom, footer, .foot_left, #commonContent-wrapper, #commonContent
{
background: none repeat scroll 0% 0% rgb(51, 51, 51)!important;
color: #ccc;
}
.submitDataSearch
{
background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.85) !important;
}
th, td, #index_forum td, .search_anime
{
background-color: #444!important;
border-color: #333!important;
color: #ccc!important;
}
#index_forum tr:hover td, #index_forum tr:hover a, .noti_sec:hover, .frow {
background-color: #555!important;
color: #6385BF!important;
}
#profile_status textarea {
height: 17px!important;
}
#profile_status textarea:focus {
height: 200px!important;
}
#profile_status .in {
margin-right: 6px!important;
background-color: #555!important;
z-index: 9999!important;
transition-property: none;
-moz-transition-property: none;
-webkit-transition-property: none;
-o-transition-property: none;
}
.profile_status-btn {
width: 37px!important;
height: 34px!important;
margin-right: 2px!important;
margin-bottom: -1px!important;
margin:0!important;
background-color:#444!important;;
padding: 0!important;
}
input[type=submit]:active, .checkSlider {
background-color:#555!important;
}
.airing_count, .noti_btn {
margin-bottom: -1px!important;
}
.checkSlider:before {
color: #3AB834;
}
input[type="submit"], input[type="text"], input[type="password"], #setProfile textarea {
border: none;
}
#review_wrap, #setMal form, #image_upload form, #settingsInner, .info_group:hover, .cl_checks, .musicCard, #edit_drop, .noti_btn, .info_wrapper, .info_outer_wrapper, .gra_bg_anime, #series_left, DIV#stats_dropdown, #series_left_review, .review_snip, .activity_anime, .f_timestamp, .status, .activity.clearfix, #userStats, #userFav, .browseReview, .frow, .forum_txt_post, .forum_txt, .ftxtarea, .ftxtinput .btn, input[type="submit"]:hover, #animeInfo
{
background: #444!important;
border-color: #444!important;
color: #CCCCCC!important;
}
#searchWrapper, #status, .noti_btn:hover, #series_left, .profile_wrapper, input, textarea, .forum_wrap, #wrapper, #page_nav b, .forum_reply, .f_mod_tag, .searchOption
{
background: #333!important;
border-color: #333!important;
color: #CCCCCC!important;
}
.checkSlider:after, .cl_btn, #status, input.review_score, .info_line_left:hover, .info_line:hover, #forum_left .frow:hover, pre, #searchBar, input.searchField, input, textarea, .charRow:hover, q
{
background: #555!important;
border-color: #333!important;
color: #CCCCCC!important;
text-shadow: 0px 0px 0px;
}
.line
{
background: #666!important;
}
.forum_con, .relLabelSum:after, .relLabelSequel:after, .relLabelPrequel:after, .info_line_left, .info_line, .hb, .act_name, .noti_sec, h2.h_bb, .charRow:nth-child(4n+2), .review_snip_score, .review_snip_user, #series_right_review, .relLabelAlt:after, .animeCommon h2, .relLabelSide:after, .relLabelAdap:after
{
border-color: #555!important;
}
#forum_right h2.h_bb, .forum_user_img
{
border-color:#333!important;
outline:none!important;
}
.forum_user_img:hover
{
border-color:#6385BF!important;
}
div.airing_card{
color: #ccc!important;
}
#review_wrap .review_scr h1 ,.card_title, .setpanel a, .setPanel h2, #right_options h4, #edit_drop h2, .btn:hover, .cl_btn:hover, .profile_wrapper h2, .review_snip_score h2, #fcat a:hover, #series_right h2, #submitData-wrap h2, .info_line_left:hover, .info_line a:hover, .info_wrapper h2, #info_right_txt a, #userFeed h2, .stat_load h2, #wrapper h2, #review_page_score h2, .animeStaff-card span:hover, .user_feed_index a, .h_bb a, h2.h_bb, h2.hb, h3.h_bb, footer a, th, td a:hover,#commonContent-wrapper a, .browseReview h2, .browseContent h2, #userStats h1, #userStats h2, #userFav h1, #userFav h2, .noti_sec_title, .noti_sec_title a:hover, #left-nav a, #wrapper a, #forum_right h2, #reply h2, .ftxtinput h2, .animeCommon h2
{
color: #6385BF!important;
}
.setpanel a:hover, .review_snip_score, #fcat a, .noti_sec:hover .noti_ts, .info_line_left, .info_line a, #info_right_txt a:hover, .forum_time, span.stats_btn, #wrapper h3, #animeRel .relTxt, #animeRel span, .animeStaff-card span, .user_feed_index a:hover, .h_bb a:hover, footer a:hover, th, td a, #commonContent-wrapper a:hover, .fav_title, .noti_sec_title a, .noti_sec_txt, #left-nav a:hover, #wrapper a:hover, #forum_header span
{
color: #CCCCCC!important;
opacity: 1;
}
.user_feed_index, .b_bb, .h_bb, .userFeedAjax
{
border:none!important;
}
#browse_nav ul li:hover a
{
color: #ccc!important;
background: transparent!important;
}
.sideNav-sml header .img_crop {
height: 60px !important;
width: 60px !important;
margin-left: -10px !important;
margin-top: -10px !important;
}
.sideNav-show {
color: #666!important;
}
.sideNav-show:hover {
color: #ccc!important;
}
.sideNav-hide {
color: #666!important;
}
.sideNav-hide:hover {
color: #ccc!important;
}
.sideNav-sml [data-hint]:after {
background-color: #555!important;
color: #ccc!important;
margin-bottom: -18px!important;
margin-left: 0px!important;
padding: 12px 10px!important;
z-index: 0!important;
}
#sideNav-wrap {
background-color: #444!important;
color:#999!important;
border:none!important;
}
#sideNav header {
background-color: #555!important;
}
#sideNav ul li {
color: #666!important;
}
#sideNav ul li:hover {
background-color: #555!important;
color: #ccc!important;
z-index: 0!important;
}
.airing_card .img_anime_crop {
border-radius: 0px!important;
}
.sideNav-sml #sideNav-mod {
background-color: #444;
}
#forum_locked, #attention
{
background-color: #B83935!important;
border: none;
}
@media screen and (max-width: 940px) {
.profile_card {
display:none!important;
}
}
}
@-moz-document url-prefix("http://anilistco.tumblr.com") {
body{
background-image: none!important;
background: #333!important;
}
.post, .infoblock, .sidebar{
background-color: #444!important;
color: #ccc!important;
}
h1 {
color: #eee!important;
}
a{
color: #6385BF!important;
}
hr {
display:none!important;
}
.sidepic {
background-color:#222!important;
}
}
|
data/usercss/97167.user.css
|
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("^(http|https)://anilist\\.co/(?!(animelist|mangalist)).*")
{
body, #wrapBottom, footer, .foot_left, #commonContent-wrapper, #commonContent
{
background: none repeat scroll 0% 0% rgb(51, 51, 51)!important;
color: #ccc;
}
.submitDataSearch
{
background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.85) !important;
}
th, td, #index_forum td, .search_anime
{
background-color: #444!important;
border-color: #333!important;
color: #ccc!important;
}
#index_forum tr:hover td, #index_forum tr:hover a, .noti_sec:hover, .frow {
background-color: #555!important;
color: #6385BF!important;
}
#profile_status textarea {
height: 17px!important;
}
#profile_status textarea:focus {
height: 200px!important;
}
#profile_status .in {
margin-right: 6px!important;
background-color: #555!important;
z-index: 9999!important;
transition-property: none;
-moz-transition-property: none;
-webkit-transition-property: none;
-o-transition-property: none;
}
.profile_status-btn {
width: 37px!important;
height: 34px!important;
margin-right: 2px!important;
margin-bottom: -1px!important;
margin:0!important;
background-color:#444!important;;
padding: 0!important;
}
input[type=submit]:active, .checkSlider {
background-color:#555!important;
}
.airing_count, .noti_btn {
margin-bottom: -1px!important;
}
.checkSlider:before {
color: #3AB834;
}
input[type="submit"], input[type="text"], input[type="password"], #setProfile textarea {
border: none;
}
#review_wrap, #setMal form, #image_upload form, #settingsInner, .info_group:hover, .cl_checks, .musicCard, #edit_drop, .noti_btn, .info_wrapper, .info_outer_wrapper, .gra_bg_anime, #series_left, DIV#stats_dropdown, #series_left_review, .review_snip, .activity_anime, .f_timestamp, .status, .activity.clearfix, #userStats, #userFav, .browseReview, .frow, .forum_txt_post, .forum_txt, .ftxtarea, .ftxtinput .btn, input[type="submit"]:hover, #animeInfo
{
background: #444!important;
border-color: #444!important;
color: #CCCCCC!important;
}
#searchWrapper, #status, .noti_btn:hover, #series_left, .profile_wrapper, input, textarea, .forum_wrap, #wrapper, #page_nav b, .forum_reply, .f_mod_tag, .searchOption
{
background: #333!important;
border-color: #333!important;
color: #CCCCCC!important;
}
.checkSlider:after, .cl_btn, #status, input.review_score, .info_line_left:hover, .info_line:hover, #forum_left .frow:hover, pre, #searchBar, input.searchField, input, textarea, .charRow:hover, q
{
background: #555!important;
border-color: #333!important;
color: #CCCCCC!important;
text-shadow: 0px 0px 0px;
}
.line
{
background: #666!important;
}
.forum_con, .relLabelSum:after, .relLabelSequel:after, .relLabelPrequel:after, .info_line_left, .info_line, .hb, .act_name, .noti_sec, h2.h_bb, .charRow:nth-child(4n+2), .review_snip_score, .review_snip_user, #series_right_review, .relLabelAlt:after, .animeCommon h2, .relLabelSide:after, .relLabelAdap:after
{
border-color: #555!important;
}
#forum_right h2.h_bb, .forum_user_img
{
border-color:#333!important;
outline:none!important;
}
.forum_user_img:hover
{
border-color:#6385BF!important;
}
div.airing_card{
color: #ccc!important;
}
#review_wrap .review_scr h1 ,.card_title, .setpanel a, .setPanel h2, #right_options h4, #edit_drop h2, .btn:hover, .cl_btn:hover, .profile_wrapper h2, .review_snip_score h2, #fcat a:hover, #series_right h2, #submitData-wrap h2, .info_line_left:hover, .info_line a:hover, .info_wrapper h2, #info_right_txt a, #userFeed h2, .stat_load h2, #wrapper h2, #review_page_score h2, .animeStaff-card span:hover, .user_feed_index a, .h_bb a, h2.h_bb, h2.hb, h3.h_bb, footer a, th, td a:hover,#commonContent-wrapper a, .browseReview h2, .browseContent h2, #userStats h1, #userStats h2, #userFav h1, #userFav h2, .noti_sec_title, .noti_sec_title a:hover, #left-nav a, #wrapper a, #forum_right h2, #reply h2, .ftxtinput h2, .animeCommon h2
{
color: #6385BF!important;
}
.setpanel a:hover, .review_snip_score, #fcat a, .noti_sec:hover .noti_ts, .info_line_left, .info_line a, #info_right_txt a:hover, .forum_time, span.stats_btn, #wrapper h3, #animeRel .relTxt, #animeRel span, .animeStaff-card span, .user_feed_index a:hover, .h_bb a:hover, footer a:hover, th, td a, #commonContent-wrapper a:hover, .fav_title, .noti_sec_title a, .noti_sec_txt, #left-nav a:hover, #wrapper a:hover, #forum_header span
{
color: #CCCCCC!important;
opacity: 1;
}
.user_feed_index, .b_bb, .h_bb, .userFeedAjax
{
border:none!important;
}
#browse_nav ul li:hover a
{
color: #ccc!important;
background: transparent!important;
}
.sideNav-sml header .img_crop {
height: 60px !important;
width: 60px !important;
margin-left: -10px !important;
margin-top: -10px !important;
}
.sideNav-show {
color: #666!important;
}
.sideNav-show:hover {
color: #ccc!important;
}
.sideNav-hide {
color: #666!important;
}
.sideNav-hide:hover {
color: #ccc!important;
}
.sideNav-sml [data-hint]:after {
background-color: #555!important;
color: #ccc!important;
margin-bottom: -18px!important;
margin-left: 0px!important;
padding: 12px 10px!important;
z-index: 0!important;
}
#sideNav-wrap {
background-color: #444!important;
color:#999!important;
border:none!important;
}
#sideNav header {
background-color: #555!important;
}
#sideNav ul li {
color: #666!important;
}
#sideNav ul li:hover {
background-color: #555!important;
color: #ccc!important;
z-index: 0!important;
}
.airing_card .img_anime_crop {
border-radius: 0px!important;
}
.sideNav-sml #sideNav-mod {
background-color: #444;
}
#forum_locked, #attention
{
background-color: #B83935!important;
border: none;
}
@media screen and (max-width: 940px) {
.profile_card {
display:none!important;
}
}
}
@-moz-document url-prefix("http://anilistco.tumblr.com") {
body{
background-image: none!important;
background: #333!important;
}
.post, .infoblock, .sidebar{
background-color: #444!important;
color: #ccc!important;
}
h1 {
color: #eee!important;
}
a{
color: #6385BF!important;
}
hr {
display:none!important;
}
.sidepic {
background-color:#222!important;
}
}
| 0.242206 | 0.084833 |
.btn-xs {
padding: 0.0625rem -0.125rem;
font-size: 0.75rem;
line-height: 1.25;
border-radius: 0.0625rem; }
.btn-white {
color: #212529;
background-color: white;
border-color: white; }
.btn-white:hover {
color: #212529;
background-color: #ccc;
border-color: #e6e6e6; }
.btn-white:focus, .btn-white.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-white.disabled, .btn-white:disabled {
color: #212529;
background-color: white;
border-color: white; }
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
color: #212529;
background-color: #e6e6e6;
border-color: #dfdfdf; }
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white {
color: white;
background-color: transparent;
background-image: none;
border-color: white; }
.btn-outline-white:hover {
color: #212529;
background-color: white;
border-color: white; }
.btn-outline-white:focus, .btn-outline-white.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white.disabled, .btn-outline-white:disabled {
color: white;
background-color: transparent; }
.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
color: #212529;
background-color: white;
border-color: white; }
.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white:hover {
color: black; }
.btn-pill {
border-radius: 10rem; }
.btn-switch-on.active, .btn-switch-on:active, .btn-switch-on:focus, .btn-switch-on:hover {
background-color: #28a745 !important;
color: white !important; }
.btn-switch-pause.active, .btn-switch-pause:active, .btn-switch-pause:focus, .btn-switch-pause:hover {
background-color: #ffc107 !important;
color: white !important; }
.btn-switch-off.active, .btn-switch-off:active, .btn-switch-off:focus, .btn-switch-off:hover {
background-color: #dc3545 !important;
color: white !important; }
.btn-outline-switch-on.active, .btn-outline-switch-on:active, .btn-outline-switch-on:focus, .btn-outline-switch-on:hover {
color: #28a745;
background-color: transparent;
background-image: none;
border-color: #28a745; }
.btn-outline-switch-on.active:hover, .btn-outline-switch-on:active:hover, .btn-outline-switch-on:focus:hover, .btn-outline-switch-on:hover:hover {
color: #fff;
background-color: #28a745;
border-color: #28a745; }
.btn-outline-switch-on.active:focus, .btn-outline-switch-on.active.focus, .btn-outline-switch-on:active:focus, .btn-outline-switch-on:active.focus, .btn-outline-switch-on:focus:focus, .btn-outline-switch-on:focus.focus, .btn-outline-switch-on:hover:focus, .btn-outline-switch-on:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
.btn-outline-switch-on.active.disabled, .btn-outline-switch-on.active:disabled, .btn-outline-switch-on:active.disabled, .btn-outline-switch-on:active:disabled, .btn-outline-switch-on:focus.disabled, .btn-outline-switch-on:focus:disabled, .btn-outline-switch-on:hover.disabled, .btn-outline-switch-on:hover:disabled {
color: #28a745;
background-color: transparent; }
.btn-outline-switch-on.active:not(:disabled):not(.disabled):active, .btn-outline-switch-on.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on.active.dropdown-toggle, .btn-outline-switch-on:active:not(:disabled):not(.disabled):active, .btn-outline-switch-on:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:active.dropdown-toggle, .btn-outline-switch-on:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-on:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:focus.dropdown-toggle, .btn-outline-switch-on:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-on:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:hover.dropdown-toggle {
color: #fff;
background-color: #28a745;
border-color: #28a745; }
.btn-outline-switch-on.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on.active.dropdown-toggle:focus, .btn-outline-switch-on:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:active.dropdown-toggle:focus, .btn-outline-switch-on:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:focus.dropdown-toggle:focus, .btn-outline-switch-on:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
.btn-outline-switch-pause.active, .btn-outline-switch-pause:active, .btn-outline-switch-pause:focus, .btn-outline-switch-pause:hover {
color: #ffc107;
background-color: transparent;
background-image: none;
border-color: #ffc107; }
.btn-outline-switch-pause.active:hover, .btn-outline-switch-pause:active:hover, .btn-outline-switch-pause:focus:hover, .btn-outline-switch-pause:hover:hover {
color: #212529;
background-color: #ffc107;
border-color: #ffc107; }
.btn-outline-switch-pause.active:focus, .btn-outline-switch-pause.active.focus, .btn-outline-switch-pause:active:focus, .btn-outline-switch-pause:active.focus, .btn-outline-switch-pause:focus:focus, .btn-outline-switch-pause:focus.focus, .btn-outline-switch-pause:hover:focus, .btn-outline-switch-pause:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.btn-outline-switch-pause.active.disabled, .btn-outline-switch-pause.active:disabled, .btn-outline-switch-pause:active.disabled, .btn-outline-switch-pause:active:disabled, .btn-outline-switch-pause:focus.disabled, .btn-outline-switch-pause:focus:disabled, .btn-outline-switch-pause:hover.disabled, .btn-outline-switch-pause:hover:disabled {
color: #ffc107;
background-color: transparent; }
.btn-outline-switch-pause.active:not(:disabled):not(.disabled):active, .btn-outline-switch-pause.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause.active.dropdown-toggle, .btn-outline-switch-pause:active:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:active.dropdown-toggle, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:focus.dropdown-toggle, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:hover.dropdown-toggle {
color: #212529;
background-color: #ffc107;
border-color: #ffc107; }
.btn-outline-switch-pause.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause.active.dropdown-toggle:focus, .btn-outline-switch-pause:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:active.dropdown-toggle:focus, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:focus.dropdown-toggle:focus, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.btn-outline-switch-off.active, .btn-outline-switch-off:active, .btn-outline-switch-off:focus, .btn-outline-switch-off:hover {
color: #dc3545;
background-color: transparent;
background-image: none;
border-color: #dc3545; }
.btn-outline-switch-off.active:hover, .btn-outline-switch-off:active:hover, .btn-outline-switch-off:focus:hover, .btn-outline-switch-off:hover:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545; }
.btn-outline-switch-off.active:focus, .btn-outline-switch-off.active.focus, .btn-outline-switch-off:active:focus, .btn-outline-switch-off:active.focus, .btn-outline-switch-off:focus:focus, .btn-outline-switch-off:focus.focus, .btn-outline-switch-off:hover:focus, .btn-outline-switch-off:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
.btn-outline-switch-off.active.disabled, .btn-outline-switch-off.active:disabled, .btn-outline-switch-off:active.disabled, .btn-outline-switch-off:active:disabled, .btn-outline-switch-off:focus.disabled, .btn-outline-switch-off:focus:disabled, .btn-outline-switch-off:hover.disabled, .btn-outline-switch-off:hover:disabled {
color: #dc3545;
background-color: transparent; }
.btn-outline-switch-off.active:not(:disabled):not(.disabled):active, .btn-outline-switch-off.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off.active.dropdown-toggle, .btn-outline-switch-off:active:not(:disabled):not(.disabled):active, .btn-outline-switch-off:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:active.dropdown-toggle, .btn-outline-switch-off:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-off:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:focus.dropdown-toggle, .btn-outline-switch-off:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-off:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:hover.dropdown-toggle {
color: #fff;
background-color: #dc3545;
border-color: #dc3545; }
.btn-outline-switch-off.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off.active.dropdown-toggle:focus, .btn-outline-switch-off:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:active.dropdown-toggle:focus, .btn-outline-switch-off:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:focus.dropdown-toggle:focus, .btn-outline-switch-off:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
.btn-group-xs > .btn {
padding: 0.0625rem -0.125rem;
font-size: 0.75rem;
line-height: 1.25;
border-radius: 0.0625rem; }
.btn-group-pill .btn:first-child {
border-top-left-radius: 5rem;
border-bottom-left-radius: 5rem; }
.btn-group-pill .btn:last-child {
border-top-right-radius: 5rem;
border-bottom-right-radius: 5rem; }
.btn-group-condensed .btn {
padding-right: .5rem;
padding-left: .5rem; }
.btn-toolbar-xs {
height: 1.5rem;
margin: 0; }
.btn-toolbar-xs > .btn-group {
margin-right: .125rem;
margin-left: .125rem; }
.btn-toolbar-xs > .btn-group:first-of-type {
margin-left: 0; }
.btn-toolbar-xs > .btn-group:last-of-type {
margin-right: 0; }
.btn-toolbar-xs.btn-toolbar-offset {
margin-top: -1.5rem; }
.btn-toolbar-sm {
height: 1.85rem;
margin: 0; }
.btn-toolbar-sm.btn-toolbar-offset {
margin-top: -2rem; }
.btn-toolbar-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -.125rem;
margin-right: -.125rem; }
@media (min-width: 0) {
.btn-toolbar-row .btn-group-xs-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-4 {
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; } }
@media (min-width: 576px) {
.btn-toolbar-row .btn-group-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-sm-4 {
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; } }
@media (min-width: 768px) {
.btn-toolbar-row .btn-group-md-reset {
-ms-flex: inherit;
flex: inherit;
max-width: inherit; }
.btn-toolbar-row .btn-group-md-reset.pull-xs-right {
margin-left: auto; } }
@media (min-width: 992px) {
.btn-toolbar-row .btn-group-lg-reset {
-ms-flex: inherit;
flex: inherit;
max-width: inherit; }
.btn-toolbar-row .btn-group-lg-reset.pull-xs-right {
margin-left: auto; } }
|
dist/css/component-buttons.css
|
.btn-xs {
padding: 0.0625rem -0.125rem;
font-size: 0.75rem;
line-height: 1.25;
border-radius: 0.0625rem; }
.btn-white {
color: #212529;
background-color: white;
border-color: white; }
.btn-white:hover {
color: #212529;
background-color: #ccc;
border-color: #e6e6e6; }
.btn-white:focus, .btn-white.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-white.disabled, .btn-white:disabled {
color: #212529;
background-color: white;
border-color: white; }
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
color: #212529;
background-color: #e6e6e6;
border-color: #dfdfdf; }
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white {
color: white;
background-color: transparent;
background-image: none;
border-color: white; }
.btn-outline-white:hover {
color: #212529;
background-color: white;
border-color: white; }
.btn-outline-white:focus, .btn-outline-white.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white.disabled, .btn-outline-white:disabled {
color: white;
background-color: transparent; }
.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
color: #212529;
background-color: white;
border-color: white; }
.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
.btn-outline-white:hover {
color: black; }
.btn-pill {
border-radius: 10rem; }
.btn-switch-on.active, .btn-switch-on:active, .btn-switch-on:focus, .btn-switch-on:hover {
background-color: #28a745 !important;
color: white !important; }
.btn-switch-pause.active, .btn-switch-pause:active, .btn-switch-pause:focus, .btn-switch-pause:hover {
background-color: #ffc107 !important;
color: white !important; }
.btn-switch-off.active, .btn-switch-off:active, .btn-switch-off:focus, .btn-switch-off:hover {
background-color: #dc3545 !important;
color: white !important; }
.btn-outline-switch-on.active, .btn-outline-switch-on:active, .btn-outline-switch-on:focus, .btn-outline-switch-on:hover {
color: #28a745;
background-color: transparent;
background-image: none;
border-color: #28a745; }
.btn-outline-switch-on.active:hover, .btn-outline-switch-on:active:hover, .btn-outline-switch-on:focus:hover, .btn-outline-switch-on:hover:hover {
color: #fff;
background-color: #28a745;
border-color: #28a745; }
.btn-outline-switch-on.active:focus, .btn-outline-switch-on.active.focus, .btn-outline-switch-on:active:focus, .btn-outline-switch-on:active.focus, .btn-outline-switch-on:focus:focus, .btn-outline-switch-on:focus.focus, .btn-outline-switch-on:hover:focus, .btn-outline-switch-on:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
.btn-outline-switch-on.active.disabled, .btn-outline-switch-on.active:disabled, .btn-outline-switch-on:active.disabled, .btn-outline-switch-on:active:disabled, .btn-outline-switch-on:focus.disabled, .btn-outline-switch-on:focus:disabled, .btn-outline-switch-on:hover.disabled, .btn-outline-switch-on:hover:disabled {
color: #28a745;
background-color: transparent; }
.btn-outline-switch-on.active:not(:disabled):not(.disabled):active, .btn-outline-switch-on.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on.active.dropdown-toggle, .btn-outline-switch-on:active:not(:disabled):not(.disabled):active, .btn-outline-switch-on:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:active.dropdown-toggle, .btn-outline-switch-on:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-on:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:focus.dropdown-toggle, .btn-outline-switch-on:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-on:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-on:hover.dropdown-toggle {
color: #fff;
background-color: #28a745;
border-color: #28a745; }
.btn-outline-switch-on.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on.active.dropdown-toggle:focus, .btn-outline-switch-on:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:active.dropdown-toggle:focus, .btn-outline-switch-on:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:focus.dropdown-toggle:focus, .btn-outline-switch-on:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-on:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-on:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
.btn-outline-switch-pause.active, .btn-outline-switch-pause:active, .btn-outline-switch-pause:focus, .btn-outline-switch-pause:hover {
color: #ffc107;
background-color: transparent;
background-image: none;
border-color: #ffc107; }
.btn-outline-switch-pause.active:hover, .btn-outline-switch-pause:active:hover, .btn-outline-switch-pause:focus:hover, .btn-outline-switch-pause:hover:hover {
color: #212529;
background-color: #ffc107;
border-color: #ffc107; }
.btn-outline-switch-pause.active:focus, .btn-outline-switch-pause.active.focus, .btn-outline-switch-pause:active:focus, .btn-outline-switch-pause:active.focus, .btn-outline-switch-pause:focus:focus, .btn-outline-switch-pause:focus.focus, .btn-outline-switch-pause:hover:focus, .btn-outline-switch-pause:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.btn-outline-switch-pause.active.disabled, .btn-outline-switch-pause.active:disabled, .btn-outline-switch-pause:active.disabled, .btn-outline-switch-pause:active:disabled, .btn-outline-switch-pause:focus.disabled, .btn-outline-switch-pause:focus:disabled, .btn-outline-switch-pause:hover.disabled, .btn-outline-switch-pause:hover:disabled {
color: #ffc107;
background-color: transparent; }
.btn-outline-switch-pause.active:not(:disabled):not(.disabled):active, .btn-outline-switch-pause.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause.active.dropdown-toggle, .btn-outline-switch-pause:active:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:active.dropdown-toggle, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:focus.dropdown-toggle, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-pause:hover.dropdown-toggle {
color: #212529;
background-color: #ffc107;
border-color: #ffc107; }
.btn-outline-switch-pause.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause.active.dropdown-toggle:focus, .btn-outline-switch-pause:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:active.dropdown-toggle:focus, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:focus.dropdown-toggle:focus, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-pause:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-pause:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.btn-outline-switch-off.active, .btn-outline-switch-off:active, .btn-outline-switch-off:focus, .btn-outline-switch-off:hover {
color: #dc3545;
background-color: transparent;
background-image: none;
border-color: #dc3545; }
.btn-outline-switch-off.active:hover, .btn-outline-switch-off:active:hover, .btn-outline-switch-off:focus:hover, .btn-outline-switch-off:hover:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545; }
.btn-outline-switch-off.active:focus, .btn-outline-switch-off.active.focus, .btn-outline-switch-off:active:focus, .btn-outline-switch-off:active.focus, .btn-outline-switch-off:focus:focus, .btn-outline-switch-off:focus.focus, .btn-outline-switch-off:hover:focus, .btn-outline-switch-off:hover.focus {
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
.btn-outline-switch-off.active.disabled, .btn-outline-switch-off.active:disabled, .btn-outline-switch-off:active.disabled, .btn-outline-switch-off:active:disabled, .btn-outline-switch-off:focus.disabled, .btn-outline-switch-off:focus:disabled, .btn-outline-switch-off:hover.disabled, .btn-outline-switch-off:hover:disabled {
color: #dc3545;
background-color: transparent; }
.btn-outline-switch-off.active:not(:disabled):not(.disabled):active, .btn-outline-switch-off.active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off.active.dropdown-toggle, .btn-outline-switch-off:active:not(:disabled):not(.disabled):active, .btn-outline-switch-off:active:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:active.dropdown-toggle, .btn-outline-switch-off:focus:not(:disabled):not(.disabled):active, .btn-outline-switch-off:focus:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:focus.dropdown-toggle, .btn-outline-switch-off:hover:not(:disabled):not(.disabled):active, .btn-outline-switch-off:hover:not(:disabled):not(.disabled).active,
.show > .btn-outline-switch-off:hover.dropdown-toggle {
color: #fff;
background-color: #dc3545;
border-color: #dc3545; }
.btn-outline-switch-off.active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off.active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off.active.dropdown-toggle:focus, .btn-outline-switch-off:active:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:active:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:active.dropdown-toggle:focus, .btn-outline-switch-off:focus:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:focus:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:focus.dropdown-toggle:focus, .btn-outline-switch-off:hover:not(:disabled):not(.disabled):active:focus, .btn-outline-switch-off:hover:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-switch-off:hover.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
.btn-group-xs > .btn {
padding: 0.0625rem -0.125rem;
font-size: 0.75rem;
line-height: 1.25;
border-radius: 0.0625rem; }
.btn-group-pill .btn:first-child {
border-top-left-radius: 5rem;
border-bottom-left-radius: 5rem; }
.btn-group-pill .btn:last-child {
border-top-right-radius: 5rem;
border-bottom-right-radius: 5rem; }
.btn-group-condensed .btn {
padding-right: .5rem;
padding-left: .5rem; }
.btn-toolbar-xs {
height: 1.5rem;
margin: 0; }
.btn-toolbar-xs > .btn-group {
margin-right: .125rem;
margin-left: .125rem; }
.btn-toolbar-xs > .btn-group:first-of-type {
margin-left: 0; }
.btn-toolbar-xs > .btn-group:last-of-type {
margin-right: 0; }
.btn-toolbar-xs.btn-toolbar-offset {
margin-top: -1.5rem; }
.btn-toolbar-sm {
height: 1.85rem;
margin: 0; }
.btn-toolbar-sm.btn-toolbar-offset {
margin-top: -2rem; }
.btn-toolbar-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -.125rem;
margin-right: -.125rem; }
@media (min-width: 0) {
.btn-toolbar-row .btn-group-xs-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-4 {
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-xs-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; } }
@media (min-width: 576px) {
.btn-toolbar-row .btn-group-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; }
.btn-toolbar-row .btn-group-sm-4 {
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
position: relative;
margin: 0;
padding-left: .125rem;
padding-right: .125rem; } }
@media (min-width: 768px) {
.btn-toolbar-row .btn-group-md-reset {
-ms-flex: inherit;
flex: inherit;
max-width: inherit; }
.btn-toolbar-row .btn-group-md-reset.pull-xs-right {
margin-left: auto; } }
@media (min-width: 992px) {
.btn-toolbar-row .btn-group-lg-reset {
-ms-flex: inherit;
flex: inherit;
max-width: inherit; }
.btn-toolbar-row .btn-group-lg-reset.pull-xs-right {
margin-left: auto; } }
| 0.28587 | 0.039639 |
:root {
--background-color: #222;
--primary-color-ligth: #96d811;
--primary-color: #99cc33;
--primary-color-dark: #79b61e;
--primary-color-shadow: #7ab81d47;
--secondary-color: #003f1f;
--secondary-color-shadow: #003f1f57;
--disable-color: #959ba1;
--error-color: #ed1c24;
}
html,
body {
height: 100%;
}
.navbar {
background-image: linear-gradient(var(--background-color), transparent);
}
.navbar .logo{
padding: 1rem 1.5rem;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: var(--background-color);
}
.introduction {
position: absolute;
height: 591px;
width: 70%;
margin: 0;
top: 60%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.hidden-video{
display: none;
}
.badge {
display: block;
max-width: 8rem;
font-size: 1rem;
}
.images {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100vh;
z-index: -100;
opacity: 0.65;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-grey {
background-color: #777777;
}
.rrss_icon {
height: 32px;
/* margin-left: 1rem; */
}
.hidden {
display: none;
color: white;
text-shadow: 0px 0px 15px var(--background-color);
}
.option{
background-color: transparent;
border: 1px solid transparent;
color: black;
cursor: pointer;
transition: border 0.2s , background-color 0.2s;
}
.option:hover{
border: 1px solid #202020;
/* background-color: #202020; */
/* color: white; */
}
/* Footer raro */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
section {
padding: 60px 0;
}
section .section-title {
text-align: center;
color: #007b5e;
margin-bottom: 50px;
text-transform: uppercase;
}
#footer {
background: #30343a !important;
}
#footer h5 {
padding-left: 10px;
border-left: 3px solid #eeeeee;
padding-bottom: 6px;
margin-bottom: 20px;
color: #ffffff;
}
#footer a {
color: #ffffff;
text-decoration: none !important;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
#footer ul.social li {
padding: 3px 0;
}
#footer ul.social li a i {
margin-right: 5px;
font-size: 25px;
-webkit-transition: .5s all ease;
-moz-transition: .5s all ease;
transition: .5s all ease;
}
#footer ul.social li:hover a i {
font-size: 30px;
margin-top: -10px;
}
#footer ul.social li a,
#footer ul.quick-links li a {
color: #ffffff;
}
#footer ul.social li a:hover {
color: #eeeeee;
}
#footer ul.quick-links li {
padding: 3px 0;
-webkit-transition: .5s all ease;
-moz-transition: .5s all ease;
transition: .5s all ease;
}
#footer ul.quick-links li:hover {
padding: 3px 0;
margin-left: 5px;
}
#footer ul.quick-links li a i {
margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
font-weight: 700;
}
.contenedor{
min-height: calc(100vh - 92px);
}
@media (max-width:767px) {
#footer h5 {
padding-left: 0;
border-left: transparent;
padding-bottom: 0px;
margin-bottom: 10px;
}
}
.dropdown-lenguage {
background: transparent;
border: 0px;
color: rgba(255, 255, 255, .5);
margin-top: 6px;
margin-right: 15px;
}
.dropdown-lenguage:hover{
color: rgba(255, 255, 255, .75);
}
.dropdown-lenguage::after {
display: none !important;
}
@media only screen and (max-width: 600px) {
.dropdown-lenguage {
margin-right: 0;
}
}
@media only screen and (max-width: 990px) {
.dropdown-menu-right {
right: auto;
}
.images{
min-height: 100vh;
}
.contenedor{
min-height: 100vh;
}
}
|
public/css/custom.css
|
:root {
--background-color: #222;
--primary-color-ligth: #96d811;
--primary-color: #99cc33;
--primary-color-dark: #79b61e;
--primary-color-shadow: #7ab81d47;
--secondary-color: #003f1f;
--secondary-color-shadow: #003f1f57;
--disable-color: #959ba1;
--error-color: #ed1c24;
}
html,
body {
height: 100%;
}
.navbar {
background-image: linear-gradient(var(--background-color), transparent);
}
.navbar .logo{
padding: 1rem 1.5rem;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: var(--background-color);
}
.introduction {
position: absolute;
height: 591px;
width: 70%;
margin: 0;
top: 60%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.hidden-video{
display: none;
}
.badge {
display: block;
max-width: 8rem;
font-size: 1rem;
}
.images {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100vh;
z-index: -100;
opacity: 0.65;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-grey {
background-color: #777777;
}
.rrss_icon {
height: 32px;
/* margin-left: 1rem; */
}
.hidden {
display: none;
color: white;
text-shadow: 0px 0px 15px var(--background-color);
}
.option{
background-color: transparent;
border: 1px solid transparent;
color: black;
cursor: pointer;
transition: border 0.2s , background-color 0.2s;
}
.option:hover{
border: 1px solid #202020;
/* background-color: #202020; */
/* color: white; */
}
/* Footer raro */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
section {
padding: 60px 0;
}
section .section-title {
text-align: center;
color: #007b5e;
margin-bottom: 50px;
text-transform: uppercase;
}
#footer {
background: #30343a !important;
}
#footer h5 {
padding-left: 10px;
border-left: 3px solid #eeeeee;
padding-bottom: 6px;
margin-bottom: 20px;
color: #ffffff;
}
#footer a {
color: #ffffff;
text-decoration: none !important;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
#footer ul.social li {
padding: 3px 0;
}
#footer ul.social li a i {
margin-right: 5px;
font-size: 25px;
-webkit-transition: .5s all ease;
-moz-transition: .5s all ease;
transition: .5s all ease;
}
#footer ul.social li:hover a i {
font-size: 30px;
margin-top: -10px;
}
#footer ul.social li a,
#footer ul.quick-links li a {
color: #ffffff;
}
#footer ul.social li a:hover {
color: #eeeeee;
}
#footer ul.quick-links li {
padding: 3px 0;
-webkit-transition: .5s all ease;
-moz-transition: .5s all ease;
transition: .5s all ease;
}
#footer ul.quick-links li:hover {
padding: 3px 0;
margin-left: 5px;
}
#footer ul.quick-links li a i {
margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
font-weight: 700;
}
.contenedor{
min-height: calc(100vh - 92px);
}
@media (max-width:767px) {
#footer h5 {
padding-left: 0;
border-left: transparent;
padding-bottom: 0px;
margin-bottom: 10px;
}
}
.dropdown-lenguage {
background: transparent;
border: 0px;
color: rgba(255, 255, 255, .5);
margin-top: 6px;
margin-right: 15px;
}
.dropdown-lenguage:hover{
color: rgba(255, 255, 255, .75);
}
.dropdown-lenguage::after {
display: none !important;
}
@media only screen and (max-width: 600px) {
.dropdown-lenguage {
margin-right: 0;
}
}
@media only screen and (max-width: 990px) {
.dropdown-menu-right {
right: auto;
}
.images{
min-height: 100vh;
}
.contenedor{
min-height: 100vh;
}
}
| 0.52975 | 0.123445 |
html {
scroll-behavior: smooth;
}
h5,
h6 {
margin-top: 0% !important;
color: black;
}
#tm,
#tm > h5,
#tm > h6 {
color: #ffffff !important;
}
.logo {
display: inline;
}
.navbar-brand {
font-weight: 700;
margin-top: -12px;
}
.navbar-brand img {
position: relative;
right: 10px;
bottom: 5px;
opacity: 0.3;
}
.header {
background: #bdc3c7;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2c3e50, #ffffff);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #2c3e50, #dfdada);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.jumbotron {
background-color: transparent !important;
}
.navbar {
margin-bottom: 0px !important;
border-radius: 0% !important;
opacity: 0.95 !important;
}
#miet-logo {
position: absolute;
top: 2%;
left: 16px;
padding-top: 51px;
filter: drop-shadow(0 0 6px #efefef);
margin-top: 10px;
}
#iic-logo {
font-weight: 800;
font-size: 300%;
color: black;
position: absolute;
top: 2%;
right: 26px;
filter: drop-shadow(0 0 15px #ffffff);
padding-top: 61px;
}
#sap-logo {
position: absolute;
top: 10%;
left: 16px;
padding-top: 71px;
max-width: 125px;
margin-top: 10px;
}
.carousel-caption > h1,
h2 {
font-family: "Orbitron", sans-serif !important;
}
@media only screen and (max-width: 720px) {
#miet-logo img {
width: 60% !important;
}
#iic-logo {
max-width: 40%;
font-size: 80% !important;
right: 16px !important;
}
.carousel-caption h1,
h2 {
font-size: 350% !important;
}
.navbar-brand {
font-weight: 700;
margin-top: -7px;
}
.navbar-brand img {
width: 50% !important;
bottom: 0 !important;
right: 0;
}
.jumbotron p,
h2 {
font-weight: 700 !important;
padding-bottom: 5px !important;
/*margin-bottom: -30px !important;*/
font-size: 150% !important;
}
#timeline > h3 {
color: white !important;
}
.carousel-inner > .item {
height: 83vh !important;
}
.carousel-inner > .item > img {
display: none !important;
visibility: hidden;
}
#res {
width: 70%;
}
}
#piggy {
text-align: middle;
color: rgb(0.992, 0.844, 0.786);
}
#develop {
color: rgb(0.992, 0.844, 0.786);
}
#timeline {
background-image: url(assets/redundant.jpg);
background-size: cover;
background-attachment: fixed;
background-position: center;
text-align: center;
font-family: "Lobster", cursive;
font-size: 200%;
color: black;
font-weight: 700;
}
#timeline i:hover {
color: rgb(248, 250, 250);
}
#coc > .col-md-4 {
padding-left: 30px;
padding-right: 30px;
text-align: left;
padding-bottom: 30px;
line-height: 170%;
}
#midcol {
border-left: 2px solid #0396d1;
border-right: 2px solid #0396d1;
}
body {
padding-top: 51px;
}
.btn-lg {
padding: 10px 25px !important;
}
#usecase {
background: #dd5e89; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#f7bb97,
#dd5e89
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#f7bb97,
#dd5e89
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 30px;
color: white;
font-weight: 700;
font-size: 1.3em;
}
#usecase p {
margin: 3%;
padding: 3%;
}
#team {
background: #085078;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #85d8ce, #085078);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #85d8ce, #085078);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: black;
font-family: cursive;
text-align: center;
}
#committee {
padding: 30px;
}
#committee .name {
font-weight: 700;
font-family: cursive;
}
#committee .title {
font-weight: 700;
font-family: cursive;
font-size: 0.75em;
margin-bottom: 20px;
}
#team .fab,
#team .fas,
.fa {
margin: 5px;
color: maroon !important;
}
h6 {
font-weight: 600 !important;
}
.dp {
border-radius: 50%;
padding-top: 40px;
}
.fab {
padding-left: 3px;
}
a {
text-decoration: none !important;
}
#id01 {
font-family: Arial, Helvetica, sans-serif;
}
* {
box-sizing: border-box;
}
/* Add padding to container elements */
.container {
padding: 16px;
}
/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 720px) {
.modal-content {
width: 90%;
margin-top: 30%;
}
}
#FAQs {
background: #000000;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #e74c3c, #000000);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #e74c3c, #000000);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 5%;
color: #dfdada;
box-sizing: border-box;
height: auto;
font-size: 150%;
text-align: left;
}
#query input,
textarea {
color: #080808 !important;
background: transparent !important;
border: #f10a7e !important;
border-style: solid !important;
border-width: 0px 0px 1px 0px !important;
width: 50%;
}
#query input:focus,
textarea:focus {
color: #080808 !important;
background: transparent !important;
border: #f10a7e !important;
border-style: solid !important;
border-width: 0px 0px 2px 0px !important;
width: 50%;
}
label {
padding-right: 7px;
}
#sub {
position: relative;
bottom: 10px;
margin: 0 0 0 10px !important;
}
.faq-container {
text-align: left;
margin: auto;
padding: 10px 20px;
cursor: default;
}
.faq-container > .question {
display: block;
}
.faq-container > .question {
font-weight: 600;
cursor: pointer;
}
.faq-container > .answer {
display: none;
text-indent: 20px;
}
.faq-container > .answer.is-visible {
display: block;
font-family: sans-serif;
}
.faq-container > .answer > ul {
margin: 0;
text-indent: 0;
}
footer {
padding: 20px;
background-color: #222;
box-sizing: content-box;
}
.footerright {
text-align: right;
color: whitesmoke;
}
.footerleft {
text-align: left;
color: whitesmoke;
}
footer i {
color: maroon;
}
.accented-anchor {
color: #0396d1;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto !important; /* Enable scroll if needed */
background-color: rgb(0, 0, 0); /* Fallback color */
background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
ol {
padding: 20px;
}
ul[type="disc"] {
margin: 20px 0;
}
ul[type="disc"] li {
font-size: 150%;
padding: 20px;
}
|
main.css
|
html {
scroll-behavior: smooth;
}
h5,
h6 {
margin-top: 0% !important;
color: black;
}
#tm,
#tm > h5,
#tm > h6 {
color: #ffffff !important;
}
.logo {
display: inline;
}
.navbar-brand {
font-weight: 700;
margin-top: -12px;
}
.navbar-brand img {
position: relative;
right: 10px;
bottom: 5px;
opacity: 0.3;
}
.header {
background: #bdc3c7;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2c3e50, #ffffff);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #2c3e50, #dfdada);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.jumbotron {
background-color: transparent !important;
}
.navbar {
margin-bottom: 0px !important;
border-radius: 0% !important;
opacity: 0.95 !important;
}
#miet-logo {
position: absolute;
top: 2%;
left: 16px;
padding-top: 51px;
filter: drop-shadow(0 0 6px #efefef);
margin-top: 10px;
}
#iic-logo {
font-weight: 800;
font-size: 300%;
color: black;
position: absolute;
top: 2%;
right: 26px;
filter: drop-shadow(0 0 15px #ffffff);
padding-top: 61px;
}
#sap-logo {
position: absolute;
top: 10%;
left: 16px;
padding-top: 71px;
max-width: 125px;
margin-top: 10px;
}
.carousel-caption > h1,
h2 {
font-family: "Orbitron", sans-serif !important;
}
@media only screen and (max-width: 720px) {
#miet-logo img {
width: 60% !important;
}
#iic-logo {
max-width: 40%;
font-size: 80% !important;
right: 16px !important;
}
.carousel-caption h1,
h2 {
font-size: 350% !important;
}
.navbar-brand {
font-weight: 700;
margin-top: -7px;
}
.navbar-brand img {
width: 50% !important;
bottom: 0 !important;
right: 0;
}
.jumbotron p,
h2 {
font-weight: 700 !important;
padding-bottom: 5px !important;
/*margin-bottom: -30px !important;*/
font-size: 150% !important;
}
#timeline > h3 {
color: white !important;
}
.carousel-inner > .item {
height: 83vh !important;
}
.carousel-inner > .item > img {
display: none !important;
visibility: hidden;
}
#res {
width: 70%;
}
}
#piggy {
text-align: middle;
color: rgb(0.992, 0.844, 0.786);
}
#develop {
color: rgb(0.992, 0.844, 0.786);
}
#timeline {
background-image: url(assets/redundant.jpg);
background-size: cover;
background-attachment: fixed;
background-position: center;
text-align: center;
font-family: "Lobster", cursive;
font-size: 200%;
color: black;
font-weight: 700;
}
#timeline i:hover {
color: rgb(248, 250, 250);
}
#coc > .col-md-4 {
padding-left: 30px;
padding-right: 30px;
text-align: left;
padding-bottom: 30px;
line-height: 170%;
}
#midcol {
border-left: 2px solid #0396d1;
border-right: 2px solid #0396d1;
}
body {
padding-top: 51px;
}
.btn-lg {
padding: 10px 25px !important;
}
#usecase {
background: #dd5e89; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#f7bb97,
#dd5e89
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#f7bb97,
#dd5e89
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 30px;
color: white;
font-weight: 700;
font-size: 1.3em;
}
#usecase p {
margin: 3%;
padding: 3%;
}
#team {
background: #085078;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #85d8ce, #085078);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #85d8ce, #085078);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: black;
font-family: cursive;
text-align: center;
}
#committee {
padding: 30px;
}
#committee .name {
font-weight: 700;
font-family: cursive;
}
#committee .title {
font-weight: 700;
font-family: cursive;
font-size: 0.75em;
margin-bottom: 20px;
}
#team .fab,
#team .fas,
.fa {
margin: 5px;
color: maroon !important;
}
h6 {
font-weight: 600 !important;
}
.dp {
border-radius: 50%;
padding-top: 40px;
}
.fab {
padding-left: 3px;
}
a {
text-decoration: none !important;
}
#id01 {
font-family: Arial, Helvetica, sans-serif;
}
* {
box-sizing: border-box;
}
/* Add padding to container elements */
.container {
padding: 16px;
}
/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 720px) {
.modal-content {
width: 90%;
margin-top: 30%;
}
}
#FAQs {
background: #000000;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #e74c3c, #000000);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #e74c3c, #000000);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 5%;
color: #dfdada;
box-sizing: border-box;
height: auto;
font-size: 150%;
text-align: left;
}
#query input,
textarea {
color: #080808 !important;
background: transparent !important;
border: #f10a7e !important;
border-style: solid !important;
border-width: 0px 0px 1px 0px !important;
width: 50%;
}
#query input:focus,
textarea:focus {
color: #080808 !important;
background: transparent !important;
border: #f10a7e !important;
border-style: solid !important;
border-width: 0px 0px 2px 0px !important;
width: 50%;
}
label {
padding-right: 7px;
}
#sub {
position: relative;
bottom: 10px;
margin: 0 0 0 10px !important;
}
.faq-container {
text-align: left;
margin: auto;
padding: 10px 20px;
cursor: default;
}
.faq-container > .question {
display: block;
}
.faq-container > .question {
font-weight: 600;
cursor: pointer;
}
.faq-container > .answer {
display: none;
text-indent: 20px;
}
.faq-container > .answer.is-visible {
display: block;
font-family: sans-serif;
}
.faq-container > .answer > ul {
margin: 0;
text-indent: 0;
}
footer {
padding: 20px;
background-color: #222;
box-sizing: content-box;
}
.footerright {
text-align: right;
color: whitesmoke;
}
.footerleft {
text-align: left;
color: whitesmoke;
}
footer i {
color: maroon;
}
.accented-anchor {
color: #0396d1;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto !important; /* Enable scroll if needed */
background-color: rgb(0, 0, 0); /* Fallback color */
background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
ol {
padding: 20px;
}
ul[type="disc"] {
margin: 20px 0;
}
ul[type="disc"] li {
font-size: 150%;
padding: 20px;
}
| 0.297674 | 0.07117 |
html, body {
color: #636b6f;
font-family: Arial, Helvetica, sans-serif;
font-weight: 200;
margin: 0;
min-height: 100%;
width: 100%;
background-color: #fff0;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
html {
background-image: url('/img/pakjesavond.jpeg');
}
nav {
background-color: #a660;
color: white;
margin-bottom: 1rem;
}
nav img{
height: 1.5em;
}
nav a {
color: white !important;
}
nav a:hover {
text-decoration: underline !important;
}
.navbar-toggler {
background-color: #fff8;
}
.nav-link {
font-weight: 800;
font-size: 1.5rem;
}
.dropdown-menu {
background-color: #fff0 !important;
}
.dropdown-menu:hover {
background-color: unset !important;
}
h2 {
max-width: 90%;
margin: auto;
}
a {
color: #fdd;
}
a:hover,
a:focus {
color: #fdd;
}
table {
font-size: 2rem;
}
input {
border: unset;
width: 100%;
}
td {
border-top: none !important;
}
td:nth-child(2){
border-bottom: solid 1px red;
}
tr {
background-color: white;
}
tr:nth-child(2n) {
background-color: #eee;
}
#sinterklaas {
z-index: -1;
margin-bottom: -2rem;
}
.navbar-brand h3 {
font-weight: 800;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.card-header {
background-color: #faa;
font-size: 1.5rem;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
.card {
border: none;
}
.btn-primary {
background-color: #800;
border-color: #a22;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #d66;
border-color: #f66;
}
.form-control:focus {
border-color: #faa;
box-shadow: 0 0 0 .2rem #faa;
}
.card-header {
text-align: center;
color: black;
}
.card {
background-color: #fff0;
}
.card-body {
background-color: #fff;
}
.btn-link {
color: red;
}
.btn-link:focus,
.btn-link:hover {
color: red;
}
.table tbody + tbody {
border-top: none;
}
.wish-delete {
cursor: pointer;
}
.row {
margin: 0;
}
.slug-link {
color: black;
}
.slug-link:hover {
color: black;
}
|
public/css/main.css
|
html, body {
color: #636b6f;
font-family: Arial, Helvetica, sans-serif;
font-weight: 200;
margin: 0;
min-height: 100%;
width: 100%;
background-color: #fff0;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
html {
background-image: url('/img/pakjesavond.jpeg');
}
nav {
background-color: #a660;
color: white;
margin-bottom: 1rem;
}
nav img{
height: 1.5em;
}
nav a {
color: white !important;
}
nav a:hover {
text-decoration: underline !important;
}
.navbar-toggler {
background-color: #fff8;
}
.nav-link {
font-weight: 800;
font-size: 1.5rem;
}
.dropdown-menu {
background-color: #fff0 !important;
}
.dropdown-menu:hover {
background-color: unset !important;
}
h2 {
max-width: 90%;
margin: auto;
}
a {
color: #fdd;
}
a:hover,
a:focus {
color: #fdd;
}
table {
font-size: 2rem;
}
input {
border: unset;
width: 100%;
}
td {
border-top: none !important;
}
td:nth-child(2){
border-bottom: solid 1px red;
}
tr {
background-color: white;
}
tr:nth-child(2n) {
background-color: #eee;
}
#sinterklaas {
z-index: -1;
margin-bottom: -2rem;
}
.navbar-brand h3 {
font-weight: 800;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.card-header {
background-color: #faa;
font-size: 1.5rem;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
.card {
border: none;
}
.btn-primary {
background-color: #800;
border-color: #a22;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #d66;
border-color: #f66;
}
.form-control:focus {
border-color: #faa;
box-shadow: 0 0 0 .2rem #faa;
}
.card-header {
text-align: center;
color: black;
}
.card {
background-color: #fff0;
}
.card-body {
background-color: #fff;
}
.btn-link {
color: red;
}
.btn-link:focus,
.btn-link:hover {
color: red;
}
.table tbody + tbody {
border-top: none;
}
.wish-delete {
cursor: pointer;
}
.row {
margin: 0;
}
.slug-link {
color: black;
}
.slug-link:hover {
color: black;
}
| 0.398524 | 0.069289 |
@font-face{
font-family: 'Segoe UI';
src : url('../fonts/segoeui.ttf');
}
body{
background-color:#fff !important;
font-family: 'Segoe UI';
}
html{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
/* ====================================== SECTION STYLING ========================*/
#white{
background-color: #ffffff;
padding-bottom: 3vw;
}
#grey{
background-color: #2d2d2d;
padding-bottom: 3vw;
}
#grey .section-title{
color: #fff;
}
.divider-white, .divider-grey{
height: 2px;
width: 5%;
margin-top: -40px;
margin-bottom: 50px;
background-color: #F2C053;
}
@media(max-width: 767px){
.divider-white, .divider-grey{
margin-top: auto;
width: 10%;
}
}
@media(max-width:414px){
.divider-grey, .divider-white{
margin-top:10px !important;
}
}
.divider-grey{
background-color: #fff;
}
.section-title{
margin: 4vw auto;
text-align: center;
font-size: 32px;
font-family: 'Segoe UI';
color: #000;
font-weight: bold;
}
.section-title .title-other-words{
color: #F2C053;
font-family: 'Segoe UI';
}
/* ============================= BIO ========================================*/
#bio{
background-color: #ffffff;
padding-bottom: 7vw;
}
#bio .title{
font-family: 'Segoe UI';
font-size: 32px;
font-weight: bolder;
color: #F2C053;
}
#bio img{
max-width: 100%;
max-height: 100%;
}
#bio .bio{
font-family: 'Segoe UI';
color: #95989a;
}
#bio button{
background-color: #f2c053;
border: none;
border-radius: 50px;
color: #000;
margin-top: 10px;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
#bio button:hover{
background-color: #000;
color: #fff;
}
/* ====================================== FEATURED GALLERY IMAGES ================================== */
#gallery-images .image{
width: 100%;
height: 100%;
}
#gallery-images {
/*text-align: center;*/
/*align-content: center;*/
}
#gallery-images img {
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
max-width: 100%;
max-height: 100%;
transition: all 0.6s ease;
}
#gallery-images img:hover {
filter: none;/* IE6-9
-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
}
#gallery-images .row.no-gutters {
margin-right: 0;
margin-left: 0;
}
#gallery-images .row.no-gutters > [class^="col-"],
#gallery-images .row.no-gutters > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
#gallery-images .btn{
background-color: #F2C053;
color: #000000;
border: none;
padding: 10px 20px;
border-radius: 50px;
margin: 3vw auto;
}
@media(max-width: 767px){
#gallery-images .btn{
margin-left: 32vw;
}
}
@media(max-width: 290px){
#gallery-images .btn{
margin-left: 15vw;
}
}
#gallery-images .btn:hover{
background-color: #fff;
color: #000;
}
/*-------------------------------- ALBUM ------------*/
#music{
text-align: center;
}
#album-release button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 15px;
padding-left: 15px;
}
#album-release button:hover{
background-color: #000;
color: #fff;
}
/* ======================================= MUSIC =============================================*/
#music{
text-align: center;
}
#music button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 15px;
padding-left: 15px;
}
#music button:hover{
background-color: #000;
color: #fff;
}
/* ======================================= VIDEO =============================================*/
#video{
text-align: center;
}
#video .video-player{
background-color: #ffffff;
height: auto;
width: 100%;
}
#video p, #video a{
margin-top: 20px;
font-size: 20px;
font-family: 'Segoe UI';
}
#video a{
color: #F2C053;
text-decoration: none;
}
#video a i{
font-size: 20px;
margin-right: 10px;
}
#video button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 10px;
padding-left: 10px;
}
#video button:hover{
background-color: #000;
color: #fff;
}
/* ========================== EVENTS ================================ */
#events i{
color: #f5f5f5;
font-size: 16px;
}
#events hr{
color: #f5f5f5;
}
#events p{
color: #f1f1f1;
font-family: 'Segoe UI';
}
/* ============================= ALBUM SECTION ====================================== */
#album-release {
margin-bottom: 20px;
}
#album-release img{
max-width: 100%;
max-height: 100%;
}
.album-title h3{
color: #F2C053;
font-family: 'Segoe UI';
}
.album-release-date{
font-size: 16px;
font-family: 'Segoe UI';
margin-bottom: 2vw;
color: #95989a;
}
.album-release-date i{
margin-right: 10px;
}
.about-album{
font-family: 'Segoe UI';
color: #95989a;
}
.get-album{
color: #F2c053;
}
.get-album a{
color:#f2c053;
}
.get-album a:hover {
color:#444;
}
/* ================================ NEWS =================================== */
#news .row.no-gutters {
margin-right: 0;
margin-left: 0;
}
#news .row.no-gutters > [class^="col-"],
#news .row.no-gutters > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
.news{
position: absolute;
top: 0;
bottom: 0;
text-align: center;
color: #fff;
font-family: 'Segoe UI';
margin:7vw 2vw;
}
@media(max-width: 1024px){
.news{
margin: 2vw 2vw;
}
.divider-white, .divider-grey{
margin-top:-30px;
}
}
@media(max-width: 990px){
.news{
margin: 3vw 2vw;
}
}
@media(max-width:414px){
h3{
margin-top:10px !important;
}
#musicbtn {
margin-left:10px;
}
.news{
margin: 5vw 10vw;
}
}
.news .news-headline{
font-size: 24px;
color: #F2C053;
}
.news .news-date{
margin-bottom: 1vw;
font-size: 13px;
}
.news .news-date i{
margin-right: 10px;
}
.news-text{
margin-bottom: 10px;
}
.news .btn{
border: none;
border-radius: 50px;
background-color: #F2C053;
color: #000;
}
.news .btn:hover{
background-color: #f2c053;
color: #000;
text-decoration: none;
}
/* ================================== CONTACT US =================================== */
#contact p{
color: #F2c053;
font-size: 18px;
font-family: 'Segoe UI';
}
#contact input[type="text"]{
border-radius:3px;
border: none;
height: 40px;
width: 100%;
margin-top: 15px;
padding-left: 15px;
font-family: 'Segoe UI';
}
#contact textarea{
margin-top: 15px;
border: none;
border-radius: 3px;
height: 100px;
width: 100%;
padding-left: 15px;
padding-top: 15px;
font-family: 'Segoe UI';
}
#contact button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
margin-bottom: 30px;
border-radius: 50px;
border: none;
font-family: 'Segoe UI';
width: 100%;
}
#contact .enquiry{
color: #95989a;
margin-top: 20px;
}
#contact .social-media{
color: #95989a;
margin-top: 20px;
}
#contact i{
margin-right: 10px;
}
#contact .social-media a{
color: #95989a;
font-size: 30px;
margin-right: 15px;
margin-top: 15px;
}
#contact .social-media a:hover{
color: #F2C053;
transition: all 0.5s ease;
}
.alert{
background-color:#F2c053 !important;
color:#000 !important;
box-shadow: none;
}
|
public/css/home.css
|
@font-face{
font-family: 'Segoe UI';
src : url('../fonts/segoeui.ttf');
}
body{
background-color:#fff !important;
font-family: 'Segoe UI';
}
html{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
/* ====================================== SECTION STYLING ========================*/
#white{
background-color: #ffffff;
padding-bottom: 3vw;
}
#grey{
background-color: #2d2d2d;
padding-bottom: 3vw;
}
#grey .section-title{
color: #fff;
}
.divider-white, .divider-grey{
height: 2px;
width: 5%;
margin-top: -40px;
margin-bottom: 50px;
background-color: #F2C053;
}
@media(max-width: 767px){
.divider-white, .divider-grey{
margin-top: auto;
width: 10%;
}
}
@media(max-width:414px){
.divider-grey, .divider-white{
margin-top:10px !important;
}
}
.divider-grey{
background-color: #fff;
}
.section-title{
margin: 4vw auto;
text-align: center;
font-size: 32px;
font-family: 'Segoe UI';
color: #000;
font-weight: bold;
}
.section-title .title-other-words{
color: #F2C053;
font-family: 'Segoe UI';
}
/* ============================= BIO ========================================*/
#bio{
background-color: #ffffff;
padding-bottom: 7vw;
}
#bio .title{
font-family: 'Segoe UI';
font-size: 32px;
font-weight: bolder;
color: #F2C053;
}
#bio img{
max-width: 100%;
max-height: 100%;
}
#bio .bio{
font-family: 'Segoe UI';
color: #95989a;
}
#bio button{
background-color: #f2c053;
border: none;
border-radius: 50px;
color: #000;
margin-top: 10px;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
#bio button:hover{
background-color: #000;
color: #fff;
}
/* ====================================== FEATURED GALLERY IMAGES ================================== */
#gallery-images .image{
width: 100%;
height: 100%;
}
#gallery-images {
/*text-align: center;*/
/*align-content: center;*/
}
#gallery-images img {
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
max-width: 100%;
max-height: 100%;
transition: all 0.6s ease;
}
#gallery-images img:hover {
filter: none;/* IE6-9
-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
}
#gallery-images .row.no-gutters {
margin-right: 0;
margin-left: 0;
}
#gallery-images .row.no-gutters > [class^="col-"],
#gallery-images .row.no-gutters > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
#gallery-images .btn{
background-color: #F2C053;
color: #000000;
border: none;
padding: 10px 20px;
border-radius: 50px;
margin: 3vw auto;
}
@media(max-width: 767px){
#gallery-images .btn{
margin-left: 32vw;
}
}
@media(max-width: 290px){
#gallery-images .btn{
margin-left: 15vw;
}
}
#gallery-images .btn:hover{
background-color: #fff;
color: #000;
}
/*-------------------------------- ALBUM ------------*/
#music{
text-align: center;
}
#album-release button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 15px;
padding-left: 15px;
}
#album-release button:hover{
background-color: #000;
color: #fff;
}
/* ======================================= MUSIC =============================================*/
#music{
text-align: center;
}
#music button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 15px;
padding-left: 15px;
}
#music button:hover{
background-color: #000;
color: #fff;
}
/* ======================================= VIDEO =============================================*/
#video{
text-align: center;
}
#video .video-player{
background-color: #ffffff;
height: auto;
width: 100%;
}
#video p, #video a{
margin-top: 20px;
font-size: 20px;
font-family: 'Segoe UI';
}
#video a{
color: #F2C053;
text-decoration: none;
}
#video a i{
font-size: 20px;
margin-right: 10px;
}
#video button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
border: none;
border-radius: 50px;
padding-right: 10px;
padding-left: 10px;
}
#video button:hover{
background-color: #000;
color: #fff;
}
/* ========================== EVENTS ================================ */
#events i{
color: #f5f5f5;
font-size: 16px;
}
#events hr{
color: #f5f5f5;
}
#events p{
color: #f1f1f1;
font-family: 'Segoe UI';
}
/* ============================= ALBUM SECTION ====================================== */
#album-release {
margin-bottom: 20px;
}
#album-release img{
max-width: 100%;
max-height: 100%;
}
.album-title h3{
color: #F2C053;
font-family: 'Segoe UI';
}
.album-release-date{
font-size: 16px;
font-family: 'Segoe UI';
margin-bottom: 2vw;
color: #95989a;
}
.album-release-date i{
margin-right: 10px;
}
.about-album{
font-family: 'Segoe UI';
color: #95989a;
}
.get-album{
color: #F2c053;
}
.get-album a{
color:#f2c053;
}
.get-album a:hover {
color:#444;
}
/* ================================ NEWS =================================== */
#news .row.no-gutters {
margin-right: 0;
margin-left: 0;
}
#news .row.no-gutters > [class^="col-"],
#news .row.no-gutters > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
.news{
position: absolute;
top: 0;
bottom: 0;
text-align: center;
color: #fff;
font-family: 'Segoe UI';
margin:7vw 2vw;
}
@media(max-width: 1024px){
.news{
margin: 2vw 2vw;
}
.divider-white, .divider-grey{
margin-top:-30px;
}
}
@media(max-width: 990px){
.news{
margin: 3vw 2vw;
}
}
@media(max-width:414px){
h3{
margin-top:10px !important;
}
#musicbtn {
margin-left:10px;
}
.news{
margin: 5vw 10vw;
}
}
.news .news-headline{
font-size: 24px;
color: #F2C053;
}
.news .news-date{
margin-bottom: 1vw;
font-size: 13px;
}
.news .news-date i{
margin-right: 10px;
}
.news-text{
margin-bottom: 10px;
}
.news .btn{
border: none;
border-radius: 50px;
background-color: #F2C053;
color: #000;
}
.news .btn:hover{
background-color: #f2c053;
color: #000;
text-decoration: none;
}
/* ================================== CONTACT US =================================== */
#contact p{
color: #F2c053;
font-size: 18px;
font-family: 'Segoe UI';
}
#contact input[type="text"]{
border-radius:3px;
border: none;
height: 40px;
width: 100%;
margin-top: 15px;
padding-left: 15px;
font-family: 'Segoe UI';
}
#contact textarea{
margin-top: 15px;
border: none;
border-radius: 3px;
height: 100px;
width: 100%;
padding-left: 15px;
padding-top: 15px;
font-family: 'Segoe UI';
}
#contact button{
background-color: #F2C053;
color: #000;
margin-top: 15px;
margin-bottom: 30px;
border-radius: 50px;
border: none;
font-family: 'Segoe UI';
width: 100%;
}
#contact .enquiry{
color: #95989a;
margin-top: 20px;
}
#contact .social-media{
color: #95989a;
margin-top: 20px;
}
#contact i{
margin-right: 10px;
}
#contact .social-media a{
color: #95989a;
font-size: 30px;
margin-right: 15px;
margin-top: 15px;
}
#contact .social-media a:hover{
color: #F2C053;
transition: all 0.5s ease;
}
.alert{
background-color:#F2c053 !important;
color:#000 !important;
box-shadow: none;
}
| 0.229363 | 0.060004 |
.swiper {
background: #fff;
}
.content {
width: 100%;
margin: 0 auto;
}
.content .search {
width: 100%;
height: 90px;
margin-top: 1rem;
position: fixed;
top: 0;
z-index: 200;
}
.content .search input {
width: 65%;
height: 2rem;
float: left;
margin-left: 1rem;
outline: none;
padding-left: 1rem;
border-radius: 10px;
color: #F6F6F7;
background: #CFCFCF;
opacity: 0.8;
border: none;
}
.content .search span {
width: 25%;
float: left;
text-align: center;
color: #846441;
}
.swiper-container {
width: 100%;
border-radius: 0 0 55px 69px;
}
.swiper-container img {
width: 100%;
}
.nav {
width: 100%;
/* padding-left: 37px; */
/* margin-top: 1rem; */
/* border-radius: 100px 0; */
background: #fff;
height: 6rem;
padding-top: 1rem;
margin-bottom: 1.5rem;
}
.nav div {
width: 20%;
height: 100px;
float: left;
margin-right: 12px;
border-radius: 50%;
}
.nav div:nth-child(1) {
margin-left: 27px;
}
.nav div:nth-child(1) span {
background: #E5F6FF;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #72CEFE;
}
.nav div:nth-child(2) span {
background: #FBE9FF;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #EA89FF;
}
.nav div:nth-child(3) span {
background: #FFEDEA;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #FE9E8F;
}
.nav div:nth-child(4) span {
background: #FFF6E7;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #FECE7B;
}
.nav_content {
width: 100%;
background: #fff;
height: auto;
}
.nav_content .nav_content_top {
margin-left: 1rem;
}
.nav_content .nav_content_top p:nth-child(1) {
float: left;
width: 74%;
line-height: 3rem;
font-weight: bold;
}
.nav_content .nav_content_top p:nth-child(1) span {
color: #FFA200;
font-size: 16px;
}
.nav_content .nav_content_top p:nth-child(2) {
float: right;
color: #A5A5A5;
line-height: 3rem;
width: 20%;
}
.nav_content_bottom {
width: 100%;
position: relative;
margin-bottom: 1rem;
}
.nav_content_bottom1 img {
width: 94%;
margin-left: 0.6rem;
height: 11rem;
}
.miaoshu {
width: 100%;
height: 116px;
}
.miaoshu p {
line-height: 4rem;
/* text-align: left; */
font-size: 20px;
padding-left: 1rem;
}
.show {
width: 100%;
line-height: 2rem;
padding-left: 1rem;
}
.show .kan {
font-size: 16px;
float: left;
display: block;
width: 69%;
}
.show .time {
float: left;
}
.nav_content_bottom1 {
/* margin-bottom: 4rem; */
}
.styles {
width: 100%;
height: 30rem;
background: #fff;
}
.styles .nav_content_top {
margin-left: 1rem;
height: 3rem;
}
.styles .nav_content_top p:nth-child(1) {
float: left;
width: 74%;
line-height: 3rem;
font-weight: bold;
}
.styles .nav_content_top p:nth-child(1) span {
color: #FFA200;
font-size: 16px;
}
.styles div.xoxo {
width: 43%;
/* height: 100px; */
float: left;
padding-left: 17px;
/* margin-bottom: 1rem; */
margin-top: 1rem;
position: relative;
}
.styles div.xoxo img {
width: 100%;
height: 100px;
float: left;
}
.styles div.xoxo span {
width: 47px;
height: 40px;
border-radius: 50%;
display: block;
position: absolute;
left: 44%;
text-align: center;
line-height: 17px;
padding-top: 9px;
font-size: 16px;
top: 20%;
color: #fff;
}
.styles div.xoxo:nth-child(2) span {
background: gray !important;
}
.styles div.xoxo:nth-child(3) span {
background: rgba(233, 125, 24, 0.418) !important;
}
.styles div.xoxo:nth-child(4) span {
background: rgba(235, 81, 10, 0.938) !important;
}
.styles div.xoxo:nth-child(5) span {
background: rgba(180, 25, 211, 0.678) !important;
}
.styles div.xoxo:nth-child(6) span {
background: rgba(40, 202, 140, 0.37) !important;
}
.styles div.xoxo:nth-child(7) span {
background: rgba(58, 28, 192, 0.582) !important;
}
|
family/src/components/css/mains.css
|
.swiper {
background: #fff;
}
.content {
width: 100%;
margin: 0 auto;
}
.content .search {
width: 100%;
height: 90px;
margin-top: 1rem;
position: fixed;
top: 0;
z-index: 200;
}
.content .search input {
width: 65%;
height: 2rem;
float: left;
margin-left: 1rem;
outline: none;
padding-left: 1rem;
border-radius: 10px;
color: #F6F6F7;
background: #CFCFCF;
opacity: 0.8;
border: none;
}
.content .search span {
width: 25%;
float: left;
text-align: center;
color: #846441;
}
.swiper-container {
width: 100%;
border-radius: 0 0 55px 69px;
}
.swiper-container img {
width: 100%;
}
.nav {
width: 100%;
/* padding-left: 37px; */
/* margin-top: 1rem; */
/* border-radius: 100px 0; */
background: #fff;
height: 6rem;
padding-top: 1rem;
margin-bottom: 1.5rem;
}
.nav div {
width: 20%;
height: 100px;
float: left;
margin-right: 12px;
border-radius: 50%;
}
.nav div:nth-child(1) {
margin-left: 27px;
}
.nav div:nth-child(1) span {
background: #E5F6FF;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #72CEFE;
}
.nav div:nth-child(2) span {
background: #FBE9FF;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #EA89FF;
}
.nav div:nth-child(3) span {
background: #FFEDEA;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #FE9E8F;
}
.nav div:nth-child(4) span {
background: #FFF6E7;
border-radius: 50%;
width: 58px;
display: block;
height: 58px;
text-align: center;
line-height: 50px;
color: #FECE7B;
}
.nav_content {
width: 100%;
background: #fff;
height: auto;
}
.nav_content .nav_content_top {
margin-left: 1rem;
}
.nav_content .nav_content_top p:nth-child(1) {
float: left;
width: 74%;
line-height: 3rem;
font-weight: bold;
}
.nav_content .nav_content_top p:nth-child(1) span {
color: #FFA200;
font-size: 16px;
}
.nav_content .nav_content_top p:nth-child(2) {
float: right;
color: #A5A5A5;
line-height: 3rem;
width: 20%;
}
.nav_content_bottom {
width: 100%;
position: relative;
margin-bottom: 1rem;
}
.nav_content_bottom1 img {
width: 94%;
margin-left: 0.6rem;
height: 11rem;
}
.miaoshu {
width: 100%;
height: 116px;
}
.miaoshu p {
line-height: 4rem;
/* text-align: left; */
font-size: 20px;
padding-left: 1rem;
}
.show {
width: 100%;
line-height: 2rem;
padding-left: 1rem;
}
.show .kan {
font-size: 16px;
float: left;
display: block;
width: 69%;
}
.show .time {
float: left;
}
.nav_content_bottom1 {
/* margin-bottom: 4rem; */
}
.styles {
width: 100%;
height: 30rem;
background: #fff;
}
.styles .nav_content_top {
margin-left: 1rem;
height: 3rem;
}
.styles .nav_content_top p:nth-child(1) {
float: left;
width: 74%;
line-height: 3rem;
font-weight: bold;
}
.styles .nav_content_top p:nth-child(1) span {
color: #FFA200;
font-size: 16px;
}
.styles div.xoxo {
width: 43%;
/* height: 100px; */
float: left;
padding-left: 17px;
/* margin-bottom: 1rem; */
margin-top: 1rem;
position: relative;
}
.styles div.xoxo img {
width: 100%;
height: 100px;
float: left;
}
.styles div.xoxo span {
width: 47px;
height: 40px;
border-radius: 50%;
display: block;
position: absolute;
left: 44%;
text-align: center;
line-height: 17px;
padding-top: 9px;
font-size: 16px;
top: 20%;
color: #fff;
}
.styles div.xoxo:nth-child(2) span {
background: gray !important;
}
.styles div.xoxo:nth-child(3) span {
background: rgba(233, 125, 24, 0.418) !important;
}
.styles div.xoxo:nth-child(4) span {
background: rgba(235, 81, 10, 0.938) !important;
}
.styles div.xoxo:nth-child(5) span {
background: rgba(180, 25, 211, 0.678) !important;
}
.styles div.xoxo:nth-child(6) span {
background: rgba(40, 202, 140, 0.37) !important;
}
.styles div.xoxo:nth-child(7) span {
background: rgba(58, 28, 192, 0.582) !important;
}
| 0.533884 | 0.069352 |
.background_gainsboro5,
.hover_background_gainsboro5:hover,
.active_background_gainsboro5:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(115, 115, 115)), color-stop(100%, rgb(92, 92, 92)));
background-image: -webkit-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -o-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -ms-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: linear-gradient(to bottom, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#737373', endColorstr='#5c5c5c',GradientType=0 );
}
.background_gainsboro5h,
.hover_background_gainsboro5h:hover,
.active_background_gainsboro5h:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(138, 138, 138)), color-stop(100%, rgb(110, 110, 110)));
background-image: -webkit-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -o-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -ms-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: linear-gradient(to bottom, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a8a8a', endColorstr='#6e6e6e',GradientType=0 );
}
.background_gainsboro5a,
.hover_background_gainsboro5a:hover,
.active_background_gainsboro5a:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(110, 110, 110)), color-stop(100%, rgb(138, 138, 138)));
background-image: -webkit-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -o-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -ms-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: linear-gradient(to bottom, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6e6e6e', endColorstr='#8a8a8a',GradientType=0 );
}
.background_gainsboro5s,
.hover_background_gainsboro5s:hover,
.active_background_gainsboro5s:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(172, 172, 172)), color-stop(100%, rgb(138, 138, 138)));
background-image: -webkit-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -o-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -ms-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: linear-gradient(to bottom, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acacac', endColorstr='#8a8a8a',GradientType=0 );
}
.background_color_gainsboro5,
.hover_background_color_gainsboro5:hover,
.active_background_color_gainsboro5:active:hover {
background-color:#5c5c5c;
}
.background_first_color_gainsboro5,
.hover_background_first_color_gainsboro5:hover,
.active_background_first_color_gainsboro5:active:hover {
background-color:#737373;
}
.background_last_color_gainsboro5,
.hover_background_last_color_gainsboro5:hover,
.active_background_color_last_gainsboro5:active:hover {
background-color:#5c5c5c;
}
/* ------------------------------ color settings -------------------------------*/
.color_gainsboro5,
.hover_color_gainsboro5:hover,
.active_color_gainsboro5:active:hover {
color: #c8c8c8;
}
.color_gainsboro5h,
.hover_color_gainsboro5h:hover,
.active_color_gainsboro5h:active:hover {
color: #c8c8c8;
}
.color_gainsboro5a,
.hover_color_gainsboro5a:hover,
.active_color_gainsboro5a:active:hover {
color: #ff0;
}
.color_gainsboro5s,
.hover_color_gainsboro5s:hover,
.active_color_gainsboro5s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_gainsboro5,
.hover_border_gainsboro5:hover,
.active_border_gainsboro5:active:hover {
border-color: #5c5c5c #5c5c5c #5c5c5c #5c5c5c;
}
.border_gainsboro5h,
.hover_border_gainsboro5h:hover,
.active_border_gainsboro5h:active:hover {
border-color: #535353 #535353 #535353 #535353;
}
.border_gainsboro5a,
.hover_border_gainsboro5a:hover,
.active_border_gainsboro5a:active:hover {
border-color: #494949 #494949 #494949 #494949;
}
.border_gainsboro5s,
.hover_border_gainsboro5s:hover,
.active_border_gainsboro5s:active:hover {
border-color: #8a8a8a #8a8a8a #8a8a8a #8a8a8a;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_gainsboro5,
.hover_shadow_expand_gainsboro5:hover,
.active_shadow_expand_gainsboro5:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
}
.shadow_expand_gainsboro5h,
.hover_shadow_expand_gainsboro5h:hover,
.active_shadow_expand_gainsboro5h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
}
.shadow_expand_gainsboro5a,
.hover_shadow_expand_gainsboro5a:hover,
.active_shadow_expand_gainsboro5a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
}
.shadow_expand_gainsboro5s,
.hover_shadow_expand_gainsboro5s:hover,
.active_shadow_expand_gainsboro5s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_gainsboro5,
.hover_shadow_left_gainsboro5:hover,
.active_shadow_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_left_gainsboro5h,
.hover_shadow_left_gainsboro5h:hover,
.active_shadow_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_left_gainsboro5a,
.hover_shadow_left_gainsboro5a:hover,
.active_shadow_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_left_gainsboro5s,
.hover_shadow_left_gainsboro5s:hover,
.active_shadow_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_gainsboro5,
.hover_shadow_right_gainsboro5:hover,
.active_shadow_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
}
.shadow_right_gainsboro5h,
.hover_shadow_right_gainsboro5h:hover,
.active_shadow_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
}
.shadow_right_gainsboro5a,
.hover_shadow_right_gainsboro5a:hover,
.active_shadow_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
}
.shadow_right_gainsboro5s,
.hover_shadow_right_gainsboro5s:hover,
.active_shadow_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_gainsboro5,
.hover_shadow_top_gainsboro5:hover,
.active_shadow_top_gainsboro5:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_gainsboro5h,
.hover_shadow_top_gainsboro5h:hover,
.active_shadow_top_gainsboro5h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_gainsboro5a,
.hover_shadow_top_gainsboro5a:hover,
.active_shadow_top_gainsboro5a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_gainsboro5s,
.hover_shadow_top_gainsboro5s:hover,
.active_shadow_top_gainsboro5s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_gainsboro5,
.hover_shadow_bottom_gainsboro5:hover,
.active_shadow_bottom_gainsboro5:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_gainsboro5h,
.hover_shadow_bottom_gainsboro5h:hover,
.active_shadow_bottom_gainsboro5h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_gainsboro5a,
.hover_shadow_bottom_gainsboro5a:hover,
.active_shadow_bottom_gainsboro5a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_gainsboro5s,
.hover_shadow_bottom_gainsboro5s:hover,
.active_shadow_bottom_gainsboro5s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_gainsboro5,
.hover_shadow_top_left_gainsboro5:hover,
.active_shadow_top_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_left_gainsboro5h,
.hover_shadow_top_left_gainsboro5h:hover,
.active_shadow_top_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_left_gainsboro5a,
.hover_shadow_top_left_gainsboro5a:hover,
.active_shadow_top_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_left_gainsboro5s,
.hover_shadow_top_left_gainsboro5s:hover,
.active_shadow_top_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_gainsboro5,
.hover_shadow_top_right_gainsboro5:hover,
.active_shadow_top_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_right_gainsboro5h,
.hover_shadow_top_right_gainsboro5h:hover,
.active_shadow_top_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_right_gainsboro5a,
.hover_shadow_top_right_gainsboro5a:hover,
.active_shadow_top_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_right_gainsboro5s,
.hover_shadow_top_right_gainsboro5s:hover,
.active_shadow_top_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_gainsboro5,
.hover_shadow_bottom_left_gainsboro5:hover,
.active_shadow_bottom_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_left_gainsboro5h,
.hover_shadow_bottom_left_gainsboro5h:hover,
.active_shadow_bottom_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_left_gainsboro5a,
.hover_shadow_bottom_left_gainsboro5a:hover,
.active_shadow_bottom_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_left_gainsboro5s,
.hover_shadow_bottom_left_gainsboro5s:hover,
.active_shadow_bottom_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_gainsboro5,
.hover_shadow_bottom_right_gainsboro5:hover,
.active_shadow_bottom_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_right_gainsboro5h,
.hover_shadow_bottom_right_gainsboro5h:hover,
.active_shadow_bottom_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_right_gainsboro5a,
.hover_shadow_bottom_right_gainsboro5a:hover,
.active_shadow_bottom_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_right_gainsboro5s,
.hover_shadow_bottom_right_gainsboro5s:hover,
.active_shadow_bottom_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
}
|
widgets/common/assets/gradients/simple/gainsboro/gainsboro5.css
|
.background_gainsboro5,
.hover_background_gainsboro5:hover,
.active_background_gainsboro5:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(115, 115, 115)), color-stop(100%, rgb(92, 92, 92)));
background-image: -webkit-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -o-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: -ms-linear-gradient(top, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
background-image: linear-gradient(to bottom, rgb(115, 115, 115) 0%, rgb(92, 92, 92) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#737373', endColorstr='#5c5c5c',GradientType=0 );
}
.background_gainsboro5h,
.hover_background_gainsboro5h:hover,
.active_background_gainsboro5h:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(138, 138, 138)), color-stop(100%, rgb(110, 110, 110)));
background-image: -webkit-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -o-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: -ms-linear-gradient(top, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
background-image: linear-gradient(to bottom, rgb(138, 138, 138) 0%, rgb(110, 110, 110) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a8a8a', endColorstr='#6e6e6e',GradientType=0 );
}
.background_gainsboro5a,
.hover_background_gainsboro5a:hover,
.active_background_gainsboro5a:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(110, 110, 110)), color-stop(100%, rgb(138, 138, 138)));
background-image: -webkit-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -o-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: -ms-linear-gradient(top, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
background-image: linear-gradient(to bottom, rgb(110, 110, 110) 0%, rgb(138, 138, 138) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6e6e6e', endColorstr='#8a8a8a',GradientType=0 );
}
.background_gainsboro5s,
.hover_background_gainsboro5s:hover,
.active_background_gainsboro5s:active:hover {
background: #5c5c5c;
background-image: -moz-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(172, 172, 172)), color-stop(100%, rgb(138, 138, 138)));
background-image: -webkit-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -o-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: -ms-linear-gradient(top, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
background-image: linear-gradient(to bottom, rgb(172, 172, 172) 0%, rgb(138, 138, 138) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acacac', endColorstr='#8a8a8a',GradientType=0 );
}
.background_color_gainsboro5,
.hover_background_color_gainsboro5:hover,
.active_background_color_gainsboro5:active:hover {
background-color:#5c5c5c;
}
.background_first_color_gainsboro5,
.hover_background_first_color_gainsboro5:hover,
.active_background_first_color_gainsboro5:active:hover {
background-color:#737373;
}
.background_last_color_gainsboro5,
.hover_background_last_color_gainsboro5:hover,
.active_background_color_last_gainsboro5:active:hover {
background-color:#5c5c5c;
}
/* ------------------------------ color settings -------------------------------*/
.color_gainsboro5,
.hover_color_gainsboro5:hover,
.active_color_gainsboro5:active:hover {
color: #c8c8c8;
}
.color_gainsboro5h,
.hover_color_gainsboro5h:hover,
.active_color_gainsboro5h:active:hover {
color: #c8c8c8;
}
.color_gainsboro5a,
.hover_color_gainsboro5a:hover,
.active_color_gainsboro5a:active:hover {
color: #ff0;
}
.color_gainsboro5s,
.hover_color_gainsboro5s:hover,
.active_color_gainsboro5s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_gainsboro5,
.hover_border_gainsboro5:hover,
.active_border_gainsboro5:active:hover {
border-color: #5c5c5c #5c5c5c #5c5c5c #5c5c5c;
}
.border_gainsboro5h,
.hover_border_gainsboro5h:hover,
.active_border_gainsboro5h:active:hover {
border-color: #535353 #535353 #535353 #535353;
}
.border_gainsboro5a,
.hover_border_gainsboro5a:hover,
.active_border_gainsboro5a:active:hover {
border-color: #494949 #494949 #494949 #494949;
}
.border_gainsboro5s,
.hover_border_gainsboro5s:hover,
.active_border_gainsboro5s:active:hover {
border-color: #8a8a8a #8a8a8a #8a8a8a #8a8a8a;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_gainsboro5,
.hover_shadow_expand_gainsboro5:hover,
.active_shadow_expand_gainsboro5:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
box-shadow: 0em 0em 1em 0.25em rgba(92, 92, 92, .39);
}
.shadow_expand_gainsboro5h,
.hover_shadow_expand_gainsboro5h:hover,
.active_shadow_expand_gainsboro5h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
box-shadow: 0em 0em 1em 0.25em rgba(110, 110, 110, .50);
}
.shadow_expand_gainsboro5a,
.hover_shadow_expand_gainsboro5a:hover,
.active_shadow_expand_gainsboro5a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .63);
}
.shadow_expand_gainsboro5s,
.hover_shadow_expand_gainsboro5s:hover,
.active_shadow_expand_gainsboro5s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
box-shadow: 0em 0em 1em 0.25em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_gainsboro5,
.hover_shadow_left_gainsboro5:hover,
.active_shadow_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_left_gainsboro5h,
.hover_shadow_left_gainsboro5h:hover,
.active_shadow_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_left_gainsboro5a,
.hover_shadow_left_gainsboro5a:hover,
.active_shadow_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_left_gainsboro5s,
.hover_shadow_left_gainsboro5s:hover,
.active_shadow_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_gainsboro5,
.hover_shadow_right_gainsboro5:hover,
.active_shadow_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em 0em 1em rgba(92, 92, 92, .39);
}
.shadow_right_gainsboro5h,
.hover_shadow_right_gainsboro5h:hover,
.active_shadow_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em 0em 1em rgba(110, 110, 110, .50);
}
.shadow_right_gainsboro5a,
.hover_shadow_right_gainsboro5a:hover,
.active_shadow_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .63);
}
.shadow_right_gainsboro5s,
.hover_shadow_right_gainsboro5s:hover,
.active_shadow_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em 0em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_gainsboro5,
.hover_shadow_top_gainsboro5:hover,
.active_shadow_top_gainsboro5:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_gainsboro5h,
.hover_shadow_top_gainsboro5h:hover,
.active_shadow_top_gainsboro5h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_gainsboro5a,
.hover_shadow_top_gainsboro5a:hover,
.active_shadow_top_gainsboro5a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_gainsboro5s,
.hover_shadow_top_gainsboro5s:hover,
.active_shadow_top_gainsboro5s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_gainsboro5,
.hover_shadow_bottom_gainsboro5:hover,
.active_shadow_bottom_gainsboro5:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_gainsboro5h,
.hover_shadow_bottom_gainsboro5h:hover,
.active_shadow_bottom_gainsboro5h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_gainsboro5a,
.hover_shadow_bottom_gainsboro5a:hover,
.active_shadow_bottom_gainsboro5a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_gainsboro5s,
.hover_shadow_bottom_gainsboro5s:hover,
.active_shadow_bottom_gainsboro5s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0em 0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_gainsboro5,
.hover_shadow_top_left_gainsboro5:hover,
.active_shadow_top_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_left_gainsboro5h,
.hover_shadow_top_left_gainsboro5h:hover,
.active_shadow_top_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_left_gainsboro5a,
.hover_shadow_top_left_gainsboro5a:hover,
.active_shadow_top_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_left_gainsboro5s,
.hover_shadow_top_left_gainsboro5s:hover,
.active_shadow_top_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_gainsboro5,
.hover_shadow_top_right_gainsboro5:hover,
.active_shadow_top_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em -0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_top_right_gainsboro5h,
.hover_shadow_top_right_gainsboro5h:hover,
.active_shadow_top_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em -0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_top_right_gainsboro5a,
.hover_shadow_top_right_gainsboro5a:hover,
.active_shadow_top_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_top_right_gainsboro5s,
.hover_shadow_top_right_gainsboro5s:hover,
.active_shadow_top_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em -0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_gainsboro5,
.hover_shadow_bottom_left_gainsboro5:hover,
.active_shadow_bottom_left_gainsboro5:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: -0.5em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_left_gainsboro5h,
.hover_shadow_bottom_left_gainsboro5h:hover,
.active_shadow_bottom_left_gainsboro5h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: -0.5em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_left_gainsboro5a,
.hover_shadow_bottom_left_gainsboro5a:hover,
.active_shadow_bottom_left_gainsboro5a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_left_gainsboro5s,
.hover_shadow_bottom_left_gainsboro5s:hover,
.active_shadow_bottom_left_gainsboro5s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: -0.5em 0.5em 1em rgba(138, 138, 138, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_gainsboro5,
.hover_shadow_bottom_right_gainsboro5:hover,
.active_shadow_bottom_right_gainsboro5:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
box-shadow: 0.5em 0.5em 1em rgba(92, 92, 92, .39);
}
.shadow_bottom_right_gainsboro5h,
.hover_shadow_bottom_right_gainsboro5h:hover,
.active_shadow_bottom_right_gainsboro5h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
box-shadow: 0.5em 0.5em 1em rgba(110, 110, 110, .50);
}
.shadow_bottom_right_gainsboro5a,
.hover_shadow_bottom_right_gainsboro5a:hover,
.active_shadow_bottom_right_gainsboro5a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .63);
}
.shadow_bottom_right_gainsboro5s,
.hover_shadow_bottom_right_gainsboro5s:hover,
.active_shadow_bottom_right_gainsboro5s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
box-shadow: 0.5em 0.5em 1em rgba(138, 138, 138, .78);
}
| 0.475118 | 0.096578 |
.debug_bar_wrap{clear:both;display:block;position:relative;z-index:80;height:32px;background-color:#1ABC9C}
.debug_bar_content{display:none;position:absolute;z-index:81;width:100%;top:32px;min-height:300px;overflow:hidden;background:#fff;overflow-y:scroll;box-sizing:content-box;border-top:thin solid gray}
.debug_bar_text_group{position:relative;padding:0 20px 0 120px;line-height:32px;}
.debug_bar_btn_group{position:absolute;top:0;left:1em;line-height:32px;text-align:left}
.debug_bar_text{line-height:32px;display:block;width:100%;color:#fff;text-align:right;font-size:1.2em;overflow:hidden;text-overflow: ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;word-wrap:normal !important}
.sql_query_list li{padding:1em;line-height:1em}
.debug_bar_content .content_inner{position:relative;padding:1em}
.debug_bar_content .debug_table_wrap{margin:10px 0}
.debugbar_tab::after{display:block;visibility:hidden;clear:both;content:""}
.debugbar_tab li{float:left;margin-bottom:-1px;position:relative;display:block;position:relative;display:block;padding:10px 15px}
.debugbar_tab li.debug_tab{border-bottom:2px solid #DDD}
.debugbar_tab li.active a,.debugbar_tab li.active a:focus,.debugbar_tab li.active a:hover{border-width:0}
.debugbar_tab li a{border:none;color:#666}
.debugbar_tab li.active a,.debugbar_tab li a:hover{border:none;color:#4285F4!important;background:transparent}
.debugbar_tab li a::after{content:"";background:#4285F4;height:2px;position:absolute;width:100%;left:0;bottom:-1px;transition:all 250ms ease 0;transform:scale(0)}
.debugbar_tab li.active a::after,.debugbar_tab li:hover a::after{transform:scale(1)}
.debugbar_tab li a::after{background:#21527d none repeat scroll 0 0;color:#fff}
.inner_debug {display:none}
.inner_debug h3.query_top{padding:1em;font-size:1.3em}
#debug_executed_query{display:block}
.lang_domain_list td .num{margin-right:10px;color:#9b9ea5;font-size:9px}
.debugbar_close_btn_el{position:absolute;top:20px;right:20px}
.debug_table{border:1px solid #ccc;border-collapse:collapse;margin:0;padding:0;width:100%}
.debug_table caption{display:none}
.debug_table tr{background:#f8f8f8;border:1px solid #ddd;padding:.35em}
.debug_table th,.debug_table td{padding:.625em;text-align:center}
.debug_table tbody tr:hover td{background:#c7d4dd!important}
.debug_table tbody tr:nth-child(even){background-color:#fff}
.debug_table td.left{text-align:left}
.debug_table th{font-size:.85em;letter-spacing:.1em;text-transform:uppercase}
.debug_table td img{text-align:center}
.debug_table.hook_table th, .debug_table.hook_table td {text-align:left;border:1px solid #ddd;}
.hook_table .hook_count{margin-left:3px;font-size:0.9em;color:#7cbc0a}
.debug_bar_btn_group button.debug_button{margin-top:3px}
button.debug_button{background-color:#7fbf4d;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#7fbf4d),color-stop(100%,#63a62f));background-image:-webkit-linear-gradient(top,#7fbf4d,#63a62f);background-image:-moz-linear-gradient(top,#7fbf4d,#63a62f);background-image:-ms-linear-gradient(top,#7fbf4d,#63a62f);background-image:-o-linear-gradient(top,#7fbf4d,#63a62f);background-image:linear-gradient(top,#7fbf4d,#63a62f);border:1px solid #63a62f;border-bottom:1px solid #5b992b;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 0 #96ca6d;box-shadow:inset 0 1px 0 0 #96ca6d;color:#fff;padding:3px 0 4px;text-align:center;text-shadow:0 -1px 0 #4c9021;width:100px;font-weight:700;font-size:14px;vertical-align:top}
button.debug_button:hover{background-color:#76b347;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#76b347),color-stop(100%,#5e9e2e));background-image:-webkit-linear-gradient(top,#76b347,#5e9e2e);background-image:-moz-linear-gradient(top,#76b347,#5e9e2e);background-image:-ms-linear-gradient(top,#76b347,#5e9e2e);background-image:-o-linear-gradient(top,#76b347,#5e9e2e);background-image:linear-gradient(top,#76b347,#5e9e2e);-webkit-box-shadow:inset 0 1px 0 0 #8dbf67;box-shadow:inset 0 1px 0 0 #8dbf67;cursor:pointer}
button.debug_button:active{border:1px solid #5b992b;border-bottom:1px solid #538c27;-webkit-box-shadow:inset 0 0 8px 4px #548c29,0 1px 0 0 #eee;box-shadow:inset 0 0 8px 4px #548c29,0 1px 0 0 #eee}
@media screen and (max-width: 600px) {
.debug_table{border:0}
.debug_table caption{font-size:1.3em}
.debug_table thead{display:none}
.debug_table tr{border-bottom:3px solid #ddd;display:block;margin-bottom:.625em}
.debug_table td{border-bottom:1px solid #ddd;display:block;font-size:.8em;text-align:right}
.debug_table td.left{text-align:right}
.debug_table td:before{content:attr(data-label);float:left;font-weight:700;text-transform:uppercase}
.debug_table.hook_table th, .debug_table.hook_table td{border:0 none;border-bottom:1px solid #ddd;text-align:right}
.debug_table td:last-child{border-bottom:0 !important}
}
|
kh/board/plugin/debugbar/style.css
|
.debug_bar_wrap{clear:both;display:block;position:relative;z-index:80;height:32px;background-color:#1ABC9C}
.debug_bar_content{display:none;position:absolute;z-index:81;width:100%;top:32px;min-height:300px;overflow:hidden;background:#fff;overflow-y:scroll;box-sizing:content-box;border-top:thin solid gray}
.debug_bar_text_group{position:relative;padding:0 20px 0 120px;line-height:32px;}
.debug_bar_btn_group{position:absolute;top:0;left:1em;line-height:32px;text-align:left}
.debug_bar_text{line-height:32px;display:block;width:100%;color:#fff;text-align:right;font-size:1.2em;overflow:hidden;text-overflow: ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;word-wrap:normal !important}
.sql_query_list li{padding:1em;line-height:1em}
.debug_bar_content .content_inner{position:relative;padding:1em}
.debug_bar_content .debug_table_wrap{margin:10px 0}
.debugbar_tab::after{display:block;visibility:hidden;clear:both;content:""}
.debugbar_tab li{float:left;margin-bottom:-1px;position:relative;display:block;position:relative;display:block;padding:10px 15px}
.debugbar_tab li.debug_tab{border-bottom:2px solid #DDD}
.debugbar_tab li.active a,.debugbar_tab li.active a:focus,.debugbar_tab li.active a:hover{border-width:0}
.debugbar_tab li a{border:none;color:#666}
.debugbar_tab li.active a,.debugbar_tab li a:hover{border:none;color:#4285F4!important;background:transparent}
.debugbar_tab li a::after{content:"";background:#4285F4;height:2px;position:absolute;width:100%;left:0;bottom:-1px;transition:all 250ms ease 0;transform:scale(0)}
.debugbar_tab li.active a::after,.debugbar_tab li:hover a::after{transform:scale(1)}
.debugbar_tab li a::after{background:#21527d none repeat scroll 0 0;color:#fff}
.inner_debug {display:none}
.inner_debug h3.query_top{padding:1em;font-size:1.3em}
#debug_executed_query{display:block}
.lang_domain_list td .num{margin-right:10px;color:#9b9ea5;font-size:9px}
.debugbar_close_btn_el{position:absolute;top:20px;right:20px}
.debug_table{border:1px solid #ccc;border-collapse:collapse;margin:0;padding:0;width:100%}
.debug_table caption{display:none}
.debug_table tr{background:#f8f8f8;border:1px solid #ddd;padding:.35em}
.debug_table th,.debug_table td{padding:.625em;text-align:center}
.debug_table tbody tr:hover td{background:#c7d4dd!important}
.debug_table tbody tr:nth-child(even){background-color:#fff}
.debug_table td.left{text-align:left}
.debug_table th{font-size:.85em;letter-spacing:.1em;text-transform:uppercase}
.debug_table td img{text-align:center}
.debug_table.hook_table th, .debug_table.hook_table td {text-align:left;border:1px solid #ddd;}
.hook_table .hook_count{margin-left:3px;font-size:0.9em;color:#7cbc0a}
.debug_bar_btn_group button.debug_button{margin-top:3px}
button.debug_button{background-color:#7fbf4d;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#7fbf4d),color-stop(100%,#63a62f));background-image:-webkit-linear-gradient(top,#7fbf4d,#63a62f);background-image:-moz-linear-gradient(top,#7fbf4d,#63a62f);background-image:-ms-linear-gradient(top,#7fbf4d,#63a62f);background-image:-o-linear-gradient(top,#7fbf4d,#63a62f);background-image:linear-gradient(top,#7fbf4d,#63a62f);border:1px solid #63a62f;border-bottom:1px solid #5b992b;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 0 #96ca6d;box-shadow:inset 0 1px 0 0 #96ca6d;color:#fff;padding:3px 0 4px;text-align:center;text-shadow:0 -1px 0 #4c9021;width:100px;font-weight:700;font-size:14px;vertical-align:top}
button.debug_button:hover{background-color:#76b347;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#76b347),color-stop(100%,#5e9e2e));background-image:-webkit-linear-gradient(top,#76b347,#5e9e2e);background-image:-moz-linear-gradient(top,#76b347,#5e9e2e);background-image:-ms-linear-gradient(top,#76b347,#5e9e2e);background-image:-o-linear-gradient(top,#76b347,#5e9e2e);background-image:linear-gradient(top,#76b347,#5e9e2e);-webkit-box-shadow:inset 0 1px 0 0 #8dbf67;box-shadow:inset 0 1px 0 0 #8dbf67;cursor:pointer}
button.debug_button:active{border:1px solid #5b992b;border-bottom:1px solid #538c27;-webkit-box-shadow:inset 0 0 8px 4px #548c29,0 1px 0 0 #eee;box-shadow:inset 0 0 8px 4px #548c29,0 1px 0 0 #eee}
@media screen and (max-width: 600px) {
.debug_table{border:0}
.debug_table caption{font-size:1.3em}
.debug_table thead{display:none}
.debug_table tr{border-bottom:3px solid #ddd;display:block;margin-bottom:.625em}
.debug_table td{border-bottom:1px solid #ddd;display:block;font-size:.8em;text-align:right}
.debug_table td.left{text-align:right}
.debug_table td:before{content:attr(data-label);float:left;font-weight:700;text-transform:uppercase}
.debug_table.hook_table th, .debug_table.hook_table td{border:0 none;border-bottom:1px solid #ddd;text-align:right}
.debug_table td:last-child{border-bottom:0 !important}
}
| 0.229535 | 0.070017 |
* {
margin: 0;
padding: 0;
outline: none !important;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
margin: 0px;
padding: 0px;
outline: none;
background: #f2f2f2 !important;
font-size: 14px;
overflow-x: hidden;
}
a {
color: inherit;
}
p {
text-align: justify;
font-size: 14px;
font-family: 'Roboto', sans-serif;
color: 4b4b4b;
line-height: 22px;
}
.cl {
margin: 0px;
padding: 0px;
clear: both;
}
#wrapper {
width: 100%;
margin: 0px;
}
#header {
width: 100%;
height: auto;
margin: auto;
}
#header .top{
background: #fff;
box-shadow: 0px 2px 5px 1px #E6E6E6;
-webkit-box-shadow: 0px 2px 5px 1px #E6E6E6;
-moz-box-shadow: 0px 2px 5px 1px #E6E6E6;
-o-box-shadow: 0px 2px 5px 1px #E6E6E6;
-ms-box-shadow: 0px 2px 5px 1px #E6E6E6;
z-index: 2;
position: relative;
width: 100%;
padding: 10px 0px;
}
.logo{
padding: 10px;
}
}
#header .top .logo{
padding: 20px 0px;
}
#header .bottom{
background: #fff;
width: 100%;
min-height: 47px;
border-bottom: 1px solid #e1e1e1;
position: relative;
top:0px;
}
#header .bottom .navbar-nav{
margin-top: -3px;
}
.social_outer{
margin: auto;
width: 100%;
text-align: center;
margin-top: 30px;
}
.social_outer:after{
border: 1px solid #E5E5E5;
position: absolute;e;
content: "";
top: 146px;
width: 100%;
right: 0%;
height: 1px;
z-index: 1;
}
.social{
text-align: center;
margin: auto;
width: 15%;
z-index: 2;
position: relative;
}
.social_outer p{
font-family: 'Lato', sans-serif;
font-size: 17px;
font-weight: 400;
color: #6b6b6b;
margin-right: 16px;
text-align: center;
margin-top: 7px;
}
.social a{
float: left;
margin-right: 5px;
}
.social a:last-child{
margin-right: 0px;
}
.social i{
padding: 7px 4px;
}
.social .face i{
padding: 6px 6px;
}
.social .face {
width: 35px;
height: 35px;
line-height: 32px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .face:hover {
background: #3f5c9a;
color: #fff;
border:2px solid #3f5c9a;
}
.social .twit {
width: 35px;
height: 35px;
line-height: 31px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .twit:hover {
background: #26a9e1;
color: #fff;
border:2px solid #26a9e1;
}
.social .link {
width: 35px;
height: 35px;
line-height: 28px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .link:hover {
background: #0776b2;
color: #fff;
border:2px solid #0776b2;
}
.social .gplus {
width: 35px;
height: 35px;
line-height: 33px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .gplus:hover {
background: #dc5d50;
color: #fff;
border:2px solid #dc5d50;
}
#wrapper #header .bottom .navbar-default .navbar-collapse, .navbar-default .navbar-form {
background: #fff !important;
}
#wrapper #header .bottom .navbar {
position: relative;
min-height: 40px;
margin-bottom: 0px;
border: 1px solid transparent;
}
.dropdown-menu > li.kopie > a {
padding-left:5px;
}
#wrapper #header .bottom .navbar-default{
background: none;
margin-bottom: 0px;
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;left:100%;
margin-top:-6px;margin-left:-1px !important;
-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;
}
.dropdown-submenu > a:after {
border-color:transparent transparent transparent #9D9D9D;
border-style: solid;
border-width: 4px 0 4px 4px;
content: " ";
display: block;
float: right;
height: 0;
margin-right: -10px;
margin-top:10px;
width: 0;
}
#wrapper #header .bottom .nav > li > a {
position: relative;
display: block;
padding: 10px 0px;
text-transform: uppercase;
font-family: 'Lato', sans-serif;
color: #404040;
font-size: 13px;
}
#wrapper #header .bottom .nav > li > a:before {
background-color: transparent;
content: "";
position: absolute;
left: 0;
bottom: 0;
display: block;
height: 2px;
-webkit-transition: .3s all;
-o-transition: .3s all;
transition: .3s all;
width: 0;
}
#wrapper #header .bottom .nav > li > a:hover:before {
background-color: #f79d00;
content: "";
width: 100%;
}
#wrapper #header .bottom .nav > li > a:first-child {
border-left: none;
}
#wrapper #header .bottom .nav > li > a:hover{
color: #f79d00;
}
/*#wrapper #header .bottom .nav > li:after{
border-right: 1px solid #636363;
content: "";
position: absolute;
height: 13px;
top: 14px;
left: 0px;
}*/
#wrapper #header .bottom .divider{
margin-top: 9px;
padding: 0 12px;
color: #8E8E8E;
}
#wrapper #header .bottom .divider:last-child{
display: none;
}
.dropdown-submenu:hover>a:after {
border-left-color:#555;
}
.dropdown-menu > li > a:hover, .dropdown-menu > .active > a:hover {
text-decoration: underline;
}
@media (max-width: 767px) {
.navbar-nav {
display: inline;
}
.navbar-default .navbar-brand {
display: inline;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-nav .dropdown-menu > li > a {
color: red;
background-color: #ccc;
border-radius: 4px;
margin-top: 2px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #333;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
background-color: #ccc;
}
.navbar-nav .open .dropdown-menu {
border-bottom: 1px solid white;
border-radius: 0;
}
.dropdown-menu {
padding-left: 10px;
}
.dropdown-menu .dropdown-menu {
padding-left: 20px;
}
.dropdown-menu .dropdown-menu .dropdown-menu {
padding-left: 30px;
}
li.dropdown.open {
border: 0px solid red;
}
}
#header .bottom .dropdown-menu{
background-color: #525252;
}
#header .bottom .dropdown-menu > li > a{
color: #FFF;
font-size: 13px;
line-height: 26px;
}
#header .bottom .dropdown-menu > li{
border-bottom: 1px solid #5D5D5D;
}
#header .bottom .dropdown-menu > li:last-child{
border-bottom: none;
}
#header .bottom .dropdown-menu > li > a:hover, #header .bottom .dropdown-menu > li > a:focus {
color: #262626 !important;
text-decoration: none;
background-color: #f5f5f5;
}
@media (min-width: 768px) {
ul.nav li:hover > ul.dropdown-menu {
display: block;
border-radius: 0px;
margin-left: 0px;
}
#navbar {
text-align: center;
margin-top: 7px;
}
.navbar-nav > li > a {
padding-top: 12px;
padding-bottom: 12px;
}
}
.header_right {
padding: 2px;
margin-top: 22px;
}
.header_right .call{
padding-bottom: 5px;
}
.header_right .gry{
color: #818181 !important;
border-color:#818181 !important;
}
.header_right .call i{
width: 24px;
height: 24px;
background: #fff;
border: 1px solid #f79d00;
border-radius: 50%;
padding: 4px 5px;
color: #f79d00;
font-size: 15px;
margin-right: 4px;
text-align: center;
}
.header_right ul {
list-style-type: none;
float: right;
}
.header_right ul li{
float: left;
margin-right: 9px;
border-right: 1px solid #ddd;
padding-right: 20px;
margin-left: 9px;
}
.header_right ul li:last-child{
border-right:none;
margin-right: 0px;
padding-right: 0px;
margin-top: 5px;
}
.eng_div{
background: #fff;
border-radius: 4px;
padding: 5px 9px;
/* border: 1px solid #ddd !important;*/
}
.eng_div i{
background: none !important;
color: inherit;
border: none !important;
padding: 0px;
text-align: left;
}
.eng_div img{
margin-right: 4px;
margin-top: -1px;
}
#wrapper .cntnr_iner{
margin-top: 128px;
}
.inner_banner{
background:#fff url("../images/about-banner.jpg") no-repeat center center;
width: 100%;
height: auto;
min-height: 282px;
}
.inner_banner_cnt{
background:#fff url("../images/contact-banner.jpg") no-repeat center center;
width: 100%;
height: auto;
min-height: 282px;
}
.about_txt{
text-align: center;
margin: auto;
padding-top: 86px;
}
.about_txt h2 {
color: #fff;
font-size: 33px;
font-weight: 400;
}
.about_txt small {
color: #fff;
font-size: 14px;
}
.about_txt >small > span{
color: #f79d00;
}
.content_area .about_cntnt{
background: #fff;
padding:25px;
margin-top: 40px;
padding-bottom: 35px;
padding-top: 25px;
}
.content_area .map{
width: 100%;
padding: 5px 0;
border: 1px solid #ddd;
}
.adres i{
text-align: center;
color: #828282;
margin-right: 5px;
width: 20px;
margin-top: 5px;
}
.content_litxt ul {
margin: 0px;
padding: 0px;
list-style-type: none;
}
.content_litxt ul li {
color: #444;
font-family: 'Roboto', sans-serif;
font-size: 14px;
background: url("../images/tick.png") no-repeat 3px 3px;
padding: 0px 20px 0 27px;
display: flex;
line-height: 20px;
font-weight: 400;
text-align: justify;
margin-bottom: 12px;
}
#wrapper .about_cntnt > h1 {
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
border-bottom: 1px solid #b5b5b5;
padding-bottom: 7px;
margin: 0px !important;
position: relative;
}
#wrapper .about_cntnt h1:after {
content: '';
display: inline-block;
width: 58px;
height: 2px;
position: absolute;
bottom: -1px;
left: 0px;
background: #f79d00;
}
#wrapper .about_cntnt > h2 {
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
padding-bottom: 30px;
margin: 0px !important;
position: relative;
text-align: center;
}
#wrapper .about_cntnt .s_btn{
background: #ff761a;
border: none;
padding: 9px 22px;
font-size: 15px;
}
.banner{
border: 6px solid #E7E7E7;
}
.sign_discnt{
background:#fff url("../images/sign-bg.jpg") no-repeat right bottom;
left: 10%;
padding: 59px 40px;
text-align: center;
border: 6px solid #E7E7E7;
}
.sign_discnt h2{
color: #000;
font-size: 29px;
font-family: 'Abel', sans-serif;
text-shadow: 0px 1px #fff;
margin: 0px;
}
.sign_discnt h3{
color: #f42f2f;
font-size: 60px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
margin-top:29px;
line-height: 25px;
}
.sign_discnt h3 span{
font-weight: 500px;
color: #000;
letter-spacing: 3px;
font-size: 18px;
margin: 0px;
line-height: 44px;
margin-left: 2px;
}
.sign_discnt p{
font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #353535;
text-align: center;
text-shadow: 0px 1px #fff;
font-weight: 300px;
margin-top: 26px;
}
.header_right .log_btn {
background: #FFFFFF;
padding: 7px 12px;
border-radius: 4px;
margin-top: 35px;
color: #717171;
margin-right: 2px;
border: 1px solid #AFAFAF;
font-size: 13px;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .log_btn i {
font-size: 14px;
margin-right: 2px;
}
.header_right .log_btn:hover {
background: #f68f11;
color: #fff;
border: 1px solid #f68f11;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .sig_btn {
background: #f68f11;
padding: 7px 12px;
border-radius: 4px;
margin-top: 35px;
color: #fff;
border: 1px solid #f68f11;
font-size: 13px;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .sig_btn:hover {
background: #8e8e8e;
color: #fff;
border: 1px solid #8e8e8e;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.sign_discnt .sign_btn{
background: #f79d00;
padding: 7px 25px;
border-radius: 4px;
margin-top: 35px;
color: #fff;
font-size: 20px;
font-family: 'Abel', sans-serif;
text-transform: uppercase;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
}
.sign_discnt .sign_btn:hover{
background: #000;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
}
.content_area h1{
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
border-bottom:1px solid #b5b5b5;
padding-bottom: 7px;
margin-top: 0px;
position: relative;
}
.content_area h1:after{
content: '';
display: inline-block;
width: 58px;
height: 2px;
position: absolute;
bottom: -1px;
left: 0px;
background: #f79d00;
}
.content_area p{
color: #4c4c4c;
font-size: 15px;
font-weight: 300px;
line-height: 24px;
text-align: justify;
}
.pro_hover{
}
.mt{
margin-top: 27px !important;
}
.mt_lg{
margin-top: 30px !important;
}
.pro_img_hvr{
width: 100%;
height: auto;
overflow: hidden;
position: relative;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.imgbx1{
width: 100%;
max-height: 295px;
overflow: hidden;
position: relative;
}
.imgbx2{
width: 100%;
max-height: 372px;
overflow: hidden;
position: relative;
}
.imgbx3{
width: 100%;
max-height: 372px;
overflow: hidden;
position: relative;
}
.imgbx4{
width: 100%;
max-height: 184px;
overflow: hidden;
position: relative;
}
.imgbx5{
width: 100%;
max-height: 395px;
overflow: hidden;
position: relative;
}
.pro_hover .pro_img_hvr img{
transition:all 0.3s ease-in-out;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
width: 100%;
max-height: 397px;
}
.pro_hover:hover .pro_img_hvr img{
transform:scale(1.1);
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.pro_hover .pro_img_hvr:after {
content: "";
background: -moz-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, transparent), color-stop(60%, transparent), color-stop(97%, rgba(0,0,0,0.65)));
/* background: -webkit-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%); */
background: -o-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
background: -ms-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
/* background: linear-gradient(to bottom, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%); */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
}
.pro_name{
position: absolute;
bottom: -7px;
left: 10px;
z-index:99;
}
.pro_name h3{
color: #fff;
font-size: 24px;
font-family: 'Abel', sans-serif;
text-align: left;
text-overflow: ellipsis;
margin: 0px;
}
.pro_name p{
font-family: 'Roboto', sans-serif;
font-size: 13px;
color: #fff;
text-align: left;
text-overflow: ellipsis;
}
.footer{
width: 100%;
background:#fff;
text-align: center;
padding-top: 50px;
}
.mbm{
margin-bottom: 30px;
}
.fotr_link li{
padding-left: 3px !important;
}
.fotr_link li a{
color: #6b6b6b;
font-size: 15px;
}
.fotr_link li a:hover{
color: #000;
font-size: 15px;
text-decoration: underline;
}
.footer .copyright{
background: #f2f2f2;
margin-top: 60px;
}
.footer .copyright p{
font-family: 'Roboto', sans-serif;
color: #616161;
/* font-weight: 300; */
text-align: left;
padding: 13px 0px 2px 0;
font-size: 13.5px;
}
.footer .copyright p span, .footer .copyright p i{
color: #f79d00;
font-weight: 400;
}
.copyright .gotop {
position: absolute;
top: -32px;
right: -46px;
}
/*--------popup------*/
.popupbox .modal{
background: rgba(0,0,0,.7);
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
}
.popupbox .p_wdth{
width: 50%;
}
.popupbox .modal-dialog{
margin-top: 73px;
}
.popupbox .modal-content{
border: none !important;
/*box-shadow: none !important;*/
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
padding-bottom: 20px;
}
.popupbox .modal-header {
background-color: #f79d00;
padding: 6px 15px;
border-bottom: solid 1px #ddd;
}
.popupbox .modal-header .modal-title {
font-size: 23px;
font-family: 'Roboto', sans-serif;
color: #fff;
font-weight: 300;
}
.popupbox .modal-body {
background-color:#fff;
}
.popupbox .close {
font-weight: 400;
font-size: 35px;
opacity: 1;
position: absolute;
right: -10px;
top: -55px;
background: #000;
color: #fff;
text-shadow: none;
font-size: 25px;
border-radius: 50%;
padding: 0px 6px;
border: 2px solid #fff;
}
#wrapper .popupbox .cls {
right: -27px;
top: -70px;
}
.popupbox .close span {
position: relative;
left: 1px;
top: -1px;
}
.popupbox .close:hover, .close:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
filter: alpha(opacity=50);
opacity: 1;
}
.popupbox .modal-body h4 {
color: #5C5C5C;
margin-top: 7px;
position: absolute;
font-size: 13px;
text-transform: inherit;
margin-left: 17px;
}
.popupbox h2, .popupbox h3, .popupbox h4 {
text-transform: uppercase;
margin: 0px;
}
.popupbox .modal-body input[type="number"], .popupbox .modal-body input[type="text"], .popupbox .modal-body input[type="email"], .popupbox .modal-body input[type="password"] {
box-shadow: none;
border-radius: 0px;
background-color:#efefef;
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.05);
color: #1f1f1f;
}
.popupbox .modal-body input:focus, .popupbox .modal-body input:hover {
border-bottom: solid 1px #ff8c26;
border-radius: 0px;
}
#wrapper .popupbox input[type="email"] {
background-color:#f5f5f5 !important;
background-image: none;
color: rgb(0, 0, 0);
}
.popupbox .modal-body .radio, .popupbox .modal-body .checkbox {
margin: 0px;
}
.popupbox .modal-body label {
font-weight: 400;
color: #666;
font-size: 13px !important;
}
.popupbox .modal-body a {
color: #333;
text-decoration: underline;
}
.popupbox .modal-body a:hover {
color: #f79d00;
}
.popupbox .btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
font-size: 14px;
}
.popupbox .btn-warning:hover {
color: #fff;
background-color: #000;
border: none;
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
font-size: 14px;
}
.popupbox .btn-warning {
color: #fff;
/* background-color: #f79d00; */
border-color: #fff;
margin: auto;
}
.popupbox .modal-body h6 {
font-size: 13px;
padding-left: 130px;
text-align: left;
}
/*-----------filter---------*/
#wrapper .tit_sec {
width: auto;
position: relative;
z-index: 3;
border-radius: 0px;
margin: 0px;
padding: 5px 0px;
margin-top: 84px;
}
.tit_sec ul{
margin-bottom: 0px !important;
margin-left: -19px;
}
#wrapper .cheklist {
margin: 5px 0px 5px;
}
.cheklist li {
font-size: 13px;
color: #8f8f8f;
padding: 0px 1px;
font-weight: 400;
padding: 0 2px !important;
}
.cheklist li i {
font-size: 10px;
}
.cheklist li a {
color: #444;
font-size: 13px;
}
.filterpanel {
width: 100%;
margin: 0px;
padding-top: 29px;
}
.leftfilter .panel {
width: 100%;
float: left;
box-shadow: inherit;
border: 1px solid #fdb300;
}
.leftfilter .panel-heading {
width: 100%;
float: left;
text-align: left;
padding: 10px 15px;
font-size: 16px;
color: #4c4c4c;
font-family: 'Lato', sans-serif;
border-bottom: solid 1px #ddd;
font-weight: 400;
}
.leftfilter .panel-heading .fa {
text-align: right;
float: right;
margin-top: 4px;
color: #8bc34a;
}
.leftfilter .panel-body {
padding: 5px 15px;
}
.leftfilter .scrol {
max-height: 250px;
overflow-y: auto;
}
.leftfilter .listli .checkbox {
margin: 0px;
}
.filterpanel .radio label, .filterpanel .checkbox label {
padding-left: 0px;
color: #666;
font-size: 12.6px;
}
.leftfilter .listli label {
width: 100%;
padding: 8px 0px 8px;
border-bottom: dashed 1px #ddd;
transition: all 0.4s;
}
.checkbox label input[type="checkbox"], .radio label input[type="radio"] {
display: none;
}
.leftfilter .listli label .cr {
font-size: 11px;
border-radius: 0px;
margin-top: 3px;
border: solid 1px #ddd;
}
.checkbox .cr, .radio .cr {
position: relative;
display: inline-block;
border: 1px solid #ddd;
border-radius: 0px;
width: 1.3em;
height: 1.3em;
float: left;
margin-right: .5em;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon, .radio label input[type="radio"] + .cr > .cr-icon {
transform: scale(3) rotateZ(-20deg);
opacity: 0;
transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .radio label input[type="radio"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .radio label input[type="radio"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
color: #000;
}
.checkbox .cr .cr-icon, .radio .cr .cr-icon {
position: absolute;
font-size: .8em;
line-height: 0;
top: 50%;
left: 20%;
}
.leftfilter .listli label .tg {
font-size: 13px;
color: #666;
margin-left: 5px;
transition: all 0.4s;
}
.leftfilter .listli label .rt {
float: right;
color: #ccc;
font-size: 10px;
margin-top: 6px;
}
.leftfilter .listli .checkbox {
margin: 0px;
}
.rangeslider {
position: relative;
margin: 30px 0px 15px;
z-index: 1;
padding: 0 10px;
}
.rangeslider .lep {
top: -20px;
position: absolute;
font-weight: 500;
color: #333;
}
.rangeslider .rip {
top: -20px;
right: 0;
position: absolute;
font-weight: 500;
color: #333;
}
.curncy_img img{
float: left;
background: #fff;
border: 1px solid #ddd;
border-radius: 3px;
padding: 6px;
margin-left: 6px;
}
.curncy_img img:hover{
background: #ededed;
border: 1px solid #f79d00;
}
.curncy_img .active{
background: #ededed;
border: 1px solid #f79d00;
}
#back-top {
position: fixed;
bottom: 20px;
right: 11px;
z-index: 999999;
}
#back-top a {
width: 45px;
display: block;
text-align: center;
font: 11px/100% Arial, Helvetica, sans-serif;
text-transform: uppercase;
text-decoration: none;
color: #bbb;
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;
}
#back-top span {
width: 35px;
height: 35px;
display: block;
margin-bottom: 7px;
padding: 8px 0;
border: solid 1px rgba(255,185,30, 0.3);
background: #042546;
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;
}
#back-top span i {
font-size: 15px;
color: #fff;
}
#wrapper .prodboxlist {
width: 100%;
height: auto;
position: relative;
}
.rightfilter {
padding: 15px 2px 15px;
background-color: #FFF;
height: auto;
margin: 0px;
position: relative;
}
.rightfilter .tith {
margin-top: -38px;
position: absolute;
color: #333;
text-transform: uppercase;
font-family: 'Open Sans',sans-serif;
font-weight: 700;
font-size: 17px;
}
.boxselect {
width: 96.6%;
float: left;
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: solid 1px #eee;
/* padding: 0 16px; */
margin-left: 14px;
}
.boxselect .selp {
width: auto;
margin: 0px;
padding: 0px;
float: left;
}
.boxselect .selp li:nth-child(1) {
color: #888;
}
.boxselect .selp li {
font-size: 13px;
margin: 5px 0px 7px;
}
.boxselect .form-inline label {
font-weight: 400;
color: #888;
font-size: 13px;
}
.boxselect .selp li a {
background-color: #f6f6f6;
border-radius: 20px;
padding: 4px 10px;
font-size: 12px;
}
.boxselect .form-inline .form-control {
height: 28px;
padding: 0px 8px;
border: solid 1px #eee;
box-shadow: inherit;
font-size: 13px;
}
#wrapper .prodboxlist .col {
padding: 0px 5px;
}
#wrapper .prodboxlist .prodbox {
box-shadow: inherit;
border: solid 1px #f9f9f9;
transition: all 0.4s;
border-radius: 0px;
}
#wrapper .prodboxlist .prodbox .panel-body {
padding: 0px 3px;
}
.pro_imgs .imgbox {
width: 100%;
height: 210px;
display: table;
vertical-align: middle;
text-align: center;
overflow: hidden;
position: relative;
}
.pro_imgs .imgbox img {
width: auto;
height: auto;
max-width: 100%;
max-height: 200px;
margin: auto;
display: table-cell;
vertical-align: middle;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
padding-top: 5px;
}
.pro_bdr .panel{
border: 1px solid #d0d0d0 !important;
padding-bottom: 5px;
}
.pro_bdr .prodbox .panel-footer{
min-height: 245px;
}
.pro_bdr .prodbox .panel-footer .table{
margin-bottom: 12px;
}
#demo1 .cr{ font-size: 11px !important;
/* border-radius: 0px; */
margin-top: 3px !important;
/* border: solid 1px #ddd; */
margin-left: -14px !important;
}
.pro_bdr .prodbox .panel-footer p{
font-size: 13.5px;
line-height: 21px;
color: #333;
margin: 0px;
text-align: left;
}
.pro_bdr .prodbox .panel-footer b{
font-weight: 500;
color: #111;
font-size: 13.5px;
line-height: 21px;
}
.pro_bdr .prodbox .panel-footer strong{
font-weight: 500;
color: #ee8506;
font-size: 16px;
line-height: 18px;
}
.pro_bdr .prodbox .panel-footer .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
padding: 3px 8px !important;
}
.pro_bdr .panel:hover{
border: 1px solid #fdb300 !important;
box-shadow: 0px 0px 10px 1px rgba(207, 47, 46, 0.2) !important;
}
.prodbox .panel-footer {
margin: 0px;
position: relative;
background-color: #FFF;
border-top: solid 1px #eee;
padding: 0px;
padding-top: 10px;
margin-top: 5px;
}
.prodbox .panel-footer .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
border: none !important;
font-size: 14px;
line-height: 8px !important;
}
.prodbox .panel-footer .list-unstyled {
margin-bottom: 0px;
}
.prodbox .panel-footer li {
margin-bottom: 15px;
}
.leftfilter .panel-body .liststyle small {
font-size: 10px;
color: #888;
margin-top: 2px;
font-weight: 300;
}
.leftfilter .panel-body .clickplus i {
border: solid 1px #eee;
padding: 2px 5px;
color: #ccc;
margin-left: 8px;
}
.leftfilter .panel-body .colrs span{
float: left;
width: 20px;
height: 20px;
background: #000;
margin-right: 4px;
margin-top: 3px;
}
.leftfilter .panel-body .colrs{
margin-bottom:16px;
}
.leftfilter .panel-default .panel-body .checkbox .cr, .leftfilter .panel-default .panel-body .radio .cr {
border: solid 1px #ddd;
}
.zoomproduct .imgbox{
width: 555px;
height: 400px;
background-color: #f6f6f6;
overflow: hidden;
position: relative;
border: solid 1px #ddd;
vertical-align: middle;
display: table-cell;
text-align: center;
}
.zoomproduct .imgbox img{
width: auto !important;
height: auto !important;
max-width: 555px;
max-height: 400px;
margin: auto;
text-align: center;
vertical-align: center;
display: table-cell;
position: relative !important;
}
.zoomproduct .zoomWrapper{
width: 555px !important;
height: 400px !important;
display: table-cell;
vertical-align: middle;
}
.zoomproduct #gallery_01{
margin-top: 8px;
}
.zoomproduct #gallery_01 img{
width: 100px;
height: 67px;
border: solid 4px #eee;
overflow: hidden;
}
.zoomproduct #gallery_01 img:hover{
border:solid 4px #f6bb42;
overflow: hidden;
}
.zoomWindow{
width: 510px !important;
height: 500px !important;
margin-left: 77px;
}
.buynow_section {
width: 100%;
margin: 0px;
padding-left: 10px;
}
.buynow_section h4 {
font-family: 'Lato', sans-serif;
font-size: 23px;
font-weight: 300;
color: #333;
margin-bottom: 12px;
line-height: 27px;
}
.buynow_section .priceview {
width: 100%;
margin: 0px;
padding: 9px 0;
/* border-top: solid 1px #ddd;*/
}
.buynow_section .priceview middle {
font-size: 16px;
color: #666;
width: 100%;
clear: both;
width: 100%;
float: left;
margin-bottom: 5px;
}
.buynow_section .priceview middle strike {
margin-left: 0px;
}
.buynow_section .priceview middle span {
color: #ff761a;
margin-left: 10px;
font-size: 19px;
}
.buynow_section .priceview big {
font-size: 18px;
}
.buynow_section .priceview big span {
font-size: 24px;
color: #000;
margin-left: 5px;
}
.buynow_section .saving {
width: 100%;
height: auto;
clear: both;
padding: 5px 5px;
border-top: solid 1px #eee;
border-bottom: solid 1px #eee;
}
.buynow_section .saving span {
font-size: 13px;
font-weight: 600;
color: #333;
}
.buynow_section .saving small {
color: #666;
}
.buynow_section .pincode {
margin: 5px 0px;
}
.buynow_section .pincode small {
margin: 5px 0px;
float: left;
width: 100%;
font-size: 13px;
color: #727272;
}
.input-group[class*="col-"] {
float: none;
padding-right: 0;
padding-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.buynow_section .pincode input {
position: relative;
z-index: 0;
}
#wrapper .btn {
border-radius: 0px;
}
.buynow_section .buyb {
width: 100%;
float: left;
padding: 7px 0px;
margin: 14px 0px 10px;
border-top: solid 1px #eee;
border-bottom: solid 1px #eee;
}
.buynow_section .buyb ul {
margin-bottom: 0px;
}
.buynow_section .buyb ul li {
margin-right: 15px;
}
.buynow_section .buyb ul li a {
float: left;
}
.buynow_section .buyb select {
width: 60px;
padding: 5px 8px;
}
.buynow_section input, .buynow_section select {
border-radius: 0px;
border: 1px solid #c9c9c9;
}
.buynow_section .buyb span {
font-size: 15px;
color: #666;
}
.buynow_section .buyb big {
font-size: 17px;
color: #f00;
}
.buyb_btn {
background-color: #fd7222;
color: #FFF;
border-radius: 0px;
text-transform: uppercase;
font-weight: 400;
font-size: 15px;
padding: 8px 20px;
margin-top: 2px;
margin-left: 15px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
border: none;
}
.buyb_btn:hover {
background: #000 !important;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.buynow_section .detailtab {
width: 100%;
margin: 0px 0px;
border: 1px solid #ddd;
}
.buynow_section .detailtab .nav-pills > li.active > a, .buynow_section .detailtab .nav-pills > li.active > a:hover, .buynow_section .detailtab .nav-pills > li.active > a:focus {
background-color: #eeeeee;
color: #333;
border-bottom: solid 2px #ff761a;
}
.buynow_section .detailtab .nav > li > a {
padding: 9px 35px;
border-radius: 0px;
color: #888;
-webkit-transition: 0.5s ease-in-out;
-moz-transition: 0.5s ease-in-out;
-ms-transition: 0.5s ease-in-out;
-o-transition: 0.5s ease-in-out;
transition: 0.5s ease-in-out;
border-bottom: 2px solid #fff;
}
.buynow_section .detailtab .nav > li {
border-right:1px solid #ddd;
border-bottom: 0px;
}
.buynow_section .detailtab .nav > li:last-child {
border-right:none;
}
.buynow_section .detailtab .tab-content {
border: solid 1px #eee;
padding: 10px 15px;
height: 226px;
overflow: auto;
}
.buynow_section .detailtab .tab-content ul {
margin-bottom: 0px;
margin-left: 10px;
}
.buynow_section .detailtab .tab-content ul li {
border-bottom: solid 1px #f6f6f6;
font-size: 14px;
line-height: normal;
padding: 3px 0px;
margin-bottom: 0px;
line-height: 22px;
text-align: justify;
}
.buynow_section .detailtab .tab-content ul li p {
margin-left: -8px;
}
.buynow_section .detailtab .tab-content ul li strong {
font-weight: 600;
}
.buynow_section .starbox {
width: 100%;
height: auto;
/* border-top: solid 1px #eee;
border-bottom: solid 1px #eee;*/
}
.buynow_section .starbox .col-sm-4, .buynow_section .starbox .col-sm-8 {
padding: 0px 0px;
}
.buynow_section .starbox .list-inline {
margin-bottom: 0px;
color: #555;
font-weight: 400;
font-size: 13px;
}
.buynow_section .starbox .list-inline li {
display: inline-block;
}
.star {
float: left;
margin-right: 6px;
}
.star .fa-star {
font-size: 12px;
color: #eed44b;
text-align: left;
}
.star .fa-star-o {
font-size: 12px;
color: #999;
text-align: left;
}
.buynow_section .starbox .wilist {
margin: 0px;
}
.buynow_section .starbox .list-inline li {
display: inline-block;
}
.detail_inr_di{
background: #fff;
padding: 15px;
margin-top: 10px;
}
.categopanel {
margin: 0px;
}
.categopanel .bcatpa {
display: block;
position: relative;
margin-bottom: 10px;
box-shadow: inherit;
height: 200px;
}
.categopanel .panel-heading {
width: 100%;
float: left;
font-size: 15px;
color: #000;
font-weight: 500;
padding: 10px 0px;
text-transform: uppercase;
}
.sp_cat{
margin-bottom: 40px;
}
.sp_cat .imgbox img{
border: 1px solid #ddd;
padding: 3px;
width: 100%;
height: auto;
max-height: 178px;
}
.sp_cat .imgbox{
max-width: 247px;
height: auto;
overflow: hidden;
}
.sp_cat h2 {
font-size: 15px;
color: #000;
font-weight: 400;
font-family: 'Roboto', sans-serif;
text-align: center;
margin: 0px;
padding: 10px 0;
/* background: #EFEFEF; */
margin-top: 2px;
border: 1px solid #E9E9E9;
line-height: 20px;
}
.sp_cat h2 a:hover {
color: #f79d00;
}
.bw {
-webkit-transition: all 2s ease;
-moz-transition: all 2s ease;
-o-transition: all 2s ease;
-ms-transition: all 2s ease;
transition: all 2s ease;
}
.bw:hover {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.categopanel .panel-heading a {
width: 100%;
float: left;
}
.categopanel .panel-heading a .fa {
margin-top: 2px;
margin-left: 4px;
}
.categopanel .bcatpa .panel-body {
padding: 5px 0px;
}
.categopanel .bcatpa .imgbox {
width: 106px;
height: auto;
overflow: hidden;
}
.categopanel .bcatpa .imgbox img {
width: 100%;
height: auto;
border: 1px solid #ddd;
padding: 3px;
max-height: 91px;
}
.categopanel .bcatpa .col-xs-6 {
padding: 0px;
}
.categopanel .bcatpa .list-unstyled li {
padding: 3px 0px;
background: url("../images/cat-arow.png") no-repeat 0px 8px;
display: flex;
}
.categopanel .bcatpa .list-unstyled li a {
font-size: 12px;
color: #000;
font-weight: 400;
padding: 0 15px;
}
.categopanel .bcatpa .list-unstyled li a:hover {
color: #f79d00;
}
.related_pro_di{
margin-top: 55px;
}
.related_pro_di h2, .reviewpanel h2{
font-family: 'Lato', sans-serif;
font-size: 21px;
font-weight: 400;
color: #333333;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 25px;
text-align: left;
}
.addcartpage {
width: 100%;
height: auto;
margin: auto;
border-radius: 0px;
margin-top: 20px;
}
.addcartpage .btnn{
background: #ff5837;
border-radius: 3px !important;
border: none;
padding: 3px 10px;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.addcartpage .well{
box-shadow: none !important;
}
.addcartpage .btnn:hover{
background: #808080;
border-radius: 3px !important;
border: none;
padding: 3px 10px;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.addcartpage .cartit{
border-radius: 0px;
background-color: #f2f2f2;
padding: 0px 10px;
text-align: center;
margin-bottom: 0px;
text-transform: uppercase;
}
.addcartpage .cartit h4{
font-size: 14px;
color: #666;
font-family: 'Lato', sans-serif;
font-weight: 400;
}
.addcartpage .cartit div:nth-child(n){
border-right:solid 1px #ddd;
}
.addcartpage .cartit div:nth-last-child(2){
border-right: none;
}
.addcartpage .cartbox{
border-radius: 0px;
background-color: #fff;
padding: 0 10px;
text-align: center;
margin-bottom: 0px;
box-shadow:inherit;
}
.addcartpage .cartbox li{
min-height: 120px;
}
.addcartpage .cartbox li:nth-child(n){
border-right:solid 1px #ddd;
padding: 10px 10px;
}
.addcartpage .cartbox li:nth-last-child(2){
border-right: none;
}
.addcartpage .cartbox li:nth-child(2),
.addcartpage .cartbox li:nth-child(3),
.addcartpage .cartbox li:nth-child(4),
.addcartpage .cartbox li:nth-child(5){
padding-top: 35px;
}
.addcartpage .cartbox .imgbox{
width: 159px;
height: 100px;
overflow: hidden;
float: left;
}
.addcartpage .cartbox .imgbox img{
width: auto;
max-width: 158px;
height: 100%;
border: solid 1px #eee;
padding: 3px;
}
.addcartpage .cartbox .textt{
color: #666;
font-size: 13px;
padding: 10px 5px;
text-align: left;
}
.addcartpage .cartbox h4{
font-size: 16px;
margin: 0px;
}
.totalbox{
float: right;
min-width: 250px;
width: 100%;
}
.total_otr{
color: #666;
border: solid 1px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 10;
background-color: #fff;
margin-top: 19px;
min-height: 160px !important;
}
.totalbox .panel-body{
padding: 5px;
}
.totalbox .grd_total{
border-top: 1px solid #ddd;
margin-top: 11px;
background: #f5f5f5;
padding: 10px 3px;
bottom: 4px;
width: 97%;
position: absolute;
}
.totalbox h3{
font-weight: 400;
font-family: 'Roboto';
font-size: 15px;
color: #666;
margin: 0;
padding: 5px 10px;
}
.totalbox h3 small{
font-size: 13px;
}
.totalbox h3:nth-last-child(1){
border-bottom: none;
}
.totalbox h3 strong{
float: right;
font-size: 15px;
color: #000;
font-weight: 400;
margin-left: 10px;
}
.grd_total h3{
font-weight: 400;
font-family: 'Roboto';
font-size: 15px;
color: #666;
margin: 0;
padding: 5px 10px;
}
.grd_total h3 small{
font-size: 13px;
}
.grd_total h3:nth-last-child(1){
border-bottom: none;
}
.grd_total h3 strong{
float: right;
font-size: 15px;
color: #000;
font-weight: 400;
margin-left: 10px;
}
.finl_prc{
font-size: 18px !important;
color: #333;
}
.totalbox .panel{
margin-bottom: 0px;
}
.checkout-panel{
width: 100%;
margin: auto;
}
.checkout-panel .panel{
border-radius: 0px;
}
.checkout-panel .panel h3{
border-bottom: solid 1px #ddd;
padding-bottom: 10px;
}
.checkout-panel .panel .r-check {
margin-top: 20px;
}
.checkout-panel .panel .r-check label{
padding-left: 5px;
font-size: 14px !important;
}
.checkout-panel .panel .r-check li{
color: #666;
margin-top: 10px;
font-size: 13px;
}
.checkout-panel .panel label{
font-size: 14px;
font-weight: 400;
color: #666;
}
.checkout-panel .panel .red{
color: #ff0000;
margin-right: 5px;
font-weight: 600;
}
.checkout-panel .panel input,
.checkout-panel .panel select{
border-radius: 0px;
}
.pro_detail_adbtn{
margin-left: 17px;
margin-top: -12px;
}
.pro_detail_adbtn .spinner {
width: 60px;
margin-right: 4px;
float: left;
}
.pro_detail_adbtn .input-group-btn-vertical {
position: relative;
white-space: nowrap;
width: 1%;
vertical-align: middle;
display: table-cell;
}
.pro_detail_adbtn .input-group-btn-vertical > .btn:first-child {
}
.pro_detail_adbtn .input-group-btn-vertical > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
padding: 10px;
margin-left: -1px;
position: relative;
border-radius: 0;
}
.pro_detail_adbtn .input-group-btn-vertical > .btn:last-child {
margin-top: -2px;
}
.pro_detail_adbtn .input-group-btn-vertical i {
position: absolute;
top: 0;
}
.pro_detail_adbtn i {
display: inline-block;
position: absolute;
right: 1px;
box-sizing: border-box;
width: 20px;
height: 18px;
color: #666;
font-size: 6px;
line-height: 22px;
text-align: center;
cursor: pointer;
}
.cart-block-wrapper {
margin-bottom: 1.5em;
}
.block:not(.block-banner) {
margin-bottom: 1.5em;
color: #666;
border: solid 1px rgba(0, 0, 0, 0.1);
padding: 0 24px 24px;
position: relative;
z-index: 10;
background-color: #fff;
padding-bottom: 62px;
}
.cart .sidebar .cart-block:last-child {
margin-bottom: 0;
}
.block:last-of-type {
margin-bottom: 0;
}
.block-title {
margin: 0 -24px .86em;
font-family: 'Lato', sans-serif;
color: #333;
font-weight: normal;
padding: 16px 24px;
font-size: 20px;
position: relative;
letter-spacing: -1px;
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.block-title strong {
font-weight: inherit;
}
.cart-block input.form-control, .cart-block textarea.form-control, .cart-block select.form-control {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 3px;
background-color: rgba(0,0,0,.06);
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.02);
min-height: 37px;
}
.cart-block label {
font-size: 1em;
color: #222;
font-weight: normal;
float: none;
}
.cart-block{
padding-bottom: 30px !important;
}
#discount-coupon-form{
margin-top: 0px;
}
.cart-blockinput.form-control, .cart-block textarea.form-control, .cart-block select.form-control {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 3px;
background-color: rgba(0,0,0,.06);
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.02);
}.
.cart-block .buttons-set {
margin-top: 1.5em;
padding: 0;
border: none;
text-align: left;
}
form .buttons-set {
margin-top: 0;
float: right;
padding-bottom: 0;
}
.block-title:after, .catalog-category-view .block-layered-nav.horizontal, .products-grid .product-buttons-wrapper .btn-quickview, .products-grid .product-buttons-wrapper .btn-quickview .AddToCart-loader, .product-view .product-img-box .more-views h3:after, .opc-wrapper-opc .payment-block dt:hover, .opc-wrapper-opc .payment-block dt.active {
background-color: #fcd15c;
}
.block-title:after {
content: '';
display: inline-block;
width: 40px;
height: 2px;
position: absolute;
bottom: -1px;
left: 24px;
background: #f79d00;
}
.cpn_btn{
border-radius: 4px !important;
padding: 7px 21px !important;
background: #f79d00;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.cpn_btn:hover{
border-radius: 4px !important;
padding: 7px 21px !important;
background: #848484;
color:#fff !important;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.input-box{
width: 77%;
float: left;
}
.dlt_img {
background: url("../images/delete.png") no-repeat 0 2px;
color: #6e6e6e;
}
.dlt_img:hover {
background: url("../images/delete-fill.png") no-repeat 0 2px;
color: #000;
}
.dlt_img span {
padding-left: 20px;
}
.pd_n{
padding-left: 0px !important;
padding-right: 0px !important;
}
.pd_n1{
padding-left: 5px !important;
padding-right: 5px !important;
}
.chk_btn{
padding-left: 65px;
}
.chk_btn .btn-warning {
background-color: #f79d00 !important;
border-color: #eea236;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
}
.chk_btn .btn-warning:hover {
background-color: #e08e00 !important;
border-color: #fff;
color: #fff;
}
.chk_btn .btn-scs {
background-color: #858585 !important;
border-color: #858585;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
}
.btn-scs:hover {
color:#fff !important;
background: #5b5b5b !important;
}
.chk_out{
border-top: 1px solid #EFECEC;
border-bottom: 1px solid #EFECEC;
padding: 22px 0;
text-align: center;
margin-top: 12%;
background: #f5f5f5;
}
.checkout-panel{
width: 100%;
margin: auto;
margin-top: 20px;
}
.checkout-panel .panel{
border-radius: 0px;
}
.checkout-panel .panel h3{
border-bottom: solid 1px #ddd;
padding-bottom: 10px;
font-family: 'Lato', sans-serif;
font-size: 22px;
font-weight: 500;
}
.checkout-panel .panel .r-check {
margin-top: 20px;
}
.checkout-panel .panel .r-check label{
padding-left: 5px;
font-size: 14px !important;
}
.checkout-panel .panel .r-check li{
color: #666;
margin-top: 10px;
font-size: 13px;
}
.checkout-panel .panel label{
font-size: 14px;
font-weight: 400;
color: #666;
}
.checkout-panel .panel .red{
color: #ff0000;
margin-right: 5px;
font-weight: 600;
}
.checkout-panel .panel input,
.checkout-panel .panel select{
border-radius: 0px;
}
.radio .cr {
border-radius: 50%;
}
#login_form1 small a{
text-decoration: underline;
color: #333;
}
#login_form1 small a:hover{
color:#0999DA;
}
.about_cntnt p {
padding-top: 10px;
}
.about_cntnt .btn-primary {
color: #fff !important;
background-color: #00aeff !important;
border-color: #0097dd !important;
padding: 5px 18px;
}
.about_cntnt .btn-primary:hover {
color: #fff !important;
background-color: #0097dd !important;
}
.r-check .btn-success {
color: #fff !important;
background-color: #f79d00 !important;
border-color: #e59200 !important;
padding: 5px 18px;
font-size: 14px;
}
.r-check .btn-success:hover {
color: #fff !important;
background-color: #e59200 !important;
}
.about_cntnt form{
margin-top: 20px;
}
#wrapper .about_cntnt .lable_txt{
font-weight: 500 !important;
font-size: 14px !important;
}
.mayaccount{
width: 100%;
margin-bottom: 25px;
}
.mayaccount .htitle{
margin: 0px 0px -15px 0px;
}
.mayaccount .panel{
padding-top: 10px;
margin: 0;
border-bottom: solid 1px #ddd;
background-color: inherit;
}
.mayaccount .wel{
font-size: 15px;
float: right;
margin-top: 14px;
margin-right: 5px;
color: #FF9800;
margin-bottom: 4px;
font-family: "Roboto";
font-weight: 400;
}
.mayaccount .wel small{
font-size: 14px;
color: #4a4a4a;
font-family: "Roboto";
}
.mayaccount .panel-heading,
.mayaccount .panel-body {
float: left;
}
.mayaccount .p-one{
background-color: #fff;
min-height: 415px;
border: 1px solid #ddd;
padding: 15px 10px;
}
.mayaccount .nav-tabs {
border-bottom: none;
}
.mayaccount .nav-tabs > li {
float: none;
margin-bottom: 0px;
}
.mayaccount .nav > li > a{
border: none;
border-radius: 0px;
border-bottom: dashed 1px #ccc;
}
.mayaccount .nav > li > a big{
font-size: 20px;
color: #444;
font-family: 'Abel', sans-serif;
font-weight: 300;
}
.mayaccount .nav > li > a small{
font-size: 13px;
color: #666;
font-family: "Roboto";
font-weight: 300;
}
.mayaccount .nav > li.active > a big,
.mayaccount .nav > li > a:hover big{
color: #ff7800;
}
.mayaccount .nav-tabs > li a:hover,
.mayaccount .nav-tabs > li a:focus{
border-bottom: dashed 1px #ccc;
background-color: #f1f1f1;
}
.mayaccount .nav-tabs > li.active > a,
.mayaccount .nav-tabs > li.active > a:hover,
.mayaccount .nav-tabs > li.active > a:focus{
border: none;
border-bottom: dashed 1px #ccc;
background-color: #f1f1f1;
}
.mayaccount .mybox{
width: 100%;
padding: 0px;
min-height: 415px;
border:solid 1px #eee;
}
.mayaccount .mybox h2{
position: absolute;
margin: 0px;
top: -32px;
font-size: 22px;
font-weight: 300;
}
.mayaccount .mybox h4{
font-weight: 300;
font-family: "Roboto";
color: #666;
}
.mayaccount .mybox h2 small{
font-weight: 300;
font-size: 17px;
}
.mayaccount .mybox .well{
text-align: center;
font-size: 17px;
color: #666;
background-color: #FFF;
border:none;
border-bottom:solid 1px rgba(255,152,0, 0.4);
box-shadow:inherit;
border-radius: 0px;
}
.mayaccount .mybox .well i{
margin-right: 10px;
}
.mayaccount .mybox .list li i{
width: 30px;
color: #666;
}
.mayaccount .mybox .list li{
margin-bottom: 15px;
font-size: 17px;
color: #444;
}
.mayaccount .mybox .list .co{
font-size: 14px;
}
.mayaccount .page-header{
margin: 0px 0 20px;
padding: 8px;
color: #484848 !important;
background-color: #EFEFEF;
}
.mayaccount .form-control[disabled], .mayaccount .form-control[readonly], fieldset[disabled] .mayaccount .form-control {
background-color: #fff;
opacity: 1;
}
.inputtype input[type="number"],
.inputtype input[type="text"],
.inputtype input[type="email"],
.inputtype input[type="password"]{
border:none;
border-radius: 15px;
border-bottom: solid 1px #ddd;
box-shadow: inherit;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
}
.inputtype input:focus,
.inputtype input:hover{
border-bottom: solid 1px #ff8c26;
border-radius: 15px;
}
.inputtype input[type="submit"]:hover,
.inputtype input[type="submit"]:focus{
font-size: inherit;
}
.mayaccount .table thead tr th,
.mayaccount .table tbody tr td{
text-align: center;
}
.mayaccount .table thead tr th{
font-weight: 400;
font-family: "Roboto";
color: #666;
font-size: 13px;
background-color: #f6f6f6;
}
.mayaccount .table tbody tr td{
font-size: 13px;
color: #666;
line-height: 16px !important;
border: 0px;
}
/*------------trader dashboard--------------*/
.tradr_account{
width: 100%;
margin-bottom: 25px;
}
.tradr_account .htitle{
margin: 0px 0px -15px 0px;
}
.tradr_account .panel{
padding-top: 10px;
margin: 0;
border-bottom: solid 1px #ddd;
background-color: inherit;
}
.tradr_account .wel{
font-size: 15px;
float: right;
margin-top: 14px;
margin-right: 5px;
color: #FF9800;
margin-bottom: 4px;
font-family: "Roboto";
font-weight: 400;
}
.tradr_account .wel small{
font-size: 14px;
color: #4a4a4a;
font-family: "Roboto";
}
.tradr_account .panel-heading,
.tradr_account .panel-body {
float: left;
}
.tradr_account .p-one {
background-color: #efefef;
min-height: 415px;
border: 7px solid #b8b8b8;
padding: 10px 7px;
}
.tradr_account .nav-tabs {
border-bottom: none;
}
.tradr_account .nav-tabs > li {
float: none;
margin-bottom: 0px;
}
.tradr_account .nav > li > a{
border: none;
border-radius: 0px;
border-bottom: dashed 1px #ccc;
}
.tradr_account .nav > li > a big{
font-size: 20px;
color: #444;
font-family: 'Abel', sans-serif;
font-weight: 300;
}
.tradr_account .nav > li > a small{
font-size: 13px;
color: #666;
font-family: "Roboto";
font-weight: 300;
}
.tradr_account .nav > li.active > a big,
.tradr_account .nav > li > a:hover big{
color: #ff7800;
}
.tradr_account .nav-tabs > li a:hover,
.tradr_account .nav-tabs > li a:focus{
border-bottom: dashed 1px #ccc;
background-color: #fff;
}
.tradr_account .nav-tabs > li.active > a,
.tradr_account .nav-tabs > li.active > a:hover,
.tradr_account .nav-tabs > li.active > a:focus{
border: none;
border-bottom: dashed 1px #ccc;
background-color: #fff;
}
.tradr_account .mybox{
width: 100%;
padding: 0px;
min-height: 415px;
border:solid 1px #eee;
}
.tradr_account .mybox h2{
position: absolute;
margin: 0px;
top: -32px;
font-size: 22px;
font-weight: 300;
}
.tradr_account .mybox h4{
font-weight: 300;
font-family: "Roboto";
color: #666;
}
.tradr_account .mybox h2 small{
font-weight: 300;
font-size: 17px;
}
.tradr_account .mybox .well{
text-align: center;
font-size: 17px;
color: #666;
background-color: #FFF;
border:none;
border-bottom:solid 1px rgba(255,152,0, 0.4);
box-shadow:inherit;
border-radius: 0px;
}
.tradr_account .mybox .well i{
margin-right: 10px;
}
.tradr_account .mybox .list li i{
width: 30px;
color: #666;
}
.tradr_account .mybox .list li{
margin-bottom: 15px;
font-size: 17px;
color: #444;
}
.tradr_account .mybox .list .co{
font-size: 14px;
}
.tradr_account .page-header {
margin: 0px 0 20px;
padding: 8px;
color: #ffffff !important;
background-color: #f68f11;
}
.tradr_account .form-control[disabled], .tradr_account .form-control[readonly], fieldset[disabled] .tradr_account .form-control {
background-color: #fff;
opacity: 1;
}
.tradr_account .table thead tr th,
.tradr_account .table tbody tr td{
text-align: center;
}
.tradr_account .table thead tr th{
font-weight: 400;
font-family: "Roboto";
color: #666;
font-size: 13px;
background-color: #f6f6f6;
}
.tradr_account .table tbody tr td{
font-size: 13px;
color: #666;
line-height: 9px !important;
border: 0px;
}
/*------------trader dashboard ---------------*/
#scrollbox ::-webkit-scrollbar {
width: 12px;
height:10px;
}
/* Track */
#scrollbox ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-webkit-border-radius: 10px;
border-radius: 10px;
}
/* Handle */
#scrollbox ::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255,143,31, .9) ;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
#rootwizard ::-webkit-scrollbar-thumb:window-inactive {
background: rgba(255,143,31, .9) ;
}
.ie7 #scrollbox, .ie8 #scrollbox, .ie9 #scrollbox {
scrollbar-face-color:#61839E;
scrollbar-highlight-color:#77A2C4;
scrollbar-shadow-color:#4D697F;
scrollbar-3dlight-color:#77A2C4;
scrollbar-arrow-color:#fff;
scrollbar-darkshadow-color:#61839E;
scrollbar-3dlight-color:#61839E;
scrollbar-track-color:#A8AFB9;
}
.userdashboard{
width: 100%;
height: 220px;
}
.userdashboard .header{
position: relative;
}
.tab-pane .btn-success {
color: #fff !important;
background-color: #f79d00 !important;
border-color: #e59200 !important;
padding: 5px 18px;
font-size: 14px;
border-radius: 3px;
}
.tab-pane .btn-success:hover {
color: #fff !important;
background-color: #e59200 !important;
border-radius: 3px;
}
.tab-pane .btn-success:focus {
border-radius: 3px;
}
.shipbox h3{
font-weight: 300;
font-family: "Roboto";
padding-left: 15px;
padding-bottom: 9px;
}
.orderview .modal-content {
border-radius: 0px;
}
.orderview .modal-content .modal-header {
padding: 7px 15px;
background-color: #f6bb42;
}
.orderview .modal-content .close {
font-size: 30px;
}
.orderview .modal-content .modal-title {
color: #FFF;
text-align: left;
}
.mayaccount .mybox h4 {
font-weight: 300;
font-family: "Roboto";
color: #666;
font-size: 20px;
}
.orderview .table {
margin-bottom: 10px !important;
}
.orderview .table tbody tr td, .orderview .table thead tr th {
font-size: 13px !important;
padding: 5px !important;
}
.orderview .list tbody tr td {
text-align: left !important;
color: #444 !important;
border: 1px solid #ddd !important;
line-height: 20px !important;
border-top: 1px solid #ddd !important;
padding-top: 7px !important;
}
.orderview .list tbody tr th {
width: 100px !important;
font-size: 12px !important;
font-weight: 400 !important;
background-color: #f6f6f6 !important;
color: #666 !important;
line-height: 20px !important;
border: 1px solid #ddd !important;
padding-top: 7px !important;
}
.orderview .modal-dialog{
width: 780px;
}
.orderview .table tr td strong {
font-weight: 500 !important;
font-family: 'Roboto',sans-serif !important;
color: #333 !important;
line-height: 12px;
}
.pop_sign{
width:105px !important;
float: left;
color: #fff !important;
background-color: #F79D00 !important;
padding: 5px 18px;
-webkit-transition: .6s all !important;
-o-transition: .6s all !important;
transition: .6s all !important;
-moz-transition: .6s all !important;
}
.pop_sign:hover{
background-color: #000 !important;
-webkit-transition: .6s all !important;
-o-transition: .6s all !important;
transition: .6s all !important;
-moz-transition: .6s all !important;
}
#custom-search-input{
padding: 4px;
border: solid 1px #D8D8D8;
border-radius: 14px;
margin-top: 7px;
-webkit-transition: .3s all;
-o-transition: .3s all;
transition: .3s all;
width: 84%;
float: left;
}
.margin_t{
margin-top: 25px;
}
#custom-search-input input{
border: 0;
box-shadow: none;
}
#custom-search-input button{
margin: 0px 0 0 0;
background: none;
box-shadow: none;
border: 0;
color: #F68F11;
padding: 0 8px 0 10px;
border-left: solid 1px #ccc;
}
#custom-search-input button:hover{
border: 0;
box-shadow: none;
border-left: solid 1px #ccc;
}
#custom-search-input .glyphicon-search{
font-size: 23px;
}
#custom-search-input .form-control{
height: 25px;
}
#custom-search-input:hover{
border: solid 1px #fcbd71;
-webkit-transition: .7s all;
-o-transition: .7s all;
transition: .7s all;
}
.paylist .table thead tr th, .paylist .table tbody tr th {
background-color: #f6f6f6;
font-size: 14px;
font-weight: 500;
font-family: 'Roboto',sans-serif;
color: #444;
border: 1px solid #e7e7e7 !important;
line-height: 25px !important;
}
.paylist .table tbody tr th {
color: #666;
font-weight: 400;
}
.paylist .table thead tr th, .paylist .table tbody tr td {
text-align: left;
font-weight: 400;
color: #444;
}
.paylist .table thead tr th, .paylist .table tbody tr td {
font-weight: 400;
font-family: 'Roboto',sans-serif;
font-size: 14px;
color: #666;
border: 1px solid #e7e7e7 !important;
line-height: 25px !important;
text-align: left;
}
.paylist h4{
font-size: 18px;
font-family: 'Roboto',sans-serif;
color: #333;
font-weight: 400;
}
.paylist .table-bordered {
border: 1px solid #e7e7e7 !important;
}
.order-details .ordertab {
float: left;
}
.order-details .table thead tr th {
text-transform: uppercase;
font-size: 14px;
color: #666;
font-weight: 400;
background-color: #f2f2f2;
font-family: 'Lato', sans-serif;
text-align: center;
}
.order-details .table tr th {
font-size: 15px;
color: #737373;
font-weight: 700;
font-family: 'Josefin Sans',sans-serif;
}
.order-details .ordertab img {
width: 65px;
float: left;
}
.order-details .table tr td {
color: #222;
font-weight: 400;
font-family: 'Roboto',sans-serif;
}
.order-details p{
text-align: center;
padding-top: 10px;
padding-right: 23px;
}
.orto{
border-top: 1px solid #ddd;
}
.ordertab tbody .orto td {
font-size: 15px !important;
text-transform: uppercase;
font-weight: 400;
color: #000 !important;
background-color: #f6f6f6;
font-family: 'Josefin Sans',sans-serif;
}
.order-details .btn-warning {
background-color: #f79d00 !important;
border-color: #eea236;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
margin-right: 14px;
}
.order-details .btn-warning:hover {
background-color: #f79d00 !important;
border-color: #fff;
color: #fff;
}
.newblog{
width: 100%;
margin: 0px;
}
.newblog .well .head{
border-bottom: dashed 1px #ddd;
padding: 10px 0;
margin-bottom: 10px;
color: #666;
}
.newblog .well{
width: 100%;
clear: both;
background-color: #fff;
border-radius: 0px;
border:none;
padding: 0px;
margin: 0px;
box-shadow: inherit;
}
.newblog .well .imgbox{
width: 100%;
height: auto;
max-height: 140px;
max-width: 356px;
overflow: hidden;
float: left;
text-align: center;
margin-bottom: 10px;
}
.newblog .well .imgbox img{
width: auto;
height: auto;
max-width: 100%;
max-height: 140px;
border:solid 2px #DDD;
}
.newblog .well .boxdot{
padding-bottom: 10px;
margin-bottom: 10px;
border-bottom: dashed 1px #ddd;
}
.newblog .well .boxdot i{
color: #ff7800;
}
.newblog .well .boxdot span:nth-child(1){
color: #ff7800;
}
.newblog .details h4{
color: #ff7800;
border-bottom: dashed 1px #ddd;
padding: 10px 0;
}
.newblog .details .imgbox{
max-width: 460px;
width: 100%;
height: auto;
overflow: hidden;
margin-bottom: 10px;
}
.newblog .details .imgbox img{
width: 100%;
height: auto;
max-height: 400px;
}
.newblog h4{
color: #555;
font-family: 'Roboto',sans-serif;
font-weight: 400;
}
.newblog p,
.newblog span{
color: #4c4c4c;
font-size: 15px;
font-weight: 300px;
line-height: 24px;
text-align: justify;
}
.newblog .blog{
width: 100%;
border: 1px solid #E9E9E9;
padding: 20px 15px;
background: #F9F9F9;
margin: 25px 0;
}
.newblog .blog .boxdot{
width: 100%;
float: left;
padding: 8px 3px;
margin: 10px 0;
border-top: dashed 1px #ddd;
}
.newblog .blog .list-inline{
margin-bottom: 0px;
}
.newblog .dot{
border-bottom: dashed 1px #ddd;
}
.newblog .blog h4{
border: none;
font-family: 'Lato', sans-serif;
font-size: 18px;
font-weight: 400;
color: #333;
text-transform: uppercase;
margin: 0px;
margin-bottom: 20px;
border-bottom: 1px dashed #BBB;
padding-bottom: 6px;
line-height: 23px;
}
.newblog .blog .rd_a{
color: #F68F11;
margin-top: 10px;
}
.newblog .blog .rd_a:hover{
color: #333;
}
.newblog .blog .big_img{
width: 100%;
float: left;
margin: 0 0%;
border: none;
}
.newblog .blog .big_img img{
width: 100%;
max-height: 300px;
margin-bottom: 25px;
}
.newblog .blog .col-sm-9{
padding-left: 0px;
}
.writereview {
width: 100%;
margin: auto;
margin-top: 15px;
}
.reviewleft h4 {
font-weight: 500;
color: #444;
font-size: 15px;
margin: 10px 0px;
padding-bottom: 10px;
border-bottom: solid 1px #ddd;
}
.reviewleft .imgbox {
max-width: 200px;
height: 200px;
width: 100%;
overflow: hidden;
text-align: center;
/* float: left; */
/* margin: 0px 20px 10px 0px; */
margin: auto;
margin-bottom: 25px !important;
}
.reviewleft .imgbox img {
width: 100%;
max-width: 100%;
height: auto;
margin: auto;
}
.reviewleft .tit {
font-size: 14px;
margin-top: 20px;
}
.reviewright .retith {
font-size: 15px;
padding: 5px;
color: #444;
border-bottom: solid 1px #888;
}
.reviewright .retith small {
float: right;
margin-top: 5px;
}
.reviewright .form-group {
width: 100%;
float: left;
background-color: #f6f6f6;
padding: 10px 0px;
margin: 0px 0px 2px 0px;
}
.reviewright .form-group label {
font-size: 14px;
font-weight: 600;
color: #333;
}
.reviewright .form-group input, .reviewright .form-group select {
box-shadow: inherit;
}
.reviewright .form-group .starrr {
width: 100%;
float: left;
}
.reviewright .form-group .starrr .glyphicon-star {
color: #ff9c00;
}
.reviewright .form-group .starrr span {
font-size: 17px;
}
.reviewright .form-group span {
font-size: 12px;
font-weight: 400;
}
.news_ltr{
background: #EDEDED;
padding: 24px 0px;
border-top: 1px solid #E4E4E4;
margin-top: 36px;
}
.news_ltr h2{
font-family: 'Abel', sans-serif;
font-size: 36px;
font-weight: 400;
color: #333;
margin: 0px;
line-height: 23px;
margin-top: 5px;
}
.news_ltr h2 small{
font-size: 14px;
color: #6b6b6b;
font-family: 'Roboto', sans-serif;
line-height: 36px;
}
.sbscr{
margin-top: 5px;
height: 43px !important;
font-size: 16px !important;
}
.suc_msg{
margin-top: -16px;
position: absolute;
}
.suc_msg1 {
margin-top: -29px;
position: absolute;
margin-left: 14px;
}
.dvdr_none{
padding-right: 0px;
padding-left: 0px;
}
.trdr_bnr{
width: 100%;
max-height: 300px;
overflow: hidden;
margin-bottom: 35px;
}
.trdr_bnr img{
width: 100%;
max-height: 300px;
padding: 5px;
border: 1px solid #ddd;
}
.trdr_log .btn1{
border-radius: 4px !important;
padding: 7px 23px !important;
background: #f79d00;
color: #fff;
font-size: 16px;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
border: none;
box-shadow: none;
}
.trdr_log .btn1:hover{
border-radius: 4px !important;
padding: 7px 23px !important;
background: #848484;
color:#fff !important;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
border: none;
box-shadow: none;
}
.trdr_log h2{
font-family: 'Roboto', sans-serif;
color: #555;
font-size: 15px;
}
.bordr_n{
border: none !important;
}
.order-details .pd_line{
padding-top: 7px !important;
line-height: 12px !important;
}
.cart_di{
width: 50px;
height: 40px;
float: left;
position: relative;
z-index: 1;
}
.cart_di img{
margin-top: 15px;
margin-left: 17px;
}
.cart_di .value{
display: inline-block;
color: #FFFFFF;
background: #F68F11;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
line-height: 19px;
right: -2px;
padding: 0px 7px;
position: absolute;
top: 9px;
font-weight: bold;
font-size: 11px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.modal-content1 .close{
right: -255px;
top: -179px;
}
.popupbox .modal-content1{
width: 100%;
height: auto;
padding: 33px 1px;
padding-right: 228px;
float: left;
background-color: rgba(255,255,255, 0.9);
background: url("../images/pop-bg.jpg") no-repeat -50px -16px;
}
.new_ltrs{
background: none !important;
border: none !important;
text-align: center;
}
.new_ltrs p{
font-size: 13px;
font-family: 'Roboto', sans-serif;
color: #333;
text-align: center;
}
.new_ltrs h4 {
font-size: 28px;
text-transform: uppercase;
color: rgb(0, 0, 0);
position: relative;
margin-bottom: 35px;
font-family: 'Lato', sans-serif;
text-align: center;
}
.new_ltrs h4:before {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
display: block;
width: 90px;
text-align: center;
border-bottom: 1px solid rgb(0, 0, 0);
margin: 0px auto -10px;
}
.nwltr_btn{
background: #000;
padding: 5px 25px;
border-radius: 0px;
margin-top: 14px;
color: #fff;
margin-left: 37%;
font-size: 20px;
font-family: 'Abel', sans-serif;
text-transform: uppercase;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
border: none;
box-shadow: none;
}
.nwltr_btn:hover{
background: #f79d00;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
border-radius: 0px !important;
}
@media (min-width: 768px){
.modal-dialog1 {
width: 731px !important;
margin: 30px auto;
}
}
.popupbox .modal-content1 input[type="email"]{
box-shadow: none;
border-radius: 0px;
background-color: #fff;
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.05);
height: 40px;
border-radius: 0px;
}
.popupbox .modal-content1 input:hover {
border-bottom: solid 1px #ff8c26;
}
.all_cat{
background: #E7E7E7;
padding: 0 10px;
color: #fff !important;
margin-left: 21px;
}
.all_cat a{
color: #000 !important;
font-weight: 600;
text-shadow: 1px 1px #FFFFFF;
}
.all_cat:hover{
background: #f68f11;
}
.all_cat a:hover{
background: #f68f11;
color: #fff !important;
font-weight: 600;
text-shadow: none;
}
.reviewpanel {
width: 100%;
margin: 0px;
}
.rewiewlist li {
margin-top: 20px;
}
.rewiewlist .leview {
text-align: center;
}
.rewiewlist .leview .co-ic {
width: 60px;
height: 60px;
line-height: 60px;
float: left;
font-size: 24px;
text-align: center;
vertical-align: middle;
border-radius: 50%;
color: #FFF;
background-color: #19bc9c;
font-weight: 600;
margin-left: 55px;
}
.rewiewlist .leview h5 {
width: 100%;
float: left;
clear: both;
font-weight: 400;
font-size: 15px;
}
.rewiewlist .leview h6 {
width: 100%;
float: left;
color: #9A9A9A;
font-weight: 400;
margin: 0px;
font-size: 13px;
}
.rewiewlist .leview p {
width: 100%;
color: #888;
text-align: center;
font-weight: 400;
font-size: 12px;
margin: 0px;
margin-bottom: 2px;
}
.rewiewlist .leview h6 i {
color: #19bc9c;
}
.rewiewlist .rigview {
margin: 0px;
padding-left: 0px;
}
.rewiewlist .rigview .panel {
border: solid 1px #eee;
position: relative;
border-radius: 4px;
}
.rewiewlist .panel::before {
position: absolute;
display: block;
top: 15px;
left: -24px;
content: '';
width: 0px;
height: 0px;
border: inherit;
border-width: 12px;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
}
.rewiewlist .panel::after {
position: absolute;
display: block;
top: 15px;
left: -23px;
content: '';
width: 0px;
height: 0px;
border: inherit;
border-width: 12px;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
border-right-color: #FFF;
}
.rewiewlist .rigview .panel-heading .fa-star, .rewiewlist .rigview .panel-heading .fa-star-o {
font-size: 15px;
}
.rewiewlist .rigview .panel-body h4 {
font-size: 15px;
color: #444;
margin: 5px 0px;
}
.rewiewlist .rigview .panel-body p {
font-size: 12px;
}
/*------------gallery --------------*/
.lightbox-container{
margin-top: 25px;
}
.lightbox-image{
cursor:pointer;
}
.lightbox{
background:rgba(0,0,0,0.93);
bottom:0;
height:100%;
left:0;
margin:0;
position:fixed;
right:0;
top:0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width:100%;
z-index:2500;
}
.lightbox .content{
display: table;
height:100%;
margin:auto;
width:100%;
}
.lightbox .content .inner {
display:table-cell;
vertical-align: middle;
}
.lightbox .content .inner .image,
.lightbox .content .inner .title{
color:#fff;
margin:auto;
padding-bottom: 10px;
text-align: center;
width:40%;
}
.lightbox .content .inner .image img{
max-width:100%;
}
.lightbox .left,
.lightbox .right,
.lightbox .close{
color:#e0e0e0;
font-size:30px;
opacity:1;
position: absolute;
text-shadow: none;
z-index:2501;
}
.lightbox .close{
right:20px;
top:20px;
}
.lightbox .left{
left:20px;
top:50%;
}
.lightbox .right{
right:20px;
top:50%;
}
.lightbox .left:hover,
.lightbox .right:hover,
.lightbox .close:hover{
color:#fff;
cursor: pointer;
transition:color 0.2s ease;
}
.lightbox-container .col-md-3 {
padding-left: 7px;
padding-right: 7px;
}
.lightbox-container .box p {
text-align: center;
font-size: 14px;
margin: 0px;
line-height: 22px;
background: #f2f2f2;
border: 1px solid #ddd;
padding: 5px 15px;
margin-top: -1px;
margin-bottom: 15px;
color: #000;
}
.lightbox-container .box img {
max-width: 270px;
width: 100%;
height: auto;
max-height: 270px;
padding: 3px;
border: 1px solid #ddd;
}
/*------------gallery --------------*/
.categories {
width: 100%;
margin: auto;
margin-top: 25px;
}
.service {
list-style: none;
}
.service li .latest {
width: 100%;
max-width: 256px;
margin: auto;
height: auto;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-ms-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.service li .latest:hover{
width: 100%;
height:auto;
background-size:cover;
background-position:center;
-webkit-transform: rotate(0deg) scale(1.03);
-moz-transform: rotate(0deg) scale(1.03);
-ms-transform: rotate(0deg) scale(1.03);
-o-transform: rotate(0deg) scale(1.03);
transform: rotate(0deg) scale(1.03);
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-ms-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.service li:nth-child(2n+2) .latest{
box-shadow:7px 7px 0px 1px rgba(85,182,227, .3);
}
.service li:nth-child(3n+3) .latest{
box-shadow:7px 7px 0px 1px rgba(169,205,73, .3);
}
.service li:nth-child(4n+4) .latest{
box-shadow:7px 7px 0px 1px rgba(104,212,148, .3);
}
.service .latest {
width: 267px;
height: 323px;
background-color: #f9f9f9;
box-shadow: 7px 7px 0px 1px rgba(255,161,25, .3);
overflow: hidden;
}
.service .latest figure {
height: 256px;
overflow: hidden;
position: relative;
width: auto;
margin: auto;
text-align: center;
}
.service .latest figure img {
width: 100%;
height: auto;
max-width: 267px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: auto;
text-align: center;
}
.box {
width: 263px;
margin: 0px;
}
.latest .box .prise {
width: 214px;
position: relative;
display: block;
margin-top: -45px;
padding-left: 15px;
background: inherit;
border-bottom: 45px solid rgba(255,161,25, .5);
border-right: 47px solid rgba(255,255,255, .01);
}
.service li:nth-child(2n+2) .prise {
border-bottom: 45px solid rgba(85,182,227, .5);
}
.service li:nth-child(4n+4) .prise {
border-bottom: 45px solid rgba(104,212,148, .5);
}
.service li:nth-child(3n+3) .prise {
border-bottom: 45px solid rgba(169,205,73, .5);
}
.box .prise span {
margin-top: 6px;
position: absolute;
}
.prise span {
font-weight: bold;
}
.box .prise span big {
font-family: 'lato', sans-serif;
color: #FFF;
font-size: 24px;
margin-right: 10px;
font-weight: 400;
}
.box h3 {
margin-left: 15px;
font-size: 18px;
color: #333;
margin-top: 13px;
text-overflow: ellipsis;
width: 224px;
white-space: nowrap;
overflow: hidden;
font-weight: 400;
font-family: 'Roboto', sans-serif;
}
.box h3 a:hover, .box h5 a:hover {
color: #ffa119;
text-decoration: none;
}
.box h5 {
margin-left: 15px;
color: #8e8d8d;
font-size: 16px;
line-height: 10px;
}
.shadow {
width: 100%;
/* margin-top: 8px; */
}
.glry_back{
position: relative;
top: -48px;
left: 0px;
float: right;
font-size: 15px;
background: #dedede;
padding: 6px 13px;
border-radius: 3px;
color: #000;
}
.mr-right{
float: right !important;
}
.w_dsk{
width: 72%;
}
.goog-te-gadget-simple {
background-color: #fff !important;
/* border-left: 1px solid #d5d5d5; */
/* border-top: 1px solid #9b9b9b; */
/* border-bottom: 1px solid #e8e8e8; */
/* border-right: 1px solid #d5d5d5; */
font-size: 10pt !important;
display: inline-block !important;
padding: 3px !important;
/* padding-bottom: 3px; */
cursor: pointer;
zoom: 1;
border: 2px solid #dfdfdf !important;
border-radius: 5px !important;
}
.goog-te-gadget img{
display: none !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
text-decoration: none;
padding-right: 5px;
}
#wrapper .goog-te-menu2-item div, .goog-te-menu2-item:link div, .goog-te-menu2-item:visited div, .goog-te-menu2-item:active div {
color: #333 !important;
background: #f5f5f5 !important;
}
.la_cnvrt span{
color: #333 !important;
}
.rmv_img{
float:left;margin-left:38px;margin-top:2px;
}
.btn:focus, .btn.focus {
color: #fff !important;
text-decoration: none;
}
.boxselect ul li i{
color: #767676;
font-size: 12px;
margin-left: 3px;
}
.boxselect ul {
width: 70% !important;
}
/***********error************/
.error {
color: red !important;
font-weight: normal !important;
}
.fsd_red {
color: red !important;
font-weight: normal !important;
}
.fsd_green {
color: green !important;
font-weight: normal !important;
}
.splr_fld{
padding-right: 0px !important;
margin-left: 30px !important;
}
.pd_rt1{
padding-right: 0px !important;
}
.pd_lt1{
padding-left: 0px !important;
padding-right: 0px !important;
}
.abt_info{
text-align: center;
}
.abt_info h3{
color: #fc5f7e !important;
font-size: 27px !important;
font-family: 'Sniglet', cursive;
text-transform: uppercase;
margin-bottom: 4px;
}
.abt_info p{
width: 63%;
margin: auto;
text-align: center;
margin-top: 5px;
}
.abt_info hr{
margin-bottom: 1px dashed #9e6f71;
}
.abt_info span{
color: #9e6f71;
font-style: italic;
font-size: 18px;
font-family: 'Architects Daughter', cursive;
margin-bottom: 15px;
}
.abt_info img{
margin-top: 40px;
margin-bottom: 20px;
}
.info-bg{
background:#fff url("../images/divider-.jpg") repeat-x;
width: 100%;
border: 1px dashed #ddd;
height:1px;
margin: 37px 0;
}
.sup_fld textarea, .pd_rt1 textarea{
height: 108px !important;
}
.trader_bt_bg{
text-align: center;
background: #f4f4f4;
padding: 28px;
border: 4px solid #f0f0f0;
margin-bottom: 20px;
}
.trader_bt_bg h2{
margin-top: 0px;
font-family: 'Lato', sans-serif;
font-size: 18px;
}
|
public/css/mystyle-old.css
|
* {
margin: 0;
padding: 0;
outline: none !important;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
margin: 0px;
padding: 0px;
outline: none;
background: #f2f2f2 !important;
font-size: 14px;
overflow-x: hidden;
}
a {
color: inherit;
}
p {
text-align: justify;
font-size: 14px;
font-family: 'Roboto', sans-serif;
color: 4b4b4b;
line-height: 22px;
}
.cl {
margin: 0px;
padding: 0px;
clear: both;
}
#wrapper {
width: 100%;
margin: 0px;
}
#header {
width: 100%;
height: auto;
margin: auto;
}
#header .top{
background: #fff;
box-shadow: 0px 2px 5px 1px #E6E6E6;
-webkit-box-shadow: 0px 2px 5px 1px #E6E6E6;
-moz-box-shadow: 0px 2px 5px 1px #E6E6E6;
-o-box-shadow: 0px 2px 5px 1px #E6E6E6;
-ms-box-shadow: 0px 2px 5px 1px #E6E6E6;
z-index: 2;
position: relative;
width: 100%;
padding: 10px 0px;
}
.logo{
padding: 10px;
}
}
#header .top .logo{
padding: 20px 0px;
}
#header .bottom{
background: #fff;
width: 100%;
min-height: 47px;
border-bottom: 1px solid #e1e1e1;
position: relative;
top:0px;
}
#header .bottom .navbar-nav{
margin-top: -3px;
}
.social_outer{
margin: auto;
width: 100%;
text-align: center;
margin-top: 30px;
}
.social_outer:after{
border: 1px solid #E5E5E5;
position: absolute;e;
content: "";
top: 146px;
width: 100%;
right: 0%;
height: 1px;
z-index: 1;
}
.social{
text-align: center;
margin: auto;
width: 15%;
z-index: 2;
position: relative;
}
.social_outer p{
font-family: 'Lato', sans-serif;
font-size: 17px;
font-weight: 400;
color: #6b6b6b;
margin-right: 16px;
text-align: center;
margin-top: 7px;
}
.social a{
float: left;
margin-right: 5px;
}
.social a:last-child{
margin-right: 0px;
}
.social i{
padding: 7px 4px;
}
.social .face i{
padding: 6px 6px;
}
.social .face {
width: 35px;
height: 35px;
line-height: 32px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .face:hover {
background: #3f5c9a;
color: #fff;
border:2px solid #3f5c9a;
}
.social .twit {
width: 35px;
height: 35px;
line-height: 31px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .twit:hover {
background: #26a9e1;
color: #fff;
border:2px solid #26a9e1;
}
.social .link {
width: 35px;
height: 35px;
line-height: 28px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .link:hover {
background: #0776b2;
color: #fff;
border:2px solid #0776b2;
}
.social .gplus {
width: 35px;
height: 35px;
line-height: 33px;
border-radius: 50%;
color: #fff;
border: 2px solid #a6a6a6;
background: #a6a6a6;
font-size: 17px;
}
.social .gplus:hover {
background: #dc5d50;
color: #fff;
border:2px solid #dc5d50;
}
#wrapper #header .bottom .navbar-default .navbar-collapse, .navbar-default .navbar-form {
background: #fff !important;
}
#wrapper #header .bottom .navbar {
position: relative;
min-height: 40px;
margin-bottom: 0px;
border: 1px solid transparent;
}
.dropdown-menu > li.kopie > a {
padding-left:5px;
}
#wrapper #header .bottom .navbar-default{
background: none;
margin-bottom: 0px;
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;left:100%;
margin-top:-6px;margin-left:-1px !important;
-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;
}
.dropdown-submenu > a:after {
border-color:transparent transparent transparent #9D9D9D;
border-style: solid;
border-width: 4px 0 4px 4px;
content: " ";
display: block;
float: right;
height: 0;
margin-right: -10px;
margin-top:10px;
width: 0;
}
#wrapper #header .bottom .nav > li > a {
position: relative;
display: block;
padding: 10px 0px;
text-transform: uppercase;
font-family: 'Lato', sans-serif;
color: #404040;
font-size: 13px;
}
#wrapper #header .bottom .nav > li > a:before {
background-color: transparent;
content: "";
position: absolute;
left: 0;
bottom: 0;
display: block;
height: 2px;
-webkit-transition: .3s all;
-o-transition: .3s all;
transition: .3s all;
width: 0;
}
#wrapper #header .bottom .nav > li > a:hover:before {
background-color: #f79d00;
content: "";
width: 100%;
}
#wrapper #header .bottom .nav > li > a:first-child {
border-left: none;
}
#wrapper #header .bottom .nav > li > a:hover{
color: #f79d00;
}
/*#wrapper #header .bottom .nav > li:after{
border-right: 1px solid #636363;
content: "";
position: absolute;
height: 13px;
top: 14px;
left: 0px;
}*/
#wrapper #header .bottom .divider{
margin-top: 9px;
padding: 0 12px;
color: #8E8E8E;
}
#wrapper #header .bottom .divider:last-child{
display: none;
}
.dropdown-submenu:hover>a:after {
border-left-color:#555;
}
.dropdown-menu > li > a:hover, .dropdown-menu > .active > a:hover {
text-decoration: underline;
}
@media (max-width: 767px) {
.navbar-nav {
display: inline;
}
.navbar-default .navbar-brand {
display: inline;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-nav .dropdown-menu > li > a {
color: red;
background-color: #ccc;
border-radius: 4px;
margin-top: 2px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #333;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
background-color: #ccc;
}
.navbar-nav .open .dropdown-menu {
border-bottom: 1px solid white;
border-radius: 0;
}
.dropdown-menu {
padding-left: 10px;
}
.dropdown-menu .dropdown-menu {
padding-left: 20px;
}
.dropdown-menu .dropdown-menu .dropdown-menu {
padding-left: 30px;
}
li.dropdown.open {
border: 0px solid red;
}
}
#header .bottom .dropdown-menu{
background-color: #525252;
}
#header .bottom .dropdown-menu > li > a{
color: #FFF;
font-size: 13px;
line-height: 26px;
}
#header .bottom .dropdown-menu > li{
border-bottom: 1px solid #5D5D5D;
}
#header .bottom .dropdown-menu > li:last-child{
border-bottom: none;
}
#header .bottom .dropdown-menu > li > a:hover, #header .bottom .dropdown-menu > li > a:focus {
color: #262626 !important;
text-decoration: none;
background-color: #f5f5f5;
}
@media (min-width: 768px) {
ul.nav li:hover > ul.dropdown-menu {
display: block;
border-radius: 0px;
margin-left: 0px;
}
#navbar {
text-align: center;
margin-top: 7px;
}
.navbar-nav > li > a {
padding-top: 12px;
padding-bottom: 12px;
}
}
.header_right {
padding: 2px;
margin-top: 22px;
}
.header_right .call{
padding-bottom: 5px;
}
.header_right .gry{
color: #818181 !important;
border-color:#818181 !important;
}
.header_right .call i{
width: 24px;
height: 24px;
background: #fff;
border: 1px solid #f79d00;
border-radius: 50%;
padding: 4px 5px;
color: #f79d00;
font-size: 15px;
margin-right: 4px;
text-align: center;
}
.header_right ul {
list-style-type: none;
float: right;
}
.header_right ul li{
float: left;
margin-right: 9px;
border-right: 1px solid #ddd;
padding-right: 20px;
margin-left: 9px;
}
.header_right ul li:last-child{
border-right:none;
margin-right: 0px;
padding-right: 0px;
margin-top: 5px;
}
.eng_div{
background: #fff;
border-radius: 4px;
padding: 5px 9px;
/* border: 1px solid #ddd !important;*/
}
.eng_div i{
background: none !important;
color: inherit;
border: none !important;
padding: 0px;
text-align: left;
}
.eng_div img{
margin-right: 4px;
margin-top: -1px;
}
#wrapper .cntnr_iner{
margin-top: 128px;
}
.inner_banner{
background:#fff url("../images/about-banner.jpg") no-repeat center center;
width: 100%;
height: auto;
min-height: 282px;
}
.inner_banner_cnt{
background:#fff url("../images/contact-banner.jpg") no-repeat center center;
width: 100%;
height: auto;
min-height: 282px;
}
.about_txt{
text-align: center;
margin: auto;
padding-top: 86px;
}
.about_txt h2 {
color: #fff;
font-size: 33px;
font-weight: 400;
}
.about_txt small {
color: #fff;
font-size: 14px;
}
.about_txt >small > span{
color: #f79d00;
}
.content_area .about_cntnt{
background: #fff;
padding:25px;
margin-top: 40px;
padding-bottom: 35px;
padding-top: 25px;
}
.content_area .map{
width: 100%;
padding: 5px 0;
border: 1px solid #ddd;
}
.adres i{
text-align: center;
color: #828282;
margin-right: 5px;
width: 20px;
margin-top: 5px;
}
.content_litxt ul {
margin: 0px;
padding: 0px;
list-style-type: none;
}
.content_litxt ul li {
color: #444;
font-family: 'Roboto', sans-serif;
font-size: 14px;
background: url("../images/tick.png") no-repeat 3px 3px;
padding: 0px 20px 0 27px;
display: flex;
line-height: 20px;
font-weight: 400;
text-align: justify;
margin-bottom: 12px;
}
#wrapper .about_cntnt > h1 {
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
border-bottom: 1px solid #b5b5b5;
padding-bottom: 7px;
margin: 0px !important;
position: relative;
}
#wrapper .about_cntnt h1:after {
content: '';
display: inline-block;
width: 58px;
height: 2px;
position: absolute;
bottom: -1px;
left: 0px;
background: #f79d00;
}
#wrapper .about_cntnt > h2 {
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
padding-bottom: 30px;
margin: 0px !important;
position: relative;
text-align: center;
}
#wrapper .about_cntnt .s_btn{
background: #ff761a;
border: none;
padding: 9px 22px;
font-size: 15px;
}
.banner{
border: 6px solid #E7E7E7;
}
.sign_discnt{
background:#fff url("../images/sign-bg.jpg") no-repeat right bottom;
left: 10%;
padding: 59px 40px;
text-align: center;
border: 6px solid #E7E7E7;
}
.sign_discnt h2{
color: #000;
font-size: 29px;
font-family: 'Abel', sans-serif;
text-shadow: 0px 1px #fff;
margin: 0px;
}
.sign_discnt h3{
color: #f42f2f;
font-size: 60px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
margin-top:29px;
line-height: 25px;
}
.sign_discnt h3 span{
font-weight: 500px;
color: #000;
letter-spacing: 3px;
font-size: 18px;
margin: 0px;
line-height: 44px;
margin-left: 2px;
}
.sign_discnt p{
font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #353535;
text-align: center;
text-shadow: 0px 1px #fff;
font-weight: 300px;
margin-top: 26px;
}
.header_right .log_btn {
background: #FFFFFF;
padding: 7px 12px;
border-radius: 4px;
margin-top: 35px;
color: #717171;
margin-right: 2px;
border: 1px solid #AFAFAF;
font-size: 13px;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .log_btn i {
font-size: 14px;
margin-right: 2px;
}
.header_right .log_btn:hover {
background: #f68f11;
color: #fff;
border: 1px solid #f68f11;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .sig_btn {
background: #f68f11;
padding: 7px 12px;
border-radius: 4px;
margin-top: 35px;
color: #fff;
border: 1px solid #f68f11;
font-size: 13px;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.header_right .sig_btn:hover {
background: #8e8e8e;
color: #fff;
border: 1px solid #8e8e8e;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}
.sign_discnt .sign_btn{
background: #f79d00;
padding: 7px 25px;
border-radius: 4px;
margin-top: 35px;
color: #fff;
font-size: 20px;
font-family: 'Abel', sans-serif;
text-transform: uppercase;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
}
.sign_discnt .sign_btn:hover{
background: #000;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
}
.content_area h1{
color: #000;
font-size: 28px;
font-family: 'Abel', sans-serif;
border-bottom:1px solid #b5b5b5;
padding-bottom: 7px;
margin-top: 0px;
position: relative;
}
.content_area h1:after{
content: '';
display: inline-block;
width: 58px;
height: 2px;
position: absolute;
bottom: -1px;
left: 0px;
background: #f79d00;
}
.content_area p{
color: #4c4c4c;
font-size: 15px;
font-weight: 300px;
line-height: 24px;
text-align: justify;
}
.pro_hover{
}
.mt{
margin-top: 27px !important;
}
.mt_lg{
margin-top: 30px !important;
}
.pro_img_hvr{
width: 100%;
height: auto;
overflow: hidden;
position: relative;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.imgbx1{
width: 100%;
max-height: 295px;
overflow: hidden;
position: relative;
}
.imgbx2{
width: 100%;
max-height: 372px;
overflow: hidden;
position: relative;
}
.imgbx3{
width: 100%;
max-height: 372px;
overflow: hidden;
position: relative;
}
.imgbx4{
width: 100%;
max-height: 184px;
overflow: hidden;
position: relative;
}
.imgbx5{
width: 100%;
max-height: 395px;
overflow: hidden;
position: relative;
}
.pro_hover .pro_img_hvr img{
transition:all 0.3s ease-in-out;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
width: 100%;
max-height: 397px;
}
.pro_hover:hover .pro_img_hvr img{
transform:scale(1.1);
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.pro_hover .pro_img_hvr:after {
content: "";
background: -moz-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, transparent), color-stop(60%, transparent), color-stop(97%, rgba(0,0,0,0.65)));
/* background: -webkit-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%); */
background: -o-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
background: -ms-linear-gradient(top, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%);
/* background: linear-gradient(to bottom, transparent 1%, transparent 60%, rgba(0,0,0,0.65) 97%); */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
}
.pro_name{
position: absolute;
bottom: -7px;
left: 10px;
z-index:99;
}
.pro_name h3{
color: #fff;
font-size: 24px;
font-family: 'Abel', sans-serif;
text-align: left;
text-overflow: ellipsis;
margin: 0px;
}
.pro_name p{
font-family: 'Roboto', sans-serif;
font-size: 13px;
color: #fff;
text-align: left;
text-overflow: ellipsis;
}
.footer{
width: 100%;
background:#fff;
text-align: center;
padding-top: 50px;
}
.mbm{
margin-bottom: 30px;
}
.fotr_link li{
padding-left: 3px !important;
}
.fotr_link li a{
color: #6b6b6b;
font-size: 15px;
}
.fotr_link li a:hover{
color: #000;
font-size: 15px;
text-decoration: underline;
}
.footer .copyright{
background: #f2f2f2;
margin-top: 60px;
}
.footer .copyright p{
font-family: 'Roboto', sans-serif;
color: #616161;
/* font-weight: 300; */
text-align: left;
padding: 13px 0px 2px 0;
font-size: 13.5px;
}
.footer .copyright p span, .footer .copyright p i{
color: #f79d00;
font-weight: 400;
}
.copyright .gotop {
position: absolute;
top: -32px;
right: -46px;
}
/*--------popup------*/
.popupbox .modal{
background: rgba(0,0,0,.7);
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
}
.popupbox .p_wdth{
width: 50%;
}
.popupbox .modal-dialog{
margin-top: 73px;
}
.popupbox .modal-content{
border: none !important;
/*box-shadow: none !important;*/
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
padding-bottom: 20px;
}
.popupbox .modal-header {
background-color: #f79d00;
padding: 6px 15px;
border-bottom: solid 1px #ddd;
}
.popupbox .modal-header .modal-title {
font-size: 23px;
font-family: 'Roboto', sans-serif;
color: #fff;
font-weight: 300;
}
.popupbox .modal-body {
background-color:#fff;
}
.popupbox .close {
font-weight: 400;
font-size: 35px;
opacity: 1;
position: absolute;
right: -10px;
top: -55px;
background: #000;
color: #fff;
text-shadow: none;
font-size: 25px;
border-radius: 50%;
padding: 0px 6px;
border: 2px solid #fff;
}
#wrapper .popupbox .cls {
right: -27px;
top: -70px;
}
.popupbox .close span {
position: relative;
left: 1px;
top: -1px;
}
.popupbox .close:hover, .close:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
filter: alpha(opacity=50);
opacity: 1;
}
.popupbox .modal-body h4 {
color: #5C5C5C;
margin-top: 7px;
position: absolute;
font-size: 13px;
text-transform: inherit;
margin-left: 17px;
}
.popupbox h2, .popupbox h3, .popupbox h4 {
text-transform: uppercase;
margin: 0px;
}
.popupbox .modal-body input[type="number"], .popupbox .modal-body input[type="text"], .popupbox .modal-body input[type="email"], .popupbox .modal-body input[type="password"] {
box-shadow: none;
border-radius: 0px;
background-color:#efefef;
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.05);
color: #1f1f1f;
}
.popupbox .modal-body input:focus, .popupbox .modal-body input:hover {
border-bottom: solid 1px #ff8c26;
border-radius: 0px;
}
#wrapper .popupbox input[type="email"] {
background-color:#f5f5f5 !important;
background-image: none;
color: rgb(0, 0, 0);
}
.popupbox .modal-body .radio, .popupbox .modal-body .checkbox {
margin: 0px;
}
.popupbox .modal-body label {
font-weight: 400;
color: #666;
font-size: 13px !important;
}
.popupbox .modal-body a {
color: #333;
text-decoration: underline;
}
.popupbox .modal-body a:hover {
color: #f79d00;
}
.popupbox .btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
font-size: 14px;
}
.popupbox .btn-warning:hover {
color: #fff;
background-color: #000;
border: none;
-webkit-transition: .4s;
-moz-transition: .4s;
transition: .4s;
font-size: 14px;
}
.popupbox .btn-warning {
color: #fff;
/* background-color: #f79d00; */
border-color: #fff;
margin: auto;
}
.popupbox .modal-body h6 {
font-size: 13px;
padding-left: 130px;
text-align: left;
}
/*-----------filter---------*/
#wrapper .tit_sec {
width: auto;
position: relative;
z-index: 3;
border-radius: 0px;
margin: 0px;
padding: 5px 0px;
margin-top: 84px;
}
.tit_sec ul{
margin-bottom: 0px !important;
margin-left: -19px;
}
#wrapper .cheklist {
margin: 5px 0px 5px;
}
.cheklist li {
font-size: 13px;
color: #8f8f8f;
padding: 0px 1px;
font-weight: 400;
padding: 0 2px !important;
}
.cheklist li i {
font-size: 10px;
}
.cheklist li a {
color: #444;
font-size: 13px;
}
.filterpanel {
width: 100%;
margin: 0px;
padding-top: 29px;
}
.leftfilter .panel {
width: 100%;
float: left;
box-shadow: inherit;
border: 1px solid #fdb300;
}
.leftfilter .panel-heading {
width: 100%;
float: left;
text-align: left;
padding: 10px 15px;
font-size: 16px;
color: #4c4c4c;
font-family: 'Lato', sans-serif;
border-bottom: solid 1px #ddd;
font-weight: 400;
}
.leftfilter .panel-heading .fa {
text-align: right;
float: right;
margin-top: 4px;
color: #8bc34a;
}
.leftfilter .panel-body {
padding: 5px 15px;
}
.leftfilter .scrol {
max-height: 250px;
overflow-y: auto;
}
.leftfilter .listli .checkbox {
margin: 0px;
}
.filterpanel .radio label, .filterpanel .checkbox label {
padding-left: 0px;
color: #666;
font-size: 12.6px;
}
.leftfilter .listli label {
width: 100%;
padding: 8px 0px 8px;
border-bottom: dashed 1px #ddd;
transition: all 0.4s;
}
.checkbox label input[type="checkbox"], .radio label input[type="radio"] {
display: none;
}
.leftfilter .listli label .cr {
font-size: 11px;
border-radius: 0px;
margin-top: 3px;
border: solid 1px #ddd;
}
.checkbox .cr, .radio .cr {
position: relative;
display: inline-block;
border: 1px solid #ddd;
border-radius: 0px;
width: 1.3em;
height: 1.3em;
float: left;
margin-right: .5em;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon, .radio label input[type="radio"] + .cr > .cr-icon {
transform: scale(3) rotateZ(-20deg);
opacity: 0;
transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .radio label input[type="radio"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .radio label input[type="radio"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
color: #000;
}
.checkbox .cr .cr-icon, .radio .cr .cr-icon {
position: absolute;
font-size: .8em;
line-height: 0;
top: 50%;
left: 20%;
}
.leftfilter .listli label .tg {
font-size: 13px;
color: #666;
margin-left: 5px;
transition: all 0.4s;
}
.leftfilter .listli label .rt {
float: right;
color: #ccc;
font-size: 10px;
margin-top: 6px;
}
.leftfilter .listli .checkbox {
margin: 0px;
}
.rangeslider {
position: relative;
margin: 30px 0px 15px;
z-index: 1;
padding: 0 10px;
}
.rangeslider .lep {
top: -20px;
position: absolute;
font-weight: 500;
color: #333;
}
.rangeslider .rip {
top: -20px;
right: 0;
position: absolute;
font-weight: 500;
color: #333;
}
.curncy_img img{
float: left;
background: #fff;
border: 1px solid #ddd;
border-radius: 3px;
padding: 6px;
margin-left: 6px;
}
.curncy_img img:hover{
background: #ededed;
border: 1px solid #f79d00;
}
.curncy_img .active{
background: #ededed;
border: 1px solid #f79d00;
}
#back-top {
position: fixed;
bottom: 20px;
right: 11px;
z-index: 999999;
}
#back-top a {
width: 45px;
display: block;
text-align: center;
font: 11px/100% Arial, Helvetica, sans-serif;
text-transform: uppercase;
text-decoration: none;
color: #bbb;
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;
}
#back-top span {
width: 35px;
height: 35px;
display: block;
margin-bottom: 7px;
padding: 8px 0;
border: solid 1px rgba(255,185,30, 0.3);
background: #042546;
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;
}
#back-top span i {
font-size: 15px;
color: #fff;
}
#wrapper .prodboxlist {
width: 100%;
height: auto;
position: relative;
}
.rightfilter {
padding: 15px 2px 15px;
background-color: #FFF;
height: auto;
margin: 0px;
position: relative;
}
.rightfilter .tith {
margin-top: -38px;
position: absolute;
color: #333;
text-transform: uppercase;
font-family: 'Open Sans',sans-serif;
font-weight: 700;
font-size: 17px;
}
.boxselect {
width: 96.6%;
float: left;
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: solid 1px #eee;
/* padding: 0 16px; */
margin-left: 14px;
}
.boxselect .selp {
width: auto;
margin: 0px;
padding: 0px;
float: left;
}
.boxselect .selp li:nth-child(1) {
color: #888;
}
.boxselect .selp li {
font-size: 13px;
margin: 5px 0px 7px;
}
.boxselect .form-inline label {
font-weight: 400;
color: #888;
font-size: 13px;
}
.boxselect .selp li a {
background-color: #f6f6f6;
border-radius: 20px;
padding: 4px 10px;
font-size: 12px;
}
.boxselect .form-inline .form-control {
height: 28px;
padding: 0px 8px;
border: solid 1px #eee;
box-shadow: inherit;
font-size: 13px;
}
#wrapper .prodboxlist .col {
padding: 0px 5px;
}
#wrapper .prodboxlist .prodbox {
box-shadow: inherit;
border: solid 1px #f9f9f9;
transition: all 0.4s;
border-radius: 0px;
}
#wrapper .prodboxlist .prodbox .panel-body {
padding: 0px 3px;
}
.pro_imgs .imgbox {
width: 100%;
height: 210px;
display: table;
vertical-align: middle;
text-align: center;
overflow: hidden;
position: relative;
}
.pro_imgs .imgbox img {
width: auto;
height: auto;
max-width: 100%;
max-height: 200px;
margin: auto;
display: table-cell;
vertical-align: middle;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
padding-top: 5px;
}
.pro_bdr .panel{
border: 1px solid #d0d0d0 !important;
padding-bottom: 5px;
}
.pro_bdr .prodbox .panel-footer{
min-height: 245px;
}
.pro_bdr .prodbox .panel-footer .table{
margin-bottom: 12px;
}
#demo1 .cr{ font-size: 11px !important;
/* border-radius: 0px; */
margin-top: 3px !important;
/* border: solid 1px #ddd; */
margin-left: -14px !important;
}
.pro_bdr .prodbox .panel-footer p{
font-size: 13.5px;
line-height: 21px;
color: #333;
margin: 0px;
text-align: left;
}
.pro_bdr .prodbox .panel-footer b{
font-weight: 500;
color: #111;
font-size: 13.5px;
line-height: 21px;
}
.pro_bdr .prodbox .panel-footer strong{
font-weight: 500;
color: #ee8506;
font-size: 16px;
line-height: 18px;
}
.pro_bdr .prodbox .panel-footer .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
padding: 3px 8px !important;
}
.pro_bdr .panel:hover{
border: 1px solid #fdb300 !important;
box-shadow: 0px 0px 10px 1px rgba(207, 47, 46, 0.2) !important;
}
.prodbox .panel-footer {
margin: 0px;
position: relative;
background-color: #FFF;
border-top: solid 1px #eee;
padding: 0px;
padding-top: 10px;
margin-top: 5px;
}
.prodbox .panel-footer .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
border: none !important;
font-size: 14px;
line-height: 8px !important;
}
.prodbox .panel-footer .list-unstyled {
margin-bottom: 0px;
}
.prodbox .panel-footer li {
margin-bottom: 15px;
}
.leftfilter .panel-body .liststyle small {
font-size: 10px;
color: #888;
margin-top: 2px;
font-weight: 300;
}
.leftfilter .panel-body .clickplus i {
border: solid 1px #eee;
padding: 2px 5px;
color: #ccc;
margin-left: 8px;
}
.leftfilter .panel-body .colrs span{
float: left;
width: 20px;
height: 20px;
background: #000;
margin-right: 4px;
margin-top: 3px;
}
.leftfilter .panel-body .colrs{
margin-bottom:16px;
}
.leftfilter .panel-default .panel-body .checkbox .cr, .leftfilter .panel-default .panel-body .radio .cr {
border: solid 1px #ddd;
}
.zoomproduct .imgbox{
width: 555px;
height: 400px;
background-color: #f6f6f6;
overflow: hidden;
position: relative;
border: solid 1px #ddd;
vertical-align: middle;
display: table-cell;
text-align: center;
}
.zoomproduct .imgbox img{
width: auto !important;
height: auto !important;
max-width: 555px;
max-height: 400px;
margin: auto;
text-align: center;
vertical-align: center;
display: table-cell;
position: relative !important;
}
.zoomproduct .zoomWrapper{
width: 555px !important;
height: 400px !important;
display: table-cell;
vertical-align: middle;
}
.zoomproduct #gallery_01{
margin-top: 8px;
}
.zoomproduct #gallery_01 img{
width: 100px;
height: 67px;
border: solid 4px #eee;
overflow: hidden;
}
.zoomproduct #gallery_01 img:hover{
border:solid 4px #f6bb42;
overflow: hidden;
}
.zoomWindow{
width: 510px !important;
height: 500px !important;
margin-left: 77px;
}
.buynow_section {
width: 100%;
margin: 0px;
padding-left: 10px;
}
.buynow_section h4 {
font-family: 'Lato', sans-serif;
font-size: 23px;
font-weight: 300;
color: #333;
margin-bottom: 12px;
line-height: 27px;
}
.buynow_section .priceview {
width: 100%;
margin: 0px;
padding: 9px 0;
/* border-top: solid 1px #ddd;*/
}
.buynow_section .priceview middle {
font-size: 16px;
color: #666;
width: 100%;
clear: both;
width: 100%;
float: left;
margin-bottom: 5px;
}
.buynow_section .priceview middle strike {
margin-left: 0px;
}
.buynow_section .priceview middle span {
color: #ff761a;
margin-left: 10px;
font-size: 19px;
}
.buynow_section .priceview big {
font-size: 18px;
}
.buynow_section .priceview big span {
font-size: 24px;
color: #000;
margin-left: 5px;
}
.buynow_section .saving {
width: 100%;
height: auto;
clear: both;
padding: 5px 5px;
border-top: solid 1px #eee;
border-bottom: solid 1px #eee;
}
.buynow_section .saving span {
font-size: 13px;
font-weight: 600;
color: #333;
}
.buynow_section .saving small {
color: #666;
}
.buynow_section .pincode {
margin: 5px 0px;
}
.buynow_section .pincode small {
margin: 5px 0px;
float: left;
width: 100%;
font-size: 13px;
color: #727272;
}
.input-group[class*="col-"] {
float: none;
padding-right: 0;
padding-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.buynow_section .pincode input {
position: relative;
z-index: 0;
}
#wrapper .btn {
border-radius: 0px;
}
.buynow_section .buyb {
width: 100%;
float: left;
padding: 7px 0px;
margin: 14px 0px 10px;
border-top: solid 1px #eee;
border-bottom: solid 1px #eee;
}
.buynow_section .buyb ul {
margin-bottom: 0px;
}
.buynow_section .buyb ul li {
margin-right: 15px;
}
.buynow_section .buyb ul li a {
float: left;
}
.buynow_section .buyb select {
width: 60px;
padding: 5px 8px;
}
.buynow_section input, .buynow_section select {
border-radius: 0px;
border: 1px solid #c9c9c9;
}
.buynow_section .buyb span {
font-size: 15px;
color: #666;
}
.buynow_section .buyb big {
font-size: 17px;
color: #f00;
}
.buyb_btn {
background-color: #fd7222;
color: #FFF;
border-radius: 0px;
text-transform: uppercase;
font-weight: 400;
font-size: 15px;
padding: 8px 20px;
margin-top: 2px;
margin-left: 15px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
border: none;
}
.buyb_btn:hover {
background: #000 !important;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.buynow_section .detailtab {
width: 100%;
margin: 0px 0px;
border: 1px solid #ddd;
}
.buynow_section .detailtab .nav-pills > li.active > a, .buynow_section .detailtab .nav-pills > li.active > a:hover, .buynow_section .detailtab .nav-pills > li.active > a:focus {
background-color: #eeeeee;
color: #333;
border-bottom: solid 2px #ff761a;
}
.buynow_section .detailtab .nav > li > a {
padding: 9px 35px;
border-radius: 0px;
color: #888;
-webkit-transition: 0.5s ease-in-out;
-moz-transition: 0.5s ease-in-out;
-ms-transition: 0.5s ease-in-out;
-o-transition: 0.5s ease-in-out;
transition: 0.5s ease-in-out;
border-bottom: 2px solid #fff;
}
.buynow_section .detailtab .nav > li {
border-right:1px solid #ddd;
border-bottom: 0px;
}
.buynow_section .detailtab .nav > li:last-child {
border-right:none;
}
.buynow_section .detailtab .tab-content {
border: solid 1px #eee;
padding: 10px 15px;
height: 226px;
overflow: auto;
}
.buynow_section .detailtab .tab-content ul {
margin-bottom: 0px;
margin-left: 10px;
}
.buynow_section .detailtab .tab-content ul li {
border-bottom: solid 1px #f6f6f6;
font-size: 14px;
line-height: normal;
padding: 3px 0px;
margin-bottom: 0px;
line-height: 22px;
text-align: justify;
}
.buynow_section .detailtab .tab-content ul li p {
margin-left: -8px;
}
.buynow_section .detailtab .tab-content ul li strong {
font-weight: 600;
}
.buynow_section .starbox {
width: 100%;
height: auto;
/* border-top: solid 1px #eee;
border-bottom: solid 1px #eee;*/
}
.buynow_section .starbox .col-sm-4, .buynow_section .starbox .col-sm-8 {
padding: 0px 0px;
}
.buynow_section .starbox .list-inline {
margin-bottom: 0px;
color: #555;
font-weight: 400;
font-size: 13px;
}
.buynow_section .starbox .list-inline li {
display: inline-block;
}
.star {
float: left;
margin-right: 6px;
}
.star .fa-star {
font-size: 12px;
color: #eed44b;
text-align: left;
}
.star .fa-star-o {
font-size: 12px;
color: #999;
text-align: left;
}
.buynow_section .starbox .wilist {
margin: 0px;
}
.buynow_section .starbox .list-inline li {
display: inline-block;
}
.detail_inr_di{
background: #fff;
padding: 15px;
margin-top: 10px;
}
.categopanel {
margin: 0px;
}
.categopanel .bcatpa {
display: block;
position: relative;
margin-bottom: 10px;
box-shadow: inherit;
height: 200px;
}
.categopanel .panel-heading {
width: 100%;
float: left;
font-size: 15px;
color: #000;
font-weight: 500;
padding: 10px 0px;
text-transform: uppercase;
}
.sp_cat{
margin-bottom: 40px;
}
.sp_cat .imgbox img{
border: 1px solid #ddd;
padding: 3px;
width: 100%;
height: auto;
max-height: 178px;
}
.sp_cat .imgbox{
max-width: 247px;
height: auto;
overflow: hidden;
}
.sp_cat h2 {
font-size: 15px;
color: #000;
font-weight: 400;
font-family: 'Roboto', sans-serif;
text-align: center;
margin: 0px;
padding: 10px 0;
/* background: #EFEFEF; */
margin-top: 2px;
border: 1px solid #E9E9E9;
line-height: 20px;
}
.sp_cat h2 a:hover {
color: #f79d00;
}
.bw {
-webkit-transition: all 2s ease;
-moz-transition: all 2s ease;
-o-transition: all 2s ease;
-ms-transition: all 2s ease;
transition: all 2s ease;
}
.bw:hover {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.categopanel .panel-heading a {
width: 100%;
float: left;
}
.categopanel .panel-heading a .fa {
margin-top: 2px;
margin-left: 4px;
}
.categopanel .bcatpa .panel-body {
padding: 5px 0px;
}
.categopanel .bcatpa .imgbox {
width: 106px;
height: auto;
overflow: hidden;
}
.categopanel .bcatpa .imgbox img {
width: 100%;
height: auto;
border: 1px solid #ddd;
padding: 3px;
max-height: 91px;
}
.categopanel .bcatpa .col-xs-6 {
padding: 0px;
}
.categopanel .bcatpa .list-unstyled li {
padding: 3px 0px;
background: url("../images/cat-arow.png") no-repeat 0px 8px;
display: flex;
}
.categopanel .bcatpa .list-unstyled li a {
font-size: 12px;
color: #000;
font-weight: 400;
padding: 0 15px;
}
.categopanel .bcatpa .list-unstyled li a:hover {
color: #f79d00;
}
.related_pro_di{
margin-top: 55px;
}
.related_pro_di h2, .reviewpanel h2{
font-family: 'Lato', sans-serif;
font-size: 21px;
font-weight: 400;
color: #333333;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 25px;
text-align: left;
}
.addcartpage {
width: 100%;
height: auto;
margin: auto;
border-radius: 0px;
margin-top: 20px;
}
.addcartpage .btnn{
background: #ff5837;
border-radius: 3px !important;
border: none;
padding: 3px 10px;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.addcartpage .well{
box-shadow: none !important;
}
.addcartpage .btnn:hover{
background: #808080;
border-radius: 3px !important;
border: none;
padding: 3px 10px;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.addcartpage .cartit{
border-radius: 0px;
background-color: #f2f2f2;
padding: 0px 10px;
text-align: center;
margin-bottom: 0px;
text-transform: uppercase;
}
.addcartpage .cartit h4{
font-size: 14px;
color: #666;
font-family: 'Lato', sans-serif;
font-weight: 400;
}
.addcartpage .cartit div:nth-child(n){
border-right:solid 1px #ddd;
}
.addcartpage .cartit div:nth-last-child(2){
border-right: none;
}
.addcartpage .cartbox{
border-radius: 0px;
background-color: #fff;
padding: 0 10px;
text-align: center;
margin-bottom: 0px;
box-shadow:inherit;
}
.addcartpage .cartbox li{
min-height: 120px;
}
.addcartpage .cartbox li:nth-child(n){
border-right:solid 1px #ddd;
padding: 10px 10px;
}
.addcartpage .cartbox li:nth-last-child(2){
border-right: none;
}
.addcartpage .cartbox li:nth-child(2),
.addcartpage .cartbox li:nth-child(3),
.addcartpage .cartbox li:nth-child(4),
.addcartpage .cartbox li:nth-child(5){
padding-top: 35px;
}
.addcartpage .cartbox .imgbox{
width: 159px;
height: 100px;
overflow: hidden;
float: left;
}
.addcartpage .cartbox .imgbox img{
width: auto;
max-width: 158px;
height: 100%;
border: solid 1px #eee;
padding: 3px;
}
.addcartpage .cartbox .textt{
color: #666;
font-size: 13px;
padding: 10px 5px;
text-align: left;
}
.addcartpage .cartbox h4{
font-size: 16px;
margin: 0px;
}
.totalbox{
float: right;
min-width: 250px;
width: 100%;
}
.total_otr{
color: #666;
border: solid 1px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 10;
background-color: #fff;
margin-top: 19px;
min-height: 160px !important;
}
.totalbox .panel-body{
padding: 5px;
}
.totalbox .grd_total{
border-top: 1px solid #ddd;
margin-top: 11px;
background: #f5f5f5;
padding: 10px 3px;
bottom: 4px;
width: 97%;
position: absolute;
}
.totalbox h3{
font-weight: 400;
font-family: 'Roboto';
font-size: 15px;
color: #666;
margin: 0;
padding: 5px 10px;
}
.totalbox h3 small{
font-size: 13px;
}
.totalbox h3:nth-last-child(1){
border-bottom: none;
}
.totalbox h3 strong{
float: right;
font-size: 15px;
color: #000;
font-weight: 400;
margin-left: 10px;
}
.grd_total h3{
font-weight: 400;
font-family: 'Roboto';
font-size: 15px;
color: #666;
margin: 0;
padding: 5px 10px;
}
.grd_total h3 small{
font-size: 13px;
}
.grd_total h3:nth-last-child(1){
border-bottom: none;
}
.grd_total h3 strong{
float: right;
font-size: 15px;
color: #000;
font-weight: 400;
margin-left: 10px;
}
.finl_prc{
font-size: 18px !important;
color: #333;
}
.totalbox .panel{
margin-bottom: 0px;
}
.checkout-panel{
width: 100%;
margin: auto;
}
.checkout-panel .panel{
border-radius: 0px;
}
.checkout-panel .panel h3{
border-bottom: solid 1px #ddd;
padding-bottom: 10px;
}
.checkout-panel .panel .r-check {
margin-top: 20px;
}
.checkout-panel .panel .r-check label{
padding-left: 5px;
font-size: 14px !important;
}
.checkout-panel .panel .r-check li{
color: #666;
margin-top: 10px;
font-size: 13px;
}
.checkout-panel .panel label{
font-size: 14px;
font-weight: 400;
color: #666;
}
.checkout-panel .panel .red{
color: #ff0000;
margin-right: 5px;
font-weight: 600;
}
.checkout-panel .panel input,
.checkout-panel .panel select{
border-radius: 0px;
}
.pro_detail_adbtn{
margin-left: 17px;
margin-top: -12px;
}
.pro_detail_adbtn .spinner {
width: 60px;
margin-right: 4px;
float: left;
}
.pro_detail_adbtn .input-group-btn-vertical {
position: relative;
white-space: nowrap;
width: 1%;
vertical-align: middle;
display: table-cell;
}
.pro_detail_adbtn .input-group-btn-vertical > .btn:first-child {
}
.pro_detail_adbtn .input-group-btn-vertical > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
padding: 10px;
margin-left: -1px;
position: relative;
border-radius: 0;
}
.pro_detail_adbtn .input-group-btn-vertical > .btn:last-child {
margin-top: -2px;
}
.pro_detail_adbtn .input-group-btn-vertical i {
position: absolute;
top: 0;
}
.pro_detail_adbtn i {
display: inline-block;
position: absolute;
right: 1px;
box-sizing: border-box;
width: 20px;
height: 18px;
color: #666;
font-size: 6px;
line-height: 22px;
text-align: center;
cursor: pointer;
}
.cart-block-wrapper {
margin-bottom: 1.5em;
}
.block:not(.block-banner) {
margin-bottom: 1.5em;
color: #666;
border: solid 1px rgba(0, 0, 0, 0.1);
padding: 0 24px 24px;
position: relative;
z-index: 10;
background-color: #fff;
padding-bottom: 62px;
}
.cart .sidebar .cart-block:last-child {
margin-bottom: 0;
}
.block:last-of-type {
margin-bottom: 0;
}
.block-title {
margin: 0 -24px .86em;
font-family: 'Lato', sans-serif;
color: #333;
font-weight: normal;
padding: 16px 24px;
font-size: 20px;
position: relative;
letter-spacing: -1px;
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.block-title strong {
font-weight: inherit;
}
.cart-block input.form-control, .cart-block textarea.form-control, .cart-block select.form-control {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 3px;
background-color: rgba(0,0,0,.06);
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.02);
min-height: 37px;
}
.cart-block label {
font-size: 1em;
color: #222;
font-weight: normal;
float: none;
}
.cart-block{
padding-bottom: 30px !important;
}
#discount-coupon-form{
margin-top: 0px;
}
.cart-blockinput.form-control, .cart-block textarea.form-control, .cart-block select.form-control {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 3px;
background-color: rgba(0,0,0,.06);
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.02);
}.
.cart-block .buttons-set {
margin-top: 1.5em;
padding: 0;
border: none;
text-align: left;
}
form .buttons-set {
margin-top: 0;
float: right;
padding-bottom: 0;
}
.block-title:after, .catalog-category-view .block-layered-nav.horizontal, .products-grid .product-buttons-wrapper .btn-quickview, .products-grid .product-buttons-wrapper .btn-quickview .AddToCart-loader, .product-view .product-img-box .more-views h3:after, .opc-wrapper-opc .payment-block dt:hover, .opc-wrapper-opc .payment-block dt.active {
background-color: #fcd15c;
}
.block-title:after {
content: '';
display: inline-block;
width: 40px;
height: 2px;
position: absolute;
bottom: -1px;
left: 24px;
background: #f79d00;
}
.cpn_btn{
border-radius: 4px !important;
padding: 7px 21px !important;
background: #f79d00;
color: #fff;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.cpn_btn:hover{
border-radius: 4px !important;
padding: 7px 21px !important;
background: #848484;
color:#fff !important;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
}
.input-box{
width: 77%;
float: left;
}
.dlt_img {
background: url("../images/delete.png") no-repeat 0 2px;
color: #6e6e6e;
}
.dlt_img:hover {
background: url("../images/delete-fill.png") no-repeat 0 2px;
color: #000;
}
.dlt_img span {
padding-left: 20px;
}
.pd_n{
padding-left: 0px !important;
padding-right: 0px !important;
}
.pd_n1{
padding-left: 5px !important;
padding-right: 5px !important;
}
.chk_btn{
padding-left: 65px;
}
.chk_btn .btn-warning {
background-color: #f79d00 !important;
border-color: #eea236;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
}
.chk_btn .btn-warning:hover {
background-color: #e08e00 !important;
border-color: #fff;
color: #fff;
}
.chk_btn .btn-scs {
background-color: #858585 !important;
border-color: #858585;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
}
.btn-scs:hover {
color:#fff !important;
background: #5b5b5b !important;
}
.chk_out{
border-top: 1px solid #EFECEC;
border-bottom: 1px solid #EFECEC;
padding: 22px 0;
text-align: center;
margin-top: 12%;
background: #f5f5f5;
}
.checkout-panel{
width: 100%;
margin: auto;
margin-top: 20px;
}
.checkout-panel .panel{
border-radius: 0px;
}
.checkout-panel .panel h3{
border-bottom: solid 1px #ddd;
padding-bottom: 10px;
font-family: 'Lato', sans-serif;
font-size: 22px;
font-weight: 500;
}
.checkout-panel .panel .r-check {
margin-top: 20px;
}
.checkout-panel .panel .r-check label{
padding-left: 5px;
font-size: 14px !important;
}
.checkout-panel .panel .r-check li{
color: #666;
margin-top: 10px;
font-size: 13px;
}
.checkout-panel .panel label{
font-size: 14px;
font-weight: 400;
color: #666;
}
.checkout-panel .panel .red{
color: #ff0000;
margin-right: 5px;
font-weight: 600;
}
.checkout-panel .panel input,
.checkout-panel .panel select{
border-radius: 0px;
}
.radio .cr {
border-radius: 50%;
}
#login_form1 small a{
text-decoration: underline;
color: #333;
}
#login_form1 small a:hover{
color:#0999DA;
}
.about_cntnt p {
padding-top: 10px;
}
.about_cntnt .btn-primary {
color: #fff !important;
background-color: #00aeff !important;
border-color: #0097dd !important;
padding: 5px 18px;
}
.about_cntnt .btn-primary:hover {
color: #fff !important;
background-color: #0097dd !important;
}
.r-check .btn-success {
color: #fff !important;
background-color: #f79d00 !important;
border-color: #e59200 !important;
padding: 5px 18px;
font-size: 14px;
}
.r-check .btn-success:hover {
color: #fff !important;
background-color: #e59200 !important;
}
.about_cntnt form{
margin-top: 20px;
}
#wrapper .about_cntnt .lable_txt{
font-weight: 500 !important;
font-size: 14px !important;
}
.mayaccount{
width: 100%;
margin-bottom: 25px;
}
.mayaccount .htitle{
margin: 0px 0px -15px 0px;
}
.mayaccount .panel{
padding-top: 10px;
margin: 0;
border-bottom: solid 1px #ddd;
background-color: inherit;
}
.mayaccount .wel{
font-size: 15px;
float: right;
margin-top: 14px;
margin-right: 5px;
color: #FF9800;
margin-bottom: 4px;
font-family: "Roboto";
font-weight: 400;
}
.mayaccount .wel small{
font-size: 14px;
color: #4a4a4a;
font-family: "Roboto";
}
.mayaccount .panel-heading,
.mayaccount .panel-body {
float: left;
}
.mayaccount .p-one{
background-color: #fff;
min-height: 415px;
border: 1px solid #ddd;
padding: 15px 10px;
}
.mayaccount .nav-tabs {
border-bottom: none;
}
.mayaccount .nav-tabs > li {
float: none;
margin-bottom: 0px;
}
.mayaccount .nav > li > a{
border: none;
border-radius: 0px;
border-bottom: dashed 1px #ccc;
}
.mayaccount .nav > li > a big{
font-size: 20px;
color: #444;
font-family: 'Abel', sans-serif;
font-weight: 300;
}
.mayaccount .nav > li > a small{
font-size: 13px;
color: #666;
font-family: "Roboto";
font-weight: 300;
}
.mayaccount .nav > li.active > a big,
.mayaccount .nav > li > a:hover big{
color: #ff7800;
}
.mayaccount .nav-tabs > li a:hover,
.mayaccount .nav-tabs > li a:focus{
border-bottom: dashed 1px #ccc;
background-color: #f1f1f1;
}
.mayaccount .nav-tabs > li.active > a,
.mayaccount .nav-tabs > li.active > a:hover,
.mayaccount .nav-tabs > li.active > a:focus{
border: none;
border-bottom: dashed 1px #ccc;
background-color: #f1f1f1;
}
.mayaccount .mybox{
width: 100%;
padding: 0px;
min-height: 415px;
border:solid 1px #eee;
}
.mayaccount .mybox h2{
position: absolute;
margin: 0px;
top: -32px;
font-size: 22px;
font-weight: 300;
}
.mayaccount .mybox h4{
font-weight: 300;
font-family: "Roboto";
color: #666;
}
.mayaccount .mybox h2 small{
font-weight: 300;
font-size: 17px;
}
.mayaccount .mybox .well{
text-align: center;
font-size: 17px;
color: #666;
background-color: #FFF;
border:none;
border-bottom:solid 1px rgba(255,152,0, 0.4);
box-shadow:inherit;
border-radius: 0px;
}
.mayaccount .mybox .well i{
margin-right: 10px;
}
.mayaccount .mybox .list li i{
width: 30px;
color: #666;
}
.mayaccount .mybox .list li{
margin-bottom: 15px;
font-size: 17px;
color: #444;
}
.mayaccount .mybox .list .co{
font-size: 14px;
}
.mayaccount .page-header{
margin: 0px 0 20px;
padding: 8px;
color: #484848 !important;
background-color: #EFEFEF;
}
.mayaccount .form-control[disabled], .mayaccount .form-control[readonly], fieldset[disabled] .mayaccount .form-control {
background-color: #fff;
opacity: 1;
}
.inputtype input[type="number"],
.inputtype input[type="text"],
.inputtype input[type="email"],
.inputtype input[type="password"]{
border:none;
border-radius: 15px;
border-bottom: solid 1px #ddd;
box-shadow: inherit;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
}
.inputtype input:focus,
.inputtype input:hover{
border-bottom: solid 1px #ff8c26;
border-radius: 15px;
}
.inputtype input[type="submit"]:hover,
.inputtype input[type="submit"]:focus{
font-size: inherit;
}
.mayaccount .table thead tr th,
.mayaccount .table tbody tr td{
text-align: center;
}
.mayaccount .table thead tr th{
font-weight: 400;
font-family: "Roboto";
color: #666;
font-size: 13px;
background-color: #f6f6f6;
}
.mayaccount .table tbody tr td{
font-size: 13px;
color: #666;
line-height: 16px !important;
border: 0px;
}
/*------------trader dashboard--------------*/
.tradr_account{
width: 100%;
margin-bottom: 25px;
}
.tradr_account .htitle{
margin: 0px 0px -15px 0px;
}
.tradr_account .panel{
padding-top: 10px;
margin: 0;
border-bottom: solid 1px #ddd;
background-color: inherit;
}
.tradr_account .wel{
font-size: 15px;
float: right;
margin-top: 14px;
margin-right: 5px;
color: #FF9800;
margin-bottom: 4px;
font-family: "Roboto";
font-weight: 400;
}
.tradr_account .wel small{
font-size: 14px;
color: #4a4a4a;
font-family: "Roboto";
}
.tradr_account .panel-heading,
.tradr_account .panel-body {
float: left;
}
.tradr_account .p-one {
background-color: #efefef;
min-height: 415px;
border: 7px solid #b8b8b8;
padding: 10px 7px;
}
.tradr_account .nav-tabs {
border-bottom: none;
}
.tradr_account .nav-tabs > li {
float: none;
margin-bottom: 0px;
}
.tradr_account .nav > li > a{
border: none;
border-radius: 0px;
border-bottom: dashed 1px #ccc;
}
.tradr_account .nav > li > a big{
font-size: 20px;
color: #444;
font-family: 'Abel', sans-serif;
font-weight: 300;
}
.tradr_account .nav > li > a small{
font-size: 13px;
color: #666;
font-family: "Roboto";
font-weight: 300;
}
.tradr_account .nav > li.active > a big,
.tradr_account .nav > li > a:hover big{
color: #ff7800;
}
.tradr_account .nav-tabs > li a:hover,
.tradr_account .nav-tabs > li a:focus{
border-bottom: dashed 1px #ccc;
background-color: #fff;
}
.tradr_account .nav-tabs > li.active > a,
.tradr_account .nav-tabs > li.active > a:hover,
.tradr_account .nav-tabs > li.active > a:focus{
border: none;
border-bottom: dashed 1px #ccc;
background-color: #fff;
}
.tradr_account .mybox{
width: 100%;
padding: 0px;
min-height: 415px;
border:solid 1px #eee;
}
.tradr_account .mybox h2{
position: absolute;
margin: 0px;
top: -32px;
font-size: 22px;
font-weight: 300;
}
.tradr_account .mybox h4{
font-weight: 300;
font-family: "Roboto";
color: #666;
}
.tradr_account .mybox h2 small{
font-weight: 300;
font-size: 17px;
}
.tradr_account .mybox .well{
text-align: center;
font-size: 17px;
color: #666;
background-color: #FFF;
border:none;
border-bottom:solid 1px rgba(255,152,0, 0.4);
box-shadow:inherit;
border-radius: 0px;
}
.tradr_account .mybox .well i{
margin-right: 10px;
}
.tradr_account .mybox .list li i{
width: 30px;
color: #666;
}
.tradr_account .mybox .list li{
margin-bottom: 15px;
font-size: 17px;
color: #444;
}
.tradr_account .mybox .list .co{
font-size: 14px;
}
.tradr_account .page-header {
margin: 0px 0 20px;
padding: 8px;
color: #ffffff !important;
background-color: #f68f11;
}
.tradr_account .form-control[disabled], .tradr_account .form-control[readonly], fieldset[disabled] .tradr_account .form-control {
background-color: #fff;
opacity: 1;
}
.tradr_account .table thead tr th,
.tradr_account .table tbody tr td{
text-align: center;
}
.tradr_account .table thead tr th{
font-weight: 400;
font-family: "Roboto";
color: #666;
font-size: 13px;
background-color: #f6f6f6;
}
.tradr_account .table tbody tr td{
font-size: 13px;
color: #666;
line-height: 9px !important;
border: 0px;
}
/*------------trader dashboard ---------------*/
#scrollbox ::-webkit-scrollbar {
width: 12px;
height:10px;
}
/* Track */
#scrollbox ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-webkit-border-radius: 10px;
border-radius: 10px;
}
/* Handle */
#scrollbox ::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255,143,31, .9) ;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
#rootwizard ::-webkit-scrollbar-thumb:window-inactive {
background: rgba(255,143,31, .9) ;
}
.ie7 #scrollbox, .ie8 #scrollbox, .ie9 #scrollbox {
scrollbar-face-color:#61839E;
scrollbar-highlight-color:#77A2C4;
scrollbar-shadow-color:#4D697F;
scrollbar-3dlight-color:#77A2C4;
scrollbar-arrow-color:#fff;
scrollbar-darkshadow-color:#61839E;
scrollbar-3dlight-color:#61839E;
scrollbar-track-color:#A8AFB9;
}
.userdashboard{
width: 100%;
height: 220px;
}
.userdashboard .header{
position: relative;
}
.tab-pane .btn-success {
color: #fff !important;
background-color: #f79d00 !important;
border-color: #e59200 !important;
padding: 5px 18px;
font-size: 14px;
border-radius: 3px;
}
.tab-pane .btn-success:hover {
color: #fff !important;
background-color: #e59200 !important;
border-radius: 3px;
}
.tab-pane .btn-success:focus {
border-radius: 3px;
}
.shipbox h3{
font-weight: 300;
font-family: "Roboto";
padding-left: 15px;
padding-bottom: 9px;
}
.orderview .modal-content {
border-radius: 0px;
}
.orderview .modal-content .modal-header {
padding: 7px 15px;
background-color: #f6bb42;
}
.orderview .modal-content .close {
font-size: 30px;
}
.orderview .modal-content .modal-title {
color: #FFF;
text-align: left;
}
.mayaccount .mybox h4 {
font-weight: 300;
font-family: "Roboto";
color: #666;
font-size: 20px;
}
.orderview .table {
margin-bottom: 10px !important;
}
.orderview .table tbody tr td, .orderview .table thead tr th {
font-size: 13px !important;
padding: 5px !important;
}
.orderview .list tbody tr td {
text-align: left !important;
color: #444 !important;
border: 1px solid #ddd !important;
line-height: 20px !important;
border-top: 1px solid #ddd !important;
padding-top: 7px !important;
}
.orderview .list tbody tr th {
width: 100px !important;
font-size: 12px !important;
font-weight: 400 !important;
background-color: #f6f6f6 !important;
color: #666 !important;
line-height: 20px !important;
border: 1px solid #ddd !important;
padding-top: 7px !important;
}
.orderview .modal-dialog{
width: 780px;
}
.orderview .table tr td strong {
font-weight: 500 !important;
font-family: 'Roboto',sans-serif !important;
color: #333 !important;
line-height: 12px;
}
.pop_sign{
width:105px !important;
float: left;
color: #fff !important;
background-color: #F79D00 !important;
padding: 5px 18px;
-webkit-transition: .6s all !important;
-o-transition: .6s all !important;
transition: .6s all !important;
-moz-transition: .6s all !important;
}
.pop_sign:hover{
background-color: #000 !important;
-webkit-transition: .6s all !important;
-o-transition: .6s all !important;
transition: .6s all !important;
-moz-transition: .6s all !important;
}
#custom-search-input{
padding: 4px;
border: solid 1px #D8D8D8;
border-radius: 14px;
margin-top: 7px;
-webkit-transition: .3s all;
-o-transition: .3s all;
transition: .3s all;
width: 84%;
float: left;
}
.margin_t{
margin-top: 25px;
}
#custom-search-input input{
border: 0;
box-shadow: none;
}
#custom-search-input button{
margin: 0px 0 0 0;
background: none;
box-shadow: none;
border: 0;
color: #F68F11;
padding: 0 8px 0 10px;
border-left: solid 1px #ccc;
}
#custom-search-input button:hover{
border: 0;
box-shadow: none;
border-left: solid 1px #ccc;
}
#custom-search-input .glyphicon-search{
font-size: 23px;
}
#custom-search-input .form-control{
height: 25px;
}
#custom-search-input:hover{
border: solid 1px #fcbd71;
-webkit-transition: .7s all;
-o-transition: .7s all;
transition: .7s all;
}
.paylist .table thead tr th, .paylist .table tbody tr th {
background-color: #f6f6f6;
font-size: 14px;
font-weight: 500;
font-family: 'Roboto',sans-serif;
color: #444;
border: 1px solid #e7e7e7 !important;
line-height: 25px !important;
}
.paylist .table tbody tr th {
color: #666;
font-weight: 400;
}
.paylist .table thead tr th, .paylist .table tbody tr td {
text-align: left;
font-weight: 400;
color: #444;
}
.paylist .table thead tr th, .paylist .table tbody tr td {
font-weight: 400;
font-family: 'Roboto',sans-serif;
font-size: 14px;
color: #666;
border: 1px solid #e7e7e7 !important;
line-height: 25px !important;
text-align: left;
}
.paylist h4{
font-size: 18px;
font-family: 'Roboto',sans-serif;
color: #333;
font-weight: 400;
}
.paylist .table-bordered {
border: 1px solid #e7e7e7 !important;
}
.order-details .ordertab {
float: left;
}
.order-details .table thead tr th {
text-transform: uppercase;
font-size: 14px;
color: #666;
font-weight: 400;
background-color: #f2f2f2;
font-family: 'Lato', sans-serif;
text-align: center;
}
.order-details .table tr th {
font-size: 15px;
color: #737373;
font-weight: 700;
font-family: 'Josefin Sans',sans-serif;
}
.order-details .ordertab img {
width: 65px;
float: left;
}
.order-details .table tr td {
color: #222;
font-weight: 400;
font-family: 'Roboto',sans-serif;
}
.order-details p{
text-align: center;
padding-top: 10px;
padding-right: 23px;
}
.orto{
border-top: 1px solid #ddd;
}
.ordertab tbody .orto td {
font-size: 15px !important;
text-transform: uppercase;
font-weight: 400;
color: #000 !important;
background-color: #f6f6f6;
font-family: 'Josefin Sans',sans-serif;
}
.order-details .btn-warning {
background-color: #f79d00 !important;
border-color: #eea236;
color: #fff;
border: none;
padding: 8px 16px;
margin-right: 4px;
font-size: 14px;
font-weight: 400;
margin-right: 14px;
}
.order-details .btn-warning:hover {
background-color: #f79d00 !important;
border-color: #fff;
color: #fff;
}
.newblog{
width: 100%;
margin: 0px;
}
.newblog .well .head{
border-bottom: dashed 1px #ddd;
padding: 10px 0;
margin-bottom: 10px;
color: #666;
}
.newblog .well{
width: 100%;
clear: both;
background-color: #fff;
border-radius: 0px;
border:none;
padding: 0px;
margin: 0px;
box-shadow: inherit;
}
.newblog .well .imgbox{
width: 100%;
height: auto;
max-height: 140px;
max-width: 356px;
overflow: hidden;
float: left;
text-align: center;
margin-bottom: 10px;
}
.newblog .well .imgbox img{
width: auto;
height: auto;
max-width: 100%;
max-height: 140px;
border:solid 2px #DDD;
}
.newblog .well .boxdot{
padding-bottom: 10px;
margin-bottom: 10px;
border-bottom: dashed 1px #ddd;
}
.newblog .well .boxdot i{
color: #ff7800;
}
.newblog .well .boxdot span:nth-child(1){
color: #ff7800;
}
.newblog .details h4{
color: #ff7800;
border-bottom: dashed 1px #ddd;
padding: 10px 0;
}
.newblog .details .imgbox{
max-width: 460px;
width: 100%;
height: auto;
overflow: hidden;
margin-bottom: 10px;
}
.newblog .details .imgbox img{
width: 100%;
height: auto;
max-height: 400px;
}
.newblog h4{
color: #555;
font-family: 'Roboto',sans-serif;
font-weight: 400;
}
.newblog p,
.newblog span{
color: #4c4c4c;
font-size: 15px;
font-weight: 300px;
line-height: 24px;
text-align: justify;
}
.newblog .blog{
width: 100%;
border: 1px solid #E9E9E9;
padding: 20px 15px;
background: #F9F9F9;
margin: 25px 0;
}
.newblog .blog .boxdot{
width: 100%;
float: left;
padding: 8px 3px;
margin: 10px 0;
border-top: dashed 1px #ddd;
}
.newblog .blog .list-inline{
margin-bottom: 0px;
}
.newblog .dot{
border-bottom: dashed 1px #ddd;
}
.newblog .blog h4{
border: none;
font-family: 'Lato', sans-serif;
font-size: 18px;
font-weight: 400;
color: #333;
text-transform: uppercase;
margin: 0px;
margin-bottom: 20px;
border-bottom: 1px dashed #BBB;
padding-bottom: 6px;
line-height: 23px;
}
.newblog .blog .rd_a{
color: #F68F11;
margin-top: 10px;
}
.newblog .blog .rd_a:hover{
color: #333;
}
.newblog .blog .big_img{
width: 100%;
float: left;
margin: 0 0%;
border: none;
}
.newblog .blog .big_img img{
width: 100%;
max-height: 300px;
margin-bottom: 25px;
}
.newblog .blog .col-sm-9{
padding-left: 0px;
}
.writereview {
width: 100%;
margin: auto;
margin-top: 15px;
}
.reviewleft h4 {
font-weight: 500;
color: #444;
font-size: 15px;
margin: 10px 0px;
padding-bottom: 10px;
border-bottom: solid 1px #ddd;
}
.reviewleft .imgbox {
max-width: 200px;
height: 200px;
width: 100%;
overflow: hidden;
text-align: center;
/* float: left; */
/* margin: 0px 20px 10px 0px; */
margin: auto;
margin-bottom: 25px !important;
}
.reviewleft .imgbox img {
width: 100%;
max-width: 100%;
height: auto;
margin: auto;
}
.reviewleft .tit {
font-size: 14px;
margin-top: 20px;
}
.reviewright .retith {
font-size: 15px;
padding: 5px;
color: #444;
border-bottom: solid 1px #888;
}
.reviewright .retith small {
float: right;
margin-top: 5px;
}
.reviewright .form-group {
width: 100%;
float: left;
background-color: #f6f6f6;
padding: 10px 0px;
margin: 0px 0px 2px 0px;
}
.reviewright .form-group label {
font-size: 14px;
font-weight: 600;
color: #333;
}
.reviewright .form-group input, .reviewright .form-group select {
box-shadow: inherit;
}
.reviewright .form-group .starrr {
width: 100%;
float: left;
}
.reviewright .form-group .starrr .glyphicon-star {
color: #ff9c00;
}
.reviewright .form-group .starrr span {
font-size: 17px;
}
.reviewright .form-group span {
font-size: 12px;
font-weight: 400;
}
.news_ltr{
background: #EDEDED;
padding: 24px 0px;
border-top: 1px solid #E4E4E4;
margin-top: 36px;
}
.news_ltr h2{
font-family: 'Abel', sans-serif;
font-size: 36px;
font-weight: 400;
color: #333;
margin: 0px;
line-height: 23px;
margin-top: 5px;
}
.news_ltr h2 small{
font-size: 14px;
color: #6b6b6b;
font-family: 'Roboto', sans-serif;
line-height: 36px;
}
.sbscr{
margin-top: 5px;
height: 43px !important;
font-size: 16px !important;
}
.suc_msg{
margin-top: -16px;
position: absolute;
}
.suc_msg1 {
margin-top: -29px;
position: absolute;
margin-left: 14px;
}
.dvdr_none{
padding-right: 0px;
padding-left: 0px;
}
.trdr_bnr{
width: 100%;
max-height: 300px;
overflow: hidden;
margin-bottom: 35px;
}
.trdr_bnr img{
width: 100%;
max-height: 300px;
padding: 5px;
border: 1px solid #ddd;
}
.trdr_log .btn1{
border-radius: 4px !important;
padding: 7px 23px !important;
background: #f79d00;
color: #fff;
font-size: 16px;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
border: none;
box-shadow: none;
}
.trdr_log .btn1:hover{
border-radius: 4px !important;
padding: 7px 23px !important;
background: #848484;
color:#fff !important;
transition:all 0.3s ease-in-out;
-webkit-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
border: none;
box-shadow: none;
}
.trdr_log h2{
font-family: 'Roboto', sans-serif;
color: #555;
font-size: 15px;
}
.bordr_n{
border: none !important;
}
.order-details .pd_line{
padding-top: 7px !important;
line-height: 12px !important;
}
.cart_di{
width: 50px;
height: 40px;
float: left;
position: relative;
z-index: 1;
}
.cart_di img{
margin-top: 15px;
margin-left: 17px;
}
.cart_di .value{
display: inline-block;
color: #FFFFFF;
background: #F68F11;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
line-height: 19px;
right: -2px;
padding: 0px 7px;
position: absolute;
top: 9px;
font-weight: bold;
font-size: 11px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.modal-content1 .close{
right: -255px;
top: -179px;
}
.popupbox .modal-content1{
width: 100%;
height: auto;
padding: 33px 1px;
padding-right: 228px;
float: left;
background-color: rgba(255,255,255, 0.9);
background: url("../images/pop-bg.jpg") no-repeat -50px -16px;
}
.new_ltrs{
background: none !important;
border: none !important;
text-align: center;
}
.new_ltrs p{
font-size: 13px;
font-family: 'Roboto', sans-serif;
color: #333;
text-align: center;
}
.new_ltrs h4 {
font-size: 28px;
text-transform: uppercase;
color: rgb(0, 0, 0);
position: relative;
margin-bottom: 35px;
font-family: 'Lato', sans-serif;
text-align: center;
}
.new_ltrs h4:before {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
display: block;
width: 90px;
text-align: center;
border-bottom: 1px solid rgb(0, 0, 0);
margin: 0px auto -10px;
}
.nwltr_btn{
background: #000;
padding: 5px 25px;
border-radius: 0px;
margin-top: 14px;
color: #fff;
margin-left: 37%;
font-size: 20px;
font-family: 'Abel', sans-serif;
text-transform: uppercase;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
border: none;
box-shadow: none;
}
.nwltr_btn:hover{
background: #f79d00;
transition:all 0.4s ease-in-out;
-webkit-transition:all 0.4s ease-in-out;
-o-transition:all 0.4s ease-in-out;
-moz-transition:all 0.4s ease-in-out;
border-radius: 0px !important;
}
@media (min-width: 768px){
.modal-dialog1 {
width: 731px !important;
margin: 30px auto;
}
}
.popupbox .modal-content1 input[type="email"]{
box-shadow: none;
border-radius: 0px;
background-color: #fff;
color: rgba(0,0,0,.4);
border-color: rgba(0,0,0,.05);
height: 40px;
border-radius: 0px;
}
.popupbox .modal-content1 input:hover {
border-bottom: solid 1px #ff8c26;
}
.all_cat{
background: #E7E7E7;
padding: 0 10px;
color: #fff !important;
margin-left: 21px;
}
.all_cat a{
color: #000 !important;
font-weight: 600;
text-shadow: 1px 1px #FFFFFF;
}
.all_cat:hover{
background: #f68f11;
}
.all_cat a:hover{
background: #f68f11;
color: #fff !important;
font-weight: 600;
text-shadow: none;
}
.reviewpanel {
width: 100%;
margin: 0px;
}
.rewiewlist li {
margin-top: 20px;
}
.rewiewlist .leview {
text-align: center;
}
.rewiewlist .leview .co-ic {
width: 60px;
height: 60px;
line-height: 60px;
float: left;
font-size: 24px;
text-align: center;
vertical-align: middle;
border-radius: 50%;
color: #FFF;
background-color: #19bc9c;
font-weight: 600;
margin-left: 55px;
}
.rewiewlist .leview h5 {
width: 100%;
float: left;
clear: both;
font-weight: 400;
font-size: 15px;
}
.rewiewlist .leview h6 {
width: 100%;
float: left;
color: #9A9A9A;
font-weight: 400;
margin: 0px;
font-size: 13px;
}
.rewiewlist .leview p {
width: 100%;
color: #888;
text-align: center;
font-weight: 400;
font-size: 12px;
margin: 0px;
margin-bottom: 2px;
}
.rewiewlist .leview h6 i {
color: #19bc9c;
}
.rewiewlist .rigview {
margin: 0px;
padding-left: 0px;
}
.rewiewlist .rigview .panel {
border: solid 1px #eee;
position: relative;
border-radius: 4px;
}
.rewiewlist .panel::before {
position: absolute;
display: block;
top: 15px;
left: -24px;
content: '';
width: 0px;
height: 0px;
border: inherit;
border-width: 12px;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
}
.rewiewlist .panel::after {
position: absolute;
display: block;
top: 15px;
left: -23px;
content: '';
width: 0px;
height: 0px;
border: inherit;
border-width: 12px;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
border-right-color: #FFF;
}
.rewiewlist .rigview .panel-heading .fa-star, .rewiewlist .rigview .panel-heading .fa-star-o {
font-size: 15px;
}
.rewiewlist .rigview .panel-body h4 {
font-size: 15px;
color: #444;
margin: 5px 0px;
}
.rewiewlist .rigview .panel-body p {
font-size: 12px;
}
/*------------gallery --------------*/
.lightbox-container{
margin-top: 25px;
}
.lightbox-image{
cursor:pointer;
}
.lightbox{
background:rgba(0,0,0,0.93);
bottom:0;
height:100%;
left:0;
margin:0;
position:fixed;
right:0;
top:0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width:100%;
z-index:2500;
}
.lightbox .content{
display: table;
height:100%;
margin:auto;
width:100%;
}
.lightbox .content .inner {
display:table-cell;
vertical-align: middle;
}
.lightbox .content .inner .image,
.lightbox .content .inner .title{
color:#fff;
margin:auto;
padding-bottom: 10px;
text-align: center;
width:40%;
}
.lightbox .content .inner .image img{
max-width:100%;
}
.lightbox .left,
.lightbox .right,
.lightbox .close{
color:#e0e0e0;
font-size:30px;
opacity:1;
position: absolute;
text-shadow: none;
z-index:2501;
}
.lightbox .close{
right:20px;
top:20px;
}
.lightbox .left{
left:20px;
top:50%;
}
.lightbox .right{
right:20px;
top:50%;
}
.lightbox .left:hover,
.lightbox .right:hover,
.lightbox .close:hover{
color:#fff;
cursor: pointer;
transition:color 0.2s ease;
}
.lightbox-container .col-md-3 {
padding-left: 7px;
padding-right: 7px;
}
.lightbox-container .box p {
text-align: center;
font-size: 14px;
margin: 0px;
line-height: 22px;
background: #f2f2f2;
border: 1px solid #ddd;
padding: 5px 15px;
margin-top: -1px;
margin-bottom: 15px;
color: #000;
}
.lightbox-container .box img {
max-width: 270px;
width: 100%;
height: auto;
max-height: 270px;
padding: 3px;
border: 1px solid #ddd;
}
/*------------gallery --------------*/
.categories {
width: 100%;
margin: auto;
margin-top: 25px;
}
.service {
list-style: none;
}
.service li .latest {
width: 100%;
max-width: 256px;
margin: auto;
height: auto;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-ms-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.service li .latest:hover{
width: 100%;
height:auto;
background-size:cover;
background-position:center;
-webkit-transform: rotate(0deg) scale(1.03);
-moz-transform: rotate(0deg) scale(1.03);
-ms-transform: rotate(0deg) scale(1.03);
-o-transform: rotate(0deg) scale(1.03);
transform: rotate(0deg) scale(1.03);
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-ms-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
.service li:nth-child(2n+2) .latest{
box-shadow:7px 7px 0px 1px rgba(85,182,227, .3);
}
.service li:nth-child(3n+3) .latest{
box-shadow:7px 7px 0px 1px rgba(169,205,73, .3);
}
.service li:nth-child(4n+4) .latest{
box-shadow:7px 7px 0px 1px rgba(104,212,148, .3);
}
.service .latest {
width: 267px;
height: 323px;
background-color: #f9f9f9;
box-shadow: 7px 7px 0px 1px rgba(255,161,25, .3);
overflow: hidden;
}
.service .latest figure {
height: 256px;
overflow: hidden;
position: relative;
width: auto;
margin: auto;
text-align: center;
}
.service .latest figure img {
width: 100%;
height: auto;
max-width: 267px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: auto;
text-align: center;
}
.box {
width: 263px;
margin: 0px;
}
.latest .box .prise {
width: 214px;
position: relative;
display: block;
margin-top: -45px;
padding-left: 15px;
background: inherit;
border-bottom: 45px solid rgba(255,161,25, .5);
border-right: 47px solid rgba(255,255,255, .01);
}
.service li:nth-child(2n+2) .prise {
border-bottom: 45px solid rgba(85,182,227, .5);
}
.service li:nth-child(4n+4) .prise {
border-bottom: 45px solid rgba(104,212,148, .5);
}
.service li:nth-child(3n+3) .prise {
border-bottom: 45px solid rgba(169,205,73, .5);
}
.box .prise span {
margin-top: 6px;
position: absolute;
}
.prise span {
font-weight: bold;
}
.box .prise span big {
font-family: 'lato', sans-serif;
color: #FFF;
font-size: 24px;
margin-right: 10px;
font-weight: 400;
}
.box h3 {
margin-left: 15px;
font-size: 18px;
color: #333;
margin-top: 13px;
text-overflow: ellipsis;
width: 224px;
white-space: nowrap;
overflow: hidden;
font-weight: 400;
font-family: 'Roboto', sans-serif;
}
.box h3 a:hover, .box h5 a:hover {
color: #ffa119;
text-decoration: none;
}
.box h5 {
margin-left: 15px;
color: #8e8d8d;
font-size: 16px;
line-height: 10px;
}
.shadow {
width: 100%;
/* margin-top: 8px; */
}
.glry_back{
position: relative;
top: -48px;
left: 0px;
float: right;
font-size: 15px;
background: #dedede;
padding: 6px 13px;
border-radius: 3px;
color: #000;
}
.mr-right{
float: right !important;
}
.w_dsk{
width: 72%;
}
.goog-te-gadget-simple {
background-color: #fff !important;
/* border-left: 1px solid #d5d5d5; */
/* border-top: 1px solid #9b9b9b; */
/* border-bottom: 1px solid #e8e8e8; */
/* border-right: 1px solid #d5d5d5; */
font-size: 10pt !important;
display: inline-block !important;
padding: 3px !important;
/* padding-bottom: 3px; */
cursor: pointer;
zoom: 1;
border: 2px solid #dfdfdf !important;
border-radius: 5px !important;
}
.goog-te-gadget img{
display: none !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
text-decoration: none;
padding-right: 5px;
}
#wrapper .goog-te-menu2-item div, .goog-te-menu2-item:link div, .goog-te-menu2-item:visited div, .goog-te-menu2-item:active div {
color: #333 !important;
background: #f5f5f5 !important;
}
.la_cnvrt span{
color: #333 !important;
}
.rmv_img{
float:left;margin-left:38px;margin-top:2px;
}
.btn:focus, .btn.focus {
color: #fff !important;
text-decoration: none;
}
.boxselect ul li i{
color: #767676;
font-size: 12px;
margin-left: 3px;
}
.boxselect ul {
width: 70% !important;
}
/***********error************/
.error {
color: red !important;
font-weight: normal !important;
}
.fsd_red {
color: red !important;
font-weight: normal !important;
}
.fsd_green {
color: green !important;
font-weight: normal !important;
}
.splr_fld{
padding-right: 0px !important;
margin-left: 30px !important;
}
.pd_rt1{
padding-right: 0px !important;
}
.pd_lt1{
padding-left: 0px !important;
padding-right: 0px !important;
}
.abt_info{
text-align: center;
}
.abt_info h3{
color: #fc5f7e !important;
font-size: 27px !important;
font-family: 'Sniglet', cursive;
text-transform: uppercase;
margin-bottom: 4px;
}
.abt_info p{
width: 63%;
margin: auto;
text-align: center;
margin-top: 5px;
}
.abt_info hr{
margin-bottom: 1px dashed #9e6f71;
}
.abt_info span{
color: #9e6f71;
font-style: italic;
font-size: 18px;
font-family: 'Architects Daughter', cursive;
margin-bottom: 15px;
}
.abt_info img{
margin-top: 40px;
margin-bottom: 20px;
}
.info-bg{
background:#fff url("../images/divider-.jpg") repeat-x;
width: 100%;
border: 1px dashed #ddd;
height:1px;
margin: 37px 0;
}
.sup_fld textarea, .pd_rt1 textarea{
height: 108px !important;
}
.trader_bt_bg{
text-align: center;
background: #f4f4f4;
padding: 28px;
border: 4px solid #f0f0f0;
margin-bottom: 20px;
}
.trader_bt_bg h2{
margin-top: 0px;
font-family: 'Lato', sans-serif;
font-size: 18px;
}
| 0.27973 | 0.092237 |
body {
font: 14px Consolas, monaco, monospace;
margin: 20px;
background-color: #fff;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}
img {
float: left;
user-drag: none;
-webkit-user-drag: none;
}
button {
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
border-style: none;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
cursor: pointer;
color: #fff;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: bottom;
background-color: #17a2b8;
border-color: #17a2b8;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* pct styles */
.pct {
position: relative;
cursor: pointer;
width: 128px;
height: 64px;
padding: 0px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.fa {
position: absolute;
font-weight: 550;
top: 38%;
left: 25px;
}
.fat {
position: absolute;
font-size: 8px;
color: #777;
text-align: center;
width: 15px;
top: 20%;
left: 30px;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.fab {
position: absolute;
font-size: 8px;
color: #777;
text-align: center;
width: 15px;
top: 65%;
left: 30px;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */ }
.fb {
position: absolute;
font-weight: 550;
top: 38%;
left: 92px;
}
.fbl {
position: absolute;
font-size: 8px;
color: #777;
font-weight: 550;
top: 38%;
left: 78px;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.fbr {
position: absolute;
font-size: 8px;
color: #777;
font-weight: 550;
top: 38%;
left: 110px;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */
}
/* D12 styles */
.d12 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d12f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 42px;
left: 32px;
transform: translate(-50%, -100%);
}
.d12f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 14px;
left: 15px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d12f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 14px;
left: 35px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d12f3 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 9px;
width: 15px;
text-align: center;
top: 32px;
left: 42px;
transform: rotate(32deg);
-ms-transform: rotate(32deg); /* IE 9 */
-webkit-transform: rotate(32deg); /* Safari */
}
.d12f4 {
position: absolute;
font-weight: 500;
color: #777;
font-size: 5px;
width: 15px;
text-align: center;
top: 46px;
left: 25px;
transform: rotate(-45deg);
-ms-transform: rotate(-45deg); /* IE 9 */
-webkit-transform: rotate(-45deg); /* Safari */
}
.d12f5 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 9px;
width: 15px;
text-align: center;
top: 32px;
left: 8px;
transform: rotate(-32deg);
-ms-transform: rotate(-32deg); /* IE 9 */
-webkit-transform: rotate(-32deg); /* Safari */
}
/* d8 styles */
.d8 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d8f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 36px;
left: 32px;
transform: translate(-50%, -100%);
}
.d8f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 18px;
left: 13px;
transform: rotate(45deg);
-ms-transform: rotate(45deg); /* IE 9 */
-webkit-transform: rotate(45deg); /* Safari */
}
.d8f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 18px;
left: 36px;
transform: rotate(-45deg);
-ms-transform: rotate(-45deg); /* IE 9 */
-webkit-transform: rotate(-45deg); /* Safari */
}
.d8f3 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 10px;
width: 15px;
text-align: center;
top: 35px;
left: 25px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
/* d6 styles */
.d6 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d6f0 {
position: absolute;
font-size: 24px;
font-weight: 550;
top: 20px;
left: 32px;
transform: translate(-50%, -10%);
}
/* d4 styles */
.d4 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d4f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 36px;
left: 32px;
transform: translate(-50%, -100%);
}
.d4f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 12px;
width: 15px;
text-align: center;
top: 36px;
left: 36px;
transform: rotate(-215deg);
-ms-transform: rotate(-215deg); /* IE 9 */
-webkit-transform: rotate(-215deg); /* Safari */
}
.d4f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 12px;
width: 15px;
text-align: center;
top: 36px;
left: 14px;
transform: rotate(215deg);
-ms-transform: rotate(215deg); /* IE 9 */
-webkit-transform: rotate(215deg); /* Safari */
}
/* d20 styles */
.d20 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d20f0 {
position: absolute;
font-weight: 550;
top: 44px;
left: 32px;
transform: translate(-50%, -100%);
}
.d20f1 {
position: absolute;
color: #777;
font-size: 10px;
top: 28%;
left: 18%;
width: 15px;
text-align: center;
transform: rotate(-55deg);
-ms-transform: rotate(-55deg); /* IE 9 */
-webkit-transform: rotate(-55deg); /* Safari */
}
.d20f4 {
position: absolute;
color: #777;
font-size: 10px;
top: 28%;
left: 60%;
width: 15px;
text-align: center;
transform: rotate(55deg);
-ms-transform: rotate(55deg); /* IE 9 */
-webkit-transform: rotate(55deg); /* Safari */
}
.d20f7 {
position: absolute;
color: #777;
font-size: 10px;
top: 44px;
left: 25px;
width: 15px;
text-align: center;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d20f9 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 34px;
left: 5px;
transform: rotate(-120deg);
-ms-transform: rotate(-120deg); /* IE 9 */
-webkit-transform: rotate(-120deg); /* Safari */
}
.d20f5 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 34px;
left: 45px;
transform: rotate(120deg);
-ms-transform: rotate(120deg); /* IE 9 */
-webkit-transform: rotate(120deg); /* Safari */
}
.d20f6 {
position: absolute;
color: #777;
font-size: 10px;
top: 32px;
left: 50px;
transform: translate(-50%, -50%);
transform: rotate(155deg);
-ms-transform: rotate(155deg); /* IE 9 */
-webkit-transform: rotate(155deg); /* Safari */
}
.d20f3 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 9px;
left: 50%;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.d20f2 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 9px;
left: 25%;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */
}
.d20f6 {
position: absolute;
color: #777;
font-size: 6px;
top: 45px;
left: 40px;
width: 15px;
text-align: center;
transform: rotate(-220deg);
-ms-transform: rotate(-220deg); /* IE 9 */
-webkit-transform: rotate(-220deg); /* Safari */
}
.d20f8 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 45px;
left: 10px;
transform: rotate(220deg);
-ms-transform: rotate(220deg); /* IE 9 */
-webkit-transform: rotate(220deg); /* Safari */
}
|
roller/roller.css
|
body {
font: 14px Consolas, monaco, monospace;
margin: 20px;
background-color: #fff;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}
img {
float: left;
user-drag: none;
-webkit-user-drag: none;
}
button {
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
border-style: none;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
cursor: pointer;
color: #fff;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: bottom;
background-color: #17a2b8;
border-color: #17a2b8;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* pct styles */
.pct {
position: relative;
cursor: pointer;
width: 128px;
height: 64px;
padding: 0px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.fa {
position: absolute;
font-weight: 550;
top: 38%;
left: 25px;
}
.fat {
position: absolute;
font-size: 8px;
color: #777;
text-align: center;
width: 15px;
top: 20%;
left: 30px;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.fab {
position: absolute;
font-size: 8px;
color: #777;
text-align: center;
width: 15px;
top: 65%;
left: 30px;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */ }
.fb {
position: absolute;
font-weight: 550;
top: 38%;
left: 92px;
}
.fbl {
position: absolute;
font-size: 8px;
color: #777;
font-weight: 550;
top: 38%;
left: 78px;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.fbr {
position: absolute;
font-size: 8px;
color: #777;
font-weight: 550;
top: 38%;
left: 110px;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */
}
/* D12 styles */
.d12 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d12f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 42px;
left: 32px;
transform: translate(-50%, -100%);
}
.d12f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 14px;
left: 15px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d12f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 14px;
left: 35px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d12f3 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 9px;
width: 15px;
text-align: center;
top: 32px;
left: 42px;
transform: rotate(32deg);
-ms-transform: rotate(32deg); /* IE 9 */
-webkit-transform: rotate(32deg); /* Safari */
}
.d12f4 {
position: absolute;
font-weight: 500;
color: #777;
font-size: 5px;
width: 15px;
text-align: center;
top: 46px;
left: 25px;
transform: rotate(-45deg);
-ms-transform: rotate(-45deg); /* IE 9 */
-webkit-transform: rotate(-45deg); /* Safari */
}
.d12f5 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 9px;
width: 15px;
text-align: center;
top: 32px;
left: 8px;
transform: rotate(-32deg);
-ms-transform: rotate(-32deg); /* IE 9 */
-webkit-transform: rotate(-32deg); /* Safari */
}
/* d8 styles */
.d8 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d8f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 36px;
left: 32px;
transform: translate(-50%, -100%);
}
.d8f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 18px;
left: 13px;
transform: rotate(45deg);
-ms-transform: rotate(45deg); /* IE 9 */
-webkit-transform: rotate(45deg); /* Safari */
}
.d8f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 7px;
width: 15px;
text-align: center;
top: 18px;
left: 36px;
transform: rotate(-45deg);
-ms-transform: rotate(-45deg); /* IE 9 */
-webkit-transform: rotate(-45deg); /* Safari */
}
.d8f3 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 10px;
width: 15px;
text-align: center;
top: 35px;
left: 25px;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
/* d6 styles */
.d6 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d6f0 {
position: absolute;
font-size: 24px;
font-weight: 550;
top: 20px;
left: 32px;
transform: translate(-50%, -10%);
}
/* d4 styles */
.d4 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d4f0 {
position: absolute;
font-weight: 550;
font-size: 16px;
top: 36px;
left: 32px;
transform: translate(-50%, -100%);
}
.d4f1 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 12px;
width: 15px;
text-align: center;
top: 36px;
left: 36px;
transform: rotate(-215deg);
-ms-transform: rotate(-215deg); /* IE 9 */
-webkit-transform: rotate(-215deg); /* Safari */
}
.d4f2 {
position: absolute;
font-weight: 550;
color: #777;
font-size: 12px;
width: 15px;
text-align: center;
top: 36px;
left: 14px;
transform: rotate(215deg);
-ms-transform: rotate(215deg); /* IE 9 */
-webkit-transform: rotate(215deg); /* Safari */
}
/* d20 styles */
.d20 {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin: 0px;
/* disable highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.d20f0 {
position: absolute;
font-weight: 550;
top: 44px;
left: 32px;
transform: translate(-50%, -100%);
}
.d20f1 {
position: absolute;
color: #777;
font-size: 10px;
top: 28%;
left: 18%;
width: 15px;
text-align: center;
transform: rotate(-55deg);
-ms-transform: rotate(-55deg); /* IE 9 */
-webkit-transform: rotate(-55deg); /* Safari */
}
.d20f4 {
position: absolute;
color: #777;
font-size: 10px;
top: 28%;
left: 60%;
width: 15px;
text-align: center;
transform: rotate(55deg);
-ms-transform: rotate(55deg); /* IE 9 */
-webkit-transform: rotate(55deg); /* Safari */
}
.d20f7 {
position: absolute;
color: #777;
font-size: 10px;
top: 44px;
left: 25px;
width: 15px;
text-align: center;
transform: rotate(180deg);
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Safari */
}
.d20f9 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 34px;
left: 5px;
transform: rotate(-120deg);
-ms-transform: rotate(-120deg); /* IE 9 */
-webkit-transform: rotate(-120deg); /* Safari */
}
.d20f5 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 34px;
left: 45px;
transform: rotate(120deg);
-ms-transform: rotate(120deg); /* IE 9 */
-webkit-transform: rotate(120deg); /* Safari */
}
.d20f6 {
position: absolute;
color: #777;
font-size: 10px;
top: 32px;
left: 50px;
transform: translate(-50%, -50%);
transform: rotate(155deg);
-ms-transform: rotate(155deg); /* IE 9 */
-webkit-transform: rotate(155deg); /* Safari */
}
.d20f3 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 9px;
left: 50%;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari */
}
.d20f2 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 9px;
left: 25%;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari */
}
.d20f6 {
position: absolute;
color: #777;
font-size: 6px;
top: 45px;
left: 40px;
width: 15px;
text-align: center;
transform: rotate(-220deg);
-ms-transform: rotate(-220deg); /* IE 9 */
-webkit-transform: rotate(-220deg); /* Safari */
}
.d20f8 {
position: absolute;
color: #777;
font-size: 6px;
width: 15px;
text-align: center;
top: 45px;
left: 10px;
transform: rotate(220deg);
-ms-transform: rotate(220deg); /* IE 9 */
-webkit-transform: rotate(220deg); /* Safari */
}
| 0.238018 | 0.039825 |
* {
--c-blue: #005faf;
}
svg {
fill: currentColor;
}
img {
max-width: 100%;
height: auto;
}
.slide {
padding-bottom: 75px;
}
.dark {
background-color: #000000;
color: #ffffff;
}
.dark h2 {
color: white;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 75px;
}
.tac {
text-align: center;
}
.red {
color: red;
}
.fl-left {
float: left;
}
.fl-right {
float: right;
}
.slide .shout--mini {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
line-height: 1;
font-size: 100px;
transform: translateY(-50%);
}
.full {
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.full iframe {
width: 100%;
height: 100%;
}
#ic-logo {
color: var(--c-blue);
width: 100%;
}
.crossed {
position: relative;
}
.crossed::before {
content: "";
background-color: red;
display: block;
position: absolute;
height: 30px;
width: 100%;
transform: rotate(135deg);
}
.bold {
font-weight: bold;
}
.what-we {
font-size: 1.2rem;
line-height: 1.5;
color: gray;
}
.what-we .gallery {
padding: 15px;
border: 5px dashed tomato;
}
.what-we .picture,
.what-we img {
float: left;
width: 30%;
overflow: hidden;
margin: 5px;
border-radius: 15px;
height: 160px;
}
.what-we p {
text-align: center;
margin-top: 20px;
}
.what-we--get .clearfix::after {
content: none;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.place {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle {
float: left;
shape-outside: circle();
clip-path: circle();
/* shape-margin: 4em; */
}
.y-y {
margin: 50px 50px 50px 0;
}
.apple-logo {
width: 40%;
height: auto;
max-height: 100%;
margin: 15px;
margin-left: -50px;
}
.apple-polygon {
float: left;
/* height: 70%;
width: 50%; */
height: 70%;
shape-outside: polygon(
185px 38px,
180px 86px,
251px 134px,
143px 176px,
256px 216px,
214px 292px,
5px 274px
);
shape-margin: 20px;
}
.apple-no-outside {
shape-margin: 0;
}
.w-sponge {
shape-outside: url(pictures/mems/wild-sponge.png);
}
.ellipse {
shape-outside: ellipse(100px 200px at 50% 50%);
shape-margin: 30px;
clip-path: ellipse(100px 200px at 50% 50%);
width: 300px;
height: 500px;
float: left;
opacity: 0.2;
background-color: purple;
}
.slide--building {
background-color: #6298d5;
}
.slide--building p {
font-size: 0.8rem;
}
.slide--building img {
shape-margin: 15px;
}
.building-1 {
shape-outside: url(pictures/1.png);
}
.building-2 {
shape-outside: url(pictures/2.png);
}
.building-3 {
shape-outside: url(pictures/3.png);
}
.building-6 {
shape-outside: url(pictures/6.png);
}
.building-5 {
shape-outside: url(pictures/5.png);
}
.slide pre code:not(:only-child)::before {
content: none;
}
pre {
-moz-tab-size: 0;
tab-size: 0;
}
.flex-code {
display: flex !important;
}
.flex-col {
flex: 0 0 40%
}
.slide::after {
position: absolute;
top: 0;
left: 875px;
box-sizing: border-box;
padding-top: 15px;
width: var(--ribbon-size);
height: calc(var(--ribbon-size) * 1.7);
/* background-image: url(ribbon.svg); */
background: var(--color-grey) !important;
background-size: cover;
color: #ffffff;
font-weight: 600;
counter-increment: slide;
content: counter(slide);
text-align: center;
}
.shout,
.shout--mini {
font-size: 115px !important;
}
/* HIGHLIGHT */
/**
* GitHub Gist Theme
* Author : <NAME> - https://github.com/LouisBarranqueiro
*/
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
|
mystyles.css
|
* {
--c-blue: #005faf;
}
svg {
fill: currentColor;
}
img {
max-width: 100%;
height: auto;
}
.slide {
padding-bottom: 75px;
}
.dark {
background-color: #000000;
color: #ffffff;
}
.dark h2 {
color: white;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 75px;
}
.tac {
text-align: center;
}
.red {
color: red;
}
.fl-left {
float: left;
}
.fl-right {
float: right;
}
.slide .shout--mini {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
line-height: 1;
font-size: 100px;
transform: translateY(-50%);
}
.full {
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.full iframe {
width: 100%;
height: 100%;
}
#ic-logo {
color: var(--c-blue);
width: 100%;
}
.crossed {
position: relative;
}
.crossed::before {
content: "";
background-color: red;
display: block;
position: absolute;
height: 30px;
width: 100%;
transform: rotate(135deg);
}
.bold {
font-weight: bold;
}
.what-we {
font-size: 1.2rem;
line-height: 1.5;
color: gray;
}
.what-we .gallery {
padding: 15px;
border: 5px dashed tomato;
}
.what-we .picture,
.what-we img {
float: left;
width: 30%;
overflow: hidden;
margin: 5px;
border-radius: 15px;
height: 160px;
}
.what-we p {
text-align: center;
margin-top: 20px;
}
.what-we--get .clearfix::after {
content: none;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.place {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle {
float: left;
shape-outside: circle();
clip-path: circle();
/* shape-margin: 4em; */
}
.y-y {
margin: 50px 50px 50px 0;
}
.apple-logo {
width: 40%;
height: auto;
max-height: 100%;
margin: 15px;
margin-left: -50px;
}
.apple-polygon {
float: left;
/* height: 70%;
width: 50%; */
height: 70%;
shape-outside: polygon(
185px 38px,
180px 86px,
251px 134px,
143px 176px,
256px 216px,
214px 292px,
5px 274px
);
shape-margin: 20px;
}
.apple-no-outside {
shape-margin: 0;
}
.w-sponge {
shape-outside: url(pictures/mems/wild-sponge.png);
}
.ellipse {
shape-outside: ellipse(100px 200px at 50% 50%);
shape-margin: 30px;
clip-path: ellipse(100px 200px at 50% 50%);
width: 300px;
height: 500px;
float: left;
opacity: 0.2;
background-color: purple;
}
.slide--building {
background-color: #6298d5;
}
.slide--building p {
font-size: 0.8rem;
}
.slide--building img {
shape-margin: 15px;
}
.building-1 {
shape-outside: url(pictures/1.png);
}
.building-2 {
shape-outside: url(pictures/2.png);
}
.building-3 {
shape-outside: url(pictures/3.png);
}
.building-6 {
shape-outside: url(pictures/6.png);
}
.building-5 {
shape-outside: url(pictures/5.png);
}
.slide pre code:not(:only-child)::before {
content: none;
}
pre {
-moz-tab-size: 0;
tab-size: 0;
}
.flex-code {
display: flex !important;
}
.flex-col {
flex: 0 0 40%
}
.slide::after {
position: absolute;
top: 0;
left: 875px;
box-sizing: border-box;
padding-top: 15px;
width: var(--ribbon-size);
height: calc(var(--ribbon-size) * 1.7);
/* background-image: url(ribbon.svg); */
background: var(--color-grey) !important;
background-size: cover;
color: #ffffff;
font-weight: 600;
counter-increment: slide;
content: counter(slide);
text-align: center;
}
.shout,
.shout--mini {
font-size: 115px !important;
}
/* HIGHLIGHT */
/**
* GitHub Gist Theme
* Author : <NAME> - https://github.com/LouisBarranqueiro
*/
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
| 0.503906 | 0.161982 |
html {
min-height: 100%;
position: relative;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-rendering: optimizelegibility
}
body {
padding-top: 40px;
padding-bottom: 0;
min-height: 100%;
font-family: Helvetica, sans-serif,"Microsoft YaHei","simsun";
-webkit-font-smoothing: antialiased
}
[class*=" icon-"],[class^=icon-] {
display: inline-block;
text-align: center
}
div, input, select, textarea, span, img, table, td, th, p, a, button, ul, li {
border-radius: 0 !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
}
:focus {
outline: 0!important
}
#main-container {
padding: 0
}
#btn-scrollup {
background: #999;
opacity: .3;
position: fixed;
bottom: 25px;
right: 40px;
display: none
}
#btn-scrollup:hover {
background: #999;
opacity: .8
}
/*.navbar {
padding-left: 0;
padding-right: 0;
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
position: relative;
z-index: 990
}
Partoo修改:让navbar恢复bootstrap初始,可以控制fixed-top*/
.navbar .navbar-inner {
position: relative;
margin: 0;
padding-left: 0;
padding-right: 0;
min-height: 40px;
border: 0;
background-image: none;
filter: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0
}
/*.navbar.navbar-fixed {
position: fixed;
top: 0;
left: 0;
right: 0
}*/
.navbar.navbar-fixed~#main-container {
margin-top: 40px
}
#sidebar.sidebar-collapsed+#main-content {
margin-left: 43px
}
#sidebar.sidebar-collapsed+#main-content #breadcrumbs.fixed {
left: 43px
}
#sidebar span{letter-spacing:0.1em}
#main-content {
margin-left: 200px;
padding: 10px 20px 20px
}
.navbar .brand {
font-size: 20px;
padding:5px 10px
}
.flaty-nav {
height: 100%;
padding-left: 5px
}
.flaty-nav>li {
line-height: 40px;
max-height: 40px;
padding: 0;
position: relative
}
.flaty-nav>li:first-child,.flaty-nav>li.no-border {
border-left: 0
}
.flaty-nav>li>a>[class*=icon-] {
font-size: 17px;
display: inline-block;
width: 20px;
text-align: center
}
.flaty-nav>li>a>.badge {
position: relative;
top: -10px;
left: -9px;
border-width: 2px;
border-style: solid;
padding-right: 5px;
padding-left: 5px;
margin-right: -10px;
}
.flaty-nav .user-profile {
padding-right: 0
}
.flaty-nav .user-menu {
line-height: 35px
}
.flaty-nav .nav-user-photo {
margin: -3px 8px 0 0;
border: 2px solid rgba(255,255,255,.5);
max-width: 33px!important
}
.flaty-nav li:last-child a [class^=icon-] {
display: inline-block;
width: 1.25em;
text-align: center
}
/*.dropdown-navbar {
padding: 0;
border: 0;
top: 38px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0 4px 6px rgba(30,30,100,.25)!important;
-moz-box-shadow: 0 4px 6px rgba(30,30,100,.25)!important;
box-shadow: 0 4px 6px rgba(30,30,100,.25)!important
}*/
.dropdown-navbar {
min-width: 240px;
max-width: 400px
}
.dropdown-navbar>li {
padding: 0 13px
}
.dropdown-navbar>li:hover {
background-color: #eeeff3!important
}
.dropdown-navbar>li.nav-header {
padding: 12px 15px;
padding-right: 6px;
font-size: 13px;
font-weight: 700;
text-transform: none
}
.dropdown-navbar>li.nav-header>[class*=icon-] {
color: #fff;
float: right;
margin-top: 3px
}
.dropdown-navbar>li>[class*=icon-],.dropdown-navbar>li>a>[class*=icon-] {
margin-right: 5px!important;
color: #8f99aa;
font-size: 14px
}
.dropdown-navbar>li>a {
padding: 10px 2px;
margin: 0;
font-size: 12px;
line-height: 16px;
color: #555;
}
.dropdown-navbar>li>a:active,.dropdown-navbar>li>a:hover {
background: 0;
background-color: transparent;
color: #555;
background-image: none;
filter: none
}
.dropdown-navbar>li>a .progress {
margin-bottom: 0;
margin-top: 4px
}
.dropdown-navbar>li>a .badge {
line-height: 16px;
padding-right: 4px;
padding-left: 4px;
font-size: 12px
}
.dropdown-navbar>li.more {
border-top: 1px solid #e9e9e9;
background: #f7f8f9
}
.dropdown-navbar>li.more>a {
color: #4f99c6;
text-align: center;
font-size: 13px;
padding-top: 9px;
padding-bottom: 9px
}
.dropdown-navbar>li.more>a>[class*=icon-] {
float: right;
font-size: 16px;
padding: 1px 0 2px 1px;
margin-top: -3px;
color: #4f99c6;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar>li.more>a:hover {
background-color: transparent;
color: #4f99c6;
text-decoration: none
}
.dropdown-navbar>li.more>a:hover>[class*=icon-] {
text-decoration: none
}
.navbar .nav>li>.dropdown-navbar:after,.navbar .nav>li>.dropdown-navbar:before {
display: none
}
.user-profile .dropdown-navbar {
min-width: 180px
}
.dropdown-navbar .msg {
width: 320px;
border-top: 1px solid #f5f6f7
}
.dropdown-navbar .msg img {
float: left;
width: 40px;
height: 40px;
margin-right: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .msg div {
margin-bottom: 20px
}
.dropdown-navbar .msg .msg-title {
font-weight: 700;
color: #65707f;
float: left
}
.dropdown-navbar .msg .msg-time {
float: right;
color: #a2a7b0
}
.dropdown-navbar .msg p {
color: #555;
width: 270px;
display: inline-block;
white-space: normal;
margin: 0
}
.dropdown-navbar .notify {
width: 270px;
padding-left: 10px;
border-top: 1px solid #f5f6f7;
position: relative
}
.dropdown-navbar .notify p {
display: inline-block;
padding-top: 5px;
white-space: normal;
margin-top: 0
}
.dropdown-navbar .notify .badge {
position: absolute;
right: 5px;
top: 12px;
padding: 2px 7px
}
.dropdown-navbar .notify [class*=icon-] {
display: inline-block;
float: left;
color: #fff;
font-size: 14px;
padding: 8px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify img {
float: left;
width: 30px;
height: 30px;
margin-right: 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
#sidebar {
width: 200px;
position: absolute
}
#sidebar:before {
content: "";
display: block;
width: 200px;
position: fixed;
bottom: 0;
top: 0;
z-index: 0
}
#sidebar.sidebar-fixed {
position: fixed;
z-index: 10
}
.nav-list li [class^=icon-] {
width: auto
}
.nav-list {
margin: 0;
padding: 0;
list-style: none
}
.nav-list>li {
display: block;
padding: 0;
margin: 0;
border: 0;
position: relative
}
.nav-list .search-form {
margin-top: 16px;
margin-bottom: 16px
}
.nav-list .search-pan {
height: 38px
}
.nav-list .search-pan input {
border: 0;
border-bottom: 1px solid rgba(255,255,255,.3);
padding: 0;
margin-bottom: 0;
padding: 8px 0 2px;
margin-bottom: 5px;
width: 156px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0
}
.nav-list .search-pan input::-webkit-input-placeholder {
color: #fff
}
.nav-list .search-pan input:-moz-placeholder {
color: #fff
}
.nav-list .search-pan input::-moz-placeholder {
color: #fff
}
.nav-list .search-pan input:-ms-input-placeholder {
color: #fff
}
.nav-list .search-pan button {
background: transparent;
padding-right: 0;
border: 0
}
.nav-list .search-pan button>i {
padding: 8px 0
}
.nav-list>li>a {
display: block;
height: 38px;
line-height: 36px;
margin: 0;
padding: 0 16px 0 7px!important;
color: #fff!important;
text-shadow: none!important;
font-size: 13px;
text-decoration: none
}
.nav-list .search-pan button>i,.nav-list>li>a>i {
display: inline-block;
vertical-align: middle;
min-width: 30px;
text-align: center;
font-size: 18px;
font-weight: 400
}
.nav-list>li>a .arrow {
display: inline-block;
width: 14px!important;
height: 14px;
line-height: 14px;
font-size: 18px;
padding: 0;
float: right;
margin-top: 11px
}
.nav-list>li.separator {
height: 3px;
background-color: transparent;
position: static;
margin: 1px 0;
box-shadow: none
}
.nav-list>li.open>a {
font-weight: 700!important
}
.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active {
font-weight: 700!important;
font-size: 13px
}
.nav-list>li.active>a>[class*=icon-] {
font-weight: 400
}
.nav-list>li.active>a:after {
display: block;
content: "";
position: absolute!important;
right: 0;
top: 4px;
border: 8px solid transparent;
border-width: 14px 10px
}
.nav-list>li.active.open>a:after {
display: none
}
.nav-list>li.active .submenu,.nav-list>li.open .submenu {
display: block
}
.nav-list>li .submenu {
display: none;
list-style: none;
margin: 0;
padding: 0;
position: relative
}
.nav-list>li .submenu>li {
margin-left: 0;
position: relative
}
.nav-list>li .submenu>li>a {
display: block;
position: relative;
padding: 7px 0 8px 42px;
margin: 0
}
.nav-list>li .submenu>li>a:focus,.nav-list>li .submenu>li>a:hover {
text-decoration: none
}
.nav-list>li .submenu>li:before {
content: "";
display: block;
position: absolute;
width: 9px;
left: 25px;
top: 17px;
border-top: 1px dashed rgba(255,255,255,.5)
}
.nav-list>li .submenu>li:after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 22px;
width: 0;
border-left: 1px dashed rgba(255,255,255,.5)
}
#sidebar-collapse {
text-align: center;
padding: 3px 0;
position: relative
}
#sidebar-collapse>[class*=icon-] {
display: inline-block;
cursor: pointer;
font-size: 14px;
color: #fff;
border: 1px solid rgba(255,255,255,.2);
padding: 1px 6px 1px 5px;
line-height: 18px;
border-radius: 100%;
position: relative
}
#sidebar-collapse:before {
content: "";
display: inline-block;
height: 0;
border-top: 1px solid rgba(255,255,255,.2);
position: absolute;
left: 15px;
right: 15px;
top: 13px
}
#sidebar.sidebar-collapsed {
width: 42px
}
#sidebar.sidebar-collapsed:before {
width: 42px
}
#sidebar.sidebar-collapsed+#main-content {
margin-left: 43px
}
#sidebar.sidebar-collapsed+#main-content #breadcrumbs.fixed {
left: 43px
}
.sidebar-collapsed .nav-list>li>a {
position: relative
}
.sidebar-collapsed .nav-list>li.active>a:after {
display: none
}
.sidebar-collapsed .nav-list .search-pan input,.sidebar-collapsed .nav-list>li>a>span {
display: none;
position: absolute;
left: 42px;
top: 0;
width: 158px;
height: 38px;
line-height: 38px;
z-index: 121;
box-shadow: 2px 0 6px rgba(50,50,50,.2);
padding-left: 12px
}
.sidebar-collapsed .nav-list .search-pan input {
height: 26px;
line-height: 20px
}
.sidebar-collapsed .nav-list>li>a.dropdown-toggle>span {
box-shadow: none;
border: 0;
top: 0;
left: 42px;
width: 165px
}
.sidebar-collapsed .nav-list>li>a .arrow {
display: none
}
.sidebar-collapsed .nav-list>li>a:hover:before {
width: 2px
}
.sidebar-collapsed .nav-list .search-form:hover .search-pan input,.sidebar-collapsed .nav-list>li:hover>a>span {
display: block
}
.sidebar-collapsed .nav-list>li.active>a:after {
border-width: 10px 6px;
top: 8px
}
.sidebar-collapsed .nav-list>li.active.open>a:after {
display: block
}
.sidebar-collapsed .nav-list>li.active.open>.submenu>li.active>a:after {
display: none
}
.sidebar-collapsed .nav-list>li>ul.submenu {
position: absolute;
z-index: 120;
left: 44px;
top: 0;
width: 175px;
box-shadow: 2px 0 6px rgba(50,50,50,.2);
padding-top: 40px;
padding-bottom: 2px;
display: none!important
}
.sidebar-collapsed .nav-list>li>ul.submenu li:before,.sidebar-collapsed .nav-list>li>ul.submenu li:after {
display: none
}
.sidebar-collapsed .nav-list>li>ul.submenu li>a {
border-left: 0;
margin-left: 0;
padding-left: 24px
}
.sidebar-collapsed .nav-list>li>ul.submenu li>a>[class*=icon-]:first-child {
width: 16px
}
.sidebar-collapsed .nav-list>li>ul.submenu li.active>a>[class*=icon-]:first-child,.sidebar-collapsed .nav-list>li>ul.submenu li:hover>a>[class*=icon-]:first-child {
left: 7px
}
.sidebar-collapsed .nav-list>li:hover>ul.submenu {
display: block!important
}
.sidebar-collapsed #sidebar-collapse:before {
left: 5px;
right: 5px
}
.sidebar-collapsed #sidebar-collapse>[class*=icon-] {
font-size: 13px;
padding: 0 5px 0 4px;
line-height: 15px;
border-width: 1px
}
/* Login pages */
.dark-login {
background: #1f1f1f;
}
.login-wrap .blue {
background: #48b5ee;
}
.blue-login {
background: #0072c6;
}
.light-login .login-container {
border: 1px solid #5c5c5c;
}
.login-container {
width: 250px;
position: fixed;
top: 40%;
left: 50%;
margin-left: -175px;
padding: 15px 30px;
background: #fff;
margin-top: -200px;
}
.sign-container {
max-width: 800px;
}
.login-container .checkbox{
padding-left: 30px !important;
}
.login-container.opacity {
background: rgba(255, 255, 255, 0.6)
}
.login-header {
padding: 10px;
margin-bottom: 10px;
background-color: #17a6b6;color: #fff
}
.login-field {
margin-bottom: 10px;
position: relative;
}
.login-button {
margin-top: 20px;
margin-bottom: 10px;
position: relative;
}
.forgot-password {
margin: 15px 0 5px;
}
/* login page */
.login-wrap {
width: 960px;
margin: 5% auto 0;
color: #fff;
text-align: center;
}
.login-wrap .metro {
height: 150px;
float: left;
margin: 0 10px 10px 0;
}
.login-wrap .double-size {
width: 310px;
}
.login-wrap .single-size {
width: 150px;
}
.login-wrap .red {
background: #e8687f;
}
.login-wrap .green {
background: #90bb4f;
}
.login-wrap .yellow {
background: #f5c147;
}
.login-wrap .terques {
background: #38bec9;
}
.login-wrap .navy-blue {
background: #5f7cb4;
}
.login-wrap .deep-red {
background: #993f3e;
}
.login-wrap .blue {
background: #48b5ee;
}
.login-wrap .purple {
background: #af5ec5;
}
.login-btn, .login-btn:hover {
background: none;
font-size: 28px;
margin-top: 65px;
color: #fff;
}
.login-btn i {
font-size: 22px !important;
padding-top: 0 !important;
display: inline !important;
}
.login-wrap .single-size a.social-link, .login-wrap .double-size a.social-link {
margin-top: 45px;
color: #fff;
display: inline-block;
text-decoration: none;
}
.login-wrap .single-size a.social-link i , .login-wrap .double-size a.social-link i{
font-size: 20px;
display: block;
padding-top: 0;
padding-bottom: 10px;
}
.login-footer {
width: 100%;
display: inline-block;
}
.remember-hint input[type="checkbox"]{
margin-top: -2px;
}
.forgot-hint a{
color: #fff;
margin-right: 10px;
}
/*lock page*/
body.lock {
background: #393939;
}
.lock-header {
margin-top: 7%;
text-align: center;
}
.lock .lock-wrap {
width: 800px;
margin: 5% auto 0;
color: #fff;
text-align: center;
}
.lock-wrap .metro {
height: 165px;
float: left;
margin: 0 10px 10px 0;
}
.lock-wrap .double-size {
width: 38%;
}
.lock-wrap .single-size {
width: 20%;
}
.lock-wrap .blue {
background: #66bbfc;
}
.lock-wrap .green {
background: #0ca389;
}
.lock-wrap .terques {
background: #36b1b9;
}
.lock-wrap .gray {
background: #595858;
}
.lock-wrap .orange {
background: #f37b53;
}
.lock-wrap .red {
background: #e8687f;
}
.lock-wrap h1 {
font-size: 25px;
text-align: center;
margin-bottom: 0;
padding-bottom: 0;
line-height: normal;
padding-top: 50px;
}
.lock-wrap p {
font-size: 15px;
text-align: center;
margin-bottom: 0;
padding-bottom: 0;
line-height: normal;
}
.lock-input {
margin-top: 60px;
}
.lock-input input {
height: 30px;
background: #fff;
box-shadow: none;
border:1px solid #fff;
}
.lock-input input:focus {
border:1px solid #fff !important;
}
.lock-input button.btn {
height: 40px;
background: #3db5a1;
border:1px solid #3db5a1 !important;
}
.lock-input button.btn i {
color: #fff;
font-size: 14px;
}
.single-size i {
font-size: 80px;
display: block;
padding-top: 30px;
}
.single-size span, .double-size span{
font-size: 20px;
}
.double-size span {
padding: 0 20px;
}
.double-size i {
font-size: 70px;
display: inline-block;
vertical-align: middle;
}
a.user-position {
margin-top: 40px;
display: inline-block;
text-decoration: none;
color: #fff;
}
a.user-position:hover {
color: #fff;
}
.user-position i, .social-link i {
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.user-position:hover i, .social-link:hover i{
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg);
opacity: 0.2;
}
a.social-link i {
font-size: 30px !important;
}
.gallery {
display: inline-block;
list-style: none;
margin: 0;
padding: 0
}
.gallery>li {
display: inline-block;
margin: 5px;
overflow: hidden;
position: relative
}
.gallery>li>a>div {
display: block;
position: relative
}
.gallery>li>a>div>i {
display: block;
background-color: #222;
opacity: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.gallery>li:hover>a>div>i {
opacity: .5
}
.gallery>li>.gallery-tools {
width: 100%;
position: absolute;
bottom: -30px;
background-color: #222;
opacity: .8;
padding: 3px;
text-align: center;
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.gallery>li:hover>.gallery-tools {
bottom: 0
}
.gallery>li>.gallery-tools>a {
color: rgba(255,255,255,.5);
margin: 0 3px;
font-size: 18px
}
.gallery>li>.gallery-tools>a:hover {
color: #fff
}
.messages {
margin: 0;
padding: 10px;
padding-bottom: 0;
list-style: none
}
.messages>li {
margin-bottom: 15px
}
.messages>li>img {
float: left;
width: 60px;
height: 60px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.messages>li>div {
background-color: #f7f8f9;
padding: 10px;
padding-top: 1px;
margin-left: 80px;
position: relative
}
.messages>li>div:before {
content: "";
position: absolute;
width: 0;
height: 0;
left: -10px;
top: 19px;
border-right: 10px solid #f7f8f9;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent
}
.messages>li>div h5 {
font-weight: 700;
display: inline-block
}
.messages>li>div .time {
margin-top: 5px;
color: #999;
float: right
}
.messages.messages-stripped>li:nth-child(odd)>div {
background-color: #eef1f4
}
.messages.messages-stripped>li:nth-child(odd)>div:before {
border-right-color: #eef1f4
}
.messages.messages-zigzag>li:nth-child(even)>img {
float: right
}
.messages.messages-zigzag>li:nth-child(even)>div {
margin-right: 80px;
margin-left: 0
}
.messages.messages-zigzag>li:nth-child(even)>div:before {
right: -10px;
left: auto;
border-left: 10px solid #f7f8f9;
border-right: 0
}
.messages.messages-zigzag>li:nth-child(even)>div h5 {
float: right
}
.messages.messages-zigzag>li:nth-child(even)>div .time {
float: none
}
.messages.messages-chat>li>div {
padding-top: 0;
padding-bottom: 2px
}
.messages.messages-chat>li>div p {
margin-bottom: 3px;
line-height: 16px
}
.messages li .messages-actions {
position: absolute;
bottom: 5px;
right: 10px;
display: none
}
.messages li:hover .messages-actions {
display: block
}
.messages li .messages-actions a {
font-size: 16px;
margin: 0 3px
}
.messages-input-form {
position: relative;
border: 1px solid #ddd;
margin-top: 10px
}
.messages-input-form .input {
margin-right: 90px
}
.messages-input-form .input input[type=text] {
border: 0;
margin-bottom: 0;
display: block
}
.messages-input-form .buttons {
position: absolute;
right: 0;
top: 0
}
.messages-input-form .buttons a {
color: #ccc;
margin: 4px;
line-height: 32px
}
.messages-input-form .buttons a>i {
font-size: 16px
}
.messages-input-form .buttons a:hover {
color: #555
}
.messages-input-form .buttons .btn {
margin-top: -5px;
margin-right: 1px
}
.error-page {
padding: 80px 0
}
.error-page:before {
content: "";
position: fixed;
top: 0;
bottom: 0;
width: 100%;
z-index: 1
}
.error-page .error-wrapper {
background-color: #fff;
position: relative;
z-index: 2;
width: 400px;
margin: 0 auto;
padding: 20px
}
.error-page h4 {
font-size: 30px;
font-weight: 300;
margin-bottom: 30px
}
.error-page h4>span {
color: #528eca;
font-size: 80px;
letter-spacing: -6px;
float: right
}
.error-page h5 {
font-size: 27px;
font-weight: 300;
margin-bottom: 30px
}
.error-page h5>span {
color: #528eca;
font-size: 70px;
letter-spacing: -7px;
float: right
}
.error-page form input {
border: 0;
background-color: #f5f6f7;
width: 345px
}
.error-page form input,.error-page form button {
padding: 15px 10px!important;
height: auto!important;
font-size: 16px
}
.error-page form button {
padding: 15px 20px!important
}
.chzn-container-single .chzn-single {
box-shadow: none!important;
background-image: none!important;
filter: none!important;
-webkit-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
height: 20px!important;
line-height: 20px!important;
padding: 4px 6px!important;
border-color: #e5e5e5!important;
margin: 0!important;
color: #555!important
}
.error .chzn-container-single .chzn-single {
border-color: #B94A48
}
.error .chzn-container-single .chzn-single span {
color: #B94A48
}
.success .chzn-container-single .chzn-single {
border-color: #468847
}
.success .chzn-container-single .chzn-single span {
color: #468847
}
.chzn-container-single .chzn-single>span {
margin-top: 1px
}
.chzn-container-single .chzn-single>abr {
margin-top: 3px
}
.chzn-container .chzn-drop {
-webkit-box-shadow: 0 2px 6px rgba(30,30,100,.25)!important;
-moz-box-shadow: 0 2px 6px rgba(30,30,100,.25)!important;
box-shadow: 0 1px 6px rgba(30,30,100,.25)!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
border-color: #e5e5e5
}
.chzn-container-single .chzn-search input,.chzn-container-single .chzn-search input:focus,.chzn-container-single .chzn-search input:active {
border: 1px solid #e5e5e5!important;
box-shadow: none!important;
height: 28px;
line-height: 25px
}
.chzn-container-multi .chzn-choices {
background-image: none!important;
filter: none!important;
box-shadow: none!important;
border-color: #e5e5e5!important;
padding: 2px 1px 1px!important
}
.slider {
margin: 9px 0
}
.ui-slider {
border: 0!important;
background: #d9d9d9!important
}
.ui-widget-header {
background: #aaa!important
}
.ui-slider-horizontal {
height: 2px!important
}
.ui-slider-vertical {
width: 2px!important
}
.ui-slider-horizontal.bar-large {
height: 4px!important
}
.ui-slider-vertical.bar-large {
width: 4px!important
}
.ui-slider-horizontal.bar-xlarge {
height: 7px!important
}
.ui-slider-vertical.bar-xlarge {
width: 7px!important
}
.ui-slider-horizontal.bar-xxlarge {
height: 10px!important
}
.ui-slider-vertical.bar-xxlarge {
width: 10px!important
}
.ui-slider-handle {
border: 0!important;
width: 15px!important;
height: 15px!important;
background: #aaa!important;
-webkit-border-radius: 100%!important;
-moz-border-radius: 100%!important;
border-radius: 100%!important
}
.ui-slider-handle:focus {
outline: 0
}
.bar-large>.ui-slider-handle {
width: 18px!important;
height: 18px!important
}
.bar-xlarge>.ui-slider-handle {
width: 20px!important;
height: 20px!important
}
.bar-xxlarge>.ui-slider-handle {
width: 24px!important;
height: 24px!important
}
.ui-slider-horizontal>.ui-slider-handle {
top: -7px!important
}
.ui-slider-vertical>.ui-slider-handle {
left: -7px!important
}
.slider-eq span {
display: inline-block;
height: 170px;
margin: 0 10px
}
.ui-slider.bar-blue {
background: #b9d3f1!important
}
.ui-slider.bar-green {
background: #9cedc3!important
}
.ui-slider.bar-red {
background: #feaea5!important
}
.ui-slider.bar-yellow {
background: #fcf7ac!important
}
.ui-slider.bar-orange {
background: #fbb485!important
}
.ui-slider.bar-pink {
background: #fea8fd!important
}
.ui-slider.bar-magenta {
background: #c27bf4!important
}
.ui-slider.bar-blue>.ui-widget-header,.ui-slider.handle-blue>.ui-slider-handle {
background: #4495f1!important
}
.ui-slider.bar-green>.ui-widget-header,.ui-slider.handle-green>.ui-slider-handle {
background: #36c77b!important
}
.ui-slider.bar-red>.ui-widget-header,.ui-slider.handle-red>.ui-slider-handle {
background: #fb5240!important
}
.ui-slider.bar-yellow>.ui-widget-header,.ui-slider.handle-yellow>.ui-slider-handle {
background: #fbf040!important
}
.ui-slider.bar-orange>.ui-widget-header,.ui-slider.handle-orange>.ui-slider-handle {
background: #fc812f!important
}
.ui-slider.bar-pink>.ui-widget-header,.ui-slider.handle-pink>.ui-slider-handle {
background: #fb40f9!important
}
.ui-slider.bar-magenta>.ui-widget-header,.ui-slider.handle-magenta>.ui-slider-handle {
background: #9b2be9!important
}
.circle-stats {
text-align: center;
position: relative
}
.circle-stats-item {
position: relative;
background: rgba(255,255,255,.7);
-webkit-border-radius: 50em;
-moz-border-radius: 50em;
border-radius: 50em;
width: 120px;
height: 120px;
margin: 10px auto
}
.circle-stats-item i {
font-size: 30px;
position: absolute;
top: 30%;
margin-top: 0;
width: 100%;
text-align: center
}
.circle-stats-item.blue .percent,.circle-stats-item.blue i {
color: #87ceeb
}
.circle-stats-item.orange .percent,.circle-stats-item.orange i {
color: #fc812f
}
.circle-stats-item.red .percent,.circle-stats-item.red i {
color: #fb5240
}
.circle-stats-item.green .percent,.circle-stats-item.green i {
color: #36c77b
}
.circle-stats-item.yellow .percent,.circle-stats-item.yellow i {
color: #fbf040
}
.circle-stats-item.pink .percent,.circle-stats-item.pink i {
color: #fb40f9
}
.circle-stats-item.magenta .percent,.circle-stats-item.magenta i {
color: #9b2be9
}
.circle-stats-item.lime .percent,.circle-stats-item.lime i {
color: #b9e672
}
.circle-stats-item.gray .percent,.circle-stats-item.gray i {
color: #999
}
.circle-stats-item.black .percent,.circle-stats-item.black i {
color: #444
}
.circle-stats-item input {
cursor: default;
box-shadow: none;
border: 0;
height: auto;
position: absolute;
top: 20px;
left: 120px
}
.circle-stats-item .percent {
font: 700 24px arial;
position: absolute;
top: 53%;
margin-left: 75px
}
.circle-stats-item input:focus {
outline: thin dotted 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none
}
.lt-ie9 .knob,.lt-ie9 .circle-stats {
display: none
}
div.tagsinput {
height: 50px!important;
margin: 0!important;
padding: 5px!important;
overflow: auto!important
}
div.tagsinput span.tag {
background: #e8f3f7!important;
color: #333!important;
border: 0!important;
padding: 1px 5px!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
margin-bottom: 4px!important
}
div.tagsinput input {
padding: 3px 6px!important
}
div.tagsinput span.tag a {
color: #aaa!important;
font-size: 14px
}
div.tagsinput span.tag a:hover {
color: #555!important
}
div.tagsinput .not_valid {
color: #fff!important;
padding: 3px 6px!important;
background-color: #ed6363!important
}
.fileupload .input-append .btn-file {
padding: 0
}
.fileupload .input-append .btn-file>.fileupload-new,.fileupload .input-append .btn-file>.fileupload-exists {
padding: 5px 10px;
line-height: 30px
}
.fileupload .input-append>a.fileupload-exists {
padding: 0 10px;
line-height: 30px
}
.bootstrap-timepicker {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.bootstrap-timepicker table tr>td>a:hover {
background-color: #f0f0f0;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.daterangepicker td {
text-shadow: none!important
}
.daterangepicker td.active {
background-color: #4b8df8!important;
background-image: none!important;
filter: none!important
}
.daterangepicker th {
font-weight: 400;
font-size: 14px
}
.daterangepicker .ranges>ul>li {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.daterangepicker .ranges>ul>li:hover {
border-color: #eee;
color: #555;
background-color: #eee
}
.clockface .cell>div {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.clockface .cell .inner.active,.clockface .cell .outer.active {
background-image: none!important;
filter: none!important
}
.switch,.switch .switch-left {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.switch .switch-left,.switch .switch-right {
background-image: none!important;
filter: none!important
}
.chart,.pie,.bars {
overflow: hidden;
height: 300px
}
#flotTip {
background-color: #000;
color: #fff;
padding: 3px 7px;
opacity: .7
}
#calendar .fc-event {
border: 0;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
#external-events .external-event {
cursor: move;
margin: 0 5px 5px 0
}
.weekly-stats {
margin: 0;
padding: 0;
list-style: none
}
.weekly-stats li {
font-size: 14px;
margin-bottom: 19px
}
.weekly-stats .inline-sparkline {
margin-right: 10px
}
.weekly-stats .value {
font-size: 20px;
color: #fa5833;
margin-left: 5px
}
.todo-list {
margin: 0;
padding: 0;
list-style: none
}
.todo-list>li {
position: relative;
border-bottom: 1px solid #f5f5f5;
margin-bottom: 10px
}
.todo-list>li:last-child {
border-bottom: 0
}
.todo-list>li>.todo-desc {
margin-right: 100px;
display: inline-block
}
.todo-list>li>.todo-desc .label {
float: right
}
.todo-list>li>.todo-actions {
position: absolute;
right: 0;
top: 0
}
.todo-list>li>.todo-actions a {
color: #aaa;
font-size: 15px;
margin: 0 3px
}
.todo-list>li>.todo-actions a:hover {
color: #555
}
.tasks-in-progress {
margin: 0;
padding: 0;
list-style: none
}
.tasks-in-progress>li>p {
margin-bottom: 4px
}
.tasks-in-progress>li>p>span {
float: right
}
.things-to-do {
margin: 0;
padding: 0;
list-style: none
}
.things-to-do>li {
border-bottom: 1px solid #f5f5f5;
padding-top: 12px
}
.things-to-do>li:last-child {
border-bottom: 0
}
.things-to-do>li p {
font-size: 14px;
line-height: 16px
}
.things-to-do>li i {
font-size: 30px;
color: #a4c7e7;
display: inline-block;
width: 35px;
text-align: left
}
.things-to-do>li .value {
font-size: 25px;
color: #fa5833;
margin-left: 10px;
margin-right: 10px
}
.things-to-do>li .btn {
float: right
}
.weekly-changes {
margin: 0;
padding: 0;
list-style: none
}
.weekly-changes>li {
border-bottom: 1px solid #f5f5f5;
padding-top: 12px
}
.weekly-changes>li:last-child {
border-bottom: 0
}
.weekly-changes>li p {
font-size: 15px
}
.weekly-changes>li i {
font-size: 15px;
width: 15px
}
.weekly-changes>li span {
font-size: 23px;
margin: 0 10px;
display: inline-block;
width: 60px;
text-align: right
}
#main-content>footer {
background: rgba(255,255,255,.6);
padding: 12px 20px 3px;
margin-top: 20px
}
#main-content>footer p {
text-align: center;
color: #222
}
.navbar .nav>li>a,.navbar .nav>li>a:hover,.navbar .nav>li>a:focus,.dropdown-navbar>li.nav-header,.flaty-nav>li>a>[class*=icon-],.navbar .brand,.nav-list .search-pan input,.nav-list .search-pan button>i,.nav-list>li>a,.nav-list>li>a:focus,.nav-list>li>a:hover,.nav-list>li>a .arrow,.nav-list>li a:hover>.arrow,.nav-list>li.active>a>.arrow,.nav-list>li.open>a>.arrow,.nav-list>li.open>a,.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active,.nav-list>li .submenu>li>a,#sidebar-collapse>[class*=icon-],.sidebar-collapsed .nav-list>li.open:hover>a {
color: #fff
}
.navbar .navbar-inner {
background: #17a6b6
}
.flaty-nav>li>a>.badge {
border-color: #9de2ea
}
.navbar .btn-navbar,.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar .collapsed:hover,.navbar .btn-navbar .collapsed:focus,.flaty-nav>li.open,.flaty-nav>li:hover,.dropdown-navbar>li.nav-header {
background:rgba(0,0,0,0.2);
}
.dropdown-navbar>li.nav-header{
background: #0a8896!important
}
.flaty-nav>li.open>a>.badge,.flaty-nav>li:hover>a>.badge {
border-color: #eee
}
#sidebar:before,.nav-list .search-form,.nav-list .search-pan input,.nav-list>li>a {
background-color: #505050
}
.nav-list .search-form:hover,.nav-list .search-form:hover .search-pan input,.nav-list>li.open>a,.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active,#sidebar-collapse>[class*=icon-]:hover,.sidebar-collapsed .nav-list>li:hover>a,.sidebar-collapsed .nav-list .search-pan input,.sidebar-collapsed .nav-list>li>a>span {
background-color: #0693a3
}
.nav-list>li>a:focus,.nav-list>li>a:hover {
background-color: #434343!important
}
.nav-list>li .submenu {
background-color: #333
}
#sidebar-collapse>[class*=icon-],.nav-list>li .submenu>li>a:focus,.nav-list>li .submenu>li>a:hover,.nav-list>li .submenu>li.active>a {
background-color: #434343
}
.nav-list>li.active>a:after {
border-right-color: #e9f0f9
}
.error-page:before,#main-content {
background: #e9f0f9
}
.box>.box-title {
background-color: #b6d1f2;
text-shadow: 0 1px 0 #aecef4
}
.navbar.btn-navbar,.navbar.btn-navbar:hover,.navbar.btn-navbar:focus,.navbar.btn-navbar.collapsed:hover,.navbar.btn-navbar.collapsed:focus,.navbar.flaty-nav>li.open,.navbar-blue .flaty-nav>li:hover,.navbar-blue .dropdown-navbar>li.nav-header {
background: #0a8896
}
/*buttons style*/
/*.btn{
border-radius: 0;
outline: none;
border: none;
box-shadow: none;
}
.btn:hover{
border-radius: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}*/
.btn-group > .btn:first-child,
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle,
.btn-group-vertical > .btn:first-child,
.btn-group-vertical > .btn:last-child {
border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
}
.btn-primary{
background: #2fade7;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled], .btn-group.open .btn-primary.dropdown-toggle {
background-color: #3492c9;
}
.btn-istar{
background: #16a085;
color: #fff
}
.btn-istar:hover, .btn-istar:focus, .btn-istar:active, .btn-istar.active, .btn-istar.disabled, .btn-istar[disabled], .btn-group.open .btn-istar.dropdown-toggle {
background-color: #1abc9c;
color: #fff
}
.btn-success{
background: #78a300;
}
.btn-info{
background: #31a6b1;
}
.btn-warning{
background: #de8a00;
}
.btn-danger{
background: #c1552b;
}
.btn-inverse{
background: #292929;
}
.btn-link {
background: none;
box-shadow: none;
}
.input-prepend .add-on:first-child, .input-prepend .btn:first-child,
.input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child,
.input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child,
.input-append .add-on:last-child, .input-append .btn:last-child, .input-append .btn-group:last-child > .dropdown-toggle{
border: 1px solid #ddd;
border-radius: 0px;
}
.accordion-body .input-prepend .add-on{border-left: 0}
.btn-group.open .dropdown-toggle {
box-shadow: none;
}
.uneditable-input {
width: 135px;
}
.switch-form input {
width: 110px;
}
/*form element */
textarea, select, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, .fileupload-new .input-append .btn-file {
border: 1px solid #ddd;
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
-webkit-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
-o-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
border-radius: 0 !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
box-shadow: none !important;
}
/* general typography*/
h3 small, h2 small, h5 small {
color: #868686;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
h1.block, h2.block, h3.block, h4.block, h5.block, h6.block {
padding-bottom: 10px;
}
.page-title {
font-size: 28px;
display: block;
font-weight: normal !important;
margin: 13px 0px 8px 0px;
font-family: 'MyriadPro-Light',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.page-title small {
font-size: 14px;
}
/* general tools */
img.center {
text-align:center;
}
.phone-margin-top-5:before {
display: block;
margin-top: 5px;
}
.no-padding {
padding: 0px !important;
}
.no-margin {
margin: 0px !important;
}
.no-bottom-space {
padding-bottom:0px !important;
margin-bottom: 0px !important;
}
.no-top-space {
padding-top:0px !important;
margin-top: 0px !important;
}
.hide {
display: none;
}
.bold {
font-weight:bold;
}
.border {
border: 1px solid #ddd
}
.small {
font-size: 11px !important;
}
.btn-top-space {
margin-top: 5px !important;
}
.italic {
font-style: italic !important;
}
i.big {
font-size: 20px;
}
i.warning {
color: #E74955;
}
i.critical {
color: #22878E;
}
i.normal {
color: #A5D16C;
}
hr {
margin: 15px 0;
border: 0;
border-top: 1px solid #c2c2c2;
border-bottom: 1px solid #FEFEFE;
}
i.icon, a.icon {
color: #999;
}
a.icon: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: .4;
}
a.icon.huge i{
font-size: 16px !important;
}
.space5 {
display: block;
height: 5px !important;
clear: both;
}
.space10 {
height: 10px !important;
clear: both;
}
.space12 {
height: 12px !important;
clear: both;
}
.space15 {
height: 15px !important;
clear: both;
}
.space20 {
height: 20px !important;
clear: both;
}
.split5 {
height: 5px !important;
clear: both;
background-color: #ccc;
}
.mtop5 {
margin-top: 5px
}
.mtop7 {
margin-top: 7px
}
.mtop10 {
margin-top: 10px
}
.no-text-shadow {
text-shadow: none !important;
}
.notify-row {
float: left;
padding: 5px;
}
/*fix outlines on click*/
a,a:focus, a:hover, a:active {
outline: 0;
}
/* i8 fix for form input height in fluid rows */
.ie8 .row-fluid [class*="span"] {
min-height: 20px !important;
}
/* general form */
form legend {
margin: 15px 0px 10px 0px !important;
}
.form-actions {
background-color: #fff ;
}
.widget-body.form form {
margin: 0px !important;
padding: 0px !important;
}
.widget-body.form .control-group:last-child {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.widget-body.form .form-actions{
margin-left:-15px !important;
margin-right:-15px !important;
margin-top: 20px !important;
margin-bottom: -15px !important;
margin-top: 20px;
padding-left: 195px;
-webkit-border-radius: 0px 0px 4px 4px;
-moz-border-radius: 0px 0px 4px 4px;
border-radius: 0px 0px 4px 4px;
}
.widget-body .dataTables_info, .widget-body .dataTables_paginate {
margin-top: 5px !important;
padding-bottom: 0px !important;
margin-bottom: -4px !important;
}
.widget-body .table {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.widget-title > h4, .chats li.in .name {
color: #fff;
}
table .label{margin-left: 5px;}
/* custom form input error states with icons */
.input-icon input {
padding-right: 25px !important;
}
.input-icon .input-error, .input-icon .input-warning, .input-icon .input-success {
display: inline-block !important;
position: relative !important;
top: 4px;
right: 25px !important;
font-size: 16px;
}
.input-icon .input-error {
color:#B94A48;
}
.input-icon .input-warning {
color: #C09853;
}
.input-icon .input-success {
color: #468847;
}
/* custom breadcrumb */
.breadcrumb {
border-radius: 0 ;
}
.breadcrumb li > a{
color: #888888;
}
/*general search */
.breadcrumb > li.search-wrap {
background: none !important;
float: right;
}
.breadcrumb .search-input-area {
float: right;
margin-top: -8px;
margin-right: -15px;
}
.search-input-area input {
border: 0px !important;
padding-left: 8px;
padding-right: 20px;
background: #e5e5e5;
height: 28px;
width: 240px;
box-shadow: none;
border-left: 10px solid #fff !important;
transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;
}
.search-input-area button, .search-input-area button:focus {
border: 0px !important;
text-align: center;
background: #4f4f4f !important;
height: 36px;
width: 40px;
box-shadow: none;
color: #fff !important;
}
.search-input-area input:focus {
outline: 0;
background: #ccc !important;
}
.breadcrumb .search-input-area > i, #sidebar .search-input-area > i {
cursor: pointer;
display: inline-block !important;
font-size: 18px;
position: absolute !important;
right: -10px !important;
top: 7px !important;
}
/* widget container */
.sortable .widget .widget-title {
cursor: move;
}
.sortable-box-placeholder {
background-color: #f5f5f5;
border: 1px dashed #DDDDDD;
display: block;
margin-top: 0px !important;
margin-left: 1%;
margin-right: 0.6%;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.sortable-box-placeholder * {
visibility:hidden;
}
.widget {
background:#fff;
clear: both;
margin-bottom: 20px;
margin-top: 0;
border: 1px solid #404040;
}
.widget-title {
background: #404040;
height: 36px;
}
.widget.green {
border: 1px solid #49BB66;
}
.widget.green .widget-title {
background: #49BB66;
}
.widget.cyan {
border: 1px solid #0ca389;
}
.widget.cyan .widget-title {
background: #0ca389;
}
.widget.blue {
border: 1px solid #4A8BC2;
}
.widget.blue .widget-title {
background: #4A8BC2;
}
.widget.purple {
border: 1px solid #9D4A9C;
}
.widget.purple .widget-title {
background: #9D4A9C;
}
.widget.yellow {
border: 1px solid #CE8C00;
}
.widget.yellow .widget-title {
background: #CE8C00;
}
.widget.orange {
border: 1px solid #F37B53;
}
.widget.orange .widget-title {
background: #F37B53;
}
.widget.red {
border: 1px solid #DE577B;
}
.widget.red .widget-title {
background: #DE577B;
}
.widget-title > h4 {
float: left;
font-size: 14px;
font-weight: normal;
padding: 10px 11px 10px 15px;
line-height: 12px;
margin: 0;
font-family: 'MyriadPro-Regular',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.widget-title > h4 i {
font-size: 14px;
margin-right: 2px;
}
.widget-title span.tools {
float: right;
margin: 2px 0 0;
padding: 6px 5px 6px 10px;
}
.widget-title span.tools > a {
display: inline-block;
margin-right: 5px;
color: #fff;
font-size: 14px;
text-decoration: none;
}
.widget-title span.tools > a: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: .7;
}
.widget-title .btn-group {
margin-right:5px;
margin-top: -2px;
}
.widget-title .btn-group .caret {
margin-top: 8px;
margin-left: 3px;
}
.widget-body {
padding: 15px 15px;
}
/* icon buttons */
.icon-btn {
height: 70px;
width: 50px;
margin: 10px 0px 10px 0px;
padding: 16px 0px 0px 0px;
font-size: 10px;
background-color: #fff !important;
border: 1px solid #ccc;
display:block !important;
color: #646464 !important;
text-align: center;
cursor: pointer;
position: relative;
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn:hover {
border: 1px solid #404040;
background: #fff !important;
text-decoration: none !important;
box-shadow: none !important;
color: #444 !important;
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-ms-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn i {
font-size: 20px;
color: #777 !important;
}
.icon-btn div {
margin-top: 5px;
margin-bottom: 20px;
font-size: 12px !important;
font-family: Arial;
}
.badge {
-webkit-border-radius: 10px!important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
padding: 2px 6px;
}
.icon-btn .badge {
position: absolute;
font-size: 10px !important;
top: 26px;
right: -8px;
height: 14px;
padding: 3px 7px;
color: white !important;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
font-family: Arial;
}
.icon-btn:hover .badge {
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-ms-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn i {
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
-ms-transition: all .5s ease-in-out;
}
.icon-btn:hover i {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
color: #fff;
opacity: 1;
}
/* custom dropdown */
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
padding: 0px 0;
margin: 2px 0 0;
list-style: none;
background-color: #fcfcfc;
border: 1px solid rgba(0, 2, 1, 0.2);
-webkit-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
-moz-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
-webkit-background-clip: padding-box;
-moz-background-clipp: padding;
background-clip: padding-box;
padding: 0px 0;
margin:0px;
list-style: none;
}
.dropdown-menu.opens-left {
margin-top: 2px;
margin-left: -88px;
}
.ie8 .dropdown-menu.opens-left {
margin-left: -82px;
}
.dropdown-menu.extended {
top:40px;
min-width: 160px !important;
max-width: 300px !important;
width: 235px !important;
}
.dropdown-menu.logout {
width: 150px !important;
min-width: 120px !important;
max-width: 260px !important;
}
.dropdown-menu.extended li a{
display: block;
padding: 5px 10px !important;
clear: both;
font-weight: normal;
line-height: 20px;
white-space: normal !important;
}
.dropdown-menu.extended .arrow{
top:-14px;
left: 10px;
position: absolute;
margin-top: 6px;
margin-right: 12px;
width: 0;
height: 0;
border-bottom: 8px solid #f3f3f3;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
}
.dropdown-menu.extended li i{
margin-right: 3px;
}
.dropdown-menu.extended li a{
padding: 10px !important;
background-color: #fff !important;
}
.dropdown-menu.extended li a:hover {
background-color: #f3f3f3 !important;
}
.dropdown-menu.extended li p{
padding: 10px;
background-color: #eee;
margin: 0px;
color: #666;
}
.dropdown-menu.extended li a{
padding: 7px 0 5px 0px;
list-style: none;
border-bottom: 1px solid #EBEBEB !important;
font-size: 12px;
}
.dropdown-menu.extended li:first-child a {
border-top: none;
border-bottom: 1px solid #EBEBEB !important;
}
.dropdown-menu.extended li:last-child a {
border-top: 1px solid white !important;
border-bottom: 1px solid #EBEBEB !important;
}
.dropdown-menu.inbox li a .photo img {
float: left;
height: 40px;
width: 40px;
margin-right: 4px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.dropdown-menu.inbox li a .subject {
display: block;
}
.dropdown-menu.inbox li a .subject .from {
font-size: 12px;
font-weight: bold;
}
.dropdown-menu.inbox li a .subject .time {
font-size: 11px;
font-weight: bold;
font-style: italic;
position: absolute;
right: 5px;
}
.dropdown-menu.inbox li a .message {
display: block !important;
font-size: 11px;
}
/*fontawesome*/
.fontawesome-icon-list .span3{
margin-left: 0;
}
.fontawesome-icon-list .span3 i{
font-size: 16px;
}
.fontawesome-icon-list .span3 a{
color: #888888;
}
/* star rating */
.rating {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 30px;
}
.rating span.star,
.rating span.star {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
}
.rating span.star:hover,
.rating span.star:hover {
cursor: pointer;
}
.rating span.star:before,
.rating span.star:before {
content: "\f006";
padding-right: 5px;
color: #999999;
}
.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before,
.rating span.star:hover ~ span.star:before {
content: "\f005";
color: #87bb33;
}
/* adjust uniform components */
.radio, .checkbox {
padding-left: 0px !important;
}
.controls > .radio,
.controls > .checkbox {
display: inline-block;
padding: 0 !important;
margin: 0 25px 0 0 !important;
}
.controls > .radio.line,
.controls > .checkbox.line {
display: block;
padding: 0 !important;
margin: 0 !important;
margin-top: 5px !important;
}
.controls .text {
display: block;
margin-top: 5px;
}
.checkbox div.checker {
margin-right: 2px !important;
}
.uploader {
margin-top: 2px !important;
}
/* font awesome icon classes */
/*[class^="icon-"], [class*=" icon-"],[class^="icon-"]:hover, [class*=" icon-"]:hover {
background: none !important;
}
Partoo恢复awesome icon的背景*/
/* hide by default ie8*/
.visible-ie8 {
display: none;
}
.tab-content {
padding: 0px;
overflow: hidden;
}
/*navigation*/
.bs-docs-example .navbar-inner .nav .dropdown-toggle:hover,
.bs-docs-example .navbar .nav li.dropdown.active > .dropdown-toggle,
.bs-docs-example .navbar .nav li.dropdown.open.active > .dropdown-toggle,
.bs-docs-example .navbar-inner .nav .dropdown.open .dropdown-toggle{
background-color: #E5E5E5 !important;
color: #555555;
}
.bs-docs-example .navbar .nav > .active > a,
.bs-docs-example .navbar .nav > .active > a:hover,
.bs-docs-example .navbar .nav > .active > a:focus {
box-shadow: none;
}
.navbar .nav > li > a {
padding: 3px;
}
.bs-docs-example .navbar-inner {
background: #f2f2f2;
}
/* general list for item with picture */
ul.item-list li .pic {
height: 50px;
width: 50px;
float: left;
margin-top: 3px;
margin-right: 5px;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
ul.item-list {
margin: 0px;
list-style: none;
}
ul.item-list li {
/*padding: 11px 0;*/
list-style: none;
border-top: 1px solid white;
border-bottom: 10px solid #fff;
font-size: 12px;
background: #ededed;
}
ul.item-list li:first-child {
border-top: none;
/*border-bottom: 1px solid #EBEBEB;*/
}
ul.item-list li:last-child {
border-top: none;
border-bottom: none;
}
ul.item-list li .label {
margin-right: 5px;
padding: 12px !important;
}
ul.item-list .pull-right span {
padding: 9px !important;
display: inline-block;
}
/* general purpose block with css3 gradient background */
.block {
line-height: 18px;
margin: 0 0 20px 0;
padding: 10px;
text-align: center;
}
/* metro dashboard states */
.metro-nav {
font-family: 'MyriadPro-Light',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.metro-nav .nav-block-orange {
background: #f37b53;
}
.metro-nav .nav-block-yellow {
background: #CE8C00;
}
.metro-nav .nav-block-blue {
background: #0DAED3;
}
.metro-nav .nav-block-green {
background: #49BB66;
}
.metro-nav .nav-block-red {
background:#de577b;
}
.metro-nav .nav-block-purple {
background: #9d4a9c;
}
.metro-nav .nav-block-grey {
background: #77808a;
}
.metro-fix-view .metro-nav-block.double {
width: 251px !important;
}
.metro-fix-view .metro-nav-block.long {
width: 251px !important;
height: 235px !important;
}
.metro-fix-view .metro-nav-block.long .value {
padding-top: 30px !important;
display: inline-block;
}
.metro-fix-view .metro-nav-block.long .value i {
font-size: 90px;
}
.metro-fix-view .metro-nav-block {
color: white;
cursor: pointer;
display: block;
float: left;
font-weight: 300;
height: 120px;
letter-spacing: 0.02em;
line-height: 20px;
margin: 0 1% 1% 0;
overflow: hidden;
position: relative;
text-decoration: none;
width: 120px !important;
z-index: 1;
}
.metro-nav .metro-nav-block.double {
width: 28%;
}
.metro-nav .metro-nav-block {
color: white;
cursor: pointer;
display: block;
float: left;
font-weight: 300;
height:114px;
letter-spacing: 0.02em;
line-height: 20px;
margin: 0 1% 1% 0;
overflow: hidden;
position: relative;
text-decoration: none;
width: 17%;
z-index: 1;
}
.metro-nav .metro-nav-block i {
font-size: 50px;
margin-top: 20px;
display: inline-block;
}
.metro-nav .metro-nav-block:last-child {
margin-right: 0;
}
.metro-nav .metro-nav-block a {
color: white;
font-size: 18px;
font-weight: 400;
height: 90%;
line-height: 16px;
overflow: hidden;
padding: 5px 10px;
position: absolute;
text-overflow: ellipsis;
vertical-align: top;
width: 88%;
text-decoration: none;
}
.metro-nav .metro-nav-block a i {
transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
}
.metro-nav .metro-nav-block a .info {
transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
}
.metro-nav .metro-nav-block a:hover i{
transform:rotate(83deg);
-moz-transform:rotate(83deg);
-webkit-transform:rotate(83deg);
-o-transform:rotate(83deg);
font-size: 140px;
opacity: 0.2;
}
.metro-nav .metro-nav-block.long a:hover i{
font-size: 200px;
}
.metro-nav .metro-nav-block.long a {
height: 96%;
}
.metro-nav .metro-nav-block a:hover .info {
transform:rotate(360deg);
-moz-transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg);
font-size: 40px;
opacity: 0.6;
}
.metro-nav .metro-nav-block:hover {
opacity:,1;
}
.metro-nav .metro-nav-block.double a {
width: 94%;
}
.metro-nav .metro-nav-block .info {
font-size: 24px;
position: absolute;
right: 10px;
top: 45px;
}
.metro-nav .metro-nav-block .status, .metro-nav .metro-nav-block .tile-status {
background-color: transparent;
width: inherit;
bottom: -10px;
font-size: 14px;
left: 10px;
min-height: 30px;
position: absolute;
}
/*task bar*/
.no-margin-bot {
margin-bottom: 0 !important;
}
.dropdown-menu.tasks-bar .task-info {
margin-bottom: 5px;
}
.dropdown-menu.tasks-bar .task-info .desc {
font-size: 13px;
font-weight: normal;
}
.dropdown-menu.tasks-bar .task-info .percent {
float: right;
font-size: 13px;
font-weight: bold;
display: inline-block;
padding-left: 10px;
}
/* mini chart and bar containers */
.bar-chart {display: none}
.line-chart {display: none}
/* Square stats */
.square-state {
}
.square-state .icon-btn {
margin-top: 0;
margin-bottom: 20px;
}
/*scroller padding*/
.scroller {
padding-right: 10px;
}
/* advance tables*/
.table-advance {
margin-bottom: 10px !important;
}
.table-advance thead {
color: #999;
}
.table-advance thead tr th{
background-color: #DDD;
color: #666;
}
.table-advance div.success, .table-advance div.info,
.table-advance div.important, .table-advance div.warning, .table-advance div.danger {
position: absolute;
margin-top:5px;
float: left;
width: 10px;
height: 10px;
margin-right: 20px !important;
}
.table-advance tr td {
border-left-width: 0px;
vertical-align: middle;
}
.table-advance tr td:first-child {
border-left-width: 1px !important;
}
.table-advance tr td.highlight:first-child a {
margin-left: 15px;
}
.table-advance td.highlight div.success {
border-left: 10px solid #A5D16C;
}
.table-advance td.highlight div.info {
border-left: 10px solid #87ceeb;
}
.table-advance td.highlight div.important {
border-left: 10px solid #f02c71;
}
.table-advance td.highlight div.warning {
border-left: 10px solid #fdbb39;
}
.table-advance td.highlight div.danger {
border-left: 10px solid #e23e29;
}
.table-striped tbody>tr:nth-child(odd)>td, .table-striped tbody>tr:nth-child(odd)>th {
background-color: #eee;
}
.table td,.table th {
text-align: center;
}
/*gritter changes*/
.gritter-close {
left:auto !important;
right: 3px !important;
}
/*calender*/
.has-toolbar.fc {
margin-top: 50px;
}
.fc-header-title {
display: inline-block;
margin-top: -50px;
vertical-align: top;
}
.fc-view {
margin-top: -50px;
overflow: hidden;
width: 100%;
}
.fc-state-default, .fc-state-default .fc-button-inner {
background: #F3F3F3 !important;
border-color: #DDDDDD;
border-style: none solid;
color: #646464;
}
.fc-state-active, .fc-state-active .fc-button-inner,
.fc-state-hover, .fc-state-hover .fc-button-inner{
background: #444444 !important;
color: #fff !important;
}
.fc-event-skin {
background-color: #4a8bc2 !important;
border-color: #4a8bc2 !important;
color: #FFFFFF !important;
}
.fc-grid th {
height: 30px;
line-height: 30px;
text-align: center;
background: #F3F3F3 !important;
}
.fc-header-title h2 {
font-size: 20px !important;
color: #404040;
}
.external-event {
cursor: move;
display: inline-block !important;
margin-bottom: 10px !important;
margin-right: 10px !important;
background: #4A8BC2 !important;
}
#external-events p input[type="checkbox"]{
margin: 0;
}
/* hide chosen search box */
.event_priority_chzn .chzn-search {
display: none !important;
}
/* widget tabs */
.widget-tabs .nav-tabs {
position: relative;
margin-top: -52px;
}
.widget-tabs .nav-tabs > li {
float: right;
}
.widget-tabs .nav-tabs {
border-bottom: none;
margin-right: 5px;
}
.widget-tabs .nav-tabs > li > a {
padding-top: 9px;
padding-bottom: 10px;
line-height: 17px;
margin-left: 0px;
margin-right: 0px;
border-left: none !important;
border-right: none !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
color: #fff;
}
.widget-tabs .nav-tabs > li:last-child > a {
border-right:0;
}
.widget-tabs .nav-tabs > li {
margin-left: -1px;
}
.widget-tabs .nav-tabs > li > a:hover {
margin-bottom: 0px;
border-bottom: 0;
margin-left: 0px;
margin-right: 0px;
border-left: 0;
border-right: 0;
background-color: rgba(256,256,256,0.6);
color: #404040;
border-top: 1px solid transparent;
}
.widget-tabs .nav-tabs > .active > a {
color: #555555;
cursor: default;
background-color: #fff;
}
.widget-tabs .widget-body.form {
padding: 0px;
}
.widget-tabs .widget-body.form .tab-pane {
padding: 15px;
padding-top: 0px;
}
.widget-tabs .widget-body.form .nav-tabs {
margin-top: -37px;
}
/*TodoList*/
.todo-list {
margin: 0px;
padding: 0px;
list-style: none;
}
.todo-list li {
padding: 1px 0 8px 0px;
margin-bottom: 5px;
border-bottom: 1px solid #EBEBEB;
}
.todo-list li:first-child {
border-top: none;
border-bottom: 1px solid #EBEBEB;
}
.todo-list li:last-child {
border-top: none;
border-bottom: none;
}
.todo-list li:before,
.todo-list li:after {
display: table;
line-height: 0;
content: "";
}
.todo-list li:after {
clear: both;
}
.todo-list .col1 {
float:left;
width:100%;
clear: both;
}
.todo-list .col2 {
float:left;
width:120px;
margin-left:-120px;
text-align: right;
}
.todo-list .col1 .cont {
float:left;
margin-right:120px;
overflow:hidden;
}
/*Timeline chat*/
.chat-form {
margin-top: 15px;
padding: 10px;
background-color: #eee;
clear: both;
}
.chat-form .input-cont {
margin-right: 55px;
}
.chat-form .input-cont input {
margin-bottom: 0px;
}
.chat-form .input-cont input{
border: 1px solid #fff !important;
width: 94%;
margin-top:0;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
.chat-form .input-cont input {
background-color: #fff !important;
}
.chat-form .input-cont input:focus{
border: 1px solid #2FADE7 !important;
}
.chat-form .btn-cont {
margin-top: -38px;
position: relative;
float: right;
}
.chat-form .btn-cont .btn {
border-left: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
margin-top: 8px;
}
.timeline-messages:before {
background: rgba(0, 0, 0, 0.1);
bottom: 0;
top: 0;
width: 2px;
}
.timeline-messages:before, .msg-time-chat:before, .msg-time-chat .text:before {
content: "";
left: 58px;
position: absolute;
top: -2px;
}
.timeline-messages, .msg-time-chat , .timeline-messages .msg-in, .timeline-messages .msg-out {
position: relative;
}
.timeline-messages .msg-in .arrow {
border-right: 8px solid #ededed !important;
}
.timeline-messages .msg-in .arrow {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
display: block;
height: 0;
left: -8px;
position: absolute;
top: 13px;
width: 0;
}
.timeline-messages .msg-out .arrow {
border-right: 8px solid #dff1ff !important;
}
.timeline-messages .msg-out .arrow {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
display: block;
height: 0;
left: -8px;
position: absolute;
top: 13px;
width: 0;
}
.msg-time-chat:first-child:before {
margin-top: 16px;
}
.msg-time-chat:before {
background:#CCCCCC;
border: 2px solid #FAFAFA;
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
height: 10px;
margin: 23px 0 0 -6px;
width: 10px;
}
.msg-time-chat:hover:before {
background: #2FADE7;
}
.msg-time-chat:first-child {
padding-top: 0;
}
.message-img {
float: left;
margin-right: 30px;
overflow: hidden;
}
.message-img img {
display: block;
height: 44px;
width: 44px;
}
.message-body {
margin-left: 80px;
}
.msg-time-chat .msg-in .text {
background: #ededed;
padding: 10px;
}
.msg-time-chat .msg-out .text {
background: #dff1ff;
padding: 10px;
}
.msg-time-chat p {
margin: 0;
color: #504e4f;
}
.msg-time-chat .attribution {
color: #504e4f;
font-size: 11px;
margin: 0px 0 5px;
}
.msg-time-chat {
overflow: hidden;
padding:8px 0;
}
.msg-in a, .msg-in a:hover{
color: #fff;
padding: 2px 4px;
background: #818181;
text-decoration: none;
}
.msg-out a, .msg-out a:hover{
color: #fff;
padding: 2px 4px;
background: #3cabec;
text-decoration: none;
}
/* Input icons */
/* input with right aligned and colored icons */
.input-icon input {
padding-right: 25px !important;
}
.input-icon .input-info,
.input-icon .input-error,
.input-icon .input-warning,
.input-icon .input-success {
display: inline-block !important;
position: relative !important;
top: 3px;
right: 25px !important;
font-size: 16px;
}
.input-icon .input-info {
color:#27a9e3;
}
.input-icon .input-error {
color:#B94A48;
}
.input-icon .input-warning {
color: #C09853;
}
.input-icon .input-success {
color: #468847;
}
/* input with left aligned icons */
.input-icon.left i {
color: #ccc;
display: block !important;
position: absolute !important;
z-index: 1;
margin: 6px 2px 4px 10px;
width: 16px;
height: 16px;
border1: 1px solid #ddd;
font-size: 16px;
text-align: center;
}
.input-icon.left input {
padding-left: 33px !important;
}
/* Modify tags input plugin css */
div.tagsinput {
height: 40px !important;
margin: 0 !important;
padding: 5px !important;
overflow: auto !important;
}
div.tagsinput span.tag {
background: #CDE69C !important;
color: #638421 !important;
border: 0 !important;
padding: 3px 6px !important;
margin-bottom: 4px !important;
}
div.tagsinput input {
padding: 3px 6px !important;
}
div.tagsinput span.tag a {
color: #82AD2B !important;
}
div.tagsinput .not_valid {
color: #fff !important;
padding: 3px 6px !important;
background-color: #e02222 !important;
}
/* File uploader plugin css changes */
.fileupload .close {
position: relative;
top:4px !important;
}
/*Form wizard*/
.custom-wizard-pills .nav-pills > li > a {
padding-top: 30px;
padding-bottom: 30px;
background: #eee;
}
.custom-wizard-pills .nav-pills {
margin: 0 auto 30px;
width: 50%;
}
.custom-wizard-pills .nav-pills > li {
margin-right: 20px;
}
.custom-wizard-pills .nav-pills li.active a, .custom-wizard-pills .nav-pills li a:hover {
color: #fff;
}
.custom-wizard-pills .nav-pills > li > a {
padding-left: 30px;
padding-right: 30px;
color: #757575;
}
.pager .previous > a, .pager .previous > span {
float: left;
margin-right: 5px;
}
.pager .next > a, .pager .next > span {
float: right;
margin-left: 5px;
}
#tabsleft ul li a span {
display: block;
}
#tabsleft ul li a .strong {
font-weight: bold;
}
#tabsleft > .nav-tabs > li > a {
background: #eee;
color: #838383;
}
#tabsleft > .nav-tabs > li.active > a {
background: #fff;
color: #5a5a5a;
}
/*ck editor*/
.cke_top, .cke_bottom {
background: #F5F5F5 !important;
background: -moz-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
background: -webkit-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
background: -o-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
box-shadow: none;
padding: 6px 8px 2px;
}
.cke_top {
border-bottom: 1px solid #cccccc !important;
}
.cke_chrome {
border: 1px solid #cccccc !important;
box-shadow: none !important;
display: block;
padding: 0;
}
/*404 page*/
.error-404 {
background: url("../img/404bg.jpg")no-repeat center center fixed #393939;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.error-wrap.error-wrap-404 {
width: 875px;
margin: 12% auto 0;
color: #fff;
text-align: center;
}
.error-wrap .metro.big {
float: left;
width: 340px;
height: 340px;
margin: 0 10px 10px 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.error-wrap.error-wrap-404 .metro.double {
float: left;
width: 340px;
height: 165px;
margin: 0 10px 10px 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.error-wrap.error-wrap-404 .home {
color: #fff;
font-size: 70px;
text-decoration: none;
margin-top: 40px;
display: inline-block;
}
.error-wrap .metro.double .page-txt {
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
font-size: 20px;
}
.error-wrap.error-wrap-404 .metro {
float: left;
}
.error-wrap.error-wrap-404 .metro.big span {
padding-top: 160px;
}
/*500 page*/
.error-500 {
background: url("../img/500bg.jpg")no-repeat center center fixed #393939;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.error-wrap {
width: 100%;
margin: 12% auto 0;
color: #fff;
text-align: center;
}
.error-wrap h1 {
font-size: 45px;
}
.error-wrap h2 {
font-size: 25px;
}
.error-wrap .metro {
width: 165px;
height: 165px;
display: inline-block;
margin: 0 10px 10px 0;
}
.error-wrap .metro span {
font-size: 70px;
padding-top: 70px;
display: inline-block;
}
.error-wrap p {
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
padding-top: 20px;
font-size: 16px;
}
.error-wrap p a {
color: #48cffe;
}
.alpha_green {
background: rgba(142,191,72,0.9);
}
.alpha_yellow {
background: rgba(245,193,70,0.9);
}
.alpha_purple {
background: rgba(175,94,197,0.9);
}
.alpha_deep-red{
background: rgba(153,63,62,0.9);
}
.alpha_navy-blue{
background: rgba(95,124,180,0.9);
}
.alpha_blue{
background: rgba(72,131,238,0.9);
}
.alpha_terques {
background: rgba(75,183,192,0.9);
}
.alpha_red {
background: rgba(232,104,127,0.9);
}
.alpha_gray {
background: rgba(89,88,88,0.9);
}
/*faq list*/
ul.faq-list li {
line-height: 30px;
}
ul.faq-list li a{
background: #eee;
margin-bottom: 1px;
color: #868686;
}
ul.faq-list li a:hover, ul.faq-list li a.active{
margin-bottom: 1px;
color: #fff;
}
/*search result*/
.search-result label {
width: 0px !important;
}
.search-result .controls {
margin-left: 100px;
float: left;
margin-right: 10px;
}
.search-result label, .search-result input, .search-result button {
float: left;
}
.classic-search {
margin-bottom: 30px;
}
.classic-search h4 {
margin-bottom: 3px;
}
.classic-search h4 a {
color: #314558;
}
.file-search tr td img {
float: left;
padding-right: 10px;
}
.file-search tr td strong {
display: block;
padding-top: 5px;
}
.file-search tr td {
vertical-align: middle;
}
.product-search {
background: #F7F7F7;
margin-bottom: 15px;
}
.product-text img {
float: left;
margin-right: 15px;
}
.product-text, .product-text .product-text-info {
overflow: hidden;
}
.product-info {
color: #616161;
float: left;
font-size: 12px;
margin-bottom: 5px;
padding: 15px 30px;
text-transform: uppercase;
}
.product-info span {
color: #e18090;
display: block;
font-size: 25px;
font-weight: 200;
margin-top: 10px;
text-transform: uppercase;
}
/*mail-btn*/
.mail-btn .btn {
background-image: -moz-linear-gradient(center top , #FDFDFD 0%, #EAEAEA 100%);
box-shadow: none;
}
.mail-btn .btn:hover, .mail-btn .btn:focus {
background: none;
box-shadow: none;
}
.mail-btn .btn-group > .btn + .btn {
margin-left: 0;
}
/*alert*/
.alert {
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
/*error*/
.error-page {display: block; text-align: center;}
.error-page h1 {color: #adafb2; font-size: 30px; font-weight: bold; line-height: 50px; padding: 20px 0}
.error-page h1 strong {color: #adafb2; font-size: 60px; font-weight: bold}
.error-page p {color: #adafb2; font-size: 20px; font-weight: bold;}
/*profile*/
.profile-pic {
display: block;
margin-bottom: 10px;
}
.nav-stacked > li > a {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
/*accordion-group*/
.accordion-group a {
text-decoration: none;
}
.accordion-group {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
/*tab*/
.custom-tab .nav-tabs > li > a {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
.custom-tab > .nav-tabs {
border: medium none;
margin: 0;
}
.custom-tab > .tab-content {
/*background-color: #FFFFFF;*/
border: 1px solid #DDDDDD;
border-radius: 0 0 0 0;
padding: 10px;
}
/*tree view*/
.widget-body > .actions {
float: right;
margin: 6px 0 0;
padding: 3px 5px 2px;
}
/*blog*/
.blog {
border-bottom: 1px solid #dcdbdb;
display: inline-block;
margin: 10px 0;
}
/*.blog img {margin-bottom: 10px; width: 100%; margin-top: 12px}*/
.blog h2, .blog h2 a{
color: #868686 !important;
font-size: 28px;
font-weight: normal;
margin: 15px 0 0 0;
padding: 0;
line-height: normal;
}
.blog h2 a:hover {
color: #4A8BC2 !important;
}
.blog p {
margin-bottom: 20px;
line-height: 24px
}
.blog a.blog-features {
display: block;
text-align: center;
margin-bottom: 10px;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
padding: 10px;
font-weight: normal;
background: #dfdfdf;
color: #969696;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog .author {
color: #3b3431;
}
.blog .blog-features i {
font-size: 35px;
margin: 5px 0;
display: inline-block;
}
.blog .orange .blog-features.active, .blog .orange .blog-features:hover ,.istar-orange {
background: #f37b53;
color: #fff;
}
.blog .green .blog-features.active, .blog .green .blog-features:hover ,.istar-green {
background: #0ca389;
color: #fff;
}
.blog .red .blog-features.active, .blog .red .blog-features:hover ,.istar-red {
background: #de577b;
color: #fff;
}
.blog .yellow .blog-features.active, .blog .yellow .blog-features:hover ,.istar-yellow {
background: #fccb2f;
color: #fff;
}
.blog .date p{
margin: 0;
padding: 0px;
line-height: 30px;
}
.blog .date .day, .blog .date .month {
display: block;
}
.blog .date .day {
font-size: 35px;
margin: 5px 0;
}
.blog .date .month {
text-transform: uppercase;
font-size: 20px;
}
.blog-side-bar {
padding: 15px 0px 1px 10px;
color: #fff;
margin-bottom: 20px;
}
.blog-side-bar h2 {
text-transform: uppercase;
font-size: 18px;
margin: 0;
padding: 0;
line-height: normal;
font-family: "MyriadPro-Regular","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.blog-side-bar ul {
margin-top: 15px;
margin-left: 0;
}
/*blue box*/
.blog-side-bar.blue-box {
background: #66bbfc;
}
.blog-side-bar.blue-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.blue-box ul li a {
background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.blue-box ul li a:hover {
background: #fff;
}
.blog-side-bar.blue-box ul li a:hover i, .blog-side-bar.blue-box ul li a:hover span{
color: #606060;
}
/*green box*/
.blog-side-bar.green-box {
background: #0ca389;
}
.blog-side-bar .green-box-blog {
background: rgba(0, 0, 0, 0.2);
padding: 2%;
width: 93%;
display: inline-block;
}
.green-box-blog a{color: #fff}
.green-box-blog a:hover{text-decoration: underline;}
.blog-side-bar.green-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.green-box ul li a {
background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 80px;
height: 80px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.green-box ul li a:hover {
background: #fff;
}
.blog-side-bar.green-box ul li a:hover i, .blog-side-bar.green-box ul li a:hover span{
color: #606060;
}
/*公文、新闻右侧分类*/
.blog-side-bar.group-box {
background: #0DAED3;
margin-top: 10px;
}
.blog-side-bar.group-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.group-box ul li a {
background: #da6e4b;
padding: 10px;
display: inline-block;
text-align: center;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.group-box ul li a:hover {
background: #fff;
}
.blog-side-bar.group-box ul li a:hover i, .blog-side-bar.group-box ul li a:hover span{
color: #606060;
}
/*-------*/
/*orange box*/
.blog-side-bar.orange-box {
background: #f37b53;
}
.blog-side-bar.orange-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.orange-box ul li a {
background: #da6e4b;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.orange-box ul li a:hover {
background: #fff;
}
.blog-side-bar.orange-box ul li a:hover i, .blog-side-bar.orange-box ul li a:hover span{
color: #606060;
}
/*-------*/
.blog-side-bar ul li i {
font-size: 30px;
width: 100%;
margin-top: 10px;
}
.blog-side-bar ul li span.large {
font-size: 25px;
width: 100%;
margin-top: 10px;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
text-transform: uppercase;
}
.blog-side-bar ul li i, .blog-side-bar ul li span {
display: inline-block;
color: #fff;
}
.blog-side-bar ul li:last-child {
margin-right: 0;
}
.blog-side-bar ul li a {
display: block;
line-height: 35px;
text-decoration: none;
}
.blog-side-bar h5, .blog-side-bar h5 a {
padding: 0;
margin: 10px 0 0 0;
line-height: normal;
font-weight: bold;
color: #fff;
}
.blog-side-bar p {
margin-bottom: 0;
}
.blog-side-bar ul.tag {
width: 100%;
display: inline-block;
}
.blog-side-bar ul.tag li{
float: left;
margin-right: 10px;
border-bottom: none;
margin-bottom: 10px;
line-height: 18px;
}
.blog-side-bar ul.tag li a {
color: #fff;
padding: 0px 10px;
background: rgba(0, 0, 0, 0.2);
}
.blog-side-bar ul.tag li a:hover {
background: #fff;
color: #606060;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog h2{text-align: center;}
.show-right {
float: right !important;
}
.post-comment .color-red {
color: #FF0000;
}
.blog-side-bar.red-box {
background: #de577b;
}
.blog .well .label{
font-size: 14px;
padding: 10px;
color: #fff;
}
/*custom pagination*/
.custom-pagination {
margin: 10px 0 20px;
}
.custom-pagination ul {
display: inline-block;
margin-bottom: 0;
margin-left: 0;
}
.custom-pagination ul > li {
display: inline;
margin: 0 5px;
}
.custom-pagination ul > li > a {
border: 1px solid #dcdbdb;
color: #717171;
padding: 5px 10px;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.custom-pagination ul > li > a:hover,
.custom-pagination ul > li > a:focus,
.custom-pagination ul > .active > a,
.custom-pagination ul > .active > span {
background: #4a8bc2;
border: 1px solid #4a8bc2;
color: #fff;
padding: 5px 10px;
text-decoration: none;
}
/*invoice-list*/
.invoice-list h5 {
text-transform: uppercase;
}
.invoice-block {
text-align: right;
}
ul.amounts li {
padding:10px;
margin-bottom: 5px;
background: #f1f1f1;
}
.invoice-date-range .control-group label, .invoice-date-range .control-group input {
float: left;
}
.invoice-date-range .control-group label {
width: 70px;
}
.invoice-date-range .control-group input {
margin-right: 15px;
}
.billing-form label{
width: 25%;
float: left;
}
.invoice-input input {
margin-bottom: 0;
}
/*about us*/
.about-us img{
width: 100%;
height: 188px;
}
.about-us .info {
height: 188px;
color: #fff;
float: left;
width: 100%;
}
.about-us .terques {
background: #2fbfca;
}
.about-us .red {
background: #de577b;
}
.about-us .green {
background: #8ebf48;
}
.about-us .blue {
background: #66bbfc;
}
.about-us .yellow {
background: #f5c146;
}
.about-us .orange {
background: #f37b53;
}
.about-us .info h1 {
font-size: 30px;
text-align: center;
padding-top: 45px;
line-height: normal;
margin-bottom: 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.about-us .info p {
font-size: 14px;
text-align: center;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
text-transform: uppercase;
}
.about-us .info .social-links {
text-align: center;
display: inline-block;
width: 100%;
}
.about-us .info .social-links a {
margin: 0 5px;
font-size: 20px;
color: rgba(256,256,256,0.5);
text-decoration: none;
}
.about-us .info .social-links a:hover {
color: #fff;
}
/*contact us*/
.contact-us h3 {
text-align: center;
padding-bottom:0px;
margin:0;
}
.contact-us h4 {
color: #fff !important;
margin:0;
padding: 12px 11px 10px 15px;
}
.contact-us .feedback p {
text-align: center;
}
.one-half {
margin-right: 21px;
}
.feedback .control-group {
margin-bottom: 15px;
}
.datepicker.dropdown-menu {z-index: 10000;}
.btn-navbar.collapsed i {color: #fff}
/*editable table*/
#editable-sample tr td input.small {
width: 160px !important;
}
/*filter effect*/
.filter {
background: #E5E5E5;
margin-right: 10px;
line-height: 33px;
padding: 0 15px;
font-size: 12px;
color: #555;
float: left;
font-weight: normal;
cursor: pointer;
transition: all 0.5s ease-in-out 0s;
}
.filter:hover, .filter.selected {
background: #4A8BC2;
color: #FFFFFF;
transition: all 0.5s ease-in-out 0s;
text-decoration: none!important
}
.filter.last-child {
margin-right: 0px !important;
}
.subtitle,.subtitle p a{color: #888;}
.subtitle{padding: 5px;margin-top: 10px;border-top: 2px solid #b94a48;text-align: center;}
.subtitle p{padding: 5px;margin: 0;color: #888;}
.docBody p{text-indent: 1.5em}
.docAttach{margin-top: 20px;}
.docAttach li{display: inline-block;text-align: center;}
.docAttach ul li a {background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
line-height: 35px;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.docAttach ul li a:hover {
background: #ddd;
}
.docAttach ul li i, .docAttach ul li span {
display: inline-block;
color: #fff;
}
.docAttach ul li a:hover i, .docAttach ul li a:hover span {
color: #606060;}
.docAttach ul li i {
font-size: 30px;
width: 100%;
margin-top: 10px;
}
.media-heading,.media-body span{color: #888}
.media-body .pull-left img{margin-right: 10px;}
.dropdown-navbar .msg {
width: 320px;
border-top: 1px solid #f5f6f7
}
.dropdown-navbar .msg img {
float: left;
width: 40px;
height: 40px;
margin-right: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .msg div {
margin-bottom: 20px
}
.dropdown-navbar .msg .msg-title {
font-weight: 700;
color: #65707f;
float: left
}
.dropdown-navbar .msg .msg-time {
float: right;
color: #a2a7b0
}
.dropdown-navbar .msg p {
color: #b2b6c2;
width: 270px;
display: inline-block;
white-space: normal;
margin: 0
}
.dropdown-navbar .notify {
width: 270px;
padding-left: 10px;
border-top: 1px solid #f5f6f7;
position: relative
}
.dropdown-navbar .notify p {
display: inline-block;
padding-top: 5px;
white-space: normal;
margin-top: 0
}
.dropdown-navbar .notify .badge {
position: absolute;
right: 5px;
top: 12px;
padding: 2px 7px
}
.dropdown-navbar .notify [class*=icon-] {
display: inline-block;
float: left;
color: #fff;
font-size: 14px;
padding: 8px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify img {
float: left;
width: 30px;
height: 30px;
margin-right: 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify [class*=icon-].pink {
background: #e36781
}
.dropdown-navbar .notify [class*=icon-].green {
background: #74c054
}
.dropdown-navbar .notify [class*=icon-].orange {
background: #e0b447
}
.dropdown-navbar .notify [class*=icon-].blue {
background: #66badf
}
/***** VERTICAL WIZARD *****/
.actionBar {
padding: 20px; position: relative; overflow: hidden; clear: both;
}
.actionBar .loader { float: left; display: none; }
.actionBar a {
float: right; display: inline-block; padding: 7px 15px; background: #0F87AD; color: #fff; margin-left: 5px; font-weight: bold;
line-height: 21px; border: 1px solid #0F7280;
}
.actionBar a:hover { text-decoration: none; background: #485B79; color: #fff; border: 1px solid #3f526f; }
.actionBar a.buttonDisabled { background: #eee; border: 1px solid #ccc; color: #999; }
.actionBar a.buttonDisabled:hover { background: #eee; color: #999; cursor: default; }
.verwizard .verticalmenu { list-style: none; float: left;}
.verwizard .verticalmenu li { margin-bottom: 2px; }
.verwizard .verticalmenu a { display: block; padding: 10px; color: #999; }
.verwizard .verticalmenu a:hover { text-decoration: none; }
.verwizard .verticalmenu a.selected { background: #0F87AD; color: #fff; }
.verwizard .verticalmenu a.done { background: #999; color: #fff; }
.verwizard .verticalmenu a span { font-weight: bold; }
.wizardMain {
border: 1px solid #ddd; padding: 20px;
}
.wizardMain h4 {
padding-bottom: 20px; border-bottom: 1px solid #ddd;
}
.wizardMain p { margin: 20px 0; }
label.error {
font-weight: bold;
color: #999;
padding: 2px 8px;
}
|
public/css/style.css
|
html {
min-height: 100%;
position: relative;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-rendering: optimizelegibility
}
body {
padding-top: 40px;
padding-bottom: 0;
min-height: 100%;
font-family: Helvetica, sans-serif,"Microsoft YaHei","simsun";
-webkit-font-smoothing: antialiased
}
[class*=" icon-"],[class^=icon-] {
display: inline-block;
text-align: center
}
div, input, select, textarea, span, img, table, td, th, p, a, button, ul, li {
border-radius: 0 !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
}
:focus {
outline: 0!important
}
#main-container {
padding: 0
}
#btn-scrollup {
background: #999;
opacity: .3;
position: fixed;
bottom: 25px;
right: 40px;
display: none
}
#btn-scrollup:hover {
background: #999;
opacity: .8
}
/*.navbar {
padding-left: 0;
padding-right: 0;
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
position: relative;
z-index: 990
}
Partoo修改:让navbar恢复bootstrap初始,可以控制fixed-top*/
.navbar .navbar-inner {
position: relative;
margin: 0;
padding-left: 0;
padding-right: 0;
min-height: 40px;
border: 0;
background-image: none;
filter: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0
}
/*.navbar.navbar-fixed {
position: fixed;
top: 0;
left: 0;
right: 0
}*/
.navbar.navbar-fixed~#main-container {
margin-top: 40px
}
#sidebar.sidebar-collapsed+#main-content {
margin-left: 43px
}
#sidebar.sidebar-collapsed+#main-content #breadcrumbs.fixed {
left: 43px
}
#sidebar span{letter-spacing:0.1em}
#main-content {
margin-left: 200px;
padding: 10px 20px 20px
}
.navbar .brand {
font-size: 20px;
padding:5px 10px
}
.flaty-nav {
height: 100%;
padding-left: 5px
}
.flaty-nav>li {
line-height: 40px;
max-height: 40px;
padding: 0;
position: relative
}
.flaty-nav>li:first-child,.flaty-nav>li.no-border {
border-left: 0
}
.flaty-nav>li>a>[class*=icon-] {
font-size: 17px;
display: inline-block;
width: 20px;
text-align: center
}
.flaty-nav>li>a>.badge {
position: relative;
top: -10px;
left: -9px;
border-width: 2px;
border-style: solid;
padding-right: 5px;
padding-left: 5px;
margin-right: -10px;
}
.flaty-nav .user-profile {
padding-right: 0
}
.flaty-nav .user-menu {
line-height: 35px
}
.flaty-nav .nav-user-photo {
margin: -3px 8px 0 0;
border: 2px solid rgba(255,255,255,.5);
max-width: 33px!important
}
.flaty-nav li:last-child a [class^=icon-] {
display: inline-block;
width: 1.25em;
text-align: center
}
/*.dropdown-navbar {
padding: 0;
border: 0;
top: 38px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0 4px 6px rgba(30,30,100,.25)!important;
-moz-box-shadow: 0 4px 6px rgba(30,30,100,.25)!important;
box-shadow: 0 4px 6px rgba(30,30,100,.25)!important
}*/
.dropdown-navbar {
min-width: 240px;
max-width: 400px
}
.dropdown-navbar>li {
padding: 0 13px
}
.dropdown-navbar>li:hover {
background-color: #eeeff3!important
}
.dropdown-navbar>li.nav-header {
padding: 12px 15px;
padding-right: 6px;
font-size: 13px;
font-weight: 700;
text-transform: none
}
.dropdown-navbar>li.nav-header>[class*=icon-] {
color: #fff;
float: right;
margin-top: 3px
}
.dropdown-navbar>li>[class*=icon-],.dropdown-navbar>li>a>[class*=icon-] {
margin-right: 5px!important;
color: #8f99aa;
font-size: 14px
}
.dropdown-navbar>li>a {
padding: 10px 2px;
margin: 0;
font-size: 12px;
line-height: 16px;
color: #555;
}
.dropdown-navbar>li>a:active,.dropdown-navbar>li>a:hover {
background: 0;
background-color: transparent;
color: #555;
background-image: none;
filter: none
}
.dropdown-navbar>li>a .progress {
margin-bottom: 0;
margin-top: 4px
}
.dropdown-navbar>li>a .badge {
line-height: 16px;
padding-right: 4px;
padding-left: 4px;
font-size: 12px
}
.dropdown-navbar>li.more {
border-top: 1px solid #e9e9e9;
background: #f7f8f9
}
.dropdown-navbar>li.more>a {
color: #4f99c6;
text-align: center;
font-size: 13px;
padding-top: 9px;
padding-bottom: 9px
}
.dropdown-navbar>li.more>a>[class*=icon-] {
float: right;
font-size: 16px;
padding: 1px 0 2px 1px;
margin-top: -3px;
color: #4f99c6;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar>li.more>a:hover {
background-color: transparent;
color: #4f99c6;
text-decoration: none
}
.dropdown-navbar>li.more>a:hover>[class*=icon-] {
text-decoration: none
}
.navbar .nav>li>.dropdown-navbar:after,.navbar .nav>li>.dropdown-navbar:before {
display: none
}
.user-profile .dropdown-navbar {
min-width: 180px
}
.dropdown-navbar .msg {
width: 320px;
border-top: 1px solid #f5f6f7
}
.dropdown-navbar .msg img {
float: left;
width: 40px;
height: 40px;
margin-right: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .msg div {
margin-bottom: 20px
}
.dropdown-navbar .msg .msg-title {
font-weight: 700;
color: #65707f;
float: left
}
.dropdown-navbar .msg .msg-time {
float: right;
color: #a2a7b0
}
.dropdown-navbar .msg p {
color: #555;
width: 270px;
display: inline-block;
white-space: normal;
margin: 0
}
.dropdown-navbar .notify {
width: 270px;
padding-left: 10px;
border-top: 1px solid #f5f6f7;
position: relative
}
.dropdown-navbar .notify p {
display: inline-block;
padding-top: 5px;
white-space: normal;
margin-top: 0
}
.dropdown-navbar .notify .badge {
position: absolute;
right: 5px;
top: 12px;
padding: 2px 7px
}
.dropdown-navbar .notify [class*=icon-] {
display: inline-block;
float: left;
color: #fff;
font-size: 14px;
padding: 8px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify img {
float: left;
width: 30px;
height: 30px;
margin-right: 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
#sidebar {
width: 200px;
position: absolute
}
#sidebar:before {
content: "";
display: block;
width: 200px;
position: fixed;
bottom: 0;
top: 0;
z-index: 0
}
#sidebar.sidebar-fixed {
position: fixed;
z-index: 10
}
.nav-list li [class^=icon-] {
width: auto
}
.nav-list {
margin: 0;
padding: 0;
list-style: none
}
.nav-list>li {
display: block;
padding: 0;
margin: 0;
border: 0;
position: relative
}
.nav-list .search-form {
margin-top: 16px;
margin-bottom: 16px
}
.nav-list .search-pan {
height: 38px
}
.nav-list .search-pan input {
border: 0;
border-bottom: 1px solid rgba(255,255,255,.3);
padding: 0;
margin-bottom: 0;
padding: 8px 0 2px;
margin-bottom: 5px;
width: 156px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0
}
.nav-list .search-pan input::-webkit-input-placeholder {
color: #fff
}
.nav-list .search-pan input:-moz-placeholder {
color: #fff
}
.nav-list .search-pan input::-moz-placeholder {
color: #fff
}
.nav-list .search-pan input:-ms-input-placeholder {
color: #fff
}
.nav-list .search-pan button {
background: transparent;
padding-right: 0;
border: 0
}
.nav-list .search-pan button>i {
padding: 8px 0
}
.nav-list>li>a {
display: block;
height: 38px;
line-height: 36px;
margin: 0;
padding: 0 16px 0 7px!important;
color: #fff!important;
text-shadow: none!important;
font-size: 13px;
text-decoration: none
}
.nav-list .search-pan button>i,.nav-list>li>a>i {
display: inline-block;
vertical-align: middle;
min-width: 30px;
text-align: center;
font-size: 18px;
font-weight: 400
}
.nav-list>li>a .arrow {
display: inline-block;
width: 14px!important;
height: 14px;
line-height: 14px;
font-size: 18px;
padding: 0;
float: right;
margin-top: 11px
}
.nav-list>li.separator {
height: 3px;
background-color: transparent;
position: static;
margin: 1px 0;
box-shadow: none
}
.nav-list>li.open>a {
font-weight: 700!important
}
.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active {
font-weight: 700!important;
font-size: 13px
}
.nav-list>li.active>a>[class*=icon-] {
font-weight: 400
}
.nav-list>li.active>a:after {
display: block;
content: "";
position: absolute!important;
right: 0;
top: 4px;
border: 8px solid transparent;
border-width: 14px 10px
}
.nav-list>li.active.open>a:after {
display: none
}
.nav-list>li.active .submenu,.nav-list>li.open .submenu {
display: block
}
.nav-list>li .submenu {
display: none;
list-style: none;
margin: 0;
padding: 0;
position: relative
}
.nav-list>li .submenu>li {
margin-left: 0;
position: relative
}
.nav-list>li .submenu>li>a {
display: block;
position: relative;
padding: 7px 0 8px 42px;
margin: 0
}
.nav-list>li .submenu>li>a:focus,.nav-list>li .submenu>li>a:hover {
text-decoration: none
}
.nav-list>li .submenu>li:before {
content: "";
display: block;
position: absolute;
width: 9px;
left: 25px;
top: 17px;
border-top: 1px dashed rgba(255,255,255,.5)
}
.nav-list>li .submenu>li:after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 22px;
width: 0;
border-left: 1px dashed rgba(255,255,255,.5)
}
#sidebar-collapse {
text-align: center;
padding: 3px 0;
position: relative
}
#sidebar-collapse>[class*=icon-] {
display: inline-block;
cursor: pointer;
font-size: 14px;
color: #fff;
border: 1px solid rgba(255,255,255,.2);
padding: 1px 6px 1px 5px;
line-height: 18px;
border-radius: 100%;
position: relative
}
#sidebar-collapse:before {
content: "";
display: inline-block;
height: 0;
border-top: 1px solid rgba(255,255,255,.2);
position: absolute;
left: 15px;
right: 15px;
top: 13px
}
#sidebar.sidebar-collapsed {
width: 42px
}
#sidebar.sidebar-collapsed:before {
width: 42px
}
#sidebar.sidebar-collapsed+#main-content {
margin-left: 43px
}
#sidebar.sidebar-collapsed+#main-content #breadcrumbs.fixed {
left: 43px
}
.sidebar-collapsed .nav-list>li>a {
position: relative
}
.sidebar-collapsed .nav-list>li.active>a:after {
display: none
}
.sidebar-collapsed .nav-list .search-pan input,.sidebar-collapsed .nav-list>li>a>span {
display: none;
position: absolute;
left: 42px;
top: 0;
width: 158px;
height: 38px;
line-height: 38px;
z-index: 121;
box-shadow: 2px 0 6px rgba(50,50,50,.2);
padding-left: 12px
}
.sidebar-collapsed .nav-list .search-pan input {
height: 26px;
line-height: 20px
}
.sidebar-collapsed .nav-list>li>a.dropdown-toggle>span {
box-shadow: none;
border: 0;
top: 0;
left: 42px;
width: 165px
}
.sidebar-collapsed .nav-list>li>a .arrow {
display: none
}
.sidebar-collapsed .nav-list>li>a:hover:before {
width: 2px
}
.sidebar-collapsed .nav-list .search-form:hover .search-pan input,.sidebar-collapsed .nav-list>li:hover>a>span {
display: block
}
.sidebar-collapsed .nav-list>li.active>a:after {
border-width: 10px 6px;
top: 8px
}
.sidebar-collapsed .nav-list>li.active.open>a:after {
display: block
}
.sidebar-collapsed .nav-list>li.active.open>.submenu>li.active>a:after {
display: none
}
.sidebar-collapsed .nav-list>li>ul.submenu {
position: absolute;
z-index: 120;
left: 44px;
top: 0;
width: 175px;
box-shadow: 2px 0 6px rgba(50,50,50,.2);
padding-top: 40px;
padding-bottom: 2px;
display: none!important
}
.sidebar-collapsed .nav-list>li>ul.submenu li:before,.sidebar-collapsed .nav-list>li>ul.submenu li:after {
display: none
}
.sidebar-collapsed .nav-list>li>ul.submenu li>a {
border-left: 0;
margin-left: 0;
padding-left: 24px
}
.sidebar-collapsed .nav-list>li>ul.submenu li>a>[class*=icon-]:first-child {
width: 16px
}
.sidebar-collapsed .nav-list>li>ul.submenu li.active>a>[class*=icon-]:first-child,.sidebar-collapsed .nav-list>li>ul.submenu li:hover>a>[class*=icon-]:first-child {
left: 7px
}
.sidebar-collapsed .nav-list>li:hover>ul.submenu {
display: block!important
}
.sidebar-collapsed #sidebar-collapse:before {
left: 5px;
right: 5px
}
.sidebar-collapsed #sidebar-collapse>[class*=icon-] {
font-size: 13px;
padding: 0 5px 0 4px;
line-height: 15px;
border-width: 1px
}
/* Login pages */
.dark-login {
background: #1f1f1f;
}
.login-wrap .blue {
background: #48b5ee;
}
.blue-login {
background: #0072c6;
}
.light-login .login-container {
border: 1px solid #5c5c5c;
}
.login-container {
width: 250px;
position: fixed;
top: 40%;
left: 50%;
margin-left: -175px;
padding: 15px 30px;
background: #fff;
margin-top: -200px;
}
.sign-container {
max-width: 800px;
}
.login-container .checkbox{
padding-left: 30px !important;
}
.login-container.opacity {
background: rgba(255, 255, 255, 0.6)
}
.login-header {
padding: 10px;
margin-bottom: 10px;
background-color: #17a6b6;color: #fff
}
.login-field {
margin-bottom: 10px;
position: relative;
}
.login-button {
margin-top: 20px;
margin-bottom: 10px;
position: relative;
}
.forgot-password {
margin: 15px 0 5px;
}
/* login page */
.login-wrap {
width: 960px;
margin: 5% auto 0;
color: #fff;
text-align: center;
}
.login-wrap .metro {
height: 150px;
float: left;
margin: 0 10px 10px 0;
}
.login-wrap .double-size {
width: 310px;
}
.login-wrap .single-size {
width: 150px;
}
.login-wrap .red {
background: #e8687f;
}
.login-wrap .green {
background: #90bb4f;
}
.login-wrap .yellow {
background: #f5c147;
}
.login-wrap .terques {
background: #38bec9;
}
.login-wrap .navy-blue {
background: #5f7cb4;
}
.login-wrap .deep-red {
background: #993f3e;
}
.login-wrap .blue {
background: #48b5ee;
}
.login-wrap .purple {
background: #af5ec5;
}
.login-btn, .login-btn:hover {
background: none;
font-size: 28px;
margin-top: 65px;
color: #fff;
}
.login-btn i {
font-size: 22px !important;
padding-top: 0 !important;
display: inline !important;
}
.login-wrap .single-size a.social-link, .login-wrap .double-size a.social-link {
margin-top: 45px;
color: #fff;
display: inline-block;
text-decoration: none;
}
.login-wrap .single-size a.social-link i , .login-wrap .double-size a.social-link i{
font-size: 20px;
display: block;
padding-top: 0;
padding-bottom: 10px;
}
.login-footer {
width: 100%;
display: inline-block;
}
.remember-hint input[type="checkbox"]{
margin-top: -2px;
}
.forgot-hint a{
color: #fff;
margin-right: 10px;
}
/*lock page*/
body.lock {
background: #393939;
}
.lock-header {
margin-top: 7%;
text-align: center;
}
.lock .lock-wrap {
width: 800px;
margin: 5% auto 0;
color: #fff;
text-align: center;
}
.lock-wrap .metro {
height: 165px;
float: left;
margin: 0 10px 10px 0;
}
.lock-wrap .double-size {
width: 38%;
}
.lock-wrap .single-size {
width: 20%;
}
.lock-wrap .blue {
background: #66bbfc;
}
.lock-wrap .green {
background: #0ca389;
}
.lock-wrap .terques {
background: #36b1b9;
}
.lock-wrap .gray {
background: #595858;
}
.lock-wrap .orange {
background: #f37b53;
}
.lock-wrap .red {
background: #e8687f;
}
.lock-wrap h1 {
font-size: 25px;
text-align: center;
margin-bottom: 0;
padding-bottom: 0;
line-height: normal;
padding-top: 50px;
}
.lock-wrap p {
font-size: 15px;
text-align: center;
margin-bottom: 0;
padding-bottom: 0;
line-height: normal;
}
.lock-input {
margin-top: 60px;
}
.lock-input input {
height: 30px;
background: #fff;
box-shadow: none;
border:1px solid #fff;
}
.lock-input input:focus {
border:1px solid #fff !important;
}
.lock-input button.btn {
height: 40px;
background: #3db5a1;
border:1px solid #3db5a1 !important;
}
.lock-input button.btn i {
color: #fff;
font-size: 14px;
}
.single-size i {
font-size: 80px;
display: block;
padding-top: 30px;
}
.single-size span, .double-size span{
font-size: 20px;
}
.double-size span {
padding: 0 20px;
}
.double-size i {
font-size: 70px;
display: inline-block;
vertical-align: middle;
}
a.user-position {
margin-top: 40px;
display: inline-block;
text-decoration: none;
color: #fff;
}
a.user-position:hover {
color: #fff;
}
.user-position i, .social-link i {
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.user-position:hover i, .social-link:hover i{
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg);
opacity: 0.2;
}
a.social-link i {
font-size: 30px !important;
}
.gallery {
display: inline-block;
list-style: none;
margin: 0;
padding: 0
}
.gallery>li {
display: inline-block;
margin: 5px;
overflow: hidden;
position: relative
}
.gallery>li>a>div {
display: block;
position: relative
}
.gallery>li>a>div>i {
display: block;
background-color: #222;
opacity: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.gallery>li:hover>a>div>i {
opacity: .5
}
.gallery>li>.gallery-tools {
width: 100%;
position: absolute;
bottom: -30px;
background-color: #222;
opacity: .8;
padding: 3px;
text-align: center;
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease
}
.gallery>li:hover>.gallery-tools {
bottom: 0
}
.gallery>li>.gallery-tools>a {
color: rgba(255,255,255,.5);
margin: 0 3px;
font-size: 18px
}
.gallery>li>.gallery-tools>a:hover {
color: #fff
}
.messages {
margin: 0;
padding: 10px;
padding-bottom: 0;
list-style: none
}
.messages>li {
margin-bottom: 15px
}
.messages>li>img {
float: left;
width: 60px;
height: 60px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.messages>li>div {
background-color: #f7f8f9;
padding: 10px;
padding-top: 1px;
margin-left: 80px;
position: relative
}
.messages>li>div:before {
content: "";
position: absolute;
width: 0;
height: 0;
left: -10px;
top: 19px;
border-right: 10px solid #f7f8f9;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent
}
.messages>li>div h5 {
font-weight: 700;
display: inline-block
}
.messages>li>div .time {
margin-top: 5px;
color: #999;
float: right
}
.messages.messages-stripped>li:nth-child(odd)>div {
background-color: #eef1f4
}
.messages.messages-stripped>li:nth-child(odd)>div:before {
border-right-color: #eef1f4
}
.messages.messages-zigzag>li:nth-child(even)>img {
float: right
}
.messages.messages-zigzag>li:nth-child(even)>div {
margin-right: 80px;
margin-left: 0
}
.messages.messages-zigzag>li:nth-child(even)>div:before {
right: -10px;
left: auto;
border-left: 10px solid #f7f8f9;
border-right: 0
}
.messages.messages-zigzag>li:nth-child(even)>div h5 {
float: right
}
.messages.messages-zigzag>li:nth-child(even)>div .time {
float: none
}
.messages.messages-chat>li>div {
padding-top: 0;
padding-bottom: 2px
}
.messages.messages-chat>li>div p {
margin-bottom: 3px;
line-height: 16px
}
.messages li .messages-actions {
position: absolute;
bottom: 5px;
right: 10px;
display: none
}
.messages li:hover .messages-actions {
display: block
}
.messages li .messages-actions a {
font-size: 16px;
margin: 0 3px
}
.messages-input-form {
position: relative;
border: 1px solid #ddd;
margin-top: 10px
}
.messages-input-form .input {
margin-right: 90px
}
.messages-input-form .input input[type=text] {
border: 0;
margin-bottom: 0;
display: block
}
.messages-input-form .buttons {
position: absolute;
right: 0;
top: 0
}
.messages-input-form .buttons a {
color: #ccc;
margin: 4px;
line-height: 32px
}
.messages-input-form .buttons a>i {
font-size: 16px
}
.messages-input-form .buttons a:hover {
color: #555
}
.messages-input-form .buttons .btn {
margin-top: -5px;
margin-right: 1px
}
.error-page {
padding: 80px 0
}
.error-page:before {
content: "";
position: fixed;
top: 0;
bottom: 0;
width: 100%;
z-index: 1
}
.error-page .error-wrapper {
background-color: #fff;
position: relative;
z-index: 2;
width: 400px;
margin: 0 auto;
padding: 20px
}
.error-page h4 {
font-size: 30px;
font-weight: 300;
margin-bottom: 30px
}
.error-page h4>span {
color: #528eca;
font-size: 80px;
letter-spacing: -6px;
float: right
}
.error-page h5 {
font-size: 27px;
font-weight: 300;
margin-bottom: 30px
}
.error-page h5>span {
color: #528eca;
font-size: 70px;
letter-spacing: -7px;
float: right
}
.error-page form input {
border: 0;
background-color: #f5f6f7;
width: 345px
}
.error-page form input,.error-page form button {
padding: 15px 10px!important;
height: auto!important;
font-size: 16px
}
.error-page form button {
padding: 15px 20px!important
}
.chzn-container-single .chzn-single {
box-shadow: none!important;
background-image: none!important;
filter: none!important;
-webkit-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
height: 20px!important;
line-height: 20px!important;
padding: 4px 6px!important;
border-color: #e5e5e5!important;
margin: 0!important;
color: #555!important
}
.error .chzn-container-single .chzn-single {
border-color: #B94A48
}
.error .chzn-container-single .chzn-single span {
color: #B94A48
}
.success .chzn-container-single .chzn-single {
border-color: #468847
}
.success .chzn-container-single .chzn-single span {
color: #468847
}
.chzn-container-single .chzn-single>span {
margin-top: 1px
}
.chzn-container-single .chzn-single>abr {
margin-top: 3px
}
.chzn-container .chzn-drop {
-webkit-box-shadow: 0 2px 6px rgba(30,30,100,.25)!important;
-moz-box-shadow: 0 2px 6px rgba(30,30,100,.25)!important;
box-shadow: 0 1px 6px rgba(30,30,100,.25)!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
border-color: #e5e5e5
}
.chzn-container-single .chzn-search input,.chzn-container-single .chzn-search input:focus,.chzn-container-single .chzn-search input:active {
border: 1px solid #e5e5e5!important;
box-shadow: none!important;
height: 28px;
line-height: 25px
}
.chzn-container-multi .chzn-choices {
background-image: none!important;
filter: none!important;
box-shadow: none!important;
border-color: #e5e5e5!important;
padding: 2px 1px 1px!important
}
.slider {
margin: 9px 0
}
.ui-slider {
border: 0!important;
background: #d9d9d9!important
}
.ui-widget-header {
background: #aaa!important
}
.ui-slider-horizontal {
height: 2px!important
}
.ui-slider-vertical {
width: 2px!important
}
.ui-slider-horizontal.bar-large {
height: 4px!important
}
.ui-slider-vertical.bar-large {
width: 4px!important
}
.ui-slider-horizontal.bar-xlarge {
height: 7px!important
}
.ui-slider-vertical.bar-xlarge {
width: 7px!important
}
.ui-slider-horizontal.bar-xxlarge {
height: 10px!important
}
.ui-slider-vertical.bar-xxlarge {
width: 10px!important
}
.ui-slider-handle {
border: 0!important;
width: 15px!important;
height: 15px!important;
background: #aaa!important;
-webkit-border-radius: 100%!important;
-moz-border-radius: 100%!important;
border-radius: 100%!important
}
.ui-slider-handle:focus {
outline: 0
}
.bar-large>.ui-slider-handle {
width: 18px!important;
height: 18px!important
}
.bar-xlarge>.ui-slider-handle {
width: 20px!important;
height: 20px!important
}
.bar-xxlarge>.ui-slider-handle {
width: 24px!important;
height: 24px!important
}
.ui-slider-horizontal>.ui-slider-handle {
top: -7px!important
}
.ui-slider-vertical>.ui-slider-handle {
left: -7px!important
}
.slider-eq span {
display: inline-block;
height: 170px;
margin: 0 10px
}
.ui-slider.bar-blue {
background: #b9d3f1!important
}
.ui-slider.bar-green {
background: #9cedc3!important
}
.ui-slider.bar-red {
background: #feaea5!important
}
.ui-slider.bar-yellow {
background: #fcf7ac!important
}
.ui-slider.bar-orange {
background: #fbb485!important
}
.ui-slider.bar-pink {
background: #fea8fd!important
}
.ui-slider.bar-magenta {
background: #c27bf4!important
}
.ui-slider.bar-blue>.ui-widget-header,.ui-slider.handle-blue>.ui-slider-handle {
background: #4495f1!important
}
.ui-slider.bar-green>.ui-widget-header,.ui-slider.handle-green>.ui-slider-handle {
background: #36c77b!important
}
.ui-slider.bar-red>.ui-widget-header,.ui-slider.handle-red>.ui-slider-handle {
background: #fb5240!important
}
.ui-slider.bar-yellow>.ui-widget-header,.ui-slider.handle-yellow>.ui-slider-handle {
background: #fbf040!important
}
.ui-slider.bar-orange>.ui-widget-header,.ui-slider.handle-orange>.ui-slider-handle {
background: #fc812f!important
}
.ui-slider.bar-pink>.ui-widget-header,.ui-slider.handle-pink>.ui-slider-handle {
background: #fb40f9!important
}
.ui-slider.bar-magenta>.ui-widget-header,.ui-slider.handle-magenta>.ui-slider-handle {
background: #9b2be9!important
}
.circle-stats {
text-align: center;
position: relative
}
.circle-stats-item {
position: relative;
background: rgba(255,255,255,.7);
-webkit-border-radius: 50em;
-moz-border-radius: 50em;
border-radius: 50em;
width: 120px;
height: 120px;
margin: 10px auto
}
.circle-stats-item i {
font-size: 30px;
position: absolute;
top: 30%;
margin-top: 0;
width: 100%;
text-align: center
}
.circle-stats-item.blue .percent,.circle-stats-item.blue i {
color: #87ceeb
}
.circle-stats-item.orange .percent,.circle-stats-item.orange i {
color: #fc812f
}
.circle-stats-item.red .percent,.circle-stats-item.red i {
color: #fb5240
}
.circle-stats-item.green .percent,.circle-stats-item.green i {
color: #36c77b
}
.circle-stats-item.yellow .percent,.circle-stats-item.yellow i {
color: #fbf040
}
.circle-stats-item.pink .percent,.circle-stats-item.pink i {
color: #fb40f9
}
.circle-stats-item.magenta .percent,.circle-stats-item.magenta i {
color: #9b2be9
}
.circle-stats-item.lime .percent,.circle-stats-item.lime i {
color: #b9e672
}
.circle-stats-item.gray .percent,.circle-stats-item.gray i {
color: #999
}
.circle-stats-item.black .percent,.circle-stats-item.black i {
color: #444
}
.circle-stats-item input {
cursor: default;
box-shadow: none;
border: 0;
height: auto;
position: absolute;
top: 20px;
left: 120px
}
.circle-stats-item .percent {
font: 700 24px arial;
position: absolute;
top: 53%;
margin-left: 75px
}
.circle-stats-item input:focus {
outline: thin dotted 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none
}
.lt-ie9 .knob,.lt-ie9 .circle-stats {
display: none
}
div.tagsinput {
height: 50px!important;
margin: 0!important;
padding: 5px!important;
overflow: auto!important
}
div.tagsinput span.tag {
background: #e8f3f7!important;
color: #333!important;
border: 0!important;
padding: 1px 5px!important;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
margin-bottom: 4px!important
}
div.tagsinput input {
padding: 3px 6px!important
}
div.tagsinput span.tag a {
color: #aaa!important;
font-size: 14px
}
div.tagsinput span.tag a:hover {
color: #555!important
}
div.tagsinput .not_valid {
color: #fff!important;
padding: 3px 6px!important;
background-color: #ed6363!important
}
.fileupload .input-append .btn-file {
padding: 0
}
.fileupload .input-append .btn-file>.fileupload-new,.fileupload .input-append .btn-file>.fileupload-exists {
padding: 5px 10px;
line-height: 30px
}
.fileupload .input-append>a.fileupload-exists {
padding: 0 10px;
line-height: 30px
}
.bootstrap-timepicker {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.bootstrap-timepicker table tr>td>a:hover {
background-color: #f0f0f0;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.daterangepicker td {
text-shadow: none!important
}
.daterangepicker td.active {
background-color: #4b8df8!important;
background-image: none!important;
filter: none!important
}
.daterangepicker th {
font-weight: 400;
font-size: 14px
}
.daterangepicker .ranges>ul>li {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.daterangepicker .ranges>ul>li:hover {
border-color: #eee;
color: #555;
background-color: #eee
}
.clockface .cell>div {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.clockface .cell .inner.active,.clockface .cell .outer.active {
background-image: none!important;
filter: none!important
}
.switch,.switch .switch-left {
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
.switch .switch-left,.switch .switch-right {
background-image: none!important;
filter: none!important
}
.chart,.pie,.bars {
overflow: hidden;
height: 300px
}
#flotTip {
background-color: #000;
color: #fff;
padding: 3px 7px;
opacity: .7
}
#calendar .fc-event {
border: 0;
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important
}
#external-events .external-event {
cursor: move;
margin: 0 5px 5px 0
}
.weekly-stats {
margin: 0;
padding: 0;
list-style: none
}
.weekly-stats li {
font-size: 14px;
margin-bottom: 19px
}
.weekly-stats .inline-sparkline {
margin-right: 10px
}
.weekly-stats .value {
font-size: 20px;
color: #fa5833;
margin-left: 5px
}
.todo-list {
margin: 0;
padding: 0;
list-style: none
}
.todo-list>li {
position: relative;
border-bottom: 1px solid #f5f5f5;
margin-bottom: 10px
}
.todo-list>li:last-child {
border-bottom: 0
}
.todo-list>li>.todo-desc {
margin-right: 100px;
display: inline-block
}
.todo-list>li>.todo-desc .label {
float: right
}
.todo-list>li>.todo-actions {
position: absolute;
right: 0;
top: 0
}
.todo-list>li>.todo-actions a {
color: #aaa;
font-size: 15px;
margin: 0 3px
}
.todo-list>li>.todo-actions a:hover {
color: #555
}
.tasks-in-progress {
margin: 0;
padding: 0;
list-style: none
}
.tasks-in-progress>li>p {
margin-bottom: 4px
}
.tasks-in-progress>li>p>span {
float: right
}
.things-to-do {
margin: 0;
padding: 0;
list-style: none
}
.things-to-do>li {
border-bottom: 1px solid #f5f5f5;
padding-top: 12px
}
.things-to-do>li:last-child {
border-bottom: 0
}
.things-to-do>li p {
font-size: 14px;
line-height: 16px
}
.things-to-do>li i {
font-size: 30px;
color: #a4c7e7;
display: inline-block;
width: 35px;
text-align: left
}
.things-to-do>li .value {
font-size: 25px;
color: #fa5833;
margin-left: 10px;
margin-right: 10px
}
.things-to-do>li .btn {
float: right
}
.weekly-changes {
margin: 0;
padding: 0;
list-style: none
}
.weekly-changes>li {
border-bottom: 1px solid #f5f5f5;
padding-top: 12px
}
.weekly-changes>li:last-child {
border-bottom: 0
}
.weekly-changes>li p {
font-size: 15px
}
.weekly-changes>li i {
font-size: 15px;
width: 15px
}
.weekly-changes>li span {
font-size: 23px;
margin: 0 10px;
display: inline-block;
width: 60px;
text-align: right
}
#main-content>footer {
background: rgba(255,255,255,.6);
padding: 12px 20px 3px;
margin-top: 20px
}
#main-content>footer p {
text-align: center;
color: #222
}
.navbar .nav>li>a,.navbar .nav>li>a:hover,.navbar .nav>li>a:focus,.dropdown-navbar>li.nav-header,.flaty-nav>li>a>[class*=icon-],.navbar .brand,.nav-list .search-pan input,.nav-list .search-pan button>i,.nav-list>li>a,.nav-list>li>a:focus,.nav-list>li>a:hover,.nav-list>li>a .arrow,.nav-list>li a:hover>.arrow,.nav-list>li.active>a>.arrow,.nav-list>li.open>a>.arrow,.nav-list>li.open>a,.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active,.nav-list>li .submenu>li>a,#sidebar-collapse>[class*=icon-],.sidebar-collapsed .nav-list>li.open:hover>a {
color: #fff
}
.navbar .navbar-inner {
background: #17a6b6
}
.flaty-nav>li>a>.badge {
border-color: #9de2ea
}
.navbar .btn-navbar,.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar .collapsed:hover,.navbar .btn-navbar .collapsed:focus,.flaty-nav>li.open,.flaty-nav>li:hover,.dropdown-navbar>li.nav-header {
background:rgba(0,0,0,0.2);
}
.dropdown-navbar>li.nav-header{
background: #0a8896!important
}
.flaty-nav>li.open>a>.badge,.flaty-nav>li:hover>a>.badge {
border-color: #eee
}
#sidebar:before,.nav-list .search-form,.nav-list .search-pan input,.nav-list>li>a {
background-color: #505050
}
.nav-list .search-form:hover,.nav-list .search-form:hover .search-pan input,.nav-list>li.open>a,.nav-list>li.active>a,.nav-list>li.active>a:hover,.nav-list>li.active>a:focus,.nav-list>li.active>a:active,#sidebar-collapse>[class*=icon-]:hover,.sidebar-collapsed .nav-list>li:hover>a,.sidebar-collapsed .nav-list .search-pan input,.sidebar-collapsed .nav-list>li>a>span {
background-color: #0693a3
}
.nav-list>li>a:focus,.nav-list>li>a:hover {
background-color: #434343!important
}
.nav-list>li .submenu {
background-color: #333
}
#sidebar-collapse>[class*=icon-],.nav-list>li .submenu>li>a:focus,.nav-list>li .submenu>li>a:hover,.nav-list>li .submenu>li.active>a {
background-color: #434343
}
.nav-list>li.active>a:after {
border-right-color: #e9f0f9
}
.error-page:before,#main-content {
background: #e9f0f9
}
.box>.box-title {
background-color: #b6d1f2;
text-shadow: 0 1px 0 #aecef4
}
.navbar.btn-navbar,.navbar.btn-navbar:hover,.navbar.btn-navbar:focus,.navbar.btn-navbar.collapsed:hover,.navbar.btn-navbar.collapsed:focus,.navbar.flaty-nav>li.open,.navbar-blue .flaty-nav>li:hover,.navbar-blue .dropdown-navbar>li.nav-header {
background: #0a8896
}
/*buttons style*/
/*.btn{
border-radius: 0;
outline: none;
border: none;
box-shadow: none;
}
.btn:hover{
border-radius: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}*/
.btn-group > .btn:first-child,
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle,
.btn-group-vertical > .btn:first-child,
.btn-group-vertical > .btn:last-child {
border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
}
.btn-primary{
background: #2fade7;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled], .btn-group.open .btn-primary.dropdown-toggle {
background-color: #3492c9;
}
.btn-istar{
background: #16a085;
color: #fff
}
.btn-istar:hover, .btn-istar:focus, .btn-istar:active, .btn-istar.active, .btn-istar.disabled, .btn-istar[disabled], .btn-group.open .btn-istar.dropdown-toggle {
background-color: #1abc9c;
color: #fff
}
.btn-success{
background: #78a300;
}
.btn-info{
background: #31a6b1;
}
.btn-warning{
background: #de8a00;
}
.btn-danger{
background: #c1552b;
}
.btn-inverse{
background: #292929;
}
.btn-link {
background: none;
box-shadow: none;
}
.input-prepend .add-on:first-child, .input-prepend .btn:first-child,
.input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child,
.input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child,
.input-append .add-on:last-child, .input-append .btn:last-child, .input-append .btn-group:last-child > .dropdown-toggle{
border: 1px solid #ddd;
border-radius: 0px;
}
.accordion-body .input-prepend .add-on{border-left: 0}
.btn-group.open .dropdown-toggle {
box-shadow: none;
}
.uneditable-input {
width: 135px;
}
.switch-form input {
width: 110px;
}
/*form element */
textarea, select, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, .fileupload-new .input-append .btn-file {
border: 1px solid #ddd;
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
-webkit-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
-o-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
border-radius: 0 !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
box-shadow: none !important;
}
/* general typography*/
h3 small, h2 small, h5 small {
color: #868686;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
h1.block, h2.block, h3.block, h4.block, h5.block, h6.block {
padding-bottom: 10px;
}
.page-title {
font-size: 28px;
display: block;
font-weight: normal !important;
margin: 13px 0px 8px 0px;
font-family: 'MyriadPro-Light',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.page-title small {
font-size: 14px;
}
/* general tools */
img.center {
text-align:center;
}
.phone-margin-top-5:before {
display: block;
margin-top: 5px;
}
.no-padding {
padding: 0px !important;
}
.no-margin {
margin: 0px !important;
}
.no-bottom-space {
padding-bottom:0px !important;
margin-bottom: 0px !important;
}
.no-top-space {
padding-top:0px !important;
margin-top: 0px !important;
}
.hide {
display: none;
}
.bold {
font-weight:bold;
}
.border {
border: 1px solid #ddd
}
.small {
font-size: 11px !important;
}
.btn-top-space {
margin-top: 5px !important;
}
.italic {
font-style: italic !important;
}
i.big {
font-size: 20px;
}
i.warning {
color: #E74955;
}
i.critical {
color: #22878E;
}
i.normal {
color: #A5D16C;
}
hr {
margin: 15px 0;
border: 0;
border-top: 1px solid #c2c2c2;
border-bottom: 1px solid #FEFEFE;
}
i.icon, a.icon {
color: #999;
}
a.icon: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: .4;
}
a.icon.huge i{
font-size: 16px !important;
}
.space5 {
display: block;
height: 5px !important;
clear: both;
}
.space10 {
height: 10px !important;
clear: both;
}
.space12 {
height: 12px !important;
clear: both;
}
.space15 {
height: 15px !important;
clear: both;
}
.space20 {
height: 20px !important;
clear: both;
}
.split5 {
height: 5px !important;
clear: both;
background-color: #ccc;
}
.mtop5 {
margin-top: 5px
}
.mtop7 {
margin-top: 7px
}
.mtop10 {
margin-top: 10px
}
.no-text-shadow {
text-shadow: none !important;
}
.notify-row {
float: left;
padding: 5px;
}
/*fix outlines on click*/
a,a:focus, a:hover, a:active {
outline: 0;
}
/* i8 fix for form input height in fluid rows */
.ie8 .row-fluid [class*="span"] {
min-height: 20px !important;
}
/* general form */
form legend {
margin: 15px 0px 10px 0px !important;
}
.form-actions {
background-color: #fff ;
}
.widget-body.form form {
margin: 0px !important;
padding: 0px !important;
}
.widget-body.form .control-group:last-child {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.widget-body.form .form-actions{
margin-left:-15px !important;
margin-right:-15px !important;
margin-top: 20px !important;
margin-bottom: -15px !important;
margin-top: 20px;
padding-left: 195px;
-webkit-border-radius: 0px 0px 4px 4px;
-moz-border-radius: 0px 0px 4px 4px;
border-radius: 0px 0px 4px 4px;
}
.widget-body .dataTables_info, .widget-body .dataTables_paginate {
margin-top: 5px !important;
padding-bottom: 0px !important;
margin-bottom: -4px !important;
}
.widget-body .table {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
.widget-title > h4, .chats li.in .name {
color: #fff;
}
table .label{margin-left: 5px;}
/* custom form input error states with icons */
.input-icon input {
padding-right: 25px !important;
}
.input-icon .input-error, .input-icon .input-warning, .input-icon .input-success {
display: inline-block !important;
position: relative !important;
top: 4px;
right: 25px !important;
font-size: 16px;
}
.input-icon .input-error {
color:#B94A48;
}
.input-icon .input-warning {
color: #C09853;
}
.input-icon .input-success {
color: #468847;
}
/* custom breadcrumb */
.breadcrumb {
border-radius: 0 ;
}
.breadcrumb li > a{
color: #888888;
}
/*general search */
.breadcrumb > li.search-wrap {
background: none !important;
float: right;
}
.breadcrumb .search-input-area {
float: right;
margin-top: -8px;
margin-right: -15px;
}
.search-input-area input {
border: 0px !important;
padding-left: 8px;
padding-right: 20px;
background: #e5e5e5;
height: 28px;
width: 240px;
box-shadow: none;
border-left: 10px solid #fff !important;
transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;
}
.search-input-area button, .search-input-area button:focus {
border: 0px !important;
text-align: center;
background: #4f4f4f !important;
height: 36px;
width: 40px;
box-shadow: none;
color: #fff !important;
}
.search-input-area input:focus {
outline: 0;
background: #ccc !important;
}
.breadcrumb .search-input-area > i, #sidebar .search-input-area > i {
cursor: pointer;
display: inline-block !important;
font-size: 18px;
position: absolute !important;
right: -10px !important;
top: 7px !important;
}
/* widget container */
.sortable .widget .widget-title {
cursor: move;
}
.sortable-box-placeholder {
background-color: #f5f5f5;
border: 1px dashed #DDDDDD;
display: block;
margin-top: 0px !important;
margin-left: 1%;
margin-right: 0.6%;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.sortable-box-placeholder * {
visibility:hidden;
}
.widget {
background:#fff;
clear: both;
margin-bottom: 20px;
margin-top: 0;
border: 1px solid #404040;
}
.widget-title {
background: #404040;
height: 36px;
}
.widget.green {
border: 1px solid #49BB66;
}
.widget.green .widget-title {
background: #49BB66;
}
.widget.cyan {
border: 1px solid #0ca389;
}
.widget.cyan .widget-title {
background: #0ca389;
}
.widget.blue {
border: 1px solid #4A8BC2;
}
.widget.blue .widget-title {
background: #4A8BC2;
}
.widget.purple {
border: 1px solid #9D4A9C;
}
.widget.purple .widget-title {
background: #9D4A9C;
}
.widget.yellow {
border: 1px solid #CE8C00;
}
.widget.yellow .widget-title {
background: #CE8C00;
}
.widget.orange {
border: 1px solid #F37B53;
}
.widget.orange .widget-title {
background: #F37B53;
}
.widget.red {
border: 1px solid #DE577B;
}
.widget.red .widget-title {
background: #DE577B;
}
.widget-title > h4 {
float: left;
font-size: 14px;
font-weight: normal;
padding: 10px 11px 10px 15px;
line-height: 12px;
margin: 0;
font-family: 'MyriadPro-Regular',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.widget-title > h4 i {
font-size: 14px;
margin-right: 2px;
}
.widget-title span.tools {
float: right;
margin: 2px 0 0;
padding: 6px 5px 6px 10px;
}
.widget-title span.tools > a {
display: inline-block;
margin-right: 5px;
color: #fff;
font-size: 14px;
text-decoration: none;
}
.widget-title span.tools > a: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: .7;
}
.widget-title .btn-group {
margin-right:5px;
margin-top: -2px;
}
.widget-title .btn-group .caret {
margin-top: 8px;
margin-left: 3px;
}
.widget-body {
padding: 15px 15px;
}
/* icon buttons */
.icon-btn {
height: 70px;
width: 50px;
margin: 10px 0px 10px 0px;
padding: 16px 0px 0px 0px;
font-size: 10px;
background-color: #fff !important;
border: 1px solid #ccc;
display:block !important;
color: #646464 !important;
text-align: center;
cursor: pointer;
position: relative;
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn:hover {
border: 1px solid #404040;
background: #fff !important;
text-decoration: none !important;
box-shadow: none !important;
color: #444 !important;
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-ms-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn i {
font-size: 20px;
color: #777 !important;
}
.icon-btn div {
margin-top: 5px;
margin-bottom: 20px;
font-size: 12px !important;
font-family: Arial;
}
.badge {
-webkit-border-radius: 10px!important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
padding: 2px 6px;
}
.icon-btn .badge {
position: absolute;
font-size: 10px !important;
top: 26px;
right: -8px;
height: 14px;
padding: 3px 7px;
color: white !important;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
font-family: Arial;
}
.icon-btn:hover .badge {
-webkit-transition: all 0.3s ease !important;
-moz-transition: all 0.3s ease !important;
-ms-transition: all 0.3s ease !important;
-o-transition: all 0.3s ease !important;
transition: all 0.3s ease !important;
}
.icon-btn i {
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
-ms-transition: all .5s ease-in-out;
}
.icon-btn:hover i {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
color: #fff;
opacity: 1;
}
/* custom dropdown */
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
padding: 0px 0;
margin: 2px 0 0;
list-style: none;
background-color: #fcfcfc;
border: 1px solid rgba(0, 2, 1, 0.2);
-webkit-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
-moz-box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
box-shadow: 0 0px 0px rgba(0, 2, 1, 0.4);
-webkit-background-clip: padding-box;
-moz-background-clipp: padding;
background-clip: padding-box;
padding: 0px 0;
margin:0px;
list-style: none;
}
.dropdown-menu.opens-left {
margin-top: 2px;
margin-left: -88px;
}
.ie8 .dropdown-menu.opens-left {
margin-left: -82px;
}
.dropdown-menu.extended {
top:40px;
min-width: 160px !important;
max-width: 300px !important;
width: 235px !important;
}
.dropdown-menu.logout {
width: 150px !important;
min-width: 120px !important;
max-width: 260px !important;
}
.dropdown-menu.extended li a{
display: block;
padding: 5px 10px !important;
clear: both;
font-weight: normal;
line-height: 20px;
white-space: normal !important;
}
.dropdown-menu.extended .arrow{
top:-14px;
left: 10px;
position: absolute;
margin-top: 6px;
margin-right: 12px;
width: 0;
height: 0;
border-bottom: 8px solid #f3f3f3;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
}
.dropdown-menu.extended li i{
margin-right: 3px;
}
.dropdown-menu.extended li a{
padding: 10px !important;
background-color: #fff !important;
}
.dropdown-menu.extended li a:hover {
background-color: #f3f3f3 !important;
}
.dropdown-menu.extended li p{
padding: 10px;
background-color: #eee;
margin: 0px;
color: #666;
}
.dropdown-menu.extended li a{
padding: 7px 0 5px 0px;
list-style: none;
border-bottom: 1px solid #EBEBEB !important;
font-size: 12px;
}
.dropdown-menu.extended li:first-child a {
border-top: none;
border-bottom: 1px solid #EBEBEB !important;
}
.dropdown-menu.extended li:last-child a {
border-top: 1px solid white !important;
border-bottom: 1px solid #EBEBEB !important;
}
.dropdown-menu.inbox li a .photo img {
float: left;
height: 40px;
width: 40px;
margin-right: 4px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.dropdown-menu.inbox li a .subject {
display: block;
}
.dropdown-menu.inbox li a .subject .from {
font-size: 12px;
font-weight: bold;
}
.dropdown-menu.inbox li a .subject .time {
font-size: 11px;
font-weight: bold;
font-style: italic;
position: absolute;
right: 5px;
}
.dropdown-menu.inbox li a .message {
display: block !important;
font-size: 11px;
}
/*fontawesome*/
.fontawesome-icon-list .span3{
margin-left: 0;
}
.fontawesome-icon-list .span3 i{
font-size: 16px;
}
.fontawesome-icon-list .span3 a{
color: #888888;
}
/* star rating */
.rating {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 30px;
}
.rating span.star,
.rating span.star {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
}
.rating span.star:hover,
.rating span.star:hover {
cursor: pointer;
}
.rating span.star:before,
.rating span.star:before {
content: "\f006";
padding-right: 5px;
color: #999999;
}
.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before,
.rating span.star:hover ~ span.star:before {
content: "\f005";
color: #87bb33;
}
/* adjust uniform components */
.radio, .checkbox {
padding-left: 0px !important;
}
.controls > .radio,
.controls > .checkbox {
display: inline-block;
padding: 0 !important;
margin: 0 25px 0 0 !important;
}
.controls > .radio.line,
.controls > .checkbox.line {
display: block;
padding: 0 !important;
margin: 0 !important;
margin-top: 5px !important;
}
.controls .text {
display: block;
margin-top: 5px;
}
.checkbox div.checker {
margin-right: 2px !important;
}
.uploader {
margin-top: 2px !important;
}
/* font awesome icon classes */
/*[class^="icon-"], [class*=" icon-"],[class^="icon-"]:hover, [class*=" icon-"]:hover {
background: none !important;
}
Partoo恢复awesome icon的背景*/
/* hide by default ie8*/
.visible-ie8 {
display: none;
}
.tab-content {
padding: 0px;
overflow: hidden;
}
/*navigation*/
.bs-docs-example .navbar-inner .nav .dropdown-toggle:hover,
.bs-docs-example .navbar .nav li.dropdown.active > .dropdown-toggle,
.bs-docs-example .navbar .nav li.dropdown.open.active > .dropdown-toggle,
.bs-docs-example .navbar-inner .nav .dropdown.open .dropdown-toggle{
background-color: #E5E5E5 !important;
color: #555555;
}
.bs-docs-example .navbar .nav > .active > a,
.bs-docs-example .navbar .nav > .active > a:hover,
.bs-docs-example .navbar .nav > .active > a:focus {
box-shadow: none;
}
.navbar .nav > li > a {
padding: 3px;
}
.bs-docs-example .navbar-inner {
background: #f2f2f2;
}
/* general list for item with picture */
ul.item-list li .pic {
height: 50px;
width: 50px;
float: left;
margin-top: 3px;
margin-right: 5px;
-webkit-border-radius: 2px !important;
-moz-border-radius: 2px !important;
border-radius: 2px !important;
}
ul.item-list {
margin: 0px;
list-style: none;
}
ul.item-list li {
/*padding: 11px 0;*/
list-style: none;
border-top: 1px solid white;
border-bottom: 10px solid #fff;
font-size: 12px;
background: #ededed;
}
ul.item-list li:first-child {
border-top: none;
/*border-bottom: 1px solid #EBEBEB;*/
}
ul.item-list li:last-child {
border-top: none;
border-bottom: none;
}
ul.item-list li .label {
margin-right: 5px;
padding: 12px !important;
}
ul.item-list .pull-right span {
padding: 9px !important;
display: inline-block;
}
/* general purpose block with css3 gradient background */
.block {
line-height: 18px;
margin: 0 0 20px 0;
padding: 10px;
text-align: center;
}
/* metro dashboard states */
.metro-nav {
font-family: 'MyriadPro-Light',"Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.metro-nav .nav-block-orange {
background: #f37b53;
}
.metro-nav .nav-block-yellow {
background: #CE8C00;
}
.metro-nav .nav-block-blue {
background: #0DAED3;
}
.metro-nav .nav-block-green {
background: #49BB66;
}
.metro-nav .nav-block-red {
background:#de577b;
}
.metro-nav .nav-block-purple {
background: #9d4a9c;
}
.metro-nav .nav-block-grey {
background: #77808a;
}
.metro-fix-view .metro-nav-block.double {
width: 251px !important;
}
.metro-fix-view .metro-nav-block.long {
width: 251px !important;
height: 235px !important;
}
.metro-fix-view .metro-nav-block.long .value {
padding-top: 30px !important;
display: inline-block;
}
.metro-fix-view .metro-nav-block.long .value i {
font-size: 90px;
}
.metro-fix-view .metro-nav-block {
color: white;
cursor: pointer;
display: block;
float: left;
font-weight: 300;
height: 120px;
letter-spacing: 0.02em;
line-height: 20px;
margin: 0 1% 1% 0;
overflow: hidden;
position: relative;
text-decoration: none;
width: 120px !important;
z-index: 1;
}
.metro-nav .metro-nav-block.double {
width: 28%;
}
.metro-nav .metro-nav-block {
color: white;
cursor: pointer;
display: block;
float: left;
font-weight: 300;
height:114px;
letter-spacing: 0.02em;
line-height: 20px;
margin: 0 1% 1% 0;
overflow: hidden;
position: relative;
text-decoration: none;
width: 17%;
z-index: 1;
}
.metro-nav .metro-nav-block i {
font-size: 50px;
margin-top: 20px;
display: inline-block;
}
.metro-nav .metro-nav-block:last-child {
margin-right: 0;
}
.metro-nav .metro-nav-block a {
color: white;
font-size: 18px;
font-weight: 400;
height: 90%;
line-height: 16px;
overflow: hidden;
padding: 5px 10px;
position: absolute;
text-overflow: ellipsis;
vertical-align: top;
width: 88%;
text-decoration: none;
}
.metro-nav .metro-nav-block a i {
transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
}
.metro-nav .metro-nav-block a .info {
transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
}
.metro-nav .metro-nav-block a:hover i{
transform:rotate(83deg);
-moz-transform:rotate(83deg);
-webkit-transform:rotate(83deg);
-o-transform:rotate(83deg);
font-size: 140px;
opacity: 0.2;
}
.metro-nav .metro-nav-block.long a:hover i{
font-size: 200px;
}
.metro-nav .metro-nav-block.long a {
height: 96%;
}
.metro-nav .metro-nav-block a:hover .info {
transform:rotate(360deg);
-moz-transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg);
font-size: 40px;
opacity: 0.6;
}
.metro-nav .metro-nav-block:hover {
opacity:,1;
}
.metro-nav .metro-nav-block.double a {
width: 94%;
}
.metro-nav .metro-nav-block .info {
font-size: 24px;
position: absolute;
right: 10px;
top: 45px;
}
.metro-nav .metro-nav-block .status, .metro-nav .metro-nav-block .tile-status {
background-color: transparent;
width: inherit;
bottom: -10px;
font-size: 14px;
left: 10px;
min-height: 30px;
position: absolute;
}
/*task bar*/
.no-margin-bot {
margin-bottom: 0 !important;
}
.dropdown-menu.tasks-bar .task-info {
margin-bottom: 5px;
}
.dropdown-menu.tasks-bar .task-info .desc {
font-size: 13px;
font-weight: normal;
}
.dropdown-menu.tasks-bar .task-info .percent {
float: right;
font-size: 13px;
font-weight: bold;
display: inline-block;
padding-left: 10px;
}
/* mini chart and bar containers */
.bar-chart {display: none}
.line-chart {display: none}
/* Square stats */
.square-state {
}
.square-state .icon-btn {
margin-top: 0;
margin-bottom: 20px;
}
/*scroller padding*/
.scroller {
padding-right: 10px;
}
/* advance tables*/
.table-advance {
margin-bottom: 10px !important;
}
.table-advance thead {
color: #999;
}
.table-advance thead tr th{
background-color: #DDD;
color: #666;
}
.table-advance div.success, .table-advance div.info,
.table-advance div.important, .table-advance div.warning, .table-advance div.danger {
position: absolute;
margin-top:5px;
float: left;
width: 10px;
height: 10px;
margin-right: 20px !important;
}
.table-advance tr td {
border-left-width: 0px;
vertical-align: middle;
}
.table-advance tr td:first-child {
border-left-width: 1px !important;
}
.table-advance tr td.highlight:first-child a {
margin-left: 15px;
}
.table-advance td.highlight div.success {
border-left: 10px solid #A5D16C;
}
.table-advance td.highlight div.info {
border-left: 10px solid #87ceeb;
}
.table-advance td.highlight div.important {
border-left: 10px solid #f02c71;
}
.table-advance td.highlight div.warning {
border-left: 10px solid #fdbb39;
}
.table-advance td.highlight div.danger {
border-left: 10px solid #e23e29;
}
.table-striped tbody>tr:nth-child(odd)>td, .table-striped tbody>tr:nth-child(odd)>th {
background-color: #eee;
}
.table td,.table th {
text-align: center;
}
/*gritter changes*/
.gritter-close {
left:auto !important;
right: 3px !important;
}
/*calender*/
.has-toolbar.fc {
margin-top: 50px;
}
.fc-header-title {
display: inline-block;
margin-top: -50px;
vertical-align: top;
}
.fc-view {
margin-top: -50px;
overflow: hidden;
width: 100%;
}
.fc-state-default, .fc-state-default .fc-button-inner {
background: #F3F3F3 !important;
border-color: #DDDDDD;
border-style: none solid;
color: #646464;
}
.fc-state-active, .fc-state-active .fc-button-inner,
.fc-state-hover, .fc-state-hover .fc-button-inner{
background: #444444 !important;
color: #fff !important;
}
.fc-event-skin {
background-color: #4a8bc2 !important;
border-color: #4a8bc2 !important;
color: #FFFFFF !important;
}
.fc-grid th {
height: 30px;
line-height: 30px;
text-align: center;
background: #F3F3F3 !important;
}
.fc-header-title h2 {
font-size: 20px !important;
color: #404040;
}
.external-event {
cursor: move;
display: inline-block !important;
margin-bottom: 10px !important;
margin-right: 10px !important;
background: #4A8BC2 !important;
}
#external-events p input[type="checkbox"]{
margin: 0;
}
/* hide chosen search box */
.event_priority_chzn .chzn-search {
display: none !important;
}
/* widget tabs */
.widget-tabs .nav-tabs {
position: relative;
margin-top: -52px;
}
.widget-tabs .nav-tabs > li {
float: right;
}
.widget-tabs .nav-tabs {
border-bottom: none;
margin-right: 5px;
}
.widget-tabs .nav-tabs > li > a {
padding-top: 9px;
padding-bottom: 10px;
line-height: 17px;
margin-left: 0px;
margin-right: 0px;
border-left: none !important;
border-right: none !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
color: #fff;
}
.widget-tabs .nav-tabs > li:last-child > a {
border-right:0;
}
.widget-tabs .nav-tabs > li {
margin-left: -1px;
}
.widget-tabs .nav-tabs > li > a:hover {
margin-bottom: 0px;
border-bottom: 0;
margin-left: 0px;
margin-right: 0px;
border-left: 0;
border-right: 0;
background-color: rgba(256,256,256,0.6);
color: #404040;
border-top: 1px solid transparent;
}
.widget-tabs .nav-tabs > .active > a {
color: #555555;
cursor: default;
background-color: #fff;
}
.widget-tabs .widget-body.form {
padding: 0px;
}
.widget-tabs .widget-body.form .tab-pane {
padding: 15px;
padding-top: 0px;
}
.widget-tabs .widget-body.form .nav-tabs {
margin-top: -37px;
}
/*TodoList*/
.todo-list {
margin: 0px;
padding: 0px;
list-style: none;
}
.todo-list li {
padding: 1px 0 8px 0px;
margin-bottom: 5px;
border-bottom: 1px solid #EBEBEB;
}
.todo-list li:first-child {
border-top: none;
border-bottom: 1px solid #EBEBEB;
}
.todo-list li:last-child {
border-top: none;
border-bottom: none;
}
.todo-list li:before,
.todo-list li:after {
display: table;
line-height: 0;
content: "";
}
.todo-list li:after {
clear: both;
}
.todo-list .col1 {
float:left;
width:100%;
clear: both;
}
.todo-list .col2 {
float:left;
width:120px;
margin-left:-120px;
text-align: right;
}
.todo-list .col1 .cont {
float:left;
margin-right:120px;
overflow:hidden;
}
/*Timeline chat*/
.chat-form {
margin-top: 15px;
padding: 10px;
background-color: #eee;
clear: both;
}
.chat-form .input-cont {
margin-right: 55px;
}
.chat-form .input-cont input {
margin-bottom: 0px;
}
.chat-form .input-cont input{
border: 1px solid #fff !important;
width: 94%;
margin-top:0;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
.chat-form .input-cont input {
background-color: #fff !important;
}
.chat-form .input-cont input:focus{
border: 1px solid #2FADE7 !important;
}
.chat-form .btn-cont {
margin-top: -38px;
position: relative;
float: right;
}
.chat-form .btn-cont .btn {
border-left: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
margin-top: 8px;
}
.timeline-messages:before {
background: rgba(0, 0, 0, 0.1);
bottom: 0;
top: 0;
width: 2px;
}
.timeline-messages:before, .msg-time-chat:before, .msg-time-chat .text:before {
content: "";
left: 58px;
position: absolute;
top: -2px;
}
.timeline-messages, .msg-time-chat , .timeline-messages .msg-in, .timeline-messages .msg-out {
position: relative;
}
.timeline-messages .msg-in .arrow {
border-right: 8px solid #ededed !important;
}
.timeline-messages .msg-in .arrow {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
display: block;
height: 0;
left: -8px;
position: absolute;
top: 13px;
width: 0;
}
.timeline-messages .msg-out .arrow {
border-right: 8px solid #dff1ff !important;
}
.timeline-messages .msg-out .arrow {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
display: block;
height: 0;
left: -8px;
position: absolute;
top: 13px;
width: 0;
}
.msg-time-chat:first-child:before {
margin-top: 16px;
}
.msg-time-chat:before {
background:#CCCCCC;
border: 2px solid #FAFAFA;
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
height: 10px;
margin: 23px 0 0 -6px;
width: 10px;
}
.msg-time-chat:hover:before {
background: #2FADE7;
}
.msg-time-chat:first-child {
padding-top: 0;
}
.message-img {
float: left;
margin-right: 30px;
overflow: hidden;
}
.message-img img {
display: block;
height: 44px;
width: 44px;
}
.message-body {
margin-left: 80px;
}
.msg-time-chat .msg-in .text {
background: #ededed;
padding: 10px;
}
.msg-time-chat .msg-out .text {
background: #dff1ff;
padding: 10px;
}
.msg-time-chat p {
margin: 0;
color: #504e4f;
}
.msg-time-chat .attribution {
color: #504e4f;
font-size: 11px;
margin: 0px 0 5px;
}
.msg-time-chat {
overflow: hidden;
padding:8px 0;
}
.msg-in a, .msg-in a:hover{
color: #fff;
padding: 2px 4px;
background: #818181;
text-decoration: none;
}
.msg-out a, .msg-out a:hover{
color: #fff;
padding: 2px 4px;
background: #3cabec;
text-decoration: none;
}
/* Input icons */
/* input with right aligned and colored icons */
.input-icon input {
padding-right: 25px !important;
}
.input-icon .input-info,
.input-icon .input-error,
.input-icon .input-warning,
.input-icon .input-success {
display: inline-block !important;
position: relative !important;
top: 3px;
right: 25px !important;
font-size: 16px;
}
.input-icon .input-info {
color:#27a9e3;
}
.input-icon .input-error {
color:#B94A48;
}
.input-icon .input-warning {
color: #C09853;
}
.input-icon .input-success {
color: #468847;
}
/* input with left aligned icons */
.input-icon.left i {
color: #ccc;
display: block !important;
position: absolute !important;
z-index: 1;
margin: 6px 2px 4px 10px;
width: 16px;
height: 16px;
border1: 1px solid #ddd;
font-size: 16px;
text-align: center;
}
.input-icon.left input {
padding-left: 33px !important;
}
/* Modify tags input plugin css */
div.tagsinput {
height: 40px !important;
margin: 0 !important;
padding: 5px !important;
overflow: auto !important;
}
div.tagsinput span.tag {
background: #CDE69C !important;
color: #638421 !important;
border: 0 !important;
padding: 3px 6px !important;
margin-bottom: 4px !important;
}
div.tagsinput input {
padding: 3px 6px !important;
}
div.tagsinput span.tag a {
color: #82AD2B !important;
}
div.tagsinput .not_valid {
color: #fff !important;
padding: 3px 6px !important;
background-color: #e02222 !important;
}
/* File uploader plugin css changes */
.fileupload .close {
position: relative;
top:4px !important;
}
/*Form wizard*/
.custom-wizard-pills .nav-pills > li > a {
padding-top: 30px;
padding-bottom: 30px;
background: #eee;
}
.custom-wizard-pills .nav-pills {
margin: 0 auto 30px;
width: 50%;
}
.custom-wizard-pills .nav-pills > li {
margin-right: 20px;
}
.custom-wizard-pills .nav-pills li.active a, .custom-wizard-pills .nav-pills li a:hover {
color: #fff;
}
.custom-wizard-pills .nav-pills > li > a {
padding-left: 30px;
padding-right: 30px;
color: #757575;
}
.pager .previous > a, .pager .previous > span {
float: left;
margin-right: 5px;
}
.pager .next > a, .pager .next > span {
float: right;
margin-left: 5px;
}
#tabsleft ul li a span {
display: block;
}
#tabsleft ul li a .strong {
font-weight: bold;
}
#tabsleft > .nav-tabs > li > a {
background: #eee;
color: #838383;
}
#tabsleft > .nav-tabs > li.active > a {
background: #fff;
color: #5a5a5a;
}
/*ck editor*/
.cke_top, .cke_bottom {
background: #F5F5F5 !important;
background: -moz-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
background: -webkit-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
background: -o-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
box-shadow: none;
padding: 6px 8px 2px;
}
.cke_top {
border-bottom: 1px solid #cccccc !important;
}
.cke_chrome {
border: 1px solid #cccccc !important;
box-shadow: none !important;
display: block;
padding: 0;
}
/*404 page*/
.error-404 {
background: url("../img/404bg.jpg")no-repeat center center fixed #393939;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.error-wrap.error-wrap-404 {
width: 875px;
margin: 12% auto 0;
color: #fff;
text-align: center;
}
.error-wrap .metro.big {
float: left;
width: 340px;
height: 340px;
margin: 0 10px 10px 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.error-wrap.error-wrap-404 .metro.double {
float: left;
width: 340px;
height: 165px;
margin: 0 10px 10px 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.error-wrap.error-wrap-404 .home {
color: #fff;
font-size: 70px;
text-decoration: none;
margin-top: 40px;
display: inline-block;
}
.error-wrap .metro.double .page-txt {
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
font-size: 20px;
}
.error-wrap.error-wrap-404 .metro {
float: left;
}
.error-wrap.error-wrap-404 .metro.big span {
padding-top: 160px;
}
/*500 page*/
.error-500 {
background: url("../img/500bg.jpg")no-repeat center center fixed #393939;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.error-wrap {
width: 100%;
margin: 12% auto 0;
color: #fff;
text-align: center;
}
.error-wrap h1 {
font-size: 45px;
}
.error-wrap h2 {
font-size: 25px;
}
.error-wrap .metro {
width: 165px;
height: 165px;
display: inline-block;
margin: 0 10px 10px 0;
}
.error-wrap .metro span {
font-size: 70px;
padding-top: 70px;
display: inline-block;
}
.error-wrap p {
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
padding-top: 20px;
font-size: 16px;
}
.error-wrap p a {
color: #48cffe;
}
.alpha_green {
background: rgba(142,191,72,0.9);
}
.alpha_yellow {
background: rgba(245,193,70,0.9);
}
.alpha_purple {
background: rgba(175,94,197,0.9);
}
.alpha_deep-red{
background: rgba(153,63,62,0.9);
}
.alpha_navy-blue{
background: rgba(95,124,180,0.9);
}
.alpha_blue{
background: rgba(72,131,238,0.9);
}
.alpha_terques {
background: rgba(75,183,192,0.9);
}
.alpha_red {
background: rgba(232,104,127,0.9);
}
.alpha_gray {
background: rgba(89,88,88,0.9);
}
/*faq list*/
ul.faq-list li {
line-height: 30px;
}
ul.faq-list li a{
background: #eee;
margin-bottom: 1px;
color: #868686;
}
ul.faq-list li a:hover, ul.faq-list li a.active{
margin-bottom: 1px;
color: #fff;
}
/*search result*/
.search-result label {
width: 0px !important;
}
.search-result .controls {
margin-left: 100px;
float: left;
margin-right: 10px;
}
.search-result label, .search-result input, .search-result button {
float: left;
}
.classic-search {
margin-bottom: 30px;
}
.classic-search h4 {
margin-bottom: 3px;
}
.classic-search h4 a {
color: #314558;
}
.file-search tr td img {
float: left;
padding-right: 10px;
}
.file-search tr td strong {
display: block;
padding-top: 5px;
}
.file-search tr td {
vertical-align: middle;
}
.product-search {
background: #F7F7F7;
margin-bottom: 15px;
}
.product-text img {
float: left;
margin-right: 15px;
}
.product-text, .product-text .product-text-info {
overflow: hidden;
}
.product-info {
color: #616161;
float: left;
font-size: 12px;
margin-bottom: 5px;
padding: 15px 30px;
text-transform: uppercase;
}
.product-info span {
color: #e18090;
display: block;
font-size: 25px;
font-weight: 200;
margin-top: 10px;
text-transform: uppercase;
}
/*mail-btn*/
.mail-btn .btn {
background-image: -moz-linear-gradient(center top , #FDFDFD 0%, #EAEAEA 100%);
box-shadow: none;
}
.mail-btn .btn:hover, .mail-btn .btn:focus {
background: none;
box-shadow: none;
}
.mail-btn .btn-group > .btn + .btn {
margin-left: 0;
}
/*alert*/
.alert {
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
/*error*/
.error-page {display: block; text-align: center;}
.error-page h1 {color: #adafb2; font-size: 30px; font-weight: bold; line-height: 50px; padding: 20px 0}
.error-page h1 strong {color: #adafb2; font-size: 60px; font-weight: bold}
.error-page p {color: #adafb2; font-size: 20px; font-weight: bold;}
/*profile*/
.profile-pic {
display: block;
margin-bottom: 10px;
}
.nav-stacked > li > a {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
/*accordion-group*/
.accordion-group a {
text-decoration: none;
}
.accordion-group {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
/*tab*/
.custom-tab .nav-tabs > li > a {
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
}
.custom-tab > .nav-tabs {
border: medium none;
margin: 0;
}
.custom-tab > .tab-content {
/*background-color: #FFFFFF;*/
border: 1px solid #DDDDDD;
border-radius: 0 0 0 0;
padding: 10px;
}
/*tree view*/
.widget-body > .actions {
float: right;
margin: 6px 0 0;
padding: 3px 5px 2px;
}
/*blog*/
.blog {
border-bottom: 1px solid #dcdbdb;
display: inline-block;
margin: 10px 0;
}
/*.blog img {margin-bottom: 10px; width: 100%; margin-top: 12px}*/
.blog h2, .blog h2 a{
color: #868686 !important;
font-size: 28px;
font-weight: normal;
margin: 15px 0 0 0;
padding: 0;
line-height: normal;
}
.blog h2 a:hover {
color: #4A8BC2 !important;
}
.blog p {
margin-bottom: 20px;
line-height: 24px
}
.blog a.blog-features {
display: block;
text-align: center;
margin-bottom: 10px;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
padding: 10px;
font-weight: normal;
background: #dfdfdf;
color: #969696;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog .author {
color: #3b3431;
}
.blog .blog-features i {
font-size: 35px;
margin: 5px 0;
display: inline-block;
}
.blog .orange .blog-features.active, .blog .orange .blog-features:hover ,.istar-orange {
background: #f37b53;
color: #fff;
}
.blog .green .blog-features.active, .blog .green .blog-features:hover ,.istar-green {
background: #0ca389;
color: #fff;
}
.blog .red .blog-features.active, .blog .red .blog-features:hover ,.istar-red {
background: #de577b;
color: #fff;
}
.blog .yellow .blog-features.active, .blog .yellow .blog-features:hover ,.istar-yellow {
background: #fccb2f;
color: #fff;
}
.blog .date p{
margin: 0;
padding: 0px;
line-height: 30px;
}
.blog .date .day, .blog .date .month {
display: block;
}
.blog .date .day {
font-size: 35px;
margin: 5px 0;
}
.blog .date .month {
text-transform: uppercase;
font-size: 20px;
}
.blog-side-bar {
padding: 15px 0px 1px 10px;
color: #fff;
margin-bottom: 20px;
}
.blog-side-bar h2 {
text-transform: uppercase;
font-size: 18px;
margin: 0;
padding: 0;
line-height: normal;
font-family: "MyriadPro-Regular","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.blog-side-bar ul {
margin-top: 15px;
margin-left: 0;
}
/*blue box*/
.blog-side-bar.blue-box {
background: #66bbfc;
}
.blog-side-bar.blue-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.blue-box ul li a {
background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.blue-box ul li a:hover {
background: #fff;
}
.blog-side-bar.blue-box ul li a:hover i, .blog-side-bar.blue-box ul li a:hover span{
color: #606060;
}
/*green box*/
.blog-side-bar.green-box {
background: #0ca389;
}
.blog-side-bar .green-box-blog {
background: rgba(0, 0, 0, 0.2);
padding: 2%;
width: 93%;
display: inline-block;
}
.green-box-blog a{color: #fff}
.green-box-blog a:hover{text-decoration: underline;}
.blog-side-bar.green-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.green-box ul li a {
background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 80px;
height: 80px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.green-box ul li a:hover {
background: #fff;
}
.blog-side-bar.green-box ul li a:hover i, .blog-side-bar.green-box ul li a:hover span{
color: #606060;
}
/*公文、新闻右侧分类*/
.blog-side-bar.group-box {
background: #0DAED3;
margin-top: 10px;
}
.blog-side-bar.group-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.group-box ul li a {
background: #da6e4b;
padding: 10px;
display: inline-block;
text-align: center;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.group-box ul li a:hover {
background: #fff;
}
.blog-side-bar.group-box ul li a:hover i, .blog-side-bar.group-box ul li a:hover span{
color: #606060;
}
/*-------*/
/*orange box*/
.blog-side-bar.orange-box {
background: #f37b53;
}
.blog-side-bar.orange-box ul li {
display: inline-block;
text-align: center;
}
.blog-side-bar.orange-box ul li a {
background: #da6e4b;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog-side-bar.orange-box ul li a:hover {
background: #fff;
}
.blog-side-bar.orange-box ul li a:hover i, .blog-side-bar.orange-box ul li a:hover span{
color: #606060;
}
/*-------*/
.blog-side-bar ul li i {
font-size: 30px;
width: 100%;
margin-top: 10px;
}
.blog-side-bar ul li span.large {
font-size: 25px;
width: 100%;
margin-top: 10px;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
text-transform: uppercase;
}
.blog-side-bar ul li i, .blog-side-bar ul li span {
display: inline-block;
color: #fff;
}
.blog-side-bar ul li:last-child {
margin-right: 0;
}
.blog-side-bar ul li a {
display: block;
line-height: 35px;
text-decoration: none;
}
.blog-side-bar h5, .blog-side-bar h5 a {
padding: 0;
margin: 10px 0 0 0;
line-height: normal;
font-weight: bold;
color: #fff;
}
.blog-side-bar p {
margin-bottom: 0;
}
.blog-side-bar ul.tag {
width: 100%;
display: inline-block;
}
.blog-side-bar ul.tag li{
float: left;
margin-right: 10px;
border-bottom: none;
margin-bottom: 10px;
line-height: 18px;
}
.blog-side-bar ul.tag li a {
color: #fff;
padding: 0px 10px;
background: rgba(0, 0, 0, 0.2);
}
.blog-side-bar ul.tag li a:hover {
background: #fff;
color: #606060;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.blog h2{text-align: center;}
.show-right {
float: right !important;
}
.post-comment .color-red {
color: #FF0000;
}
.blog-side-bar.red-box {
background: #de577b;
}
.blog .well .label{
font-size: 14px;
padding: 10px;
color: #fff;
}
/*custom pagination*/
.custom-pagination {
margin: 10px 0 20px;
}
.custom-pagination ul {
display: inline-block;
margin-bottom: 0;
margin-left: 0;
}
.custom-pagination ul > li {
display: inline;
margin: 0 5px;
}
.custom-pagination ul > li > a {
border: 1px solid #dcdbdb;
color: #717171;
padding: 5px 10px;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.custom-pagination ul > li > a:hover,
.custom-pagination ul > li > a:focus,
.custom-pagination ul > .active > a,
.custom-pagination ul > .active > span {
background: #4a8bc2;
border: 1px solid #4a8bc2;
color: #fff;
padding: 5px 10px;
text-decoration: none;
}
/*invoice-list*/
.invoice-list h5 {
text-transform: uppercase;
}
.invoice-block {
text-align: right;
}
ul.amounts li {
padding:10px;
margin-bottom: 5px;
background: #f1f1f1;
}
.invoice-date-range .control-group label, .invoice-date-range .control-group input {
float: left;
}
.invoice-date-range .control-group label {
width: 70px;
}
.invoice-date-range .control-group input {
margin-right: 15px;
}
.billing-form label{
width: 25%;
float: left;
}
.invoice-input input {
margin-bottom: 0;
}
/*about us*/
.about-us img{
width: 100%;
height: 188px;
}
.about-us .info {
height: 188px;
color: #fff;
float: left;
width: 100%;
}
.about-us .terques {
background: #2fbfca;
}
.about-us .red {
background: #de577b;
}
.about-us .green {
background: #8ebf48;
}
.about-us .blue {
background: #66bbfc;
}
.about-us .yellow {
background: #f5c146;
}
.about-us .orange {
background: #f37b53;
}
.about-us .info h1 {
font-size: 30px;
text-align: center;
padding-top: 45px;
line-height: normal;
margin-bottom: 0;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
}
.about-us .info p {
font-size: 14px;
text-align: center;
font-family: "MyriadPro-Light","Microsoft YaHei","simsun",'Arial, Helvetica, sans-serif';
text-transform: uppercase;
}
.about-us .info .social-links {
text-align: center;
display: inline-block;
width: 100%;
}
.about-us .info .social-links a {
margin: 0 5px;
font-size: 20px;
color: rgba(256,256,256,0.5);
text-decoration: none;
}
.about-us .info .social-links a:hover {
color: #fff;
}
/*contact us*/
.contact-us h3 {
text-align: center;
padding-bottom:0px;
margin:0;
}
.contact-us h4 {
color: #fff !important;
margin:0;
padding: 12px 11px 10px 15px;
}
.contact-us .feedback p {
text-align: center;
}
.one-half {
margin-right: 21px;
}
.feedback .control-group {
margin-bottom: 15px;
}
.datepicker.dropdown-menu {z-index: 10000;}
.btn-navbar.collapsed i {color: #fff}
/*editable table*/
#editable-sample tr td input.small {
width: 160px !important;
}
/*filter effect*/
.filter {
background: #E5E5E5;
margin-right: 10px;
line-height: 33px;
padding: 0 15px;
font-size: 12px;
color: #555;
float: left;
font-weight: normal;
cursor: pointer;
transition: all 0.5s ease-in-out 0s;
}
.filter:hover, .filter.selected {
background: #4A8BC2;
color: #FFFFFF;
transition: all 0.5s ease-in-out 0s;
text-decoration: none!important
}
.filter.last-child {
margin-right: 0px !important;
}
.subtitle,.subtitle p a{color: #888;}
.subtitle{padding: 5px;margin-top: 10px;border-top: 2px solid #b94a48;text-align: center;}
.subtitle p{padding: 5px;margin: 0;color: #888;}
.docBody p{text-indent: 1.5em}
.docAttach{margin-top: 20px;}
.docAttach li{display: inline-block;text-align: center;}
.docAttach ul li a {background: #5ca8e2;
margin: 0px 5px 8px 0;
padding: 10px;
display: inline-block;
text-align: center;
width: 74px;
height: 74px;
line-height: 35px;
text-decoration: none;
transition-duration: 500ms;
transition-property: width, background;
transition-timing-function: ease;
-webkit-transition-duration: 500ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
}
.docAttach ul li a:hover {
background: #ddd;
}
.docAttach ul li i, .docAttach ul li span {
display: inline-block;
color: #fff;
}
.docAttach ul li a:hover i, .docAttach ul li a:hover span {
color: #606060;}
.docAttach ul li i {
font-size: 30px;
width: 100%;
margin-top: 10px;
}
.media-heading,.media-body span{color: #888}
.media-body .pull-left img{margin-right: 10px;}
.dropdown-navbar .msg {
width: 320px;
border-top: 1px solid #f5f6f7
}
.dropdown-navbar .msg img {
float: left;
width: 40px;
height: 40px;
margin-right: 15px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .msg div {
margin-bottom: 20px
}
.dropdown-navbar .msg .msg-title {
font-weight: 700;
color: #65707f;
float: left
}
.dropdown-navbar .msg .msg-time {
float: right;
color: #a2a7b0
}
.dropdown-navbar .msg p {
color: #b2b6c2;
width: 270px;
display: inline-block;
white-space: normal;
margin: 0
}
.dropdown-navbar .notify {
width: 270px;
padding-left: 10px;
border-top: 1px solid #f5f6f7;
position: relative
}
.dropdown-navbar .notify p {
display: inline-block;
padding-top: 5px;
white-space: normal;
margin-top: 0
}
.dropdown-navbar .notify .badge {
position: absolute;
right: 5px;
top: 12px;
padding: 2px 7px
}
.dropdown-navbar .notify [class*=icon-] {
display: inline-block;
float: left;
color: #fff;
font-size: 14px;
padding: 8px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify img {
float: left;
width: 30px;
height: 30px;
margin-right: 5px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%
}
.dropdown-navbar .notify [class*=icon-].pink {
background: #e36781
}
.dropdown-navbar .notify [class*=icon-].green {
background: #74c054
}
.dropdown-navbar .notify [class*=icon-].orange {
background: #e0b447
}
.dropdown-navbar .notify [class*=icon-].blue {
background: #66badf
}
/***** VERTICAL WIZARD *****/
.actionBar {
padding: 20px; position: relative; overflow: hidden; clear: both;
}
.actionBar .loader { float: left; display: none; }
.actionBar a {
float: right; display: inline-block; padding: 7px 15px; background: #0F87AD; color: #fff; margin-left: 5px; font-weight: bold;
line-height: 21px; border: 1px solid #0F7280;
}
.actionBar a:hover { text-decoration: none; background: #485B79; color: #fff; border: 1px solid #3f526f; }
.actionBar a.buttonDisabled { background: #eee; border: 1px solid #ccc; color: #999; }
.actionBar a.buttonDisabled:hover { background: #eee; color: #999; cursor: default; }
.verwizard .verticalmenu { list-style: none; float: left;}
.verwizard .verticalmenu li { margin-bottom: 2px; }
.verwizard .verticalmenu a { display: block; padding: 10px; color: #999; }
.verwizard .verticalmenu a:hover { text-decoration: none; }
.verwizard .verticalmenu a.selected { background: #0F87AD; color: #fff; }
.verwizard .verticalmenu a.done { background: #999; color: #fff; }
.verwizard .verticalmenu a span { font-weight: bold; }
.wizardMain {
border: 1px solid #ddd; padding: 20px;
}
.wizardMain h4 {
padding-bottom: 20px; border-bottom: 1px solid #ddd;
}
.wizardMain p { margin: 20px 0; }
label.error {
font-weight: bold;
color: #999;
padding: 2px 8px;
}
| 0.285073 | 0.05647 |
@import url('colors.css');
body {
font-family: Verdana;
}
/* Fixed Headers */
/* fixed column headers */
thead th {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
thead th:first-child {
left: 0;
z-index: 3;
}
tbody tr td:first-child {
z-index: 2;
left: 0;
position: sticky;
}
tbody tr td:not(:first-child) {
z-index: 1;
}
/* Proven method to visually hide something but */
/* still make it available to assistive technology */
/* Thanks to https://adrianroselli.com/2020/01/fixed-table-headers.html#VisHidden */
.visually-hidden {
position: absolute;
top: auto;
overflow: hidden;
clip: rect(1px 1px 1px 1px); /* IE 6/7 */
clip: rect(1px, 1px, 1px, 1px);
width: 1px;
height: 1px;
white-space: nowrap;
}
/* scroll container */
[role="region"][aria-labelledby][tabindex] {
overflow: auto;
max-height: 100vh;
}
[role="region"][aria-labelledby][tabindex]:focus {
outline: .1em solid rgba(0,0,0,.1);
}
/* scrolling shadow */
[role="region"][aria-labelledby][tabindex] {
background:
linear-gradient(to right, transparent 30%, rgba(255,255,255,0)),
linear-gradient(to right, rgba(255,255,255,0), white 70%) 0 100%,
radial-gradient(farthest-side at 0% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0)),
radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0)) 0 100%;
background-repeat: no-repeat;
background-color: #fff;
background-size: 4em 100%, 4em 100%, 1.4em 100%, 1.4em 100%;
background-position: 0 0, 100%, 0 0, 100%;
background-attachment: local, local, scroll, scroll;
}
/* overall table style */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
min-width: 5rem;
}
table caption {
font-size: smaller;
font-style: italic;
text-align: left;
padding: 1vh;
}
/* a solid background color and inset shadow for a 'border' stay fixed better than other options, for when the header is fixed and the table scrolls */
thead th {
background: var(--hardcomp);
}
thead th {
/* top and bottom 'border' */
box-shadow: inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary);
}
thead th:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
thead th:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
thead th:first-of-type {
/* left, top and bottom 'border' */
box-shadow: inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary), inset 1px 0 0 var(--primary);
}
thead th:last-of-type {
/* right, top and bottom 'border' */
box-shadow: inset -1px 0 0 var(--primary), inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary);
}
tbody tr:nth-child(even) {
background-color: var(--softcomp);
}
tbody tr:nth-child(even) td:first-child {
background-color: var(--hardcomp);
}
tbody tr:nth-child(odd) td:first-child {
background-color: white;
}
th, td {
text-align: left;
font-size: smaller;
font-weight: normal;
vertical-align: top;
padding: 3vh;
}
/* header text */
thead th {
vertical-align: bottom;
font-size: smaller;
font-weight: bolder;
}
/* body text */
tbody a {
display: block;
padding-bottom: 1vh;
color: var(--primary);
}
tbody ul {
line-height: 1.5rem;
}
/**************************/
/* results table-specific */
tbody .testenv a {
display: block;
padding-bottom: 1vh;
}
tbody span.sw {
display: block;
}
tbody a.score, tbody td:not(:first-of-type) a {
color: inherit;
}
tbody .not-tested {
font-weight: lighter;
font-style: italic;
}
tbody .readingSystem {
font-size: larger;
}
tbody .sw:not(.readingSystem) {
padding-left: 0.5rem;
}
tbody span.pass, tbody span.fail {
white-space: nowrap;
}
/* sorting */
thead th.sortable {
cursor: pointer;
}
thead th.sortable::after {
color: var(--sort-icons-color);
}
thead th.sortable[aria-sort='ascending']::after {
content: '▲';
}
thead th.sortable[aria-sort='descending']::after {
content: '▼';
}
.table-controls {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
.table-controls .table-filters {
display: flex;
flex-wrap: wrap;
border: none;
padding: 0;
margin: 0;
row-gap: .5rem;
column-gap: 2rem;
}
.table-controls button {
height: min-content;
align-self: end;
}
@media (max-width: 768px) {
.table-controls .table-filters {
gap: .5rem;
}
}
|
src/pages/css/tables.css
|
@import url('colors.css');
body {
font-family: Verdana;
}
/* Fixed Headers */
/* fixed column headers */
thead th {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
thead th:first-child {
left: 0;
z-index: 3;
}
tbody tr td:first-child {
z-index: 2;
left: 0;
position: sticky;
}
tbody tr td:not(:first-child) {
z-index: 1;
}
/* Proven method to visually hide something but */
/* still make it available to assistive technology */
/* Thanks to https://adrianroselli.com/2020/01/fixed-table-headers.html#VisHidden */
.visually-hidden {
position: absolute;
top: auto;
overflow: hidden;
clip: rect(1px 1px 1px 1px); /* IE 6/7 */
clip: rect(1px, 1px, 1px, 1px);
width: 1px;
height: 1px;
white-space: nowrap;
}
/* scroll container */
[role="region"][aria-labelledby][tabindex] {
overflow: auto;
max-height: 100vh;
}
[role="region"][aria-labelledby][tabindex]:focus {
outline: .1em solid rgba(0,0,0,.1);
}
/* scrolling shadow */
[role="region"][aria-labelledby][tabindex] {
background:
linear-gradient(to right, transparent 30%, rgba(255,255,255,0)),
linear-gradient(to right, rgba(255,255,255,0), white 70%) 0 100%,
radial-gradient(farthest-side at 0% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0)),
radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0)) 0 100%;
background-repeat: no-repeat;
background-color: #fff;
background-size: 4em 100%, 4em 100%, 1.4em 100%, 1.4em 100%;
background-position: 0 0, 100%, 0 0, 100%;
background-attachment: local, local, scroll, scroll;
}
/* overall table style */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
min-width: 5rem;
}
table caption {
font-size: smaller;
font-style: italic;
text-align: left;
padding: 1vh;
}
/* a solid background color and inset shadow for a 'border' stay fixed better than other options, for when the header is fixed and the table scrolls */
thead th {
background: var(--hardcomp);
}
thead th {
/* top and bottom 'border' */
box-shadow: inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary);
}
thead th:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
thead th:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
thead th:first-of-type {
/* left, top and bottom 'border' */
box-shadow: inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary), inset 1px 0 0 var(--primary);
}
thead th:last-of-type {
/* right, top and bottom 'border' */
box-shadow: inset -1px 0 0 var(--primary), inset 0 1px 0 var(--primary), inset 0 -1px 0 var(--primary);
}
tbody tr:nth-child(even) {
background-color: var(--softcomp);
}
tbody tr:nth-child(even) td:first-child {
background-color: var(--hardcomp);
}
tbody tr:nth-child(odd) td:first-child {
background-color: white;
}
th, td {
text-align: left;
font-size: smaller;
font-weight: normal;
vertical-align: top;
padding: 3vh;
}
/* header text */
thead th {
vertical-align: bottom;
font-size: smaller;
font-weight: bolder;
}
/* body text */
tbody a {
display: block;
padding-bottom: 1vh;
color: var(--primary);
}
tbody ul {
line-height: 1.5rem;
}
/**************************/
/* results table-specific */
tbody .testenv a {
display: block;
padding-bottom: 1vh;
}
tbody span.sw {
display: block;
}
tbody a.score, tbody td:not(:first-of-type) a {
color: inherit;
}
tbody .not-tested {
font-weight: lighter;
font-style: italic;
}
tbody .readingSystem {
font-size: larger;
}
tbody .sw:not(.readingSystem) {
padding-left: 0.5rem;
}
tbody span.pass, tbody span.fail {
white-space: nowrap;
}
/* sorting */
thead th.sortable {
cursor: pointer;
}
thead th.sortable::after {
color: var(--sort-icons-color);
}
thead th.sortable[aria-sort='ascending']::after {
content: '▲';
}
thead th.sortable[aria-sort='descending']::after {
content: '▼';
}
.table-controls {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
.table-controls .table-filters {
display: flex;
flex-wrap: wrap;
border: none;
padding: 0;
margin: 0;
row-gap: .5rem;
column-gap: 2rem;
}
.table-controls button {
height: min-content;
align-self: end;
}
@media (max-width: 768px) {
.table-controls .table-filters {
gap: .5rem;
}
}
| 0.486819 | 0.118564 |
@charset "UTF-8";
/**
*
* @authors Matao (<EMAIL>)
* @date 2018-01-21 00:03:26
* @version $Id$
*/
/*导航栏公共样式Start*/
.navbar-inverse {
background-color: #000;
border-color: #080808;
}
.navbar>li>a{
color:#FFF;
}
.icon-search{
line-height:70px;
color:#bdbdbd;
}
.navbar-nav>li>a{
font-weight: 600;
line-height:40px;
color: #48494d;
}
.font-header{
font-weight: 700;
font-size:15px;
line-height:70px;
color: #48494d;
}
.tg{
float:left;
display:block;
width:70px;
height:30px;
border:1px solid #BDBDBD;
color:#BDBDBD;
line-height:30px;
text-align:center;
font-size:15px;
transition:border-radius .5s;
border-radius:40px;
margin:20px 10px;
}
.tg:hover{
border-radius:40px;
color:#2F2F2F !important;
background-color:#ffffff !important;
border:#BDBDBD;
}
.nav_right_hx{
height:12px;
display:inline-block;
margin:29px 8px;
border-right:1px solid #E5E5E5;
float:left;
line-height:80px;
}
/*导航栏公共样式End*/
/***************登陆页面 Start*********************/
.container{
display:table;
height:100%;
}
.row{
display: table-cell;
vertical-align: middle;
}
.row-centered {
text-align:center;
}
.col-centered {
display:inline-block;
float:none;
text-align:left;
margin-right:-4px;
}
.row-centered input{
width: 300px;
margin-bottom: 6px;
padding: 12px 10px;
border: 1px #ddd solid;
outline: none;
border-radius: 3px;
font-size: 16px;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
-o-transition: .4s ease all;
transition: .4s ease all;
}
.reg-link{
padding: 45px 0;
text-decoration: underline;
font-size:16px;
}
/***************登陆页面 End*********************/
/***************注册页面 Start*********************/
.reg-title{
padding-top:22%;
padding-bottom: 3%;
color: #666;
font-size:2.8rem;
}
/***************注册页面 End*********************/
/*移动端调整样式Stat*/
@media (max-width: 600px){
.navbar-toggle {
position: relative;
right: -25%;
float: right;
padding: 9px 10px;
margin-top: 17px;
margin-right: 15px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse{
position: relative;
left: -15%;
margin-right: -15px;
margin-left: -15px;
}
.reg-title {
padding-top: 50%;
padding-bottom: 5%;
color: #666;
font-size: 2.8rem;
}
}
/*移动端调整样式End*/
|
Bootstrap/css/admin.css
|
@charset "UTF-8";
/**
*
* @authors Matao (<EMAIL>)
* @date 2018-01-21 00:03:26
* @version $Id$
*/
/*导航栏公共样式Start*/
.navbar-inverse {
background-color: #000;
border-color: #080808;
}
.navbar>li>a{
color:#FFF;
}
.icon-search{
line-height:70px;
color:#bdbdbd;
}
.navbar-nav>li>a{
font-weight: 600;
line-height:40px;
color: #48494d;
}
.font-header{
font-weight: 700;
font-size:15px;
line-height:70px;
color: #48494d;
}
.tg{
float:left;
display:block;
width:70px;
height:30px;
border:1px solid #BDBDBD;
color:#BDBDBD;
line-height:30px;
text-align:center;
font-size:15px;
transition:border-radius .5s;
border-radius:40px;
margin:20px 10px;
}
.tg:hover{
border-radius:40px;
color:#2F2F2F !important;
background-color:#ffffff !important;
border:#BDBDBD;
}
.nav_right_hx{
height:12px;
display:inline-block;
margin:29px 8px;
border-right:1px solid #E5E5E5;
float:left;
line-height:80px;
}
/*导航栏公共样式End*/
/***************登陆页面 Start*********************/
.container{
display:table;
height:100%;
}
.row{
display: table-cell;
vertical-align: middle;
}
.row-centered {
text-align:center;
}
.col-centered {
display:inline-block;
float:none;
text-align:left;
margin-right:-4px;
}
.row-centered input{
width: 300px;
margin-bottom: 6px;
padding: 12px 10px;
border: 1px #ddd solid;
outline: none;
border-radius: 3px;
font-size: 16px;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
-o-transition: .4s ease all;
transition: .4s ease all;
}
.reg-link{
padding: 45px 0;
text-decoration: underline;
font-size:16px;
}
/***************登陆页面 End*********************/
/***************注册页面 Start*********************/
.reg-title{
padding-top:22%;
padding-bottom: 3%;
color: #666;
font-size:2.8rem;
}
/***************注册页面 End*********************/
/*移动端调整样式Stat*/
@media (max-width: 600px){
.navbar-toggle {
position: relative;
right: -25%;
float: right;
padding: 9px 10px;
margin-top: 17px;
margin-right: 15px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse{
position: relative;
left: -15%;
margin-right: -15px;
margin-left: -15px;
}
.reg-title {
padding-top: 50%;
padding-bottom: 5%;
color: #666;
font-size: 2.8rem;
}
}
/*移动端调整样式End*/
| 0.232397 | 0.049912 |
.iscroll-luo-box {
position: relative;
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
.iscroll-luo-box div {
position: relative;
}
.iscroll-luo-box .sl_scroller {
width: 100%;
height: 100%;
overflow: hidden;
}
.iscroll-luo-box .sl_scroller > div {
min-height: calc(100% + 1px);
/*display:-webkit-flex;
display:-ms-flex;
display:flex;
flex-flow:column nowrap;*/
display: flex;
-webkit-user-select: none;
user-select: none;
}
.iscroll-luo-box .sl_scroller .scroller-content {
background-color: #ffffff;
flex: auto;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown,
.iscroll-luo-box .sl_scroller .scroller-pullUp {
height: 25px;
line-height: 25px;
font-size: 12px;
text-align: center;
position: absolute;
left: 0px;
width: 100%;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown {
top: -24px;
-webkit-user-select: none;
user-select: none; /*flex-shrink:0;*/
}
.iscroll-luo-box .sl_scroller .scroller-pullUp {
bottom: -24px;
-webkit-user-select: none;
user-select: none; /*flex-shrink:0;*/
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .msg,
.iscroll-luo-box .sl_scroller .scroller-pullUp .msg {
padding-left: 4px;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon {
display: inline-block;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: -webkit-transform 300ms;
transition: -webkit-transform 300ms;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon.reverse_icon,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon.reverse_icon {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon img,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon img {
width: 12px;
height: auto;
}
.iscroll-luo-box .sl_down {
position: absolute;
width: 100%;
top: 0;
height: 25px;
line-height: 25px;
text-align: center;
color: #fff;
font-size: 12px;
z-index: 99;
-webkit-transform: translateY(-25px);
transform: translateY(-25px);
-webkit-transition: -webkit-transform 200ms;
transition: transform 200ms;
}
.iscroll-luo-box .sl_down > img {
height: 12px;
width: auto;
margin-right: 4px;
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
.iscroll-luo-box .sl_up {
position: absolute;
width: 100%;
bottom: 0;
height: 25px;
line-height: 25px;
text-align: center;
color: #fff;
font-size: 12px;
z-index: 99;
-webkit-transform: translateY(25px);
transform: translateY(25px);
-webkit-transition: -webkit-transform 200ms;
transition: transform 200ms;
}
.iscroll-luo-box .sl_up > img {
height: 12px;
width: auto;
margin-right: 4px;
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
.iscroll-luo-box .sl_show {
-webkit-transform: translateY(0);
transform: translateY(0);
}
|
src/a_component/iscrollLuo/index.css
|
.iscroll-luo-box {
position: relative;
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
.iscroll-luo-box div {
position: relative;
}
.iscroll-luo-box .sl_scroller {
width: 100%;
height: 100%;
overflow: hidden;
}
.iscroll-luo-box .sl_scroller > div {
min-height: calc(100% + 1px);
/*display:-webkit-flex;
display:-ms-flex;
display:flex;
flex-flow:column nowrap;*/
display: flex;
-webkit-user-select: none;
user-select: none;
}
.iscroll-luo-box .sl_scroller .scroller-content {
background-color: #ffffff;
flex: auto;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown,
.iscroll-luo-box .sl_scroller .scroller-pullUp {
height: 25px;
line-height: 25px;
font-size: 12px;
text-align: center;
position: absolute;
left: 0px;
width: 100%;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown {
top: -24px;
-webkit-user-select: none;
user-select: none; /*flex-shrink:0;*/
}
.iscroll-luo-box .sl_scroller .scroller-pullUp {
bottom: -24px;
-webkit-user-select: none;
user-select: none; /*flex-shrink:0;*/
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .msg,
.iscroll-luo-box .sl_scroller .scroller-pullUp .msg {
padding-left: 4px;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon {
display: inline-block;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: -webkit-transform 300ms;
transition: -webkit-transform 300ms;
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon.reverse_icon,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon.reverse_icon {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.iscroll-luo-box .sl_scroller .scroller-pullDown .icon img,
.iscroll-luo-box .sl_scroller .scroller-pullUp .icon img {
width: 12px;
height: auto;
}
.iscroll-luo-box .sl_down {
position: absolute;
width: 100%;
top: 0;
height: 25px;
line-height: 25px;
text-align: center;
color: #fff;
font-size: 12px;
z-index: 99;
-webkit-transform: translateY(-25px);
transform: translateY(-25px);
-webkit-transition: -webkit-transform 200ms;
transition: transform 200ms;
}
.iscroll-luo-box .sl_down > img {
height: 12px;
width: auto;
margin-right: 4px;
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
.iscroll-luo-box .sl_up {
position: absolute;
width: 100%;
bottom: 0;
height: 25px;
line-height: 25px;
text-align: center;
color: #fff;
font-size: 12px;
z-index: 99;
-webkit-transform: translateY(25px);
transform: translateY(25px);
-webkit-transition: -webkit-transform 200ms;
transition: transform 200ms;
}
.iscroll-luo-box .sl_up > img {
height: 12px;
width: auto;
margin-right: 4px;
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
.iscroll-luo-box .sl_show {
-webkit-transform: translateY(0);
transform: translateY(0);
}
| 0.390825 | 0.044974 |
html
{
height:100%;
}
body
{
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-weight:normal;
font-size:13px;
background:url("../imgs/bg.jpg") repeat-x 0px 0px;
text-align:center;
/* background-attachment:fixed;*/
padding:0px;
margin:0px;
height:100%;
}
center
{
height:100%;
}
#vp
{
width:1024px;
height:100%;
table-layout:fixed;
background:url("../imgs/bg_bridge.jpg") repeat-y 0px 0px;
text-align:left;
}
#viewport
{
position:relative;
width:1024px;
}
/* description of sitemap entries */
span.description
{
font-size:10px;
margin-left:20px;
}
/* styles of dynamic contents */
.header_1
{
font-family:Arial, Helvetica, Sans-serif;
color:#6aac16;
font-style:normal;
font-weight:normal;
font-size:20px;
}
.subtitle
{
font-family:Arial, Helvetica, Sans-serif;
color:#1F6201;
font-style:italic;
font-weight:normal;
font-size:12px;
margin-left:30px;
}
td.cell_image_newsletter
{
background:url("../imgs/letter.gif") no-repeat 0px 0px;
width:314px;
height:206px;
}
div.messagebox
{
border:1px solid #6aac16;
padding:10px;
margin-top:10px;
margin-bottom:10px;
}
div.messagebox_error
{
border:1px solid #AB1616;
padding:10px;
margin-top:10px;
margin-bottom:10px;
}
/* forms */
form
{
padding-left:30px !important;
}
table.form_legend
{
border:1px solid #6AAC16;
margin-top:10px;
}
form.contact
{
background:url("../../user/mod-test/UI/form_contact.jpg") no-repeat 475px 3px;
}
form.decoration
{
background:url("../../user/mod-test/UI/form_decoration.jpg") no-repeat 475px 3px;
}
form.gardenplanning
{
background:url("../../user/mod-test/UI/form_gardenplanning.jpg") no-repeat 475px 3px;
}
form.indoor
{
background:url("../../user/mod-test/UI/form_indoor.jpg") no-repeat 475px 3px;
}
form.newsletter
{
background:url("../../user/mod-test/UI/form_newsletter.jpg") no-repeat 475px 3px;
}
form.coupon
{
background:url("../../user/mod-test/UI/form_coupon.jpg") no-repeat 475px 3px;
}
form.catalog
{
background:url("../../user/mod-test/UI/form_catalog.jpg") no-repeat 475px 3px;
}
form table td
{
vertical-align:top;
text-align:left;
}
form table td.form_label
{
color:#6aac16;
width:180px;
}
form table td.form_label_error
{
color:#AB1616;
}
form table tr.form_field_description td,
form div.form_field_description
{
font-size:9px;
color:#777777;
padding-top:5px;
}
form table td.form_validator_error
{
color:#AB1616;
font-size:9px;
/* opacity: always set all 3 values for cross-browser compatibility*/
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
opacity: 0.70;
background-color:#ffffff;
}
.form_info
{
text-align:justify;
}
form input
{
width:250px;
border:1px solid #cdcdcd;
}
form textarea.textinput
{
width:250px;
border:1px solid #cdcdcd;
height:180px;
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-size:10px;
}
form input.checkboxinput
{
width:auto;
border:none;
}
form select
{
width:252px;
border:1px solid #cdcdcd;
}
div.planting_selectors
{
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-weight:bold;
font-size:13px;
color:#ffffff;
background-color:#3e6530;
padding-left:10px;
padding-right:10px;
padding-top:5px;
padding-bottom:5px;
line-height:18px;
}
table.planting_table
{
width:100%;
}
#sitemap_hier_list li.separator
{
list-style-type:none;
height:10px;
}
#sitemap_hier_list li span.description
{
padding-left:10px;
}
/** IMAGE GALLERY CUSTOMIZING **/
div.gallery
{
border:1px solid #000000;
padding:0px;
}
div.gallery div.panel
{
/*background:url("../imgs/bg.jpg") repeat-x 0px 0px;*/
padding:5px;
}
#mp3player.hidden
{
position:absolute;
left:-2000px;
}
|
ph-css/src/test/resources/testfiles/css21/good/phloc/test/main.css
|
html
{
height:100%;
}
body
{
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-weight:normal;
font-size:13px;
background:url("../imgs/bg.jpg") repeat-x 0px 0px;
text-align:center;
/* background-attachment:fixed;*/
padding:0px;
margin:0px;
height:100%;
}
center
{
height:100%;
}
#vp
{
width:1024px;
height:100%;
table-layout:fixed;
background:url("../imgs/bg_bridge.jpg") repeat-y 0px 0px;
text-align:left;
}
#viewport
{
position:relative;
width:1024px;
}
/* description of sitemap entries */
span.description
{
font-size:10px;
margin-left:20px;
}
/* styles of dynamic contents */
.header_1
{
font-family:Arial, Helvetica, Sans-serif;
color:#6aac16;
font-style:normal;
font-weight:normal;
font-size:20px;
}
.subtitle
{
font-family:Arial, Helvetica, Sans-serif;
color:#1F6201;
font-style:italic;
font-weight:normal;
font-size:12px;
margin-left:30px;
}
td.cell_image_newsletter
{
background:url("../imgs/letter.gif") no-repeat 0px 0px;
width:314px;
height:206px;
}
div.messagebox
{
border:1px solid #6aac16;
padding:10px;
margin-top:10px;
margin-bottom:10px;
}
div.messagebox_error
{
border:1px solid #AB1616;
padding:10px;
margin-top:10px;
margin-bottom:10px;
}
/* forms */
form
{
padding-left:30px !important;
}
table.form_legend
{
border:1px solid #6AAC16;
margin-top:10px;
}
form.contact
{
background:url("../../user/mod-test/UI/form_contact.jpg") no-repeat 475px 3px;
}
form.decoration
{
background:url("../../user/mod-test/UI/form_decoration.jpg") no-repeat 475px 3px;
}
form.gardenplanning
{
background:url("../../user/mod-test/UI/form_gardenplanning.jpg") no-repeat 475px 3px;
}
form.indoor
{
background:url("../../user/mod-test/UI/form_indoor.jpg") no-repeat 475px 3px;
}
form.newsletter
{
background:url("../../user/mod-test/UI/form_newsletter.jpg") no-repeat 475px 3px;
}
form.coupon
{
background:url("../../user/mod-test/UI/form_coupon.jpg") no-repeat 475px 3px;
}
form.catalog
{
background:url("../../user/mod-test/UI/form_catalog.jpg") no-repeat 475px 3px;
}
form table td
{
vertical-align:top;
text-align:left;
}
form table td.form_label
{
color:#6aac16;
width:180px;
}
form table td.form_label_error
{
color:#AB1616;
}
form table tr.form_field_description td,
form div.form_field_description
{
font-size:9px;
color:#777777;
padding-top:5px;
}
form table td.form_validator_error
{
color:#AB1616;
font-size:9px;
/* opacity: always set all 3 values for cross-browser compatibility*/
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
opacity: 0.70;
background-color:#ffffff;
}
.form_info
{
text-align:justify;
}
form input
{
width:250px;
border:1px solid #cdcdcd;
}
form textarea.textinput
{
width:250px;
border:1px solid #cdcdcd;
height:180px;
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-size:10px;
}
form input.checkboxinput
{
width:auto;
border:none;
}
form select
{
width:252px;
border:1px solid #cdcdcd;
}
div.planting_selectors
{
font-family:Verdana, Arial, Helvetica, Sans-serif;
font-weight:bold;
font-size:13px;
color:#ffffff;
background-color:#3e6530;
padding-left:10px;
padding-right:10px;
padding-top:5px;
padding-bottom:5px;
line-height:18px;
}
table.planting_table
{
width:100%;
}
#sitemap_hier_list li.separator
{
list-style-type:none;
height:10px;
}
#sitemap_hier_list li span.description
{
padding-left:10px;
}
/** IMAGE GALLERY CUSTOMIZING **/
div.gallery
{
border:1px solid #000000;
padding:0px;
}
div.gallery div.panel
{
/*background:url("../imgs/bg.jpg") repeat-x 0px 0px;*/
padding:5px;
}
#mp3player.hidden
{
position:absolute;
left:-2000px;
}
| 0.263126 | 0.056574 |
@const ICON_URL: url(Resources.pak#16\icon_url.png);
@const ICON_LOADING: url(Resources.pak#16\icon_loading.png);
@const ICON_PAUSE: url(Resources.pak#16\icon_pause.png);
@const ICON_STOP: url(Resources.pak#16\icon_stop.png);
@const ICON_EMPTY: url(Resources.pak#16\icon_empty.png);
@const ICON_CHECKED: url(Resources.pak#16\icon_checked.png);
@const ICON_CHECKED_RED: url(Resources.pak#16\icon_checkedred.png);
body
{
font:system;
margin:0;
}
code {
font:system;
}
menu.context > li.newtab { foreground-image:@ICON_PLUS; }
menu.context > li.newcstab { foreground-image:@ICON_CONSOLE; }
menu.context > li.closetab { foreground-image:@ICON_CLOSE; foreground-image-transformation: colorize(gray); }
.tabs
{
font:system;
behavior:tabs;
height:*;
width:*;
overflow:hidden;
context-menu: selector(#tabmenuext);
}
.tabs > .strip /* the tab strip */
{
flow: horizontal;
width:*;
height:*;
padding: 4px 10px 0 4px;
background-color: window window threedface threedface;
border-bottom:1px solid threedshadow;
}
.tabs > .strip > [panel] /* the tab having panel attribute, passive by default */
{
padding: 3px 0px 5px 10px; /*3px 8px*/
height: *; /* span the whole row */
max-width: auto; /* not wider than max-intrinsic */
background-color: window window threedface threedface;
border-radius: 6px 6px 0 0;
border-style:solid;
border-color:threedshadow;
border-width:1px 1px 0 1px;
/*margin:0 -1px;*/
opacity:0.90;
overflow:hidden;
/*cursor:pointer;*/
}
.tabs > .strip > [panel]:hover /* passive tab */
{
/*border-top-color: orange;*/
/*color:blueviolet;*/
background-color: window window threedhighlight threedhighlight;
opacity:1.00;
}
.tabs > .strip > [panel]:current /*active tab*/
{
margin:-2px -2px -1px -2px;
padding: 4px 0px 5px 10px;
background-color: window window threedhighlight threedhighlight;
/*background-color-bottom-right: threedhighlight;
background-color-bottom-left: threedhighlight;*/
position:relative;
opacity:1.00;
}
.tabs > .strip > [panel]:current:hover /*active tab*/
{
/*color:red;*/
}
.tabs:tab-focus > .strip > [panel]:current > * /* outline active tab content if we've gotten focus by tab*/
{
outline: 1px dotted invert;
}
.tabs > [name] { display:none;}
.tabs > [name]:expanded // current panel
{
padding:4px;
width:*;
height:*;
border:1px solid threedshadow;
border-top-style:none;
display:none;
}
/* tabs drag-n-drop support */
.tabs .strip
{
accept-drop: selector( div[panel] ); /* accept drop of div[panel] */
outline-width: 4px;
}
.tabs .strip div[panel]
{
/*draggable: only-move;*/
}
.tabs .strip div[panel]:drop-marker
{
}
.tabpanel {
min-width:80px;
max-width:200px;
white-space:nowrap;
draggable: only-move;
text-overflow:ellipsis;
overflow:visible;
}
img.tabicon {
width:16px;
height:16px;
max-width:16px;
max-height:16px;
foreground-image:@ICON_EMPTY;
background-image:@ICON_BLANK;
vertical-align: middle;
}
button.closetab {
padding:7px;
/*background-color: threedhighlight;*/
foreground-position:50% 50%;
background-image: url(theme:toolbar-button-normal);
foreground-image-transformation: colorize(gray);
foreground-image: @ICON_CLOSE;
foreground-repeat:no-repeat;
vertical-align: middle;
/*float:right;*/
margin-left:*;
margin-right:4px;
width:4px;
min-width:4px;
}
code.tabtitle {
font:system;
/*float:left;*/
margin-left:3px;
min-width:0;
max-width:max-intrinsic;
white-space:nowrap;
overflow-x:hidden;
text-overflow:ellipsis;
}
button.closetab:hover
{
background-image: url(theme:toolbar-button-hover);
foreground-image-transformation: colorize(#0099FF);
}
button.closetab:active
{
background-image: url(theme:toolbar-button-pressed);
}
div.newtab {
width:24px;
}
div.newtab:hover {
foreground-image:@ICON_PLUS;
foreground-position:50% 50%;
foreground-repeat:no-repeat;
foreground-image-transformation: colorize(#0099FF);
}
|
packs/Resources/tabbar.css
|
@const ICON_URL: url(Resources.pak#16\icon_url.png);
@const ICON_LOADING: url(Resources.pak#16\icon_loading.png);
@const ICON_PAUSE: url(Resources.pak#16\icon_pause.png);
@const ICON_STOP: url(Resources.pak#16\icon_stop.png);
@const ICON_EMPTY: url(Resources.pak#16\icon_empty.png);
@const ICON_CHECKED: url(Resources.pak#16\icon_checked.png);
@const ICON_CHECKED_RED: url(Resources.pak#16\icon_checkedred.png);
body
{
font:system;
margin:0;
}
code {
font:system;
}
menu.context > li.newtab { foreground-image:@ICON_PLUS; }
menu.context > li.newcstab { foreground-image:@ICON_CONSOLE; }
menu.context > li.closetab { foreground-image:@ICON_CLOSE; foreground-image-transformation: colorize(gray); }
.tabs
{
font:system;
behavior:tabs;
height:*;
width:*;
overflow:hidden;
context-menu: selector(#tabmenuext);
}
.tabs > .strip /* the tab strip */
{
flow: horizontal;
width:*;
height:*;
padding: 4px 10px 0 4px;
background-color: window window threedface threedface;
border-bottom:1px solid threedshadow;
}
.tabs > .strip > [panel] /* the tab having panel attribute, passive by default */
{
padding: 3px 0px 5px 10px; /*3px 8px*/
height: *; /* span the whole row */
max-width: auto; /* not wider than max-intrinsic */
background-color: window window threedface threedface;
border-radius: 6px 6px 0 0;
border-style:solid;
border-color:threedshadow;
border-width:1px 1px 0 1px;
/*margin:0 -1px;*/
opacity:0.90;
overflow:hidden;
/*cursor:pointer;*/
}
.tabs > .strip > [panel]:hover /* passive tab */
{
/*border-top-color: orange;*/
/*color:blueviolet;*/
background-color: window window threedhighlight threedhighlight;
opacity:1.00;
}
.tabs > .strip > [panel]:current /*active tab*/
{
margin:-2px -2px -1px -2px;
padding: 4px 0px 5px 10px;
background-color: window window threedhighlight threedhighlight;
/*background-color-bottom-right: threedhighlight;
background-color-bottom-left: threedhighlight;*/
position:relative;
opacity:1.00;
}
.tabs > .strip > [panel]:current:hover /*active tab*/
{
/*color:red;*/
}
.tabs:tab-focus > .strip > [panel]:current > * /* outline active tab content if we've gotten focus by tab*/
{
outline: 1px dotted invert;
}
.tabs > [name] { display:none;}
.tabs > [name]:expanded // current panel
{
padding:4px;
width:*;
height:*;
border:1px solid threedshadow;
border-top-style:none;
display:none;
}
/* tabs drag-n-drop support */
.tabs .strip
{
accept-drop: selector( div[panel] ); /* accept drop of div[panel] */
outline-width: 4px;
}
.tabs .strip div[panel]
{
/*draggable: only-move;*/
}
.tabs .strip div[panel]:drop-marker
{
}
.tabpanel {
min-width:80px;
max-width:200px;
white-space:nowrap;
draggable: only-move;
text-overflow:ellipsis;
overflow:visible;
}
img.tabicon {
width:16px;
height:16px;
max-width:16px;
max-height:16px;
foreground-image:@ICON_EMPTY;
background-image:@ICON_BLANK;
vertical-align: middle;
}
button.closetab {
padding:7px;
/*background-color: threedhighlight;*/
foreground-position:50% 50%;
background-image: url(theme:toolbar-button-normal);
foreground-image-transformation: colorize(gray);
foreground-image: @ICON_CLOSE;
foreground-repeat:no-repeat;
vertical-align: middle;
/*float:right;*/
margin-left:*;
margin-right:4px;
width:4px;
min-width:4px;
}
code.tabtitle {
font:system;
/*float:left;*/
margin-left:3px;
min-width:0;
max-width:max-intrinsic;
white-space:nowrap;
overflow-x:hidden;
text-overflow:ellipsis;
}
button.closetab:hover
{
background-image: url(theme:toolbar-button-hover);
foreground-image-transformation: colorize(#0099FF);
}
button.closetab:active
{
background-image: url(theme:toolbar-button-pressed);
}
div.newtab {
width:24px;
}
div.newtab:hover {
foreground-image:@ICON_PLUS;
foreground-position:50% 50%;
foreground-repeat:no-repeat;
foreground-image-transformation: colorize(#0099FF);
}
| 0.412767 | 0.091342 |
@charset "utf-8";
/* CSS Document */
*{
padding:0;margin:0;
}
.PS_ab{
position:absolute;
}
.ready_one{
width:100%;overflow:hidden;
}
.ready_one ul li{
height:833px;background:url(../PNG/01.png) center;position:relative;
}
.one_li{
float:left;text-align:center;
}
.one_li_dw{
position:absolute;left:0;
}
.one_png{
width:800px;height:500px;position:relative;display:inline-block;top:204px;text-align:center;
}
.one_1{
width:701px;height:270px;top:20px;display:block;
}
.one_2{
width:498px;height:39px;top:340px;display:block;margin-left:55px;
}
.one_3{
width:585px;height:93px;top:-140px;display:block;
}
.one_4{
width:1087px;height:653px;top:-77px;left:-112px;z-index:2;
}
.two_all{
width:1150px;height:750px;display:inline-block;
}
.two{
width:272px;height:140px;position:relative;left:160px;top:86px;
}
.two_1{
width:268px;height:29px;top:0;left:0;
}
.two_2{
top:36px;left:0;
}
.two_3{
width:171px;height:45px;top:88px;left:0;
}
.two_4{
width:1178px;height:706px;position:relative;right:137px;bottom:44px;
}
.two_4_left{
width:1100px;height:706px;left:0;
}
.two_4_right{
width:68px;height:371px;right:0;top:130px;
}
.t4r_right_wai{
width:68px;height:68px;margin-bottom:6px;display:block;cursor:pointer;background:url(../PNG/two_all.png) 0 0;
text-align:center;
}
.t4r_right_nei{
display:block;width:41px;height:47px;padding:17px 14px 4px 13px;font-size:24px;font-family:"微软雅黑";
color:#0075bf;
}
.two_4_left_png_ready{
width:795px;height:475px;top:136px;left:300px;z-index:100;overflow:hidden;
}
.two_4_left_png_all{
width:795px;
}
.two_4_left_png{
position:relative;height:475px;
}
.enter{
height:57px;width:60px;background:url(../PNG/two_all.png) -244px 0 no-repeat;position:absolute;z-index:200;
left:48%;
top:69%
}
.three_all{
width:1150px;height:750px;display:inline-block;
}
.three{
width:358px;height:85px;position:relative;top:122px;right:229px;display:inline-block;
}
.three_1{
top:0;left:0;
}
.three_2{
top:36px;left:0;
}
.three_3{
width:1214px;height:756px;right:165px;display:inline-block;position:relative;
}
.three_3_left{
width:1136px;height:671px;position:relative;left:0;display:block;float:left;
}
.three_3_right{
width:68px;height:295px;position:relative;top:137px;left:0;float:right;z-index:60;
}
.three3r_right_wai{
width:68px;height:68px;margin-bottom:6px;display:block;cursor:pointer;background:url(../PNG/two_all.png) 0 0;
text-align:center;
}
.three3r_right_nei{
display:block;width:41px;height:47px;padding:17px 14px 4px 13px;font-size:24px;font-family:"微软雅黑";
color:#0075bf;
}
.three_3_left_png_ready{
width:778px;height:424px;position:absolute;z-index:500;top:152px;left:345px;overflow:hidden;
}
.three_3_left_png_1{
z-index:10;
}
.three_3_left_png_one{
margin:13px 20px 0 0;
}
.three_3_left_png_all{
width:778px;
}
.three_3_left_png{
width:778px;height:424px;position:relative;
}
.three_3_left_png_word1{
width:488px;height:126px;position:absolute;
}
.three_3wPosation_1{
top:78px;left:177px;
}
.three_3wPosation_2{
top:130px;left:177px;
}
.three_3wPosation_3{
top:125px;left:177px;
}
.three_3wPosation_4{
top:78px;left:177px;
}
.three_3_left_png_word_more{
width:78px;height:57px;position:absolute;top:160px;left:165px;cursor:pointer;
}
.three_3_left_png_word1_a{
font-size: 18px;font-family: "微软雅黑";text-align: left;z-index:30;line-height:31px;color:#373737;
}
.three_3_left_png_two{
margin-top:71px;
}
.CP_one{
position:absolute;z-index:20;top:76px;left:417px;display:inline-block;
}
.three_0{
position:absolute;z-index:55;
}
.three_4{
top:-52pxleft:320px;
}
.three_5{
top:72px;right:330px;
}
.three_6{
top:240px;left:414px;
}
.three_7{
bottom:78px;left:250px;
}
.three_8{
bottom:-26px;right:368px;
}
.three_bg{
width:1200px;height:800px;position:relative;
}
.four_png{
width:805px;height:700px;position:relative;display:inline-block;top:102px;right:44px;
}
.four_0{
position:absolute;display:inline-block;
}
.four_1{
left:0;
}
.four_2{
right:20px;
}
.four_3{
top:108px;left:8px;
}
.four_4{
top:136px;left:150px;
}
.four_5{
top:268px;left:236px;z-index:1000;cursor:pointer;
}
.four_6{
top:338px;left:190px;
}
.four_7{
position:absolute;width:764px;height:338px;top:250px;left:157px;
}
.four_8{
left:0;
}
.four_9{
z-index:1000;left:102px;top:114px;cursor:pointer;
}
.four_10{
top:-110px;right:455px;z-index:55;
}
.four_11{
top:70px;right:278px;z-index:51;
}
.four_12 {
top:170px;right:398px;z-index:55;
}
.four_13{
bottom:170px;right:456px;z-index:102;
}
.four_14{
top:242px;left:420px;z-index:51;
}
.four_15{
bottom:92px;left:256px;z-index:51;
}
.four_16{
bottom:150px;left:379px;z-index:55;
}
.cen_benner{
width:606px;height:60px;position:absolute;left:50%;margin-left:-304px;top:76px;z-index:500;
}
.cb_left{
float:left;width:312px;height:5px;margin-top:11px;background:url(../PNG/two_all.png) -2px -197px;
}
.cb_left_one{
width:311px;height:10px;background:url(../PNG/two_all.png) 0 -184px;position:absolute;top:8px;left:0;
}
.cb_left_two{
width:11px;height:10px;background:url(../PNG/two_all.png) 0 -170px;position:absolute;top:8px;left:0;
}
.cb_right{
float:right;width:244px;height:28px;
}
.CB_right_1{
width:149px;height:24px;background:url(../PNG/two_all.png) 0 -74px;float:left;padding-top:2px
}
.CB_right_1_onea{
margin-left:10px;
}
.CB_right_1_a{
width:72px;height:26px;text-decoration:none;color:#7d7d7d;font-family:"微软雅黑";font-size:14px;
}
.CB_right_1_twoa{
margin-left:6px;cursor:pointer;
}
.CB_right_2{
width:83px;height:24px;background:url(../PNG/two_all.png) 0 -106px;float:right;text-align:center;
padding-top:2px
}
.cen_benner_end{
width:112px;height:28px;float:right;clear:both;
}
.cen_benner_end_div{
font: 400 14px/28px "Microsoft YaHei",Arial;color: #1E1C19;
}
.weixin_nei{
width:590px;height:249px;position:absolute;left:34%;top:43%;z-index:9999;display:none;
}
.weixin_left_1{
width:108px;height:129px;float:left;
}
.weixin_left{
width:508px;height:181px;background-color:black;padding:68px 0 0 42px;float:left;
}
.weixin_left_1png{
margin-left:2px;margin-bottom:15px;
}
.weixin_left_1_word{
font-size:12px;font-family:"微软雅黑";color:white;
}
.weixin_left_2{
width:297px;height:133px;background:url(../PNG/two_all.png) 0 -206px;float:left;margin-left:45px;
}
.weixin_right{
width:40px;height:40px;background:url(../PNG/two_all.png) -158px 0; float:right;cursor:pointer;
}
.weixin_allH{
width:100%;background-color:black;position:absolute;left:0;top:0;z-index:9998;opacity:0.7;display:none;
}
.top{
width:100%;height:50px;background:#f9f9f9;border-bottom:1px solid #e7e7e7;position:absolute;left:0;top:0;
}
.top_ready{
width:943px;margin:0 auto;
}
.top_left{
width:332px;height:51px;float:left;
}
.top_logo{
width:75px;height:44px;background:url(../PNG/one-all.png) 0 0 no-repeat;float:left;
}
.top_t{
width:244px;height:41px;margin-top:5px;margin-left:5px;float:left;display:inline;
}
.top_two{
width:147px;height:36px;float:left;
}
.top_word{
font-family:"微软雅黑";color:#585d59;
}
.top_word_one_p{
font-size:16px;
}
.top_word_two_p{
font-size:12px;
}
.top_three{
width:1px;height:30px;background-color:#b8b8b8;float:left;margin-top:5px;display:inline;
}
.top_four{
width:78px;height:38px;float:left;margin-left:14px;display:inline;
}
.top_word_three_p{
font-size:12px;
}
.top_word_four_p{
font-family:"黑体";font-size: 16px;color:red;letter-spacing:2px;
}
.top_right{
width:269px;height:30px;float:right;margin-top:10px;display:inline;
}
.top_right_one{
width:65px;height:15px;padding:3px 21px 11px 54px;background:url(../PNG/one-all.png) -107px 0 no-repeat;
float:left;margin-top:4px;display:inline;
}
.top_right_one_word{
font-family:"微软雅黑";font-size:12px;color:#888888;text-decoration:none;
}
.top_right_one a:hover{
color:#000;}
.top_right_two{
width:1px;height:30px;background-color:#B8B8B8;float:left;
}
.top_right_three{
width:83px;height:17px;padding:5px 0 5px 21px;margin-left:13px;margin-top:1px;
background:url(../PNG/one-all.png) -248px 0 no-repeat;float:left;display:inline;cursor:pointer;
}
.top_right_two_word{
font-family:"微软雅黑";font-size:12px;color:#888888;text-decoration:none;
}
.end{
height:117px;position:absolute;background:#191919;width:100%;
}
.end_wai{
width:600px;height:60px;margin:0 auto;margin-top:15px;
}
.end_word{
font-size: 14px;color:#b0b0b0;font-family:"黑体";padding:0 5px 0 5px;float:left;text-decoration:none;
}
a.end_word:hover{
text-decoration:underline;
}
.end_p{
background:#7d7d7d;height:15px;width:1px;float:left;
}
.end_two_word{
font-size: 14px;color:#b0b0b0;font-family:"微软雅黑";
}
.end_three_word{
font-size: 14px;color:#c9c9c9;font-family:"微软雅黑";
}
|
CSS/welcome.css
|
@charset "utf-8";
/* CSS Document */
*{
padding:0;margin:0;
}
.PS_ab{
position:absolute;
}
.ready_one{
width:100%;overflow:hidden;
}
.ready_one ul li{
height:833px;background:url(../PNG/01.png) center;position:relative;
}
.one_li{
float:left;text-align:center;
}
.one_li_dw{
position:absolute;left:0;
}
.one_png{
width:800px;height:500px;position:relative;display:inline-block;top:204px;text-align:center;
}
.one_1{
width:701px;height:270px;top:20px;display:block;
}
.one_2{
width:498px;height:39px;top:340px;display:block;margin-left:55px;
}
.one_3{
width:585px;height:93px;top:-140px;display:block;
}
.one_4{
width:1087px;height:653px;top:-77px;left:-112px;z-index:2;
}
.two_all{
width:1150px;height:750px;display:inline-block;
}
.two{
width:272px;height:140px;position:relative;left:160px;top:86px;
}
.two_1{
width:268px;height:29px;top:0;left:0;
}
.two_2{
top:36px;left:0;
}
.two_3{
width:171px;height:45px;top:88px;left:0;
}
.two_4{
width:1178px;height:706px;position:relative;right:137px;bottom:44px;
}
.two_4_left{
width:1100px;height:706px;left:0;
}
.two_4_right{
width:68px;height:371px;right:0;top:130px;
}
.t4r_right_wai{
width:68px;height:68px;margin-bottom:6px;display:block;cursor:pointer;background:url(../PNG/two_all.png) 0 0;
text-align:center;
}
.t4r_right_nei{
display:block;width:41px;height:47px;padding:17px 14px 4px 13px;font-size:24px;font-family:"微软雅黑";
color:#0075bf;
}
.two_4_left_png_ready{
width:795px;height:475px;top:136px;left:300px;z-index:100;overflow:hidden;
}
.two_4_left_png_all{
width:795px;
}
.two_4_left_png{
position:relative;height:475px;
}
.enter{
height:57px;width:60px;background:url(../PNG/two_all.png) -244px 0 no-repeat;position:absolute;z-index:200;
left:48%;
top:69%
}
.three_all{
width:1150px;height:750px;display:inline-block;
}
.three{
width:358px;height:85px;position:relative;top:122px;right:229px;display:inline-block;
}
.three_1{
top:0;left:0;
}
.three_2{
top:36px;left:0;
}
.three_3{
width:1214px;height:756px;right:165px;display:inline-block;position:relative;
}
.three_3_left{
width:1136px;height:671px;position:relative;left:0;display:block;float:left;
}
.three_3_right{
width:68px;height:295px;position:relative;top:137px;left:0;float:right;z-index:60;
}
.three3r_right_wai{
width:68px;height:68px;margin-bottom:6px;display:block;cursor:pointer;background:url(../PNG/two_all.png) 0 0;
text-align:center;
}
.three3r_right_nei{
display:block;width:41px;height:47px;padding:17px 14px 4px 13px;font-size:24px;font-family:"微软雅黑";
color:#0075bf;
}
.three_3_left_png_ready{
width:778px;height:424px;position:absolute;z-index:500;top:152px;left:345px;overflow:hidden;
}
.three_3_left_png_1{
z-index:10;
}
.three_3_left_png_one{
margin:13px 20px 0 0;
}
.three_3_left_png_all{
width:778px;
}
.three_3_left_png{
width:778px;height:424px;position:relative;
}
.three_3_left_png_word1{
width:488px;height:126px;position:absolute;
}
.three_3wPosation_1{
top:78px;left:177px;
}
.three_3wPosation_2{
top:130px;left:177px;
}
.three_3wPosation_3{
top:125px;left:177px;
}
.three_3wPosation_4{
top:78px;left:177px;
}
.three_3_left_png_word_more{
width:78px;height:57px;position:absolute;top:160px;left:165px;cursor:pointer;
}
.three_3_left_png_word1_a{
font-size: 18px;font-family: "微软雅黑";text-align: left;z-index:30;line-height:31px;color:#373737;
}
.three_3_left_png_two{
margin-top:71px;
}
.CP_one{
position:absolute;z-index:20;top:76px;left:417px;display:inline-block;
}
.three_0{
position:absolute;z-index:55;
}
.three_4{
top:-52pxleft:320px;
}
.three_5{
top:72px;right:330px;
}
.three_6{
top:240px;left:414px;
}
.three_7{
bottom:78px;left:250px;
}
.three_8{
bottom:-26px;right:368px;
}
.three_bg{
width:1200px;height:800px;position:relative;
}
.four_png{
width:805px;height:700px;position:relative;display:inline-block;top:102px;right:44px;
}
.four_0{
position:absolute;display:inline-block;
}
.four_1{
left:0;
}
.four_2{
right:20px;
}
.four_3{
top:108px;left:8px;
}
.four_4{
top:136px;left:150px;
}
.four_5{
top:268px;left:236px;z-index:1000;cursor:pointer;
}
.four_6{
top:338px;left:190px;
}
.four_7{
position:absolute;width:764px;height:338px;top:250px;left:157px;
}
.four_8{
left:0;
}
.four_9{
z-index:1000;left:102px;top:114px;cursor:pointer;
}
.four_10{
top:-110px;right:455px;z-index:55;
}
.four_11{
top:70px;right:278px;z-index:51;
}
.four_12 {
top:170px;right:398px;z-index:55;
}
.four_13{
bottom:170px;right:456px;z-index:102;
}
.four_14{
top:242px;left:420px;z-index:51;
}
.four_15{
bottom:92px;left:256px;z-index:51;
}
.four_16{
bottom:150px;left:379px;z-index:55;
}
.cen_benner{
width:606px;height:60px;position:absolute;left:50%;margin-left:-304px;top:76px;z-index:500;
}
.cb_left{
float:left;width:312px;height:5px;margin-top:11px;background:url(../PNG/two_all.png) -2px -197px;
}
.cb_left_one{
width:311px;height:10px;background:url(../PNG/two_all.png) 0 -184px;position:absolute;top:8px;left:0;
}
.cb_left_two{
width:11px;height:10px;background:url(../PNG/two_all.png) 0 -170px;position:absolute;top:8px;left:0;
}
.cb_right{
float:right;width:244px;height:28px;
}
.CB_right_1{
width:149px;height:24px;background:url(../PNG/two_all.png) 0 -74px;float:left;padding-top:2px
}
.CB_right_1_onea{
margin-left:10px;
}
.CB_right_1_a{
width:72px;height:26px;text-decoration:none;color:#7d7d7d;font-family:"微软雅黑";font-size:14px;
}
.CB_right_1_twoa{
margin-left:6px;cursor:pointer;
}
.CB_right_2{
width:83px;height:24px;background:url(../PNG/two_all.png) 0 -106px;float:right;text-align:center;
padding-top:2px
}
.cen_benner_end{
width:112px;height:28px;float:right;clear:both;
}
.cen_benner_end_div{
font: 400 14px/28px "Microsoft YaHei",Arial;color: #1E1C19;
}
.weixin_nei{
width:590px;height:249px;position:absolute;left:34%;top:43%;z-index:9999;display:none;
}
.weixin_left_1{
width:108px;height:129px;float:left;
}
.weixin_left{
width:508px;height:181px;background-color:black;padding:68px 0 0 42px;float:left;
}
.weixin_left_1png{
margin-left:2px;margin-bottom:15px;
}
.weixin_left_1_word{
font-size:12px;font-family:"微软雅黑";color:white;
}
.weixin_left_2{
width:297px;height:133px;background:url(../PNG/two_all.png) 0 -206px;float:left;margin-left:45px;
}
.weixin_right{
width:40px;height:40px;background:url(../PNG/two_all.png) -158px 0; float:right;cursor:pointer;
}
.weixin_allH{
width:100%;background-color:black;position:absolute;left:0;top:0;z-index:9998;opacity:0.7;display:none;
}
.top{
width:100%;height:50px;background:#f9f9f9;border-bottom:1px solid #e7e7e7;position:absolute;left:0;top:0;
}
.top_ready{
width:943px;margin:0 auto;
}
.top_left{
width:332px;height:51px;float:left;
}
.top_logo{
width:75px;height:44px;background:url(../PNG/one-all.png) 0 0 no-repeat;float:left;
}
.top_t{
width:244px;height:41px;margin-top:5px;margin-left:5px;float:left;display:inline;
}
.top_two{
width:147px;height:36px;float:left;
}
.top_word{
font-family:"微软雅黑";color:#585d59;
}
.top_word_one_p{
font-size:16px;
}
.top_word_two_p{
font-size:12px;
}
.top_three{
width:1px;height:30px;background-color:#b8b8b8;float:left;margin-top:5px;display:inline;
}
.top_four{
width:78px;height:38px;float:left;margin-left:14px;display:inline;
}
.top_word_three_p{
font-size:12px;
}
.top_word_four_p{
font-family:"黑体";font-size: 16px;color:red;letter-spacing:2px;
}
.top_right{
width:269px;height:30px;float:right;margin-top:10px;display:inline;
}
.top_right_one{
width:65px;height:15px;padding:3px 21px 11px 54px;background:url(../PNG/one-all.png) -107px 0 no-repeat;
float:left;margin-top:4px;display:inline;
}
.top_right_one_word{
font-family:"微软雅黑";font-size:12px;color:#888888;text-decoration:none;
}
.top_right_one a:hover{
color:#000;}
.top_right_two{
width:1px;height:30px;background-color:#B8B8B8;float:left;
}
.top_right_three{
width:83px;height:17px;padding:5px 0 5px 21px;margin-left:13px;margin-top:1px;
background:url(../PNG/one-all.png) -248px 0 no-repeat;float:left;display:inline;cursor:pointer;
}
.top_right_two_word{
font-family:"微软雅黑";font-size:12px;color:#888888;text-decoration:none;
}
.end{
height:117px;position:absolute;background:#191919;width:100%;
}
.end_wai{
width:600px;height:60px;margin:0 auto;margin-top:15px;
}
.end_word{
font-size: 14px;color:#b0b0b0;font-family:"黑体";padding:0 5px 0 5px;float:left;text-decoration:none;
}
a.end_word:hover{
text-decoration:underline;
}
.end_p{
background:#7d7d7d;height:15px;width:1px;float:left;
}
.end_two_word{
font-size: 14px;color:#b0b0b0;font-family:"微软雅黑";
}
.end_three_word{
font-size: 14px;color:#c9c9c9;font-family:"微软雅黑";
}
| 0.341143 | 0.063657 |
@-moz-document domain(zip.4chan.org),
domain(img.4chan.org),
domain(orz.4chan.org),
domain(cgi.4chan.org) {
html,body {
background-color:#c9c8aa !important;
background-image:url(http://img225.imageshack.us/img225/2859/foxhoundemblemsl1.png) !important;
background-position: right bottom !important;
background-repeat:no-repeat !important;
background-attachment:fixed !important
}
.postblock {
background-color: #a3a28d !important;
}
.reply, .replyhl {
background-image:url(http://img166.imageshack.us/img166/6558/bigbosscopyin3.jpg) !important;
background-position: left !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-color: #a3a28d !important;
opacity:.75 !important;
-moz-border-radius-bottomright:12px !important;
-moz-border-radius-topleft:12px !important;
-moz-border-radius-bottomleft:12px !important;
-moz-border-radius-topright:12px !important;
}
img.thumb,img[src*="/thumb/"] {
background:transparent !important;
border:solid 3px rgb(0,0,0) !important;
-moz-border-radius:6px !important;
opacity:100 !important;
z-index:3 !important;
}
}
@-moz-document domain("4chan.org") {
/* sets font */
body, span#navtop, td.replyhl, td.reply, a, a:hover, a.quotejs, a.quotejs:hover, a.quotelink, span.filesize {font:13px Trebuchet MS !important;}
/* hides ads */
div.logo img{display:none !important;}
iframe{display:none !important;}
/* hr */
hr{display:none !important;}
form hr{display:block !important;}
hr{height:1px !important;border:none !important;background:#999 !important;}
/* rounded corners */
td.replyhl, td.reply{-moz-border-radius:8px !important;}
/* links */
a{text-decoration:none !important;}
a.quotejs:hover, a:hover{font-weight:normal !important;text-decoration:underline !important;}
/* removes ugly borders on page overview [0,1,2...] */
table,td{border:none !important;}
td.rules{display:none !important;}
/* logo */
img + br {display:none !important;}
/* post area */
input,textarea{border:#aaa 1px solid !important;margin-right:2px !important;}
textarea{height:300px !important;}
div.postarea{position:fixed !important;width:472px !important;height:0px !important;opacity:0.3 !important;right:0px !important;}
div.postarea:hover{opacity:1 !important;}
td.postblock{vertical-align:top !important;font-size:10px !important;}
}
|
data/usercss/10376.user.css
|
@-moz-document domain(zip.4chan.org),
domain(img.4chan.org),
domain(orz.4chan.org),
domain(cgi.4chan.org) {
html,body {
background-color:#c9c8aa !important;
background-image:url(http://img225.imageshack.us/img225/2859/foxhoundemblemsl1.png) !important;
background-position: right bottom !important;
background-repeat:no-repeat !important;
background-attachment:fixed !important
}
.postblock {
background-color: #a3a28d !important;
}
.reply, .replyhl {
background-image:url(http://img166.imageshack.us/img166/6558/bigbosscopyin3.jpg) !important;
background-position: left !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-color: #a3a28d !important;
opacity:.75 !important;
-moz-border-radius-bottomright:12px !important;
-moz-border-radius-topleft:12px !important;
-moz-border-radius-bottomleft:12px !important;
-moz-border-radius-topright:12px !important;
}
img.thumb,img[src*="/thumb/"] {
background:transparent !important;
border:solid 3px rgb(0,0,0) !important;
-moz-border-radius:6px !important;
opacity:100 !important;
z-index:3 !important;
}
}
@-moz-document domain("4chan.org") {
/* sets font */
body, span#navtop, td.replyhl, td.reply, a, a:hover, a.quotejs, a.quotejs:hover, a.quotelink, span.filesize {font:13px Trebuchet MS !important;}
/* hides ads */
div.logo img{display:none !important;}
iframe{display:none !important;}
/* hr */
hr{display:none !important;}
form hr{display:block !important;}
hr{height:1px !important;border:none !important;background:#999 !important;}
/* rounded corners */
td.replyhl, td.reply{-moz-border-radius:8px !important;}
/* links */
a{text-decoration:none !important;}
a.quotejs:hover, a:hover{font-weight:normal !important;text-decoration:underline !important;}
/* removes ugly borders on page overview [0,1,2...] */
table,td{border:none !important;}
td.rules{display:none !important;}
/* logo */
img + br {display:none !important;}
/* post area */
input,textarea{border:#aaa 1px solid !important;margin-right:2px !important;}
textarea{height:300px !important;}
div.postarea{position:fixed !important;width:472px !important;height:0px !important;opacity:0.3 !important;right:0px !important;}
div.postarea:hover{opacity:1 !important;}
td.postblock{vertical-align:top !important;font-size:10px !important;}
}
| 0.41253 | 0.112308 |
:root{
--primary-color: #626d71;
--primary-variant: #cdcdc0;
--secondary-color: #ddbc95;
--secondary-variant: #b38867;
--font-color: #ffffff;
--secondary-variant-hover: #B37647;
}
html, body{
padding: 0;
margin: 0;
width: 100%;
min-height: 100%;
height: 100%;
position: relative;
background-color: var(--primary-variant);
font-family: Whitney, Hiragino Sans, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, MS PGothic, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: var(--primary-color);
width: 600px;
margin: auto;
padding: 20px 5px 20px 5px;
border-radius: 5px;
box-shadow: 0px 0px 10px #333;
}
.wrapper-resister{
height: 400px;
}
.wrapper-login{
height: 320px;
}
.title{
padding: 50px auto;
font-size: 25px;
font-weight: 700;
text-align: center;
color: var(--font-color);
}
.input-group{
width: 70%;
margin: 30px auto;
}
.input-group-text{
font-size: 15px;
color: var(--primary-variant);
}
.input-group-form{
background-color: var(--primary-variant);
box-sizing: border-box;
width: 100%;
height: 40px;
border: 1px solid var(--primary-variant);
}
.input-group-form:hover{
border: 1px solid #000;
transition: 500ms;
}
.button-container{
margin: auto;
width: 70%;
height: 35px;
}
.button{
background-color: var(--secondary-variant);
color: var(--font-color);
width: 100%;
height: 100%;
border: none;
cursor: pointer;
}
.button:hover{
background-color: var(--secondary-variant-hover);
transition: 500ms;
}
.bottom-text-container{
width: 70%;
margin: 0px auto;
}
.bottom-text{
font-size: 15px;
color: var(--primary-variant);
cursor: pointer;
}
.bottom-text:hover{
text-decoration: underline;
}
.room-list{
width: 90%;
margin: 30px auto 0 auto;
overflow-y: scroll;
}
.room-container{
background-color: var(--secondary-variant);
height: 120px;
margin: 5px 0;
padding: 10px;
}
.room-name{
color: var(--font-color);
font-size: 18px;
font-weight: 700;
}
.room-members{
height: 60px;
}
.button-create-room{
background-color: inherit;
text-align: center;
font-size: 17px;
font-weight: 700;
color: var(--primary-variant);
width: 100%;
height: 40px;
border: 4px dashed var(--primary-variant);
cursor: pointer;
}
.button-create-room:hover{
border: 4px solid var(--primary-color);
background-color: var(--primary-variant);
color: var(--primary-color);
transition: 100ms ease;
}
|
public/welcome.css
|
:root{
--primary-color: #626d71;
--primary-variant: #cdcdc0;
--secondary-color: #ddbc95;
--secondary-variant: #b38867;
--font-color: #ffffff;
--secondary-variant-hover: #B37647;
}
html, body{
padding: 0;
margin: 0;
width: 100%;
min-height: 100%;
height: 100%;
position: relative;
background-color: var(--primary-variant);
font-family: Whitney, Hiragino Sans, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, MS PGothic, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: var(--primary-color);
width: 600px;
margin: auto;
padding: 20px 5px 20px 5px;
border-radius: 5px;
box-shadow: 0px 0px 10px #333;
}
.wrapper-resister{
height: 400px;
}
.wrapper-login{
height: 320px;
}
.title{
padding: 50px auto;
font-size: 25px;
font-weight: 700;
text-align: center;
color: var(--font-color);
}
.input-group{
width: 70%;
margin: 30px auto;
}
.input-group-text{
font-size: 15px;
color: var(--primary-variant);
}
.input-group-form{
background-color: var(--primary-variant);
box-sizing: border-box;
width: 100%;
height: 40px;
border: 1px solid var(--primary-variant);
}
.input-group-form:hover{
border: 1px solid #000;
transition: 500ms;
}
.button-container{
margin: auto;
width: 70%;
height: 35px;
}
.button{
background-color: var(--secondary-variant);
color: var(--font-color);
width: 100%;
height: 100%;
border: none;
cursor: pointer;
}
.button:hover{
background-color: var(--secondary-variant-hover);
transition: 500ms;
}
.bottom-text-container{
width: 70%;
margin: 0px auto;
}
.bottom-text{
font-size: 15px;
color: var(--primary-variant);
cursor: pointer;
}
.bottom-text:hover{
text-decoration: underline;
}
.room-list{
width: 90%;
margin: 30px auto 0 auto;
overflow-y: scroll;
}
.room-container{
background-color: var(--secondary-variant);
height: 120px;
margin: 5px 0;
padding: 10px;
}
.room-name{
color: var(--font-color);
font-size: 18px;
font-weight: 700;
}
.room-members{
height: 60px;
}
.button-create-room{
background-color: inherit;
text-align: center;
font-size: 17px;
font-weight: 700;
color: var(--primary-variant);
width: 100%;
height: 40px;
border: 4px dashed var(--primary-variant);
cursor: pointer;
}
.button-create-room:hover{
border: 4px solid var(--primary-color);
background-color: var(--primary-variant);
color: var(--primary-color);
transition: 100ms ease;
}
| 0.398875 | 0.098079 |
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
margin: 0;
padding: 0
}
fieldset,
img {
border: 0
}
:focus {
outline: 0
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
font-style: normal;
font-weight: 400
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: 400
}
abbr,
acronym {
border: 0;
font-variant: normal
}
code,
kbd,
samp,
tt {
font-size: 100%
}
input,
button,
textarea,
select {
*font-size: 100%;
border: 0
}
body {
background: #fff;
color: #5e5e5e;
font: 14px/2em Microsoft YaHei, SimSun, Arial
}
@font-face {
font-family: northme;
src: url(../fonts/northme.eot);
src: url(../fonts/northme.eot?d8493nx#iefix) format('embedded-opentype'), url(../fonts/northme.ttf?d8493nx) format('truetype'), url(../fonts/northme.woff?d8493nx) format('woff'), url(../fonts/northme.svg?d8493nx#icomoon) format('svg');
font-weight: 400;
font-style: normal
}
ol,
ul {
list-style: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
caption,
th {
text-align: left
}
sup,
sub {
font-size: 100%;
vertical-align: baseline
}
:link,
:visited,
ins {
text-decoration: none
}
blockquote,
q {
quotes: none
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
a:link,
a:visited {
color: #5e5e5e
}
a:hover {
color: #c9394a
}
a:active {
color: #666
}
a:focus,
a:hover {
text-decoration: none;
}
.clearfix:after {
content: '\0020';
display: block;
height: 0;
clear: both;
visibility: hidden
}
.clearfix {
*zoom: 1
}
.l {
float: left
}
.r {
float: right
}
.clear {
height: 0;
overflow: hidden;
clear: both
}
.hide {
display: none
}
.btn.hide {
display: none
}
a.hidefocus {
outline: 0
}
button.hidefocus::-moz-focus-inner {
border: 0
}
a:focus {
outline: 0;
}
input,
textarea {
outline: 0
}
h2 {
font-size: 20px
}
h3 {
font-size: 16px;
line-height: 32px
}
h5 {
font-size: 14px;
line-height: 28px
}
.img_border {
border: 4px solid #fff;
border-radius: 1px
}
.bb {
border-bottom: 1px solid #d2d2d2
}
.bt {
border-top: 1px solid #d2d2d2
}
.bbn {
border-bottom: 0 !important
}
.mc {
margin: 0 auto !important
}
.m0 {
margin: 0 !important
}
.m1 {
margin: 1px !important
}
.m2 {
margin: 2px !important
}
.m3 {
margin: 3px !important
}
.m4 {
margin: 4px !important
}
.m5 {
margin: 5px !important
}
.m10 {
margin: 10px
}
.m15 {
margin: 15px
}
.m20 {
margin: 20px
}
.m25 {
margin: 25px
}
.m30 {
margin: 30px
}
.mt5 {
margin-top: 5px !important
}
.mt0 {
margin-top: 0 !important
}
.mt10 {
margin-top: 10px !important
}
.mt14 {
margin-top: 14px
}
.mt15 {
margin-top: 15px
}
.mt18 {
margin-top: 18px
}
.mt20 {
margin-top: 20px !important
}
.mt30 {
margin-top: 30px
}
.mt40 {
margin-top: 40px
}
.mt50 {
margin-top: 50px
}
.mt60 {
margin-top: 60px
}
.mt70 {
margin-top: 70px
}
.mt80 {
margin-top: 80px
}
.mt90 {
margin-top: 90px
}
.mt100 {
margin-top: 100px
}
.mb0 {
margin-bottom: 0 !important
}
.mb3 {
margin-bottom: 3px
}
.mb5 {
margin-bottom: 5px !important
}
.mb10 {
margin-bottom: 10px
}
.mb15 {
margin-bottom: 15px
}
.mb20 {
margin-bottom: 20px !important
}
.mb25 {
margin-bottom: 25px !important
}
.mb30 {
margin-bottom: 30px
}
.mb40 {
margin-bottom: 40px
}
.mb50 {
margin-bottom: 50px
}
.mb55 {
margin-bottom: 55px
}
.mb80 {
margin-bottom: 80px
}
.mb100 {
margin-bottom: 100px
}
.ml0 {
margin-left: 0 !important
}
.ml8 {
margin-left: 8px !important
}
.ml1 {
margin-left: 1px !important
}
.ml5 {
margin-left: 5px !important
}
.ml10 {
margin-left: 10px !important
}
.ml12 {
margin-left: 12px !important
}
.ml13 {
margin-left: 13px !important
}
.ml15 {
margin-left: 15px !important
}
.ml25 {
margin-left: 25px !important
}
.ml20 {
margin-left: 20px !important
}
.ml30 {
margin-left: 30px !important
}
.ml35 {
margin-left: 35px !important
}
.ml38 {
margin-left: 38px !important
}
.ml40 {
margin-left: 40px !important
}
.ml50 {
margin-left: 50px !important
}
.ml60 {
margin-left: 60px !important
}
.ml55 {
margin-left: 55px !important
}
.ml57 {
margin-left: 57px !important
}
.ml60 {
margin-left: 60px !important
}
.ml80 {
margin-left: 80px !important
}
.ml100 {
margin-left: 100px !important
}
.ml110 {
margin-left: 110px !important
}
.ml120 {
margin-left: 120px !important
}
.ml150 {
margin-left: 150px !important
}
.ml200 {
margin-left: 200px !important
}
.ml250 {
margin-left: 250px !important
}
.ml285 {
margin-left: 285px !important
}
.ml835 {
margin-left: 835px !important
}
.mr5 {
margin-right: 5px !important
}
.mr10 {
margin-right: 10px !important
}
.mr15 {
margin-right: 15px !important
}
.mr20 {
margin-right: 20px !important
}
.mr30 {
margin-right: 30px !important
}
.mr40 {
margin-right: 40px !important
}
.mr50 {
margin-right: 50px !important
}
.mr80 {
margin-right: 80px !important
}
.mr100 {
margin-right: 100px !important
}
.mr250 {
margin-right: 250px !important
}
.mr300 {
margin-right: 300px !important
}
.pointer {
cursor: pointer
}
.color-gray,
a.color-gray:link,
a.color-gray:visited {
color: #b7bcc0
}
.color-white {
color: #fff !important
}
.color-blue {
color: #088bd3
}
.fl {
float: left
}
.fr {
float: right
}
.mr60 {
margin-right: 60px
}
.color-red {
color: #EF1300 !important
}
.pr {
position: relative
}
.pa {
position: absolute
}
.errorHint {
height: 25px;
line-height: 20px;
font-size: 12px;
color: #f01414
}
.breakall {
word-break: break-all
}
.cb {
clear: both
}
.fs12 {
font-size: 12px !important
}
.fs14 {
font-size: 14px !important
}
.fs16 {
font-size: 16px !important
}
.fs18 {
font-size: 18px !important
}
.fs20 {
font-size: 20px !important
}
.bold {
font-weight: 700 !important
}
a:link,
a:visited,
body,
html {
color: #14191e;
}
/* latin-ext */
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
src: local('Oxygen Regular'), local('Oxygen-Regular'), url(https://fonts-gstatic.proxy.ustclug.org/s/oxygen/v6/IIPDrwV5KNJo5-LaFlLy2fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
src: local('Oxygen Regular'), local('Oxygen-Regular'), url(https://fonts-gstatic.proxy.ustclug.org/s/oxygen/v6/78wGxsHfFBzG7bRkpfRnCQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
body,
a {
font-family: 'Oxygen', Helvetica Neue, Helvetica, "Source Han Sans SC", PingFang SC, Hiragino Sans GB, Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-size: 15px;
color: #262626;
}
body {
background-color: #f3f5f7;
}
html {
height: 100%;
}
a:hover {
text-decoration: none;
}
/* Header */
.edu-header {
width: 100%;
background: #fff;
border-bottom: 1px solid rgba(30, 35, 42, .06);
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 34, 77, .05);
box-shadow: 0 1px 3px 0 rgba(0, 34, 77, .05);
z-index: 100;
}
.edu-header-inner {
width: 100%;
max-width: 1200px;
height: 52px;
margin: 0 auto;
display: -webkit-box;
-webkit-box-align: center;
overflow: hidden;
}
.logo {
height: 100%;
}
.logo img {
height: 30px;
}
.header-nav {
margin-left: 27px;
}
.header-nav a {
padding: 0 15px;
color: #8590a6;
}
.header-nav a:hover {
color: #175199;
}
.header-search {
position: relative;
;
}
.header-search .form-control {
height: 30px;
padding: 5px 10px 5px 28px;
font-size: 12px;
margin: 0;
line-height: 12px;
width: auto;
display: inline-block;
}
.header-search .header-search-ico {
position: absolute;
z-index: 2;
left: 10px;
font-size: 14px;
width: 20px;
margin-left: -2.5px;
text-align: center;
padding: 10px 0;
top: 0;
color: #8590a6;
}
header .user-info {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.user-info>div {
padding: 0 10px;
position: relative;
}
.user-info a {
color: #8590a6;
}
.user-info .fa-shopping-cart .shopping_icon {
position: absolute;
padding: 0 5px;
height: 16px;
left: 17px;
top: 10px;
line-height: 16px;
background: #f01414;
border-radius: 50%;
color: #fff;
font-style: normal;
font-size: 10px;
}
.user-info.shop-hover .my-cart {
display: block;
}
.user-info .my-cart {
padding: 0 12px;
position: absolute;
right: 80px;
top: 53px;
width: 350px;
background: #fff;
box-sizing: border-box;
display: none;
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .2);
z-index: 99999;
}
.user-info .my-cart .cart-title-box {
padding: 20px 12px;
border-bottom: 1px solid #d9dde1;
}
.user-info .my-cart .cart-title-box h2 {
height: 16px;
font-size: 16px;
color: #07111b;
line-height: 16px;
}
.user-info .my-cart .cart-title-box h5 {
height: 16px;
line-height: 16px;
font-size: 12px;
color: #93999f;
}
.user-info .my-cart .cart-wrap .clear-cart {
height: 284px;
text-align: center;
margin: 0 auto;
}
.user-info .my-cart .cart-wrap .clear-cart .cartIcon {
margin-top: 36px;
margin-bottom: 12px;
display: inline-block;
width: 60px;
height: 60px;
line-height: 60px;
background: #93999f;
font-size: 36px;
color: #fff;
border-radius: 50%;
}
.user-info .my-cart .cart-wrap .clear-cart h3 {
margin: 0 auto;
width: 180px;
padding-bottom: 24px;
border-bottom: 1px solid #d9dde1;
color: #4d555d;
font-size: 14px;
line-height: 14px;
}
.user-info .my-cart .cart-wrap .clear-cart .text {
text-align: center;
margin-top: 24px;
margin-bottom: 16px;
font-size: 12px;
line-height: 12px;
color: #93999f;
}
.user-info .my-cart .more-box {
padding: 16px 12px;
border-top: 1px solid #d9dde1;
}
.user-info .my-cart .more-box .show-box {
height: 38px;
line-height: 38px;
}
.user-info .my-cart .more-box .show-box .text {
font-size: 12px;
color: #93999f;
}
.user-info .my-cart .more-box .go-cart {
color: #fff;
font-size: 12px;
line-height: 12px;
font-weight: 700;
padding: 12px 16px;
border-radius: 2px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box {
height: 284px;
overflow-y: scroll;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li {
padding: 12px 12px 8px;
box-sizing: border-box;
border-bottom: 1px solid #d9dde1;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li a {
width: auto;
height: auto;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li img {
width: 100px;
height: 56px;
margin-right: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box {
width: 170px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box h3 {
word-break: break-all;
font-size: 12px;
color: #07111b;
line-height: 16px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box p {
margin-top: 16px;
height: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box p span {
color: #BE002F;
font-size: 12px;
line-height: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .del {
cursor: pointer;
}
/*Loin user*/
.text-ellipsis {
overflow: hidden;
}
.g-user-card {
position: absolute !important;
padding: 0 !important;
right: 0;
top: 53px;
width: 306px;
visibility: hidden;
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .2);
z-index: 1000;
}
.g-user-card .card-inner {
background-color: #fff;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
padding: 24px;
box-sizing: border-box;
}
.g-user-card .card-top {
color: #93999f;
position: relative;
}
.g-user-card .card-top img {
float: left;
width: 72px;
height: 72px;
border-radius: 50%;
border: 2px solid #fff;
margin-right: 12px;
}
.g-user-card .card-top .card-top-right-box {
margin-top: 14px;
}
.g-user-card .card-top a {
color: #93999f;
display: inline-block;
}
.g-user-card .card-top .name {
display: inline-block;
font-size: 16px;
color: #07111b;
width: 170px;
line-height: 20px;
}
.g-user-card .card-top .meta {
font-size: 12px !important;
line-height: 16px;
}
.g-user-card .card-top .meta a {
margin-right: 12px;
font-size: 12px !important;
}
.g-user-card .card-top .meta b {
margin-left: 2px;
}
.g-user-card .user-center-box {
margin-top: 16px;
margin-bottom: 14px;
}
.g-user-card .user-center-box ul li {
position: relative;
width: 127px;
width: 127px \9;
height: 36px;
background: #f3f5f7;
line-height: 36px;
color: #4d555d;
font-size: 12px;
margin-right: 2px;
margin-bottom: 2px;
box-sizing: border-box;
}
.g-user-card .user-center-box ul li:hover {
color: #fff;
background-color: rgba(77, 85, 93, .4);
}
.g-user-card .user-center-box ul li>a:hover {
color: #fff;
}
.g-user-card .user-center-box ul li a {
width: 100%;
height: 36px;
line-height: 36px;
padding-left: 12px;
text-align: left;
box-sizing: border-box;
color: #787d82;
display: block;
margin: auto;
}
.g-user-card .user-center-box ul li .user-center-icon {
position: relative;
top: 3px;
font-size: 16px;
margin-right: 8px;
}
.g-user-card .card-history {
padding-bottom: 16px;
}
.g-user-card .card-history,
.g-user-card .card-links {
margin-bottom: -1px;
border-bottom: 1px solid #edf1f2;
}
.g-user-card .card-history .history-item {
display: block;
position: relative;
padding-left: 24px;
font-size: 12px;
color: #787d82;
transition: background-color .2s;
}
.g-user-card.hover {
visibility: visible;
}
.g-user-card .card-history .history-item .tit {
display: block;
margin-bottom: 8px;
font-weight: 700;
}
.g-user-card .card-history .history-item .media-name {
display: block;
width: 200px;
}
.g-user-card .card-history .history-item .fa-clock-o {
position: absolute;
left: 0;
top: 2px;
font-size: 16px;
font-weight: 700;
}
.g-user-card .card-history .history-item .continue {
position: absolute;
right: 0;
top: 26px;
color: #00b43c;
}
.g-user-card .card-sets {
margin-top: 16px;
font-size: 12px;
line-height: 12px;
}
.g-user-card .card-sets a {
color: #4d555d;
}
/* Main */
#main {
width: 100%;
max-width: 1200px;
margin: 10px auto;
}
.banner {
position: relative;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
overflow: hidden;
border-radius: 10px 10px 0 0;
height: 460px;
}
.banner-nav {
position: absolute;
top: 0;
left: 0;
width: 224px;
z-index: 2;
padding-top: 6px;
color: #fff;
height: 460px;
}
.banner-nav a {
color: #fff;
}
.banner-nav-wrap {
background-color: rgba(7, 17, 27, .5);
width: 224px;
z-index: 1;
position: absolute;
left: 0;
top: 0;
height: 460px;
}
.banner-nav-sub {
position: absolute;
left: 224px;
top: 0;
width: 732px;
height: 460px;
z-index: 581;
color: #262626;
border: 1px solid #d9dde1;
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.banner-nav-sub a {
color: #262626;
}
.banner-nav-sub-inner {
position: relative;
width: 100%;
height: 100%;
background-color: #fff;
}
.banner-nav-sub-inner .box {
width: 730px;
padding: 0 40px;
overflow: hidden;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.banner-nav-sub-inner .box .title {
color: #07111b;
font-size: 16px;
line-height: 16px;
font-weight: 700;
margin-bottom: 13px;
margin-top: 40px;
}
.banner-nav-sub-inner .box .case .case-list {
margin-top: 5px;
}
.banner-nav-sub-inner .box .case .case-list a {
padding: 0 5px;
}
.banner-nav .item {
height: 64px;
line-height: 66px;
font-size: 12px;
cursor: pointer;
padding: 0 24px;
position: relative;
z-index: 2;
}
.banner-nav .item a {
display: block;
color: #fff;
padding: 0 8px;
border-bottom: 1px solid rgba(255, 255, 255, .2);
height: 63px;
}
.banner-nav .item i {
position: absolute;
right: 32px;
top: 24px;
color: #fff;
}
.banner-content {
z-index: 1;
border-radius: 50px;
}
.banner-content .item {
display: block;
max-height: 460px;
overflow: hidden;
}
.banner-content img {
display: block;
}
.banner-content .owl-dots {
position: absolute;
width: 100%;
bottom: 0;
}
.banner-content .owl-dots .owl-dot span {
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
}
.micro-banner {
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
height: 100px;
display: -webkit-box;
display: -moz-box;
-webkit-box-align: center
}
.micro-banner-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
transition: all .3s;
}
.micro-banner-box:hover {
margin-top: -10px;
}
.types-content {
margin-top: 50px;
}
.types-content-title {
position: relative;
font-size: 20px;
font-weight: normal;
color: #424242;
margin-bottom: 24px;
line-height: 20px;
}
.types-content-inner {
display: -webkit-box;
display: -moz-box;
}
.types-content-inner-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
width: 224px;
height: 228px;
margin-right: 20px;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
border-radius: 5px 0;
}
.types-content-inner-box:last-child {
margin-right: 0;
}
.types-content-inner-box>div {
padding: 0 24px;
;
}
.types-content-inner-box .inner-box-title {
height: 48px;
line-height: 48px;
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(60deg, #7BCFA6, #A4E2C6);
color: #fff;
}
.types-content-inner-box .inner-box-title span {
margin-left: 10px;
font-size: 12px;
font-weight: 700;
color: #fff;
}
.types-content-inner-box .inner-box-content h3 {
margin: 10px 0;
font-size: 14px;
color: #3D3B4F;
line-height: 24px;
max-height: 48px;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
letter-spacing: -.1px;
}
.types-content-inner-box .inner-box-content p {
font-size: 12px;
color: #93999f;
line-height: 24px;
margin: 8px 0;
height: 48px;
word-break: normal;
word-wrap: break-word;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.types-content-inner-box .inner-box-bottom {
display: -webkit-box;
display: -moz-box;
font-size: 12px;
color: #93999f;
line-height: 24px;
}
.types-content-inner-box .inner-box-bottom>div {
-webkit-box-flex: 1;
-moz-box-flex: 1;
}
.types-content-inner-box .inner-box-bottom .info {
color: #93999f;
transition: all .35s;
}
.types-content-inner-box:hover .inner-box-bottom .info {
color: #DB5A6B;
}
.types-content-inner-box .inner-box-bottom .price {
color: #f01414;
text-align: right;
font-weight: 200;
line-height: 24px;
font-size: 12px;
}
.container-types {
margin-top: 20px;
}
.container-types-title {
position: relative;
font-size: 20px;
font-weight: normal;
color: #07111b;
margin-bottom: 24px;
line-height: 20px;
}
.container-types-inner {
display: -webkit-box;
display: -moz-box;
}
.container-types-left {
width: 240px;
height: 350px;
color: #fff;
padding: 24px;
position: relative;
border-radius: 4px;
margin-right: 20px;
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(45deg, #7BCFA6, #A4E2C6);
}
.container-types-left a {
color: #fff;
}
.container-types-left>div {
width: 100%;
}
.container-types-left .path-cart-tit2 h3 {
margin: 10px 0;
font-size: 22px;
font-weight: normal;
}
.container-types-left .path-cart-tit3 {
margin-top: 50px;
text-align: right;
}
.container-types-left .recommended-item {
position: absolute;
padding: 10px;
bottom: 20px;
border-top: 1px solid #fff;
}
.container-types-right {
-webkit-box-flex: 1;
}
.container-types-right .right-top .right-top-inner {
border-radius: 4px;
width: 100%;
height: 100px;
line-height: 100px;
text-align: center;
color: #FFF;
font-size: 18px;
overflow: hidden;
/* background: -webkit-gradient(linear, right top, left top, from(rgba(210, 115, 230, .7)), to(#d273e6));
background: linear-gradient(270deg, rgba(210, 115, 230, .7), #d273e6); */
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(60deg, #7BCFA6, #A4E2C6);
}
.container-types.two .right-top {
display: -webkit-box;
display: -moz-box;
}
.container-types.two .right-top .right-top-inner {
width: 460px;
margin-right: 20px;
}
.container-types.two .right-top .right-top-inner:last-child {
margin-right: 0;
}
.container-types.two {}
.container-types-right .box {
margin-top: 20px;
display: -webkit-box;
display: -moz-box;
}
.container-types.color-yg .container-types-left,
.container-types.color-yg .right-top-inner,
.container-types.color-yg .inner-box-title {
background: -webkit-gradient(linear, right top, left top, from(#177CB0), to(#4C8DAE));
background: linear-gradient(45deg, #177CB0, #4C8DAE);
}
.container-types.color-pp .container-types-left,
.container-types.color-pp .right-top-inner,
.container-types.color-pp .inner-box-title {
background: -webkit-gradient(linear, right top, left top, from(rgba(255, 115, 155, .7)), to(#ff739b));
background: linear-gradient(90deg, #F46082, #ff739b);
}
.block-list {
margin-top: 20px;
}
.block-list h1 {
position: relative;
font-size: 20px;
font-weight: normal;
color: #07111b;
margin-bottom: 24px;
line-height: 20px;
}
.block-list-lecturer {
display: -webkit-box;
display: -moz-box;
}
.lecturer-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
margin: 0 10px 0 0;
}
.lecturer-box:last-child {
margin-right: 0;
}
.lecturer-box-inner {
padding: 10px;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
text-align: center;
}
.lecturer-box-inner img {
width: 120px;
height: 120px;
margin: 0 auto;
border-radius: 50%;
display: block;
;
}
.lecturer-box-inner>span {
display: block;
}
.lecturer-box-inner span.name {
font-size: 16px;
line-height: 24px;
color: #07111b;
font-weight: 700;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
margin-top: 5px;
}
.lecturer-box-inner span.title {
font-size: 12px;
line-height: 24px;
color: #93999f;
margin-bottom: 15px;
}
.lecturer-box-inner span.lecturer-p {
font-size: 12px;
line-height: 20px;
color: #93999f;
height: 56px;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
}
.course-nav-box {
width: 100%;
padding: 12px 0;
background-color: #fff;
}
.course-nav-inner {
width: 1200px;
margin: 0 auto;
}
.course-nav-row {
padding: 16px 0 5px;
border-bottom: 1px solid #edf1f2;
}
.course-nav-row .hd {
width: 52px;
height: 20px;
line-height: 33px;
font-weight: 700;
font-size: 14px;
color: #07111b;
text-align: right;
float: left;
;
}
.course-nav-row {}
.course-nav-row .bd {
margin-left: 64px;
}
.course-nav-row .bd ul {
list-style: none;
}
.course-nav-row .bd ul li {
display: inline-block;
margin: 0 4px;
}
.course-nav-row .bd ul li a {
display: block;
line-height: 14px;
margin-bottom: 10px;
padding: 10px;
font-size: 14px;
}
.course-nav-row .bd ul li.on a {
background: #2b333b;
color: #fff;
border-radius: 2px;
}
.course-tool-nav {
width: 100%;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
border-bottom: 1px solid #ccc;
}
.course-tool-nav dl dd {
display: inline-block;
padding: 20px 12px;
}
.course-list {
background-color: #fff;
}
.ncedu-course-list {
padding: 20px 0;
}
.course-card-container {
float: left;
margin: 0 0 18px 18px;
max-height: 256px;
width: 216px;
position: relative;
-webkit-transition: .3s all linear;
transition: .3s all linear;
}
.course-card-container .course-card-top {
width: 216px;
height: 120px;
border-radius: 8px;
overflow: hidden;
-webkit-transition: all .3s;
transition: all .3s;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
}
.course-card-container .course-card-top img {
width: 100%;
height: 100%;
background-color: #f3f5f7;
}
.course-card-container .course-card-content {
padding: 12px 8px;
}
.course-card-container .course-card-content>h3 {
font-size: 16px;
color: #3D3B4F;
line-height: 24px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.course-card-container .course-card-content .course-card-info {
font-size: 12px;
color: #93999F;
line-height: 24px;
font-weight: 200;
}
.course-card-container .course-card-content .course-card-info span {
display: inline-block;
margin-right: 12px;
}
.course-card-container .course-card-content .course-card-desc {
font-size: 12px;
color: #93999F;
line-height: 22px;
margin-top: 2px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.course-list-pager {
text-align: center;
padding: 20px 0;
}
.course-header-new .breadcrumb {
margin: 0;
color: #fff;
background-color: transparent;
height: 50px;
}
.course-header-new .breadcrumb a {
color: #fff;
}
.course-header-new .breadcrumb>li+li:before {
content: ">";
}
.course-header-new {
padding-bottom: 40px;
margin-bottom: 30px;
background: url(../img/course_bg.jpg) repeat;
background-size: 100% 100%;
}
.ncedu-course-before {
margin: 0;
background: #fff;
border-radius: 5px;
padding: 10px 0 10px 10px;
}
.ncedu-course-before .pic {
padding: 0;
}
.ncedu-course-before .pic img {
width: 100%;
}
.ncedu-course-before .info h1 {
margin: 20px 0 30px 0;
line-height: 26px;
max-height: 52px;
position: relative;
padding: 0 170px 0 40px;
width: 100%;
text-align: left;
color: #444;
font-size: 20px;
overflow: hidden;
}
.ncedu-course-before .info .metas {
background: #15c288;
height: 100px;
position: absolute;
bottom: 0;
width: 100%;
}
.ncedu-course-before .info .metas li {
background: #f0f0f0;
height: 100%;
width: 25%;
float: left;
text-align: center;
padding: 25px 25px 15px;
}
.ncedu-course-before .info .metas li i {
font-size: 20px;
line-height: 20px;
}
.ncedu-course-before .info .metas li.bd {
border-right: 1px solid #ddd;
}
.ncedu-course-before .info .metas li p {
margin: 8px 0 0 0;
}
.ncedu-course-before .info .metas li.join {
padding: 0;
}
.ncedu-course-before .info .metas li.join a {
font-size: 18px;
padding-top: 38px;
display: block;
height: 100%;
width: 100%;
}
.ncedu-course-before .info {
padding: 0;
height: 265px;
}
.course-header-new .btn {
border-radius: 0;
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
.course-header-new .btn-primary {
border-color: #34a263;
background-color: #46c37b;
color: #fff;
}
.course-header-new .btn.btn-primary {
color: #fff !important;
background: #15c288;
border: 1px solid #15c288;
}
@media (max-width: 1200px) {
.ncedu-course-before .info {
height: 218px;
}
.ncedu-course-before .info .metas {
height: 80px;
}
.ncedu-course-before .info .metas li {
padding: 10px 0;
}
.ncedu-course-before .info .metas li.join a {
padding-top: 27px;
}
.ncedu-course-before .info h1 {
padding-right: 100px;
}
}
.course-start {
width: 100%;
background-color: #fff;
border-radius: 5px;
margin: 10px 0;
padding: 10px;
}
.course-start .pic img {
width: 100%;
max-width: 470px;
}
.course-start .info .title-box h1 {
margin: 20px 0 30px 0;
line-height: 26px;
max-height: 52px;
position: relative;
padding: 0 17px 0 40px;
width: 100%;
text-align: left;
color: #444;
font-size: 20px;
overflow: hidden;
}
.course-start .info {
height: 300px;
padding: 0px;
margin: 0 -10px;
}
.course-start .info .info-box {
width: 100%;
}
.course-start .info .info-box ul {
width: 100%;
position: absolute;
bottom: 0;
background: #15c288;
height: 100px;
}
.course-start .info .info-box ul li {
display: inline-block;
background: #f0f0f0;
height: 100%;
width: 25%;
float: left;
text-align: center;
padding: 25px 25px 15px;
}
.course-start .info .info-box ul li.bd {
border-right: 1px solid #ddd;
}
.course-start .info .info-box ul li.join {
padding: 0;
}
.course-start .info .info-box ul li.join a {
font-size: 18px;
padding-top: 38px;
display: block;
height: 100%;
width: 100%;
}
@media (max-width: 1200px) {
.course-start .info .info-box ul li {
padding: 10px 0;
}
}
.course-info-mai .content {
padding: 0 10px;
}
.course-menu {
border-bottom: 1px solid #D1D6DA;
}
.course-menu ul li {
display: inline-block;
text-align: center;
margin-right: 12px;
}
.course-menu ul li a {
display: block;
padding: 26px 24px;
font-size: 16px;
color: #4d555d;
}
.course-menu ul li.active {
border-bottom: 1px solid #15c288;
}
.course-menu ul li.active a {
color: #15c288;
}
.mod-chapters .chapter {
border-bottom: 1px solid #d9dde1;
padding: 0 24px 12px;
}
.mod-chapters .chapter .title {
display: block;
position: relative;
height: 53px;
line-height: 65px;
font-size: 16px;
color: #07111b;
}
.mod-chapters .chapter>h3 {
cursor: pointer;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
}
.mod-chapters .chapter h3 i {
margin-right: 5px;
color: #93999f;
font-size: 19px;
position: relative;
top: 2px;
}
.mod-chapters .chapter>h3>span {
font-weight: 700;
cursor: pointer;
line-height: 65px;
font-size: 16px;
color: #07111b;
}
.mod-chapters .chapter .title i.fa-list {
margin-right: 10px;
color: #93999f;
}
.mod-chapters .chapter .title i:last-child {
position: absolute;
top: 50%;
right: 0;
margin-top: -9px;
}
.mod-chapters .chapter .video {
padding: 0 0 4px 32px;
}
.mod-chapters .chapter .video li {
position: relative;
height: 40px;
line-height: 40px;
background-color: #f3f5f7;
margin-bottom: 8px;
}
.mod-chapters .chapter .video li a {
padding-left: 8px;
color: #787d82;
display: block;
overflow: hidden;
word-break: break-all;
}
.mod-chapters .chapter .video li a:hover {
color: #ecf5ff;
}
.mod-chapters .chapter .video li a.hvr-sweep-to-right:before {
background: #2b333b;
}
.mod-chapters .chapter .video li a i.fa-play {
font-size: 12px;
margin-right: 10px;
}
.mod-chapters .chapter .video>li>a>span {}
.mod-chapters .chapter .video li>a>i.video-now {
position: absolute;
right: 12px;
font-style: normal;
font-size: 12px;
}
.mod-chapters .chapter .video li>a>i.video-now em {
margin-left: 10px;
font-size: 16px;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-check-circle {
color: #00b43c;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-free-code-camp {
color: #a7b400;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-circle-o {
color: #d9dde1;
}
.course-sidebar {
padding: 28px 10px;
}
.course-sidebar .teacher-info {
display: -webkit-box;
padding: 20px 0;
overflow: hidden;
}
.teacher-info-inner {
margin-left: 20px;
}
.course-sidebar .teacher-info img {
width: 60px;
height: 60px;
border-radius: 100%;
}
.course-sidebar .teacher-info span {
display: block;
}
.course-sidebar .teacher-info span.title {
margin: 5px 0;
}
.course-sidebar .teacher-info span {
font-size: 12px;
color: #71777b;
}
.iss_ques {
border-bottom: 1px solid #d9dde1;
padding-bottom: 30px;
margin-top: 24px;
}
.iss_ques .user-head {
display: inline-block;
overflow: hidden;
margin-left: 24px;
margin-right: 20px;
}
.iss_ques .user-head img {
width: 40px;
height: 40px;
border-radius: 50%;
}
.pub-editor-wrap {
width: 795px;
position: relative;
padding: 8px 10px;
border: 1px solid #b7bbbf;
background-color: #fff;
box-sizing: border-box;
border-radius: 2px;
}
.pub-editor-wrap textarea {
width: 97%;
min-height: 62px;
padding: 8px;
color: #555;
resize: none;
line-height: 18px;
}
.ipt {
color: #14191e;
background-color: #fff;
border: 1px solid #98a1a6;
padding: 9px;
font-size: 14px;
border-radius: 0;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.num-limit {
position: absolute;
line-height: 100%;
font-size: 12px;
right: 5px;
bottom: 5px;
color: #d0d6d9;
}
.verify-box {
padding-top: 20px;
}
.verify-box .ipt {
height: 38px;
width: 110px;
padding: 14px 0 10px 8px;
border: 1px solid #d0d6d9;
color: #b5b9bc;
box-shadow: none;
}
.verify-box .verify-media {
width: 70px;
height: 40px;
margin-left: 10px;
background-color: #787d82;
}
.verify-box .verify-help {
margin-left: 10px;
font-size: 12px;
color: #787d82;
}
.verify-box .verify-help .verify-refresh {
display: block;
margin-top: -11px;
color: #00b33b;
font-size: 12px;
}
.pub-btn {
background-color: #00b43c;
height: 40px;
padding: 0 12px;
line-height: 40px;
text-align: center;
color: #fff;
cursor: pointer;
margin-top: 20px;
border-radius: 2px;
}
.pub-btn:hover {
color: #fff;
}
.pub-btn:focus {
color: #fff;
}
.comment-pub-btn {
margin-right: 20px;
}
.ipt,
select.ipt {
height: 20px;
line-height: 20px;
}
.ipt {
color: #14191e;
background-color: #fff;
border: 1px solid #98a1a6;
padding: 9px;
font-size: 14px;
border-radius: 0;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.comment-verify-box {
margin-left: 85px;
}
.errortip {
padding-left: 15px;
margin: 30px 10px 0 0;
font-size: 12px;
line-height: 20px;
color: #be3948;
display: none;
}
/*Sign in*/
header.simple-header {
width: 100%;
height: 60px;
z-index: 999;
background: #FFF;
padding: 15px 0;
}
header.simple-header,
header.white {
box-shadow: rgba(0, 0, 0, .0980392) 0 1px 1px;
}
.action-page.sign_in {
position: relative;
width: 100%;
height: 100%;
padding: 0 0 61px;
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
color: #fff;
}
.action-page.sign_in>.bg-layer {
position: absolute;
width: 100%;
height: 100%;
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
}
.action-page.sign_in>.wrapper {
position: relative;
height: 100%;
overflow: hidden;
}
.action-page.sign_in>.wrapper>.main {
position: relative;
top: 40%;
left: 50%;
width: 320px;
height: 360px;
margin-top: -180px;
margin-left: -160px;
text-align: center;
}
.action-page.sign_in>.wrapper>.main>.logo {
max-width: 300px;
height: auto;
margin: 30px auto 50px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #f4f6f6;
border-color: #d5dbdb;
color: #d5dbdb;
cursor: default;
opacity: .7;
filter: alpha(opacity=70);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container {
position: relative;
margin: 20px 0 30px;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>.error-tip {
position: absolute;
width: 100%;
left: -100%;
bottom: 6px;
padding-right: 20px;
text-align: right;
font-size: 1.2rem;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input {
display: block;
float: left;
width: 100%;
padding-bottom: 6px;
padding-left: 11px;
-ms-flex-order: 2;
order: 2;
margin-top: 0;
border-radius: 0;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, .5);
outline: 0;
transition: border-bottom .3s, border-color .3s, border-width .3s, border .3s ease-in-out;
font-size: 1.6rem;
line-height: 28px;
color: rgba(255, 255, 255, .8);
background: 0 0;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input.no {
border-bottom: 1px solid rgb(255, 1, 13);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input::-webkit-input-placeholder {
color: rgba(255, 255, 255, .8);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>#sign_in-btn {
position: relative;
width: 100%;
height: 42px;
letter-spacing: 5px;
border: none;
border-radius: 30px;
color: rgba(255, 255, 255, .8) !important;
background-color: rgba(242, 251, 255, 0.25);
}
.login-help a {
color: rgba(255, 255, 255, .8);
}
/*sign up*/
.msg {
display: none;
margin-bottom: 10px;
border: 1px solid;
border-radius: 4px;
position: relative;
padding: 8px 30px 8px 15px;
font-size: 1.3rem;
}
.msg>.btn-close {
border: none;
background: 0 0;
position: absolute;
right: 2%;
font-size: 1.2em;
top: .35em;
}
.msg.danger {
display: block;
background-color: #FFF2F2;
border-color: #FFDBDB;
color: #D55050;
}
.has-error .form-control {
border-color: #e74c3c;
box-shadow: none;
}
.has-error .form-control:focus {
border-color: #e74c3c;
box-shadow: none;
}
.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .form-control,
.has-error .form-control-feedback,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline {
color: #e74c3c;
}
.action-page.activate,
.action-page.findpass,
.action-page.resetpass,
.action-page.sign_up {
position: relative;
width: 100%;
height: 100%;
padding: 72px 0 61px;
}
.rotate,
.spinner,
.spinning {
position: absolute;
-webkit-animation: rotate 1s linear infinite;
-o-animation: rotate 1s linear infinite;
animation: rotate 1s linear infinite;
transform-origin: center;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.action-page.activate>header,
.action-page.findpass>header,
.action-page.resetpass>header,
.action-page.sign_up>header {
position: absolute;
top: 0;
}
.action-page.sign_up>header {
background: 0 0;
}
.action-page.sign_up {
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
color: #fff;
}
.action-page.activate>.wrapper,
.action-page.findpass>.wrapper,
.action-page.resetpass>.wrapper,
.action-page.sign_up>.wrapper {
position: relative;
height: 100%;
overflow: hidden;
}
.action-page.sign_up>.wrapper>.main {
top: 50%;
margin-top: -300px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.sign_up-title {
font-size: 3rem;
}
.action-page.activate>.wrapper>.main,
.action-page.findpass>.wrapper>.main,
.action-page.resetpass>.wrapper>.main,
.action-page.sign_up>.wrapper>.main {
position: relative;
top: 40%;
left: 50%;
width: 320px;
height: auto;
margin-top: -220px;
margin-left: -160px;
text-align: center;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container {
position: relative;
margin: 10px 0;
}
.form-control {
width: 100%;
background-color: #fff;
border: 1px solid #bdc3c7;
color: #34495e;
font-size: 1.6rem;
line-height: 1.467;
padding: 8px 12px;
height: 42px;
border-radius: 3px;
box-shadow: none;
transition: border .25s linear, color .25s linear, background-color .25s linear;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>.pull-left {
position: relative;
width: 200px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>.pull-left.captcha-wrap {
width: 100px;
margin-left: 15px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>input {
display: block;
width: 100%;
height: 42px;
outline: 0;
font-size: 1.6rem;
line-height: 28px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>#sign_up-btn {
position: relative;
width: 100%;
height: 42px;
letter-spacing: 5px;
border-radius: 40px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>#sign_up-btn>.indicator {
position: absolute;
width: 20px;
height: 20px;
top: 13px;
left: 50%;
margin-left: -10px;
font-size: 2rem;
}
.action-page.sign_up a {
color: #fff;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.note>p.terms-note {
font-size: 1rem;
}
.action-page>footer {
position: absolute;
bottom: 0;
width: 100%;
padding: 20px 30px;
background: none;
color: #fff;
}
.action-page>footer a {
color: #fff;
}
.action-page>footer .container {
border-top: none;
max-width: 1200px;
width: 100%;
}
.course-video-header {
background-color: #14191e;
position: relative;
padding-right: 20px;
color: #787d82;
}
.course-video-header .nv {
float: left;
}
.nv-goback a {
width: 70px;
text-align: center;
color: #969b9e;
}
.nv-menu>a {
padding: 0 20px;
font-size: 14px;
color: #b5b9bc;
position: relative;
}
.nv>a {
display: block;
color: #969b9e;
}
.nv-follow a,
.nv>a,
.nvr>a {
line-height: 60px;
}
.nv-menu>a em {
margin-left: 10px;
}
.nv-follow a,
.nv-menu>a em {
color: #787d82;
font-size: 12px;
}
.nv-share {
position: relative;
height: 20px;
top: 20px;
left: 15px;
padding-left: 20px;
}
.nv-share a {
float: left;
font-size: 20px !important;
padding-left: 0 !important;
color: #787d82 !important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 20px !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0 10px 0 0 !important;
}
.nv-share span {
float: left;
margin-right: 10px;
position: relative;
top: -1px;
font-size: 14px;
color: #787d82;
}
.nv-share>a {
display: inline-block;
}
.login-area {
float: right;
right: 10px;
position: relative;
}
.login-area .shopping_icon {
top: -8px !important;
}
.login-area .my-cart {
right: 130px;
}
.logined>div {
float: left;
position: relative;
text-align: center;
}
.shop-cart .shop-cart-icon {
display: inline-block;
width: 108px !important;
padding: 0 18px;
box-sizing: border-box;
}
.logined div>a {
height: 60px;
line-height: 60px;
width: 60px;
color: #787d82;
text-align: center;
-webkit-transition: background-color .2s;
-moz-transition: background-color .2s;
transition: background-color .2s;
}
.shop-cart {
height: 60px;
line-height: 60px;
}
.shop-cart .shop-cart-icon span {
color: #71777d;
font-size: 14px;
}
.shop-cart .shop-cart-icon .fa-shopping-cart {
position: relative;
top: -3px;
font-size: 24px;
}
.remind_warp {
width: 60px;
height: 60px;
position: relative;
}
.remind_warp .msg_remind {
display: none;
position: absolute;
width: 8px;
height: 8px;
background-color: #f01414;
right: 14px;
top: 14px;
border-radius: 50%;
}
.remind_warp .icon-notifi {
text-align: center;
transition: color .2s;
}
.remind_warp .fa-bell,
.search-warp i {
display: block;
font-size: 22px;
line-height: 60px;
cursor: pointer;
}
.user-card-box .user-card-item img {
width: 36px;
height: 36px;
border-color: #4d5559;
margin-top: -5px;
}
.header-app:hover .QR-download,
.logined li>a {
display: block;
}
.set_btn img {
border-radius: 50%;
display: inline-block;
}
.course-video-header .fa,
.icon,
.icon-msg,
.icon-share,
.nvr-space img {
vertical-align: middle;
}
.video-con {
position: relative;
background-color: #000;
overflow: hidden;
}
.video-list {
position: absolute;
right: -360px;
top: 0;
z-index: 999;
width: 360px;
height: 100%;
background: #14191e;
transition: 0.5s all;
}
.video-list .operator {
position: absolute;
top: 50%;
left: -50px;
margin-top: -92px;
width: 50px;
}
.video-list .operator .op {
position: relative;
height: 60px;
line-height: 82px;
font-size: 12px;
text-align: center;
color: #B5B9BC;
background-color: #363C40;
cursor: pointer;
margin: 2px 0;
}
.video-list .operator .op i {
position: absolute;
left: 0;
top: 12px;
width: 50px;
}
.video-list .operator .op.light,
.video-list .operator .op:hover {
background-color: #f01400;
color: #fff;
}
.nano {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.video-list .nano .nano-content {
left: 30px;
}
.nano>.nano-content {
position: absolute;
overflow: scroll;
overflow-x: hidden;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.video-list h3 {
color: #b5b9bc;
line-height: 20px;
font-size: 16px;
text-align: left;
margin-top: 20px;
margin-right: 30px;
}
.video-list ul {
margin-top: 30px;
margin-right: 30px;
}
.video-list li.sec-title {
padding-bottom: 10px;
}
.video-list li {
margin-top: 15px;
}
.video-list li span {
font-size: 14px;
}
.video-list li a,
.video-list li span {
color: #787d82;
line-height: 20px;
text-align: left;
}
.video-list li a {
font-size: 12px;
margin-left: 15px;
}
.video-list li i {
font-style: normal;
float: right;
font-size: 12px;
line-height: 20px;
text-align: left;
color: #00b33b;
}
.video-list li i em {
margin-left: 10px;
color: #00b33b;
}
.video-list li a em {
margin-right: 10px;
}
.video-list li i em.fa-circle-thin {
color: #787d82;
}
.nano>.nano-pane {
background: rgba(0, 0, 0, .25);
position: absolute;
width: 10px;
right: 10px;
top: 0;
bottom: 0;
visibility: hidden \9;
opacity: .01;
-webkit-transition: .2s;
-moz-transition: .2s;
-o-transition: .2s;
transition: .2s;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.list-wrap {
margin-top: 2px;
}
.list-wrap>div {
display: none;
}
.list-wrap>div.active {
display: block;
}
.course-tool-bar {
position: relative;
padding-right: 15px;
font-size: 12px;
height: 58px;
background-color: #f3f5f7;
}
.course-tool-bar {
position: relative;
padding-right: 15px;
font-size: 12px;
height: 58px;
background-color: #f3f5f7;
}
.course-tool-bar .tool-left a {
margin: 0 20px;
color: #787d82;
float: left;
font-size: 12px;
display: inline-block;
line-height: 58px;
text-align: center;
}
.course-tool-bar .tool-left a.active {
color: #14191E;
}
.course-tool-bar .tool-right {
color: #787d82;
height: 58px;
line-height: 58px;
}
.course_note li {
border-bottom: 1px solid #edf1f2;
overflow: hidden;
padding-bottom: 20px;
padding-top: 20px;
}
.course_note .notelist_headpic {
float: left;
margin-left: 24px;
width: 40px;
}
.course_note .notelist_headpic a {
display: block;
height: 100%;
border-radius: 20px;
overflow: hidden;
}
.course_note .notelist_headpic img {
display: block;
width: 40px;
}
.course_note .notelist_content {
margin-left: 84px;
margin-right: 24px;
}
.course_note .u_name {
line-height: 20px;
height: 20px;
margin-bottom: 10px;
}
.course_note .u_name a {
font-size: 12px;
color: #14191e;
font-weight: 700;
}
.course_note .notelist-content {
position: relative;
max-height: 168px;
overflow: hidden;
}
.course_note .notelist-content pre {
font-size: 14px;
line-height: 28px;
color: #14191e;
white-space: pre-wrap;
word-break: break-all;
background: none;
border: none;
}
.notelist-bottom {
margin-top: 15px;
color: #93999f;
font-size: 12px;
}
.notelist-bottom .notelist-actions {
float: right;
}
.notelist-actions>a {
color: #93999f;
display: inline-block;
font-size: 16px;
margin: 0 10px;
}
.notelist-actions>a.fa-star:hover,
.notelist-actions>a.fa-star.on {
color: #f9e559;
}
.notelist-actions>a.fa-heart:hover,
.notelist-actions>a.fa-heart.on {
color: #da0013;
}
.notelist-actions>a em {
color: #93999f;
padding: 0 3px;
font-size: 12px;
line-height: 16px;
}
.course-sidebar h4 {
position: relative;
font-size: 16px;
font-weight: 700;
line-height: 24px;
color: #07111b;
}
.notelist-bottom .from {
color: #93999f;
font-size: 12px;
margin-left: 28px;
}
.course-sidebar .mb40 {
margin-bottom: 28px;
padding: 0 24px 24px;
border-bottom: 1px solid #d9dde1;
}
.all-attention-box {
padding: 0 0 24px 24px !important;
}
/* Search */
.search-main {
background-color: #fff;
}
.search-header {
position: absolute;
padding-left: 90px;
}
.search-banner {
background-color: #f1f2f3;
}
.search-banner .search-input-group {
padding: 35px 20%;
height: 50px;
}
.search-banner .search-input-group .input-wrap {
position: relative;
}
.search-banner .search-input-group .form-control {
height: 50px;
border: none;
padding-right: 50px;
font-size: 16px;
color: #000;
border-top-left-radius: 4px !important;
border-bottom-left-radius: 4px !important;
}
.search-banner .search-input-group .btn {
height: 50px;
width: 120px;
border: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.search-main .search-body {
width: 1000px;
margin: 0 auto;
}
.search-main .search-nav-warp {
text-align: center;
}
.search-main .search-nav {
display: inline-block;
padding: 36px 0 32px;
line-height: 16px;
}
.search-main .search-nav a {
font-size: 16px;
color: #4d555d;
margin-left: 80px;
}
.search-main .search-nav a.active,
.search-main .search-nav a:active {
color: #2c7c7d;
}
.search-main .search-related {
height: 40px;
line-height: 40px;
font-size: 12px;
color: #93999f;
padding-left: 24px;
background-color: #f3f5f7;
}
.search-main .search-title {
padding: 12px 0 12px 24px;
line-height: 24px;
font-size: 16px;
color: #07111b;
font-weight: 700;
border-bottom: 1px solid #d9dde1;
}
.search-main .course-item {
padding: 24px;
}
.course-item,
.wenda-item {
border-bottom: 1px solid #d9dde1;
overflow: hidden;
}
.course-item .course-item-left {
float: left;
width: 210px;
margin-right: 24px;
}
.course-item .course-item-left a,
.course-item .course-item-left img {
display: block;
width: 210px;
}
.course-item .course-item-right {
float: right;
width: 558px;
min-height: 120px;
}
.course-item .course-item-title {
color: #07111b;
height: 32px;
line-height: 32px;
}
.course-item .course-item-title .type {
font-size: 14px;
margin-right: 6px;
line-height: 32px;
}
.course-item .course-item-title a {
font-size: 16px;
color: #07111b;
font-weight: 700;
}
.search-main .highlight,
.search-main .relation {
color: #f01414 !important;
}
.course-item .tag {
height: 16px;
line-height: 0;
padding: 16px 0;
}
.course-item .tag span,
.course-item .tag strong {
float: left;
font-size: 12px;
color: #93999f;
}
.search-main .content {
word-break: break-all;
}
.search-main .href-warp {
line-height: 18px;
font-size: 14px;
padding-top: 22px;
text-align: center;
}
.search-main .href-warp a {
color: #006fdc;
}
.wenda-item {
padding: 24px;
}
.wenda-item .wenda-item-title {
font-size: 16px;
color: #07111b;
margin-bottom: 20px;
}
.wenda-item .wenda-item-title a {
color: #07111b;
font-weight: 700;
}
.wenda-item .wenda-item-top {
font-size: 14px;
margin-bottom: 10px;
height: 20px;
line-height: 20px;
}
.wenda-item .wenda-item-top .name {
font-weight: 700;
color: #4d555d;
margin-right: 5px;
}
.wenda-item .wenda-item-top a,
.wenda-item .wenda-item-top span {
float: left;
color: #07111b;
}
.wenda-item .content {
font-size: 14px;
color: #4d555d;
line-height: 28px;
}
.article-item {
padding: 24px;
overflow: hidden;
border-bottom: 1px solid #d9dde1;
}
.article-item .article-item-title {
font-size: 16px;
color: #07111b;
margin-bottom: 20px;
}
.article-item .article-item-title a {
color: #07111b;
font-weight: 700;
}
.article-item .article-img-warp {
position: relative;
padding-left: 234px;
min-height: 130px;
}
.article-item .article-img-warp img {
position: absolute;
left: 0;
top: 0;
width: 210px;
height: 130px;
}
/* Footer */
.footer {
width: 100%;
padding: 30px 0;
background-color: #f8fafc;
color: #99a1a6;
font-size: 12px;
text-align: left;
margin-top: 8px;
line-height: 24px;
}
.footer a {
color: #99a1a6;
line-height: 28px;
display: inline-block;
margin-right: 10px;
font-size: 14px;
}
.footer .container {
max-width: 1200px;
width: 100%;
padding: 10px 0;
border-top: 1px solid #d5d5d5;
}
.footer-copyright {
margin: 10px 0;
}
/*GoTo Top*/
.elevator {
z-index: 899;
}
.elevator {
position: fixed;
padding: 0 16px;
bottom: 150px;
margin-top: 100px;
right: 0;
z-index: 999;
background-color: #fff;
box-shadow: 0 4px 12px 0 rgba(7, 17, 27, .1);
}
.elevator a {
display: block;
width: 26px;
padding: 16px 0;
font-size: 22px;
line-height: 20px;
color: #b5b9bc;
box-sizing: border-box;
text-align: center;
border-bottom: 1px solid #edf1f2;
}
.elevator a:hover {
color: #14191e;
}
.elevator .elevator-app:hover i,
.elevator .elevator-faq:hover i,
.elevator .elevator-msg:hover i,
.elevator .elevator-top:hover i,
.elevator .elevator-weixin:hover i {
display: none;
}
.elevator .elevator-app:hover span,
.elevator .elevator-faq:hover span,
.elevator .elevator-msg:hover span,
.elevator .elevator-top:hover span,
.elevator .elevator-weixin:hover span {
display: block;
}
.elevator a i:hover {
color: #14191e;
}
.elevator a span {
display: none;
font-size: 12px;
color: #07111b;
line-height: 12px;
}
/*楼梯APP*/
.elevator .elevator-app-box {
position: absolute;
width: 172px;
height: 212px;
bottom: -2px;
right: 56px;
-webkit-transition: opacity .25s, transform .3s;
-moz-transition: opacity .25s, transform .3s;
transition: opacity .25s, transform .3s;
opacity: 0;
filter: alpha(opacity=0);
max-width: 0;
-webkit-transform: scale(.01);
-ms-transform: scale(.01);
transform: scale(.01);
-webkit-transform-origin: 100% 95%;
-ms-transform-origin: 100% 95%;
transform-origin: 100% 95%;
background: url(../img/gototop/elevator.png?t=2) 0 -220px no-repeat;
}
.elevator .elevator-app:hover .elevator-app-box {
display: block;
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
max-width: none;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
/*楼梯微信*/
.elevator .elevator-weixin:hover .elevator-weixin-box {
display: block;
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
max-width: none;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.elevator .elevator-weixin-box {
position: absolute;
width: 172px;
height: 212px;
bottom: -4px;
right: 56px;
-webkit-transition: opacity .25s, transform .3s;
-moz-transition: opacity .25s, transform .3s;
transition: opacity .25s, transform .3s;
opacity: 0;
filter: alpha(opacity=0);
max-width: 0;
-webkit-transform: scale(.01);
-ms-transform: scale(.01);
transform: scale(.01);
-webkit-transform-origin: 100% 95%;
-ms-transform-origin: 100% 95%;
transform-origin: 100% 95%;
background: url(../img/gototop/elevator.png?t=2) no-repeat;
}
[class*=" icon-"],
[class^=icon-] {
font-family: northme!important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-feedback:before {
content: "\e906";
}
.icon-ques:before {
content: "\e615";
}
.icon-appdownload:before {
content: "\e908";
}
.icon-wxgzh:before {
content: "\e907";
}
.icon-up2:before {
content: "\e904";
}
|
static/css/style.css
|
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
margin: 0;
padding: 0
}
fieldset,
img {
border: 0
}
:focus {
outline: 0
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
font-style: normal;
font-weight: 400
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: 400
}
abbr,
acronym {
border: 0;
font-variant: normal
}
code,
kbd,
samp,
tt {
font-size: 100%
}
input,
button,
textarea,
select {
*font-size: 100%;
border: 0
}
body {
background: #fff;
color: #5e5e5e;
font: 14px/2em Microsoft YaHei, SimSun, Arial
}
@font-face {
font-family: northme;
src: url(../fonts/northme.eot);
src: url(../fonts/northme.eot?d8493nx#iefix) format('embedded-opentype'), url(../fonts/northme.ttf?d8493nx) format('truetype'), url(../fonts/northme.woff?d8493nx) format('woff'), url(../fonts/northme.svg?d8493nx#icomoon) format('svg');
font-weight: 400;
font-style: normal
}
ol,
ul {
list-style: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
caption,
th {
text-align: left
}
sup,
sub {
font-size: 100%;
vertical-align: baseline
}
:link,
:visited,
ins {
text-decoration: none
}
blockquote,
q {
quotes: none
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
a:link,
a:visited {
color: #5e5e5e
}
a:hover {
color: #c9394a
}
a:active {
color: #666
}
a:focus,
a:hover {
text-decoration: none;
}
.clearfix:after {
content: '\0020';
display: block;
height: 0;
clear: both;
visibility: hidden
}
.clearfix {
*zoom: 1
}
.l {
float: left
}
.r {
float: right
}
.clear {
height: 0;
overflow: hidden;
clear: both
}
.hide {
display: none
}
.btn.hide {
display: none
}
a.hidefocus {
outline: 0
}
button.hidefocus::-moz-focus-inner {
border: 0
}
a:focus {
outline: 0;
}
input,
textarea {
outline: 0
}
h2 {
font-size: 20px
}
h3 {
font-size: 16px;
line-height: 32px
}
h5 {
font-size: 14px;
line-height: 28px
}
.img_border {
border: 4px solid #fff;
border-radius: 1px
}
.bb {
border-bottom: 1px solid #d2d2d2
}
.bt {
border-top: 1px solid #d2d2d2
}
.bbn {
border-bottom: 0 !important
}
.mc {
margin: 0 auto !important
}
.m0 {
margin: 0 !important
}
.m1 {
margin: 1px !important
}
.m2 {
margin: 2px !important
}
.m3 {
margin: 3px !important
}
.m4 {
margin: 4px !important
}
.m5 {
margin: 5px !important
}
.m10 {
margin: 10px
}
.m15 {
margin: 15px
}
.m20 {
margin: 20px
}
.m25 {
margin: 25px
}
.m30 {
margin: 30px
}
.mt5 {
margin-top: 5px !important
}
.mt0 {
margin-top: 0 !important
}
.mt10 {
margin-top: 10px !important
}
.mt14 {
margin-top: 14px
}
.mt15 {
margin-top: 15px
}
.mt18 {
margin-top: 18px
}
.mt20 {
margin-top: 20px !important
}
.mt30 {
margin-top: 30px
}
.mt40 {
margin-top: 40px
}
.mt50 {
margin-top: 50px
}
.mt60 {
margin-top: 60px
}
.mt70 {
margin-top: 70px
}
.mt80 {
margin-top: 80px
}
.mt90 {
margin-top: 90px
}
.mt100 {
margin-top: 100px
}
.mb0 {
margin-bottom: 0 !important
}
.mb3 {
margin-bottom: 3px
}
.mb5 {
margin-bottom: 5px !important
}
.mb10 {
margin-bottom: 10px
}
.mb15 {
margin-bottom: 15px
}
.mb20 {
margin-bottom: 20px !important
}
.mb25 {
margin-bottom: 25px !important
}
.mb30 {
margin-bottom: 30px
}
.mb40 {
margin-bottom: 40px
}
.mb50 {
margin-bottom: 50px
}
.mb55 {
margin-bottom: 55px
}
.mb80 {
margin-bottom: 80px
}
.mb100 {
margin-bottom: 100px
}
.ml0 {
margin-left: 0 !important
}
.ml8 {
margin-left: 8px !important
}
.ml1 {
margin-left: 1px !important
}
.ml5 {
margin-left: 5px !important
}
.ml10 {
margin-left: 10px !important
}
.ml12 {
margin-left: 12px !important
}
.ml13 {
margin-left: 13px !important
}
.ml15 {
margin-left: 15px !important
}
.ml25 {
margin-left: 25px !important
}
.ml20 {
margin-left: 20px !important
}
.ml30 {
margin-left: 30px !important
}
.ml35 {
margin-left: 35px !important
}
.ml38 {
margin-left: 38px !important
}
.ml40 {
margin-left: 40px !important
}
.ml50 {
margin-left: 50px !important
}
.ml60 {
margin-left: 60px !important
}
.ml55 {
margin-left: 55px !important
}
.ml57 {
margin-left: 57px !important
}
.ml60 {
margin-left: 60px !important
}
.ml80 {
margin-left: 80px !important
}
.ml100 {
margin-left: 100px !important
}
.ml110 {
margin-left: 110px !important
}
.ml120 {
margin-left: 120px !important
}
.ml150 {
margin-left: 150px !important
}
.ml200 {
margin-left: 200px !important
}
.ml250 {
margin-left: 250px !important
}
.ml285 {
margin-left: 285px !important
}
.ml835 {
margin-left: 835px !important
}
.mr5 {
margin-right: 5px !important
}
.mr10 {
margin-right: 10px !important
}
.mr15 {
margin-right: 15px !important
}
.mr20 {
margin-right: 20px !important
}
.mr30 {
margin-right: 30px !important
}
.mr40 {
margin-right: 40px !important
}
.mr50 {
margin-right: 50px !important
}
.mr80 {
margin-right: 80px !important
}
.mr100 {
margin-right: 100px !important
}
.mr250 {
margin-right: 250px !important
}
.mr300 {
margin-right: 300px !important
}
.pointer {
cursor: pointer
}
.color-gray,
a.color-gray:link,
a.color-gray:visited {
color: #b7bcc0
}
.color-white {
color: #fff !important
}
.color-blue {
color: #088bd3
}
.fl {
float: left
}
.fr {
float: right
}
.mr60 {
margin-right: 60px
}
.color-red {
color: #EF1300 !important
}
.pr {
position: relative
}
.pa {
position: absolute
}
.errorHint {
height: 25px;
line-height: 20px;
font-size: 12px;
color: #f01414
}
.breakall {
word-break: break-all
}
.cb {
clear: both
}
.fs12 {
font-size: 12px !important
}
.fs14 {
font-size: 14px !important
}
.fs16 {
font-size: 16px !important
}
.fs18 {
font-size: 18px !important
}
.fs20 {
font-size: 20px !important
}
.bold {
font-weight: 700 !important
}
a:link,
a:visited,
body,
html {
color: #14191e;
}
/* latin-ext */
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
src: local('Oxygen Regular'), local('Oxygen-Regular'), url(https://fonts-gstatic.proxy.ustclug.org/s/oxygen/v6/IIPDrwV5KNJo5-LaFlLy2fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
src: local('Oxygen Regular'), local('Oxygen-Regular'), url(https://fonts-gstatic.proxy.ustclug.org/s/oxygen/v6/78wGxsHfFBzG7bRkpfRnCQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
body,
a {
font-family: 'Oxygen', Helvetica Neue, Helvetica, "Source Han Sans SC", PingFang SC, Hiragino Sans GB, Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-size: 15px;
color: #262626;
}
body {
background-color: #f3f5f7;
}
html {
height: 100%;
}
a:hover {
text-decoration: none;
}
/* Header */
.edu-header {
width: 100%;
background: #fff;
border-bottom: 1px solid rgba(30, 35, 42, .06);
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 34, 77, .05);
box-shadow: 0 1px 3px 0 rgba(0, 34, 77, .05);
z-index: 100;
}
.edu-header-inner {
width: 100%;
max-width: 1200px;
height: 52px;
margin: 0 auto;
display: -webkit-box;
-webkit-box-align: center;
overflow: hidden;
}
.logo {
height: 100%;
}
.logo img {
height: 30px;
}
.header-nav {
margin-left: 27px;
}
.header-nav a {
padding: 0 15px;
color: #8590a6;
}
.header-nav a:hover {
color: #175199;
}
.header-search {
position: relative;
;
}
.header-search .form-control {
height: 30px;
padding: 5px 10px 5px 28px;
font-size: 12px;
margin: 0;
line-height: 12px;
width: auto;
display: inline-block;
}
.header-search .header-search-ico {
position: absolute;
z-index: 2;
left: 10px;
font-size: 14px;
width: 20px;
margin-left: -2.5px;
text-align: center;
padding: 10px 0;
top: 0;
color: #8590a6;
}
header .user-info {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.user-info>div {
padding: 0 10px;
position: relative;
}
.user-info a {
color: #8590a6;
}
.user-info .fa-shopping-cart .shopping_icon {
position: absolute;
padding: 0 5px;
height: 16px;
left: 17px;
top: 10px;
line-height: 16px;
background: #f01414;
border-radius: 50%;
color: #fff;
font-style: normal;
font-size: 10px;
}
.user-info.shop-hover .my-cart {
display: block;
}
.user-info .my-cart {
padding: 0 12px;
position: absolute;
right: 80px;
top: 53px;
width: 350px;
background: #fff;
box-sizing: border-box;
display: none;
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .2);
z-index: 99999;
}
.user-info .my-cart .cart-title-box {
padding: 20px 12px;
border-bottom: 1px solid #d9dde1;
}
.user-info .my-cart .cart-title-box h2 {
height: 16px;
font-size: 16px;
color: #07111b;
line-height: 16px;
}
.user-info .my-cart .cart-title-box h5 {
height: 16px;
line-height: 16px;
font-size: 12px;
color: #93999f;
}
.user-info .my-cart .cart-wrap .clear-cart {
height: 284px;
text-align: center;
margin: 0 auto;
}
.user-info .my-cart .cart-wrap .clear-cart .cartIcon {
margin-top: 36px;
margin-bottom: 12px;
display: inline-block;
width: 60px;
height: 60px;
line-height: 60px;
background: #93999f;
font-size: 36px;
color: #fff;
border-radius: 50%;
}
.user-info .my-cart .cart-wrap .clear-cart h3 {
margin: 0 auto;
width: 180px;
padding-bottom: 24px;
border-bottom: 1px solid #d9dde1;
color: #4d555d;
font-size: 14px;
line-height: 14px;
}
.user-info .my-cart .cart-wrap .clear-cart .text {
text-align: center;
margin-top: 24px;
margin-bottom: 16px;
font-size: 12px;
line-height: 12px;
color: #93999f;
}
.user-info .my-cart .more-box {
padding: 16px 12px;
border-top: 1px solid #d9dde1;
}
.user-info .my-cart .more-box .show-box {
height: 38px;
line-height: 38px;
}
.user-info .my-cart .more-box .show-box .text {
font-size: 12px;
color: #93999f;
}
.user-info .my-cart .more-box .go-cart {
color: #fff;
font-size: 12px;
line-height: 12px;
font-weight: 700;
padding: 12px 16px;
border-radius: 2px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box {
height: 284px;
overflow-y: scroll;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li {
padding: 12px 12px 8px;
box-sizing: border-box;
border-bottom: 1px solid #d9dde1;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li a {
width: auto;
height: auto;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li img {
width: 100px;
height: 56px;
margin-right: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box {
width: 170px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box h3 {
word-break: break-all;
font-size: 12px;
color: #07111b;
line-height: 16px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box p {
margin-top: 16px;
height: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .content-box p span {
color: #BE002F;
font-size: 12px;
line-height: 12px;
}
.user-info .my-cart .cart-wrap .cart-wrap-box ul li .del {
cursor: pointer;
}
/*Loin user*/
.text-ellipsis {
overflow: hidden;
}
.g-user-card {
position: absolute !important;
padding: 0 !important;
right: 0;
top: 53px;
width: 306px;
visibility: hidden;
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .2);
z-index: 1000;
}
.g-user-card .card-inner {
background-color: #fff;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
padding: 24px;
box-sizing: border-box;
}
.g-user-card .card-top {
color: #93999f;
position: relative;
}
.g-user-card .card-top img {
float: left;
width: 72px;
height: 72px;
border-radius: 50%;
border: 2px solid #fff;
margin-right: 12px;
}
.g-user-card .card-top .card-top-right-box {
margin-top: 14px;
}
.g-user-card .card-top a {
color: #93999f;
display: inline-block;
}
.g-user-card .card-top .name {
display: inline-block;
font-size: 16px;
color: #07111b;
width: 170px;
line-height: 20px;
}
.g-user-card .card-top .meta {
font-size: 12px !important;
line-height: 16px;
}
.g-user-card .card-top .meta a {
margin-right: 12px;
font-size: 12px !important;
}
.g-user-card .card-top .meta b {
margin-left: 2px;
}
.g-user-card .user-center-box {
margin-top: 16px;
margin-bottom: 14px;
}
.g-user-card .user-center-box ul li {
position: relative;
width: 127px;
width: 127px \9;
height: 36px;
background: #f3f5f7;
line-height: 36px;
color: #4d555d;
font-size: 12px;
margin-right: 2px;
margin-bottom: 2px;
box-sizing: border-box;
}
.g-user-card .user-center-box ul li:hover {
color: #fff;
background-color: rgba(77, 85, 93, .4);
}
.g-user-card .user-center-box ul li>a:hover {
color: #fff;
}
.g-user-card .user-center-box ul li a {
width: 100%;
height: 36px;
line-height: 36px;
padding-left: 12px;
text-align: left;
box-sizing: border-box;
color: #787d82;
display: block;
margin: auto;
}
.g-user-card .user-center-box ul li .user-center-icon {
position: relative;
top: 3px;
font-size: 16px;
margin-right: 8px;
}
.g-user-card .card-history {
padding-bottom: 16px;
}
.g-user-card .card-history,
.g-user-card .card-links {
margin-bottom: -1px;
border-bottom: 1px solid #edf1f2;
}
.g-user-card .card-history .history-item {
display: block;
position: relative;
padding-left: 24px;
font-size: 12px;
color: #787d82;
transition: background-color .2s;
}
.g-user-card.hover {
visibility: visible;
}
.g-user-card .card-history .history-item .tit {
display: block;
margin-bottom: 8px;
font-weight: 700;
}
.g-user-card .card-history .history-item .media-name {
display: block;
width: 200px;
}
.g-user-card .card-history .history-item .fa-clock-o {
position: absolute;
left: 0;
top: 2px;
font-size: 16px;
font-weight: 700;
}
.g-user-card .card-history .history-item .continue {
position: absolute;
right: 0;
top: 26px;
color: #00b43c;
}
.g-user-card .card-sets {
margin-top: 16px;
font-size: 12px;
line-height: 12px;
}
.g-user-card .card-sets a {
color: #4d555d;
}
/* Main */
#main {
width: 100%;
max-width: 1200px;
margin: 10px auto;
}
.banner {
position: relative;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
overflow: hidden;
border-radius: 10px 10px 0 0;
height: 460px;
}
.banner-nav {
position: absolute;
top: 0;
left: 0;
width: 224px;
z-index: 2;
padding-top: 6px;
color: #fff;
height: 460px;
}
.banner-nav a {
color: #fff;
}
.banner-nav-wrap {
background-color: rgba(7, 17, 27, .5);
width: 224px;
z-index: 1;
position: absolute;
left: 0;
top: 0;
height: 460px;
}
.banner-nav-sub {
position: absolute;
left: 224px;
top: 0;
width: 732px;
height: 460px;
z-index: 581;
color: #262626;
border: 1px solid #d9dde1;
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.banner-nav-sub a {
color: #262626;
}
.banner-nav-sub-inner {
position: relative;
width: 100%;
height: 100%;
background-color: #fff;
}
.banner-nav-sub-inner .box {
width: 730px;
padding: 0 40px;
overflow: hidden;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.banner-nav-sub-inner .box .title {
color: #07111b;
font-size: 16px;
line-height: 16px;
font-weight: 700;
margin-bottom: 13px;
margin-top: 40px;
}
.banner-nav-sub-inner .box .case .case-list {
margin-top: 5px;
}
.banner-nav-sub-inner .box .case .case-list a {
padding: 0 5px;
}
.banner-nav .item {
height: 64px;
line-height: 66px;
font-size: 12px;
cursor: pointer;
padding: 0 24px;
position: relative;
z-index: 2;
}
.banner-nav .item a {
display: block;
color: #fff;
padding: 0 8px;
border-bottom: 1px solid rgba(255, 255, 255, .2);
height: 63px;
}
.banner-nav .item i {
position: absolute;
right: 32px;
top: 24px;
color: #fff;
}
.banner-content {
z-index: 1;
border-radius: 50px;
}
.banner-content .item {
display: block;
max-height: 460px;
overflow: hidden;
}
.banner-content img {
display: block;
}
.banner-content .owl-dots {
position: absolute;
width: 100%;
bottom: 0;
}
.banner-content .owl-dots .owl-dot span {
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
}
.micro-banner {
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
height: 100px;
display: -webkit-box;
display: -moz-box;
-webkit-box-align: center
}
.micro-banner-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
transition: all .3s;
}
.micro-banner-box:hover {
margin-top: -10px;
}
.types-content {
margin-top: 50px;
}
.types-content-title {
position: relative;
font-size: 20px;
font-weight: normal;
color: #424242;
margin-bottom: 24px;
line-height: 20px;
}
.types-content-inner {
display: -webkit-box;
display: -moz-box;
}
.types-content-inner-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
width: 224px;
height: 228px;
margin-right: 20px;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
border-radius: 5px 0;
}
.types-content-inner-box:last-child {
margin-right: 0;
}
.types-content-inner-box>div {
padding: 0 24px;
;
}
.types-content-inner-box .inner-box-title {
height: 48px;
line-height: 48px;
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(60deg, #7BCFA6, #A4E2C6);
color: #fff;
}
.types-content-inner-box .inner-box-title span {
margin-left: 10px;
font-size: 12px;
font-weight: 700;
color: #fff;
}
.types-content-inner-box .inner-box-content h3 {
margin: 10px 0;
font-size: 14px;
color: #3D3B4F;
line-height: 24px;
max-height: 48px;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
letter-spacing: -.1px;
}
.types-content-inner-box .inner-box-content p {
font-size: 12px;
color: #93999f;
line-height: 24px;
margin: 8px 0;
height: 48px;
word-break: normal;
word-wrap: break-word;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.types-content-inner-box .inner-box-bottom {
display: -webkit-box;
display: -moz-box;
font-size: 12px;
color: #93999f;
line-height: 24px;
}
.types-content-inner-box .inner-box-bottom>div {
-webkit-box-flex: 1;
-moz-box-flex: 1;
}
.types-content-inner-box .inner-box-bottom .info {
color: #93999f;
transition: all .35s;
}
.types-content-inner-box:hover .inner-box-bottom .info {
color: #DB5A6B;
}
.types-content-inner-box .inner-box-bottom .price {
color: #f01414;
text-align: right;
font-weight: 200;
line-height: 24px;
font-size: 12px;
}
.container-types {
margin-top: 20px;
}
.container-types-title {
position: relative;
font-size: 20px;
font-weight: normal;
color: #07111b;
margin-bottom: 24px;
line-height: 20px;
}
.container-types-inner {
display: -webkit-box;
display: -moz-box;
}
.container-types-left {
width: 240px;
height: 350px;
color: #fff;
padding: 24px;
position: relative;
border-radius: 4px;
margin-right: 20px;
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(45deg, #7BCFA6, #A4E2C6);
}
.container-types-left a {
color: #fff;
}
.container-types-left>div {
width: 100%;
}
.container-types-left .path-cart-tit2 h3 {
margin: 10px 0;
font-size: 22px;
font-weight: normal;
}
.container-types-left .path-cart-tit3 {
margin-top: 50px;
text-align: right;
}
.container-types-left .recommended-item {
position: absolute;
padding: 10px;
bottom: 20px;
border-top: 1px solid #fff;
}
.container-types-right {
-webkit-box-flex: 1;
}
.container-types-right .right-top .right-top-inner {
border-radius: 4px;
width: 100%;
height: 100px;
line-height: 100px;
text-align: center;
color: #FFF;
font-size: 18px;
overflow: hidden;
/* background: -webkit-gradient(linear, right top, left top, from(rgba(210, 115, 230, .7)), to(#d273e6));
background: linear-gradient(270deg, rgba(210, 115, 230, .7), #d273e6); */
background: -webkit-gradient(linear, right top, left top, from(#7BCFA6), to(#A4E2C6));
background: linear-gradient(60deg, #7BCFA6, #A4E2C6);
}
.container-types.two .right-top {
display: -webkit-box;
display: -moz-box;
}
.container-types.two .right-top .right-top-inner {
width: 460px;
margin-right: 20px;
}
.container-types.two .right-top .right-top-inner:last-child {
margin-right: 0;
}
.container-types.two {}
.container-types-right .box {
margin-top: 20px;
display: -webkit-box;
display: -moz-box;
}
.container-types.color-yg .container-types-left,
.container-types.color-yg .right-top-inner,
.container-types.color-yg .inner-box-title {
background: -webkit-gradient(linear, right top, left top, from(#177CB0), to(#4C8DAE));
background: linear-gradient(45deg, #177CB0, #4C8DAE);
}
.container-types.color-pp .container-types-left,
.container-types.color-pp .right-top-inner,
.container-types.color-pp .inner-box-title {
background: -webkit-gradient(linear, right top, left top, from(rgba(255, 115, 155, .7)), to(#ff739b));
background: linear-gradient(90deg, #F46082, #ff739b);
}
.block-list {
margin-top: 20px;
}
.block-list h1 {
position: relative;
font-size: 20px;
font-weight: normal;
color: #07111b;
margin-bottom: 24px;
line-height: 20px;
}
.block-list-lecturer {
display: -webkit-box;
display: -moz-box;
}
.lecturer-box {
-webkit-box-flex: 1;
-moz-box-flex: 1;
margin: 0 10px 0 0;
}
.lecturer-box:last-child {
margin-right: 0;
}
.lecturer-box-inner {
padding: 10px;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
text-align: center;
}
.lecturer-box-inner img {
width: 120px;
height: 120px;
margin: 0 auto;
border-radius: 50%;
display: block;
;
}
.lecturer-box-inner>span {
display: block;
}
.lecturer-box-inner span.name {
font-size: 16px;
line-height: 24px;
color: #07111b;
font-weight: 700;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
margin-top: 5px;
}
.lecturer-box-inner span.title {
font-size: 12px;
line-height: 24px;
color: #93999f;
margin-bottom: 15px;
}
.lecturer-box-inner span.lecturer-p {
font-size: 12px;
line-height: 20px;
color: #93999f;
height: 56px;
word-break: break-all;
word-wrap: break-word;
overflow: hidden;
}
.course-nav-box {
width: 100%;
padding: 12px 0;
background-color: #fff;
}
.course-nav-inner {
width: 1200px;
margin: 0 auto;
}
.course-nav-row {
padding: 16px 0 5px;
border-bottom: 1px solid #edf1f2;
}
.course-nav-row .hd {
width: 52px;
height: 20px;
line-height: 33px;
font-weight: 700;
font-size: 14px;
color: #07111b;
text-align: right;
float: left;
;
}
.course-nav-row {}
.course-nav-row .bd {
margin-left: 64px;
}
.course-nav-row .bd ul {
list-style: none;
}
.course-nav-row .bd ul li {
display: inline-block;
margin: 0 4px;
}
.course-nav-row .bd ul li a {
display: block;
line-height: 14px;
margin-bottom: 10px;
padding: 10px;
font-size: 14px;
}
.course-nav-row .bd ul li.on a {
background: #2b333b;
color: #fff;
border-radius: 2px;
}
.course-tool-nav {
width: 100%;
background-color: #fff;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
border-bottom: 1px solid #ccc;
}
.course-tool-nav dl dd {
display: inline-block;
padding: 20px 12px;
}
.course-list {
background-color: #fff;
}
.ncedu-course-list {
padding: 20px 0;
}
.course-card-container {
float: left;
margin: 0 0 18px 18px;
max-height: 256px;
width: 216px;
position: relative;
-webkit-transition: .3s all linear;
transition: .3s all linear;
}
.course-card-container .course-card-top {
width: 216px;
height: 120px;
border-radius: 8px;
overflow: hidden;
-webkit-transition: all .3s;
transition: all .3s;
-webkit-box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
box-shadow: 0 4px 8px 0 rgba(7, 17, 27, .1);
}
.course-card-container .course-card-top img {
width: 100%;
height: 100%;
background-color: #f3f5f7;
}
.course-card-container .course-card-content {
padding: 12px 8px;
}
.course-card-container .course-card-content>h3 {
font-size: 16px;
color: #3D3B4F;
line-height: 24px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.course-card-container .course-card-content .course-card-info {
font-size: 12px;
color: #93999F;
line-height: 24px;
font-weight: 200;
}
.course-card-container .course-card-content .course-card-info span {
display: inline-block;
margin-right: 12px;
}
.course-card-container .course-card-content .course-card-desc {
font-size: 12px;
color: #93999F;
line-height: 22px;
margin-top: 2px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.course-list-pager {
text-align: center;
padding: 20px 0;
}
.course-header-new .breadcrumb {
margin: 0;
color: #fff;
background-color: transparent;
height: 50px;
}
.course-header-new .breadcrumb a {
color: #fff;
}
.course-header-new .breadcrumb>li+li:before {
content: ">";
}
.course-header-new {
padding-bottom: 40px;
margin-bottom: 30px;
background: url(../img/course_bg.jpg) repeat;
background-size: 100% 100%;
}
.ncedu-course-before {
margin: 0;
background: #fff;
border-radius: 5px;
padding: 10px 0 10px 10px;
}
.ncedu-course-before .pic {
padding: 0;
}
.ncedu-course-before .pic img {
width: 100%;
}
.ncedu-course-before .info h1 {
margin: 20px 0 30px 0;
line-height: 26px;
max-height: 52px;
position: relative;
padding: 0 170px 0 40px;
width: 100%;
text-align: left;
color: #444;
font-size: 20px;
overflow: hidden;
}
.ncedu-course-before .info .metas {
background: #15c288;
height: 100px;
position: absolute;
bottom: 0;
width: 100%;
}
.ncedu-course-before .info .metas li {
background: #f0f0f0;
height: 100%;
width: 25%;
float: left;
text-align: center;
padding: 25px 25px 15px;
}
.ncedu-course-before .info .metas li i {
font-size: 20px;
line-height: 20px;
}
.ncedu-course-before .info .metas li.bd {
border-right: 1px solid #ddd;
}
.ncedu-course-before .info .metas li p {
margin: 8px 0 0 0;
}
.ncedu-course-before .info .metas li.join {
padding: 0;
}
.ncedu-course-before .info .metas li.join a {
font-size: 18px;
padding-top: 38px;
display: block;
height: 100%;
width: 100%;
}
.ncedu-course-before .info {
padding: 0;
height: 265px;
}
.course-header-new .btn {
border-radius: 0;
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
.course-header-new .btn-primary {
border-color: #34a263;
background-color: #46c37b;
color: #fff;
}
.course-header-new .btn.btn-primary {
color: #fff !important;
background: #15c288;
border: 1px solid #15c288;
}
@media (max-width: 1200px) {
.ncedu-course-before .info {
height: 218px;
}
.ncedu-course-before .info .metas {
height: 80px;
}
.ncedu-course-before .info .metas li {
padding: 10px 0;
}
.ncedu-course-before .info .metas li.join a {
padding-top: 27px;
}
.ncedu-course-before .info h1 {
padding-right: 100px;
}
}
.course-start {
width: 100%;
background-color: #fff;
border-radius: 5px;
margin: 10px 0;
padding: 10px;
}
.course-start .pic img {
width: 100%;
max-width: 470px;
}
.course-start .info .title-box h1 {
margin: 20px 0 30px 0;
line-height: 26px;
max-height: 52px;
position: relative;
padding: 0 17px 0 40px;
width: 100%;
text-align: left;
color: #444;
font-size: 20px;
overflow: hidden;
}
.course-start .info {
height: 300px;
padding: 0px;
margin: 0 -10px;
}
.course-start .info .info-box {
width: 100%;
}
.course-start .info .info-box ul {
width: 100%;
position: absolute;
bottom: 0;
background: #15c288;
height: 100px;
}
.course-start .info .info-box ul li {
display: inline-block;
background: #f0f0f0;
height: 100%;
width: 25%;
float: left;
text-align: center;
padding: 25px 25px 15px;
}
.course-start .info .info-box ul li.bd {
border-right: 1px solid #ddd;
}
.course-start .info .info-box ul li.join {
padding: 0;
}
.course-start .info .info-box ul li.join a {
font-size: 18px;
padding-top: 38px;
display: block;
height: 100%;
width: 100%;
}
@media (max-width: 1200px) {
.course-start .info .info-box ul li {
padding: 10px 0;
}
}
.course-info-mai .content {
padding: 0 10px;
}
.course-menu {
border-bottom: 1px solid #D1D6DA;
}
.course-menu ul li {
display: inline-block;
text-align: center;
margin-right: 12px;
}
.course-menu ul li a {
display: block;
padding: 26px 24px;
font-size: 16px;
color: #4d555d;
}
.course-menu ul li.active {
border-bottom: 1px solid #15c288;
}
.course-menu ul li.active a {
color: #15c288;
}
.mod-chapters .chapter {
border-bottom: 1px solid #d9dde1;
padding: 0 24px 12px;
}
.mod-chapters .chapter .title {
display: block;
position: relative;
height: 53px;
line-height: 65px;
font-size: 16px;
color: #07111b;
}
.mod-chapters .chapter>h3 {
cursor: pointer;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
}
.mod-chapters .chapter h3 i {
margin-right: 5px;
color: #93999f;
font-size: 19px;
position: relative;
top: 2px;
}
.mod-chapters .chapter>h3>span {
font-weight: 700;
cursor: pointer;
line-height: 65px;
font-size: 16px;
color: #07111b;
}
.mod-chapters .chapter .title i.fa-list {
margin-right: 10px;
color: #93999f;
}
.mod-chapters .chapter .title i:last-child {
position: absolute;
top: 50%;
right: 0;
margin-top: -9px;
}
.mod-chapters .chapter .video {
padding: 0 0 4px 32px;
}
.mod-chapters .chapter .video li {
position: relative;
height: 40px;
line-height: 40px;
background-color: #f3f5f7;
margin-bottom: 8px;
}
.mod-chapters .chapter .video li a {
padding-left: 8px;
color: #787d82;
display: block;
overflow: hidden;
word-break: break-all;
}
.mod-chapters .chapter .video li a:hover {
color: #ecf5ff;
}
.mod-chapters .chapter .video li a.hvr-sweep-to-right:before {
background: #2b333b;
}
.mod-chapters .chapter .video li a i.fa-play {
font-size: 12px;
margin-right: 10px;
}
.mod-chapters .chapter .video>li>a>span {}
.mod-chapters .chapter .video li>a>i.video-now {
position: absolute;
right: 12px;
font-style: normal;
font-size: 12px;
}
.mod-chapters .chapter .video li>a>i.video-now em {
margin-left: 10px;
font-size: 16px;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-check-circle {
color: #00b43c;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-free-code-camp {
color: #a7b400;
}
.mod-chapters .chapter .video li>a>i.video-now em.fa-circle-o {
color: #d9dde1;
}
.course-sidebar {
padding: 28px 10px;
}
.course-sidebar .teacher-info {
display: -webkit-box;
padding: 20px 0;
overflow: hidden;
}
.teacher-info-inner {
margin-left: 20px;
}
.course-sidebar .teacher-info img {
width: 60px;
height: 60px;
border-radius: 100%;
}
.course-sidebar .teacher-info span {
display: block;
}
.course-sidebar .teacher-info span.title {
margin: 5px 0;
}
.course-sidebar .teacher-info span {
font-size: 12px;
color: #71777b;
}
.iss_ques {
border-bottom: 1px solid #d9dde1;
padding-bottom: 30px;
margin-top: 24px;
}
.iss_ques .user-head {
display: inline-block;
overflow: hidden;
margin-left: 24px;
margin-right: 20px;
}
.iss_ques .user-head img {
width: 40px;
height: 40px;
border-radius: 50%;
}
.pub-editor-wrap {
width: 795px;
position: relative;
padding: 8px 10px;
border: 1px solid #b7bbbf;
background-color: #fff;
box-sizing: border-box;
border-radius: 2px;
}
.pub-editor-wrap textarea {
width: 97%;
min-height: 62px;
padding: 8px;
color: #555;
resize: none;
line-height: 18px;
}
.ipt {
color: #14191e;
background-color: #fff;
border: 1px solid #98a1a6;
padding: 9px;
font-size: 14px;
border-radius: 0;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.num-limit {
position: absolute;
line-height: 100%;
font-size: 12px;
right: 5px;
bottom: 5px;
color: #d0d6d9;
}
.verify-box {
padding-top: 20px;
}
.verify-box .ipt {
height: 38px;
width: 110px;
padding: 14px 0 10px 8px;
border: 1px solid #d0d6d9;
color: #b5b9bc;
box-shadow: none;
}
.verify-box .verify-media {
width: 70px;
height: 40px;
margin-left: 10px;
background-color: #787d82;
}
.verify-box .verify-help {
margin-left: 10px;
font-size: 12px;
color: #787d82;
}
.verify-box .verify-help .verify-refresh {
display: block;
margin-top: -11px;
color: #00b33b;
font-size: 12px;
}
.pub-btn {
background-color: #00b43c;
height: 40px;
padding: 0 12px;
line-height: 40px;
text-align: center;
color: #fff;
cursor: pointer;
margin-top: 20px;
border-radius: 2px;
}
.pub-btn:hover {
color: #fff;
}
.pub-btn:focus {
color: #fff;
}
.comment-pub-btn {
margin-right: 20px;
}
.ipt,
select.ipt {
height: 20px;
line-height: 20px;
}
.ipt {
color: #14191e;
background-color: #fff;
border: 1px solid #98a1a6;
padding: 9px;
font-size: 14px;
border-radius: 0;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.comment-verify-box {
margin-left: 85px;
}
.errortip {
padding-left: 15px;
margin: 30px 10px 0 0;
font-size: 12px;
line-height: 20px;
color: #be3948;
display: none;
}
/*Sign in*/
header.simple-header {
width: 100%;
height: 60px;
z-index: 999;
background: #FFF;
padding: 15px 0;
}
header.simple-header,
header.white {
box-shadow: rgba(0, 0, 0, .0980392) 0 1px 1px;
}
.action-page.sign_in {
position: relative;
width: 100%;
height: 100%;
padding: 0 0 61px;
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
color: #fff;
}
.action-page.sign_in>.bg-layer {
position: absolute;
width: 100%;
height: 100%;
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
}
.action-page.sign_in>.wrapper {
position: relative;
height: 100%;
overflow: hidden;
}
.action-page.sign_in>.wrapper>.main {
position: relative;
top: 40%;
left: 50%;
width: 320px;
height: 360px;
margin-top: -180px;
margin-left: -160px;
text-align: center;
}
.action-page.sign_in>.wrapper>.main>.logo {
max-width: 300px;
height: auto;
margin: 30px auto 50px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #f4f6f6;
border-color: #d5dbdb;
color: #d5dbdb;
cursor: default;
opacity: .7;
filter: alpha(opacity=70);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container {
position: relative;
margin: 20px 0 30px;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>.error-tip {
position: absolute;
width: 100%;
left: -100%;
bottom: 6px;
padding-right: 20px;
text-align: right;
font-size: 1.2rem;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input {
display: block;
float: left;
width: 100%;
padding-bottom: 6px;
padding-left: 11px;
-ms-flex-order: 2;
order: 2;
margin-top: 0;
border-radius: 0;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, .5);
outline: 0;
transition: border-bottom .3s, border-color .3s, border-width .3s, border .3s ease-in-out;
font-size: 1.6rem;
line-height: 28px;
color: rgba(255, 255, 255, .8);
background: 0 0;
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input.no {
border-bottom: 1px solid rgb(255, 1, 13);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>.input-container>input::-webkit-input-placeholder {
color: rgba(255, 255, 255, .8);
}
.action-page.sign_in>.wrapper>.main>.form-sign_in>.local-sign_in>#sign_in-btn {
position: relative;
width: 100%;
height: 42px;
letter-spacing: 5px;
border: none;
border-radius: 30px;
color: rgba(255, 255, 255, .8) !important;
background-color: rgba(242, 251, 255, 0.25);
}
.login-help a {
color: rgba(255, 255, 255, .8);
}
/*sign up*/
.msg {
display: none;
margin-bottom: 10px;
border: 1px solid;
border-radius: 4px;
position: relative;
padding: 8px 30px 8px 15px;
font-size: 1.3rem;
}
.msg>.btn-close {
border: none;
background: 0 0;
position: absolute;
right: 2%;
font-size: 1.2em;
top: .35em;
}
.msg.danger {
display: block;
background-color: #FFF2F2;
border-color: #FFDBDB;
color: #D55050;
}
.has-error .form-control {
border-color: #e74c3c;
box-shadow: none;
}
.has-error .form-control:focus {
border-color: #e74c3c;
box-shadow: none;
}
.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .form-control,
.has-error .form-control-feedback,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline {
color: #e74c3c;
}
.action-page.activate,
.action-page.findpass,
.action-page.resetpass,
.action-page.sign_up {
position: relative;
width: 100%;
height: 100%;
padding: 72px 0 61px;
}
.rotate,
.spinner,
.spinning {
position: absolute;
-webkit-animation: rotate 1s linear infinite;
-o-animation: rotate 1s linear infinite;
animation: rotate 1s linear infinite;
transform-origin: center;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.action-page.activate>header,
.action-page.findpass>header,
.action-page.resetpass>header,
.action-page.sign_up>header {
position: absolute;
top: 0;
}
.action-page.sign_up>header {
background: 0 0;
}
.action-page.sign_up {
background: url(../img/login-bg2.jpg) top/cover no-repeat fixed;
color: #fff;
}
.action-page.activate>.wrapper,
.action-page.findpass>.wrapper,
.action-page.resetpass>.wrapper,
.action-page.sign_up>.wrapper {
position: relative;
height: 100%;
overflow: hidden;
}
.action-page.sign_up>.wrapper>.main {
top: 50%;
margin-top: -300px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.sign_up-title {
font-size: 3rem;
}
.action-page.activate>.wrapper>.main,
.action-page.findpass>.wrapper>.main,
.action-page.resetpass>.wrapper>.main,
.action-page.sign_up>.wrapper>.main {
position: relative;
top: 40%;
left: 50%;
width: 320px;
height: auto;
margin-top: -220px;
margin-left: -160px;
text-align: center;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container {
position: relative;
margin: 10px 0;
}
.form-control {
width: 100%;
background-color: #fff;
border: 1px solid #bdc3c7;
color: #34495e;
font-size: 1.6rem;
line-height: 1.467;
padding: 8px 12px;
height: 42px;
border-radius: 3px;
box-shadow: none;
transition: border .25s linear, color .25s linear, background-color .25s linear;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>.pull-left {
position: relative;
width: 200px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>.pull-left.captcha-wrap {
width: 100px;
margin-left: 15px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>.input-container>input {
display: block;
width: 100%;
height: 42px;
outline: 0;
font-size: 1.6rem;
line-height: 28px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>#sign_up-btn {
position: relative;
width: 100%;
height: 42px;
letter-spacing: 5px;
border-radius: 40px;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.local-sign_up>#sign_up-btn>.indicator {
position: absolute;
width: 20px;
height: 20px;
top: 13px;
left: 50%;
margin-left: -10px;
font-size: 2rem;
}
.action-page.sign_up a {
color: #fff;
}
.action-page.sign_up>.wrapper>.main>.form-sign_up>.note>p.terms-note {
font-size: 1rem;
}
.action-page>footer {
position: absolute;
bottom: 0;
width: 100%;
padding: 20px 30px;
background: none;
color: #fff;
}
.action-page>footer a {
color: #fff;
}
.action-page>footer .container {
border-top: none;
max-width: 1200px;
width: 100%;
}
.course-video-header {
background-color: #14191e;
position: relative;
padding-right: 20px;
color: #787d82;
}
.course-video-header .nv {
float: left;
}
.nv-goback a {
width: 70px;
text-align: center;
color: #969b9e;
}
.nv-menu>a {
padding: 0 20px;
font-size: 14px;
color: #b5b9bc;
position: relative;
}
.nv>a {
display: block;
color: #969b9e;
}
.nv-follow a,
.nv>a,
.nvr>a {
line-height: 60px;
}
.nv-menu>a em {
margin-left: 10px;
}
.nv-follow a,
.nv-menu>a em {
color: #787d82;
font-size: 12px;
}
.nv-share {
position: relative;
height: 20px;
top: 20px;
left: 15px;
padding-left: 20px;
}
.nv-share a {
float: left;
font-size: 20px !important;
padding-left: 0 !important;
color: #787d82 !important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 20px !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0 10px 0 0 !important;
}
.nv-share span {
float: left;
margin-right: 10px;
position: relative;
top: -1px;
font-size: 14px;
color: #787d82;
}
.nv-share>a {
display: inline-block;
}
.login-area {
float: right;
right: 10px;
position: relative;
}
.login-area .shopping_icon {
top: -8px !important;
}
.login-area .my-cart {
right: 130px;
}
.logined>div {
float: left;
position: relative;
text-align: center;
}
.shop-cart .shop-cart-icon {
display: inline-block;
width: 108px !important;
padding: 0 18px;
box-sizing: border-box;
}
.logined div>a {
height: 60px;
line-height: 60px;
width: 60px;
color: #787d82;
text-align: center;
-webkit-transition: background-color .2s;
-moz-transition: background-color .2s;
transition: background-color .2s;
}
.shop-cart {
height: 60px;
line-height: 60px;
}
.shop-cart .shop-cart-icon span {
color: #71777d;
font-size: 14px;
}
.shop-cart .shop-cart-icon .fa-shopping-cart {
position: relative;
top: -3px;
font-size: 24px;
}
.remind_warp {
width: 60px;
height: 60px;
position: relative;
}
.remind_warp .msg_remind {
display: none;
position: absolute;
width: 8px;
height: 8px;
background-color: #f01414;
right: 14px;
top: 14px;
border-radius: 50%;
}
.remind_warp .icon-notifi {
text-align: center;
transition: color .2s;
}
.remind_warp .fa-bell,
.search-warp i {
display: block;
font-size: 22px;
line-height: 60px;
cursor: pointer;
}
.user-card-box .user-card-item img {
width: 36px;
height: 36px;
border-color: #4d5559;
margin-top: -5px;
}
.header-app:hover .QR-download,
.logined li>a {
display: block;
}
.set_btn img {
border-radius: 50%;
display: inline-block;
}
.course-video-header .fa,
.icon,
.icon-msg,
.icon-share,
.nvr-space img {
vertical-align: middle;
}
.video-con {
position: relative;
background-color: #000;
overflow: hidden;
}
.video-list {
position: absolute;
right: -360px;
top: 0;
z-index: 999;
width: 360px;
height: 100%;
background: #14191e;
transition: 0.5s all;
}
.video-list .operator {
position: absolute;
top: 50%;
left: -50px;
margin-top: -92px;
width: 50px;
}
.video-list .operator .op {
position: relative;
height: 60px;
line-height: 82px;
font-size: 12px;
text-align: center;
color: #B5B9BC;
background-color: #363C40;
cursor: pointer;
margin: 2px 0;
}
.video-list .operator .op i {
position: absolute;
left: 0;
top: 12px;
width: 50px;
}
.video-list .operator .op.light,
.video-list .operator .op:hover {
background-color: #f01400;
color: #fff;
}
.nano {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.video-list .nano .nano-content {
left: 30px;
}
.nano>.nano-content {
position: absolute;
overflow: scroll;
overflow-x: hidden;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.video-list h3 {
color: #b5b9bc;
line-height: 20px;
font-size: 16px;
text-align: left;
margin-top: 20px;
margin-right: 30px;
}
.video-list ul {
margin-top: 30px;
margin-right: 30px;
}
.video-list li.sec-title {
padding-bottom: 10px;
}
.video-list li {
margin-top: 15px;
}
.video-list li span {
font-size: 14px;
}
.video-list li a,
.video-list li span {
color: #787d82;
line-height: 20px;
text-align: left;
}
.video-list li a {
font-size: 12px;
margin-left: 15px;
}
.video-list li i {
font-style: normal;
float: right;
font-size: 12px;
line-height: 20px;
text-align: left;
color: #00b33b;
}
.video-list li i em {
margin-left: 10px;
color: #00b33b;
}
.video-list li a em {
margin-right: 10px;
}
.video-list li i em.fa-circle-thin {
color: #787d82;
}
.nano>.nano-pane {
background: rgba(0, 0, 0, .25);
position: absolute;
width: 10px;
right: 10px;
top: 0;
bottom: 0;
visibility: hidden \9;
opacity: .01;
-webkit-transition: .2s;
-moz-transition: .2s;
-o-transition: .2s;
transition: .2s;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.list-wrap {
margin-top: 2px;
}
.list-wrap>div {
display: none;
}
.list-wrap>div.active {
display: block;
}
.course-tool-bar {
position: relative;
padding-right: 15px;
font-size: 12px;
height: 58px;
background-color: #f3f5f7;
}
.course-tool-bar {
position: relative;
padding-right: 15px;
font-size: 12px;
height: 58px;
background-color: #f3f5f7;
}
.course-tool-bar .tool-left a {
margin: 0 20px;
color: #787d82;
float: left;
font-size: 12px;
display: inline-block;
line-height: 58px;
text-align: center;
}
.course-tool-bar .tool-left a.active {
color: #14191E;
}
.course-tool-bar .tool-right {
color: #787d82;
height: 58px;
line-height: 58px;
}
.course_note li {
border-bottom: 1px solid #edf1f2;
overflow: hidden;
padding-bottom: 20px;
padding-top: 20px;
}
.course_note .notelist_headpic {
float: left;
margin-left: 24px;
width: 40px;
}
.course_note .notelist_headpic a {
display: block;
height: 100%;
border-radius: 20px;
overflow: hidden;
}
.course_note .notelist_headpic img {
display: block;
width: 40px;
}
.course_note .notelist_content {
margin-left: 84px;
margin-right: 24px;
}
.course_note .u_name {
line-height: 20px;
height: 20px;
margin-bottom: 10px;
}
.course_note .u_name a {
font-size: 12px;
color: #14191e;
font-weight: 700;
}
.course_note .notelist-content {
position: relative;
max-height: 168px;
overflow: hidden;
}
.course_note .notelist-content pre {
font-size: 14px;
line-height: 28px;
color: #14191e;
white-space: pre-wrap;
word-break: break-all;
background: none;
border: none;
}
.notelist-bottom {
margin-top: 15px;
color: #93999f;
font-size: 12px;
}
.notelist-bottom .notelist-actions {
float: right;
}
.notelist-actions>a {
color: #93999f;
display: inline-block;
font-size: 16px;
margin: 0 10px;
}
.notelist-actions>a.fa-star:hover,
.notelist-actions>a.fa-star.on {
color: #f9e559;
}
.notelist-actions>a.fa-heart:hover,
.notelist-actions>a.fa-heart.on {
color: #da0013;
}
.notelist-actions>a em {
color: #93999f;
padding: 0 3px;
font-size: 12px;
line-height: 16px;
}
.course-sidebar h4 {
position: relative;
font-size: 16px;
font-weight: 700;
line-height: 24px;
color: #07111b;
}
.notelist-bottom .from {
color: #93999f;
font-size: 12px;
margin-left: 28px;
}
.course-sidebar .mb40 {
margin-bottom: 28px;
padding: 0 24px 24px;
border-bottom: 1px solid #d9dde1;
}
.all-attention-box {
padding: 0 0 24px 24px !important;
}
/* Search */
.search-main {
background-color: #fff;
}
.search-header {
position: absolute;
padding-left: 90px;
}
.search-banner {
background-color: #f1f2f3;
}
.search-banner .search-input-group {
padding: 35px 20%;
height: 50px;
}
.search-banner .search-input-group .input-wrap {
position: relative;
}
.search-banner .search-input-group .form-control {
height: 50px;
border: none;
padding-right: 50px;
font-size: 16px;
color: #000;
border-top-left-radius: 4px !important;
border-bottom-left-radius: 4px !important;
}
.search-banner .search-input-group .btn {
height: 50px;
width: 120px;
border: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.search-main .search-body {
width: 1000px;
margin: 0 auto;
}
.search-main .search-nav-warp {
text-align: center;
}
.search-main .search-nav {
display: inline-block;
padding: 36px 0 32px;
line-height: 16px;
}
.search-main .search-nav a {
font-size: 16px;
color: #4d555d;
margin-left: 80px;
}
.search-main .search-nav a.active,
.search-main .search-nav a:active {
color: #2c7c7d;
}
.search-main .search-related {
height: 40px;
line-height: 40px;
font-size: 12px;
color: #93999f;
padding-left: 24px;
background-color: #f3f5f7;
}
.search-main .search-title {
padding: 12px 0 12px 24px;
line-height: 24px;
font-size: 16px;
color: #07111b;
font-weight: 700;
border-bottom: 1px solid #d9dde1;
}
.search-main .course-item {
padding: 24px;
}
.course-item,
.wenda-item {
border-bottom: 1px solid #d9dde1;
overflow: hidden;
}
.course-item .course-item-left {
float: left;
width: 210px;
margin-right: 24px;
}
.course-item .course-item-left a,
.course-item .course-item-left img {
display: block;
width: 210px;
}
.course-item .course-item-right {
float: right;
width: 558px;
min-height: 120px;
}
.course-item .course-item-title {
color: #07111b;
height: 32px;
line-height: 32px;
}
.course-item .course-item-title .type {
font-size: 14px;
margin-right: 6px;
line-height: 32px;
}
.course-item .course-item-title a {
font-size: 16px;
color: #07111b;
font-weight: 700;
}
.search-main .highlight,
.search-main .relation {
color: #f01414 !important;
}
.course-item .tag {
height: 16px;
line-height: 0;
padding: 16px 0;
}
.course-item .tag span,
.course-item .tag strong {
float: left;
font-size: 12px;
color: #93999f;
}
.search-main .content {
word-break: break-all;
}
.search-main .href-warp {
line-height: 18px;
font-size: 14px;
padding-top: 22px;
text-align: center;
}
.search-main .href-warp a {
color: #006fdc;
}
.wenda-item {
padding: 24px;
}
.wenda-item .wenda-item-title {
font-size: 16px;
color: #07111b;
margin-bottom: 20px;
}
.wenda-item .wenda-item-title a {
color: #07111b;
font-weight: 700;
}
.wenda-item .wenda-item-top {
font-size: 14px;
margin-bottom: 10px;
height: 20px;
line-height: 20px;
}
.wenda-item .wenda-item-top .name {
font-weight: 700;
color: #4d555d;
margin-right: 5px;
}
.wenda-item .wenda-item-top a,
.wenda-item .wenda-item-top span {
float: left;
color: #07111b;
}
.wenda-item .content {
font-size: 14px;
color: #4d555d;
line-height: 28px;
}
.article-item {
padding: 24px;
overflow: hidden;
border-bottom: 1px solid #d9dde1;
}
.article-item .article-item-title {
font-size: 16px;
color: #07111b;
margin-bottom: 20px;
}
.article-item .article-item-title a {
color: #07111b;
font-weight: 700;
}
.article-item .article-img-warp {
position: relative;
padding-left: 234px;
min-height: 130px;
}
.article-item .article-img-warp img {
position: absolute;
left: 0;
top: 0;
width: 210px;
height: 130px;
}
/* Footer */
.footer {
width: 100%;
padding: 30px 0;
background-color: #f8fafc;
color: #99a1a6;
font-size: 12px;
text-align: left;
margin-top: 8px;
line-height: 24px;
}
.footer a {
color: #99a1a6;
line-height: 28px;
display: inline-block;
margin-right: 10px;
font-size: 14px;
}
.footer .container {
max-width: 1200px;
width: 100%;
padding: 10px 0;
border-top: 1px solid #d5d5d5;
}
.footer-copyright {
margin: 10px 0;
}
/*GoTo Top*/
.elevator {
z-index: 899;
}
.elevator {
position: fixed;
padding: 0 16px;
bottom: 150px;
margin-top: 100px;
right: 0;
z-index: 999;
background-color: #fff;
box-shadow: 0 4px 12px 0 rgba(7, 17, 27, .1);
}
.elevator a {
display: block;
width: 26px;
padding: 16px 0;
font-size: 22px;
line-height: 20px;
color: #b5b9bc;
box-sizing: border-box;
text-align: center;
border-bottom: 1px solid #edf1f2;
}
.elevator a:hover {
color: #14191e;
}
.elevator .elevator-app:hover i,
.elevator .elevator-faq:hover i,
.elevator .elevator-msg:hover i,
.elevator .elevator-top:hover i,
.elevator .elevator-weixin:hover i {
display: none;
}
.elevator .elevator-app:hover span,
.elevator .elevator-faq:hover span,
.elevator .elevator-msg:hover span,
.elevator .elevator-top:hover span,
.elevator .elevator-weixin:hover span {
display: block;
}
.elevator a i:hover {
color: #14191e;
}
.elevator a span {
display: none;
font-size: 12px;
color: #07111b;
line-height: 12px;
}
/*楼梯APP*/
.elevator .elevator-app-box {
position: absolute;
width: 172px;
height: 212px;
bottom: -2px;
right: 56px;
-webkit-transition: opacity .25s, transform .3s;
-moz-transition: opacity .25s, transform .3s;
transition: opacity .25s, transform .3s;
opacity: 0;
filter: alpha(opacity=0);
max-width: 0;
-webkit-transform: scale(.01);
-ms-transform: scale(.01);
transform: scale(.01);
-webkit-transform-origin: 100% 95%;
-ms-transform-origin: 100% 95%;
transform-origin: 100% 95%;
background: url(../img/gototop/elevator.png?t=2) 0 -220px no-repeat;
}
.elevator .elevator-app:hover .elevator-app-box {
display: block;
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
max-width: none;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
/*楼梯微信*/
.elevator .elevator-weixin:hover .elevator-weixin-box {
display: block;
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
max-width: none;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.elevator .elevator-weixin-box {
position: absolute;
width: 172px;
height: 212px;
bottom: -4px;
right: 56px;
-webkit-transition: opacity .25s, transform .3s;
-moz-transition: opacity .25s, transform .3s;
transition: opacity .25s, transform .3s;
opacity: 0;
filter: alpha(opacity=0);
max-width: 0;
-webkit-transform: scale(.01);
-ms-transform: scale(.01);
transform: scale(.01);
-webkit-transform-origin: 100% 95%;
-ms-transform-origin: 100% 95%;
transform-origin: 100% 95%;
background: url(../img/gototop/elevator.png?t=2) no-repeat;
}
[class*=" icon-"],
[class^=icon-] {
font-family: northme!important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-feedback:before {
content: "\e906";
}
.icon-ques:before {
content: "\e615";
}
.icon-appdownload:before {
content: "\e908";
}
.icon-wxgzh:before {
content: "\e907";
}
.icon-up2:before {
content: "\e904";
}
| 0.400867 | 0.149252 |
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
@-moz-keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
@-webkit-keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
/* slide in from the right */
@keyframes slideInRight {
from { transform:translateX(100%); }
to { transform: translateX(0); }
}
@-moz-keyframes slideInRight {
from { -moz-transform:translateX(100%); }
to { -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInRight {
from { -webkit-transform:translateX(100%); }
to { -webkit-transform: translateX(0); }
}
/* slide in from the left */
@keyframes slideInLeft {
from { transform:translateX(-100%); }
to { transform: translateX(0); }
}
@-moz-keyframes slideInLeft {
from { -moz-transform:translateX(-100%); }
to { -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInLeft {
from { -webkit-transform:translateX(-100%); }
to { -webkit-transform: translateX(0); }
}
/* slide in from the bottom */
@keyframes slideInUp {
from { transform:translateY(100%); }
to { transform: translateY(0); }
}
@-moz-keyframes slideInUp {
from { -moz-transform:translateY(100%); }
to { -moz-transform: translateY(0); }
}
@-webkit-keyframes slideInUp {
from { -webkit-transform:translateY(100%); }
to { -webkit-transform: translateY(0); }
}
.enter-left.ng-leave {
}
.enter-left.ng-enter {
-webkit-animation:fade-in 0.5s linear;
-moz-animation:fade-in 0.5s linear;
animation:fade-in 0.5s linear;
}
.enter-right.ng-leave {
}
.enter-right.ng-enter {
-webkit-animation:slideInRight 0.5s both ease-in;
-moz-animation:slideInRight 0.5s both ease-in;
animation:slideInRight 0.5s both ease-in;
}
.alert.ng-enter {
-webkit-animation:fade-in 0.5s linear;
-moz-animation:fade-in 0.5s linear;
animation:fade-in 0.5s linear;
}
.alert.ng-leave {
-webkit-animation:fade-out 0.5s linear;
-moz-animation:fade-out 0.5s linear;
animation:fade-out 0.5s linear;
}
|
css/animations.css
|
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
@-moz-keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
@-webkit-keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}
/* slide in from the right */
@keyframes slideInRight {
from { transform:translateX(100%); }
to { transform: translateX(0); }
}
@-moz-keyframes slideInRight {
from { -moz-transform:translateX(100%); }
to { -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInRight {
from { -webkit-transform:translateX(100%); }
to { -webkit-transform: translateX(0); }
}
/* slide in from the left */
@keyframes slideInLeft {
from { transform:translateX(-100%); }
to { transform: translateX(0); }
}
@-moz-keyframes slideInLeft {
from { -moz-transform:translateX(-100%); }
to { -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInLeft {
from { -webkit-transform:translateX(-100%); }
to { -webkit-transform: translateX(0); }
}
/* slide in from the bottom */
@keyframes slideInUp {
from { transform:translateY(100%); }
to { transform: translateY(0); }
}
@-moz-keyframes slideInUp {
from { -moz-transform:translateY(100%); }
to { -moz-transform: translateY(0); }
}
@-webkit-keyframes slideInUp {
from { -webkit-transform:translateY(100%); }
to { -webkit-transform: translateY(0); }
}
.enter-left.ng-leave {
}
.enter-left.ng-enter {
-webkit-animation:fade-in 0.5s linear;
-moz-animation:fade-in 0.5s linear;
animation:fade-in 0.5s linear;
}
.enter-right.ng-leave {
}
.enter-right.ng-enter {
-webkit-animation:slideInRight 0.5s both ease-in;
-moz-animation:slideInRight 0.5s both ease-in;
animation:slideInRight 0.5s both ease-in;
}
.alert.ng-enter {
-webkit-animation:fade-in 0.5s linear;
-moz-animation:fade-in 0.5s linear;
animation:fade-in 0.5s linear;
}
.alert.ng-leave {
-webkit-animation:fade-out 0.5s linear;
-moz-animation:fade-out 0.5s linear;
animation:fade-out 0.5s linear;
}
| 0.561455 | 0.147248 |
@media screen and (max-width:1680px){
.signin {padding: 231px 0;}
.signin.signup {padding: 153px 0px;}
}/*max-width:1680px*/
@media screen and (max-width:1440px){
.signin {padding: 160px 0;}
.signin.signup {padding:78px 0px;}
.signin.popup-in {padding: 81px 0;}
.signin.signup.popup-in.pop-up {padding: 30px 0;}
}/*max-width:1440px*/
@media screen and (max-width:1370px){
}/*max-width:1370px*/
@media screen and (max-width:1200px){
}/*max-width:1200px*/
@media screen and (max-width:1199px){
.signin.signup {padding:58px 0px;}
}/*max-width:1199px*/
@media screen and (max-width:1100px){
}/*max-width:1100px*/
@media screen and (max-width:1024px){
}/*max-width:1024px*/
@media screen and (max-width:992px){
}/*max-width:992px*/
@media screen and (max-width:991px){
.modal-dialog {width:700px;}
}/*max-width:991px*/
@media screen and (max-width:768px){
}/*max-width:768px*/
@media screen and (max-width:767px){
.btn.signin_btn,.btn.signin_btn:focus {max-width: 200px;}
.modal-dialog {width:auto;}
.signin-footer {text-align: center;}
}/*max-width:767px*/
@media screen and (max-width: 660px){
}/*max-width:660px*/
@media screen and (max-width: 640px){
}/*max-width:640px*/
@media screen and (max-width: 580px){
.modal-content .sign-content {max-width: 350px;margin: 0 auto;}
.modal-content .single-forgot-password-modal-circle {float: none;}
.popup-in-txt {max-width: 250px; margin: 0 auto;}
.popup-in-txt .unstyled li:last-child {float: none;}
.single-forgot-password-circle {float: none;}
}/*max-width:580px*/
@media screen and (max-width: 480px){
}/*max-width:480px*/
@media screen and (max-width: 440px){
.single-forgot-password-circle,.single-forgot-password-modal-circle {float: left;}
.modal-content .sign-content {max-width: 200px;margin: 0 auto;}
.single-password-modal-circle input[type="radio"] + label {font-size: 14px;}
.single-forgot-password-modal-circle.text-right a {font-size: 14px;}
}/*max-width:400px*/
@media screen and (max-width:350px){
}/*max-width:350px*/
@media screen and (max-width: 320px){
.popup-in-txt {max-width: 211px; margin: 0 auto;}
}/*max-width:320px*/
|
html/kangml_app/mode/assets/css/responsive.css
|
@media screen and (max-width:1680px){
.signin {padding: 231px 0;}
.signin.signup {padding: 153px 0px;}
}/*max-width:1680px*/
@media screen and (max-width:1440px){
.signin {padding: 160px 0;}
.signin.signup {padding:78px 0px;}
.signin.popup-in {padding: 81px 0;}
.signin.signup.popup-in.pop-up {padding: 30px 0;}
}/*max-width:1440px*/
@media screen and (max-width:1370px){
}/*max-width:1370px*/
@media screen and (max-width:1200px){
}/*max-width:1200px*/
@media screen and (max-width:1199px){
.signin.signup {padding:58px 0px;}
}/*max-width:1199px*/
@media screen and (max-width:1100px){
}/*max-width:1100px*/
@media screen and (max-width:1024px){
}/*max-width:1024px*/
@media screen and (max-width:992px){
}/*max-width:992px*/
@media screen and (max-width:991px){
.modal-dialog {width:700px;}
}/*max-width:991px*/
@media screen and (max-width:768px){
}/*max-width:768px*/
@media screen and (max-width:767px){
.btn.signin_btn,.btn.signin_btn:focus {max-width: 200px;}
.modal-dialog {width:auto;}
.signin-footer {text-align: center;}
}/*max-width:767px*/
@media screen and (max-width: 660px){
}/*max-width:660px*/
@media screen and (max-width: 640px){
}/*max-width:640px*/
@media screen and (max-width: 580px){
.modal-content .sign-content {max-width: 350px;margin: 0 auto;}
.modal-content .single-forgot-password-modal-circle {float: none;}
.popup-in-txt {max-width: 250px; margin: 0 auto;}
.popup-in-txt .unstyled li:last-child {float: none;}
.single-forgot-password-circle {float: none;}
}/*max-width:580px*/
@media screen and (max-width: 480px){
}/*max-width:480px*/
@media screen and (max-width: 440px){
.single-forgot-password-circle,.single-forgot-password-modal-circle {float: left;}
.modal-content .sign-content {max-width: 200px;margin: 0 auto;}
.single-password-modal-circle input[type="radio"] + label {font-size: 14px;}
.single-forgot-password-modal-circle.text-right a {font-size: 14px;}
}/*max-width:400px*/
@media screen and (max-width:350px){
}/*max-width:350px*/
@media screen and (max-width: 320px){
.popup-in-txt {max-width: 211px; margin: 0 auto;}
}/*max-width:320px*/
| 0.046736 | 0.05634 |
@media only screen and (min-width:960px) and (max-width:1160px) {
/* Layout
/* *************************** */
.container { width:948px; }
.container.no-box-shadow { width:940px; }
#main { width:600px; }
#main.full-width { width:940px; }
#main.full-width .no-box-shadow { width:100%; }
#top-bar .container { width:940px; }
#footer .container { width:940px; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next { max-width:283px; min-width:283px; }
#main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:453px; min-width:453px; }
/* Related Posts
/* *************************** */
.related-posts-item { margin-right:21px; width:166px; }
.related-posts-img { height:111px; }
#main.full-width .related-posts-item { margin-right:20px; width:280px; }
#main.full-width .related-posts-img { height:187px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older { max-width:283px; }
#main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:453px; }
}
@media only screen and (min-width:768px) and (max-width:959px) {
/* Layout
/* *************************** */
.container { width:756px; }
.container.no-box-shadow { width:748px; }
#main { margin-right:0; padding:4px 4px 0 4px; width:748px; }
#main.no-box-shadow { width:100%; padding:0; }
#main.full-width { width:748px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:748px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:748px; }
#footer .container { width:748px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:357px; min-width:357px; }
/* Related Posts
/* *************************** */
.related-posts-item, #main.full-width .related-posts-item { margin-right:20px; width:216px; }
.related-posts-img, #main.full-width .related-posts-img { height:144px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin-top:0; margin-left:13px; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:663px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:357px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { margin:0 auto; width:498px; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:auto; }
#sidebar .instagram-pics.instagram-size-small,
#sidebar .instagram-pics.instagram-size-original { margin:0 auto; width:650px; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:auto; }
#sidebar .instagram-pics.instagram-size-large { margin:0 auto; width:640px; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
}
@media only screen and (min-width:640px) and (max-width:767px) {
/* Layout
/* *************************** */
.container { width:628px; }
.container.no-box-shadow { width:620px; }
#main { margin-right:0; width:620px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:620px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:620px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:620px; }
#footer .container { width:620px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Header
/* *************************** */
.post-header { padding:30px 20px 0 20px; }
.post-category { margin-bottom:16px;}
.post-header h2, .post-header h1 { margin-top:-6px; max-width:100%; }
.post-header h2 a, .post-header h1 { font-size:22px; }
/* Post Img
/* *************************** */
.post-img { padding:0 20px; }
/* Post Content
/* *************************** */
.post-content { padding:0 20px 2px 20px; }
/* Post Footer
/* *************************** */
.post-footer { padding-left:20px; padding-right:20px; }
/* Post Author
/* *************************** */
#post-author { padding:30px 20px; }
.post-author-img img { height:80px; width:80px; }
.post-author-content { -webkit-width:calc(100% - 110px); -moz-width:calc(100% - 110px); width:calc(100% - 110px); }
/* Post Pagination
/* *************************** */
#post-pagination a { padding-left:20px; padding-right:20px; }
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:293px; min-width:293px; }
/* Related Posts
/* *************************** */
#related-posts { padding-left:20px; padding-right:20px; }
.related-posts-item, #main.full-width .related-posts-item { margin-right:20px; width:180px; }
.related-posts-img, #main.full-width .related-posts-img { height:120px; }
/* Comments
/* *************************** */
#comments { padding-left:20px; padding-right:20px; }
/* Archive Box / None / 404 Page
/* *************************** */
#archive-box, #post-none, #error-page { padding-left:20px; padding-right:20px; }
#archive-box h1, #post-none h1 { font-size:22px; margin-top:4px; }
#archive-box h1, #post-none h1 { margin-top:-6px; }
/* Widgets
/* *************************** */
.widget { padding-right:20px; padding-left:20px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:0 0 0 11px; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:555px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:293px; }
/* Headings
/* *************************** */
.post-content h1, .com-comment-content h1 { font-size:22px; }
.post-content h2, .com-comment-content h2 { font-size:20px; }
.post-content h3, .com-comment-content h3 { font-size:17px; }
.post-content h4, .com-comment-content h4 { font-size:16px; }
.post-content h5, .com-comment-content h5 { font-size:14px; }
.post-content h6, .com-comment-content h6 { font-size:13px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { margin:0 auto; width:500px; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:auto; }
#sidebar .instagram-pics.instagram-size-small, #sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li, #sidebar .instagram-pics.instagram-size-original li { width:49.2%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
}
@media only screen and (max-width:639px) {
/* Layout
/* *************************** */
.container { width:308px; }
.container.no-box-shadow { width:300px; }
#main { margin-right:0; width:300px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:300px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:300px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:300px; }
#footer .container { width:300px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Header
/* *************************** */
.post-header { padding:30px 20px 0 20px; }
.post-category { margin-bottom:16px;}
.post-header h2, .post-header h1 { margin:-5px 0 1px 0; max-width:100%; }
.post-header h2 a, .post-header h1 { font-size:18px; }/*
/* Post Img
/* *************************** */
.post-img { padding:0 20px; margin-top:18px; }
/* Gallery Post: Direction Controls
/* *************************** */
.bx-wrapper .bx-prev { left:10px; }
.bx-wrapper .bx-next { right:10px; }
/* Post Content
/* *************************** */
.post-content { padding:0 20px 2px 20px; }
/* Post Footer
/* *************************** */
.post-footer { padding:0 20px 0 20px; }
.post-footer.no-meta { padding-bottom:42px; }
.page .post-footer { padding-bottom:42px; }
/* Post Meta
/* *************************** */
.post-meta { margin-bottom:28px; width:100%; }
/* Post Share
/* *************************** */
.post-share { float:right; margin:-14px 0 28px 0; text-align:left; width:100%; }
.post-share.no-meta { margin-top:0; }
.page .post-share { margin-top:0; }
/* Post Author
/* *************************** */
#post-author { padding:30px 20px; }
.post-author-img img { width:60px; height:60px; }
.post-author-content { -webkit-width:calc(100% - 90px); -moz-width:calc(100% - 90px); width:calc(100% - 90px); }
.post-author-social a:nth-child(7), .post-author-social a:nth-child(8), .post-author-social a:nth-child(9), .post-author-social a:nth-child(10), .post-author-social a:nth-child(11), .post-author-social a:nth-child(12), .post-author-social a:nth-child(13) { margin-top:14px; }
/* Post Pagination
/* *************************** */
#post-pagination a { letter-spacing:1px; padding-left:20px; padding-right:20px; }
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:148px; min-width:148px; }
/* Related Posts
/* *************************** */
#related-posts { padding-bottom:28px; padding-left:20px; padding-right:20px; }
.related-posts-item, #main.full-width .related-posts-item { margin:0 0 24px 0; width:100%; }
.related-posts-item:last-child, #main.full-width .related-posts-item:last-child { margin-bottom:0; }
.related-posts-img, #main.full-width .related-posts-img { height:173px; }
/* Comments
/* *************************** */
#comments { padding-left:20px; padding-right:20px; }
.comments-list .children { margin:0 0 0 25px; }
/* Comments Respond
/* *************************** */
#reply-title #cancel-comment-reply-link { font-size:9px; }
.comment-form-author input, .comment-form-email input, .comment-form-url input { -webkit-width:calc(100% - 87px); -moz-width:calc(100% - 87px); width:calc(100% - 87px); }
/* Archive Box / None / 404 Page
/* *************************** */
#archive-box, #post-none, #error-page { padding-left:20px; padding-right:20px; }
#archive-box h1, #post-none h1 { font-size:18px; }
#archive-box h1{ margin:-5px 0 -7px 0; }
#post-none h1 { margin:-5px 0 10px 0; }
#post-none .search-input, #error-page .search-input { background-position:235px 13px; width:100%; }
/* Widgets
/* *************************** */
.widget { padding-left:20px; padding-right:20px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:14px 0 0 0; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:235px 13px; }
/* Footer
/* *************************** */
#footer-text { padding-top:19px; }
#footer-text.no-social-no-back-to-top { padding-top:26px; }
.footer-text-copyright, .footer-text-back-to-top { text-align:center; width:100%; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:149px; }
/* Headings
/* *************************** */
.post-content h1, .com-comment-content h1 { font-size:18px; }
.post-content h2, .com-comment-content h2 { font-size:17px; }
.post-content h3, .com-comment-content h3 { font-size:16px; }
.post-content h4, .com-comment-content h4 { font-size:15px; }
.post-content h5, .com-comment-content h5 { font-size:14px; }
.post-content h6, .com-comment-content h6 { font-size:13px; }
/* Instagram Widget / Instagram Footer
/* *************************** */
#sidebar .instagram-pics.instagram-size-small, #sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li, #sidebar .instagram-pics.instagram-size-original li { width:49.2%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:30.8%; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:48.1%; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
#instagram-footer .instagram-pics li { width:20%; }
#instagram-footer .instagram-pics li:nth-child(6), #instagram-footer .instagram-pics li:nth-child(7), #instagram-footer .instagram-pics li:nth-child(8), #instagram-footer .instagram-pics li:nth-child(9), #instagram-footer .instagram-pics li:nth-child(10), #instagram-footer .instagram-pics li:nth-child(11), #instagram-footer .instagram-pics li:nth-child(12) { display:none; }
/* Contact Form 7
/* *************************** */
.wpcf7 input { width:100%; }
/* MailChimp for WordPress
/* *************************** */
.post-content .mc4wp-form { width:100%; }
}
@media only screen and (min-width:480px) and (max-width:639px) {
/* Layout
/* *************************** */
.container { width:468px; }
.container.no-box-shadow { width:460px; }
#main { margin-right:0; width:460px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:460px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:460px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:460px; }
#footer .container { width:460px; }
/* Gallery Post: Direction Controls
/* *************************** */
.bx-wrapper .bx-prev { left:15px; }
.bx-wrapper .bx-next { right:15px; }
/* Post Author
/* *************************** */
.post-author-social a:nth-child(7), .post-author-social a:nth-child(8), .post-author-social a:nth-child(9), .post-author-social a:nth-child(10), .post-author-social a:nth-child(11), .post-author-social a:nth-child(12), .post-author-social a:nth-child(13) { margin-top:0; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:213px; min-width:213px; }
/* Related Posts
/* *************************** */
.related-posts-img, #main.full-width .related-posts-img { height:280px; }
/* Comments Respond
/* *************************** */
#reply-title #cancel-comment-reply-link { font-size:10px; }
.comment-form-author input, .comment-form-email input, .comment-form-url input { -webkit-width:calc(77.9% - 87px); -moz-width:calc(77.9% - 87px); width:calc(77.9% - 87px); }
/* None / 404 Page
/* *************************** */
#post-none .search-input, #error-page .search-input { background-position:215px 13px; width:240px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:0 0 0 11px; }
.social-widget a:nth-child(11) { margin:14px 0 0 0; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:395px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:213px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { width:100%; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:31.9%; }
#sidebar .instagram-pics.instagram-size-small,
#sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:48.8%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
/* Contact Form 7
/* *************************** */
.wpcf7 input { width:240px; }
/* MailChimp for WordPress
/* *************************** */
.post-content .mc4wp-form { width:240px; }
}
|
web/newTheme/content/themes/css/responsive.css
|
@media only screen and (min-width:960px) and (max-width:1160px) {
/* Layout
/* *************************** */
.container { width:948px; }
.container.no-box-shadow { width:940px; }
#main { width:600px; }
#main.full-width { width:940px; }
#main.full-width .no-box-shadow { width:100%; }
#top-bar .container { width:940px; }
#footer .container { width:940px; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next { max-width:283px; min-width:283px; }
#main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:453px; min-width:453px; }
/* Related Posts
/* *************************** */
.related-posts-item { margin-right:21px; width:166px; }
.related-posts-img { height:111px; }
#main.full-width .related-posts-item { margin-right:20px; width:280px; }
#main.full-width .related-posts-img { height:187px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older { max-width:283px; }
#main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:453px; }
}
@media only screen and (min-width:768px) and (max-width:959px) {
/* Layout
/* *************************** */
.container { width:756px; }
.container.no-box-shadow { width:748px; }
#main { margin-right:0; padding:4px 4px 0 4px; width:748px; }
#main.no-box-shadow { width:100%; padding:0; }
#main.full-width { width:748px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:748px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:748px; }
#footer .container { width:748px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:357px; min-width:357px; }
/* Related Posts
/* *************************** */
.related-posts-item, #main.full-width .related-posts-item { margin-right:20px; width:216px; }
.related-posts-img, #main.full-width .related-posts-img { height:144px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin-top:0; margin-left:13px; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:663px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:357px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { margin:0 auto; width:498px; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:auto; }
#sidebar .instagram-pics.instagram-size-small,
#sidebar .instagram-pics.instagram-size-original { margin:0 auto; width:650px; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:auto; }
#sidebar .instagram-pics.instagram-size-large { margin:0 auto; width:640px; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
}
@media only screen and (min-width:640px) and (max-width:767px) {
/* Layout
/* *************************** */
.container { width:628px; }
.container.no-box-shadow { width:620px; }
#main { margin-right:0; width:620px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:620px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:620px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:620px; }
#footer .container { width:620px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Header
/* *************************** */
.post-header { padding:30px 20px 0 20px; }
.post-category { margin-bottom:16px;}
.post-header h2, .post-header h1 { margin-top:-6px; max-width:100%; }
.post-header h2 a, .post-header h1 { font-size:22px; }
/* Post Img
/* *************************** */
.post-img { padding:0 20px; }
/* Post Content
/* *************************** */
.post-content { padding:0 20px 2px 20px; }
/* Post Footer
/* *************************** */
.post-footer { padding-left:20px; padding-right:20px; }
/* Post Author
/* *************************** */
#post-author { padding:30px 20px; }
.post-author-img img { height:80px; width:80px; }
.post-author-content { -webkit-width:calc(100% - 110px); -moz-width:calc(100% - 110px); width:calc(100% - 110px); }
/* Post Pagination
/* *************************** */
#post-pagination a { padding-left:20px; padding-right:20px; }
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:293px; min-width:293px; }
/* Related Posts
/* *************************** */
#related-posts { padding-left:20px; padding-right:20px; }
.related-posts-item, #main.full-width .related-posts-item { margin-right:20px; width:180px; }
.related-posts-img, #main.full-width .related-posts-img { height:120px; }
/* Comments
/* *************************** */
#comments { padding-left:20px; padding-right:20px; }
/* Archive Box / None / 404 Page
/* *************************** */
#archive-box, #post-none, #error-page { padding-left:20px; padding-right:20px; }
#archive-box h1, #post-none h1 { font-size:22px; margin-top:4px; }
#archive-box h1, #post-none h1 { margin-top:-6px; }
/* Widgets
/* *************************** */
.widget { padding-right:20px; padding-left:20px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:0 0 0 11px; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:555px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:293px; }
/* Headings
/* *************************** */
.post-content h1, .com-comment-content h1 { font-size:22px; }
.post-content h2, .com-comment-content h2 { font-size:20px; }
.post-content h3, .com-comment-content h3 { font-size:17px; }
.post-content h4, .com-comment-content h4 { font-size:16px; }
.post-content h5, .com-comment-content h5 { font-size:14px; }
.post-content h6, .com-comment-content h6 { font-size:13px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { margin:0 auto; width:500px; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:auto; }
#sidebar .instagram-pics.instagram-size-small, #sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li, #sidebar .instagram-pics.instagram-size-original li { width:49.2%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
}
@media only screen and (max-width:639px) {
/* Layout
/* *************************** */
.container { width:308px; }
.container.no-box-shadow { width:300px; }
#main { margin-right:0; width:300px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:300px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:300px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:300px; }
#footer .container { width:300px; }
/* Menu
/* *************************** */
.menu { display:none; }
.slicknav_menu { display:block; }
/* Post Header
/* *************************** */
.post-header { padding:30px 20px 0 20px; }
.post-category { margin-bottom:16px;}
.post-header h2, .post-header h1 { margin:-5px 0 1px 0; max-width:100%; }
.post-header h2 a, .post-header h1 { font-size:18px; }/*
/* Post Img
/* *************************** */
.post-img { padding:0 20px; margin-top:18px; }
/* Gallery Post: Direction Controls
/* *************************** */
.bx-wrapper .bx-prev { left:10px; }
.bx-wrapper .bx-next { right:10px; }
/* Post Content
/* *************************** */
.post-content { padding:0 20px 2px 20px; }
/* Post Footer
/* *************************** */
.post-footer { padding:0 20px 0 20px; }
.post-footer.no-meta { padding-bottom:42px; }
.page .post-footer { padding-bottom:42px; }
/* Post Meta
/* *************************** */
.post-meta { margin-bottom:28px; width:100%; }
/* Post Share
/* *************************** */
.post-share { float:right; margin:-14px 0 28px 0; text-align:left; width:100%; }
.post-share.no-meta { margin-top:0; }
.page .post-share { margin-top:0; }
/* Post Author
/* *************************** */
#post-author { padding:30px 20px; }
.post-author-img img { width:60px; height:60px; }
.post-author-content { -webkit-width:calc(100% - 90px); -moz-width:calc(100% - 90px); width:calc(100% - 90px); }
.post-author-social a:nth-child(7), .post-author-social a:nth-child(8), .post-author-social a:nth-child(9), .post-author-social a:nth-child(10), .post-author-social a:nth-child(11), .post-author-social a:nth-child(12), .post-author-social a:nth-child(13) { margin-top:14px; }
/* Post Pagination
/* *************************** */
#post-pagination a { letter-spacing:1px; padding-left:20px; padding-right:20px; }
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:148px; min-width:148px; }
/* Related Posts
/* *************************** */
#related-posts { padding-bottom:28px; padding-left:20px; padding-right:20px; }
.related-posts-item, #main.full-width .related-posts-item { margin:0 0 24px 0; width:100%; }
.related-posts-item:last-child, #main.full-width .related-posts-item:last-child { margin-bottom:0; }
.related-posts-img, #main.full-width .related-posts-img { height:173px; }
/* Comments
/* *************************** */
#comments { padding-left:20px; padding-right:20px; }
.comments-list .children { margin:0 0 0 25px; }
/* Comments Respond
/* *************************** */
#reply-title #cancel-comment-reply-link { font-size:9px; }
.comment-form-author input, .comment-form-email input, .comment-form-url input { -webkit-width:calc(100% - 87px); -moz-width:calc(100% - 87px); width:calc(100% - 87px); }
/* Archive Box / None / 404 Page
/* *************************** */
#archive-box, #post-none, #error-page { padding-left:20px; padding-right:20px; }
#archive-box h1, #post-none h1 { font-size:18px; }
#archive-box h1{ margin:-5px 0 -7px 0; }
#post-none h1 { margin:-5px 0 10px 0; }
#post-none .search-input, #error-page .search-input { background-position:235px 13px; width:100%; }
/* Widgets
/* *************************** */
.widget { padding-left:20px; padding-right:20px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:14px 0 0 0; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:235px 13px; }
/* Footer
/* *************************** */
#footer-text { padding-top:19px; }
#footer-text.no-social-no-back-to-top { padding-top:26px; }
.footer-text-copyright, .footer-text-back-to-top { text-align:center; width:100%; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:149px; }
/* Headings
/* *************************** */
.post-content h1, .com-comment-content h1 { font-size:18px; }
.post-content h2, .com-comment-content h2 { font-size:17px; }
.post-content h3, .com-comment-content h3 { font-size:16px; }
.post-content h4, .com-comment-content h4 { font-size:15px; }
.post-content h5, .com-comment-content h5 { font-size:14px; }
.post-content h6, .com-comment-content h6 { font-size:13px; }
/* Instagram Widget / Instagram Footer
/* *************************** */
#sidebar .instagram-pics.instagram-size-small, #sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li, #sidebar .instagram-pics.instagram-size-original li { width:49.2%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:30.8%; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:48.1%; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
#instagram-footer .instagram-pics li { width:20%; }
#instagram-footer .instagram-pics li:nth-child(6), #instagram-footer .instagram-pics li:nth-child(7), #instagram-footer .instagram-pics li:nth-child(8), #instagram-footer .instagram-pics li:nth-child(9), #instagram-footer .instagram-pics li:nth-child(10), #instagram-footer .instagram-pics li:nth-child(11), #instagram-footer .instagram-pics li:nth-child(12) { display:none; }
/* Contact Form 7
/* *************************** */
.wpcf7 input { width:100%; }
/* MailChimp for WordPress
/* *************************** */
.post-content .mc4wp-form { width:100%; }
}
@media only screen and (min-width:480px) and (max-width:639px) {
/* Layout
/* *************************** */
.container { width:468px; }
.container.no-box-shadow { width:460px; }
#main { margin-right:0; width:460px; }
#main.no-box-shadow { width:100%; }
#main.full-width { width:460px; }
#main.fullwidth .no-box-shadow { width:100%; }
#sidebar { display:inline-block; float:none; margin:0 auto; margin-top:-4px; width:460px; }
#sidebar.no-box-shadow { margin-top:0; width:100%; }
#top-bar .container { width:460px; }
#footer .container { width:460px; }
/* Gallery Post: Direction Controls
/* *************************** */
.bx-wrapper .bx-prev { left:15px; }
.bx-wrapper .bx-next { right:15px; }
/* Post Author
/* *************************** */
.post-author-social a:nth-child(7), .post-author-social a:nth-child(8), .post-author-social a:nth-child(9), .post-author-social a:nth-child(10), .post-author-social a:nth-child(11), .post-author-social a:nth-child(12), .post-author-social a:nth-child(13) { margin-top:0; }
/* Post Pagination
/* *************************** */
.post-pagination-prev, .post-pagination-next, #main.full-width .post-pagination-prev, #main.full-width .post-pagination-next { max-width:213px; min-width:213px; }
/* Related Posts
/* *************************** */
.related-posts-img, #main.full-width .related-posts-img { height:280px; }
/* Comments Respond
/* *************************** */
#reply-title #cancel-comment-reply-link { font-size:10px; }
.comment-form-author input, .comment-form-email input, .comment-form-url input { -webkit-width:calc(77.9% - 87px); -moz-width:calc(77.9% - 87px); width:calc(77.9% - 87px); }
/* None / 404 Page
/* *************************** */
#post-none .search-input, #error-page .search-input { background-position:215px 13px; width:240px; }
/* Social Icons Widget
/* *************************** */
.social-widget a:nth-child(7), .social-widget a:nth-child(13) { margin:0 0 0 11px; }
.social-widget a:nth-child(11) { margin:14px 0 0 0; }
/* WordPress Search Widget
/* *************************** */
.widget_search .search-input { background-position:395px 13px; }
/* Blog Pagination
/* *************************** */
.blog-pagination-newer, .blog-pagination-older, #main.full-width .blog-pagination-newer, #main.full-width .blog-pagination-older { max-width:213px; }
/* Instagram Widget
/* *************************** */
#sidebar .instagram-pics.instagram-size-thumbnail { width:100%; }
#sidebar .instagram-pics.instagram-size-thumbnail li { width:31.9%; }
#sidebar .instagram-pics.instagram-size-small,
#sidebar .instagram-pics.instagram-size-original { width:100%; }
#sidebar .instagram-pics.instagram-size-small li,
#sidebar .instagram-pics.instagram-size-original li { width:48.8%; }
#sidebar .instagram-pics.instagram-size-large { width:100%; }
#sidebar .instagram-pics.instagram-size-large li { width:auto; }
/* Contact Form 7
/* *************************** */
.wpcf7 input { width:240px; }
/* MailChimp for WordPress
/* *************************** */
.post-content .mc4wp-form { width:240px; }
}
| 0.146209 | 0.081301 |
.continuar a.active{
display: block;
}
.unity img.active {
filter: none;
border: .2rem solid var(--orange);
border-radius: .5rem;
}
.unity textarea.active {
color: var(--orange);
font-weight: 600;
}
/********** HEADER **********/
header{
width: 100vw;
z-index: 2;
}
.header{
display: flex;
width: 100%;
height: 5rem;
background-color: var(--blue-black);
align-items: center;
justify-content: space-between;
}
.menu{
display: none;
}
.header img {
width: 10rem;
margin-left: 1rem;
cursor: pointer;
}
.header .profile-info {
display: flex;
flex-direction: row;
align-items: center;
}
.header .profile-info p {
margin-right: 1.5rem;
font-weight: 500;
color: var(--grey-light);
}
.header .profile-info img{
width: 3rem;
height: 3rem;
border-radius: 50%;
margin-right: 1rem;
}
/********** CONTEÚDO PRINCIPAL **********/
.second-container{
display: flex;
justify-content: center;
background-color: var(--white);
font-weight: 500;
height: 100vh;
}
.ocupacao {
display: flex;
justify-content:center;
color: #002A33;
font-size: 18px;
align-items: center;
height: 80px;
font-style: normal;
font-weight: bold;
margin-bottom: 10px;
}
.wrapper{
align-items:center;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 5px;
}
.unity-container {
display: flex;
flex-direction:row ;
align-items:center;
justify-content: space-around;
width: 96vw;
margin-bottom: 10px;
}
.unity {
display: flex;
flex-direction: column ;
margin-right: .5rem;
}
.unity:hover {
color: var(--orange);
font-size: 1.1rem ;
}
.unity img {
filter: grayscale(100%);
transition: .1s;
}
.unity img,
.unity textarea {
width: 9rem;
}
.unity textarea{
margin:auto;
margin-top: .5rem;
resize: none;
text-align: center;
font-size: 1rem;
}
.data{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 5px;
}
.input-selector{
display: flex;
align-items:center;
margin-top: 5px;
margin-left: 5px;
}
.input-selector input {
padding: 5px;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
border-radius: .5rem;
}
.continuar {
display: flex;
align-items:center;
justify-content:center;
margin-top: 40px;
}
.continuar a {
display: none;
padding: 1.1rem 2.9rem 1.1rem 2.9rem;
color: var(--white);
background-color: var(--orange);
border: 1px solid var(--orange);
font-size: 1.8rem;
border-radius: .5rem;
}
/********** FOOTER **********/
footer .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
bottom: 0;
width: 100vw;
height: 4.6rem;
background-color: var(--blue-black);
z-index: 2;
}
footer .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
footer .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
footer .nav-bar div a img {
width: 1.8rem;
height: 1.7rem;
}
/********** BREAKPOINTS **********/
/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 340px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.view {
display: none;
}
.unity-container {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 10px;
justify-content: center;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 155px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 155px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 155px;
}
.unity img, .unity textarea {
width: 15rem;
padding: .5rem;
}
.continuar {
margin-top: 40px;
}
.menu{
display: flex;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 24px;
margin-right: 5px;
width: 12.8vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
.menu .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.menu .nav-bar span{
margin-bottom: 30px;
}
.menu .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
.menu .nav-bar div a img {
width: 3.8rem;
height: 3.7rem;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.unity textarea {
margin: auto;
resize: none;
text-align: center;
font-size: 1.9rem;
}
.continuar {
margin-top: -10px;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 24px;
margin-right: 5px;
width: 9.9vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
}
@media only screen and (min-width: 1200px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 255px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 255px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 255px;
}
}
@media only screen and (min-width: 1800px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 545px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 545px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 545px;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1920px) {
.view {
display: none;
}
header{
display: flex;
background-color: var(--blue-black);
justify-content: center;
}
.header{
display: flex;
width: 1200px;
height: 7rem;
align-items: center;
justify-content: space-between;
}
.header img {
width: 15rem;
}
.header .profile-info p{
font-size: 20px;
}
.second-container{
display: flex;
justify-content: center;
background-color: var(--white);
font-weight: 500;
}
.ocupacao {
display: flex;
justify-content:center;
color: #002A33;
font-size: 20px;
align-items: center;
height: 100px;
font-style: normal;
font-weight: bold;
}
.wrapper h1{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 20px;
line-height: 17px;
margin-bottom: 10px;
margin-left: -40px;
}
.unity-container {
display: flex;
width: 800px;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
margin-bottom: 30px;
}
.unity img, .unity textarea {
width: 30rem;
padding: .5rem;
}
.unity textarea {
margin: auto;
resize: none;
text-align: center;
font-size: 2rem;
}
.data{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 20px;
line-height: 17px;
margin-top: 30px;
margin-bottom: 10px;
margin-left: -40px;
}
.input-selector{
display: flex;
align-items:center;
margin-left: -40px;
}
.input-selector input {
width: 18rem;
padding: 5px;
height: 5rem;
margin-top: 10px;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 1.1rem;
border-radius: .5rem;
}
.continuar {
display: none;
}
.continuar button{
margin-top: 10px;
padding: 5px;
height: 4.5rem;
width: 25rem;
line-height: 1.4rem;
color: var(--white);
background-color: var(--orange);
border: 1px solid var(--orange);
margin-right: 1rem;
font-size: 2.5rem;
border-radius: .5rem;
}
.input-selector select {
width: 12rem;
height: 3.5rem;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 1.1rem;
border-radius: .5rem;
}
.menu{
display: flex;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 35px;
margin-right: 365px;
width: 5.8vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
.menu .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.menu .nav-bar span{
margin-bottom: 30px;
}
.menu .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
.menu .nav-bar div a img {
width: 3.8rem;
height: 3.7rem;
}
.input-selector select {
width: 30rem;
height: 3.5rem;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 2.1rem;
border-radius: .5rem;
}
}
|
public/styles/home.css
|
.continuar a.active{
display: block;
}
.unity img.active {
filter: none;
border: .2rem solid var(--orange);
border-radius: .5rem;
}
.unity textarea.active {
color: var(--orange);
font-weight: 600;
}
/********** HEADER **********/
header{
width: 100vw;
z-index: 2;
}
.header{
display: flex;
width: 100%;
height: 5rem;
background-color: var(--blue-black);
align-items: center;
justify-content: space-between;
}
.menu{
display: none;
}
.header img {
width: 10rem;
margin-left: 1rem;
cursor: pointer;
}
.header .profile-info {
display: flex;
flex-direction: row;
align-items: center;
}
.header .profile-info p {
margin-right: 1.5rem;
font-weight: 500;
color: var(--grey-light);
}
.header .profile-info img{
width: 3rem;
height: 3rem;
border-radius: 50%;
margin-right: 1rem;
}
/********** CONTEÚDO PRINCIPAL **********/
.second-container{
display: flex;
justify-content: center;
background-color: var(--white);
font-weight: 500;
height: 100vh;
}
.ocupacao {
display: flex;
justify-content:center;
color: #002A33;
font-size: 18px;
align-items: center;
height: 80px;
font-style: normal;
font-weight: bold;
margin-bottom: 10px;
}
.wrapper{
align-items:center;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 5px;
}
.unity-container {
display: flex;
flex-direction:row ;
align-items:center;
justify-content: space-around;
width: 96vw;
margin-bottom: 10px;
}
.unity {
display: flex;
flex-direction: column ;
margin-right: .5rem;
}
.unity:hover {
color: var(--orange);
font-size: 1.1rem ;
}
.unity img {
filter: grayscale(100%);
transition: .1s;
}
.unity img,
.unity textarea {
width: 9rem;
}
.unity textarea{
margin:auto;
margin-top: .5rem;
resize: none;
text-align: center;
font-size: 1rem;
}
.data{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 5px;
}
.input-selector{
display: flex;
align-items:center;
margin-top: 5px;
margin-left: 5px;
}
.input-selector input {
padding: 5px;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
border-radius: .5rem;
}
.continuar {
display: flex;
align-items:center;
justify-content:center;
margin-top: 40px;
}
.continuar a {
display: none;
padding: 1.1rem 2.9rem 1.1rem 2.9rem;
color: var(--white);
background-color: var(--orange);
border: 1px solid var(--orange);
font-size: 1.8rem;
border-radius: .5rem;
}
/********** FOOTER **********/
footer .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
bottom: 0;
width: 100vw;
height: 4.6rem;
background-color: var(--blue-black);
z-index: 2;
}
footer .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
footer .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
footer .nav-bar div a img {
width: 1.8rem;
height: 1.7rem;
}
/********** BREAKPOINTS **********/
/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 340px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.view {
display: none;
}
.unity-container {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 10px;
justify-content: center;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 155px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 155px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 155px;
}
.unity img, .unity textarea {
width: 15rem;
padding: .5rem;
}
.continuar {
margin-top: 40px;
}
.menu{
display: flex;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 24px;
margin-right: 5px;
width: 12.8vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
.menu .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.menu .nav-bar span{
margin-bottom: 30px;
}
.menu .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
.menu .nav-bar div a img {
width: 3.8rem;
height: 3.7rem;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.unity textarea {
margin: auto;
resize: none;
text-align: center;
font-size: 1.9rem;
}
.continuar {
margin-top: -10px;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 24px;
margin-right: 5px;
width: 9.9vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
}
@media only screen and (min-width: 1200px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 255px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 255px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 255px;
}
}
@media only screen and (min-width: 1800px) {
.unity img, .unity textarea {
width: 22rem;
padding: .5rem;
}
.wrapper h1 {
display: flex;
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 2px;
margin-left: 545px;
}
.data {
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-top: 15px;
margin-bottom: 10px;
margin-left: 545px;
}
.input-selector {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: 5px;
margin-left: 545px;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1920px) {
.view {
display: none;
}
header{
display: flex;
background-color: var(--blue-black);
justify-content: center;
}
.header{
display: flex;
width: 1200px;
height: 7rem;
align-items: center;
justify-content: space-between;
}
.header img {
width: 15rem;
}
.header .profile-info p{
font-size: 20px;
}
.second-container{
display: flex;
justify-content: center;
background-color: var(--white);
font-weight: 500;
}
.ocupacao {
display: flex;
justify-content:center;
color: #002A33;
font-size: 20px;
align-items: center;
height: 100px;
font-style: normal;
font-weight: bold;
}
.wrapper h1{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 20px;
line-height: 17px;
margin-bottom: 10px;
margin-left: -40px;
}
.unity-container {
display: flex;
width: 800px;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
margin-bottom: 30px;
}
.unity img, .unity textarea {
width: 30rem;
padding: .5rem;
}
.unity textarea {
margin: auto;
resize: none;
text-align: center;
font-size: 2rem;
}
.data{
font-style: normal;
color: #002A33;
font-weight: 600;
font-size: 20px;
line-height: 17px;
margin-top: 30px;
margin-bottom: 10px;
margin-left: -40px;
}
.input-selector{
display: flex;
align-items:center;
margin-left: -40px;
}
.input-selector input {
width: 18rem;
padding: 5px;
height: 5rem;
margin-top: 10px;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 1.1rem;
border-radius: .5rem;
}
.continuar {
display: none;
}
.continuar button{
margin-top: 10px;
padding: 5px;
height: 4.5rem;
width: 25rem;
line-height: 1.4rem;
color: var(--white);
background-color: var(--orange);
border: 1px solid var(--orange);
margin-right: 1rem;
font-size: 2.5rem;
border-radius: .5rem;
}
.input-selector select {
width: 12rem;
height: 3.5rem;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 1.1rem;
border-radius: .5rem;
}
.menu{
display: flex;
}
.menu .nav-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 0;
margin-top: 35px;
margin-right: 365px;
width: 5.8vw;
height: 35.6rem;
background-color: var(--orange);
z-index: 2;
}
.menu .nav-bar div {
width: 90vw;
margin-top: .2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.menu .nav-bar span{
margin-bottom: 30px;
}
.menu .nav-bar div a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--white);
}
.menu .nav-bar div a img {
width: 3.8rem;
height: 3.7rem;
}
.input-selector select {
width: 30rem;
height: 3.5rem;
line-height: 1.5rem;
font-weight: 500;
color: var(--grey);
background-color: var(--grey-light);
border: 1px solid var(--grey);
margin-right: 1rem;
font-size: 2.1rem;
border-radius: .5rem;
}
}
| 0.359252 | 0.13681 |
#fx-editor-navbar .dropdown-menu .col-sm-12 {
margin-bottom: 7px; }
/* Panel Title */
/* Form */
.fx-editor-modular-form-wrapper .panel {
background-color: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: white;
border-color: #d8d8d8;
border-image: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
border-style: solid;
border-width: 1px 1px 2px;
padding: 0px;
width: auto; }
.fx-editor-modular-form-wrapper .panel .panel-heading {
background-color: transparent; }
.fx-editor-modular-form-wrapper .panel .fx-panel-info {
margin-top: 10px; }
.form-horizontal .form-group {
margin-left: 0;
margin-right: 0; }
#fx-editor-form .form-horizontal .control-label {
text-align: left; }
#fx-editor-form {
/* Icon Position */ }
#fx-editor-form legend {
padding: 5px 0 0 10px;
margin-bottom: 0px;
background-color: #eeeeff; }
#fx-editor-form fieldset {
background-color: #eeeeff; }
#fx-editor-form .fnx-fieldset-2 {
background-color: #f3efe0; }
#fx-editor-form .fnx-fieldset-2 legend {
background-color: #f3efe0; }
#fx-editor-form .fnx-fieldset-2 .form-group {
padding-left: 20px; }
#fx-editor-form .fnx-fieldset-2 .fx-fieldset-subtitle {
padding-left: 16px; }
#fx-editor-form .fnx-fieldset-1 .form-group, #fx-editor-form .fnx-fieldset-2 .form-group {
margin-bottom: 0;
padding-bottom: 20px; }
#fx-editor-form .fx-panel-info {
float: right;
margin: 0; }
/* Icon Position */
#fx-editor-form .fx-panel-required, #fx-editor-form .fx-panel-ok, #fx-editor-form .fx-panel-remove, #fx-editor-form .fx-panel-refresh {
float: none;
margin: 0; }
/* Adjust feedback icon position */
#fx-editor-form .form-control-feedback {
top: 7px;
right: -15px; }
/* tags input picker */
.bootstrap-tagsinput {
/** problem in IE, placeholder is cut
font-size: 11px; **/ }
|
css/fenix-metadata-editor.css
|
#fx-editor-navbar .dropdown-menu .col-sm-12 {
margin-bottom: 7px; }
/* Panel Title */
/* Form */
.fx-editor-modular-form-wrapper .panel {
background-color: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: white;
border-color: #d8d8d8;
border-image: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
border-style: solid;
border-width: 1px 1px 2px;
padding: 0px;
width: auto; }
.fx-editor-modular-form-wrapper .panel .panel-heading {
background-color: transparent; }
.fx-editor-modular-form-wrapper .panel .fx-panel-info {
margin-top: 10px; }
.form-horizontal .form-group {
margin-left: 0;
margin-right: 0; }
#fx-editor-form .form-horizontal .control-label {
text-align: left; }
#fx-editor-form {
/* Icon Position */ }
#fx-editor-form legend {
padding: 5px 0 0 10px;
margin-bottom: 0px;
background-color: #eeeeff; }
#fx-editor-form fieldset {
background-color: #eeeeff; }
#fx-editor-form .fnx-fieldset-2 {
background-color: #f3efe0; }
#fx-editor-form .fnx-fieldset-2 legend {
background-color: #f3efe0; }
#fx-editor-form .fnx-fieldset-2 .form-group {
padding-left: 20px; }
#fx-editor-form .fnx-fieldset-2 .fx-fieldset-subtitle {
padding-left: 16px; }
#fx-editor-form .fnx-fieldset-1 .form-group, #fx-editor-form .fnx-fieldset-2 .form-group {
margin-bottom: 0;
padding-bottom: 20px; }
#fx-editor-form .fx-panel-info {
float: right;
margin: 0; }
/* Icon Position */
#fx-editor-form .fx-panel-required, #fx-editor-form .fx-panel-ok, #fx-editor-form .fx-panel-remove, #fx-editor-form .fx-panel-refresh {
float: none;
margin: 0; }
/* Adjust feedback icon position */
#fx-editor-form .form-control-feedback {
top: 7px;
right: -15px; }
/* tags input picker */
.bootstrap-tagsinput {
/** problem in IE, placeholder is cut
font-size: 11px; **/ }
| 0.223377 | 0.035377 |
.heapBox {
position: relative;
display: block;
min-width: 110px;
}
.section-line .heapBox {
display: inline-block;
width: 175px;
line-height: 1.3em;
}
.heapBox * {
margin: 0;
padding: 0;
outline: none;
list-style: none;
}
.heapBox.disabled .holder { color: #989898; }
.heapBox.disabled .handler { }
.heapBox a {
text-decoration: none;
color: #fff;
}
.heapBox .holder {
overflow: hidden;
display: block;
padding: 9px 10px;
width: 100%;
min-width: 75px;
border: 2px solid #e4e4e2;
background-color: #f5f7f8;
color: #696e6e;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all .25s ease;
transition: all .25s ease;
}
.select-small-size .heapBox .holder { padding: 3px 10px; }
.heapBox.open .holder { background-color: #fff; }
.heapBox .handler {
position: absolute;
top: 0;
right: 0;
z-index: 10;
display: block;
height: 100%;
}
.heapBox .handler:before {
position: absolute;
height: 27px;
right: 35px;
top: 9px;
margin-top: 0;
content: "";
border-left: 1px solid #e4e4e2;
}
.select-small-size .heapBox .handler:before { height: 14px; }
.heapBox .handler:after {
position: absolute;
right: 12px;
top: 50%;
display: inline-block;
margin-top: -10px;
content: "\f107";
font-family: fontawesome;
line-height: inherit;
font-size: 18px;
color: #292f38;
}
.heapBox.open .handler:after { content: "\f106"; }
.select-small-size .heapBox .handler:after { font-size: 15px; }
.heapBox div.heap {
position: absolute;
left: 0;
top: calc(100% - 1px);
overflow: hidden;
cursor: pointer;
z-index: 22;
display: none;
width: 100%;
background: #fff;
border-left: 2px solid #e4e4e2;
border-right: 2px solid #e4e4e2;
border-bottom: 2px solid #e4e4e2;
list-style-type: none;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.heapBox .heap .heapOptions {
display: block;
overflow: hidden;
z-index: 20;
position: relative;
}
.heapBox .heap a.sliderUp,
.heapBox .heap a.sliderDown {
position: absolute;
z-index: 30;
display: block;
width: 100%;
height: 20px;
background-color: #fff;
}
.heapBox .heap a.sliderUp {
top: 0;
border-bottom: 1px solid #e4e4e2;
}
.heapBox .heap a.sliderDown {
bottom: 0;
border-top: 1px solid #e4e4e2;
}
.heapBox .heap a.sliderUp:hover,
.heapBox .heap a.sliderDown:hover { background-color: #ecf0f1; }
.heapBox .heap a.sliderUp:after,
.heapBox .heap a.sliderDown:after {
display: block;
text-align: center;
font-family: 'fontawesome';
font-size: 18px;
line-height: 20px;
color: #292f38;
}
.heapBox .heap a.sliderUp:after { content: "\f106"; }
.heapBox .heap a.sliderDown:after { content: "\f107"; }
.heapBox .heap .heapOptions .heapOption { }
.heapBox .heap .heapOptions .heapOption a {
display: block;
padding: 7px 10px;
width: 100%;
background-color: #fff;
color: #6a6a6a;
-webkit-transition: color 1s ease, background-color 1s ease, box-shadow 1s ease;
transition: color 1s ease, background-color 1s ease, box-shadow 1s ease;
}
.select-small-size .heapBox .heap .heapOptions .heapOption a { padding: 3px 10px; }
.heapBox .heap .heapOptions .heapOption a:hover {
color: #000;
background-color: #ecf0f1;
-webkit-transition: color .1s ease, background-color .1s ease, box-shadow .1s ease;
transition: color .1s ease, background-color .1s ease, box-shadow .1s ease;
}
.heapBox .heap .heapOptions .heapOption a.selected {
color: #000;
background-color: #ecf0f1;
}
.heapBox .heap .heapOptions .heapOption a.disabled { }
.heapBox .heap .heapOptions .heapOption a.disabled:hover { }
|
knowledgebase/wp-content/themes/revija/js/heapbox/heapbox.css
|
.heapBox {
position: relative;
display: block;
min-width: 110px;
}
.section-line .heapBox {
display: inline-block;
width: 175px;
line-height: 1.3em;
}
.heapBox * {
margin: 0;
padding: 0;
outline: none;
list-style: none;
}
.heapBox.disabled .holder { color: #989898; }
.heapBox.disabled .handler { }
.heapBox a {
text-decoration: none;
color: #fff;
}
.heapBox .holder {
overflow: hidden;
display: block;
padding: 9px 10px;
width: 100%;
min-width: 75px;
border: 2px solid #e4e4e2;
background-color: #f5f7f8;
color: #696e6e;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all .25s ease;
transition: all .25s ease;
}
.select-small-size .heapBox .holder { padding: 3px 10px; }
.heapBox.open .holder { background-color: #fff; }
.heapBox .handler {
position: absolute;
top: 0;
right: 0;
z-index: 10;
display: block;
height: 100%;
}
.heapBox .handler:before {
position: absolute;
height: 27px;
right: 35px;
top: 9px;
margin-top: 0;
content: "";
border-left: 1px solid #e4e4e2;
}
.select-small-size .heapBox .handler:before { height: 14px; }
.heapBox .handler:after {
position: absolute;
right: 12px;
top: 50%;
display: inline-block;
margin-top: -10px;
content: "\f107";
font-family: fontawesome;
line-height: inherit;
font-size: 18px;
color: #292f38;
}
.heapBox.open .handler:after { content: "\f106"; }
.select-small-size .heapBox .handler:after { font-size: 15px; }
.heapBox div.heap {
position: absolute;
left: 0;
top: calc(100% - 1px);
overflow: hidden;
cursor: pointer;
z-index: 22;
display: none;
width: 100%;
background: #fff;
border-left: 2px solid #e4e4e2;
border-right: 2px solid #e4e4e2;
border-bottom: 2px solid #e4e4e2;
list-style-type: none;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.heapBox .heap .heapOptions {
display: block;
overflow: hidden;
z-index: 20;
position: relative;
}
.heapBox .heap a.sliderUp,
.heapBox .heap a.sliderDown {
position: absolute;
z-index: 30;
display: block;
width: 100%;
height: 20px;
background-color: #fff;
}
.heapBox .heap a.sliderUp {
top: 0;
border-bottom: 1px solid #e4e4e2;
}
.heapBox .heap a.sliderDown {
bottom: 0;
border-top: 1px solid #e4e4e2;
}
.heapBox .heap a.sliderUp:hover,
.heapBox .heap a.sliderDown:hover { background-color: #ecf0f1; }
.heapBox .heap a.sliderUp:after,
.heapBox .heap a.sliderDown:after {
display: block;
text-align: center;
font-family: 'fontawesome';
font-size: 18px;
line-height: 20px;
color: #292f38;
}
.heapBox .heap a.sliderUp:after { content: "\f106"; }
.heapBox .heap a.sliderDown:after { content: "\f107"; }
.heapBox .heap .heapOptions .heapOption { }
.heapBox .heap .heapOptions .heapOption a {
display: block;
padding: 7px 10px;
width: 100%;
background-color: #fff;
color: #6a6a6a;
-webkit-transition: color 1s ease, background-color 1s ease, box-shadow 1s ease;
transition: color 1s ease, background-color 1s ease, box-shadow 1s ease;
}
.select-small-size .heapBox .heap .heapOptions .heapOption a { padding: 3px 10px; }
.heapBox .heap .heapOptions .heapOption a:hover {
color: #000;
background-color: #ecf0f1;
-webkit-transition: color .1s ease, background-color .1s ease, box-shadow .1s ease;
transition: color .1s ease, background-color .1s ease, box-shadow .1s ease;
}
.heapBox .heap .heapOptions .heapOption a.selected {
color: #000;
background-color: #ecf0f1;
}
.heapBox .heap .heapOptions .heapOption a.disabled { }
.heapBox .heap .heapOptions .heapOption a.disabled:hover { }
| 0.478041 | 0.096919 |
# General
--------------------------------------------------------------*/
body {
font-family: "Open Sans", sans-serif;
color: #fff;
}
a {
color: #f26722;
}
a:hover {
color: #f26722;
text-decoration: none;
}
a:focus{
outline: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Roboto", sans-serif;
}
.menu-logo{
margin-top: 17px;
display: block;
}
.menu-logo img{
max-height: 40px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #f26722;
border-top-color: #e1e1e1;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
display: none;
right: 15px;
bottom: 15px;
z-index: 99999;
}
.back-to-top i {
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
width: 40px;
height: 40px;
border-radius: 4px;
background: #f26722;
color: #fff;
transition: all 0.4s;
}
.back-to-top i:hover {
background: #e68c5f;
color: #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
background: #1d262d;
height: 40px;
font-size: 14px;
transition: all 0.5s;
color: #fff;
}
#topbar.topbar-scrolled {
top: -40px;
}
#topbar .contact-info a {
line-height: 1;
color: #fff;
transition: 0.3s;
}
#topbar .contact-info a:hover {
text-decoration: underline;
}
#topbar .contact-info i {
padding-right: 4px;
margin-left: 15px;
}
#topbar .contact-info i:first-child {
margin-left: 0;
}
#topbar .social-links a {
color: rgba(255, 255, 255, 0.6);
padding-left: 15px;
display: inline-block;
line-height: 1px;
transition: 0.3s;
}
#topbar .social-links a:hover {
color: #f26722;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
background: #f6f7f9;
transition: all 0.5s;
z-index: 997;
padding: 25px 0;
top: 40px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled {
top: 0;
padding: 15px;
}
#header .logo {
font-size: 32px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 600;
letter-spacing: 0.8px;
font-family: "Poppins", sans-serif;
}
#header .logo a {
color: #222222;
}
#header .logo a span {
color: #f26722;
}
#header .logo img {
max-height: 70px;
}
@media (max-width: 992px) {
#header {
padding: 15px;
top: 0;
}
#header .logo {
font-size: 28px;
}
}
/* Searchbar */
.header-search{
margin-top: 15px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 20px 20px 20px 20px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
text-align: left;
}
.header-search input[type="text"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
.header-search input[type="text"]:focus-visible{
outline: none;
}
.header-search input[type="submit"] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
font-weight: 600;
padding: 0 10px;
background: #f26722;
color: #fff;
transition: 0.3s;
border-radius: 50%;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
background: #1d262d;
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #1d262d;
}
#footer .footer-top {
padding: 60px 0 30px 0;
background: #1d262d;
border-bottom: 1px solid #3a3f43;
}
#footer .footer-top .footer-contact {
margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
font-size: 24px;
margin: 0 0 15px 0;
padding: 2px 0 2px 0;
line-height: 1;
font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
color: #f26722;
}
#footer .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Roboto", sans-serif;
color: #e0e1e3;
}
#footer .footer-top h4 {
font-size: 16px;
font-weight: bold;
color: #fff;
position: relative;
padding-bottom: 12px;
margin-bottom: 0;
}
#footer .footer-top .footer-links {
margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer .footer-top .footer-links ul i {
padding-right: 2px;
color: #f26722;
font-size: 18px;
line-height: 1;
}
#footer .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer .footer-top .footer-links ul a {
color: #e0e1e3;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #f26722;
}
#footer .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #f26722;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
.footer-links p{
margin-top: 10px;
}
#footer .footer-top .social-links a:hover {
background: #e68c5f;
color: #fff;
text-decoration: none;
}
#footer .copyright {
text-align: center;
float: left;
}
#footer .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer .copyright, #footer .credits {
float: none;
text-align: center;
padding: 2px 0;
}
}
.btn-theme{
font-size: 16px;
background: #106eea;
color: #fff;
transition: 0.3s;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.btn-theme:hover{
background: #106eea;
color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 75vh;
margin-top: 150px;
position: relative;
}
#hero:before {
content: "";
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#hero .container {
position: relative;
padding-top: 40px;
}
@media (max-width: 992px) {
#hero .container {
padding-top: 58px;
}
}
#hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
color: #222222;
font-family: "Poppins", sans-serif;
}
#hero h1 span {
color: #106eea;
}
#hero h2 {
color: #555555;
margin: 5px 0 30px 0;
font-size: 24px;
font-weight: 400;
}
#hero .btn-get-started {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 10px 28px;
border-radius: 4px;
transition: 0.5s;
color: #fff;
background: #106eea;
}
#hero .btn-get-started:hover {
background: #247cf0;
}
#hero .btn-watch-video {
font-size: 16px;
display: inline-block;
padding: 10px 25px 8px 40px;
transition: 0.5s;
margin-left: 25px;
color: #222222;
position: relative;
font-weight: 600;
}
#hero .btn-watch-video i {
color: #106eea;
font-size: 32px;
position: absolute;
left: 0;
top: 7px;
transition: 0.3s;
}
#hero .btn-watch-video:hover {
color: #106eea;
}
#hero .btn-watch-video:hover i {
color: #3b8af2;
}
@media (min-width: 1024px) {
#hero {
background-attachment: fixed;
}
}
@media (max-width: 768px) {
#hero {
height: 100vh;
}
#hero h1 {
font-size: 28px;
line-height: 36px;
}
#hero h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero .btn-get-started, #hero .btn-watch-video {
font-size: 13px;
}
}
@media (max-height: 500px) {
#hero {
height: 120vh;
}
}
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
padding: 30px;
position: relative;
overflow: hidden;
background: #fff;
box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
transition: all 0.3s ease-in-out;
border-radius: 8px;
z-index: 1;
}
.featured-services .icon-box::before {
content: '';
position: absolute;
background: #cbe0fb;
right: 0;
left: 0;
bottom: 0;
top: 100%;
transition: all 0.3s;
z-index: -1;
}
.featured-services .icon-box:hover::before {
background: #106eea;
top: 0;
border-radius: 0px;
}
.featured-services .icon {
margin-bottom: 15px;
}
.featured-services .icon i {
font-size: 48px;
line-height: 1;
color: #106eea;
transition: all 0.3s ease-in-out;
}
.featured-services .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 18px;
}
.featured-services .title a {
color: #111;
}
.featured-services .description {
font-size: 15px;
line-height: 28px;
margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
color: #fff;
}
.featured-services .icon-box:hover .icon i {
color: #fff;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding: 60px 0;
overflow: hidden;
}
.section-bg {
background-color: #f6f9fe;
}
.section-bg-white {
background-color: #fff;
}
.section-title {
text-align: center;
padding-bottom: 30px;
}
.section-title h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
padding: 8px 20px;
margin: 0;
background: #e7f1fd;
color: #106eea;
display: inline-block;
text-transform: uppercase;
border-radius: 50px;
}
.section-title h3 {
margin: 15px 0 0 0;
font-size: 32px;
font-weight: 700;
}
.section-title h3 span {
color: #106eea;
}
.section-title p {
margin: 15px auto 0 auto;
font-weight: 600;
}
@media (min-width: 1024px) {
.section-title p {
width: 80%;
}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
font-weight: 600;
font-size: 26px;
}
.about .content ul {
list-style: none;
padding: 0;
}
.about .content ul li {
display: flex;
align-items: flex-start;
margin-bottom: 35px;
}
.about .content ul li:first-child {
margin-top: 35px;
}
.about .content ul i {
background: #fff;
box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
font-size: 24px;
padding: 20px;
margin-right: 15px;
color: #106eea;
border-radius: 50px;
}
.about .content ul h5 {
font-size: 18px;
color: #555555;
}
.about .content ul p {
font-size: 15px;
}
.about .content p:last-child {
margin-bottom: 0;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
padding: 60px 0;
}
.team .member {
margin-bottom: 20px;
overflow: hidden;
border-radius: 4px;
background: #fff;
box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.team .member .member-img {
position: relative;
overflow: hidden;
}
.team .member .social {
position: absolute;
left: 0;
bottom: 30px;
right: 0;
opacity: 0;
transition: ease-in-out 0.3s;
text-align: center;
}
.team .member .social a {
transition: color 0.3s;
color: #222222;
margin: 0 3px;
padding-top: 7px;
border-radius: 4px;
width: 36px;
height: 36px;
background: #f26722;
display: inline-block;
transition: ease-in-out 0.3s;
color: #fff;
}
.team .member .social a:hover {
background: #e68c5f;
}
.team .member .social i {
font-size: 18px;
}
.team .member .member-info {
padding: 25px 15px;
}
.team .member .member-info h4 {
font-weight: 700;
margin-bottom: 5px;
font-size: 18px;
color: #222222;
}
.team .member .member-info span {
display: block;
font-size: 13px;
font-weight: 400;
color: #aaaaaa;
}
.team .member .member-info p {
font-style: italic;
font-size: 14px;
line-height: 26px;
color: #777777;
}
.team .member:hover .social {
opacity: 1;
bottom: 15px;
}
section h3{
color: #605c5d;
}
.section-title p{
color: #605c5d;
margin-top: 30px;
}
.title-border{
border-bottom: 8px solid #f26722;
width: 100px;
margin: 0 auto;
margin-top: 8px;
}
.info-box-squre {
background: #fff;
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
padding: 20px 0 30px 0;
}
.plr20{
padding-left: 20px;
padding-right: 20px;
}
.info-box {
background: #fff;
border-radius: 20px;
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
padding: 20px 0 30px 0;
}
.small-box-contact-top-i {
font-size: 32px;
color: #f26722;
border-radius: 50%;
padding: 8px;
border: 2px dotted #b3d1fa;
}
.small-box-contact-top-h5{
text-align: left;
font-weight: 700;
color: #605c5d;
}
.btn-main-color{
background: #f26722;
}
.btn-main-color:hover{
background: #e68c5f;
}
.get-in-touch-title{
margin: 15px 0 0 0;
font-size: 28px;
font-weight: 700;
margin-bottom: 30px;
}
#pagination{
display: flex;
justify-content: center;
}
#pagination .blocks{
min-width: 40px;
width: auto;
line-height: 40px;
text-align: center;
border: 1px solid #DDDDDD;
display: inline-block;
text-decoration: none;
color: #f26722;
padding-left: 10px;
padding-right: 10px;
background: #fff;
}
#pagination .blocks:not(:first-child){
margin-left: 5px;
}
#pagination .blocks:first-child{
border-radius: 10px 0 0 10px;
}
#pagination .blocks:last-child{
border-radius: 0 10px 10px 0;
}
#pagination .blocks:hover{
background-color: #DDDDDD;
}
#pagination a.active{
background-color: #f26722;
color: #fff;
}
.footer-newsletter {
padding: 50px 0;
background: #f1f6fe;
text-align: center;
font-size: 15px;
}
.footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
font-weight: 600;
}
.footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 4px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
text-align: left;
}
.footer-newsletter form input[type="email"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
.footer-newsletter form input[type="submit"] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #106eea;
color: #fff;
transition: 0.3s;
border-radius: 0 4px 4px 0;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.footer-newsletter form input[type="submit"]:hover {
background: #0d58ba;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
padding: 15px 0;
text-align: center;
}
.clients img {
max-width: 45%;
transition: all 0.4s ease-in-out;
display: inline-block;
padding: 15px 0;
}
.clients img:hover {
transform: scale(1.15);
}
@media (max-width: 768px) {
.clients img {
max-width: 40%;
}
}
.our-partner-slider-btn{
background: #1d262d;
padding: 6px 12px;
border-radius: 50%;
color: #fffafa;
margin-left: 10px;
margin-right: 10px;
height: 30px;
width: 30px;
display: inline-table;
}
.founder-section-left h4{
margin: 15px 0 0 0;
font-size: 22px;
font-weight: 700;
color: #605c5d;
text-align: left;
}
.founder-section-left h6{
text-align: left;
margin-top: 15px;
font-weight: 600;
color: #605c5d;
}
.founder-section-left p{
text-align: left;
margin-top: 15px;
}
.founder-image{
position: absolute;
max-height: 460px;
bottom: 0;
}
.btn-view-all{
background: #647684;
padding: 10px 70px;
border-radius: 30px;
color: #fff;
}
.btn-view-all:hover{
color: #fff;
}
.founder_desc {
text-align: justify;
}
.heading_founder {
text-align: justify;
}
.overlap_col {
background: #fff;
position: relative;
padding: 25px 45px;
top: -60px;
}
.overlap_col-right{
box-shadow: -5px 5px rgb(204 204 204 / 40%);
margin-right: -60px !important;
}
.overlap_col-left{
box-shadow: 5px 5px rgb(204 204 204 / 40%);
margin-left: -60px !important;
}
.col_bg {
background: #fff;
}
.home-box-title{
margin-top: 30px;
margin-bottom: 50px;
}
.home-info-box{
padding-left: 70px;
padding-right: 70px;
}
.home-info-box-shadow{
box-shadow: 5px 5px rgb(204 204 204 / 40%);
}
.img-100{
width: 100%;
}
.no-gutters {
margin-right: 0;
margin-left: 0;
padding-right: 0;
padding-left: 0;
}
.p-of-home-blocks{
position: absolute;
top: 45%;
width: 50%;
color: #000;
font-size: 12px;
font-weight: bold;
left: 16%;
}
.num-of-home-blocks-01{
color: #fff;
position: absolute;
right: 35.4%;
top: 16%;
font-weight: 700;
}
.num-of-home-blocks-02{
color: #fff;
position: absolute;
right: 30.4%;
top: 16%;
font-weight: 700;
}
.num-of-home-blocks-03{
color: #fff;
position: absolute;
right: 30.4%;
top: 16%;
font-weight: 700;
}
.star-block-of-review{
margin-bottom: 0;
}
.star-block-of-review span i{
color:#FDD922;
}
.star-block-of-review i{
font-size:20px;
color:#ccc;
margin-left: 2px;
text-shadow: 1px 1px #000000;
}
.review1{
width: 70%;
position: absolute;
top: 29%;
left: 8%;
}
.review2{
width: 70%;
position: absolute;
top: 31%;
left: 8%;
}
.review-text{
color: #000;
font-size: 12px;
}
.form-group label{
color: #605c5d;
font-weight: 700;
font-size: 20px;
}
.checkbox-label{
font-size: 15px !important;
}
.form-group label i{
margin-right: 10px;
}
.box-dashboard{
color: #605c5d;
background: #fff;
width: 120px;
height: 120px;
border-radius: 22px;
box-shadow: 0 0 9px #ccc;
cursor: pointer;
padding: 10px;
display: inline-block;
margin-left: 15px;
margin-right: 15px;
}
.box-dashboard i{
font-size: 22px;
margin-top: 12px;
}
.box-dashboard p{
margin-bottom: 0;
}
.box-dash-text{
margin-top: 10px;
font-weight: 700;
font-size: 15px;
line-height: 1.2;
}
.kava-input{
border: none !important;
border-radius: 11px !important;
box-shadow: 0 0 9px #ccc;
margin-bottom: 10px;
}
.kava-final-lable{
font-size: 17px !important;
}
.form-check-input {
width: 1em;
height: 1em;
margin-top: .25em;
vertical-align: top;
}
.btn-search-of-listing{
padding: 5px 10px;
position: absolute;
top: 19%;
right: 14%;
}
.mar-tb{
margin-top: 5px;
margin-bottom: 5px;
}
.listing-result-title{
text-align: center;
color: #e68c5f;
font-size: 20px;
font-weight: 700;
}
.box-filter{
border-radius: 11px !important;
box-shadow: 0 0 9px #ccc;
padding: 5px;
margin-left: 45px;
margin-right: 45px;
}
.box-filter p{
margin-bottom: 0;
color: #605c5d;
padding: 10px 19px;
font-weight: 600;
}
/***** Wrapper *****/
.wrapper {
display: block;
}
/***** Sidebar *****/
.sidebar {
width: 500px;
height: 100vh;
position: fixed;
top: 0;
left: -505px;
z-index: 99999;
background: #f6f7f9;
color: #fff;
transition: all .3s;
box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
text-align: left;
}
.sidebar.active {
left: 0;
}
.sidebar .logo {
padding: 40px 40px;
transition: all .3s;
}
.sidebar .logo a {
display: inline-block;
width: 172px;
height: 34px;
border: 0;
}
.sidebar-logo{
width: 100%;
}
.sidebar ul.menu-elements {
padding: 10px 0;
transition: all .3s;
}
.sidebar ul li a {
display: block;
padding: 10px 40px;
border: 0;
font-weight: 600;
}
.sidebar ul li a i{
color: #605c5d;
font-size: 20px;
}
.sidebar-icons{
width: 24px; height: 24px;
color: #605c5d;
}
.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active > a:hover,
.sidebar ul li.active > a:focus {
outline: 0;
background: #e5e6e8;
}
.sidebar ul li a i {
margin-right: 5px;
}
.sidebar ul li.active > a,
a[aria-expanded="true"] {
background: #e5e6e8;
}
.sidebar ul ul a {
background: #444;
padding-left: 30px;
font-size: 14px;
}
.sidebar ul ul li.active > a {
background: #555;
}
.sidebar a[data-toggle="collapse"] {
position: relative;
}
.sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
/***** Dark overlay *****/
.sidebar-overlay {
display: none;
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
bottom: 0;
background: rgba(51, 51, 51, 0.7);
z-index: 9999;
opacity: 0;
transition: all .5s ease-in-out;
}
.sidebar-overlay.active {
display: block;
opacity: 1;
}
.dismiss {
width: 35px;
height: 35px;
position: absolute;
top: 55px;
right: 10px;
transition: all .3s;
text-align: center;
line-height: 35px;
cursor: pointer;
color: #605c5d;
font-size: 25px;
}
.dismiss:hover,
.dismiss:focus {
color: #e68c5f;
}
/***** Content *****/
.content {
width: 100%;
transition: all 0.3s;
}
|
public/web/asset/css/style.css
|
# General
--------------------------------------------------------------*/
body {
font-family: "Open Sans", sans-serif;
color: #fff;
}
a {
color: #f26722;
}
a:hover {
color: #f26722;
text-decoration: none;
}
a:focus{
outline: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Roboto", sans-serif;
}
.menu-logo{
margin-top: 17px;
display: block;
}
.menu-logo img{
max-height: 40px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #f26722;
border-top-color: #e1e1e1;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
display: none;
right: 15px;
bottom: 15px;
z-index: 99999;
}
.back-to-top i {
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
width: 40px;
height: 40px;
border-radius: 4px;
background: #f26722;
color: #fff;
transition: all 0.4s;
}
.back-to-top i:hover {
background: #e68c5f;
color: #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
background: #1d262d;
height: 40px;
font-size: 14px;
transition: all 0.5s;
color: #fff;
}
#topbar.topbar-scrolled {
top: -40px;
}
#topbar .contact-info a {
line-height: 1;
color: #fff;
transition: 0.3s;
}
#topbar .contact-info a:hover {
text-decoration: underline;
}
#topbar .contact-info i {
padding-right: 4px;
margin-left: 15px;
}
#topbar .contact-info i:first-child {
margin-left: 0;
}
#topbar .social-links a {
color: rgba(255, 255, 255, 0.6);
padding-left: 15px;
display: inline-block;
line-height: 1px;
transition: 0.3s;
}
#topbar .social-links a:hover {
color: #f26722;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
background: #f6f7f9;
transition: all 0.5s;
z-index: 997;
padding: 25px 0;
top: 40px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled {
top: 0;
padding: 15px;
}
#header .logo {
font-size: 32px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 600;
letter-spacing: 0.8px;
font-family: "Poppins", sans-serif;
}
#header .logo a {
color: #222222;
}
#header .logo a span {
color: #f26722;
}
#header .logo img {
max-height: 70px;
}
@media (max-width: 992px) {
#header {
padding: 15px;
top: 0;
}
#header .logo {
font-size: 28px;
}
}
/* Searchbar */
.header-search{
margin-top: 15px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 20px 20px 20px 20px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
text-align: left;
}
.header-search input[type="text"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
.header-search input[type="text"]:focus-visible{
outline: none;
}
.header-search input[type="submit"] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
font-weight: 600;
padding: 0 10px;
background: #f26722;
color: #fff;
transition: 0.3s;
border-radius: 50%;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
background: #1d262d;
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #1d262d;
}
#footer .footer-top {
padding: 60px 0 30px 0;
background: #1d262d;
border-bottom: 1px solid #3a3f43;
}
#footer .footer-top .footer-contact {
margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
font-size: 24px;
margin: 0 0 15px 0;
padding: 2px 0 2px 0;
line-height: 1;
font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
color: #f26722;
}
#footer .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Roboto", sans-serif;
color: #e0e1e3;
}
#footer .footer-top h4 {
font-size: 16px;
font-weight: bold;
color: #fff;
position: relative;
padding-bottom: 12px;
margin-bottom: 0;
}
#footer .footer-top .footer-links {
margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer .footer-top .footer-links ul i {
padding-right: 2px;
color: #f26722;
font-size: 18px;
line-height: 1;
}
#footer .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer .footer-top .footer-links ul a {
color: #e0e1e3;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #f26722;
}
#footer .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #f26722;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
.footer-links p{
margin-top: 10px;
}
#footer .footer-top .social-links a:hover {
background: #e68c5f;
color: #fff;
text-decoration: none;
}
#footer .copyright {
text-align: center;
float: left;
}
#footer .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer .copyright, #footer .credits {
float: none;
text-align: center;
padding: 2px 0;
}
}
.btn-theme{
font-size: 16px;
background: #106eea;
color: #fff;
transition: 0.3s;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.btn-theme:hover{
background: #106eea;
color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 75vh;
margin-top: 150px;
position: relative;
}
#hero:before {
content: "";
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#hero .container {
position: relative;
padding-top: 40px;
}
@media (max-width: 992px) {
#hero .container {
padding-top: 58px;
}
}
#hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
color: #222222;
font-family: "Poppins", sans-serif;
}
#hero h1 span {
color: #106eea;
}
#hero h2 {
color: #555555;
margin: 5px 0 30px 0;
font-size: 24px;
font-weight: 400;
}
#hero .btn-get-started {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 10px 28px;
border-radius: 4px;
transition: 0.5s;
color: #fff;
background: #106eea;
}
#hero .btn-get-started:hover {
background: #247cf0;
}
#hero .btn-watch-video {
font-size: 16px;
display: inline-block;
padding: 10px 25px 8px 40px;
transition: 0.5s;
margin-left: 25px;
color: #222222;
position: relative;
font-weight: 600;
}
#hero .btn-watch-video i {
color: #106eea;
font-size: 32px;
position: absolute;
left: 0;
top: 7px;
transition: 0.3s;
}
#hero .btn-watch-video:hover {
color: #106eea;
}
#hero .btn-watch-video:hover i {
color: #3b8af2;
}
@media (min-width: 1024px) {
#hero {
background-attachment: fixed;
}
}
@media (max-width: 768px) {
#hero {
height: 100vh;
}
#hero h1 {
font-size: 28px;
line-height: 36px;
}
#hero h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero .btn-get-started, #hero .btn-watch-video {
font-size: 13px;
}
}
@media (max-height: 500px) {
#hero {
height: 120vh;
}
}
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
padding: 30px;
position: relative;
overflow: hidden;
background: #fff;
box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
transition: all 0.3s ease-in-out;
border-radius: 8px;
z-index: 1;
}
.featured-services .icon-box::before {
content: '';
position: absolute;
background: #cbe0fb;
right: 0;
left: 0;
bottom: 0;
top: 100%;
transition: all 0.3s;
z-index: -1;
}
.featured-services .icon-box:hover::before {
background: #106eea;
top: 0;
border-radius: 0px;
}
.featured-services .icon {
margin-bottom: 15px;
}
.featured-services .icon i {
font-size: 48px;
line-height: 1;
color: #106eea;
transition: all 0.3s ease-in-out;
}
.featured-services .title {
font-weight: 700;
margin-bottom: 15px;
font-size: 18px;
}
.featured-services .title a {
color: #111;
}
.featured-services .description {
font-size: 15px;
line-height: 28px;
margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
color: #fff;
}
.featured-services .icon-box:hover .icon i {
color: #fff;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding: 60px 0;
overflow: hidden;
}
.section-bg {
background-color: #f6f9fe;
}
.section-bg-white {
background-color: #fff;
}
.section-title {
text-align: center;
padding-bottom: 30px;
}
.section-title h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
padding: 8px 20px;
margin: 0;
background: #e7f1fd;
color: #106eea;
display: inline-block;
text-transform: uppercase;
border-radius: 50px;
}
.section-title h3 {
margin: 15px 0 0 0;
font-size: 32px;
font-weight: 700;
}
.section-title h3 span {
color: #106eea;
}
.section-title p {
margin: 15px auto 0 auto;
font-weight: 600;
}
@media (min-width: 1024px) {
.section-title p {
width: 80%;
}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
font-weight: 600;
font-size: 26px;
}
.about .content ul {
list-style: none;
padding: 0;
}
.about .content ul li {
display: flex;
align-items: flex-start;
margin-bottom: 35px;
}
.about .content ul li:first-child {
margin-top: 35px;
}
.about .content ul i {
background: #fff;
box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
font-size: 24px;
padding: 20px;
margin-right: 15px;
color: #106eea;
border-radius: 50px;
}
.about .content ul h5 {
font-size: 18px;
color: #555555;
}
.about .content ul p {
font-size: 15px;
}
.about .content p:last-child {
margin-bottom: 0;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
padding: 60px 0;
}
.team .member {
margin-bottom: 20px;
overflow: hidden;
border-radius: 4px;
background: #fff;
box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.team .member .member-img {
position: relative;
overflow: hidden;
}
.team .member .social {
position: absolute;
left: 0;
bottom: 30px;
right: 0;
opacity: 0;
transition: ease-in-out 0.3s;
text-align: center;
}
.team .member .social a {
transition: color 0.3s;
color: #222222;
margin: 0 3px;
padding-top: 7px;
border-radius: 4px;
width: 36px;
height: 36px;
background: #f26722;
display: inline-block;
transition: ease-in-out 0.3s;
color: #fff;
}
.team .member .social a:hover {
background: #e68c5f;
}
.team .member .social i {
font-size: 18px;
}
.team .member .member-info {
padding: 25px 15px;
}
.team .member .member-info h4 {
font-weight: 700;
margin-bottom: 5px;
font-size: 18px;
color: #222222;
}
.team .member .member-info span {
display: block;
font-size: 13px;
font-weight: 400;
color: #aaaaaa;
}
.team .member .member-info p {
font-style: italic;
font-size: 14px;
line-height: 26px;
color: #777777;
}
.team .member:hover .social {
opacity: 1;
bottom: 15px;
}
section h3{
color: #605c5d;
}
.section-title p{
color: #605c5d;
margin-top: 30px;
}
.title-border{
border-bottom: 8px solid #f26722;
width: 100px;
margin: 0 auto;
margin-top: 8px;
}
.info-box-squre {
background: #fff;
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
padding: 20px 0 30px 0;
}
.plr20{
padding-left: 20px;
padding-right: 20px;
}
.info-box {
background: #fff;
border-radius: 20px;
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
padding: 20px 0 30px 0;
}
.small-box-contact-top-i {
font-size: 32px;
color: #f26722;
border-radius: 50%;
padding: 8px;
border: 2px dotted #b3d1fa;
}
.small-box-contact-top-h5{
text-align: left;
font-weight: 700;
color: #605c5d;
}
.btn-main-color{
background: #f26722;
}
.btn-main-color:hover{
background: #e68c5f;
}
.get-in-touch-title{
margin: 15px 0 0 0;
font-size: 28px;
font-weight: 700;
margin-bottom: 30px;
}
#pagination{
display: flex;
justify-content: center;
}
#pagination .blocks{
min-width: 40px;
width: auto;
line-height: 40px;
text-align: center;
border: 1px solid #DDDDDD;
display: inline-block;
text-decoration: none;
color: #f26722;
padding-left: 10px;
padding-right: 10px;
background: #fff;
}
#pagination .blocks:not(:first-child){
margin-left: 5px;
}
#pagination .blocks:first-child{
border-radius: 10px 0 0 10px;
}
#pagination .blocks:last-child{
border-radius: 0 10px 10px 0;
}
#pagination .blocks:hover{
background-color: #DDDDDD;
}
#pagination a.active{
background-color: #f26722;
color: #fff;
}
.footer-newsletter {
padding: 50px 0;
background: #f1f6fe;
text-align: center;
font-size: 15px;
}
.footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
font-weight: 600;
}
.footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 4px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
text-align: left;
}
.footer-newsletter form input[type="email"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
.footer-newsletter form input[type="submit"] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #106eea;
color: #fff;
transition: 0.3s;
border-radius: 0 4px 4px 0;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.footer-newsletter form input[type="submit"]:hover {
background: #0d58ba;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
padding: 15px 0;
text-align: center;
}
.clients img {
max-width: 45%;
transition: all 0.4s ease-in-out;
display: inline-block;
padding: 15px 0;
}
.clients img:hover {
transform: scale(1.15);
}
@media (max-width: 768px) {
.clients img {
max-width: 40%;
}
}
.our-partner-slider-btn{
background: #1d262d;
padding: 6px 12px;
border-radius: 50%;
color: #fffafa;
margin-left: 10px;
margin-right: 10px;
height: 30px;
width: 30px;
display: inline-table;
}
.founder-section-left h4{
margin: 15px 0 0 0;
font-size: 22px;
font-weight: 700;
color: #605c5d;
text-align: left;
}
.founder-section-left h6{
text-align: left;
margin-top: 15px;
font-weight: 600;
color: #605c5d;
}
.founder-section-left p{
text-align: left;
margin-top: 15px;
}
.founder-image{
position: absolute;
max-height: 460px;
bottom: 0;
}
.btn-view-all{
background: #647684;
padding: 10px 70px;
border-radius: 30px;
color: #fff;
}
.btn-view-all:hover{
color: #fff;
}
.founder_desc {
text-align: justify;
}
.heading_founder {
text-align: justify;
}
.overlap_col {
background: #fff;
position: relative;
padding: 25px 45px;
top: -60px;
}
.overlap_col-right{
box-shadow: -5px 5px rgb(204 204 204 / 40%);
margin-right: -60px !important;
}
.overlap_col-left{
box-shadow: 5px 5px rgb(204 204 204 / 40%);
margin-left: -60px !important;
}
.col_bg {
background: #fff;
}
.home-box-title{
margin-top: 30px;
margin-bottom: 50px;
}
.home-info-box{
padding-left: 70px;
padding-right: 70px;
}
.home-info-box-shadow{
box-shadow: 5px 5px rgb(204 204 204 / 40%);
}
.img-100{
width: 100%;
}
.no-gutters {
margin-right: 0;
margin-left: 0;
padding-right: 0;
padding-left: 0;
}
.p-of-home-blocks{
position: absolute;
top: 45%;
width: 50%;
color: #000;
font-size: 12px;
font-weight: bold;
left: 16%;
}
.num-of-home-blocks-01{
color: #fff;
position: absolute;
right: 35.4%;
top: 16%;
font-weight: 700;
}
.num-of-home-blocks-02{
color: #fff;
position: absolute;
right: 30.4%;
top: 16%;
font-weight: 700;
}
.num-of-home-blocks-03{
color: #fff;
position: absolute;
right: 30.4%;
top: 16%;
font-weight: 700;
}
.star-block-of-review{
margin-bottom: 0;
}
.star-block-of-review span i{
color:#FDD922;
}
.star-block-of-review i{
font-size:20px;
color:#ccc;
margin-left: 2px;
text-shadow: 1px 1px #000000;
}
.review1{
width: 70%;
position: absolute;
top: 29%;
left: 8%;
}
.review2{
width: 70%;
position: absolute;
top: 31%;
left: 8%;
}
.review-text{
color: #000;
font-size: 12px;
}
.form-group label{
color: #605c5d;
font-weight: 700;
font-size: 20px;
}
.checkbox-label{
font-size: 15px !important;
}
.form-group label i{
margin-right: 10px;
}
.box-dashboard{
color: #605c5d;
background: #fff;
width: 120px;
height: 120px;
border-radius: 22px;
box-shadow: 0 0 9px #ccc;
cursor: pointer;
padding: 10px;
display: inline-block;
margin-left: 15px;
margin-right: 15px;
}
.box-dashboard i{
font-size: 22px;
margin-top: 12px;
}
.box-dashboard p{
margin-bottom: 0;
}
.box-dash-text{
margin-top: 10px;
font-weight: 700;
font-size: 15px;
line-height: 1.2;
}
.kava-input{
border: none !important;
border-radius: 11px !important;
box-shadow: 0 0 9px #ccc;
margin-bottom: 10px;
}
.kava-final-lable{
font-size: 17px !important;
}
.form-check-input {
width: 1em;
height: 1em;
margin-top: .25em;
vertical-align: top;
}
.btn-search-of-listing{
padding: 5px 10px;
position: absolute;
top: 19%;
right: 14%;
}
.mar-tb{
margin-top: 5px;
margin-bottom: 5px;
}
.listing-result-title{
text-align: center;
color: #e68c5f;
font-size: 20px;
font-weight: 700;
}
.box-filter{
border-radius: 11px !important;
box-shadow: 0 0 9px #ccc;
padding: 5px;
margin-left: 45px;
margin-right: 45px;
}
.box-filter p{
margin-bottom: 0;
color: #605c5d;
padding: 10px 19px;
font-weight: 600;
}
/***** Wrapper *****/
.wrapper {
display: block;
}
/***** Sidebar *****/
.sidebar {
width: 500px;
height: 100vh;
position: fixed;
top: 0;
left: -505px;
z-index: 99999;
background: #f6f7f9;
color: #fff;
transition: all .3s;
box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
text-align: left;
}
.sidebar.active {
left: 0;
}
.sidebar .logo {
padding: 40px 40px;
transition: all .3s;
}
.sidebar .logo a {
display: inline-block;
width: 172px;
height: 34px;
border: 0;
}
.sidebar-logo{
width: 100%;
}
.sidebar ul.menu-elements {
padding: 10px 0;
transition: all .3s;
}
.sidebar ul li a {
display: block;
padding: 10px 40px;
border: 0;
font-weight: 600;
}
.sidebar ul li a i{
color: #605c5d;
font-size: 20px;
}
.sidebar-icons{
width: 24px; height: 24px;
color: #605c5d;
}
.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active > a:hover,
.sidebar ul li.active > a:focus {
outline: 0;
background: #e5e6e8;
}
.sidebar ul li a i {
margin-right: 5px;
}
.sidebar ul li.active > a,
a[aria-expanded="true"] {
background: #e5e6e8;
}
.sidebar ul ul a {
background: #444;
padding-left: 30px;
font-size: 14px;
}
.sidebar ul ul li.active > a {
background: #555;
}
.sidebar a[data-toggle="collapse"] {
position: relative;
}
.sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
/***** Dark overlay *****/
.sidebar-overlay {
display: none;
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
bottom: 0;
background: rgba(51, 51, 51, 0.7);
z-index: 9999;
opacity: 0;
transition: all .5s ease-in-out;
}
.sidebar-overlay.active {
display: block;
opacity: 1;
}
.dismiss {
width: 35px;
height: 35px;
position: absolute;
top: 55px;
right: 10px;
transition: all .3s;
text-align: center;
line-height: 35px;
cursor: pointer;
color: #605c5d;
font-size: 25px;
}
.dismiss:hover,
.dismiss:focus {
color: #e68c5f;
}
/***** Content *****/
.content {
width: 100%;
transition: all 0.3s;
}
| 0.237753 | 0.061593 |
body {
padding-top: 50px;
}
.sub-header {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.navbar-fixed-top {
border: 0;
}
/* Hide for mobile, show later */
.sidebar {
position: fixed;
top: 51px;
bottom: 0;
left: 0;
z-index: 1000;
padding: 20px;
overflow-x: hidden;
overflow-y: auto;
/* Scrollable contents if viewport is shorter than content. */
background-color: #f5f5f5;
border-right: 1px solid #eee;
}
.sidebar .list-group-item + .list-group {
margin-left: 10px;
}
.sidebar .list-group-item.collapsed .caret {
border-top: 8px solid;
border-bottom: 0;
}
.sidebar .list-group-item .caret {
float: right;
margin-top: 6px;
border-bottom: 8px solid;
border-top: 0;
}
@media (min-width: 768px) {
.sidebar {
display: block;
height: auto !important;
}
}
/* Sidebar navigation */
.nav-sidebar {
margin-right: -21px;
/* 20px padding + 1px border */
margin-bottom: 20px;
margin-left: -20px;
}
.nav-sidebar > li > a {
padding-right: 20px;
padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
color: #fff;
background-color: #428bca;
}
/*
* Main content
*/
.main {
padding: 20px;
}
.navbar-brand {
font-size: 11px;
}
@media (min-width: 768px) {
.main {
padding-right: 40px;
padding-left: 40px;
}
.navbar-brand {
font-size: 18px;
}
}
.main .page-header {
margin-top: 0;
}
/*
* Placeholder dashboard ideas
*/
.placeholders {
margin-bottom: 30px;
text-align: center;
}
.placeholders h4 {
margin-bottom: 0;
font-size: 36px;
}
.list-group-item.active, .list-group-item.active:focus, .btn-primary {
background-color: #292A33;
border-color: #292A33;
}
.list-group-item:hover, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
background-color: #292A33 !important;
border-color: #292A33 !important;
color: #fff !important;
}
.list-group-item:hover .badge {
background-color: #fff;
color: #e74430
}
.panel-primary {
border-color: #292A33;
}
.panel-primary>.panel-heading {
color: #fff;
background-color: #292A33;
border-color: #292A33;
}
.navbar-toggle {
margin-left: 15px;
}
.flex-wrapper {
display: flex;
flex-flow: row nowrap;
}
.single-chart {
width: 33%;
justify-content: space-around ;
}
.circular-chart {
display: block;
margin: 10px auto;
max-width: 80%;
max-height: 250px;
}
.circle-bg {
fill: none;
stroke: #eee;
stroke-width: 3.8;
}
.circle {
fill: none;
stroke-width: 2.8;
stroke-linecap: round;
animation: progress 1s ease-out forwards;
}
@keyframes progress {
0% {
stroke-dasharray: 0 100;
}
}
.circular-chart.orange .circle {
stroke: #ff9f00;
}
.circular-chart.green .circle {
stroke: #4CC790;
}
.circular-chart.blue .circle {
stroke: #3c9ee5;
}
.percentage {
fill: #666;
font-family: sans-serif;
font-size: 0.5em;
text-anchor: middle;
}
|
public/css/admin.css
|
body {
padding-top: 50px;
}
.sub-header {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.navbar-fixed-top {
border: 0;
}
/* Hide for mobile, show later */
.sidebar {
position: fixed;
top: 51px;
bottom: 0;
left: 0;
z-index: 1000;
padding: 20px;
overflow-x: hidden;
overflow-y: auto;
/* Scrollable contents if viewport is shorter than content. */
background-color: #f5f5f5;
border-right: 1px solid #eee;
}
.sidebar .list-group-item + .list-group {
margin-left: 10px;
}
.sidebar .list-group-item.collapsed .caret {
border-top: 8px solid;
border-bottom: 0;
}
.sidebar .list-group-item .caret {
float: right;
margin-top: 6px;
border-bottom: 8px solid;
border-top: 0;
}
@media (min-width: 768px) {
.sidebar {
display: block;
height: auto !important;
}
}
/* Sidebar navigation */
.nav-sidebar {
margin-right: -21px;
/* 20px padding + 1px border */
margin-bottom: 20px;
margin-left: -20px;
}
.nav-sidebar > li > a {
padding-right: 20px;
padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
color: #fff;
background-color: #428bca;
}
/*
* Main content
*/
.main {
padding: 20px;
}
.navbar-brand {
font-size: 11px;
}
@media (min-width: 768px) {
.main {
padding-right: 40px;
padding-left: 40px;
}
.navbar-brand {
font-size: 18px;
}
}
.main .page-header {
margin-top: 0;
}
/*
* Placeholder dashboard ideas
*/
.placeholders {
margin-bottom: 30px;
text-align: center;
}
.placeholders h4 {
margin-bottom: 0;
font-size: 36px;
}
.list-group-item.active, .list-group-item.active:focus, .btn-primary {
background-color: #292A33;
border-color: #292A33;
}
.list-group-item:hover, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
background-color: #292A33 !important;
border-color: #292A33 !important;
color: #fff !important;
}
.list-group-item:hover .badge {
background-color: #fff;
color: #e74430
}
.panel-primary {
border-color: #292A33;
}
.panel-primary>.panel-heading {
color: #fff;
background-color: #292A33;
border-color: #292A33;
}
.navbar-toggle {
margin-left: 15px;
}
.flex-wrapper {
display: flex;
flex-flow: row nowrap;
}
.single-chart {
width: 33%;
justify-content: space-around ;
}
.circular-chart {
display: block;
margin: 10px auto;
max-width: 80%;
max-height: 250px;
}
.circle-bg {
fill: none;
stroke: #eee;
stroke-width: 3.8;
}
.circle {
fill: none;
stroke-width: 2.8;
stroke-linecap: round;
animation: progress 1s ease-out forwards;
}
@keyframes progress {
0% {
stroke-dasharray: 0 100;
}
}
.circular-chart.orange .circle {
stroke: #ff9f00;
}
.circular-chart.green .circle {
stroke: #4CC790;
}
.circular-chart.blue .circle {
stroke: #3c9ee5;
}
.percentage {
fill: #666;
font-family: sans-serif;
font-size: 0.5em;
text-anchor: middle;
}
| 0.507812 | 0.070176 |
@-moz-document domain("dailymotion.com"), domain("pornhub.com"), domain("youporn.com"), domain("thiendia.com"), domain("xhamster.com"), domain("freenode.net"), domain("tuoiti.com") {
* {
background-image: none !important;
color: #cccccc !important ;
border-color: #3e3e3e !important;
}
* img {
border: 1px solid #333 !important;
}
a:link {
color: #c48303 !important ;
}
a:active {
color: #ffffff !important ;
}
a:visited {
color: #999999 !important ;
}
a:hover {
color: lightgrey !important;
}
}
@-moz-document domain("xvideos.com") {
/*Video Size*/
div#player>embed {min-width: 960px !important; min-height: 640px !important;width: 100% !important; height: auto !important;}
/*Change the min-width/height to adjust the players size.*/
/*MAIN*/
Body {background:#000!important; color:#999!important;}
html>body#home>div>div>table {display:none!important;}
iframe {display:none!important;}
td[width="180"] {display:none!important;}
a[href^="new/"] {color:#999!important;}
a:hover[href^="new/"] {background-color:#111!important;}
body#home>div>table {background:#000!important; color:#999!important;}
a[href^="http://www.xvideos.com/c/"] {background:#000!important; color:#999!important;}
a[href^="/?k"] {background:#000!important; color:#999!important;}
.nP {color:#999!important; background:#000!important;}
table[bgcolor="#eeedf1"] {color:#999!important; background:#000!important;}
a,b {color:#999!important;}
a:hover {font-weight:bold!important;}
td[width="183"] {color:#999!important;}
span[style="font-size: 16px; vertical-align: text-bottom;"] {color:#BBB!important;}
#siteNav {background:#000!important; border:solid 1px #222!important;}
img[src="http://gfx.xnxx.com/rss.gif"] {display:none!important;}
body#home>div>table {border:solid 1px #222!important;}
/*VIDEO*/
a[href^="http://upload.xvideos.com/?compte&favorite&add_favorite="] {display:none!important;}
table[style="border-top: 1px solid rgb(255, 80, 43); border-bottom: 1px solid black;"] {background:#000!important; border:solid 1px #222!important;}
td[style="font-size: 20px;"] {color:#BBB!important;}
span[style="font-size: 16px; vertical-align: bottom;"] {color:#999!important;}
td[style="padding: 2px 5px 3px;"] {display:none!important;}
table[width="340"] {display:none!important;}
table[width="450"] {color:#999!important; background:#000!important;}
table[height="244"] {display:none!important;}
p[style="font-size: 16px;"] {display:none!important;}
td[colspan="2"] {border:solid 1px #222!important;}
/*.comments_page, .comment {display:none!important;}*/
span[onclick="commentsDisplay()"] {font-weight:normal!important;}
a[rel="nofollow"] {display:none!important;}
a[href^="http://www.xnxx.com/"] {display:none!important;}
html>body>div>table>tbody>tr>td>font {display:none!important;}
/*Comments*/
#comments_page {background:#000!important; color:#999!important; border:solid 1px #222!important; -moz-border-radius:7px!important;}
.comment {background:#000!important; color:#999!important; border:solid 1px #222!important; -moz-border-radius:7px!important;}
}
@-moz-document url("http://www.xvideos.com/tags/") {
div>table>tbody>tr>td>div {color:gray!important;}
div>table>tbody>tr>td>div>a:after {content:" ("!important;}
div>table>tbody>tr>td>div:after {content:" )"!important;}
div>table>tbody>tr>td>div>a {text-decoration:none!important;}
div>table>tbody>tr>td>div>a:hover {opacity:0.6!important;}
}
|
data/usercss/109198.user.css
|
@-moz-document domain("dailymotion.com"), domain("pornhub.com"), domain("youporn.com"), domain("thiendia.com"), domain("xhamster.com"), domain("freenode.net"), domain("tuoiti.com") {
* {
background-image: none !important;
color: #cccccc !important ;
border-color: #3e3e3e !important;
}
* img {
border: 1px solid #333 !important;
}
a:link {
color: #c48303 !important ;
}
a:active {
color: #ffffff !important ;
}
a:visited {
color: #999999 !important ;
}
a:hover {
color: lightgrey !important;
}
}
@-moz-document domain("xvideos.com") {
/*Video Size*/
div#player>embed {min-width: 960px !important; min-height: 640px !important;width: 100% !important; height: auto !important;}
/*Change the min-width/height to adjust the players size.*/
/*MAIN*/
Body {background:#000!important; color:#999!important;}
html>body#home>div>div>table {display:none!important;}
iframe {display:none!important;}
td[width="180"] {display:none!important;}
a[href^="new/"] {color:#999!important;}
a:hover[href^="new/"] {background-color:#111!important;}
body#home>div>table {background:#000!important; color:#999!important;}
a[href^="http://www.xvideos.com/c/"] {background:#000!important; color:#999!important;}
a[href^="/?k"] {background:#000!important; color:#999!important;}
.nP {color:#999!important; background:#000!important;}
table[bgcolor="#eeedf1"] {color:#999!important; background:#000!important;}
a,b {color:#999!important;}
a:hover {font-weight:bold!important;}
td[width="183"] {color:#999!important;}
span[style="font-size: 16px; vertical-align: text-bottom;"] {color:#BBB!important;}
#siteNav {background:#000!important; border:solid 1px #222!important;}
img[src="http://gfx.xnxx.com/rss.gif"] {display:none!important;}
body#home>div>table {border:solid 1px #222!important;}
/*VIDEO*/
a[href^="http://upload.xvideos.com/?compte&favorite&add_favorite="] {display:none!important;}
table[style="border-top: 1px solid rgb(255, 80, 43); border-bottom: 1px solid black;"] {background:#000!important; border:solid 1px #222!important;}
td[style="font-size: 20px;"] {color:#BBB!important;}
span[style="font-size: 16px; vertical-align: bottom;"] {color:#999!important;}
td[style="padding: 2px 5px 3px;"] {display:none!important;}
table[width="340"] {display:none!important;}
table[width="450"] {color:#999!important; background:#000!important;}
table[height="244"] {display:none!important;}
p[style="font-size: 16px;"] {display:none!important;}
td[colspan="2"] {border:solid 1px #222!important;}
/*.comments_page, .comment {display:none!important;}*/
span[onclick="commentsDisplay()"] {font-weight:normal!important;}
a[rel="nofollow"] {display:none!important;}
a[href^="http://www.xnxx.com/"] {display:none!important;}
html>body>div>table>tbody>tr>td>font {display:none!important;}
/*Comments*/
#comments_page {background:#000!important; color:#999!important; border:solid 1px #222!important; -moz-border-radius:7px!important;}
.comment {background:#000!important; color:#999!important; border:solid 1px #222!important; -moz-border-radius:7px!important;}
}
@-moz-document url("http://www.xvideos.com/tags/") {
div>table>tbody>tr>td>div {color:gray!important;}
div>table>tbody>tr>td>div>a:after {content:" ("!important;}
div>table>tbody>tr>td>div:after {content:" )"!important;}
div>table>tbody>tr>td>div>a {text-decoration:none!important;}
div>table>tbody>tr>td>div>a:hover {opacity:0.6!important;}
}
| 0.068639 | 0.123445 |
.site-table tbody tr td {text-align: center;}
.site-table tbody tr td .layui-btn+.layui-btn{margin-left: 0px;}
.admin-table-page {position: fixed;z-index: 19940201;bottom: 0;width: 100%;background-color: #eee;border-bottom: 1px solid #ddd;left: 0px;}
.admin-table-page .page{padding-left:20px;}
.admin-table-page .page .layui-laypage {margin: 6px 0 0 0;}
.table-hover tbody tr:hover{ background-color: #EEEEEE; }
.admin-table{
}
.admin-table .layui-form-checkbox{
margin-top: 0;
height: 20px;
line-height: 20px;
}
.table-tit .layui-form-label{ width:85px;}
input{ vertical-align: middle;height: 30px; border-width: 1px;
border-style: solid;
background-color: #fff;
border-radius: 2px;
width: 100%; border-color: #e6e6e6; }
.table-tit input{text-indent:10px;}
.table-tit td{ font-size:14px; padding: 9px 9px;}
.table-tit th{ padding: 9px 9px;}
.table-tit td textarea{
width: 85% !important; height: 40px; min-height: 40px;}
textarea{min-height: 100px;
height: auto;
line-height: 20px;
padding: 6px 10px;border-width: 1px;
border-style: solid;
background-color: #fff;
border-radius: 2px;width: 90%; border-color: #e6e6e6;}
select{
border: 1px solid #e3e3e3; height: 30px; background:#fff; position: relative;}
select:hover{background:#fff;}
select{
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
background: url("../images/select.png") no-repeat scroll 95% center #fff;
}
select:hover{
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
background: url("../images/select.png") no-repeat scroll 95% center #fff;
}
/*
.tfield-lx:hover{ background: url("../images/select.png") no-repeat scroll 95px center #fff;}
.tfield-lx{ background: url("../images/select.png") no-repeat scroll 95px center #fff;}
.tfield-if{background: url("../images/select.png") no-repeat scroll 50px center #fff;}
.tfield-if:hover{background: url("../images/select.png") no-repeat scroll 50px center #fff;}
.tfield-all{background: url("../images/select.png") no-repeat scroll 96% center #fff;}
.tfield-all:hover{background: url("../images/select.png") no-repeat scroll 96% center #fff;}*/
input[type=radio],input[type=checkbox] {
display: inline-block;
vertical-align: middle;
width: 17px;
height: 17px;
-webkit-appearance: none;
background-color: transparent;
border: 0;
outline: 0 !important;
line-height: 20px;
color: #d8d8d8;
}
input[type=radio]:after {
content: "";
display:block;
width: 17px;
height: 17px;
border-radius: 50%;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border:1px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:after {
content: "";
display:block;
width: 17px;
height: 17px;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border:1px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:checked:after {
border:4px solid #ddd;
background-color: #5FB878;
content: "\e605";
}
input[type=radio]:checked:after {
content: "L";
transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
-webkit-transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
border-color: #37AF6E;
background-color: #37AF6E;
}
.btn-station div:nth-child(1){margin-left:10px;}
|
caxt/src/main/webapp/resources/css/table.css
|
.site-table tbody tr td {text-align: center;}
.site-table tbody tr td .layui-btn+.layui-btn{margin-left: 0px;}
.admin-table-page {position: fixed;z-index: 19940201;bottom: 0;width: 100%;background-color: #eee;border-bottom: 1px solid #ddd;left: 0px;}
.admin-table-page .page{padding-left:20px;}
.admin-table-page .page .layui-laypage {margin: 6px 0 0 0;}
.table-hover tbody tr:hover{ background-color: #EEEEEE; }
.admin-table{
}
.admin-table .layui-form-checkbox{
margin-top: 0;
height: 20px;
line-height: 20px;
}
.table-tit .layui-form-label{ width:85px;}
input{ vertical-align: middle;height: 30px; border-width: 1px;
border-style: solid;
background-color: #fff;
border-radius: 2px;
width: 100%; border-color: #e6e6e6; }
.table-tit input{text-indent:10px;}
.table-tit td{ font-size:14px; padding: 9px 9px;}
.table-tit th{ padding: 9px 9px;}
.table-tit td textarea{
width: 85% !important; height: 40px; min-height: 40px;}
textarea{min-height: 100px;
height: auto;
line-height: 20px;
padding: 6px 10px;border-width: 1px;
border-style: solid;
background-color: #fff;
border-radius: 2px;width: 90%; border-color: #e6e6e6;}
select{
border: 1px solid #e3e3e3; height: 30px; background:#fff; position: relative;}
select:hover{background:#fff;}
select{
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
background: url("../images/select.png") no-repeat scroll 95% center #fff;
}
select:hover{
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
background: url("../images/select.png") no-repeat scroll 95% center #fff;
}
/*
.tfield-lx:hover{ background: url("../images/select.png") no-repeat scroll 95px center #fff;}
.tfield-lx{ background: url("../images/select.png") no-repeat scroll 95px center #fff;}
.tfield-if{background: url("../images/select.png") no-repeat scroll 50px center #fff;}
.tfield-if:hover{background: url("../images/select.png") no-repeat scroll 50px center #fff;}
.tfield-all{background: url("../images/select.png") no-repeat scroll 96% center #fff;}
.tfield-all:hover{background: url("../images/select.png") no-repeat scroll 96% center #fff;}*/
input[type=radio],input[type=checkbox] {
display: inline-block;
vertical-align: middle;
width: 17px;
height: 17px;
-webkit-appearance: none;
background-color: transparent;
border: 0;
outline: 0 !important;
line-height: 20px;
color: #d8d8d8;
}
input[type=radio]:after {
content: "";
display:block;
width: 17px;
height: 17px;
border-radius: 50%;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border:1px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:after {
content: "";
display:block;
width: 17px;
height: 17px;
text-align: center;
line-height: 14px;
font-size: 16px;
color: #fff;
border:1px solid #ddd;
background-color: #fff;
box-sizing:border-box;
}
input[type=checkbox]:checked:after {
border:4px solid #ddd;
background-color: #5FB878;
content: "\e605";
}
input[type=radio]:checked:after {
content: "L";
transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
-webkit-transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);
border-color: #37AF6E;
background-color: #37AF6E;
}
.btn-station div:nth-child(1){margin-left:10px;}
| 0.12638 | 0.122052 |
width: 1100px;
height: 40px;
position: relative;
margin-left: auto; margin-right: auto;
}
#mainmenu_menu > .left {
position: absolute;
left: 0; top: 0;
height: 40px;
width: 9px;
background: url('../gfx/mainmenu_left.png');
}
#mainmenu_menu > .right {
position: absolute;
right: 0; top: 0;
height: 40px;
width: 9px;
background: url('../gfx/mainmenu_right.png');
}
#mainmenu_menu > .center {
position: absolute;
left: 9px; right: 9px; top: 0;
height: 40px;
line-height: 40px;
background: url('../gfx/mainmenu_sample.gif') repeat-x;
}
#mainmenu_menu > .center .element {
float: left;
}
#mainmenu_menu > .center .ellipsis {
float: left;
width: 4px; height: 40px;
background: url('../gfx/topmenu/sep.gif');
}
#mainmenu_menu > .center > .right {
height: 21px;
margin-top: 9px;
float: right;
}
/* przerozniste rzeczy do logowania sie */
#mainmenu_menu > .center > .right input.textbox {
display: block;
float: left;
margin-left: 10px;
height: 21px;
width: 89px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/pole_logowanie.gif');
font-size: 10px;
padding-left: 3px;
color: white;
}
#mainmenu_menu > .center > .right input.submitbox {
height: 21px;
margin-left: 10px;
margin-right: 35px;
float: left;
width: 56px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/button_loguj.gif');
}
#mainmenu_menu > .center > .right input.submitbox:hover { background: url('../gfx/topmenu/button_loguj_p.gif'); }
/* rzeczy do wylogowywania sie */
#mainmenu_menu > .center > .right .label {
height: 21px;
line-height: 21px;
float: left;
font-size: 14px;
color: rgb(226, 127, 34);
font-weight: bold;
}
#mainmenu_menu > .center > .right .logout {
height: 21px;
margin-left: 10px;
margin-right: 35px;
float: left;
width: 65px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/button_wyloguj.gif');
}
#mainmenu_menu > .center > .right .logout:hover { background: url('../gfx/topmenu/button_wyloguj_p.gif'); }
/* przerozne elementy menu */
#mm_glowna {
width: 93px; height: 40px;
background: url('../gfx/topmenu/button_glowna.png');
}
#mm_glowna:hover { background: url('../gfx/topmenu/button_glowna_p.png'); }
#mm_konto {
width: 84px; height: 40px;
background: url('../gfx/topmenu/button_konto.png');
}
#mm_konto:hover { background: url('../gfx/topmenu/button_konto_p.png'); }
#mm_dodaj {
width: 80px; height: 40px;
background: url('../gfx/topmenu/button_dodaj.png');
}
#mm_dodaj:hover { background: url('../gfx/topmenu/button_dodaj_p.png'); }
#mm_szukaj {
width: 55px; height: 40px;
background: url('../gfx/topmenu/button_szukaj.png');
}
#mm_szukaj:hover { background: url('../gfx/topmenu/button_szukaj_p.png'); }
#mm_ruzytkownikow {
width: 140px; height: 40px;
background: url('../gfx/topmenu/button_ruserzy.png');
}
#mm_ruzytkownikow:hover { background: url('../gfx/topmenu/button_ruserzy_p.png'); }
#mm_rbarow {
width: 106px; height: 40px;
background: url('../gfx/topmenu/button_rbary.png');
}
#mm_rbarow:hover { background: url('../gfx/topmenu/button_rbary_p.png'); }
#mm_juve {
width: 107px; height: 40px;
background: url('../gfx/topmenu/button_juwenalia.png');
}
#mm_juve:hover { background: url('../gfx/topmenu/button_juwenalia_p.png'); }
|
css/mainmenu.css
|
width: 1100px;
height: 40px;
position: relative;
margin-left: auto; margin-right: auto;
}
#mainmenu_menu > .left {
position: absolute;
left: 0; top: 0;
height: 40px;
width: 9px;
background: url('../gfx/mainmenu_left.png');
}
#mainmenu_menu > .right {
position: absolute;
right: 0; top: 0;
height: 40px;
width: 9px;
background: url('../gfx/mainmenu_right.png');
}
#mainmenu_menu > .center {
position: absolute;
left: 9px; right: 9px; top: 0;
height: 40px;
line-height: 40px;
background: url('../gfx/mainmenu_sample.gif') repeat-x;
}
#mainmenu_menu > .center .element {
float: left;
}
#mainmenu_menu > .center .ellipsis {
float: left;
width: 4px; height: 40px;
background: url('../gfx/topmenu/sep.gif');
}
#mainmenu_menu > .center > .right {
height: 21px;
margin-top: 9px;
float: right;
}
/* przerozniste rzeczy do logowania sie */
#mainmenu_menu > .center > .right input.textbox {
display: block;
float: left;
margin-left: 10px;
height: 21px;
width: 89px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/pole_logowanie.gif');
font-size: 10px;
padding-left: 3px;
color: white;
}
#mainmenu_menu > .center > .right input.submitbox {
height: 21px;
margin-left: 10px;
margin-right: 35px;
float: left;
width: 56px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/button_loguj.gif');
}
#mainmenu_menu > .center > .right input.submitbox:hover { background: url('../gfx/topmenu/button_loguj_p.gif'); }
/* rzeczy do wylogowywania sie */
#mainmenu_menu > .center > .right .label {
height: 21px;
line-height: 21px;
float: left;
font-size: 14px;
color: rgb(226, 127, 34);
font-weight: bold;
}
#mainmenu_menu > .center > .right .logout {
height: 21px;
margin-left: 10px;
margin-right: 35px;
float: left;
width: 65px;
border: none; padding: 0 0 0 0;
background: url('../gfx/topmenu/button_wyloguj.gif');
}
#mainmenu_menu > .center > .right .logout:hover { background: url('../gfx/topmenu/button_wyloguj_p.gif'); }
/* przerozne elementy menu */
#mm_glowna {
width: 93px; height: 40px;
background: url('../gfx/topmenu/button_glowna.png');
}
#mm_glowna:hover { background: url('../gfx/topmenu/button_glowna_p.png'); }
#mm_konto {
width: 84px; height: 40px;
background: url('../gfx/topmenu/button_konto.png');
}
#mm_konto:hover { background: url('../gfx/topmenu/button_konto_p.png'); }
#mm_dodaj {
width: 80px; height: 40px;
background: url('../gfx/topmenu/button_dodaj.png');
}
#mm_dodaj:hover { background: url('../gfx/topmenu/button_dodaj_p.png'); }
#mm_szukaj {
width: 55px; height: 40px;
background: url('../gfx/topmenu/button_szukaj.png');
}
#mm_szukaj:hover { background: url('../gfx/topmenu/button_szukaj_p.png'); }
#mm_ruzytkownikow {
width: 140px; height: 40px;
background: url('../gfx/topmenu/button_ruserzy.png');
}
#mm_ruzytkownikow:hover { background: url('../gfx/topmenu/button_ruserzy_p.png'); }
#mm_rbarow {
width: 106px; height: 40px;
background: url('../gfx/topmenu/button_rbary.png');
}
#mm_rbarow:hover { background: url('../gfx/topmenu/button_rbary_p.png'); }
#mm_juve {
width: 107px; height: 40px;
background: url('../gfx/topmenu/button_juwenalia.png');
}
#mm_juve:hover { background: url('../gfx/topmenu/button_juwenalia_p.png'); }
| 0.318379 | 0.050331 |
border: 0;
font-size: 10pt;
margin: 0 auto;
padding: 16px 0;
position: absolute;
text-align: center;
width: 100%;
z-index: 9999;
}
#cookie-law-info-again {
font-size: 10pt;
margin: 0;
padding: 2px 10px;
text-align: center;
z-index: 9999;
cursor: pointer;
}
#cookie-law-info-bar span {
vertical-align: middle;
}
/** Buttons (http://papermashup.com/demos/css-buttons) */
.cli-plugin-button, .cli-plugin-button:visited {
display: inline-block;
padding: 8px 16px 8px;
color: #fff;
text-decoration: none;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
position: relative;
cursor: pointer;
margin-left: 10px;
text-decoration: none;
}
.cli-plugin-button:hover {
background-color: #111;
color: #fff;
text-decoration: none;
}
.cli-plugin-button:active {
top: 1px;
}
.cli-plugin-main-link {
margin-left: 10px;
}
.small.cli-plugin-button, .small.cli-plugin-button:visited {
font-size: 11px;
}
.cli-plugin-button, .cli-plugin-button:visited,
.medium.cli-plugin-button, .medium.cli-plugin-button:visited {
font-size: 13px;
font-weight: 500;
line-height: 1;
}
.large.cli-plugin-button, .large.cli-plugin-button:visited {
font-size: 14px;
padding: 8px 14px 9px;
}
.super.cli-plugin-button, .super.cli-plugin-button:visited {
font-size: 34px;
padding: 8px 14px 9px;
}
.pink.cli-plugin-button, .magenta.cli-plugin-button:visited {
background-color: #e22092;
}
.pink.cli-plugin-button:hover {
background-color: #c81e82;
}
.green.cli-plugin-button, .green.cli-plugin-button:visited {
background-color: #91bd09;
}
.green.cli-plugin-button:hover {
background-color: #749a02;
}
.red.cli-plugin-button, .red.cli-plugin-button:visited {
background-color: #e62727;
}
.red.cli-plugin-button:hover {
background-color: #cf2525;
}
.orange.cli-plugin-button, .orange.cli-plugin-button:visited {
background-color: #ff5c00;
}
.orange.cli-plugin-button:hover {
background-color: #d45500;
}
.blue.cli-plugin-button, .blue.cli-plugin-button:visited {
background-color: #2981e4;
}
.blue.cli-plugin-button:hover {
background-color: #2575cf;
}
.yellow.cli-plugin-button, .yellow.cli-plugin-button:visited {
background-color: #ffb515;
}
.yellow.cli-plugin-button:hover {
background-color: #fc9200;
}
|
front_assets/js/revslider/css/cli-style-1.6.5.css
|
border: 0;
font-size: 10pt;
margin: 0 auto;
padding: 16px 0;
position: absolute;
text-align: center;
width: 100%;
z-index: 9999;
}
#cookie-law-info-again {
font-size: 10pt;
margin: 0;
padding: 2px 10px;
text-align: center;
z-index: 9999;
cursor: pointer;
}
#cookie-law-info-bar span {
vertical-align: middle;
}
/** Buttons (http://papermashup.com/demos/css-buttons) */
.cli-plugin-button, .cli-plugin-button:visited {
display: inline-block;
padding: 8px 16px 8px;
color: #fff;
text-decoration: none;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
position: relative;
cursor: pointer;
margin-left: 10px;
text-decoration: none;
}
.cli-plugin-button:hover {
background-color: #111;
color: #fff;
text-decoration: none;
}
.cli-plugin-button:active {
top: 1px;
}
.cli-plugin-main-link {
margin-left: 10px;
}
.small.cli-plugin-button, .small.cli-plugin-button:visited {
font-size: 11px;
}
.cli-plugin-button, .cli-plugin-button:visited,
.medium.cli-plugin-button, .medium.cli-plugin-button:visited {
font-size: 13px;
font-weight: 500;
line-height: 1;
}
.large.cli-plugin-button, .large.cli-plugin-button:visited {
font-size: 14px;
padding: 8px 14px 9px;
}
.super.cli-plugin-button, .super.cli-plugin-button:visited {
font-size: 34px;
padding: 8px 14px 9px;
}
.pink.cli-plugin-button, .magenta.cli-plugin-button:visited {
background-color: #e22092;
}
.pink.cli-plugin-button:hover {
background-color: #c81e82;
}
.green.cli-plugin-button, .green.cli-plugin-button:visited {
background-color: #91bd09;
}
.green.cli-plugin-button:hover {
background-color: #749a02;
}
.red.cli-plugin-button, .red.cli-plugin-button:visited {
background-color: #e62727;
}
.red.cli-plugin-button:hover {
background-color: #cf2525;
}
.orange.cli-plugin-button, .orange.cli-plugin-button:visited {
background-color: #ff5c00;
}
.orange.cli-plugin-button:hover {
background-color: #d45500;
}
.blue.cli-plugin-button, .blue.cli-plugin-button:visited {
background-color: #2981e4;
}
.blue.cli-plugin-button:hover {
background-color: #2575cf;
}
.yellow.cli-plugin-button, .yellow.cli-plugin-button:visited {
background-color: #ffb515;
}
.yellow.cli-plugin-button:hover {
background-color: #fc9200;
}
| 0.291384 | 0.04807 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin-top: 80px;
font-family: 'Montserrat', sans-serif;
}
a {
text-decoration: none;
}
/* NAVBAR */
#navbar {
position: fixed;
height: 80px;
width: 100%;
top: 0;
left: 0;
background-color: #145A32;
text-align: right;
}
#navbar ul {
display: flex;
list-style: none;
justify-content: flex-end;
width: 80%;
margin: 0 auto;
}
#navbar ul li {
margin: 1.6rem;
font-size: 1.5rem;
}
#navbar ul li a {
color: white;
}
/* WELCOME SECTION */
#welcome-section {
height: 100vh;
background-color: #566573;
}
#welcome-section h1 {
text-align: center;
color: white;
font-size: 3rem;
padding-top: 40vh;
}
#welcome-section p {
text-align: center;
color: white;
font-size: 1.5rem;
margin-top: 1rem;
}
/* PROJECTS */
#projects {
min-height: 100vh;
padding-top: 80px;
background-color: #ABEBC6;
}
#projects h1 {
text-align: center;
padding-top: 2rem;
padding-bottom: 2rem;
color: #222;
font-size: 3rem;
}
.projects-list {
display: flex;
flex-wrap: wrap;
width: 80%;
margin:auto;
justify-content: space-evenly;
}
.project-tile {
flex: 0 1 30%;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: center;
margin: 1rem;
padding: 1rem;
}
.project-tile img {
width: 100%;
height: 80%;
margin-bottom: 2rem;
border: 2px solid #222;
}
.projects-list a {
font-size: 1.7rem;
font-weight: bold;
color: #222;
}
/* CONTACT */
#contact {
height: 100vh;
padding-top: 80px;
background-color: #566573;
color: white;
}
#contact h1 {
text-align: center;
font-size: 3rem;
margin-top: 20rem;
}
#contact ul {
list-style: none;
display: flex;
justify-content: center;
}
#contact li {
padding: 3rem;
}
#contact li a {
font-size: 1.5rem;
color: inherit;
}
/* FOOTER */
footer {
height: 150px;
border-top: 7px solid #145A32;
background-color: #566573;
}
footer p {
text-align: center;
margin-top: 45px;
font-size: 2rem;
color: white;
}
@media (max-width: 1200px) {
.projects-list {
flex-direction: column;
}
}
|
Personal Portfolio Webpage/style.css
|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin-top: 80px;
font-family: 'Montserrat', sans-serif;
}
a {
text-decoration: none;
}
/* NAVBAR */
#navbar {
position: fixed;
height: 80px;
width: 100%;
top: 0;
left: 0;
background-color: #145A32;
text-align: right;
}
#navbar ul {
display: flex;
list-style: none;
justify-content: flex-end;
width: 80%;
margin: 0 auto;
}
#navbar ul li {
margin: 1.6rem;
font-size: 1.5rem;
}
#navbar ul li a {
color: white;
}
/* WELCOME SECTION */
#welcome-section {
height: 100vh;
background-color: #566573;
}
#welcome-section h1 {
text-align: center;
color: white;
font-size: 3rem;
padding-top: 40vh;
}
#welcome-section p {
text-align: center;
color: white;
font-size: 1.5rem;
margin-top: 1rem;
}
/* PROJECTS */
#projects {
min-height: 100vh;
padding-top: 80px;
background-color: #ABEBC6;
}
#projects h1 {
text-align: center;
padding-top: 2rem;
padding-bottom: 2rem;
color: #222;
font-size: 3rem;
}
.projects-list {
display: flex;
flex-wrap: wrap;
width: 80%;
margin:auto;
justify-content: space-evenly;
}
.project-tile {
flex: 0 1 30%;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: center;
margin: 1rem;
padding: 1rem;
}
.project-tile img {
width: 100%;
height: 80%;
margin-bottom: 2rem;
border: 2px solid #222;
}
.projects-list a {
font-size: 1.7rem;
font-weight: bold;
color: #222;
}
/* CONTACT */
#contact {
height: 100vh;
padding-top: 80px;
background-color: #566573;
color: white;
}
#contact h1 {
text-align: center;
font-size: 3rem;
margin-top: 20rem;
}
#contact ul {
list-style: none;
display: flex;
justify-content: center;
}
#contact li {
padding: 3rem;
}
#contact li a {
font-size: 1.5rem;
color: inherit;
}
/* FOOTER */
footer {
height: 150px;
border-top: 7px solid #145A32;
background-color: #566573;
}
footer p {
text-align: center;
margin-top: 45px;
font-size: 2rem;
color: white;
}
@media (max-width: 1200px) {
.projects-list {
flex-direction: column;
}
}
| 0.347426 | 0.076442 |
body {
background: #cee0f0;
font-size: 16px;
padding-top: 60px;
}
.ui.top.menu .item img {
border-radius: 4px;
}
.hidden {
display: none !important;
}
.small {
font-size: 14px;
}
pre.small {
font-size: 14px;
line-height: 16px;
}
pre.debug {
font-size: 14px;
line-height: 16px;
box-shadow: 0 0 0 1px #ccc inset, 0 0 0 0 transparent;
padding: 0.5em 0.8em;
border-radius: .28571429rem;
background: #fafafa;
}
#header-graphic {
max-width: 600px;
margin-top: -60px;
margin-bottom: -80px;
z-index: -1000;
position: relative;
}
#header-graphic img {
max-width: 600px;
width: 100%;
}
.single-column {
margin: 0 auto;
max-width: 600px;
}
section.content {
padding: 10px;
border-radius: 4px;
border: 1px #abcce9 solid;
background: #fff;
margin-bottom: 12px;
overflow: hidden;
overflow-wrap: break-word;
}
section.content.code {
background: #eee;
font-size: 14px;
line-height: 16px;
}
section.content h4 {
margin: 0;
margin-top: 1em;
}
@media(max-width: 616px) {
section.content {
margin-left: 8px;
margin-right: 8px;
}
}
section.content textarea {
border: 1px #abcce9 solid;
border-radius: 4px;
padding: 7px;
-webkit-box-shadow: inset 0px 0px 6px 2px #e0edf9;
-moz-box-shadow: inset 0px 0px 6px 2px #e0edf9;
box-shadow: inset 0px 0px 6px 2px #e0edf9;
}
#notification-list pre {
max-height: 300px;
overflow-y: scroll;
}
.result-list {
list-style-type: none;
margin: 0;
margin-top: 1em;
padding: 0;
}
.ui.circular.label.prompt {
box-shadow: inset 0 0 10px #aaa;
cursor: pointer;
}
.step_instructions {
padding-left: 28px;
font-size: 0.8em;
}
.endpoint-details a {
display: none;
}
.endpoint-details:hover a {
display: inline-block;
}
.implementation-features {
margin: 1em 0;
}
.implementation-features td {
padding: 2px 4px;
}
.implementation-features .num {
text-align: right;
font-size: 1.5em;
font-weight: bold;
color: #999;
}
.implementation-features .even-row {
background-color: #eee;
}
.implementation-features .even-row .ui.label {
background-color: #dbdbdb;
}
.implementation-features .small {
font-size: 12px;
line-height: 1.3em;
}
#report-details td {
padding: 2px;
}
section.h-entry .e-content {
font-size: 1.25em;
line-height: 1.3em;
}
section.h-entry .p-author {
text-align: right;
font-style: italic;
}
section.h-entry .p-author:before {
content: "- ";
}
section.h-entry time {
color: #888;
font-size: 0.75em;
}
|
public/assets/style.css
|
body {
background: #cee0f0;
font-size: 16px;
padding-top: 60px;
}
.ui.top.menu .item img {
border-radius: 4px;
}
.hidden {
display: none !important;
}
.small {
font-size: 14px;
}
pre.small {
font-size: 14px;
line-height: 16px;
}
pre.debug {
font-size: 14px;
line-height: 16px;
box-shadow: 0 0 0 1px #ccc inset, 0 0 0 0 transparent;
padding: 0.5em 0.8em;
border-radius: .28571429rem;
background: #fafafa;
}
#header-graphic {
max-width: 600px;
margin-top: -60px;
margin-bottom: -80px;
z-index: -1000;
position: relative;
}
#header-graphic img {
max-width: 600px;
width: 100%;
}
.single-column {
margin: 0 auto;
max-width: 600px;
}
section.content {
padding: 10px;
border-radius: 4px;
border: 1px #abcce9 solid;
background: #fff;
margin-bottom: 12px;
overflow: hidden;
overflow-wrap: break-word;
}
section.content.code {
background: #eee;
font-size: 14px;
line-height: 16px;
}
section.content h4 {
margin: 0;
margin-top: 1em;
}
@media(max-width: 616px) {
section.content {
margin-left: 8px;
margin-right: 8px;
}
}
section.content textarea {
border: 1px #abcce9 solid;
border-radius: 4px;
padding: 7px;
-webkit-box-shadow: inset 0px 0px 6px 2px #e0edf9;
-moz-box-shadow: inset 0px 0px 6px 2px #e0edf9;
box-shadow: inset 0px 0px 6px 2px #e0edf9;
}
#notification-list pre {
max-height: 300px;
overflow-y: scroll;
}
.result-list {
list-style-type: none;
margin: 0;
margin-top: 1em;
padding: 0;
}
.ui.circular.label.prompt {
box-shadow: inset 0 0 10px #aaa;
cursor: pointer;
}
.step_instructions {
padding-left: 28px;
font-size: 0.8em;
}
.endpoint-details a {
display: none;
}
.endpoint-details:hover a {
display: inline-block;
}
.implementation-features {
margin: 1em 0;
}
.implementation-features td {
padding: 2px 4px;
}
.implementation-features .num {
text-align: right;
font-size: 1.5em;
font-weight: bold;
color: #999;
}
.implementation-features .even-row {
background-color: #eee;
}
.implementation-features .even-row .ui.label {
background-color: #dbdbdb;
}
.implementation-features .small {
font-size: 12px;
line-height: 1.3em;
}
#report-details td {
padding: 2px;
}
section.h-entry .e-content {
font-size: 1.25em;
line-height: 1.3em;
}
section.h-entry .p-author {
text-align: right;
font-style: italic;
}
section.h-entry .p-author:before {
content: "- ";
}
section.h-entry time {
color: #888;
font-size: 0.75em;
}
| 0.287068 | 0.092278 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import "animations.css";
:root {
--primary-color: rgb(142, 202, 230);
--secondary-color: rgb(2, 48, 71);
--background-color: rgba(201, 238, 255, 0.9);
--background-color-no-opacity: rgb(201, 238, 255);
}
* {
margin: 0;
padding: 0;
font-family: "Poppins";
box-sizing: border-box;
}
body {
background-image: url(../img/background.svg);
background-repeat: no-repeat;
background-position-y: 15%;
background-size: cover;
min-height: 100vh;
}
.main-container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
/* LOGIN */
.login-container {
height: 600px;
width: 1000px;
display: flex;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.login-left-side {
flex-grow: 1;
background-image: url(../img/loginBackground.svg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.login-left-side-container {
padding: 50px;
text-align: right;
display: flex;
justify-content: space-between;
flex-direction: column;
height: 100%;
color: white;
}
.title-container {
font-size: 30px;
animation-name: slideDown;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
}
.subtitle-container {
margin-bottom: 60px;
font-size: 25px;
animation-name: slideDown;
animation-delay: 0.5s;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
opacity: 0;
}
.group-container {
font-size: 20px;
margin-bottom: 20px;
animation-name: slideDown;
animation-delay: 1s;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
opacity: 0;
}
.login-right-side {
background-color: var(--background-color);
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
width: 0;
animation-name: widthUp;
animation-delay: 1.5s;
animation-duration: 2s;
animation-fill-mode: forwards;
}
.login-right-side-container {
padding: 50px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
opacity: 0;
animation-name: opacityUp;
animation-delay: 1.7s;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.title-login {
font-size: 30px;
color: var(--secondary-color);
margin-bottom: 10px;
}
.form-container {
position: relative;
}
.form-container label {
font-size: 20px;
color: var(--secondary-color);
}
.labelEmail,
.labelPass {
position: relative;
z-index: -1;
top: 35px;
transition: 300ms all;
}
.input-container:focus-within .labelEmail,
.input-container:focus-within .labelPass {
top: 0;
transition: 300ms all ease-in;
}
.input-container {
margin-bottom: 20px;
}
.input-container input {
border: none;
font-size: 20px;
width: 100%;
margin-top: 10px;
padding: 5px;
}
.button-container {
margin-top: 50px;
padding: 0 50px;
}
.button-container button {
width: 100%;
border-radius: 0;
border: none;
font-size: 20px;
color: white;
background-color: #006aa5;
padding: 5px 15px;
margin: 5px;
cursor: pointer;
}
/* SIGN UP */
.sign-up-container {
height: 600px;
width: 1000px;
display: none;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
background: linear-gradient(#013654, #006aa5);
}
.sign-up-form {
z-index: 0;
width: 65%;
padding: 0 25px;
margin: auto;
margin-top: 50px;
}
/* OUR PRODUCTS */
.items-container {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
display: none;
height: 600px;
width: 1000px;
overflow-y: auto;
background: linear-gradient(#013654, #006aa5);
}
header {
display: flex;
background-color: var(--background-color);
justify-content: space-between;
padding: 10px;
font-size: 20px;
text-align: center;
}
.items-list {
display: flex;
padding: 20px;
justify-content: space-evenly;
flex-wrap: wrap;
}
.single-product {
width: 275px;
text-align: center;
background-color: var(--background-color-no-opacity);
padding: 10px;
margin: 10px;
}
.product-title {
font-size: 11px;
margin-bottom: 10px;
}
.product-image img {
width: 100%;
height: 170px;
}
.product-description {
font-size: 16px;
color: var(--secondary-color);
font-weight: bold;
}
.product-description p span {
font-weight: normal;
}
.product-actions {
margin-top: 5px;
}
.product-actions button {
width: 100%;
border: none;
background-color: var(--secondary-color);
color: white;
font-weight: bold;
padding: 5px;
cursor: pointer;
}
.items-list div label {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
#goToCart {
cursor: pointer;
margin-right: 7px;
}
#logout {
cursor: pointer;
}
/* CART */
.cart-container {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
height: 600px;
width: 1000px;
background: linear-gradient(#013654, #006aa5);
overflow: auto;
display: none;
}
header img {
cursor: pointer;
}
.empty-div {
width: 55px;
height: 60px;
}
.cart-section {
display: flex;
padding: 20px;
}
.cart-list {
flex-grow: 1;
margin-right: 20px;
}
.cart-item {
background-color: var(--primary-color);
display: flex;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.item-image {
margin-right: 20px;
}
.item-description {
flex-grow: 1;
}
.cart-total {
width: 350px;
}
.cart-total-container {
position: sticky;
top: 25px;
}
.checkout {
width: 100%;
background-color: white;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.buying-image {
text-align: center;
}
|
frontend/public/css/style.css
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import "animations.css";
:root {
--primary-color: rgb(142, 202, 230);
--secondary-color: rgb(2, 48, 71);
--background-color: rgba(201, 238, 255, 0.9);
--background-color-no-opacity: rgb(201, 238, 255);
}
* {
margin: 0;
padding: 0;
font-family: "Poppins";
box-sizing: border-box;
}
body {
background-image: url(../img/background.svg);
background-repeat: no-repeat;
background-position-y: 15%;
background-size: cover;
min-height: 100vh;
}
.main-container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
/* LOGIN */
.login-container {
height: 600px;
width: 1000px;
display: flex;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.login-left-side {
flex-grow: 1;
background-image: url(../img/loginBackground.svg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.login-left-side-container {
padding: 50px;
text-align: right;
display: flex;
justify-content: space-between;
flex-direction: column;
height: 100%;
color: white;
}
.title-container {
font-size: 30px;
animation-name: slideDown;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
}
.subtitle-container {
margin-bottom: 60px;
font-size: 25px;
animation-name: slideDown;
animation-delay: 0.5s;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
opacity: 0;
}
.group-container {
font-size: 20px;
margin-bottom: 20px;
animation-name: slideDown;
animation-delay: 1s;
animation-duration: 1s;
animation-fill-mode: forwards;
position: relative;
opacity: 0;
}
.login-right-side {
background-color: var(--background-color);
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
width: 0;
animation-name: widthUp;
animation-delay: 1.5s;
animation-duration: 2s;
animation-fill-mode: forwards;
}
.login-right-side-container {
padding: 50px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
opacity: 0;
animation-name: opacityUp;
animation-delay: 1.7s;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.title-login {
font-size: 30px;
color: var(--secondary-color);
margin-bottom: 10px;
}
.form-container {
position: relative;
}
.form-container label {
font-size: 20px;
color: var(--secondary-color);
}
.labelEmail,
.labelPass {
position: relative;
z-index: -1;
top: 35px;
transition: 300ms all;
}
.input-container:focus-within .labelEmail,
.input-container:focus-within .labelPass {
top: 0;
transition: 300ms all ease-in;
}
.input-container {
margin-bottom: 20px;
}
.input-container input {
border: none;
font-size: 20px;
width: 100%;
margin-top: 10px;
padding: 5px;
}
.button-container {
margin-top: 50px;
padding: 0 50px;
}
.button-container button {
width: 100%;
border-radius: 0;
border: none;
font-size: 20px;
color: white;
background-color: #006aa5;
padding: 5px 15px;
margin: 5px;
cursor: pointer;
}
/* SIGN UP */
.sign-up-container {
height: 600px;
width: 1000px;
display: none;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
background: linear-gradient(#013654, #006aa5);
}
.sign-up-form {
z-index: 0;
width: 65%;
padding: 0 25px;
margin: auto;
margin-top: 50px;
}
/* OUR PRODUCTS */
.items-container {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
display: none;
height: 600px;
width: 1000px;
overflow-y: auto;
background: linear-gradient(#013654, #006aa5);
}
header {
display: flex;
background-color: var(--background-color);
justify-content: space-between;
padding: 10px;
font-size: 20px;
text-align: center;
}
.items-list {
display: flex;
padding: 20px;
justify-content: space-evenly;
flex-wrap: wrap;
}
.single-product {
width: 275px;
text-align: center;
background-color: var(--background-color-no-opacity);
padding: 10px;
margin: 10px;
}
.product-title {
font-size: 11px;
margin-bottom: 10px;
}
.product-image img {
width: 100%;
height: 170px;
}
.product-description {
font-size: 16px;
color: var(--secondary-color);
font-weight: bold;
}
.product-description p span {
font-weight: normal;
}
.product-actions {
margin-top: 5px;
}
.product-actions button {
width: 100%;
border: none;
background-color: var(--secondary-color);
color: white;
font-weight: bold;
padding: 5px;
cursor: pointer;
}
.items-list div label {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
#goToCart {
cursor: pointer;
margin-right: 7px;
}
#logout {
cursor: pointer;
}
/* CART */
.cart-container {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
height: 600px;
width: 1000px;
background: linear-gradient(#013654, #006aa5);
overflow: auto;
display: none;
}
header img {
cursor: pointer;
}
.empty-div {
width: 55px;
height: 60px;
}
.cart-section {
display: flex;
padding: 20px;
}
.cart-list {
flex-grow: 1;
margin-right: 20px;
}
.cart-item {
background-color: var(--primary-color);
display: flex;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.item-image {
margin-right: 20px;
}
.item-description {
flex-grow: 1;
}
.cart-total {
width: 350px;
}
.cart-total-container {
position: sticky;
top: 25px;
}
.checkout {
width: 100%;
background-color: white;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.buying-image {
text-align: center;
}
| 0.35354 | 0.060502 |
@font-face {
font-family: "Itim";
src: url("fonts/Itim-Regular.ttf") format("truetype");
}
.dot_black {
height: 20px;
width: 20px;
background-image: url("image/greenball.png");
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
}
.dot_gray {
height: 20px;
width: 20px;
background-image: url("image/redball.png");
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
}
.cirlce {
height: 101px;
width: 101px;
background-color: rgba(98, 54, 34, 0.685);
border-radius: 50%;
margin: 3.1px;
display: flex;
justify-content: center;
align-content: center;
text-align: center;
flex-wrap: wrap;
float: left;
}
.clear {
clear: both;
}
.rectangle {
height: 305px;
width: 75px;
background-color: rgba(98, 54, 34, 0.685);
border-radius: 10px;
}
#overlayOda {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(51, 68, 67, 0.8);
z-index: 2;
cursor: pointer;
color: aliceblue;
}
#overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(51, 68, 67, 0.8);
z-index: 2;
cursor: pointer;
color: aliceblue;
}
#overlayText {
position: absolute;
top: 50%;
left: 50%;
font-size: 50px;
color: white;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.kenar {
border: double 5px #ffe268;
border-color: #ffe268;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
font-family: "Itim";
}
.disKenar {
font-family: "Itim";
padding-bottom: 15px;
}
.odaCerceve {
height: 100%;
padding-top: 30%;
justify-content: center;
align-content: center;
text-align: center;
}
.overlayTitle {
text-align: center;
font-size: 25px;
color: #ffe268;
text-shadow: 1.5px 1.5px #a87414;
margin-bottom: 10px;
}
body {
font-family: "Itim";
font-size: 1rem;
min-height: 100vh;
background-image: linear-gradient(
to right bottom,
#334443,
#334443,
#334443,
#334443,
#334443
);
margin: 0;
}
#user1 {
height: 70px;
background-color: #ed664c;
border-bottom-left-radius: 40px;
margin: 0;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
margin-bottom: 20px;
color: #334443;
font-family: "Itim";
font-size: 20px;
align-items: center;
display: flex;
}
#user2 {
height: 70px;
background-color: #ffe268;
border-top-right-radius: 40px;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
margin: 0;
margin-top: 20px;
color: #334443;
font-family: "Itim";
font-size: 20px;
align-items: center;
display: flex;
float: left;
}
#tahta {
height: 362px;
margin: 0;
}
.container-fluid {
padding: 0;
}
#tahtaCerceve {
width: 90%;
height: 95%;
margin-right: auto;
margin-left: auto;
margin-top: 1%;
padding-top: 0.75%;
background-color: #894c30;
-webkit-box-shadow: 0px 0px 23px 8px rgba(0, 0, 0, 0.85);
box-shadow: 0px 0px 23px 8px rgba(0, 0, 0, 0.85);
}
#tahtaGorunum {
width: 98%;
height: 98%;
margin-right: auto;
margin-left: auto;
background-image: url("image/woodtexture.jpg");
background-repeat: no-repeat;
background-size: cover;
padding: 10px;
}
.hazine1 {
width: 9%;
height: 90%;
margin-right: 1%;
}
.hazine2 {
width: 9%;
height: 90%;
margin-left: 1%;
}
.boncuklar {
width: 80%;
height: 90%;
align-items: center;
}
.boncuklar1 {
width: 100%;
height: 100%;
margin-top: 25px;
}
.boncuklar2 {
width: 100%;
height: 100%;
margin-top: 40px;
}
#geriButonuIcon {
width: 50px;
height: 50px;
background-image: url("image/geri.png");
background-repeat: no-repeat;
background-size: cover;
}
.toast {
margin-top: 30px;
font-size: 15px;
color: #c6ffc1;
font-family: "Itim";
}
.oda {
margin-top: 55px;
color: #c6ffc1;
font-size: 20px;
font-family: "Itim";
}
#text {
position: absolute;
top: 40%;
left: 50%;
font-size: 50px;
text-align: center;
color: white;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
font-family: "Itim";
}
:root {
--backgroundColor: rgba(246, 241, 209);
--colorShadeA: rgb(88, 112, 85);
--colorShadeB: rgb(88, 112, 85);
--colorShadeC: rgb(187, 240, 182, 94);
--colorShadeD: rgb(197, 252, 192, 99);
--colorShadeE: rgb(198, 255, 193, 100);
}
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");
* {
box-sizing: border-box;
}
*::before,
*::after {
box-sizing: border-box;
}
button {
position: relative;
display: inline-block;
cursor: pointer;
outline: none;
border: 0;
vertical-align: middle;
text-decoration: none;
font-size: 11px;
color: var(--colorShadeA);
font-weight: 700;
text-transform: uppercase;
font-family: inherit;
width: 130px;
}
button.big-button {
padding: 1em 2em;
border: 2px solid var(--colorShadeA);
border-radius: 1em;
background: var(--colorShadeE);
transform-style: preserve-3d;
transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--colorShadeC);
border-radius: inherit;
box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
transform: translate3d(0, 0.75em, -1em);
transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button:hover {
background: var(--colorShadeD);
transform: translate(0, 0.375em);
}
button.big-button:hover::before {
transform: translate3d(0, 0.75em, -1em);
}
button.big-button:active {
transform: translate(0em, 0.75em);
}
button.big-button:active::before {
transform: translate3d(0, 0, -1em);
box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);
}
#toasts {
bottom: 10px;
right: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.toast {
background-color: #c6ffc1;
border-radius: 10px;
padding: 1rem 2rem;
margin: 0.5rem;
}
.toast.info {
color: #334443;
}
|
assets/gameArea.css
|
@font-face {
font-family: "Itim";
src: url("fonts/Itim-Regular.ttf") format("truetype");
}
.dot_black {
height: 20px;
width: 20px;
background-image: url("image/greenball.png");
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
}
.dot_gray {
height: 20px;
width: 20px;
background-image: url("image/redball.png");
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
}
.cirlce {
height: 101px;
width: 101px;
background-color: rgba(98, 54, 34, 0.685);
border-radius: 50%;
margin: 3.1px;
display: flex;
justify-content: center;
align-content: center;
text-align: center;
flex-wrap: wrap;
float: left;
}
.clear {
clear: both;
}
.rectangle {
height: 305px;
width: 75px;
background-color: rgba(98, 54, 34, 0.685);
border-radius: 10px;
}
#overlayOda {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(51, 68, 67, 0.8);
z-index: 2;
cursor: pointer;
color: aliceblue;
}
#overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(51, 68, 67, 0.8);
z-index: 2;
cursor: pointer;
color: aliceblue;
}
#overlayText {
position: absolute;
top: 50%;
left: 50%;
font-size: 50px;
color: white;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.kenar {
border: double 5px #ffe268;
border-color: #ffe268;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
font-family: "Itim";
}
.disKenar {
font-family: "Itim";
padding-bottom: 15px;
}
.odaCerceve {
height: 100%;
padding-top: 30%;
justify-content: center;
align-content: center;
text-align: center;
}
.overlayTitle {
text-align: center;
font-size: 25px;
color: #ffe268;
text-shadow: 1.5px 1.5px #a87414;
margin-bottom: 10px;
}
body {
font-family: "Itim";
font-size: 1rem;
min-height: 100vh;
background-image: linear-gradient(
to right bottom,
#334443,
#334443,
#334443,
#334443,
#334443
);
margin: 0;
}
#user1 {
height: 70px;
background-color: #ed664c;
border-bottom-left-radius: 40px;
margin: 0;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
margin-bottom: 20px;
color: #334443;
font-family: "Itim";
font-size: 20px;
align-items: center;
display: flex;
}
#user2 {
height: 70px;
background-color: #ffe268;
border-top-right-radius: 40px;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
margin: 0;
margin-top: 20px;
color: #334443;
font-family: "Itim";
font-size: 20px;
align-items: center;
display: flex;
float: left;
}
#tahta {
height: 362px;
margin: 0;
}
.container-fluid {
padding: 0;
}
#tahtaCerceve {
width: 90%;
height: 95%;
margin-right: auto;
margin-left: auto;
margin-top: 1%;
padding-top: 0.75%;
background-color: #894c30;
-webkit-box-shadow: 0px 0px 23px 8px rgba(0, 0, 0, 0.85);
box-shadow: 0px 0px 23px 8px rgba(0, 0, 0, 0.85);
}
#tahtaGorunum {
width: 98%;
height: 98%;
margin-right: auto;
margin-left: auto;
background-image: url("image/woodtexture.jpg");
background-repeat: no-repeat;
background-size: cover;
padding: 10px;
}
.hazine1 {
width: 9%;
height: 90%;
margin-right: 1%;
}
.hazine2 {
width: 9%;
height: 90%;
margin-left: 1%;
}
.boncuklar {
width: 80%;
height: 90%;
align-items: center;
}
.boncuklar1 {
width: 100%;
height: 100%;
margin-top: 25px;
}
.boncuklar2 {
width: 100%;
height: 100%;
margin-top: 40px;
}
#geriButonuIcon {
width: 50px;
height: 50px;
background-image: url("image/geri.png");
background-repeat: no-repeat;
background-size: cover;
}
.toast {
margin-top: 30px;
font-size: 15px;
color: #c6ffc1;
font-family: "Itim";
}
.oda {
margin-top: 55px;
color: #c6ffc1;
font-size: 20px;
font-family: "Itim";
}
#text {
position: absolute;
top: 40%;
left: 50%;
font-size: 50px;
text-align: center;
color: white;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
font-family: "Itim";
}
:root {
--backgroundColor: rgba(246, 241, 209);
--colorShadeA: rgb(88, 112, 85);
--colorShadeB: rgb(88, 112, 85);
--colorShadeC: rgb(187, 240, 182, 94);
--colorShadeD: rgb(197, 252, 192, 99);
--colorShadeE: rgb(198, 255, 193, 100);
}
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");
* {
box-sizing: border-box;
}
*::before,
*::after {
box-sizing: border-box;
}
button {
position: relative;
display: inline-block;
cursor: pointer;
outline: none;
border: 0;
vertical-align: middle;
text-decoration: none;
font-size: 11px;
color: var(--colorShadeA);
font-weight: 700;
text-transform: uppercase;
font-family: inherit;
width: 130px;
}
button.big-button {
padding: 1em 2em;
border: 2px solid var(--colorShadeA);
border-radius: 1em;
background: var(--colorShadeE);
transform-style: preserve-3d;
transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--colorShadeC);
border-radius: inherit;
box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
transform: translate3d(0, 0.75em, -1em);
transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button:hover {
background: var(--colorShadeD);
transform: translate(0, 0.375em);
}
button.big-button:hover::before {
transform: translate3d(0, 0.75em, -1em);
}
button.big-button:active {
transform: translate(0em, 0.75em);
}
button.big-button:active::before {
transform: translate3d(0, 0, -1em);
box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);
}
#toasts {
bottom: 10px;
right: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.toast {
background-color: #c6ffc1;
border-radius: 10px;
padding: 1rem 2rem;
margin: 0.5rem;
}
.toast.info {
color: #334443;
}
| 0.361052 | 0.092811 |
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro|Open+Sans|Lato:400,700&subset=latin,latin-ext);
body {
font-family: 'Open Sans', Calibri, helvetica, sans-serif;
}
.CodeMirror pre, div.prompt, pre, code {
font-family: 'Source Code Pro', 'Lucida Console', Consolas, monospace;
}
/* General Cleanup of backgrounds and borders */
/* Header area */
#header div.navbar-inner {
border: 0px;
box-shadow: none;
}
#menubar-container div.navbar-inner {
border: 0px;
background: #eee;
box-shadow: none;
}
#notebook_panel {
border-top: none;
-webkit-box-shadow: none;
box-shadow: none !important;
background-color: white;
}
#menubar .navbar-inner {
background: #fff;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
border: none;
}
div.navbar-inner {
min-height: 30px;
}
div.navbar-fixed-top div.navbar-inner, div.navbar-static-top div.navbar-inner {
box-shadow: none;
-webkit-box-shadow: none;
border: none;
}
#menubar .navbar .navbar-inner, .toolbar-inner {
padding-left: 0;
padding-right: 0;
}
#notebook_name {
font-weight: 700;
}
#checkpoint_status, #autosave_status {
color: rgba(0,0,0,0.5);
font-size: smaller !important;
}
/* Hide some commands - cell toolbar, and interrupt kernel buttons */
#maintoolbar span.navbar-text, #ctb_select, #interrupt_b {
display: none;
}
/* Indicator for command mode to complement the existing indicator for edit mode. */
.command_mode_icon:before {
content: "\f069";
}
/* Specific to notebook pages */
body.notebook_app #header div.navbar-inner {
background-color: #eee;
}
body.notebook_app #site {
background-color: #eee;
}
body.notebook_app #menubar-container .btn {
background: #fafafa;
-webkit-box-shadow: none;
box-shadow: none;
border: solid 1px #d0d0d0;
}
body.notebook_app #notebook {
border-top: 1px solid rgba(0,0,0,0.15);
}
/* Notebook area - Input and output areas */
div.input_area {
border-color: rgba(0,0,0,0.05);
background: rbga(0,0,0,0.5);
}
div.prompt.input_prompt {
color: rgba(0,0,0,0.75);
}
div.cell.command_mode.selected {
border-color: rgba(0,0,0,0.1);
}
div.cell.edit_mode.selected {
border-color: rgba(0,0,0,0.15);
box-shadow: 0px 0px 5px #d0d0d0;
-webkit-box-shadow: 0px 0px 5px #d0d0d0;
}
div.output_scroll {
box-sizing: border-box;
-webkit-box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
border-radius: 2px;
}
div.out_prompt_overlay:hover {
border: solid 1px rgba(0,0,0,0.1);
box-shadow: none;
}
div.text_cell div.prompt {
width: 0px;
min-width: 0px;
padding-right: 0px;
}
div.code_cell + div.text_cell {
margin-top: 10px;
}
/* Notebook area - Markdown cells */
div.text_cell_render {
font-size: 11pt;
line-height: 125%;
}
div.text_cell_render h1,
div.text_cell_render h2,
div.text_cell_render h3 {
font-weight: 300;
}
div.text_cell_render h4,
div.text_cell_render h5,
div.text_cell_render h6 {
font-weight: 700;
font-size: 12pt;
}
div.text_cell_render h1 {
font-size: 24pt;
}
div.text_cell_render h2 {
font-size: 20pt;
}
div.text_cell_render h3 {
font-size: 16pt;
}
div.text_cell_render code {
font-size: 11pt;
}
/* Notebook area - rendered output */
.rendered_html pre, .rendered_html code {
font-size: medium;
}
.rendered_html ol {
list-style:decimal;
margin: 1em 2em;
}
/* Home page specific */
#ipython-main-app #tabs li:nth-child(3) {
display: none;
}
|
bin/custom/custom.css
|
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro|Open+Sans|Lato:400,700&subset=latin,latin-ext);
body {
font-family: 'Open Sans', Calibri, helvetica, sans-serif;
}
.CodeMirror pre, div.prompt, pre, code {
font-family: 'Source Code Pro', 'Lucida Console', Consolas, monospace;
}
/* General Cleanup of backgrounds and borders */
/* Header area */
#header div.navbar-inner {
border: 0px;
box-shadow: none;
}
#menubar-container div.navbar-inner {
border: 0px;
background: #eee;
box-shadow: none;
}
#notebook_panel {
border-top: none;
-webkit-box-shadow: none;
box-shadow: none !important;
background-color: white;
}
#menubar .navbar-inner {
background: #fff;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
border: none;
}
div.navbar-inner {
min-height: 30px;
}
div.navbar-fixed-top div.navbar-inner, div.navbar-static-top div.navbar-inner {
box-shadow: none;
-webkit-box-shadow: none;
border: none;
}
#menubar .navbar .navbar-inner, .toolbar-inner {
padding-left: 0;
padding-right: 0;
}
#notebook_name {
font-weight: 700;
}
#checkpoint_status, #autosave_status {
color: rgba(0,0,0,0.5);
font-size: smaller !important;
}
/* Hide some commands - cell toolbar, and interrupt kernel buttons */
#maintoolbar span.navbar-text, #ctb_select, #interrupt_b {
display: none;
}
/* Indicator for command mode to complement the existing indicator for edit mode. */
.command_mode_icon:before {
content: "\f069";
}
/* Specific to notebook pages */
body.notebook_app #header div.navbar-inner {
background-color: #eee;
}
body.notebook_app #site {
background-color: #eee;
}
body.notebook_app #menubar-container .btn {
background: #fafafa;
-webkit-box-shadow: none;
box-shadow: none;
border: solid 1px #d0d0d0;
}
body.notebook_app #notebook {
border-top: 1px solid rgba(0,0,0,0.15);
}
/* Notebook area - Input and output areas */
div.input_area {
border-color: rgba(0,0,0,0.05);
background: rbga(0,0,0,0.5);
}
div.prompt.input_prompt {
color: rgba(0,0,0,0.75);
}
div.cell.command_mode.selected {
border-color: rgba(0,0,0,0.1);
}
div.cell.edit_mode.selected {
border-color: rgba(0,0,0,0.15);
box-shadow: 0px 0px 5px #d0d0d0;
-webkit-box-shadow: 0px 0px 5px #d0d0d0;
}
div.output_scroll {
box-sizing: border-box;
-webkit-box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
border-radius: 2px;
}
div.out_prompt_overlay:hover {
border: solid 1px rgba(0,0,0,0.1);
box-shadow: none;
}
div.text_cell div.prompt {
width: 0px;
min-width: 0px;
padding-right: 0px;
}
div.code_cell + div.text_cell {
margin-top: 10px;
}
/* Notebook area - Markdown cells */
div.text_cell_render {
font-size: 11pt;
line-height: 125%;
}
div.text_cell_render h1,
div.text_cell_render h2,
div.text_cell_render h3 {
font-weight: 300;
}
div.text_cell_render h4,
div.text_cell_render h5,
div.text_cell_render h6 {
font-weight: 700;
font-size: 12pt;
}
div.text_cell_render h1 {
font-size: 24pt;
}
div.text_cell_render h2 {
font-size: 20pt;
}
div.text_cell_render h3 {
font-size: 16pt;
}
div.text_cell_render code {
font-size: 11pt;
}
/* Notebook area - rendered output */
.rendered_html pre, .rendered_html code {
font-size: medium;
}
.rendered_html ol {
list-style:decimal;
margin: 1em 2em;
}
/* Home page specific */
#ipython-main-app #tabs li:nth-child(3) {
display: none;
}
| 0.28279 | 0.08318 |
.ui_div {
display:inline-block;
color: #000;
font-size: 1.2em;
border-radius: 4px;
padding: 5px;
touch-action: none;
}
.ui_div_name{
vertical-align: middle;
}
.btn_delete_ui_node:hover{
color:black;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 25px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 10px;
height: 25px;
background: black;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 10px;
height: 25px;
background: black;
cursor: pointer;
}
.modal-dialog{
max-width: 80%;
}
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
.round {
position: relative;
}
.round label {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 50%;
cursor: pointer;
height: 28px;
left: 0;
position: absolute;
top: 0;
width: 28px;
}
.round input[type="checkbox"] {
visibility: hidden;
}
.round input[type="checkbox"]:checked + label {
background-color: #ff0000;
border-color: #ff0000;
}
.round input[type="checkbox"]:checked + label:after {
opacity: 1;
}
|
css/app.css
|
.ui_div {
display:inline-block;
color: #000;
font-size: 1.2em;
border-radius: 4px;
padding: 5px;
touch-action: none;
}
.ui_div_name{
vertical-align: middle;
}
.btn_delete_ui_node:hover{
color:black;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 25px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 10px;
height: 25px;
background: black;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 10px;
height: 25px;
background: black;
cursor: pointer;
}
.modal-dialog{
max-width: 80%;
}
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
.round {
position: relative;
}
.round label {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 50%;
cursor: pointer;
height: 28px;
left: 0;
position: absolute;
top: 0;
width: 28px;
}
.round input[type="checkbox"] {
visibility: hidden;
}
.round input[type="checkbox"]:checked + label {
background-color: #ff0000;
border-color: #ff0000;
}
.round input[type="checkbox"]:checked + label:after {
opacity: 1;
}
| 0.352982 | 0.054525 |
.quantityinput {
-webkit-appearance: none;
border: none;
text-align: center;
width: 5rem;
font-size: 1rem;
color: #43484D;
padding:0;
}
.minus {
padding: 0;
border:none;
}
.plus {
padding: 0;
border:none;
}
.delete {
margin-right: 3rem;
width: 2.5rem;
height: 2.5rem;
padding: 0;
border-radius: 100%;
}
.singleproductbox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
box-sizing: inherit;
position: relative;
padding: 2rem 0px;
padding-top: 0;
border-bottom: 1px lightslategrey;
}
.singleproduct{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
box-sizing: inherit;
display: grid;
grid-auto-flow: column;
grid-template-columns: 125px 1fr;
grid-gap: 15px;
-webkit-font-smoothing: antialiased;
}
.imagebox{
color: inherit;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
-webkit-tap-highlight-color: transparent;
position: relative;
overflow: hidden;
padding-top: 100%;
}
.image{
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
color: inherit;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
-webkit-tap-highlight-color: transparent;
box-sizing: inherit;
border: 0;
position: absolute;
width: 125;
height: 125;
top: 0;
left: 0;
z-index: 0;
}
.allinfobox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
position: relative;
min-width: 0;
display: grid;
grid-auto-flow: row;
}
.upinfo{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
overflow: hidden;
display: grid;
grid-auto-flow: column;
grid-gap: 15px;
}
.productdetails{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
min-width: 0;
padding-right: 15px;
margin-bottom: 0;
}
.quantitybox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
text-align: right;
box-sizing: inherit;
display: inline-block;
}
.downdetail{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
margin-bottom: -10px;
display: grid;
grid-auto-flow: column;
grid-template-areas: "a b";
}
.subtotal{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
grid-area: b;
align-self: end;
text-align: right;
padding-bottom: 14px;
align-content: bottom;
margin-top: 2rem;
}
.removebox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
grid-area: a;
align-self: end;
}
.removebutton{
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
font: inherit;
margin: 0;
-webkit-appearance: button;
box-sizing: border-box;
min-height: 40px;
outline: 0;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
font-size: 12px;
font-weight: bold;
letter-spacing: 0.5px;
line-height: 18px;
overflow: hidden;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
background-color: transparent;
cursor: pointer;
touch-action: manipulation;
user-select: none;
-webkit-tap-highlight-color: transparent;
padding: 8px 14px;
width: auto;
display: inline-flex;
margin-left: -15px;
position: relative;
top: 0;
right: 0;
border: none;
}
.removebutton :hover{
border:none;
}
.removebutton :active{
border:none;
}
|
src/components/cart/ProductCard/ProductCard.module.css
|
.quantityinput {
-webkit-appearance: none;
border: none;
text-align: center;
width: 5rem;
font-size: 1rem;
color: #43484D;
padding:0;
}
.minus {
padding: 0;
border:none;
}
.plus {
padding: 0;
border:none;
}
.delete {
margin-right: 3rem;
width: 2.5rem;
height: 2.5rem;
padding: 0;
border-radius: 100%;
}
.singleproductbox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
box-sizing: inherit;
position: relative;
padding: 2rem 0px;
padding-top: 0;
border-bottom: 1px lightslategrey;
}
.singleproduct{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
box-sizing: inherit;
display: grid;
grid-auto-flow: column;
grid-template-columns: 125px 1fr;
grid-gap: 15px;
-webkit-font-smoothing: antialiased;
}
.imagebox{
color: inherit;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
-webkit-tap-highlight-color: transparent;
position: relative;
overflow: hidden;
padding-top: 100%;
}
.image{
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
color: inherit;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
-webkit-tap-highlight-color: transparent;
box-sizing: inherit;
border: 0;
position: absolute;
width: 125;
height: 125;
top: 0;
left: 0;
z-index: 0;
}
.allinfobox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
position: relative;
min-width: 0;
display: grid;
grid-auto-flow: row;
}
.upinfo{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
overflow: hidden;
display: grid;
grid-auto-flow: column;
grid-gap: 15px;
}
.productdetails{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
min-width: 0;
padding-right: 15px;
margin-bottom: 0;
}
.quantitybox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
text-align: right;
box-sizing: inherit;
display: inline-block;
}
.downdetail{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
margin-bottom: -10px;
display: grid;
grid-auto-flow: column;
grid-template-areas: "a b";
}
.subtotal{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
grid-area: b;
align-self: end;
text-align: right;
padding-bottom: 14px;
align-content: bottom;
margin-top: 2rem;
}
.removebox{
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
box-sizing: inherit;
grid-area: a;
align-self: end;
}
.removebutton{
-webkit-text-size-adjust: 100%;
-webkit-box-direction: normal;
-webkit-font-smoothing: antialiased;
font: inherit;
margin: 0;
-webkit-appearance: button;
box-sizing: border-box;
min-height: 40px;
outline: 0;
font-family: Arial, "Arial Unicode MS", Helvetica, "DejaVu Sans", "Lucida Sans Unicode", sans-serif;
font-size: 12px;
font-weight: bold;
letter-spacing: 0.5px;
line-height: 18px;
overflow: hidden;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
background-color: transparent;
cursor: pointer;
touch-action: manipulation;
user-select: none;
-webkit-tap-highlight-color: transparent;
padding: 8px 14px;
width: auto;
display: inline-flex;
margin-left: -15px;
position: relative;
top: 0;
right: 0;
border: none;
}
.removebutton :hover{
border:none;
}
.removebutton :active{
border:none;
}
| 0.459804 | 0.073596 |
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
}
@media only screen and (max-width: 1400px){
#listen-content-grid{
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 1200px){
#listen-content-grid{
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 900px){
#listen-content-grid{
grid-template-columns: 1fr;
}
}
.composition-title-box{
text-align: center;
border-radius: 2px;
padding: 0;
/* border: 1px solid black; */
box-shadow: 4px 4px 20px 2px rgb(204, 204, 204);
color: white;
background-size: 100% 100%;
transition: background-size .1s ease-in;
background-repeat: no-repeat;
width: 100%;
}
.composition-title-box:hover{
background-size: 133% 133%;
}
.composition-title-box-overlay{
background: linear-gradient(152deg, rgba(127, 127, 127, 0.50) 0%, rgba(0, 0, 0, 0.5) 0%);
height: 100%;
padding: 50px;
border-radius: 2px;
}
@media only screen and (max-width: 620px){
.composition-title-box-overlay{
padding: 10px;
}
.composition-display-box-overlay *{
letter-spacing: 0;
}
}
@keyframes title-box-flash{
0%{
background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0.5) 0%);
letter-spacing: 0em;
text-shadow: none;
}
10%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 10%, rgba(0, 0, 0, 0.5) 10%);}
20%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 20%, rgba(0, 0, 0, 0.5) 20%);}
30%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 30%, rgba(0, 0, 0, 0.5) 30%);}
40%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 40%, rgba(0, 0, 0, 0.5) 40%);}
50%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 50%, rgba(0, 0, 0, 0.5) 50%);}
60%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 60%, rgba(0, 0, 0, 0.5) 60%);}
70%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 70%, rgba(0, 0, 0, 0.5) 70%);}
80%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 80%, rgba(0, 0, 0, 0.5) 80%);}
90%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 90%, rgba(0, 0, 0, 0.5) 90%);}
100%{
background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 100%, rgba(0, 0, 0, 0.5) 100%);
letter-spacing: .6em;
text-shadow: 3px 2px 7px black;
}
}
@media (hover: hover){
.composition-title-box-overlay:hover{
animation-name: title-box-flash;
animation-duration: .2s;
animation-fill-mode: forwards;
}
}
.composition-title-box a{
text-decoration: none;
color: white;
}
.composition-title{
white-space: nowrap;
margin: 0;
}
.composition-subtitle{
white-space: nowrap;
margin: .5em 0 1.2em 0;
}
.composition-display-box{
margin-top: 1em;
text-align: center;
}
.composition-display-heading{
color: white;
padding: 0;
letter-spacing: 1em;
background-size: cover;
background-repeat: no-repeat;
border-radius: 4px;
text-shadow: 3px 2px 2px black;
}
@media only screen and (max-width: 500px){
.composition-display-heading{
background-position-y: 0 !important; /* override inline background image settings */
}
}
.composition-display-box-overlay{
background: rgba(0,0,0,0.15);
height: 100%;
border-radius: 2px;
padding: .65em 0;
}
.score-frame{
width: 100%;
min-height: 50em;
max-height: 1200px;
margin-top: 10px;
border:none;
}
|
src/css/Listen.css
|
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
}
@media only screen and (max-width: 1400px){
#listen-content-grid{
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 1200px){
#listen-content-grid{
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 900px){
#listen-content-grid{
grid-template-columns: 1fr;
}
}
.composition-title-box{
text-align: center;
border-radius: 2px;
padding: 0;
/* border: 1px solid black; */
box-shadow: 4px 4px 20px 2px rgb(204, 204, 204);
color: white;
background-size: 100% 100%;
transition: background-size .1s ease-in;
background-repeat: no-repeat;
width: 100%;
}
.composition-title-box:hover{
background-size: 133% 133%;
}
.composition-title-box-overlay{
background: linear-gradient(152deg, rgba(127, 127, 127, 0.50) 0%, rgba(0, 0, 0, 0.5) 0%);
height: 100%;
padding: 50px;
border-radius: 2px;
}
@media only screen and (max-width: 620px){
.composition-title-box-overlay{
padding: 10px;
}
.composition-display-box-overlay *{
letter-spacing: 0;
}
}
@keyframes title-box-flash{
0%{
background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0.5) 0%);
letter-spacing: 0em;
text-shadow: none;
}
10%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 10%, rgba(0, 0, 0, 0.5) 10%);}
20%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 20%, rgba(0, 0, 0, 0.5) 20%);}
30%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 30%, rgba(0, 0, 0, 0.5) 30%);}
40%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 40%, rgba(0, 0, 0, 0.5) 40%);}
50%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 50%, rgba(0, 0, 0, 0.5) 50%);}
60%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 60%, rgba(0, 0, 0, 0.5) 60%);}
70%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 70%, rgba(0, 0, 0, 0.5) 70%);}
80%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 80%, rgba(0, 0, 0, 0.5) 80%);}
90%{background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 90%, rgba(0, 0, 0, 0.5) 90%);}
100%{
background: linear-gradient(152deg, rgba(0, 0, 0, 0.33) 100%, rgba(0, 0, 0, 0.5) 100%);
letter-spacing: .6em;
text-shadow: 3px 2px 7px black;
}
}
@media (hover: hover){
.composition-title-box-overlay:hover{
animation-name: title-box-flash;
animation-duration: .2s;
animation-fill-mode: forwards;
}
}
.composition-title-box a{
text-decoration: none;
color: white;
}
.composition-title{
white-space: nowrap;
margin: 0;
}
.composition-subtitle{
white-space: nowrap;
margin: .5em 0 1.2em 0;
}
.composition-display-box{
margin-top: 1em;
text-align: center;
}
.composition-display-heading{
color: white;
padding: 0;
letter-spacing: 1em;
background-size: cover;
background-repeat: no-repeat;
border-radius: 4px;
text-shadow: 3px 2px 2px black;
}
@media only screen and (max-width: 500px){
.composition-display-heading{
background-position-y: 0 !important; /* override inline background image settings */
}
}
.composition-display-box-overlay{
background: rgba(0,0,0,0.15);
height: 100%;
border-radius: 2px;
padding: .65em 0;
}
.score-frame{
width: 100%;
min-height: 50em;
max-height: 1200px;
margin-top: 10px;
border:none;
}
| 0.26588 | 0.162979 |
.mobile-menu {
display: none;
cursor: pointer;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
@media (max-width: 550px){
body{
overflow-x: hidden;
}
header{
/* background-color: rgba(49, 49, 40, 0.1); */
background-color: rgb(247, 247, 244);
z-index: 10;
position: fixed;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
background-color: rgba(162, 163, 81, 0.158);
height: 65px;
}
#logo{
height: 53px;
margin-top: 10px;
margin-left: 10%;
}
.nav-list {
margin-top: 0;
position: absolute;
top: 8vh;
/* right: 0; */
width: 50vw;
height: 80vh;
background-color: rgba(49, 49, 40, 0.897);
/* background-color: rgb(247, 247, 244);
z-index: 10; */
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(200%);
transition: transform 0.3s ease-in;
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
margin-right: 10%;
background-color: #61616154;
background-color: rgba(49, 49, 40, 0.192);
}
main{
margin: auto;
margin-top: 105px ;
height: 165px;
width: 90%;
margin-bottom: 40%;
}
#litros{
height: 65%;
width: 20%;
font-size: 100%;
}
#botao{
color: white;
background-color: green;
border-color: white;
height: 90%;
width: 17%;
margin-top: 0px;
padding: 0.5%;
border-radius: 25px;
font-size: 45%;
}
article{
width: 85%;
margin-top: 20%;
margin-left:7%;
font-family: 'Fira Sans', sans-serif;
}
article h2{
padding-bottom: 5%;
font-size: 130%;
color: #616161;
font-weight: bold;
text-align: justify;
}
article p{
line-height: 160%;
font-size: 110%;
text-align: justify;
color: #616161;
}
#conteudo ul{
list-style:disc;
display: inline;
font-size: 110%;
color: #616161;
}
#leia-mais{
display: inline;
background-color: rgba(235, 238, 230, 0.466);
/* height: 150px; */
width: 80%;
justify-content: space-between;
}
.pags{
width: 70%;
margin: auto;
}
.nav-paginas h3{
font-size: 100%;
padding-bottom: 14%;
}
#text-leiaMais{
margin-bottom: 8%;
}
#link-litros{
text-align: right;
font-size: 100%;
}
.rodape{
height: 105px;
}
}
.nav-list.active{
transform: translateX(100%);
}
@keyframes navLinkFade {
from {
/* display: none; */
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0%);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
/* background-color: rgba(162, 163, 81, 0.158);
color: #34aeb4;
#lista-nav a:hover{
color: rgba(201, 16, 16, 0.5);
*/
|
responsividade.css
|
.mobile-menu {
display: none;
cursor: pointer;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
@media (max-width: 550px){
body{
overflow-x: hidden;
}
header{
/* background-color: rgba(49, 49, 40, 0.1); */
background-color: rgb(247, 247, 244);
z-index: 10;
position: fixed;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
background-color: rgba(162, 163, 81, 0.158);
height: 65px;
}
#logo{
height: 53px;
margin-top: 10px;
margin-left: 10%;
}
.nav-list {
margin-top: 0;
position: absolute;
top: 8vh;
/* right: 0; */
width: 50vw;
height: 80vh;
background-color: rgba(49, 49, 40, 0.897);
/* background-color: rgb(247, 247, 244);
z-index: 10; */
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(200%);
transition: transform 0.3s ease-in;
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
margin-right: 10%;
background-color: #61616154;
background-color: rgba(49, 49, 40, 0.192);
}
main{
margin: auto;
margin-top: 105px ;
height: 165px;
width: 90%;
margin-bottom: 40%;
}
#litros{
height: 65%;
width: 20%;
font-size: 100%;
}
#botao{
color: white;
background-color: green;
border-color: white;
height: 90%;
width: 17%;
margin-top: 0px;
padding: 0.5%;
border-radius: 25px;
font-size: 45%;
}
article{
width: 85%;
margin-top: 20%;
margin-left:7%;
font-family: 'Fira Sans', sans-serif;
}
article h2{
padding-bottom: 5%;
font-size: 130%;
color: #616161;
font-weight: bold;
text-align: justify;
}
article p{
line-height: 160%;
font-size: 110%;
text-align: justify;
color: #616161;
}
#conteudo ul{
list-style:disc;
display: inline;
font-size: 110%;
color: #616161;
}
#leia-mais{
display: inline;
background-color: rgba(235, 238, 230, 0.466);
/* height: 150px; */
width: 80%;
justify-content: space-between;
}
.pags{
width: 70%;
margin: auto;
}
.nav-paginas h3{
font-size: 100%;
padding-bottom: 14%;
}
#text-leiaMais{
margin-bottom: 8%;
}
#link-litros{
text-align: right;
font-size: 100%;
}
.rodape{
height: 105px;
}
}
.nav-list.active{
transform: translateX(100%);
}
@keyframes navLinkFade {
from {
/* display: none; */
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0%);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
/* background-color: rgba(162, 163, 81, 0.158);
color: #34aeb4;
#lista-nav a:hover{
color: rgba(201, 16, 16, 0.5);
*/
| 0.326164 | 0.054324 |
.main-menu {
position: fixed;
top:0;
left: 0;
height: 100vh;
width: 100vw;
background: white;
opacity:0;
animation: fadeIn ease-in-out 500ms;
-webkit-animation: fadeIn ease-in-out 500ms;
-moz-animation: fadeIn ease-in-out 500ms;
-o-animation: fadeIn ease-in-out 500ms;
-ms-animation: fadeIn ease-in-out 500ms;
animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
-o-animation-fill-mode: forwards;
-ms-animation-fill-mode: forwards;
}
.main-menu > .container {
position: relative;
}
@media (min-width: 768px) {
.main-menu {
background: rgba(0,0,0,.8);
}
.main-menu:before {
content: '';
display: block;
position: absolute;
top:0; left:0;
background: white;
width: 50%;
height: 100vh;
width: 50vw;
}
.nav-link,
.nav-link h3 {
color: white !important;
}
}
.main-menu--right a,
.main-menu--right .btn-link {
color: white;
}
.open-close-icon {
position: fixed;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
padding: 5px;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid #DEDEDE;
background: white;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}
.open-close-icon span {
display: block;
position: relative;
height: 8px;
border-radius: 2px;
width: 100%;
background: rgb(32,178,170);
opacity: 1;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
-webkit-transition-origin: center center;
-moz-transition-origin: center center;
-o-transition-origin: center center;
transform-origin: center center;
}
.open-close-icon.open span:nth-child(1) {
-webkit-transform: translateY(15px) rotate(45deg);
-moz-transform: translateY(15px) rotate(45deg);
-o-transform: translateY(15px) rotate(45deg);
transform: translateY(15px) rotate(45deg);
}
.open-close-icon.open span:nth-child(2) {
width: 0%;
opacity: 0;
}
.open-close-icon.open span:nth-child(3) {
-webkit-transform: translateY(-15px) rotate(-45deg);
-moz-transform: translateY(-15px) rotate(-45deg);
-o-transform: translateY(-15px) rotate(-45deg);
transform: translateY(-15px) rotate(-45deg);
}
@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;}
}
|
Shared/Components/MainMenu/MainMenu.razor.css
|
.main-menu {
position: fixed;
top:0;
left: 0;
height: 100vh;
width: 100vw;
background: white;
opacity:0;
animation: fadeIn ease-in-out 500ms;
-webkit-animation: fadeIn ease-in-out 500ms;
-moz-animation: fadeIn ease-in-out 500ms;
-o-animation: fadeIn ease-in-out 500ms;
-ms-animation: fadeIn ease-in-out 500ms;
animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
-o-animation-fill-mode: forwards;
-ms-animation-fill-mode: forwards;
}
.main-menu > .container {
position: relative;
}
@media (min-width: 768px) {
.main-menu {
background: rgba(0,0,0,.8);
}
.main-menu:before {
content: '';
display: block;
position: absolute;
top:0; left:0;
background: white;
width: 50%;
height: 100vh;
width: 50vw;
}
.nav-link,
.nav-link h3 {
color: white !important;
}
}
.main-menu--right a,
.main-menu--right .btn-link {
color: white;
}
.open-close-icon {
position: fixed;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
padding: 5px;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid #DEDEDE;
background: white;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}
.open-close-icon span {
display: block;
position: relative;
height: 8px;
border-radius: 2px;
width: 100%;
background: rgb(32,178,170);
opacity: 1;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
-webkit-transition-origin: center center;
-moz-transition-origin: center center;
-o-transition-origin: center center;
transform-origin: center center;
}
.open-close-icon.open span:nth-child(1) {
-webkit-transform: translateY(15px) rotate(45deg);
-moz-transform: translateY(15px) rotate(45deg);
-o-transform: translateY(15px) rotate(45deg);
transform: translateY(15px) rotate(45deg);
}
.open-close-icon.open span:nth-child(2) {
width: 0%;
opacity: 0;
}
.open-close-icon.open span:nth-child(3) {
-webkit-transform: translateY(-15px) rotate(-45deg);
-moz-transform: translateY(-15px) rotate(-45deg);
-o-transform: translateY(-15px) rotate(-45deg);
transform: translateY(-15px) rotate(-45deg);
}
@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;}
}
| 0.445047 | 0.058453 |
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
background: white ;
font-size: 12px;
margin: 0;
padding: 0;
}
body, .ui-dialog, input {
font-family: Arial,Helvetica,Verdana,sans-serif !important;
}
img {
border:0;
}
a {
color: #5755D2;
text-decoration: none;
outline: none;
}
a:hover {
text-decoration: underline;
}
#xava_loading {
padding: 5px;
border: none;
background: white;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
-moz-border-bottom-left-radius: 5px;
-moz-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
color: black;
font-weight: bold;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
display:none;
z-index: 9999999;
position: fixed;
top: -1px;
left: 45%
}
#xava_processing_layer {
position:absolute;
right: calc(50% - 120px);
top: calc(50% - 120px);
z-index: 999999999;
background: white;
padding: 30px;
font-weight: bold;
text-align: center;
}
#xava_processing_layer img {
margin-top: 5px;
}
.ie #xava_processing_layer {
border: 1px solid #C6C6C6;
}
.xava_placeholder {
background: #F5F5F5;
}
.xava_dropped {
box-shadow: 0 0 7px #CCCCCC;
}
.xava_handle {
cursor: move;
}
#main_navigation {
z-index: 999999999;
background: black;
padding: 10px;
height: 15px;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
}
#main_navigation A {
color: #BABABA;
text-decoration: none;
padding-right: 15px;
}
#main_navigation A:hover {
color: white;
}
#main_navigation A.selected {
color: white;
font-weight: bold;
}
#main_navigation_left {
position: relative;
top: -14px;
overflow: hidden;
width: calc(100% - 50px);
width: -moz-calc(100% - 50px);
width: -webkit-calc(100% - 50px);
}
.main-navigation-left-without-all-modules {
left: -5px;
}
.main-navigation-left-with-all-modules {
left: 50px;
}
#main_navigation_right {
float: right;
position: relative;
top: -29px;
right: 0px;
padding-left: 20px;
margin-bottom: -29px;
}
.ie #main_navigation_right {
top: -27px;
}
#main_navigation_right_bridge1 {
background-color: rgba(0, 0, 0, 0.2);
}
#main_navigation_right_bridge2 {
background-color: rgba(0, 0, 0, 0.6);
}
#main_navigation_right_content A {
padding-right: 0px;
}
#main_navigation_right_content {
background-color: black;
padding-left: 15px;
}
.sign-in {
font-weight: bold;
}
.sign-out {
color: white;
float: right;
}
A.sign-out {
padding-right: 0px;
}
.sing-in A:hover {
color: white;
}
A#show_modules:HOVER {
color: #191919;
}
#modules_list {
display: none;
vertical-align: top;
}
#modules_list, #modules_list_outbox, #modules_list_header {
width: 300px;
}
#modules_list A {
text-decoration: none;
}
#modules_list_popup {
position: relative;
left: 0px;
top: 0px;
z-index: 0;
margin: 4px 0px 4px 4px;
padding: 0px;
border-color: #CCCCCC;
border-style: solid;
border-radius: 10px;
border-width: thick;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
}
#NO_MODULE_module {
display: none;
}
#modules_list_corner {
position: absolute;
top: -22px;
}
#modules_list_outbox {
overflow: hidden;
}
#modules_list_box {
position: relative;
top: 0;
left: 0;
}
#modules_list_box TD {
vertical-align: top;
padding: 0;
}
.module-row, .folder-row {
border-top: 1px solid #CCCCCC;
padding: 10px;
}
.folder-name {
font-size: 16px;
}
.folder-icon {
float: right;
opacity: 0.25;
background-image: url("../images/right.png");
background-position: right;
background-repeat: no-repeat;
}
.folder-row:HOVER .folder-icon {
opacity: 0.75;
}
#back_folder {
padding-top: 4px;
font-size: 12px;
float: left;
}
#back_folder_counterweight {
float: right;
width: 60px;
}
#search_modules {
margin: 3px;
padding: 2px;
}
#search_modules INPUT {
width: 280px;
}
#xava_search_columns {
margin-bottom: 5px;
}
#xava_search_columns_text {
width: calc(100% - 13px);
padding-left: 7px;
}
#xava_add_columns, .ox-icons-list {
max-height: 70vh;
margin-bottom: 5px;
overflow-y: auto;
}
#modules_list_header, #modules_list_search_header {
padding: 5px 5px 5px 0px;
background-color: #CCCCCC;
color: #6F6F6F;
font-weight: bold;
font-size: 16px;
text-align: center;
margin-left: -1px;
margin-right: -1px;
}
#modules_list_search_header {
display: none;
}
#search_modules_text, #xava_search_columns_text {
background-image: url("../images/search.png");
background-position: right;
background-repeat: no-repeat;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#modules_list .selected {
background: #3777D7;
}
#more_modules {
font-weight: bold;
line-height: 30px;
vertical-align: middle;
}
a #loading_more_modules {
color: #6F6F6F;
}
A:hover .module-row, A:hover .folder-row {
background: #DFF4FF;
}
.module-name, .folder-row {
font-weight: bold;
color: black;
}
.module-description {
color: #9EA8AD;
}
.selected .module-name, .selected .module-description {
color: white;
}
input[type="text"], input[type="password"], input[type="file"], select, textarea,
.ui-widget input[type="text"], .ui-widget input[type="password"], .ui-widget input[type="file"],
.ui-widget select, .ui-widget textarea {
border-color: #CCC;
border-style: solid;
border-width: 1px;
box-shadow: rgba(0, 0, 0, 0.046875) 0px 1px 3px 0px inset, rgba(255, 255, 255, 0.0742188) 0px 1px 0px 0px;
font-size: 13px;
outline-color: black;
outline-style: none;
outline-width: 0px;
border-radius: 4px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
input[type="text"], input[type="password"], input[type="file"], textarea {
padding: 4px;
}
input[type="text"], input[type="password"], input[type="file"] {
height: 20px;
}
.ox-radio-buttons {
margin: 10px 0px 10px 0px;
}
input[type="radio"] {
margin: 4px 0px 4px 10px;
vertical-align: middle;
}
.ox-list-subheader input[type="text"] {
height: 28px;
}
select:not([multiple]) {
height: 30px;
padding: 5px;
}
.ox-label {
vertical-align: middle;
}
.ox-editor-wrapper {
padding: 1px 12px 5px 0px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus, select:focus, textarea:focus {
outline: 0;
border-color: #56b4ef;
-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
}
.module-wrapper {
}
#module_description {
padding: 10px 10px 10px 10px;
font-size: 20px;
}
#bookmark {
margin-left: 5px;
}
.bookmark-decoration {
width: 10px;
height: 10px;
}
.ox-button-bar, .ox-collection-list-actions {
background: #F5F5F5;
margin-left: -1px;
margin-right: -1px;
min-height: 15px;
border-top: 1px solid #CCCCCC;
box-shadow: 0px 2px 7px #CCCCCC;
-moz-box-shadow: 0px 2px 7px #CCCCCC;
-webkit-box-shadow: 0px 2px 7px #CCCCCC;
}
.ox-button-bar {
padding: 9px 10px 11px 10px;
}
.ox-collection-list-actions {
padding: 10px 10px 10px 10px;
}
.ox-button-bar .ox-button-bar-button a, .ox-button-bar-mode-button,
.ox-collection-list-actions .ox-button-bar-button a {
border: 1px solid transparent;
padding: 6px 6px 6px 0px;
font-weight: bold;
text-decoration: none;
}
.ox-button-bar .ox-button-bar-button a, .ox-button-bar-mode-button,
.ox-collection-list-actions .ox-button-bar-button a, i, .ox-icon i.mdi-close-circle {
color: #6F6F6F;
}
.ox-button-bar .ox-button-bar-button a:hover,
.ox-collection-list-actions .ox-button-bar-button a:hover,
.ox-subcontroller-select a, .ox-list-formats i:hover {
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
padding: 6px 6px 6px 0px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ox-button-bar-button a span {
padding: 4px;
}
.ox-button-bar .ox-button-bar-button a:hover,
.ox-collection-list-actions .ox-button-bar-button a:hover,
.ox-subcontroller-select a,
i:hover, .ox-button-bar a:hover i, .ox-collection-list-actions a:hover i,
.ox-icon i.mdi-plus:hover, .ox-icon i.mdi-close-circle:hover
{
color: #191919;
}
.ox-button-bar .ox-button-bar-button a {
vertical-align: middle;
}
.ox-button-bar-mode-button {
border: none;
}
i {
vertical-align: -2px;
}
.mdi-border-color {
vertical-align: -4px;
}
.mdi-calendar, .mdi-calendar-clock, .ox-element-collection .mdi-calendar, .ox-element-collection .mdi-calendar-clock {
vertical-align: middle;
padding: 4px 4px 4px 0px;
margin-right: -20px;
}
.mdi-delete:hover {
color: red;
}
.ox-list-odd i, .ox-list-pair i {
vertical-align: -7px;
}
.ox-list-odd .mdi-check, .ox-list-pair .mdi-check {
vertical-align: middle;
color: black;
}
.ox-list-odd .ox-action-link, .ox-list-pair .ox-action-link {
vertical-align: -5px;
}
.ox-list-odd .ox-image-link img, .ox-list-pair .ox-image-link img {
vertical-align: -8px;
}
.ox-list-odd .mdi-border-color, .ox-list-pair .mdi-border-color {
vertical-align: -9px;
}
.ox-module i, .ui-dialog i {
font-size: 140%;
}
.ox-image-link i, .ox-list-header i {
padding: 4px;
}
.ox-frame-actions i {
font-size: 200%;
padding: 0;
margin: -5px;
}
.ox-images-gallery .ox-frame-title i {
font-size: 120%;
padding: 5px;
}
.ox-customize-controls i {
color: #6fc664;
}
.ox-customize-controls i:hover {
color: green;
}
.mdi-filter-remove {
margin-left: 1px;
margin-right: -1px;
}
.ox-button-bar .ox-button-bar-button i, .ox-collection-list-actions i {
margin-left: 5px;
}
.ox-list-formats i {
margin-top: -6px;
margin-left: -5px;
font-size: 150%;
padding: 5px;
border: 1px solid transparent;
}
.ox-list-formats i:hover {
padding: 5px;
}
.folder-name i {
color: #cccccc;
vertical-align: baseline;
margin-right: 3px;
}
.folder-row:hover i {
color: #6F6F6F;
}
.ox-list-formats a:hover, .ox-chart-type a:hover, .ox-customize-controls a, a.ox-image-link, .ox-help a {
text-decoration: none;
}
.ox-selected-list-format i, .ox-selected-list-format:hover i {
background: white;
border-radius: 2px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 0px 5px #CCCCCC inset;
}
a.ox-selected-list-format, a.ox-selected-list-format:hover {
pointer-events: none;
cursor: default;
}
.ox-total-row i {
font-size: 120%;
padding-bottom: 6px;
margin-right: -7px;
vertical-align: middle;
}
.ox-required-icon, .ox-error-icon {
width: 0px;
position: relative;
left: -1px;
color: #3777D7;
float: left;
}
.firefox .ox-layout-not-aligned-cell .ox-layout-editor-icons .ox-required-icon {
left: 2px;
}
.ie .ox-layout-not-aligned-cell .ox-layout-editor-icons .ox-required-icon {
left: 3px;
}
.ipad .ox-required-icon {
left: 2px;
}
.ie .ox-layout-aligned-cell .ox-layout-editor-icons .ox-required-icon {
top: -3px;
}
.ie .ox-layout-aligned-cell .ox-layout-editor-icons .ox-error-icon {
top: -5px;
}
i.ox-required-icon {
font-size: 100%;
color: #3777D7;
top: -9px;
}
i.ox-error-icon {
color: #DC4A38;
left: 13px;
font-size: 120%;
top: -11px;
}
.ox-frame-content > .ox-required-icon {
top: -4px;
left: -5px;
}
.ox-frame-content > span > .ox-error-icon {
top: -6px;
left: 9px;
}
input[type="button"], .ipad input[type="button"]:hover, A#show_modules {
padding: 10px;
margin-right: 4px;
font-size: 12px;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
cursor: pointer;
}
input[type="button"], .ipad input[type="button"]:hover {
margin-bottom: 8px;
}
.ui-dialog input[type="button"], .ui-dialog .ipad input[type="button"]:hover,
#sign_in_box input[type="button"], #sign_in_box .ipad input[type="button"]:hover
{
margin-bottom: 0px;
}
A#show_modules {
padding: 4px;
margin-right: 20px;
}
.ipad input[type="button"], .ipad input[type="button"]:hover {
background: -webkit-gradient(linear, left bottom, left top, from(#F5F5F5), to(#F5F5F5));
}
input[type="button"]:hover {
color: #191919;
box-shadow: 2px 2px 5px #CCCCCC;
-moz-box-shadow: 2px 2px 5px #CCCCCC;
-webkit-box-shadow: 2px 2px 5px #CCCCCC;
}
input[type="button"]:active, A#show_modules.show-modules-selected {
box-shadow: 0px 0px 0px #CCCCCC;
-moz-box-shadow: 0px 0px 0px #CCCCCC;
-webkit-box-shadow: 0px 0px 0px #CCCCCC;
}
.ox-bottom-buttons input:nth-of-type(2), .ipad .ox-bottom-buttons input:nth-of-type(2):hover {
background: #3777D7;
border-color: #096EB3;
color: white;
box-shadow: 0px 1px 3px blue;
-moz-box-shadow: 0px 1px 3px blue;
-webkit-box-shadow: 0px 1px 3px blue;
}
.ipad .ox-bottom-buttons input:nth-of-type(2), .ipad .ox-bottom-buttons input:nth-of-type(2):hover {
background: -webkit-gradient(linear, left bottom, left top, from(#3777D7), to(#3777D7));
}
.ox-bottom-buttons input:nth-of-type(2):hover
background: blue;
border-color: blue;
box-shadow: 0px 1px 7px blue;
-moz-box-shadow: 0px 1px 7px blue;
-webkit-box-shadow: 0px 1px 7px blue;
}
.ox-bottom-buttons input:nth-of-type(2):active {
box-shadow: 0px 0px 0px blue;
-moz-box-shadow: 0px 0px 0px blue;
-webkit-box-shadow: 0px 0px 0px blue;
}
input[type="button"], .ipad input[type="button"]:hover, A#show_modules,
.ox-bottom-buttons input[id*="delete"], .ox-bottom-buttons input[id*="remove"],
.ox-bottom-buttons input[id*="borrar"], .ipad .ox-bottom-buttons input[id*="delete"]:hover,
.ox-bottom-buttons input[id*="remove"]:hover,
.ipad .ox-bottom-buttons input[id*="borrar"]:hover {
background: #F5F5F5;
border: 1px solid #C6C6C6;
color: #6F6F6F;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ipad .ox-bottom-buttons input[id*="delete"], .ipad .ox-bottom-buttons input[id*="remove"], .ipad .ox-bottom-buttons input[id*="borrar"],
.ipad .ox-bottom-buttons input[id*="delete"]:hover, .ipad .ox-bottom-buttons input[id*="remove"]:hover, .ipad .ox-bottom-buttons input[id*="borrar"]:hover
{
background: -webkit-gradient(linear, left bottom, left top, from(#F5F5F5), to(#F5F5F5));
}
.ox-bottom-buttons input[id*="delete"]:hover, .ox-bottom-buttons input[id*="remove"]:hover, .ox-bottom-buttons input[id*="borrar"]:hover {
background: red;
color: white;
border-color: red;
box-shadow: 0px 1px 7px red;
-moz-box-shadow: 0px 1px 7px red;
-webkit-box-shadow: 0px 1px 7px red;
}
.ox-bottom-buttons input[id*="delete"]:active, .ox-bottom-buttons input[id*="remove"]:active, .ox-bottom-buttons input[id*="borrar"]:active {
box-shadow: 0px 0px 0px red;
-moz-box-shadow: 0px 0px 0px red;
-webkit-box-shadow: 0px 0px 0px red;
}
.ox-button-bar-mode-button {
position: relative;
top: -4px;
float: left;
}
.ox-button-bar-mode-button:hover {
color: #191919;
text-decoration: none;
}
.ox-active .ox-button-bar-mode-button, .ox-active .ox-section-tab {
border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
border-top-right-radius: 5px;
-moz-border-top-right-radius: 5px;
-webkit-border-top-right-radius: 5px;
border-style: none;
height: 28px;
background: white;
color: #191919;
box-shadow: 0px -3px 4px #CCCCCC;
-moz-box-shadow: 0px -3px 4px #CCCCCC;
-webkit-box-shadow: 0px -3px 4px #CCCCCC;
}
.ox-active .ox-button-bar-mode-button {
padding-right: 0px;
}
.ox-button-bar-active-mode-button-content {
background: white;
height: 36px;
}
.ox-list-header th, .ox-list-subheader td, .ox-list-pair td, .ox-list-odd td, .ox-total-row td {
padding-left: 15px;
}
.ox-list-header th {
text-align: left;
}
.ox-list-subheader td {
text-align: center;
}
.ox-list-subheader {
border-bottom: 1px solid #EBEBEB;
}
.ox-list-pair, .ox-list-odd {
border-bottom-color: #EBEBEB !important;
height: 35px;
}
.ox-list-pair a, .ox-list-odd a {
color: black;
}
.ox-list-pair a nobr, .ox-list-odd a nobr {
vertical-align: middle;
/* display: table-cell; Don't use. It aligns numbers at left */
}
.ox-list-pair:hover, .ox-list-odd:hover {
background: #FFFFD6;
}
.ox-element-collection .ox-list-pair:hover, .ox-element-collection .ox-list-odd:hover {
background: inherit;
}
.ox-element-collection .editor {
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 30px;
}
.ox-element-collection input[type="checkbox"] {
height: inherit;
margin-left: auto;
margin-right: auto;
}
.ox-element-collection .ox-list-pair, .ox-element-collection .ox-list-odd {
border-bottom-style: hidden;
}
.selected-row {
background: #FFFFCC;
}
.xava_resizable .ui-resizable-e {
background-image: url(../../xava/style/liferay51/images/application/handle_vertical.png) ;
background-repeat: no-repeat;
background-position: center center;
bottom: 0;
top: 0;
width: 14px;
}
.ox-page-navigation, .ox-page-navigation-selected{
padding: 7px 10px 7px 10px;
font-weight: bold;
}
.ox-page-navigation-selected {
border-radius: 4px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #191919;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ox-page-navigation-arrow i, .ox-page-navigation-arrow-disable i {
font-size: 200%;
vertical-align: -5px;
}
.ox-page-navigation-arrow-disable i {
color: lightgrey;
}
.ox-detail {
margin: 8px 10px 0px 7px;
}
#sign_in_box .ox-detail {
margin: 0px 20px 0px 3px;
}
.ox-frame, #sign_in_box {
margin-top: 2px;
margin-bottom: 5px;
margin-right: 7px;
padding: 10px 10px 3px 10px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 3px #CCCCCC;
-moz-box-shadow: 0px 1px 3px #CCCCCC;
-webkit-box-shadow: 0px 1px 3px #CCCCCC;
}
.ox-frame {
float: left;
}
#sign_in_box select, #sign_in_box input[type="text"], #sign_in_box input[type="password"] {
box-sizing: content-box;
width: 220px;
}
#sign_in_box select {
height: auto;
}
.ox-frame-title {
font-weight: bold;
padding-bottom: 7px;
min-width: 150px;
}
.ox-frame-title a {
padding: 2px 0px 2px 0px;
}
.ox-frame-actions {
float: left;
margin-right: 3px;
}
.ox-images-gallery {
padding-top: 10px;
}
.ox-images-gallery .ox-frame-actions i {
margin-top: -5px;
margin-right: -6px;
}
.ox-images-gallery .ox-frame-title {
min-width: 20px;
}
.ox-images-gallery .ox-frame-actions {
float: right;
margin-left: 3px;
}
.ox-section {
padding: 0px 10px 0px 10px;
height: 30px;
margin: 0px -11px 10px -11px;
box-shadow: 0px 3px 4px #CCCCCC;
-moz-box-shadow: 0px 3px 4px #CCCCCC;
-webkit-box-shadow: 0px 3px 4px #CCCCCC;
}
.ox-section-tab {
padding: 6px;
font-weight: bold;
float: left;
}
.ie .ox-section {
height: auto;
margin-top: 10px;
border-bottom: 1px solid #CCCCCC;
}
.ie .ox-section-tab {
float: none;
}
.ox-collection-list-actions {
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
}
.ox-total-capable-cell {
text-align: right;
}
.ox-total-row td {
vertical-align: top;
padding-top: 5px;
}
.ox-total-label-cell {
font-weight: bold;
}
.ie .ox-collection-list-actions {
border-bottom: 1px solid #CCCCCC;
}
.ox-frame .ox-list-header {
height: 30px;
}
.ox-frame-sibling {
margin-left: 5px;
}
.ox-bottom-buttons {
padding-left: 11px;
margin-right: 17px;
}
.ui-dialog .ox-bottom-buttons {
margin-right: 0px;
margin-left: 1px; /* To adjust list and collections width */
}
.ui-dialog .ox-view {
overflow-x: hidden; /* To avoid scrollbar in list inside dialog */
}
.ui-dialog .ox-view {
margin-right: 2px;
}
.ox-list-info-detail {
padding-right: 20px;
}
.ui-dialog .ox-detail {
margin: 0px 0px 0px 0px;
}
.ui-dialog, #xava_processing_layer {
box-shadow: 0px 0px 40px #000;
-moz-box-shadow: 0px 0px 40px #000;
-webkit-box-shadow: 0px 0px 40px #000;
border-radius: 7px !important;
-moz-border-radius: 7px !important;
-webkit-border-radius: 7px !important;
font-size: 1em !important;
}
.ui-dialog-titlebar, .ui-dialog-titlebar button {
border-style: none !important;
background: white !important;
}
.ox-message-box {
margin-top: 9px;
margin-left: 3px;
font-weight: bold;
padding: 3px 0px 3px 3px;
}
.ox-errors .ox-message-box, .ox-errors .ox-message-box i {
color: #DC4A38;
}
.ox-messages .ox-message-box, .ox-messages .ox-message-box i {
color: #6fc664;
}
.ox-infos .ox-message-box, .ox-infos .ox-message-box i {
color: #a1a4a5;
}
.ox-warnings .ox-message-box, .ox-warnings .ox-message-box i {
color: #f6dc5c;
}
.ox-action-link {
margin-left: 7px;
color: #5755D2 !important;
}
.ox-button-bar-button span {
margin-right: -7px;
}
.ox-subcontroller-button .mdi-menu-down {
margin: 0px !important;
margin-right: -5px !important;
}
.ox-subcontroller, .ui-autocomplete {
border: 1px #cbcbcb solid;
padding: 5px 0px 5px 18px;
margin: 14px 0px 0px -4px;
position: absolute;
background: #F5F5F5;
display: none;
z-index: 999999;
box-shadow: 0px 2px 7px #CCCCCC;
-moz-box-shadow: 0px 2px 7px #CCCCCC;
-webkit-box-shadow: 0px 2px 7px #CCCCCC;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.ox-subcontroller .ox-button-bar-button a, .ox-subcontroller .ox-button-bar-button a:hover {
border: none;
float: right;
width: 100%;
margin: 0px -1px 0px 0px;
padding: 6px 10px 6px 10px;
}
.ox-subcontroller .ox-button-bar-button a:hover {
background-color: #eaeaea;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
div.ox-subcontroller table{
width: 100%;
}
.ox-subcontroller-select a {
border: 1px solid #C6C6C6 !important;
background-color: #eaeaea;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
#welcome {
margin: 20px;
padding-left: 20px;
padding-top: 5px;
font-size: 16px;
}
#welcome h1 {
font-weight: normal;
font-size: 25px;
color: #DD4B39;
margin-bottom: 5px;
}
#welcome h2 {
font-weight: normal;
font-size: 16px;
margin-top: 5px;
}
.feature-image {
vertical-align: middle;
margin-right: 20px;
}
#sign_in_box {
float: right;
padding: 20px 0px 25px 22px;
margin: 30px 60px 20px 20px;
background: #F1F1F1;
}
#sign_in_box .small-label {
padding-left: 3px;
}
#sign_in_box .editor {
margin: 2px 0px 15px 1px;
}
#first_steps {
font-size: 16px;
}
#first_steps h2 {
font-size: 18px;
}
.screenshot img {
box-shadow: 0 0 7px black;
-moz-box-shadow: 0 0 7px #000;
-webkit-box-shadow: 0 0 7px black;
}
.screenshot {
text-align: center;
}
.row-highlight A.row-highlight {
font-weight: bold;
}
.small-label {
padding-left: 6px;
margin-bottom: 2px;
}
.bold-label {
font-weight:bold;
}
.italic-label {
font-style:italic;
}
.reverse-label {
color: white;
background-color: black;
}
.ox-attached-file {
color: #5755D2;
font-size: 1.02em;
text-decoration: none;
}
.ox-help {
margin-left: 5px;
}
.ox-charts {
width: 0px;
}
.ct-chart {
margin-top: -5px;
margin-left: -25px;
}
.ox-charts .ox-frame-title {
display: none;
}
.ox-charts .ox-frame {
margin-bottom: 5px;
margin-right: 0px;
padding: 10px 0px 3px 10px;
border-radius: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
.ox-chart-x-column select {
position: relative;
left: 758px;
top: -27px;
width: 180px;
}
.ox-chart-type {
margin-left: 20px;
}
.ox-chart-type i {
padding: 5px;
border: 1px solid transparent;
font-size: 200%;
}
.ox-chart-type i:hover {
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 3px #CCCCCC;
-moz-box-shadow: 0px 1px 3px #CCCCCC;
-webkit-box-shadow: 0px 1px 3px #CCCCCC;
}
.ox-selected-chart-type i {
background: #F5F5F5;
background: white;
border-radius: 3px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 0px 7px #CCCCCC inset;
}
.ox-charts .ox-list-header {
display:none;
}
.ox-charts .ox-element-collection {
width: 200px;
margin-left: -32px;
margin-right: -25px;
}
.ox-charts .ox-element-collection i {
margin-right: -15px;
}
.ox-charts .ox-element-collection select {
width: 120px;
}
.no-close .ui-dialog-titlebar-close {
display: none;
}
.no-close .ox-detail {
margin-left: -15px;
}
.no-close .ox-detail input {
width: calc(100% - 13px);
}
.firefox .no-close .ox-detail {
margin-left: -10px;
}
.firefox .no-close .ox-detail input {
width: calc(100% - 23px);
}
i.ox-sort-indicator, i.ox-sort-indicator2 {
color: black;
vertical-align: middle;
}
i.ox-sort-indicator2 {
font-size: 100%;
padding: 1px;
}
.ui-autocomplete {
max-height: 350px;
overflow-y: auto;
overflow-x: hidden;
border-color: #CCC !important;
z-index: 9999999999 !important;
}
.ui-autocomplete-input::-ms-clear, .ox-date-calendar ::-ms-clear {
display: none;
}
.ui-menu-item:hover, .ui-widget-content .ui-state-focus {
border-color: #DFF4FF !important;
background: #DFF4FF !important;
}
.ox-descriptions-list i {
position: relative;
right: 32px;
margin-right: -20px;
padding: 5px;
}
.ox-element-collection .ox-descriptions-list i {
top: -5px;
}
.ox-icon i {
position: relative;
left: -14px;
top: -6px;
color: black;
z-index: 10;
margin-right: -14px;
}
.firefox .ox-icon i {
left: -15px;
}
.ie .ox-icon i {
left: -20px;
}
.ox-icon i.mdi-crop-free {
position: relative;
top: 0px;
left: 0px;
font-size: 280%;
color: lightgray;
}
.ox-icon i.mdi-close-circle {
font-size: 110%;
position: relative;
left: -9px;
top: -21px;
margin-right: -20px;
}
.ox-icon i.mdi-plus {
font-weight: bolder;
color: lightgray;
}
.ox-icons-list {
max-width: 750px;
}
.ox-icons-list i:hover {
background: #FFFFD6;
border: 1px solid #EBEBEB;
cursor: pointer;
}
.ox-icons-list i {
font-size: 300%;
padding: 10px;
border: 1px solid transparent;
}
.ox-icon-in-list i {
color: black;
}
|
lavadero/web/naviox/style/naviox.css
|
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
background: white ;
font-size: 12px;
margin: 0;
padding: 0;
}
body, .ui-dialog, input {
font-family: Arial,Helvetica,Verdana,sans-serif !important;
}
img {
border:0;
}
a {
color: #5755D2;
text-decoration: none;
outline: none;
}
a:hover {
text-decoration: underline;
}
#xava_loading {
padding: 5px;
border: none;
background: white;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
-moz-border-bottom-left-radius: 5px;
-moz-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
color: black;
font-weight: bold;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
display:none;
z-index: 9999999;
position: fixed;
top: -1px;
left: 45%
}
#xava_processing_layer {
position:absolute;
right: calc(50% - 120px);
top: calc(50% - 120px);
z-index: 999999999;
background: white;
padding: 30px;
font-weight: bold;
text-align: center;
}
#xava_processing_layer img {
margin-top: 5px;
}
.ie #xava_processing_layer {
border: 1px solid #C6C6C6;
}
.xava_placeholder {
background: #F5F5F5;
}
.xava_dropped {
box-shadow: 0 0 7px #CCCCCC;
}
.xava_handle {
cursor: move;
}
#main_navigation {
z-index: 999999999;
background: black;
padding: 10px;
height: 15px;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
}
#main_navigation A {
color: #BABABA;
text-decoration: none;
padding-right: 15px;
}
#main_navigation A:hover {
color: white;
}
#main_navigation A.selected {
color: white;
font-weight: bold;
}
#main_navigation_left {
position: relative;
top: -14px;
overflow: hidden;
width: calc(100% - 50px);
width: -moz-calc(100% - 50px);
width: -webkit-calc(100% - 50px);
}
.main-navigation-left-without-all-modules {
left: -5px;
}
.main-navigation-left-with-all-modules {
left: 50px;
}
#main_navigation_right {
float: right;
position: relative;
top: -29px;
right: 0px;
padding-left: 20px;
margin-bottom: -29px;
}
.ie #main_navigation_right {
top: -27px;
}
#main_navigation_right_bridge1 {
background-color: rgba(0, 0, 0, 0.2);
}
#main_navigation_right_bridge2 {
background-color: rgba(0, 0, 0, 0.6);
}
#main_navigation_right_content A {
padding-right: 0px;
}
#main_navigation_right_content {
background-color: black;
padding-left: 15px;
}
.sign-in {
font-weight: bold;
}
.sign-out {
color: white;
float: right;
}
A.sign-out {
padding-right: 0px;
}
.sing-in A:hover {
color: white;
}
A#show_modules:HOVER {
color: #191919;
}
#modules_list {
display: none;
vertical-align: top;
}
#modules_list, #modules_list_outbox, #modules_list_header {
width: 300px;
}
#modules_list A {
text-decoration: none;
}
#modules_list_popup {
position: relative;
left: 0px;
top: 0px;
z-index: 0;
margin: 4px 0px 4px 4px;
padding: 0px;
border-color: #CCCCCC;
border-style: solid;
border-radius: 10px;
border-width: thick;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
box-shadow: 0px 0px 7px #000;
-moz-box-shadow: 0px 0px 7px #000;
-webkit-box-shadow: 0px 0px 7px #000;
}
#NO_MODULE_module {
display: none;
}
#modules_list_corner {
position: absolute;
top: -22px;
}
#modules_list_outbox {
overflow: hidden;
}
#modules_list_box {
position: relative;
top: 0;
left: 0;
}
#modules_list_box TD {
vertical-align: top;
padding: 0;
}
.module-row, .folder-row {
border-top: 1px solid #CCCCCC;
padding: 10px;
}
.folder-name {
font-size: 16px;
}
.folder-icon {
float: right;
opacity: 0.25;
background-image: url("../images/right.png");
background-position: right;
background-repeat: no-repeat;
}
.folder-row:HOVER .folder-icon {
opacity: 0.75;
}
#back_folder {
padding-top: 4px;
font-size: 12px;
float: left;
}
#back_folder_counterweight {
float: right;
width: 60px;
}
#search_modules {
margin: 3px;
padding: 2px;
}
#search_modules INPUT {
width: 280px;
}
#xava_search_columns {
margin-bottom: 5px;
}
#xava_search_columns_text {
width: calc(100% - 13px);
padding-left: 7px;
}
#xava_add_columns, .ox-icons-list {
max-height: 70vh;
margin-bottom: 5px;
overflow-y: auto;
}
#modules_list_header, #modules_list_search_header {
padding: 5px 5px 5px 0px;
background-color: #CCCCCC;
color: #6F6F6F;
font-weight: bold;
font-size: 16px;
text-align: center;
margin-left: -1px;
margin-right: -1px;
}
#modules_list_search_header {
display: none;
}
#search_modules_text, #xava_search_columns_text {
background-image: url("../images/search.png");
background-position: right;
background-repeat: no-repeat;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#modules_list .selected {
background: #3777D7;
}
#more_modules {
font-weight: bold;
line-height: 30px;
vertical-align: middle;
}
a #loading_more_modules {
color: #6F6F6F;
}
A:hover .module-row, A:hover .folder-row {
background: #DFF4FF;
}
.module-name, .folder-row {
font-weight: bold;
color: black;
}
.module-description {
color: #9EA8AD;
}
.selected .module-name, .selected .module-description {
color: white;
}
input[type="text"], input[type="password"], input[type="file"], select, textarea,
.ui-widget input[type="text"], .ui-widget input[type="password"], .ui-widget input[type="file"],
.ui-widget select, .ui-widget textarea {
border-color: #CCC;
border-style: solid;
border-width: 1px;
box-shadow: rgba(0, 0, 0, 0.046875) 0px 1px 3px 0px inset, rgba(255, 255, 255, 0.0742188) 0px 1px 0px 0px;
font-size: 13px;
outline-color: black;
outline-style: none;
outline-width: 0px;
border-radius: 4px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
input[type="text"], input[type="password"], input[type="file"], textarea {
padding: 4px;
}
input[type="text"], input[type="password"], input[type="file"] {
height: 20px;
}
.ox-radio-buttons {
margin: 10px 0px 10px 0px;
}
input[type="radio"] {
margin: 4px 0px 4px 10px;
vertical-align: middle;
}
.ox-list-subheader input[type="text"] {
height: 28px;
}
select:not([multiple]) {
height: 30px;
padding: 5px;
}
.ox-label {
vertical-align: middle;
}
.ox-editor-wrapper {
padding: 1px 12px 5px 0px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus, select:focus, textarea:focus {
outline: 0;
border-color: #56b4ef;
-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
box-shadow: inset 0 1px 3px rgba(0,0,0,.05),0 0 8px rgba(82,168,236,.6);
}
.module-wrapper {
}
#module_description {
padding: 10px 10px 10px 10px;
font-size: 20px;
}
#bookmark {
margin-left: 5px;
}
.bookmark-decoration {
width: 10px;
height: 10px;
}
.ox-button-bar, .ox-collection-list-actions {
background: #F5F5F5;
margin-left: -1px;
margin-right: -1px;
min-height: 15px;
border-top: 1px solid #CCCCCC;
box-shadow: 0px 2px 7px #CCCCCC;
-moz-box-shadow: 0px 2px 7px #CCCCCC;
-webkit-box-shadow: 0px 2px 7px #CCCCCC;
}
.ox-button-bar {
padding: 9px 10px 11px 10px;
}
.ox-collection-list-actions {
padding: 10px 10px 10px 10px;
}
.ox-button-bar .ox-button-bar-button a, .ox-button-bar-mode-button,
.ox-collection-list-actions .ox-button-bar-button a {
border: 1px solid transparent;
padding: 6px 6px 6px 0px;
font-weight: bold;
text-decoration: none;
}
.ox-button-bar .ox-button-bar-button a, .ox-button-bar-mode-button,
.ox-collection-list-actions .ox-button-bar-button a, i, .ox-icon i.mdi-close-circle {
color: #6F6F6F;
}
.ox-button-bar .ox-button-bar-button a:hover,
.ox-collection-list-actions .ox-button-bar-button a:hover,
.ox-subcontroller-select a, .ox-list-formats i:hover {
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
padding: 6px 6px 6px 0px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ox-button-bar-button a span {
padding: 4px;
}
.ox-button-bar .ox-button-bar-button a:hover,
.ox-collection-list-actions .ox-button-bar-button a:hover,
.ox-subcontroller-select a,
i:hover, .ox-button-bar a:hover i, .ox-collection-list-actions a:hover i,
.ox-icon i.mdi-plus:hover, .ox-icon i.mdi-close-circle:hover
{
color: #191919;
}
.ox-button-bar .ox-button-bar-button a {
vertical-align: middle;
}
.ox-button-bar-mode-button {
border: none;
}
i {
vertical-align: -2px;
}
.mdi-border-color {
vertical-align: -4px;
}
.mdi-calendar, .mdi-calendar-clock, .ox-element-collection .mdi-calendar, .ox-element-collection .mdi-calendar-clock {
vertical-align: middle;
padding: 4px 4px 4px 0px;
margin-right: -20px;
}
.mdi-delete:hover {
color: red;
}
.ox-list-odd i, .ox-list-pair i {
vertical-align: -7px;
}
.ox-list-odd .mdi-check, .ox-list-pair .mdi-check {
vertical-align: middle;
color: black;
}
.ox-list-odd .ox-action-link, .ox-list-pair .ox-action-link {
vertical-align: -5px;
}
.ox-list-odd .ox-image-link img, .ox-list-pair .ox-image-link img {
vertical-align: -8px;
}
.ox-list-odd .mdi-border-color, .ox-list-pair .mdi-border-color {
vertical-align: -9px;
}
.ox-module i, .ui-dialog i {
font-size: 140%;
}
.ox-image-link i, .ox-list-header i {
padding: 4px;
}
.ox-frame-actions i {
font-size: 200%;
padding: 0;
margin: -5px;
}
.ox-images-gallery .ox-frame-title i {
font-size: 120%;
padding: 5px;
}
.ox-customize-controls i {
color: #6fc664;
}
.ox-customize-controls i:hover {
color: green;
}
.mdi-filter-remove {
margin-left: 1px;
margin-right: -1px;
}
.ox-button-bar .ox-button-bar-button i, .ox-collection-list-actions i {
margin-left: 5px;
}
.ox-list-formats i {
margin-top: -6px;
margin-left: -5px;
font-size: 150%;
padding: 5px;
border: 1px solid transparent;
}
.ox-list-formats i:hover {
padding: 5px;
}
.folder-name i {
color: #cccccc;
vertical-align: baseline;
margin-right: 3px;
}
.folder-row:hover i {
color: #6F6F6F;
}
.ox-list-formats a:hover, .ox-chart-type a:hover, .ox-customize-controls a, a.ox-image-link, .ox-help a {
text-decoration: none;
}
.ox-selected-list-format i, .ox-selected-list-format:hover i {
background: white;
border-radius: 2px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 0px 5px #CCCCCC inset;
}
a.ox-selected-list-format, a.ox-selected-list-format:hover {
pointer-events: none;
cursor: default;
}
.ox-total-row i {
font-size: 120%;
padding-bottom: 6px;
margin-right: -7px;
vertical-align: middle;
}
.ox-required-icon, .ox-error-icon {
width: 0px;
position: relative;
left: -1px;
color: #3777D7;
float: left;
}
.firefox .ox-layout-not-aligned-cell .ox-layout-editor-icons .ox-required-icon {
left: 2px;
}
.ie .ox-layout-not-aligned-cell .ox-layout-editor-icons .ox-required-icon {
left: 3px;
}
.ipad .ox-required-icon {
left: 2px;
}
.ie .ox-layout-aligned-cell .ox-layout-editor-icons .ox-required-icon {
top: -3px;
}
.ie .ox-layout-aligned-cell .ox-layout-editor-icons .ox-error-icon {
top: -5px;
}
i.ox-required-icon {
font-size: 100%;
color: #3777D7;
top: -9px;
}
i.ox-error-icon {
color: #DC4A38;
left: 13px;
font-size: 120%;
top: -11px;
}
.ox-frame-content > .ox-required-icon {
top: -4px;
left: -5px;
}
.ox-frame-content > span > .ox-error-icon {
top: -6px;
left: 9px;
}
input[type="button"], .ipad input[type="button"]:hover, A#show_modules {
padding: 10px;
margin-right: 4px;
font-size: 12px;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
cursor: pointer;
}
input[type="button"], .ipad input[type="button"]:hover {
margin-bottom: 8px;
}
.ui-dialog input[type="button"], .ui-dialog .ipad input[type="button"]:hover,
#sign_in_box input[type="button"], #sign_in_box .ipad input[type="button"]:hover
{
margin-bottom: 0px;
}
A#show_modules {
padding: 4px;
margin-right: 20px;
}
.ipad input[type="button"], .ipad input[type="button"]:hover {
background: -webkit-gradient(linear, left bottom, left top, from(#F5F5F5), to(#F5F5F5));
}
input[type="button"]:hover {
color: #191919;
box-shadow: 2px 2px 5px #CCCCCC;
-moz-box-shadow: 2px 2px 5px #CCCCCC;
-webkit-box-shadow: 2px 2px 5px #CCCCCC;
}
input[type="button"]:active, A#show_modules.show-modules-selected {
box-shadow: 0px 0px 0px #CCCCCC;
-moz-box-shadow: 0px 0px 0px #CCCCCC;
-webkit-box-shadow: 0px 0px 0px #CCCCCC;
}
.ox-bottom-buttons input:nth-of-type(2), .ipad .ox-bottom-buttons input:nth-of-type(2):hover {
background: #3777D7;
border-color: #096EB3;
color: white;
box-shadow: 0px 1px 3px blue;
-moz-box-shadow: 0px 1px 3px blue;
-webkit-box-shadow: 0px 1px 3px blue;
}
.ipad .ox-bottom-buttons input:nth-of-type(2), .ipad .ox-bottom-buttons input:nth-of-type(2):hover {
background: -webkit-gradient(linear, left bottom, left top, from(#3777D7), to(#3777D7));
}
.ox-bottom-buttons input:nth-of-type(2):hover
background: blue;
border-color: blue;
box-shadow: 0px 1px 7px blue;
-moz-box-shadow: 0px 1px 7px blue;
-webkit-box-shadow: 0px 1px 7px blue;
}
.ox-bottom-buttons input:nth-of-type(2):active {
box-shadow: 0px 0px 0px blue;
-moz-box-shadow: 0px 0px 0px blue;
-webkit-box-shadow: 0px 0px 0px blue;
}
input[type="button"], .ipad input[type="button"]:hover, A#show_modules,
.ox-bottom-buttons input[id*="delete"], .ox-bottom-buttons input[id*="remove"],
.ox-bottom-buttons input[id*="borrar"], .ipad .ox-bottom-buttons input[id*="delete"]:hover,
.ox-bottom-buttons input[id*="remove"]:hover,
.ipad .ox-bottom-buttons input[id*="borrar"]:hover {
background: #F5F5F5;
border: 1px solid #C6C6C6;
color: #6F6F6F;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ipad .ox-bottom-buttons input[id*="delete"], .ipad .ox-bottom-buttons input[id*="remove"], .ipad .ox-bottom-buttons input[id*="borrar"],
.ipad .ox-bottom-buttons input[id*="delete"]:hover, .ipad .ox-bottom-buttons input[id*="remove"]:hover, .ipad .ox-bottom-buttons input[id*="borrar"]:hover
{
background: -webkit-gradient(linear, left bottom, left top, from(#F5F5F5), to(#F5F5F5));
}
.ox-bottom-buttons input[id*="delete"]:hover, .ox-bottom-buttons input[id*="remove"]:hover, .ox-bottom-buttons input[id*="borrar"]:hover {
background: red;
color: white;
border-color: red;
box-shadow: 0px 1px 7px red;
-moz-box-shadow: 0px 1px 7px red;
-webkit-box-shadow: 0px 1px 7px red;
}
.ox-bottom-buttons input[id*="delete"]:active, .ox-bottom-buttons input[id*="remove"]:active, .ox-bottom-buttons input[id*="borrar"]:active {
box-shadow: 0px 0px 0px red;
-moz-box-shadow: 0px 0px 0px red;
-webkit-box-shadow: 0px 0px 0px red;
}
.ox-button-bar-mode-button {
position: relative;
top: -4px;
float: left;
}
.ox-button-bar-mode-button:hover {
color: #191919;
text-decoration: none;
}
.ox-active .ox-button-bar-mode-button, .ox-active .ox-section-tab {
border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
border-top-right-radius: 5px;
-moz-border-top-right-radius: 5px;
-webkit-border-top-right-radius: 5px;
border-style: none;
height: 28px;
background: white;
color: #191919;
box-shadow: 0px -3px 4px #CCCCCC;
-moz-box-shadow: 0px -3px 4px #CCCCCC;
-webkit-box-shadow: 0px -3px 4px #CCCCCC;
}
.ox-active .ox-button-bar-mode-button {
padding-right: 0px;
}
.ox-button-bar-active-mode-button-content {
background: white;
height: 36px;
}
.ox-list-header th, .ox-list-subheader td, .ox-list-pair td, .ox-list-odd td, .ox-total-row td {
padding-left: 15px;
}
.ox-list-header th {
text-align: left;
}
.ox-list-subheader td {
text-align: center;
}
.ox-list-subheader {
border-bottom: 1px solid #EBEBEB;
}
.ox-list-pair, .ox-list-odd {
border-bottom-color: #EBEBEB !important;
height: 35px;
}
.ox-list-pair a, .ox-list-odd a {
color: black;
}
.ox-list-pair a nobr, .ox-list-odd a nobr {
vertical-align: middle;
/* display: table-cell; Don't use. It aligns numbers at left */
}
.ox-list-pair:hover, .ox-list-odd:hover {
background: #FFFFD6;
}
.ox-element-collection .ox-list-pair:hover, .ox-element-collection .ox-list-odd:hover {
background: inherit;
}
.ox-element-collection .editor {
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 30px;
}
.ox-element-collection input[type="checkbox"] {
height: inherit;
margin-left: auto;
margin-right: auto;
}
.ox-element-collection .ox-list-pair, .ox-element-collection .ox-list-odd {
border-bottom-style: hidden;
}
.selected-row {
background: #FFFFCC;
}
.xava_resizable .ui-resizable-e {
background-image: url(../../xava/style/liferay51/images/application/handle_vertical.png) ;
background-repeat: no-repeat;
background-position: center center;
bottom: 0;
top: 0;
width: 14px;
}
.ox-page-navigation, .ox-page-navigation-selected{
padding: 7px 10px 7px 10px;
font-weight: bold;
}
.ox-page-navigation-selected {
border-radius: 4px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #191919;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 2px #CCCCCC;
-moz-box-shadow: 0px 1px 2px #CCCCCC;
-webkit-box-shadow: 0px 1px 2px #CCCCCC;
}
.ox-page-navigation-arrow i, .ox-page-navigation-arrow-disable i {
font-size: 200%;
vertical-align: -5px;
}
.ox-page-navigation-arrow-disable i {
color: lightgrey;
}
.ox-detail {
margin: 8px 10px 0px 7px;
}
#sign_in_box .ox-detail {
margin: 0px 20px 0px 3px;
}
.ox-frame, #sign_in_box {
margin-top: 2px;
margin-bottom: 5px;
margin-right: 7px;
padding: 10px 10px 3px 10px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 3px #CCCCCC;
-moz-box-shadow: 0px 1px 3px #CCCCCC;
-webkit-box-shadow: 0px 1px 3px #CCCCCC;
}
.ox-frame {
float: left;
}
#sign_in_box select, #sign_in_box input[type="text"], #sign_in_box input[type="password"] {
box-sizing: content-box;
width: 220px;
}
#sign_in_box select {
height: auto;
}
.ox-frame-title {
font-weight: bold;
padding-bottom: 7px;
min-width: 150px;
}
.ox-frame-title a {
padding: 2px 0px 2px 0px;
}
.ox-frame-actions {
float: left;
margin-right: 3px;
}
.ox-images-gallery {
padding-top: 10px;
}
.ox-images-gallery .ox-frame-actions i {
margin-top: -5px;
margin-right: -6px;
}
.ox-images-gallery .ox-frame-title {
min-width: 20px;
}
.ox-images-gallery .ox-frame-actions {
float: right;
margin-left: 3px;
}
.ox-section {
padding: 0px 10px 0px 10px;
height: 30px;
margin: 0px -11px 10px -11px;
box-shadow: 0px 3px 4px #CCCCCC;
-moz-box-shadow: 0px 3px 4px #CCCCCC;
-webkit-box-shadow: 0px 3px 4px #CCCCCC;
}
.ox-section-tab {
padding: 6px;
font-weight: bold;
float: left;
}
.ie .ox-section {
height: auto;
margin-top: 10px;
border-bottom: 1px solid #CCCCCC;
}
.ie .ox-section-tab {
float: none;
}
.ox-collection-list-actions {
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
}
.ox-total-capable-cell {
text-align: right;
}
.ox-total-row td {
vertical-align: top;
padding-top: 5px;
}
.ox-total-label-cell {
font-weight: bold;
}
.ie .ox-collection-list-actions {
border-bottom: 1px solid #CCCCCC;
}
.ox-frame .ox-list-header {
height: 30px;
}
.ox-frame-sibling {
margin-left: 5px;
}
.ox-bottom-buttons {
padding-left: 11px;
margin-right: 17px;
}
.ui-dialog .ox-bottom-buttons {
margin-right: 0px;
margin-left: 1px; /* To adjust list and collections width */
}
.ui-dialog .ox-view {
overflow-x: hidden; /* To avoid scrollbar in list inside dialog */
}
.ui-dialog .ox-view {
margin-right: 2px;
}
.ox-list-info-detail {
padding-right: 20px;
}
.ui-dialog .ox-detail {
margin: 0px 0px 0px 0px;
}
.ui-dialog, #xava_processing_layer {
box-shadow: 0px 0px 40px #000;
-moz-box-shadow: 0px 0px 40px #000;
-webkit-box-shadow: 0px 0px 40px #000;
border-radius: 7px !important;
-moz-border-radius: 7px !important;
-webkit-border-radius: 7px !important;
font-size: 1em !important;
}
.ui-dialog-titlebar, .ui-dialog-titlebar button {
border-style: none !important;
background: white !important;
}
.ox-message-box {
margin-top: 9px;
margin-left: 3px;
font-weight: bold;
padding: 3px 0px 3px 3px;
}
.ox-errors .ox-message-box, .ox-errors .ox-message-box i {
color: #DC4A38;
}
.ox-messages .ox-message-box, .ox-messages .ox-message-box i {
color: #6fc664;
}
.ox-infos .ox-message-box, .ox-infos .ox-message-box i {
color: #a1a4a5;
}
.ox-warnings .ox-message-box, .ox-warnings .ox-message-box i {
color: #f6dc5c;
}
.ox-action-link {
margin-left: 7px;
color: #5755D2 !important;
}
.ox-button-bar-button span {
margin-right: -7px;
}
.ox-subcontroller-button .mdi-menu-down {
margin: 0px !important;
margin-right: -5px !important;
}
.ox-subcontroller, .ui-autocomplete {
border: 1px #cbcbcb solid;
padding: 5px 0px 5px 18px;
margin: 14px 0px 0px -4px;
position: absolute;
background: #F5F5F5;
display: none;
z-index: 999999;
box-shadow: 0px 2px 7px #CCCCCC;
-moz-box-shadow: 0px 2px 7px #CCCCCC;
-webkit-box-shadow: 0px 2px 7px #CCCCCC;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.ox-subcontroller .ox-button-bar-button a, .ox-subcontroller .ox-button-bar-button a:hover {
border: none;
float: right;
width: 100%;
margin: 0px -1px 0px 0px;
padding: 6px 10px 6px 10px;
}
.ox-subcontroller .ox-button-bar-button a:hover {
background-color: #eaeaea;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
div.ox-subcontroller table{
width: 100%;
}
.ox-subcontroller-select a {
border: 1px solid #C6C6C6 !important;
background-color: #eaeaea;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
#welcome {
margin: 20px;
padding-left: 20px;
padding-top: 5px;
font-size: 16px;
}
#welcome h1 {
font-weight: normal;
font-size: 25px;
color: #DD4B39;
margin-bottom: 5px;
}
#welcome h2 {
font-weight: normal;
font-size: 16px;
margin-top: 5px;
}
.feature-image {
vertical-align: middle;
margin-right: 20px;
}
#sign_in_box {
float: right;
padding: 20px 0px 25px 22px;
margin: 30px 60px 20px 20px;
background: #F1F1F1;
}
#sign_in_box .small-label {
padding-left: 3px;
}
#sign_in_box .editor {
margin: 2px 0px 15px 1px;
}
#first_steps {
font-size: 16px;
}
#first_steps h2 {
font-size: 18px;
}
.screenshot img {
box-shadow: 0 0 7px black;
-moz-box-shadow: 0 0 7px #000;
-webkit-box-shadow: 0 0 7px black;
}
.screenshot {
text-align: center;
}
.row-highlight A.row-highlight {
font-weight: bold;
}
.small-label {
padding-left: 6px;
margin-bottom: 2px;
}
.bold-label {
font-weight:bold;
}
.italic-label {
font-style:italic;
}
.reverse-label {
color: white;
background-color: black;
}
.ox-attached-file {
color: #5755D2;
font-size: 1.02em;
text-decoration: none;
}
.ox-help {
margin-left: 5px;
}
.ox-charts {
width: 0px;
}
.ct-chart {
margin-top: -5px;
margin-left: -25px;
}
.ox-charts .ox-frame-title {
display: none;
}
.ox-charts .ox-frame {
margin-bottom: 5px;
margin-right: 0px;
padding: 10px 0px 3px 10px;
border-radius: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
.ox-chart-x-column select {
position: relative;
left: 758px;
top: -27px;
width: 180px;
}
.ox-chart-type {
margin-left: 20px;
}
.ox-chart-type i {
padding: 5px;
border: 1px solid transparent;
font-size: 200%;
}
.ox-chart-type i:hover {
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 1px 3px #CCCCCC;
-moz-box-shadow: 0px 1px 3px #CCCCCC;
-webkit-box-shadow: 0px 1px 3px #CCCCCC;
}
.ox-selected-chart-type i {
background: #F5F5F5;
background: white;
border-radius: 3px;
padding: 5px;
border: 1px solid #C6C6C6;
box-shadow: 0px 0px 7px #CCCCCC inset;
}
.ox-charts .ox-list-header {
display:none;
}
.ox-charts .ox-element-collection {
width: 200px;
margin-left: -32px;
margin-right: -25px;
}
.ox-charts .ox-element-collection i {
margin-right: -15px;
}
.ox-charts .ox-element-collection select {
width: 120px;
}
.no-close .ui-dialog-titlebar-close {
display: none;
}
.no-close .ox-detail {
margin-left: -15px;
}
.no-close .ox-detail input {
width: calc(100% - 13px);
}
.firefox .no-close .ox-detail {
margin-left: -10px;
}
.firefox .no-close .ox-detail input {
width: calc(100% - 23px);
}
i.ox-sort-indicator, i.ox-sort-indicator2 {
color: black;
vertical-align: middle;
}
i.ox-sort-indicator2 {
font-size: 100%;
padding: 1px;
}
.ui-autocomplete {
max-height: 350px;
overflow-y: auto;
overflow-x: hidden;
border-color: #CCC !important;
z-index: 9999999999 !important;
}
.ui-autocomplete-input::-ms-clear, .ox-date-calendar ::-ms-clear {
display: none;
}
.ui-menu-item:hover, .ui-widget-content .ui-state-focus {
border-color: #DFF4FF !important;
background: #DFF4FF !important;
}
.ox-descriptions-list i {
position: relative;
right: 32px;
margin-right: -20px;
padding: 5px;
}
.ox-element-collection .ox-descriptions-list i {
top: -5px;
}
.ox-icon i {
position: relative;
left: -14px;
top: -6px;
color: black;
z-index: 10;
margin-right: -14px;
}
.firefox .ox-icon i {
left: -15px;
}
.ie .ox-icon i {
left: -20px;
}
.ox-icon i.mdi-crop-free {
position: relative;
top: 0px;
left: 0px;
font-size: 280%;
color: lightgray;
}
.ox-icon i.mdi-close-circle {
font-size: 110%;
position: relative;
left: -9px;
top: -21px;
margin-right: -20px;
}
.ox-icon i.mdi-plus {
font-weight: bolder;
color: lightgray;
}
.ox-icons-list {
max-width: 750px;
}
.ox-icons-list i:hover {
background: #FFFFD6;
border: 1px solid #EBEBEB;
cursor: pointer;
}
.ox-icons-list i {
font-size: 300%;
padding: 10px;
border: 1px solid transparent;
}
.ox-icon-in-list i {
color: black;
}
| 0.161155 | 0.078997 |
@font-face {
font-family: 'Roboto-Bold';
src: url('../fonts/Roboto/Roboto-Bold.eot');
src: url('../fonts/Roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Bold.woff') format('woff'),
url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('../fonts/Roboto/Roboto-Medium.eot');
src: url('../fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Medium.woff') format('woff'),
url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Regular';
src: url('../fonts/Roboto/Roboto-Regular.eot');
src: url('../fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'icomoon';
src: url('../fonts/icon/icomoon.eot?qel7e9');
src: url('../fonts/icon/icomoon.eot?qel7e9#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon.ttf?qel7e9') format('truetype'),
url('../fonts/icon/icomoon.woff?qel7e9') format('woff'),
url('../fonts/icon/icomoon.svg?qel7e9#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
content: "\e900";
color: #969696;
}
.icon-double-arrow:before {
content: "\e902";
color: #195fff;
}
.icon-zoom-out:before {
content: "\e909";
color: #52555c;
}
.icon-zoom-in:before {
content: "\e90a";
color: #52555c;
}
.icon-zoom-Full:before {
content: "\e90b";
color: #52555c;
}
.icon-zoom:before {
content: "\e90c";
color: #fff;
}
.icon-rate-1:before {
content: "\e922";
color: #f87c1a;
}
.icon-print:before {
content: "\e92e";
color: #fff;
}
.icon-home:before {
content: "\e92f";
color: #fff;
}
.icon-folder-2:before {
content: "\e937";
color: #fff;
}
.icon-folder-1 .path1:before {
content: "\e938";
color: rgb(46, 146, 255);
}
.icon-folder-1 .path2:before {
content: "\e939";
margin-left: -1.115234375em;
color: rgb(224, 238, 253);
}
.icon-down-load:before {
content: "\e948";
color: #52555c;
}
.icon-arrow-top:before {
content: "\e971";
color: #52555c;
}
.icon-arrow-left:before {
content: "\e972";
color: #fff;
}
.icon-arrow-bottom:before {
content: "\e973";
color: #52555c;
}
.icon-arrow1-top:before {
content: "\e974";
color: #fff;
}
.icon-arrow1-bottom:before {
content: "\e975";
color: #fff;
}
/**/
@font-face {
font-family: 'icomoon1';
src: url('../fonts/icon/icomoon1.eot?m0i2cs');
src: url('../fonts/icon/icomoon1.eot?m0i2cs#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon1.ttf?m0i2cs') format('truetype'),
url('../fonts/icon/icomoon1.woff?m0i2cs') format('woff'),
url('../fonts/icon/icomoon1.svg?m0i2cs#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon1-"], [class*=" icon1-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon1' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon1-Arrow:before {
content: "\e900";
}
@font-face {
font-family: 'icomoon2';
src: url('../fonts/icon/icomoon2.eot?ti3v64');
src: url('../fonts/icon/icomoon2.eot?ti3v64#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon2.ttf?ti3v64') format('truetype'),
url('../fonts/icon/icomoon2.woff?ti3v64') format('woff'),
url('../fonts/icon/icomoon2.svg?ti3v64#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon2-"], [class*=" icon2-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon2' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon2-eye-outline:before {
content: "\e900";
}
|
src/assets/css/fonts.css
|
@font-face {
font-family: 'Roboto-Bold';
src: url('../fonts/Roboto/Roboto-Bold.eot');
src: url('../fonts/Roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Bold.woff') format('woff'),
url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('../fonts/Roboto/Roboto-Medium.eot');
src: url('../fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Medium.woff') format('woff'),
url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Regular';
src: url('../fonts/Roboto/Roboto-Regular.eot');
src: url('../fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'icomoon';
src: url('../fonts/icon/icomoon.eot?qel7e9');
src: url('../fonts/icon/icomoon.eot?qel7e9#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon.ttf?qel7e9') format('truetype'),
url('../fonts/icon/icomoon.woff?qel7e9') format('woff'),
url('../fonts/icon/icomoon.svg?qel7e9#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
content: "\e900";
color: #969696;
}
.icon-double-arrow:before {
content: "\e902";
color: #195fff;
}
.icon-zoom-out:before {
content: "\e909";
color: #52555c;
}
.icon-zoom-in:before {
content: "\e90a";
color: #52555c;
}
.icon-zoom-Full:before {
content: "\e90b";
color: #52555c;
}
.icon-zoom:before {
content: "\e90c";
color: #fff;
}
.icon-rate-1:before {
content: "\e922";
color: #f87c1a;
}
.icon-print:before {
content: "\e92e";
color: #fff;
}
.icon-home:before {
content: "\e92f";
color: #fff;
}
.icon-folder-2:before {
content: "\e937";
color: #fff;
}
.icon-folder-1 .path1:before {
content: "\e938";
color: rgb(46, 146, 255);
}
.icon-folder-1 .path2:before {
content: "\e939";
margin-left: -1.115234375em;
color: rgb(224, 238, 253);
}
.icon-down-load:before {
content: "\e948";
color: #52555c;
}
.icon-arrow-top:before {
content: "\e971";
color: #52555c;
}
.icon-arrow-left:before {
content: "\e972";
color: #fff;
}
.icon-arrow-bottom:before {
content: "\e973";
color: #52555c;
}
.icon-arrow1-top:before {
content: "\e974";
color: #fff;
}
.icon-arrow1-bottom:before {
content: "\e975";
color: #fff;
}
/**/
@font-face {
font-family: 'icomoon1';
src: url('../fonts/icon/icomoon1.eot?m0i2cs');
src: url('../fonts/icon/icomoon1.eot?m0i2cs#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon1.ttf?m0i2cs') format('truetype'),
url('../fonts/icon/icomoon1.woff?m0i2cs') format('woff'),
url('../fonts/icon/icomoon1.svg?m0i2cs#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon1-"], [class*=" icon1-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon1' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon1-Arrow:before {
content: "\e900";
}
@font-face {
font-family: 'icomoon2';
src: url('../fonts/icon/icomoon2.eot?ti3v64');
src: url('../fonts/icon/icomoon2.eot?ti3v64#iefix') format('embedded-opentype'),
url('../fonts/icon/icomoon2.ttf?ti3v64') format('truetype'),
url('../fonts/icon/icomoon2.woff?ti3v64') format('woff'),
url('../fonts/icon/icomoon2.svg?ti3v64#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon2-"], [class*=" icon2-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon2' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon2-eye-outline:before {
content: "\e900";
}
| 0.216177 | 0.054955 |
.signupForm-section{
background-attachment: fixed;
background-image: url(../images/bg.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
margin: 0 auto;
padding: 0;
position: relative;
width: 100%;
z-index: 1;
}
.signupForm-section::before{
background-color: rgba(255,255,255,0.5);
background-image: url(../images/bg_mask.png);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.contentBoxMargin {
margin: 0 0 50px;
}
.signupForm-section .display-table {
display: table;
height: 100vh;
width: 100%;
}
.signupForm-section .display-table-cell {
display: table-cell;
vertical-align: middle;
}
.signupForm-section .form-wrap {
background-color: #fff;
border-radius: 4px;
margin: 30px auto;
padding: 30px;
}
.signupForm-section h2.form-title {
font-size: 32px;
font-weight: bold;
color: #0379ca;
margin: 50px 0;
padding: 0 30px;
text-align: center;
}
#signUpForm h3.section-title {
background-color: rgba(62, 62, 62, 0.9);
border: 1px solid rgba(62, 62, 62, 0.9);
border-radius: 10px;
color: #fff;
font-weight: bold;
padding: 10px;
margin: 50px 0;
text-align: center;
}
#signUpForm h3.section-form-title {
color: #0379ca;
border-bottom: 5px solid #b5b5b5;
font-weight: bold;
max-width: 320px;
margin: 50px auto;
padding-bottom: 5px;
text-align: center;
}
.signUpForm-step-holder {
overflow: hidden;
position: relative;
}
.signUpForm-step-wrap {
overflow: hidden;
-webkit-transition: all 0.23s ease-in-out 0s;
-moz-transition: all 0.23s ease-in-out 0s;
-ms-transition: all 0.23s ease-in-out 0s;
-o-transition: all 0.23s ease-in-out 0s;
transition: all 0.23s ease-in-out 0s;
}
#signUpForm .slide-right {
left: 0;
opacity: 0;
position: absolute;
top: 0;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
width: 100%;
}
#signUpForm .slide-left {
left: 0;
opacity: 0;
position: absolute;
top: 0;
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
#signUpForm .open {
height: auto;
opacity: 1;
}
/*Form Step*/
#signUpForm .form-layer-steps {
margin: 0 0 50px;
overflow: hidden;
position: relative;
}
#signUpForm .form-layer-progress {
background-color: #b5b5b5;
height: 1px;
left: 0;
position: absolute;
top: 26px;
width: 100%;
}
#signUpForm .form-layer-progress-line {
background-color: #0379ca;
height: 1px;
left: 0;
position: absolute;
top: 0;
}
#signUpForm .form-layer-tolal-steps-4 .form-layer-step {
float: left;
padding: 0 5px;
position: relative;
text-align: center;
width: 25%;
}
#signUpForm .form-layer-step-icon {
background-color: #b5b5b5;
border-radius: 50%;
color: #fff;
display: inline-block;
font-size: 16px;
height: 40px;
line-height: 40px;
margin-top: 4px;
width: 40px;
text-align: center;
}
#signUpForm .form-layer-step.activated .form-layer-step-icon {
background-color: #fff;
border: 1px solid #0379ca;
color: #0379ca;
line-height: 38px;
}
#signUpForm .form-layer-step.active .form-layer-step-icon {
background-color: #0379ca;
font-size: 22px;
height: 48px;
line-height: 48px;
margin-top: 0;
width: 48px;
}
/*Form*/
form#signUpForm {
margin: 0 0 20px;
}
#signUpForm h4 {
font-size: 16px;
font-weight: bold;
margin: 10px 0 15px;
}
#signUpForm .form-group {
margin: 0 0 30px;
position: relative;
}
#signUpForm .form-control {
padding-left: 50px;
border: 1px solid #3e3e3e;
}
#signUpForm .input-group-icon {
background-color: #3e3e3e;
border: 0 none;
border-radius: 4px 0 0 4px;
color: #fff;
display: table-cell;
font-size: 14px;
height: 100%;
padding: 5px 7px 7px;
text-align: center;
vertical-align: top;
white-space: nowrap;
width: 40px;
position: absolute;
top: 0;
}
#signUpForm .has-error .form-control {
border-color: #ce0606;
}
#signUpForm .has-error .input-group-icon {
background-color: #ce0606;
color: #ffffff;
}
#signUpForm .form-control:focus, #signUpForm .has-error .form-control:focus {
border-color: #0379ca;
box-shadow: 0 1px 1px rgba(3, 17, 202, 0.075) inset, 0 0 8px rgba(3, 17, 202, 0.6);
}
#signUpForm .form-control:focus + .input-group-icon, #signUpForm .has-error .form-control:focus + .input-group-icon{
background-color: #0379ca;
color: #fff;
}
#signUpForm .help-block {
color: #ce0606;
margin: 0;
position: absolute;
bottom: -30px;
}
#signUpForm .validagree .help-block.with-errors {
bottom: -30px;
}
#signUpForm .help-block.with-errors.mandatory-error {
bottom: auto;
font-size: 16px;
font-weight: bold;
position: relative;
}
#signUpForm .text-danger {
color: #ce0606;
font-size: 20px;
}
#profile-Image img {
border: 1px solid #b5b5b5;
border-radius: 5px;
max-width: 150px;
}
/*attachment*/
#signUpForm .form-group.attachmentFile {
display: table;
margin: 15px 0 40px;
}
#signUpForm .input-group-btn ~ .form-control {
border-radius: 0 4px 4px 0;
cursor: not-allowed;
padding-left: 10px;
}
#signUpForm .input-group-btn > .btn {
background-color: #3e3e3e;
border: 1px solid #3e3e3e;
border-radius: 4px 0 0 4px;
color: #fff;
height: 34px;
padding: 4.5px 14px;
}
#signUpForm .attachmentFile .input-group-btn:first-child > .btn, #signUpForm .input-group-btn:first-child > .btn-group {
margin-left: 0;
}
#signUpForm .input-group-btn > .btn > input[type="file"] {
display: none;
}
/*select box*/
#signUpForm select {
background-color: transparent;
display: inline-block;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
}
#signUpForm select {
background-image: linear-gradient(45deg, transparent 50%, #3e3e3e 50%),
linear-gradient(135deg, #3e3e3e 50%, transparent 50%),
radial-gradient(transparent 66%, transparent 66%);
background-position: calc(100% - 18px) calc(1em + 2px),
calc(100% - 13px) calc(1em + 2px),
calc(100% - .5em) .5em;
background-size: 5px 6px, 6px 5px, 1.5em 1.5em;
background-repeat: no-repeat;
}
#signUpForm select:focus {
background-image: linear-gradient(45deg, transparent 50%, #0379ca 50%),
linear-gradient(135deg, #0379ca 50%, transparent 50%),
radial-gradient(transparent 66%, transparent 66%);
}
/*
|----------------------------------------------------------------------------
| Math Captcha
|----------------------------------------------------------------------------
*/
#humanCheckCaptchaBox {
font-weight: bold;
}
#humanCheckCaptchaBox, #humanCheckCaptchaInput, #firstDigit, #secondDigit, #mathfirstnum, #mathsecondnum {
display: inline;
}
#humanCheckCaptchaInput.form-control {
height: 30px;
margin-left: 10px;
padding: 4px;
text-align: center;
width: 45px;
}
#firstDigit #mathfirstnum, #secondDigit #mathsecondnum {
border: none;
box-shadow: none;
width: 30px;
height: 30px;
padding: 0;
pointer-events: none;
text-align: center;
}
/*
|----------------------------------------------------------------------------
| Button
|----------------------------------------------------------------------------
*/
#signUpForm .btn-default {
background-color: transparent;
border-color: #3e3e3e;
color: #222;
}
#signUpForm .form-control[disabled], #signUpForm .form-control[readonly], #signUpForm .form-control {
background-color: transparent;
border: 1px solid #3e3e3e;
}
#signUpForm .btn {
overflow: hidden;
font-size:16px;
padding: 6px 20px;
}
#signUpForm .btn-custom {
background-color: #3e3e3e;
border: 1px solid #3e3e3e;
box-shadow: 0 0 1px transparent;
color: #fff;
display: inline-block;
position: relative;
text-transform: capitalize;
-webkit-transform: perspective(1px) translateZ(0px);
-moz-transform: perspective(1px) translateZ(0px);
-ms-transform: perspective(1px) translateZ(0px);
-o-transform: perspective(1px) translateZ(0px);
transform: perspective(1px) translateZ(0px);
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
-ms-transition: color 0.3s;
-o-transition: color 0.3s;
transition: color 0.3s;
vertical-align: middle;
}
#signUpForm .btn-custom::before {
background-color: #0379ca;
border-color: #0379ca;
bottom: 0;
content: "";
left: 0;
position: absolute;
right: 0;
top: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50% 0;
-moz-transform-origin: 50% 50% 0;
-ms-transform-origin: 50% 50% 0;
-o-transform-origin: 50% 50% 0;
transform-origin: 50% 50% 0;
-webkit-transition: transform 0.3s ease-out;
-moz-transition: transform 0.3s ease-out;
-ms-transition: transform 0.3s ease-out;
-o-transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out;
z-index: -1;
}
#signUpForm .btn-custom:hover, #signUpForm .btn-custom:focus, #signUpForm .btn-custom:active {
border-color: #0379ca;
color: #fff;
}
#signUpForm .btn-custom:hover::before, #signUpForm .btn-custom:focus::before, #signUpForm .btn-custom:active::before {
-webkit-transform: scaleX(1);
-moz-transform: scaleX(1);
-ms-transform: scaleX(1);
-o-transform: scaleX(1);
transform: scaleX(1);
}
#signUpForm .btn.disabled, #signUpForm .btn[disabled], #signUpForm fieldset[disabled] .btn {
opacity: 1;
}
/*
|----------------------------------------------------------------------------
| Review page
|----------------------------------------------------------------------------
*/
#signUpForm .review-submit-section h4 {
background-color: transparent;
border: 1px solid #3e3e3e;
border-radius: 6px;
color: #222;
padding: 10px;
font-weight: bold;
text-align: center;
}
#signUpForm .review-submit-section h5 {
background-color: rgba(62, 62, 62, 0.7);
border-radius: 6px;
color: #fff;
padding: 10px;
margin: 0 0 20px;
font-size: 22px;
text-align: center;
}
#signUpForm .review-submit-section p > strong {
width: 50%;
float: left;
color: #0379ca;
padding-right: 10px;
text-align: right;
}
#signUpForm .review-submit-section p > span {
width: 50%;
float: left;
}
#signUpForm .review-submit-section p {
clear: both;
text-align: left;
}
#signUpForm .form-layer-step > p {
text-align: center;
margin-top: 5px;
}
#signUpForm .section-info-box strong {
padding-right: 5px;
}
/************ inline calendar **************/
#signUpForm .datepicker-inline {
border: 1px solid;
margin: 0 auto;
width: 220px;
}
/************ sweet-alert **************/
.sweet-alert button {
background-color: #0379ca;
}
.sweet-alert {
padding: 20px;
}
.sweet-alert .sa-icon {
margin: 0 auto 20px;
}
.sweet-alert h2 {
margin: 20px 0;
}
.sweet-alert button {
font-size: 16px;
font-weight: 400;
margin: 20px 5px 0;
padding: 6px 20px;
}
.sweet-alert .sa-icon.sa-error {
border-color: #ce0606;
}
.sweet-alert .sa-icon.sa-error .sa-line {
background-color: #ce0606;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
border: 4px solid rgba(60, 118, 61, 0.4);
}
.sweet-alert .sa-icon.sa-success .sa-line {
background-color: #3c763d;
}
/*
|----------------------------------------------------------------------------
| responsive
|----------------------------------------------------------------------------
*/
@media screen and (max-width: 767px) {
.signupForm-section h2.form-title {
padding: 0 15px;
}
.signupForm-section .form-wrap {
padding: 30px 0;
}
}
@media screen and (max-width: 480px) {
#signUpForm .col-xs-6 {
width: 100%;
}
}
@media screen and (max-width: 420px) {
#firstDigit #mathfirstnum, #secondDigit #mathsecondnum {
width: 20px;
}
}
@media screen and (max-width: 360px) {
#signUpForm span.sub-text {
right: 30px;
}
}
@media screen and (max-width: 340px) {
#signUpForm .btn {
margin: 0 0 20px 10px;
}
#signUpForm .btn.btn-default.disable {
display: none;
}
}
|
public/assets/userdashboard/css/reg-form.css
|
.signupForm-section{
background-attachment: fixed;
background-image: url(../images/bg.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
margin: 0 auto;
padding: 0;
position: relative;
width: 100%;
z-index: 1;
}
.signupForm-section::before{
background-color: rgba(255,255,255,0.5);
background-image: url(../images/bg_mask.png);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.contentBoxMargin {
margin: 0 0 50px;
}
.signupForm-section .display-table {
display: table;
height: 100vh;
width: 100%;
}
.signupForm-section .display-table-cell {
display: table-cell;
vertical-align: middle;
}
.signupForm-section .form-wrap {
background-color: #fff;
border-radius: 4px;
margin: 30px auto;
padding: 30px;
}
.signupForm-section h2.form-title {
font-size: 32px;
font-weight: bold;
color: #0379ca;
margin: 50px 0;
padding: 0 30px;
text-align: center;
}
#signUpForm h3.section-title {
background-color: rgba(62, 62, 62, 0.9);
border: 1px solid rgba(62, 62, 62, 0.9);
border-radius: 10px;
color: #fff;
font-weight: bold;
padding: 10px;
margin: 50px 0;
text-align: center;
}
#signUpForm h3.section-form-title {
color: #0379ca;
border-bottom: 5px solid #b5b5b5;
font-weight: bold;
max-width: 320px;
margin: 50px auto;
padding-bottom: 5px;
text-align: center;
}
.signUpForm-step-holder {
overflow: hidden;
position: relative;
}
.signUpForm-step-wrap {
overflow: hidden;
-webkit-transition: all 0.23s ease-in-out 0s;
-moz-transition: all 0.23s ease-in-out 0s;
-ms-transition: all 0.23s ease-in-out 0s;
-o-transition: all 0.23s ease-in-out 0s;
transition: all 0.23s ease-in-out 0s;
}
#signUpForm .slide-right {
left: 0;
opacity: 0;
position: absolute;
top: 0;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
width: 100%;
}
#signUpForm .slide-left {
left: 0;
opacity: 0;
position: absolute;
top: 0;
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
#signUpForm .open {
height: auto;
opacity: 1;
}
/*Form Step*/
#signUpForm .form-layer-steps {
margin: 0 0 50px;
overflow: hidden;
position: relative;
}
#signUpForm .form-layer-progress {
background-color: #b5b5b5;
height: 1px;
left: 0;
position: absolute;
top: 26px;
width: 100%;
}
#signUpForm .form-layer-progress-line {
background-color: #0379ca;
height: 1px;
left: 0;
position: absolute;
top: 0;
}
#signUpForm .form-layer-tolal-steps-4 .form-layer-step {
float: left;
padding: 0 5px;
position: relative;
text-align: center;
width: 25%;
}
#signUpForm .form-layer-step-icon {
background-color: #b5b5b5;
border-radius: 50%;
color: #fff;
display: inline-block;
font-size: 16px;
height: 40px;
line-height: 40px;
margin-top: 4px;
width: 40px;
text-align: center;
}
#signUpForm .form-layer-step.activated .form-layer-step-icon {
background-color: #fff;
border: 1px solid #0379ca;
color: #0379ca;
line-height: 38px;
}
#signUpForm .form-layer-step.active .form-layer-step-icon {
background-color: #0379ca;
font-size: 22px;
height: 48px;
line-height: 48px;
margin-top: 0;
width: 48px;
}
/*Form*/
form#signUpForm {
margin: 0 0 20px;
}
#signUpForm h4 {
font-size: 16px;
font-weight: bold;
margin: 10px 0 15px;
}
#signUpForm .form-group {
margin: 0 0 30px;
position: relative;
}
#signUpForm .form-control {
padding-left: 50px;
border: 1px solid #3e3e3e;
}
#signUpForm .input-group-icon {
background-color: #3e3e3e;
border: 0 none;
border-radius: 4px 0 0 4px;
color: #fff;
display: table-cell;
font-size: 14px;
height: 100%;
padding: 5px 7px 7px;
text-align: center;
vertical-align: top;
white-space: nowrap;
width: 40px;
position: absolute;
top: 0;
}
#signUpForm .has-error .form-control {
border-color: #ce0606;
}
#signUpForm .has-error .input-group-icon {
background-color: #ce0606;
color: #ffffff;
}
#signUpForm .form-control:focus, #signUpForm .has-error .form-control:focus {
border-color: #0379ca;
box-shadow: 0 1px 1px rgba(3, 17, 202, 0.075) inset, 0 0 8px rgba(3, 17, 202, 0.6);
}
#signUpForm .form-control:focus + .input-group-icon, #signUpForm .has-error .form-control:focus + .input-group-icon{
background-color: #0379ca;
color: #fff;
}
#signUpForm .help-block {
color: #ce0606;
margin: 0;
position: absolute;
bottom: -30px;
}
#signUpForm .validagree .help-block.with-errors {
bottom: -30px;
}
#signUpForm .help-block.with-errors.mandatory-error {
bottom: auto;
font-size: 16px;
font-weight: bold;
position: relative;
}
#signUpForm .text-danger {
color: #ce0606;
font-size: 20px;
}
#profile-Image img {
border: 1px solid #b5b5b5;
border-radius: 5px;
max-width: 150px;
}
/*attachment*/
#signUpForm .form-group.attachmentFile {
display: table;
margin: 15px 0 40px;
}
#signUpForm .input-group-btn ~ .form-control {
border-radius: 0 4px 4px 0;
cursor: not-allowed;
padding-left: 10px;
}
#signUpForm .input-group-btn > .btn {
background-color: #3e3e3e;
border: 1px solid #3e3e3e;
border-radius: 4px 0 0 4px;
color: #fff;
height: 34px;
padding: 4.5px 14px;
}
#signUpForm .attachmentFile .input-group-btn:first-child > .btn, #signUpForm .input-group-btn:first-child > .btn-group {
margin-left: 0;
}
#signUpForm .input-group-btn > .btn > input[type="file"] {
display: none;
}
/*select box*/
#signUpForm select {
background-color: transparent;
display: inline-block;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
}
#signUpForm select {
background-image: linear-gradient(45deg, transparent 50%, #3e3e3e 50%),
linear-gradient(135deg, #3e3e3e 50%, transparent 50%),
radial-gradient(transparent 66%, transparent 66%);
background-position: calc(100% - 18px) calc(1em + 2px),
calc(100% - 13px) calc(1em + 2px),
calc(100% - .5em) .5em;
background-size: 5px 6px, 6px 5px, 1.5em 1.5em;
background-repeat: no-repeat;
}
#signUpForm select:focus {
background-image: linear-gradient(45deg, transparent 50%, #0379ca 50%),
linear-gradient(135deg, #0379ca 50%, transparent 50%),
radial-gradient(transparent 66%, transparent 66%);
}
/*
|----------------------------------------------------------------------------
| Math Captcha
|----------------------------------------------------------------------------
*/
#humanCheckCaptchaBox {
font-weight: bold;
}
#humanCheckCaptchaBox, #humanCheckCaptchaInput, #firstDigit, #secondDigit, #mathfirstnum, #mathsecondnum {
display: inline;
}
#humanCheckCaptchaInput.form-control {
height: 30px;
margin-left: 10px;
padding: 4px;
text-align: center;
width: 45px;
}
#firstDigit #mathfirstnum, #secondDigit #mathsecondnum {
border: none;
box-shadow: none;
width: 30px;
height: 30px;
padding: 0;
pointer-events: none;
text-align: center;
}
/*
|----------------------------------------------------------------------------
| Button
|----------------------------------------------------------------------------
*/
#signUpForm .btn-default {
background-color: transparent;
border-color: #3e3e3e;
color: #222;
}
#signUpForm .form-control[disabled], #signUpForm .form-control[readonly], #signUpForm .form-control {
background-color: transparent;
border: 1px solid #3e3e3e;
}
#signUpForm .btn {
overflow: hidden;
font-size:16px;
padding: 6px 20px;
}
#signUpForm .btn-custom {
background-color: #3e3e3e;
border: 1px solid #3e3e3e;
box-shadow: 0 0 1px transparent;
color: #fff;
display: inline-block;
position: relative;
text-transform: capitalize;
-webkit-transform: perspective(1px) translateZ(0px);
-moz-transform: perspective(1px) translateZ(0px);
-ms-transform: perspective(1px) translateZ(0px);
-o-transform: perspective(1px) translateZ(0px);
transform: perspective(1px) translateZ(0px);
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
-ms-transition: color 0.3s;
-o-transition: color 0.3s;
transition: color 0.3s;
vertical-align: middle;
}
#signUpForm .btn-custom::before {
background-color: #0379ca;
border-color: #0379ca;
bottom: 0;
content: "";
left: 0;
position: absolute;
right: 0;
top: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50% 0;
-moz-transform-origin: 50% 50% 0;
-ms-transform-origin: 50% 50% 0;
-o-transform-origin: 50% 50% 0;
transform-origin: 50% 50% 0;
-webkit-transition: transform 0.3s ease-out;
-moz-transition: transform 0.3s ease-out;
-ms-transition: transform 0.3s ease-out;
-o-transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out;
z-index: -1;
}
#signUpForm .btn-custom:hover, #signUpForm .btn-custom:focus, #signUpForm .btn-custom:active {
border-color: #0379ca;
color: #fff;
}
#signUpForm .btn-custom:hover::before, #signUpForm .btn-custom:focus::before, #signUpForm .btn-custom:active::before {
-webkit-transform: scaleX(1);
-moz-transform: scaleX(1);
-ms-transform: scaleX(1);
-o-transform: scaleX(1);
transform: scaleX(1);
}
#signUpForm .btn.disabled, #signUpForm .btn[disabled], #signUpForm fieldset[disabled] .btn {
opacity: 1;
}
/*
|----------------------------------------------------------------------------
| Review page
|----------------------------------------------------------------------------
*/
#signUpForm .review-submit-section h4 {
background-color: transparent;
border: 1px solid #3e3e3e;
border-radius: 6px;
color: #222;
padding: 10px;
font-weight: bold;
text-align: center;
}
#signUpForm .review-submit-section h5 {
background-color: rgba(62, 62, 62, 0.7);
border-radius: 6px;
color: #fff;
padding: 10px;
margin: 0 0 20px;
font-size: 22px;
text-align: center;
}
#signUpForm .review-submit-section p > strong {
width: 50%;
float: left;
color: #0379ca;
padding-right: 10px;
text-align: right;
}
#signUpForm .review-submit-section p > span {
width: 50%;
float: left;
}
#signUpForm .review-submit-section p {
clear: both;
text-align: left;
}
#signUpForm .form-layer-step > p {
text-align: center;
margin-top: 5px;
}
#signUpForm .section-info-box strong {
padding-right: 5px;
}
/************ inline calendar **************/
#signUpForm .datepicker-inline {
border: 1px solid;
margin: 0 auto;
width: 220px;
}
/************ sweet-alert **************/
.sweet-alert button {
background-color: #0379ca;
}
.sweet-alert {
padding: 20px;
}
.sweet-alert .sa-icon {
margin: 0 auto 20px;
}
.sweet-alert h2 {
margin: 20px 0;
}
.sweet-alert button {
font-size: 16px;
font-weight: 400;
margin: 20px 5px 0;
padding: 6px 20px;
}
.sweet-alert .sa-icon.sa-error {
border-color: #ce0606;
}
.sweet-alert .sa-icon.sa-error .sa-line {
background-color: #ce0606;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
border: 4px solid rgba(60, 118, 61, 0.4);
}
.sweet-alert .sa-icon.sa-success .sa-line {
background-color: #3c763d;
}
/*
|----------------------------------------------------------------------------
| responsive
|----------------------------------------------------------------------------
*/
@media screen and (max-width: 767px) {
.signupForm-section h2.form-title {
padding: 0 15px;
}
.signupForm-section .form-wrap {
padding: 30px 0;
}
}
@media screen and (max-width: 480px) {
#signUpForm .col-xs-6 {
width: 100%;
}
}
@media screen and (max-width: 420px) {
#firstDigit #mathfirstnum, #secondDigit #mathsecondnum {
width: 20px;
}
}
@media screen and (max-width: 360px) {
#signUpForm span.sub-text {
right: 30px;
}
}
@media screen and (max-width: 340px) {
#signUpForm .btn {
margin: 0 0 20px 10px;
}
#signUpForm .btn.btn-default.disable {
display: none;
}
}
| 0.330903 | 0.100437 |
.font18{ font-size:18px;}
.font16{ font-size:16px;}
.font14{ font-size:14px;}
.font12{ font-size:12px;}
.capitaltext { text-transform: uppercase; }
.colorBlue { color:#03a9f4 !important; }
.colorTeal { color:#009688 !important; }
.colorDarkgreen { color:#1e7a45 !important; }
.colorLightgreen { color: #8bc34a !important; }
.colorLightgrey { color:#888888 !important; }
.colorDarkgrey { color:#424242 !important; }
.colorOrange { color:#ff9800 !important; }
.colorRed{ color:#e51c23 !important;}
.noborder0{ border: none !important; }
.relposition { position:relative; }
.floatRt{ float:right; }
.floatLt{ float:left; }
.btn.btn-raised.btn-darkgrey,
.input-group-btn .btn.btn-raised.btn-darkgrey,
.btn.btn-fab.btn-darkgrey,
.input-group-btn .btn.btn-fab.btn-darkgrey,
.btn-group-raised .btn.btn-darkgrey,
.btn-group-raised .input-group-btn .btn.btn-darkgrey {
background-color: #424242;
color: rgba(255,255,255, 0.84);
}
/* search and filter button etc */
#toprightsearch input{
margin:0;
height:36px;
padding-top:4px;
width: 256px;
}
#toprightsearch input:focus{
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border:none;
}
#hfaSearchBtnClose, #shaSearchBtnClose, #clientSearchBtnClose, #listTableSearchBtnClose{
cursor: pointer;
display: none;
font-size: 18px;
height: 34px;
margin: 0;
padding-left: 8px;
padding-top: 8px;
position: absolute;
right: 0;
top: 0;
width: 30px;
}
#hfaList_filter, #shaList_filter, #clientList_filter, #employeeList_filter, #guardianList_filter, #apuCompanyList_filter, #bookingList_filter, #tourList_filter, #shareHouseList_filter, #poList_filter{
position:absolute;
top:0; right:0;
display:none;
}
#toprightsearch{
color: #666;
}
.filterbtnhol{
float:right;
padding-left: 16px;
padding-right: 16px;
}
#filtersLoadingDiv{margin: 120px 0px 0px 130px;}
/* Host families lists */
#hfaList_wrapper, #shaList_wrapper, #clientList_wrapper, #guardianList_wrapper,#apuCompanyList_wrapper, #bookingList_wrapper, #clientProductList_wrapper, #tourList_wrapper, #shareHouseList_wrapper, #poList_wrapper{
border: solid 1px #f1f1f1;
}
.bootstrap-timepicker-widget.dropdown-menu {
z-index: 1500!important;
}
.completed-app-step
{
color:#8bc34a !important;
}
.contactWayGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
position:absolute;
top:0px;
right:-15px;
}
.rescheduledGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
position:absolute;
top:0px;
right:-15px;
}
.hold-inline-icon{
position:relative;
}
.steps-indicator-hol{ cursor: default; }
.steps-indicator-hol i {
color: hsl(0, 0%, 80%);
margin-right: 5px;
}
.documentsGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
}
.documentsGreyTic
{
color:#ccc;
font-size:16px;
font-weight:bolder;
}
/* Host family application details */
.ge-app-header{
background: url(../img/profile-bg-material.png) !important;
}
.ge-app-submenu .material-nav-tabs.nav-tabs > li > a::after{
background: #009688 !important;
}
.ge-app-submenu .material-nav-tabs.nav-tabs > li.active > a, .ge-app-submenu .material-nav-tabs.nav-tabs > li > a:hover{
color: #009688 !important;
}
.hfa_edit_page_icon, .sha_edit_page_icon
{
font-size: 100px;
color: #cccccc !important;
}
/* Dropzone style overrides for hfa photos */
#hf-photos-form .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
#hf-photos-form1 .dz-default.dz-message, #hf-documents-upload .dz-default.dz-message, #sha-documents-upload .dz-default.dz-message, #incident-doc-form .dz-default.dz-message, #incident-doc-formEdit .dz-default.dz-message, #warning-doc-form .dz-default.dz-message, #hfa-warning-doc-formEdit .dz-default.dz-message, #book-CG-Doc-Rec-form .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
#hf-photos-formedit .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
.panel-profile .tab-pane:nth-child(2) {
background: #ffffff;
}
.panel-profile .tab-pane:first-child {
margin-bottom: 30px;
}
.main-bfBlock_new h3 {
color: hsl(146, 62%, 29%);
}
.profile-photos .img-thumbnail {
width: 100%;
}
.tab-pane.p-md .table.about-table th {
width: 680px;
}
.statusChangeDate {
margin-left: 22px;
}
.col-md-12.custom-accordion {
padding: 3px;
}
.sha-details > div.sha-ther-details {
margin-bottom:30px;
}
.media-body >.media-heading {
font-size: 15px;
/* color:hsl(88, 50%, 53%);*/
}
#bedroomAccordion .media-body.pb-md, #hbedroomAccordion .media-body.pb-md, #bedroomAccordionOU .media-body.pb-md,#bathroomAccordion .media-body.pb-md, #familyMemberAccordion .media-body.pb-md, #familyMemberAccordionPop .media-body.pb-md, #incidentFollowUpAccordionPop .media-body.pb-md {
display: block;
height: 100%;
padding: 0 !important;
}
#bedroomAccordion .panel-heading, #hbedroomAccordion .panel-heading, #bedroomAccordionOU .panel-heading, #bathroomAccordion .panel-heading, #familyMemberAccordion .panel-heading, #familyMemberAccordionPop .panel-heading, #incidentFollowUpAccordionPop .panel-heading {
padding: 17px 16px 11px !important;
}
#bedroomAccordionOU{ margin-bottom:0; }
.personel-info span.icon {
font-size: 24px !important;
margin-bottom: 10px;
}
.tab-pane .table.about-table th {
width: 300px;
}
.collapse .table.about-table th {
width: 300px;
}
#model_plinsuranceStatus_form table > tbody > tr > td{
text-align:right;
text-transform:capitalize;
}
.about-area table > tbody > tr > td {
text-align: left;
}
.panel.panel-success > .panel-heading {
background-color: hsl(88, 50%, 53%) !important;
color: hsl(86, 50%, 94%) !important;
}
.panel.panel-bluegraylight .panel-heading h2 {
color: hsl(200, 18%, 46%) !important;
}
.panel-heading .media-heading {
float: left;
}
.about-area .media-body.panel-heading {
display: block;
width: 100% !important;
}
.col-md-3 .panel-body, .col-md-6 .panel-body, .col-md-4 .panel-body {
text-align: left;
}
.table > thead > tr:first-child > th, .table > tbody > tr:first-child > th, .table > tfoot > tr:first-child > th, .table > thead > tr:first-child > td, .table > tbody > tr:first-child > td, .table > tfoot > tr:first-child > td
{
border-top:0px;
}
.about-area.p-md {
margin-bottom: 0;
padding-bottom: 0 !important;
}
.personel-info span.icon {
color: hsl(199, 98%, 48%);
}
[data-widget]:not([data-widget-static]) .panel-heading {
cursor: unset;
}
.ge-app-submenu.col-md-12.pl-n.pr-n.ul-tabs {
position: relative;
}
#filterMatches {
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
/* position: absolute;
right: 15px;
top: 2px*/
}
#filterMatchesStatusBtnDiv{
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
/* position: absolute;
right: 141px;
top: 2px*/
}
#filterMatchesStatusBtnDiv li a.selected, #sortHfaBookingHistory li a.selected, #sortShaBookingHistory li a.selected{
font-weight:500;
}
#exportProducts {
margin: 0;
}
#addDefaultProduct {
font-size: 12px;
margin: 0;
}
/*.btn.btn-midnightblue.btn-sm {
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
color: hsl(358, 80%, 50%) !important;
position: absolute;
right: 15px;
top: 2px;
}*/
.btn.btn-midnightblue.btn-raised.btn-sm:hover:not(.btn-link), .btn.btn-midnightblue.btn-raised.btn-sm:focus:not(.btn-link), .btn.btn-midnightblue.btn-raised.btn-sm:active:not(.btn-link) {
background-color: hsla(0, 0%, 60%, 0.2);
}
.profile-del-img {
background-color: hsla(0, 0%, 0%, 0.5) !important;
height: 50px !important;
left: 0;
margin: auto;
min-width: 50px !important;
position: absolute !important;
right: 0;
top: 40%;
width: 50px !important;
}
.img-thumbnail.img-responsive {
margin-bottom: 0 !important;
}
#addNewEmployeeTab
{
display:none;
}
.employeeListTdP
{
margin:0;
}
.fa.fa-file-word-o, .fa.fa-file-excel-o, .fa.fa-file-image-o, .fa.fa-file-pdf-o {
color: hsl(0, 0%, 26%);
font-size: 16px;
}
.panel-body .form-group {
margin: 0;
}
.panel-body .form-group .col-sm-2.control-label {
padding-left: 0 !important;
text-align: left;
}
.panel-body p {
text-align: left;
}
#clientAgreements .panel-body p
{
width:100%;
}
#clientAgreements .panel-body p a:last-child
{
float:right;
}
#clientAgreements .panel-body p a:first-child {
float: left;
overflow-wrap: break-word;
width: 80%;
word-break: break-all;
}
.width-fifty-left {
float: left;
width: 49%;
}
.width-fifty-right {
float: right;
width: 49%;
}
.width-thirty-left
{
float: left;
width: 32%;
}
.width-thirty-center {
float: left;
margin: 2px 2% 0 !important;
width: 32%;
}
.width-full
{
float:left;
width:100%;
}
.tab-pane.p-md.panel.panel-default .form-group {
margin: 0;
}
.width-thirty-right
{
float: right;
width: 32%;
}
#clientList td p {
height: 20px;
overflow: hidden;
width: 95%;
}
.col-xs-6y {
float: left;
width: 50%;
}
.col-xs-6x {
float: left;
padding-right: 16px;
width: 50%;
}
.filterItemLabel
{
color:rgba(0, 0, 0, 0.87) !important;
}
.filterMatchesLabel{
margin-bottom:0;
}
#filterMatchesUpdateBtnDiv, #addNewDefaultProductSubmitBtnDiv, #addGuardianshipProductSubmitBtnDiv, #generalFiltersBtnDiv {
background: hsl(0, 0%, 87%) none repeat scroll 0 0;
bottom: 65px;
padding: 10px 94px;
position: fixed;
width: 100%;
z-index:10;
}
#filterMatchesForm2 .col-xs-12
{
padding:0;
}
#filterMatchesForm2 .form-group
{
margin:0;
}
#filterMatchesForm2 .form-control
{
margin:0;
}
.filterMatchesEditBtn {
color: hsl(187, 100%, 42%);
cursor: pointer;
font-size: 14px;
margin-left: 5px;
}
.filterMatchesLabelValue
{
color:#00bcd4 !important;
}
.grey
{
color:hsl(0, 0%, 74%) !important;
}
.personel-info > span:nth-child(2) {
display: block;
overflow-wrap: break-word;
word-break: break-all;
}
div.dataTables_processing {
background-image:url(../img/loading-filters.gif)!important;
background-repeat:no-repeat!important;
background-position:center!important;
color: hsla(0, 0%, 0%, 0) !important;
z-index: 99999999;
}
.productClient
{
cursor:pointer;
}
.productClient-selected
{
color:#06F;
font-weight:bold;
}
div.dataTables_processing
{
position:fixed !important;
margin-top: 0 !important;
}
#exportProducts .colorBlue {
font-size: 12px;
}
.prices-edit
{
text-align:left !important;
}
#editProductForm tr td {
border-top: 0 none;
}
#addProductToClientForm tr td {
border-top: 0 none;
}
.control-label.author {
color: hsla(0, 0%, 0%, 0.87);
display: block;
font-size: 13px;
font-weight: 400;
}
.control-label.author.checkbox {
float: left;
margin-bottom: 10px;
}
#editProductForm .control-label {
margin: 0;
}
#editProductForm tr:first-child .control-label {
margin-top: 16px;
}
#addProductToClientForm .control-label {
margin-top: 0;
}
#addProductToClientForm tr:first-child .control-label {
margin-top: 16px;
}
.panel-profile .panel-body ul.dropdown-menu.dropdown-menu-sidebar {
margin-top: 0 !important;
}
.panel-profile .panel-body ul.dropdown-menu.dropdown-menu-sidebar li a {
color: hsl(0, 0%, 26%);
font-size: 13px;
padding: 0 20px;
}
#addProductToClientForm .checkbox.block {
margin: 15px 0;
}
.btn-group.dropdown.table-actions
{
display:block;
}
#clientProductList .dropdown-toggle
{
right: 0px;
top: -17px;
}
.shaMatchStatus-hol i
{
margin-right: 5px;
}
.shaMatchStatus-Shortlisted i
{
color: #8bc34a;
}
.shaMatchStatus-Rejected i
{
color: #dd191d;
}
.shaMatchStatus-To_be_reviewed i
{
color: hsl(0, 0%, 80%);
}
.matchStatusGrey
{
color:hsl(0, 0%, 80%);
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.matchStatusGreen
{
color:#8bc34a;
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.matchStatusRed
{
color:hsl(36, 100%, 50%);
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.actionIconOrange
{
color:#ff9800;
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.unavailable-comment
{
margin-left: 32px;
}
.form-group.m-n.col-xs-6.left {
padding-left: 0;
}
.form-group.m-n.col-xs-6.right {
padding-right: 0;
}
#editGuardianshipProductForm tr td {
border-top: 0 none;
}
.guardianship-edit {
text-align: left;
}
#editGuardianshipProductForm .control-label {
margin: 0;
}
#editGuardianshipProductForm tr:first-child .control-label {
margin-top: 16px;
}
.panel-margin {
margin-bottom: 32px;
}
.productClient.custom > span, .submenu-child span {
font-size: 13px;
line-height: 22px;
cursor: pointer;
}
#productClient-default {
font-size: 12px;
margin: 0;
}
.client-button .btn.btn-primary.custom-button, .pricing-new-product .btn.btn-primary {
padding: 10px 30px 9px;
}
.panel-margin .productClient-selected {
color:#7cb342;
font-weight: bold;
}
.panel-margin .productClient-selected span {
font-weight: bold;
}
#productClient-default.productClient-selected {
font-weight: 500;
}
#roomsUnAvailErrorMessage {
color: #e51c23;
}
.checkbox-primary-label {
color: #fff !important;
background: #888;
padding: 15px !important;
width: 100%;
}
#roomsUnAvailErrorMessage.roomsUnAvailErrorMessage {
color: rgba(255, 255, 255, 0.87);
background: #e51c23;
padding: 15px;
margin-left: 8px;
}
.sidebar nav.widget-body > ul.acc-menu .badge-submenu1
{
left:52px;
}
table td > a > i.material-icons
{
font-size:22px;
}
td.middle-alignment {
vertical-align: middle !important;
}
.middle-alignment .anchor_count_warnings .material-icons.font14.fa.fa-warning {
color: hsl(36, 100%, 50%);
}
.col-xs-12.no-paddings {
padding: 0;
}
.panel-body.no-paddings {
padding: 0;
}
input.choose-btn.full_input_select {
width: 258px !important;
}
.wwccpopcircle{
height:20px !important;
width:20px !important;
min-width: 20px !important;
margin-top: -2px !important;
float:right;
}
.wwccCircleGrey{
background-color:#bdbdbd !important;
}
.pl-button {
clear: both;
padding: 16px 0 0;
}
.pldescription {
float: right;
}
.wwcc-fifty-right-right, .incidentFollowUp-addBtnDiv {
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
margin-top: 16px;
overflow: hidden;
padding: 10px 20px;
text-align: center;
}
.wwcc-priview-btn > a {
color: hsla(0, 0%, 100%, 0.84);
}
.shaHfaCannotDelAlert .modal-header h4
{
color: #ff9800;
}
.tab-content .second-student-name {
margin-left: 32px;
}
p.hfa_wwcc_file_name_text {
margin-top: 10px;
text-align: center;
color: #c0c3c3;
}
p.wwccUploadFileError, p.insUploadFileError {
color: hsl(358, 79%, 50%);
text-align: center;
}
a.mr-sm.margin-right-5 {
margin-right: 5px !important;
}
.font12.mem18wwcc {
float: right;
line-height: 15px;
}
#shaChangeStatus_form #shaChangeStatusPendingInvInfoMsg {
font-weight: bold;
color: #ff9800;
margin-top: 12px;
float: left;
}
.changeStatusWarningMsg, .warningMsgCH{
font-weight: bold;
color: #ff9800;
margin-top: 12px;
float: left;
}
#hfaChangeStatus_form #shaChangeStatusApprovedInfoMsg {
font-weight: bold;
color: #ff9800;
float: left;
margin-bottom: 20px;
width:100%;
}
#shaAppPageNotiLi .badge {
background-color: #908e8e;
position: absolute;
left: 25px;
top: 6px;
}
#hfaAppPageNotiLi .badge {
background-color: #908e8e;
position: absolute;
left: 25px;
top: 6px
}
.sidebar .sidebar3rdCurrent{
text-decoration: underline !important;
}
.tooltip
{
z-index:999999;
position: fixed;
}
#clientList .sorting_1 a {
text-transform: capitalize;
}
.page-heading h1 small {
text-transform: capitalize;
}
.btn.btn-default.btn-raised.dropdown-toggle {
background: none;
border: 0px;
margin: 0;
padding-top: 13px;
padding-bottom: 13px;
border: 0px;
box-shadow: 0px;
}
.hfaAppIncomp
{
color:#b0b0b0;
}
.warningCol{
padding:5px 0;
width:27%;
float:left;
cursor: pointer;
}
.warningRow{
clear: both;
}
.warningRowEditor
{
display:none;
}
.warningCol.warningEdit {
float: right;
text-align: right;
}
.warningRow.warningRowEditor
{
background: #f6f6f6;
margin-top: 16px;
overflow: hidden;
padding: 10px 20px;
}
.warningRowParent {
margin-bottom: 5px;
overflow: hidden;
padding-bottom: 5px;
border-bottom: 1px solid #f1f1f1;
}
.warningRowParent:last-child {
border: 0;
}
#shaChangeWarning_form .warningCol {
padding: 5px 0;
width: 184px;
float: left;
cursor: pointer;
}
#shaChangeWarning_form .form-group.width-full {
margin: 0;
}
#matchedAppPlaceBooking_form
{
margin-top: -45px;
}
.bookingFormRoomInfoDiv{
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
margin: 6px 0 0 46px;
padding: 5px 10px;
}
.bookingFormRoomInfoDiv table td
{
padding: 5px 10px !important;
}
.bookingFormRoomInfoDiv table
{
margin-bottom: 0 !important;
}
.panel.warning-heading {
background: transparent;
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.12), 0px 0px 0px 0 rgba(0, 0, 0, 0.12) !important;
margin-bottom: 0;
}
.hostMatchList tbody td:nth-child(3) {
vertical-align: middle;
}
.widget.referral-info-widget {
margin-top: 20px;
}
.timeline-grey .timeline-icon {
background: #908e8e !important;
color: #ffffff !important;
}
.btn.btn-danger.syncInitialInvoicesBtn {
margin: 0;
font-size: 13px;
}
.btn.btn-default.bootstrap-touchspin-up {
margin-top: 5px;
margin-bottom: 5px;
}
.submenu-child div.productClient:last-child {
border-bottom:0px;
}
.submenu-child div.productClient {
border-bottom: 1px solid #e7e5e5;
padding: 12px 0 12px 0 !important;
}
#syncInvoicesPartial, #syncInvoicesPaid, #syncInvoicesAppMoved, #syncInvoicesPartialUpdated
{
display:block;font-size:14px;
}
.list-group-item.withripple .material-icons.updateInvDurationIcon {
position: absolute;
top: 15px;
font-size: 18px !important;
right: 16px;
}
.input-group-addon.addon-invoiceNo {
font-size: 19px;
color: #212121;
padding: 0px 1px 0 10px;
vertical-align: unset;
font-weight: 400;
}
.editInvoiceItem i, .deleteInvoiceItem i {
/*color: #424242;*/
}
.text-default.resolve-hint, .text-default.officeUse-guardianship-hint {
color: #888888;
}
.resolve-warning-parent span.help-block {
position: unset;
margin-bottom: 3px;
}
.text-default.officeUse-guardianship {
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
overflow: hidden;
padding: 10px 15px;
}
.warningRowParentSync {
overflow: hidden;
}
.warningColSnc {
padding: 10px 0;
cursor: pointer;
font-size: 13px !important;
border-top: 1px solid #f1f1f1;
}
.warningRowSnc {
clear: both;
padding-left: 16px;
font-size: 13px !important;
}
.syncInitialInvoicesSuccess .warningRowParentSync:last-child .warningColSnc {
padding-bottom: 5px;
}
.syncInitialInvoicesSuccess .warningRowParentSync:first-child .warningColSnc {
}
.syncInitialInvoicesSuccess
{
font-size:13px;
}
.form-group.client-checkbox#create_client_commissionDiv label {
font-size: 12px !important;
}
.form-group.client-checkbox#create_client_GroupInvDiv label {
font-size: 12px !important;
}
.form-group.client-checkbox#create_client_commissionDiv .checkbox.checkbox-primary label {
color: #888888;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary label {
color: #888888;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary.child label:first-child {
color: rgba(0, 0, 0, 0.87);
margin-bottom: 5px;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary.child {
margin-top:15px;
}
.form-group.client-checkbox {
text-align: left;
/*padding-left: 16px;*/
}
.check-right
{
position:absolute;
top:0; right:10px; z-index:999;
}
.check-right .checkbox.checkbox-primary.vipcheck-hfa {
margin-top: 0;
margin-bottom: 0;
}
.check-right .checkbox .checkbox-material:before {
height: auto;
width: auto;
}
.check-right .checkbox .checkbox-material .check {
margin-right: 0px;
}
p.hfa_ins_file_name_text {
margin-top: 10px;
text-align: center;
color: #c0c3c3;
}
#filterMatchesEditSuburb2_suggestions
{
position: absolute;
top: 100%;
left: 0;
z-index: 1001;
display: none;
float: left;
width: 210px;
padding: 10px 0;
margin: 2px 0 0;
list-style: none;
font-size: 13px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid #eeeeee;
border-radius: 2px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
max-height: 200px;
overflow-y: scroll;
}
#filterMatchesEditSuburb2_suggestions p
{
padding-left:20px;
cursor:pointer;
}
#filterMatchesEditSuburb2_suggestions span
{
padding-left:20px;
color:rgba(0, 0, 0, 0.54);
}
.width-23-left
{
float: left;
width: 23%;
}
.mailto {
color: #424242;
}
.mailto:hover {
text-decoration: underline;
color: #424242;
}
.pre-wrap {
white-space: pre-line;
margin-top: -20px;
}
/*.colorDarkgrey.media-heading.lalala:hover {
text-decoration: underline;
}*/
.edot-desc
{
border-top: 1px solid #DDD;
padding: 16px;
}
.edot-desc h2 {
font-size: 13px;
text-transform: uppercase;
color: #03a9f4;
margin: 0;
font-weight: 500;
}
.edot-desc ul {
margin: 5px 0 0 13px;
padding: 0;
}
.edot-desc li {
color: #BDBDBD;
}
#model_hfafamilynote .dropzone, #model_hfafamilynoteedit .dropzone, #model_bookingIncident .dropzone, #model_hfaWarningSend .dropzone, #model_bookingCGDocRec .dropzone {
min-height: auto;
margin-top: 7px ;
}
.notes-list-head
{
text-transform:capitalize;
cursor:pointer;
}
.notes-list-head:hover
{
text-decoration:underline;
}
.note-badge .badge {
position: absolute;
left: 28px;
top: -13px;
}
.note-badge {
position: relative;
}
.note-delete, .hfa_callLog_delete, .hfa_visitReport_delete, .cApprovalDel, .bookingIncident_delete, .bookingFeedback_delete, .timelineListDel, .bookingCheckup_delete {
float: right;
font-size: 24px;
margin-top: -28px;
}
.note-delete:hover, .hfa_callLog_delete:hover, .hfa_visitReport_delete:hover, .cApprovalDel:hover, .bookingIncident_delete:hover, .bookingFeedback_delete:hover, .timelineListDel:hover, .bookingCheckup_delete:hover
{
color: #e72e35;
cursor:pointer;
}
/*.family-notes.panel .timeline > li .timeline-body {
margin: 0 0 8px 20%;
}*/
.timeline > li .timeline-body {
margin: 0 0 0 20%;
}
#clientfaAgreements .panel-body p {
clear: both;
}
#poFiltersForm .form-group {
margin: 0;
}
.booking-icon-check {
float: left;
color: hsl(199, 98%, 48%);
margin-right: 10px;
margin-bottom: -1px;
}
.booking-icon-check-name {
margin-top: 2px;
float: left;
}
.label.offline-online
{
padding: 1px 2px;
color: #dedede;
}
.label.label-darkgreen.offline-online
{
background-color: #009688;
}
.colorDarkgrey.media-heading.lalala {
font-size: 18px;
}
.move-notice-date-box
{
width: 100%;
overflow: hidden;
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
padding: 10px 10px 10px 10px;
}
.info-tile.info-tile-alt.tile-lime .info
{
text-align:center;
height: 126px;
}
.search-filter-status li a
{
padding:3px 20px !important;
font-size: 13px !important;
}
.warningRowParentSync div.warningRowSnc:last-child {
margin-bottom: 10px;
}
#syncInitialInvoicesSuccess .warningRowParentSync:last-child div.warningRowSnc:last-child {
margin-bottom: 0px;
}
#model_editBooking .datepicker-dropdown.datepicker-orient-bottom:before {
border-top: 0px;
}
#model_editBooking .datepicker-dropdown.datepicker-orient-bottom:after {
border-top: 0px;
}
.panel-body.nominatedfamilyfinfo {
padding-top:0 !important;
}
.list-group.searchall-list .list-group-separator:last-child {
display: none;
}
#bookingList .matchStatusGrey {
float: left;
margin: 0 0 0 0;
font-size:21px;
}
#bookingList .matchStatusGreen {
float: left;
margin: 0 0 0 0;
font-size:21px;
}
#bookingList .middle-alignment a {
float: left;
}
ul.timeline li.timeline-grey
{
padding-bottom: 20px;
}
ul.timeline:last-child li.timeline-grey
{
padding-bottom: 0px;
}
.familyMemberAccordion .media-body.pb-md {
display: block;
height: 100%;
padding: 0 !important;
}
.familyMemberAccordion .media-body.pb-md .panel-heading {
padding: 17px 16px 11px !important;
}
.alert-info_orange {
background:#ff9800;
}
.familyMemberAccordion.panel-group.panel-default {
margin-bottom: 16px;
}
.read-more-state {
display: none;
}
.read-more-target {
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
padding-bottom: 0px !important;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
max-height: 999em;
padding-bottom: 20px !important;
}
.read-more-state ~ .read-more-trigger:before {
/*content: 'Show more';*/
}
.read-more-state:checked ~ .read-more-trigger:before {
/*content: 'Show less';*/
}
.read-more-trigger {
cursor: pointer;
display: inline-block;
padding: 5px 5px 5px 10px;
color: #0fb2fc;
font-size: 13px;
line-height: 2;
border: 0;
border-radius: .25em;
margin-left: -10px;
position: relative;
}
/*for datepicker*/
.datepicker-dropdown.datepicker-orient-bottom:before,
.datepicker-dropdown.datepicker-orient-bottom:after,
.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.datepicker-dropdown.datepicker-orient-bottom:before,
.datepicker-dropdown.datepicker-orient-bottom:after {
bottom: 100% !important;
}
.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
top: 100% !important;
}
#model_deleteClientProcess .modal-body > img {
margin: 0px 281px !important;
width: 40px !important;
height: 40px !important;
}
.mapLocationLink{
color:unset;
}
.mapLocationLink:hover{
color:unset;
text-decoration:underline;
}
a.mapLocationLink:focus {
color:unset;
}
.sha-sF{
position: absolute;
left: 43%;
top: 10%;
font-size:10px;
}
.page-heading.report-page-heading {
margin-bottom: 24px;
}
.no-pad-lft {
padding-left: 0;
}
.no-pad-ryt{
padding-right: 0;
}
#HR_form .stepy-navigator.panel-footer, #CaR_form .stepy-navigator.panel-footer {
clear: both;
}
#HR_form .checkbox label, #CaR_form .checkbox label {
text-align: left;
}
.checkbox.width-float {
float:left;
width: 50%;
}
.panel-body .checkbox.width-float.checkbox-width-float:last-child {
float: left;
margin: -24px 0 0 0;
}
@media (max-width: 991px) {
#CaR_collegeSelect .form-group {
width: 90%;
}
#CaR_collegeSelectAddNew {
right: 4%;
}
}
@media (max-width: 767px) {
.checkbox.width-float {
float:none;
width: 100%;
}
.panel-body .checkbox.width-float.checkbox-width-float:last-child {
float: none;
margin: 0 0 0 0;
}
}
.vr_FeildComments{
padding-left:15px !important;
}
.panel-profile .panel-body ul li .timeline-body.shaInsFIlePrevLink a {
font-size: 13px;
color: #333;
width: unset;
text-align: left;
margin-left: -35px;
}
.form-group.has-error label.control-label.filterItemLabel
{color:#e51c23 !important;}
.tooltip-inner {
max-width: 1000px;
white-space:pre-wrap;
}
.paginate_button:hover {
background: #e0e0e0;
}
.paginate_button {
padding: 7px 11px;
border: 1px solid #eee;
color: #03a9f4;
margin-left: -1px;
float:left;
}
.paginate_button.current, .paginate_button.current:hover {
background: #03a9f4;
border: 1px solid #03a9f4;
color: #fff;
cursor: default;
}
.paginate_button.first {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
.paginate_button.previous {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
.paginate_button.next, .paginate_button.last {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
a.paginate_button.first:before, a.paginate_button.previous:before {
color: #03a9f4;
margin: -1px 0 0px 3px;
}
a.paginate_button.next:after, a.paginate_button.last:after {
color: #03a9f4;
margin: -1px 0 0px 3px;
}
.paginate_button.disabled
{
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
.paginate_button.disabled::before, .paginate_button.disabled::after {
color: #bdbdbd !important;
}
#CaR_clientGroupSelect .help-block, #CaR_collegeSelect .help-block, #CaR_clgUniGroupSelect .help-block, #CaR_clgUniSelect .help-block, #CaR_employeeSelect .help-block, #CaR_clientTypeSelect .help-block {
position: unset;
}
.timeline > li .radio p.author {
font-size: 13px;
display: block;
color: rgba(0, 0, 0, 0.87);
font-weight: 400;
}
.timeline > li .radio p {
color: #bdbdbd;
font-size: 13px;
line-height: 1.45;
margin: 0;
}
#transportListDivBookingView .timeline::before {
content: unset;
}
#transportListDivBookingView ul.timeline li.timeline-grey {
padding-bottom: 10px;
border-bottom: 1px solid #f1f1f1;
margin-bottom: 20px !important;
}
#transportListDivBookingView ul.timeline li.timeline-grey:last-child {
border-bottom: 0px ;
margin-bottom: 0px !important;
}
.visitReportDateEdit {
color: hsl(187, 100%, 42%);
cursor: pointer;
font-size: 11px;
margin-left: 5px;
}
.visitReportCopy {
float: right;
margin-top: -18px;
margin-right: 7px;
font-size: 16px;
font-weight: 500;
}
#clientClgUniCheckboxError{
display:none;
color:#e51c23;
margin-top: 5px;
float:left;
}
.checkbox label {
display: inline-flex;
}
.fa.fa-bookmark.mr-lg.dark-gray.matchStatusGrey {
color: #9e9e9e;
}
.panel-body.margin-minus .checkbox label{
display:inherit;
}
|
static/system/css/ge-system.css
|
.font18{ font-size:18px;}
.font16{ font-size:16px;}
.font14{ font-size:14px;}
.font12{ font-size:12px;}
.capitaltext { text-transform: uppercase; }
.colorBlue { color:#03a9f4 !important; }
.colorTeal { color:#009688 !important; }
.colorDarkgreen { color:#1e7a45 !important; }
.colorLightgreen { color: #8bc34a !important; }
.colorLightgrey { color:#888888 !important; }
.colorDarkgrey { color:#424242 !important; }
.colorOrange { color:#ff9800 !important; }
.colorRed{ color:#e51c23 !important;}
.noborder0{ border: none !important; }
.relposition { position:relative; }
.floatRt{ float:right; }
.floatLt{ float:left; }
.btn.btn-raised.btn-darkgrey,
.input-group-btn .btn.btn-raised.btn-darkgrey,
.btn.btn-fab.btn-darkgrey,
.input-group-btn .btn.btn-fab.btn-darkgrey,
.btn-group-raised .btn.btn-darkgrey,
.btn-group-raised .input-group-btn .btn.btn-darkgrey {
background-color: #424242;
color: rgba(255,255,255, 0.84);
}
/* search and filter button etc */
#toprightsearch input{
margin:0;
height:36px;
padding-top:4px;
width: 256px;
}
#toprightsearch input:focus{
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border:none;
}
#hfaSearchBtnClose, #shaSearchBtnClose, #clientSearchBtnClose, #listTableSearchBtnClose{
cursor: pointer;
display: none;
font-size: 18px;
height: 34px;
margin: 0;
padding-left: 8px;
padding-top: 8px;
position: absolute;
right: 0;
top: 0;
width: 30px;
}
#hfaList_filter, #shaList_filter, #clientList_filter, #employeeList_filter, #guardianList_filter, #apuCompanyList_filter, #bookingList_filter, #tourList_filter, #shareHouseList_filter, #poList_filter{
position:absolute;
top:0; right:0;
display:none;
}
#toprightsearch{
color: #666;
}
.filterbtnhol{
float:right;
padding-left: 16px;
padding-right: 16px;
}
#filtersLoadingDiv{margin: 120px 0px 0px 130px;}
/* Host families lists */
#hfaList_wrapper, #shaList_wrapper, #clientList_wrapper, #guardianList_wrapper,#apuCompanyList_wrapper, #bookingList_wrapper, #clientProductList_wrapper, #tourList_wrapper, #shareHouseList_wrapper, #poList_wrapper{
border: solid 1px #f1f1f1;
}
.bootstrap-timepicker-widget.dropdown-menu {
z-index: 1500!important;
}
.completed-app-step
{
color:#8bc34a !important;
}
.contactWayGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
position:absolute;
top:0px;
right:-15px;
}
.rescheduledGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
position:absolute;
top:0px;
right:-15px;
}
.hold-inline-icon{
position:relative;
}
.steps-indicator-hol{ cursor: default; }
.steps-indicator-hol i {
color: hsl(0, 0%, 80%);
margin-right: 5px;
}
.documentsGreenTic
{
color:#8bc34a;
font-size:16px;
font-weight:bolder;
}
.documentsGreyTic
{
color:#ccc;
font-size:16px;
font-weight:bolder;
}
/* Host family application details */
.ge-app-header{
background: url(../img/profile-bg-material.png) !important;
}
.ge-app-submenu .material-nav-tabs.nav-tabs > li > a::after{
background: #009688 !important;
}
.ge-app-submenu .material-nav-tabs.nav-tabs > li.active > a, .ge-app-submenu .material-nav-tabs.nav-tabs > li > a:hover{
color: #009688 !important;
}
.hfa_edit_page_icon, .sha_edit_page_icon
{
font-size: 100px;
color: #cccccc !important;
}
/* Dropzone style overrides for hfa photos */
#hf-photos-form .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
#hf-photos-form1 .dz-default.dz-message, #hf-documents-upload .dz-default.dz-message, #sha-documents-upload .dz-default.dz-message, #incident-doc-form .dz-default.dz-message, #incident-doc-formEdit .dz-default.dz-message, #warning-doc-form .dz-default.dz-message, #hfa-warning-doc-formEdit .dz-default.dz-message, #book-CG-Doc-Rec-form .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
#hf-photos-formedit .dz-default.dz-message {
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
background-repeat: no-repeat;
background-position: 0 -130px;
position: relative;
width: 120px;
height: 170px;
margin: 20px auto 0;
left:0;
top:0;
}
.panel-profile .tab-pane:nth-child(2) {
background: #ffffff;
}
.panel-profile .tab-pane:first-child {
margin-bottom: 30px;
}
.main-bfBlock_new h3 {
color: hsl(146, 62%, 29%);
}
.profile-photos .img-thumbnail {
width: 100%;
}
.tab-pane.p-md .table.about-table th {
width: 680px;
}
.statusChangeDate {
margin-left: 22px;
}
.col-md-12.custom-accordion {
padding: 3px;
}
.sha-details > div.sha-ther-details {
margin-bottom:30px;
}
.media-body >.media-heading {
font-size: 15px;
/* color:hsl(88, 50%, 53%);*/
}
#bedroomAccordion .media-body.pb-md, #hbedroomAccordion .media-body.pb-md, #bedroomAccordionOU .media-body.pb-md,#bathroomAccordion .media-body.pb-md, #familyMemberAccordion .media-body.pb-md, #familyMemberAccordionPop .media-body.pb-md, #incidentFollowUpAccordionPop .media-body.pb-md {
display: block;
height: 100%;
padding: 0 !important;
}
#bedroomAccordion .panel-heading, #hbedroomAccordion .panel-heading, #bedroomAccordionOU .panel-heading, #bathroomAccordion .panel-heading, #familyMemberAccordion .panel-heading, #familyMemberAccordionPop .panel-heading, #incidentFollowUpAccordionPop .panel-heading {
padding: 17px 16px 11px !important;
}
#bedroomAccordionOU{ margin-bottom:0; }
.personel-info span.icon {
font-size: 24px !important;
margin-bottom: 10px;
}
.tab-pane .table.about-table th {
width: 300px;
}
.collapse .table.about-table th {
width: 300px;
}
#model_plinsuranceStatus_form table > tbody > tr > td{
text-align:right;
text-transform:capitalize;
}
.about-area table > tbody > tr > td {
text-align: left;
}
.panel.panel-success > .panel-heading {
background-color: hsl(88, 50%, 53%) !important;
color: hsl(86, 50%, 94%) !important;
}
.panel.panel-bluegraylight .panel-heading h2 {
color: hsl(200, 18%, 46%) !important;
}
.panel-heading .media-heading {
float: left;
}
.about-area .media-body.panel-heading {
display: block;
width: 100% !important;
}
.col-md-3 .panel-body, .col-md-6 .panel-body, .col-md-4 .panel-body {
text-align: left;
}
.table > thead > tr:first-child > th, .table > tbody > tr:first-child > th, .table > tfoot > tr:first-child > th, .table > thead > tr:first-child > td, .table > tbody > tr:first-child > td, .table > tfoot > tr:first-child > td
{
border-top:0px;
}
.about-area.p-md {
margin-bottom: 0;
padding-bottom: 0 !important;
}
.personel-info span.icon {
color: hsl(199, 98%, 48%);
}
[data-widget]:not([data-widget-static]) .panel-heading {
cursor: unset;
}
.ge-app-submenu.col-md-12.pl-n.pr-n.ul-tabs {
position: relative;
}
#filterMatches {
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
/* position: absolute;
right: 15px;
top: 2px*/
}
#filterMatchesStatusBtnDiv{
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
/* position: absolute;
right: 141px;
top: 2px*/
}
#filterMatchesStatusBtnDiv li a.selected, #sortHfaBookingHistory li a.selected, #sortShaBookingHistory li a.selected{
font-weight:500;
}
#exportProducts {
margin: 0;
}
#addDefaultProduct {
font-size: 12px;
margin: 0;
}
/*.btn.btn-midnightblue.btn-sm {
background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
color: hsl(358, 80%, 50%) !important;
position: absolute;
right: 15px;
top: 2px;
}*/
.btn.btn-midnightblue.btn-raised.btn-sm:hover:not(.btn-link), .btn.btn-midnightblue.btn-raised.btn-sm:focus:not(.btn-link), .btn.btn-midnightblue.btn-raised.btn-sm:active:not(.btn-link) {
background-color: hsla(0, 0%, 60%, 0.2);
}
.profile-del-img {
background-color: hsla(0, 0%, 0%, 0.5) !important;
height: 50px !important;
left: 0;
margin: auto;
min-width: 50px !important;
position: absolute !important;
right: 0;
top: 40%;
width: 50px !important;
}
.img-thumbnail.img-responsive {
margin-bottom: 0 !important;
}
#addNewEmployeeTab
{
display:none;
}
.employeeListTdP
{
margin:0;
}
.fa.fa-file-word-o, .fa.fa-file-excel-o, .fa.fa-file-image-o, .fa.fa-file-pdf-o {
color: hsl(0, 0%, 26%);
font-size: 16px;
}
.panel-body .form-group {
margin: 0;
}
.panel-body .form-group .col-sm-2.control-label {
padding-left: 0 !important;
text-align: left;
}
.panel-body p {
text-align: left;
}
#clientAgreements .panel-body p
{
width:100%;
}
#clientAgreements .panel-body p a:last-child
{
float:right;
}
#clientAgreements .panel-body p a:first-child {
float: left;
overflow-wrap: break-word;
width: 80%;
word-break: break-all;
}
.width-fifty-left {
float: left;
width: 49%;
}
.width-fifty-right {
float: right;
width: 49%;
}
.width-thirty-left
{
float: left;
width: 32%;
}
.width-thirty-center {
float: left;
margin: 2px 2% 0 !important;
width: 32%;
}
.width-full
{
float:left;
width:100%;
}
.tab-pane.p-md.panel.panel-default .form-group {
margin: 0;
}
.width-thirty-right
{
float: right;
width: 32%;
}
#clientList td p {
height: 20px;
overflow: hidden;
width: 95%;
}
.col-xs-6y {
float: left;
width: 50%;
}
.col-xs-6x {
float: left;
padding-right: 16px;
width: 50%;
}
.filterItemLabel
{
color:rgba(0, 0, 0, 0.87) !important;
}
.filterMatchesLabel{
margin-bottom:0;
}
#filterMatchesUpdateBtnDiv, #addNewDefaultProductSubmitBtnDiv, #addGuardianshipProductSubmitBtnDiv, #generalFiltersBtnDiv {
background: hsl(0, 0%, 87%) none repeat scroll 0 0;
bottom: 65px;
padding: 10px 94px;
position: fixed;
width: 100%;
z-index:10;
}
#filterMatchesForm2 .col-xs-12
{
padding:0;
}
#filterMatchesForm2 .form-group
{
margin:0;
}
#filterMatchesForm2 .form-control
{
margin:0;
}
.filterMatchesEditBtn {
color: hsl(187, 100%, 42%);
cursor: pointer;
font-size: 14px;
margin-left: 5px;
}
.filterMatchesLabelValue
{
color:#00bcd4 !important;
}
.grey
{
color:hsl(0, 0%, 74%) !important;
}
.personel-info > span:nth-child(2) {
display: block;
overflow-wrap: break-word;
word-break: break-all;
}
div.dataTables_processing {
background-image:url(../img/loading-filters.gif)!important;
background-repeat:no-repeat!important;
background-position:center!important;
color: hsla(0, 0%, 0%, 0) !important;
z-index: 99999999;
}
.productClient
{
cursor:pointer;
}
.productClient-selected
{
color:#06F;
font-weight:bold;
}
div.dataTables_processing
{
position:fixed !important;
margin-top: 0 !important;
}
#exportProducts .colorBlue {
font-size: 12px;
}
.prices-edit
{
text-align:left !important;
}
#editProductForm tr td {
border-top: 0 none;
}
#addProductToClientForm tr td {
border-top: 0 none;
}
.control-label.author {
color: hsla(0, 0%, 0%, 0.87);
display: block;
font-size: 13px;
font-weight: 400;
}
.control-label.author.checkbox {
float: left;
margin-bottom: 10px;
}
#editProductForm .control-label {
margin: 0;
}
#editProductForm tr:first-child .control-label {
margin-top: 16px;
}
#addProductToClientForm .control-label {
margin-top: 0;
}
#addProductToClientForm tr:first-child .control-label {
margin-top: 16px;
}
.panel-profile .panel-body ul.dropdown-menu.dropdown-menu-sidebar {
margin-top: 0 !important;
}
.panel-profile .panel-body ul.dropdown-menu.dropdown-menu-sidebar li a {
color: hsl(0, 0%, 26%);
font-size: 13px;
padding: 0 20px;
}
#addProductToClientForm .checkbox.block {
margin: 15px 0;
}
.btn-group.dropdown.table-actions
{
display:block;
}
#clientProductList .dropdown-toggle
{
right: 0px;
top: -17px;
}
.shaMatchStatus-hol i
{
margin-right: 5px;
}
.shaMatchStatus-Shortlisted i
{
color: #8bc34a;
}
.shaMatchStatus-Rejected i
{
color: #dd191d;
}
.shaMatchStatus-To_be_reviewed i
{
color: hsl(0, 0%, 80%);
}
.matchStatusGrey
{
color:hsl(0, 0%, 80%);
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.matchStatusGreen
{
color:#8bc34a;
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.matchStatusRed
{
color:hsl(36, 100%, 50%);
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.actionIconOrange
{
color:#ff9800;
font-size:20px;
cursor:pointer;
margin: 0 5px;
}
.unavailable-comment
{
margin-left: 32px;
}
.form-group.m-n.col-xs-6.left {
padding-left: 0;
}
.form-group.m-n.col-xs-6.right {
padding-right: 0;
}
#editGuardianshipProductForm tr td {
border-top: 0 none;
}
.guardianship-edit {
text-align: left;
}
#editGuardianshipProductForm .control-label {
margin: 0;
}
#editGuardianshipProductForm tr:first-child .control-label {
margin-top: 16px;
}
.panel-margin {
margin-bottom: 32px;
}
.productClient.custom > span, .submenu-child span {
font-size: 13px;
line-height: 22px;
cursor: pointer;
}
#productClient-default {
font-size: 12px;
margin: 0;
}
.client-button .btn.btn-primary.custom-button, .pricing-new-product .btn.btn-primary {
padding: 10px 30px 9px;
}
.panel-margin .productClient-selected {
color:#7cb342;
font-weight: bold;
}
.panel-margin .productClient-selected span {
font-weight: bold;
}
#productClient-default.productClient-selected {
font-weight: 500;
}
#roomsUnAvailErrorMessage {
color: #e51c23;
}
.checkbox-primary-label {
color: #fff !important;
background: #888;
padding: 15px !important;
width: 100%;
}
#roomsUnAvailErrorMessage.roomsUnAvailErrorMessage {
color: rgba(255, 255, 255, 0.87);
background: #e51c23;
padding: 15px;
margin-left: 8px;
}
.sidebar nav.widget-body > ul.acc-menu .badge-submenu1
{
left:52px;
}
table td > a > i.material-icons
{
font-size:22px;
}
td.middle-alignment {
vertical-align: middle !important;
}
.middle-alignment .anchor_count_warnings .material-icons.font14.fa.fa-warning {
color: hsl(36, 100%, 50%);
}
.col-xs-12.no-paddings {
padding: 0;
}
.panel-body.no-paddings {
padding: 0;
}
input.choose-btn.full_input_select {
width: 258px !important;
}
.wwccpopcircle{
height:20px !important;
width:20px !important;
min-width: 20px !important;
margin-top: -2px !important;
float:right;
}
.wwccCircleGrey{
background-color:#bdbdbd !important;
}
.pl-button {
clear: both;
padding: 16px 0 0;
}
.pldescription {
float: right;
}
.wwcc-fifty-right-right, .incidentFollowUp-addBtnDiv {
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
margin-top: 16px;
overflow: hidden;
padding: 10px 20px;
text-align: center;
}
.wwcc-priview-btn > a {
color: hsla(0, 0%, 100%, 0.84);
}
.shaHfaCannotDelAlert .modal-header h4
{
color: #ff9800;
}
.tab-content .second-student-name {
margin-left: 32px;
}
p.hfa_wwcc_file_name_text {
margin-top: 10px;
text-align: center;
color: #c0c3c3;
}
p.wwccUploadFileError, p.insUploadFileError {
color: hsl(358, 79%, 50%);
text-align: center;
}
a.mr-sm.margin-right-5 {
margin-right: 5px !important;
}
.font12.mem18wwcc {
float: right;
line-height: 15px;
}
#shaChangeStatus_form #shaChangeStatusPendingInvInfoMsg {
font-weight: bold;
color: #ff9800;
margin-top: 12px;
float: left;
}
.changeStatusWarningMsg, .warningMsgCH{
font-weight: bold;
color: #ff9800;
margin-top: 12px;
float: left;
}
#hfaChangeStatus_form #shaChangeStatusApprovedInfoMsg {
font-weight: bold;
color: #ff9800;
float: left;
margin-bottom: 20px;
width:100%;
}
#shaAppPageNotiLi .badge {
background-color: #908e8e;
position: absolute;
left: 25px;
top: 6px;
}
#hfaAppPageNotiLi .badge {
background-color: #908e8e;
position: absolute;
left: 25px;
top: 6px
}
.sidebar .sidebar3rdCurrent{
text-decoration: underline !important;
}
.tooltip
{
z-index:999999;
position: fixed;
}
#clientList .sorting_1 a {
text-transform: capitalize;
}
.page-heading h1 small {
text-transform: capitalize;
}
.btn.btn-default.btn-raised.dropdown-toggle {
background: none;
border: 0px;
margin: 0;
padding-top: 13px;
padding-bottom: 13px;
border: 0px;
box-shadow: 0px;
}
.hfaAppIncomp
{
color:#b0b0b0;
}
.warningCol{
padding:5px 0;
width:27%;
float:left;
cursor: pointer;
}
.warningRow{
clear: both;
}
.warningRowEditor
{
display:none;
}
.warningCol.warningEdit {
float: right;
text-align: right;
}
.warningRow.warningRowEditor
{
background: #f6f6f6;
margin-top: 16px;
overflow: hidden;
padding: 10px 20px;
}
.warningRowParent {
margin-bottom: 5px;
overflow: hidden;
padding-bottom: 5px;
border-bottom: 1px solid #f1f1f1;
}
.warningRowParent:last-child {
border: 0;
}
#shaChangeWarning_form .warningCol {
padding: 5px 0;
width: 184px;
float: left;
cursor: pointer;
}
#shaChangeWarning_form .form-group.width-full {
margin: 0;
}
#matchedAppPlaceBooking_form
{
margin-top: -45px;
}
.bookingFormRoomInfoDiv{
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
margin: 6px 0 0 46px;
padding: 5px 10px;
}
.bookingFormRoomInfoDiv table td
{
padding: 5px 10px !important;
}
.bookingFormRoomInfoDiv table
{
margin-bottom: 0 !important;
}
.panel.warning-heading {
background: transparent;
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.12), 0px 0px 0px 0 rgba(0, 0, 0, 0.12) !important;
margin-bottom: 0;
}
.hostMatchList tbody td:nth-child(3) {
vertical-align: middle;
}
.widget.referral-info-widget {
margin-top: 20px;
}
.timeline-grey .timeline-icon {
background: #908e8e !important;
color: #ffffff !important;
}
.btn.btn-danger.syncInitialInvoicesBtn {
margin: 0;
font-size: 13px;
}
.btn.btn-default.bootstrap-touchspin-up {
margin-top: 5px;
margin-bottom: 5px;
}
.submenu-child div.productClient:last-child {
border-bottom:0px;
}
.submenu-child div.productClient {
border-bottom: 1px solid #e7e5e5;
padding: 12px 0 12px 0 !important;
}
#syncInvoicesPartial, #syncInvoicesPaid, #syncInvoicesAppMoved, #syncInvoicesPartialUpdated
{
display:block;font-size:14px;
}
.list-group-item.withripple .material-icons.updateInvDurationIcon {
position: absolute;
top: 15px;
font-size: 18px !important;
right: 16px;
}
.input-group-addon.addon-invoiceNo {
font-size: 19px;
color: #212121;
padding: 0px 1px 0 10px;
vertical-align: unset;
font-weight: 400;
}
.editInvoiceItem i, .deleteInvoiceItem i {
/*color: #424242;*/
}
.text-default.resolve-hint, .text-default.officeUse-guardianship-hint {
color: #888888;
}
.resolve-warning-parent span.help-block {
position: unset;
margin-bottom: 3px;
}
.text-default.officeUse-guardianship {
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
overflow: hidden;
padding: 10px 15px;
}
.warningRowParentSync {
overflow: hidden;
}
.warningColSnc {
padding: 10px 0;
cursor: pointer;
font-size: 13px !important;
border-top: 1px solid #f1f1f1;
}
.warningRowSnc {
clear: both;
padding-left: 16px;
font-size: 13px !important;
}
.syncInitialInvoicesSuccess .warningRowParentSync:last-child .warningColSnc {
padding-bottom: 5px;
}
.syncInitialInvoicesSuccess .warningRowParentSync:first-child .warningColSnc {
}
.syncInitialInvoicesSuccess
{
font-size:13px;
}
.form-group.client-checkbox#create_client_commissionDiv label {
font-size: 12px !important;
}
.form-group.client-checkbox#create_client_GroupInvDiv label {
font-size: 12px !important;
}
.form-group.client-checkbox#create_client_commissionDiv .checkbox.checkbox-primary label {
color: #888888;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary label {
color: #888888;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary.child label:first-child {
color: rgba(0, 0, 0, 0.87);
margin-bottom: 5px;
}
.form-group.client-checkbox#create_client_GroupInvDiv .checkbox.checkbox-primary.child {
margin-top:15px;
}
.form-group.client-checkbox {
text-align: left;
/*padding-left: 16px;*/
}
.check-right
{
position:absolute;
top:0; right:10px; z-index:999;
}
.check-right .checkbox.checkbox-primary.vipcheck-hfa {
margin-top: 0;
margin-bottom: 0;
}
.check-right .checkbox .checkbox-material:before {
height: auto;
width: auto;
}
.check-right .checkbox .checkbox-material .check {
margin-right: 0px;
}
p.hfa_ins_file_name_text {
margin-top: 10px;
text-align: center;
color: #c0c3c3;
}
#filterMatchesEditSuburb2_suggestions
{
position: absolute;
top: 100%;
left: 0;
z-index: 1001;
display: none;
float: left;
width: 210px;
padding: 10px 0;
margin: 2px 0 0;
list-style: none;
font-size: 13px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid #eeeeee;
border-radius: 2px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
max-height: 200px;
overflow-y: scroll;
}
#filterMatchesEditSuburb2_suggestions p
{
padding-left:20px;
cursor:pointer;
}
#filterMatchesEditSuburb2_suggestions span
{
padding-left:20px;
color:rgba(0, 0, 0, 0.54);
}
.width-23-left
{
float: left;
width: 23%;
}
.mailto {
color: #424242;
}
.mailto:hover {
text-decoration: underline;
color: #424242;
}
.pre-wrap {
white-space: pre-line;
margin-top: -20px;
}
/*.colorDarkgrey.media-heading.lalala:hover {
text-decoration: underline;
}*/
.edot-desc
{
border-top: 1px solid #DDD;
padding: 16px;
}
.edot-desc h2 {
font-size: 13px;
text-transform: uppercase;
color: #03a9f4;
margin: 0;
font-weight: 500;
}
.edot-desc ul {
margin: 5px 0 0 13px;
padding: 0;
}
.edot-desc li {
color: #BDBDBD;
}
#model_hfafamilynote .dropzone, #model_hfafamilynoteedit .dropzone, #model_bookingIncident .dropzone, #model_hfaWarningSend .dropzone, #model_bookingCGDocRec .dropzone {
min-height: auto;
margin-top: 7px ;
}
.notes-list-head
{
text-transform:capitalize;
cursor:pointer;
}
.notes-list-head:hover
{
text-decoration:underline;
}
.note-badge .badge {
position: absolute;
left: 28px;
top: -13px;
}
.note-badge {
position: relative;
}
.note-delete, .hfa_callLog_delete, .hfa_visitReport_delete, .cApprovalDel, .bookingIncident_delete, .bookingFeedback_delete, .timelineListDel, .bookingCheckup_delete {
float: right;
font-size: 24px;
margin-top: -28px;
}
.note-delete:hover, .hfa_callLog_delete:hover, .hfa_visitReport_delete:hover, .cApprovalDel:hover, .bookingIncident_delete:hover, .bookingFeedback_delete:hover, .timelineListDel:hover, .bookingCheckup_delete:hover
{
color: #e72e35;
cursor:pointer;
}
/*.family-notes.panel .timeline > li .timeline-body {
margin: 0 0 8px 20%;
}*/
.timeline > li .timeline-body {
margin: 0 0 0 20%;
}
#clientfaAgreements .panel-body p {
clear: both;
}
#poFiltersForm .form-group {
margin: 0;
}
.booking-icon-check {
float: left;
color: hsl(199, 98%, 48%);
margin-right: 10px;
margin-bottom: -1px;
}
.booking-icon-check-name {
margin-top: 2px;
float: left;
}
.label.offline-online
{
padding: 1px 2px;
color: #dedede;
}
.label.label-darkgreen.offline-online
{
background-color: #009688;
}
.colorDarkgrey.media-heading.lalala {
font-size: 18px;
}
.move-notice-date-box
{
width: 100%;
overflow: hidden;
background: hsl(195, 12%, 94%) none repeat scroll 0 0;
padding: 10px 10px 10px 10px;
}
.info-tile.info-tile-alt.tile-lime .info
{
text-align:center;
height: 126px;
}
.search-filter-status li a
{
padding:3px 20px !important;
font-size: 13px !important;
}
.warningRowParentSync div.warningRowSnc:last-child {
margin-bottom: 10px;
}
#syncInitialInvoicesSuccess .warningRowParentSync:last-child div.warningRowSnc:last-child {
margin-bottom: 0px;
}
#model_editBooking .datepicker-dropdown.datepicker-orient-bottom:before {
border-top: 0px;
}
#model_editBooking .datepicker-dropdown.datepicker-orient-bottom:after {
border-top: 0px;
}
.panel-body.nominatedfamilyfinfo {
padding-top:0 !important;
}
.list-group.searchall-list .list-group-separator:last-child {
display: none;
}
#bookingList .matchStatusGrey {
float: left;
margin: 0 0 0 0;
font-size:21px;
}
#bookingList .matchStatusGreen {
float: left;
margin: 0 0 0 0;
font-size:21px;
}
#bookingList .middle-alignment a {
float: left;
}
ul.timeline li.timeline-grey
{
padding-bottom: 20px;
}
ul.timeline:last-child li.timeline-grey
{
padding-bottom: 0px;
}
.familyMemberAccordion .media-body.pb-md {
display: block;
height: 100%;
padding: 0 !important;
}
.familyMemberAccordion .media-body.pb-md .panel-heading {
padding: 17px 16px 11px !important;
}
.alert-info_orange {
background:#ff9800;
}
.familyMemberAccordion.panel-group.panel-default {
margin-bottom: 16px;
}
.read-more-state {
display: none;
}
.read-more-target {
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
padding-bottom: 0px !important;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
max-height: 999em;
padding-bottom: 20px !important;
}
.read-more-state ~ .read-more-trigger:before {
/*content: 'Show more';*/
}
.read-more-state:checked ~ .read-more-trigger:before {
/*content: 'Show less';*/
}
.read-more-trigger {
cursor: pointer;
display: inline-block;
padding: 5px 5px 5px 10px;
color: #0fb2fc;
font-size: 13px;
line-height: 2;
border: 0;
border-radius: .25em;
margin-left: -10px;
position: relative;
}
/*for datepicker*/
.datepicker-dropdown.datepicker-orient-bottom:before,
.datepicker-dropdown.datepicker-orient-bottom:after,
.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.datepicker-dropdown.datepicker-orient-bottom:before,
.datepicker-dropdown.datepicker-orient-bottom:after {
bottom: 100% !important;
}
.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
top: 100% !important;
}
#model_deleteClientProcess .modal-body > img {
margin: 0px 281px !important;
width: 40px !important;
height: 40px !important;
}
.mapLocationLink{
color:unset;
}
.mapLocationLink:hover{
color:unset;
text-decoration:underline;
}
a.mapLocationLink:focus {
color:unset;
}
.sha-sF{
position: absolute;
left: 43%;
top: 10%;
font-size:10px;
}
.page-heading.report-page-heading {
margin-bottom: 24px;
}
.no-pad-lft {
padding-left: 0;
}
.no-pad-ryt{
padding-right: 0;
}
#HR_form .stepy-navigator.panel-footer, #CaR_form .stepy-navigator.panel-footer {
clear: both;
}
#HR_form .checkbox label, #CaR_form .checkbox label {
text-align: left;
}
.checkbox.width-float {
float:left;
width: 50%;
}
.panel-body .checkbox.width-float.checkbox-width-float:last-child {
float: left;
margin: -24px 0 0 0;
}
@media (max-width: 991px) {
#CaR_collegeSelect .form-group {
width: 90%;
}
#CaR_collegeSelectAddNew {
right: 4%;
}
}
@media (max-width: 767px) {
.checkbox.width-float {
float:none;
width: 100%;
}
.panel-body .checkbox.width-float.checkbox-width-float:last-child {
float: none;
margin: 0 0 0 0;
}
}
.vr_FeildComments{
padding-left:15px !important;
}
.panel-profile .panel-body ul li .timeline-body.shaInsFIlePrevLink a {
font-size: 13px;
color: #333;
width: unset;
text-align: left;
margin-left: -35px;
}
.form-group.has-error label.control-label.filterItemLabel
{color:#e51c23 !important;}
.tooltip-inner {
max-width: 1000px;
white-space:pre-wrap;
}
.paginate_button:hover {
background: #e0e0e0;
}
.paginate_button {
padding: 7px 11px;
border: 1px solid #eee;
color: #03a9f4;
margin-left: -1px;
float:left;
}
.paginate_button.current, .paginate_button.current:hover {
background: #03a9f4;
border: 1px solid #03a9f4;
color: #fff;
cursor: default;
}
.paginate_button.first {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
.paginate_button.previous {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
.paginate_button.next, .paginate_button.last {
color: transparent;
height: 35px;
width: 35px;
padding: 0 !important;
}
a.paginate_button.first:before, a.paginate_button.previous:before {
color: #03a9f4;
margin: -1px 0 0px 3px;
}
a.paginate_button.next:after, a.paginate_button.last:after {
color: #03a9f4;
margin: -1px 0 0px 3px;
}
.paginate_button.disabled
{
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
.paginate_button.disabled::before, .paginate_button.disabled::after {
color: #bdbdbd !important;
}
#CaR_clientGroupSelect .help-block, #CaR_collegeSelect .help-block, #CaR_clgUniGroupSelect .help-block, #CaR_clgUniSelect .help-block, #CaR_employeeSelect .help-block, #CaR_clientTypeSelect .help-block {
position: unset;
}
.timeline > li .radio p.author {
font-size: 13px;
display: block;
color: rgba(0, 0, 0, 0.87);
font-weight: 400;
}
.timeline > li .radio p {
color: #bdbdbd;
font-size: 13px;
line-height: 1.45;
margin: 0;
}
#transportListDivBookingView .timeline::before {
content: unset;
}
#transportListDivBookingView ul.timeline li.timeline-grey {
padding-bottom: 10px;
border-bottom: 1px solid #f1f1f1;
margin-bottom: 20px !important;
}
#transportListDivBookingView ul.timeline li.timeline-grey:last-child {
border-bottom: 0px ;
margin-bottom: 0px !important;
}
.visitReportDateEdit {
color: hsl(187, 100%, 42%);
cursor: pointer;
font-size: 11px;
margin-left: 5px;
}
.visitReportCopy {
float: right;
margin-top: -18px;
margin-right: 7px;
font-size: 16px;
font-weight: 500;
}
#clientClgUniCheckboxError{
display:none;
color:#e51c23;
margin-top: 5px;
float:left;
}
.checkbox label {
display: inline-flex;
}
.fa.fa-bookmark.mr-lg.dark-gray.matchStatusGrey {
color: #9e9e9e;
}
.panel-body.margin-minus .checkbox label{
display:inherit;
}
| 0.286469 | 0.054124 |
.tg-btn{cursor: pointer;}
.tg-checkbox input[type=checkbox] + label,
.tg-radio input[type=radio] + label{
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
padding: 0 30px 0 0;
text-transform: capitalize;
}
.tg-checkbox input[type=checkbox] + label:before,
.tg-radio input[type=radio] + label:before{
top: 0;
content: '';
width: 20px;
height: 20px;
background: #fff;
line-height: 18px;
border-radius: 3px;
border: 1px solid #bbb;
}
.tg-radio input[type=radio] + label:before{border-radius: 50%;}
.tg-checkbox input[type=checkbox] + label:after{
top: 0;
right: 0;
opacity: 0;
width: 20px;
height: 20px;
content: '\f00c';
color: #1e8cbe;
font-size: 13px;
line-height: 20px;
position: absolute;
text-align: center;
visibility: hidden;
font-family: 'FontAwesome';
}
.tg-radio input[type=radio] + label:after{
top: 5px;
right: 5px;
opacity: 0;
content: '';
width: 10px;
height: 10px;
border-radius: 50%;
position: absolute;
text-align: center;
visibility: hidden;
background: #1e8cbe;
}
.tg-checkbox input[type=checkbox]:checked + label:before,
.tg-radio input[type=radio]:checked + label:before{content: '';}
.tg-checkbox input[type=checkbox]:checked + label,
.tg-radio input[type=radio]:checked + label{color: #666;}
.tg-checkbox input[type=checkbox]:checked + label:after,
.tg-radio input[type=radio]:checked + label:after{
opacity: 1;
visibility: visible;
}
/*==============================================
Theme BreadCrumb
==============================================*/
.tg-breadcrumb {
margin:0;
color: #999;
width: auto;
float: left;
list-style: none;
text-align: right;
text-transform: capitalize;
font:14px/20px IRANSans-l;
}
.tg-breadcrumb li{
width:auto;
float:right;
padding:0 15px;
position:relative;
line-height:inherit;
list-style-type:none;
}
.tg-breadcrumb li:after{
top:0;
right:-3px;
color:#484848;
content:'\f104';
position:absolute;
font-size: inherit;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-breadcrumb li:first-child{ padding-right: 0;}
.tg-breadcrumb li:first-child:after{display: none;}
.tg-breadcrumb li a{
display:block;
color:#484848;
}
.tg-fileuploadlabel{
width: 100%;
float:right;
padding: 30px;
color: #363b4d;
font-size: 14px;
line-height: 17px;
margin: 0 0 10px;
cursor: pointer;
border-radius: 5px;
border: 3px dashed #eaedef;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
}
.tg-fileuploadlabel span{display: block;}
.tg-fileuploadlabel span:first-child{
font-size: 18px;
font-weight: 500;
line-height: 21px;
}
.tg-fileuploadlabel span:nth-child(2){padding: 15px 0;}
.tg-fileuploadlabel span:nth-child(4){
color: #363b4d;
font-size: 13px;
line-height: 16px;
margin: 30px 0 0;
}
input[type=file].tg-fileinput{display: none;}
.mCSB_horizontal.mCSB_inside > .mCSB_container{margin: 0 0 13px;}
.mCSB_scrollTools.mCSB_scrollTools_horizontal{height: 3px;}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
margin: 0;
height: 3px;
background: #f7f7f7;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
margin: 0;
height: 3px;
}
/*==============================================
Dashboard Global Elements
==============================================*/
.tg-dbsectionspace{padding: 20px 0;}
.tg-dashboardbox{
width: 100%;
float:right;
overflow: hidden;
background: #fff;
position: relative;
border-radius: 5px;
}
.tg-dashboardbox:hover{
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-dashboardboxtitle{
width: 100%;
float:right;
padding: 10px;
border-bottom: 1px solid #eaedef;
}
.tg-dashboardboxtitle h2{
margin: 0;
float:right;
color: #363b4d;
font-size: 20px;
font-weight: 500;
line-height: 20px;
padding: 8px 10px 8px 0;
}
.tg-dashboardboxtitle .tg-formthemesearch{
width: 50%;
float: left;
}
.tg-dashboardboxtitle .tg-formthemesearch .tg-select:after{line-height: 36px;}
.tg-dashboardboxtitle .tg-formthemesearch .tg-select select{
height: 36px;
line-height: 20px;
padding: 7px 20px;
}
.tg-dashboardholder{
z-index: 2;
width: 100%;
float:right;
padding: 30px;
position: relative;
}
.tg-dashboardscrollbar{
width: 100%;
float:right;
height: 330px;
overflow: hidden;
}
.tg-dashboardscrollbar .mCSB_inside > .mCSB_container {margin-left: 15px;}
.tg-dashboardscrollbar .mCSB_scrollTools .mCSB_draggerRail {background: #f7f7f7;}
.tg-dotnotification{
position: relative;
padding-left: 26px !important;
}
.tg-dotnotification:before{
top: 50%;
left: 10px;
width: 6px;
height: 6px;
content: '';
margin: -3px 0 0;
position: absolute;
border-radius: 6px;
background: #f91942;
}
/*==============================================
Dashboard Header Style
==============================================*/
.tg-dashboardheader{
z-index: 999;
background: #fff;
padding: 20px 60px;
position: relative;
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-navigation > ul > li:first-child{padding-right: 0;}
.tg-navigation > ul > li:last-child{padding-left: 0;}
.tg-themedropdown{
position: relative;
display: inline-block;
vertical-align: middle;
}
.tg-notification{
float: left;
margin: 0 10px 0 0;
}
.tg-btndropdown{
outline: 0;
color: #666;
background: none;
position: relative;
}
.tg-btndropdown i{
width: 46px;
height: 46px;
display: block;
font-size: 18px;
overflow: hidden;
line-height: 44px;
border-radius: 50%;
border: 1px solid #666;
}
.tg-dashboardheader .tg-btn{
float:right;
padding: 0 30px;
}
.tg-badge{
top: 0;
left: 0;
color: #fff;
min-width: 10px;
padding: 1px 6px;
font-size: 10px;
font-weight: 500;
line-height: 15px;
text-align: center;
border-radius: 50%;
position: absolute;
background: #f91942;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
}
.tg-dropdownmenu{
border: 0;
margin: 0;
left: 0;
opacity: 0;
top: 150px;
right: auto;
padding: 0;
float: none;
width: 330px;
display: block;
color: #363b4d;
font-size: 13px;
line-height: 20px;
border-radius: 0;
background: #fff;
list-style: none;
visibility: hidden;
position: absolute;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.10);
box-shadow: 0 0 8px 0 rgba(0,0,0,0.10);
}
.tg-dropdownmenu:before{
width: 0;
height: 0;
content: '';
left: 15px;
bottom: 100%;
position: absolute;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-bottom: 5px solid #fff;
}
.tg-dropdownmenu li{
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 20px 38px 20px 20px ;
}
.tg-dropdownmenu li:before{
top: 29px;
right: 18px;
width: 4px;
height: 4px;
content: '';
border-radius: 50%;
position: absolute;
background: #f91942;
}
.tg-dropdownmenu li + li{border-top: 1px solid #eaeaea;}
.tg-dropdownmenu li:hover{ background: #f7f7f7; }
.tg-dropdownmenu li p{
margin: 0;
line-height: inherit;
}
.tg-themedropdown.open .tg-dropdownmenu{
top: 70px;
opacity: 1;
visibility: visible;
}
/*==============================================
Dashboard Sidebar Navigation Style
==============================================*/
.tg-dashboardnav{
width: 100%;
float:right;
}
.tg-wrapper:before{display: none;}
.tg-wrapper {
overflow: hidden;
background: #f7f7f7;
padding: 0 250px 2px 0;
}
.tg-sidebarwrapper {
top: 0;
right: 0;
z-index: 50;
width: 250px;
height: 100%;
position: fixed;
background: #363b4d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
}
.tg-sidebarwrapper .tg-logo{
margin: 0;
width: 250px;
height: 85px;
padding: 26px 40px;
}
.tg-sidebarwrapper .tg-logo a img{
height: 33px;
width: 170px;
}
.tg-user{
width: 250px;
float:right;
padding: 30px 20px;
position: relative;
background: #2b2f3e;
}
.tg-user figure{
margin: 0;
float:right;
position: relative;
border-radius: 50%;
}
.tg-user figure a{
display: block;
overflow: hidden;
border-radius: 50%;
}
.tg-user figure a img{ display: block; }
.tg-usercontent{
overflow: hidden;
padding: 12px 15px 12px 0;
}
.tg-usercontent h3{
color: #ddd;
margin: 0 0 6px;
font-size: 16px;
font-weight: 500;
line-height: 16px;
}
.tg-usercontent h4{
margin: 0;
color: #ddd;
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.tg-bolticon{
top: -2px;
right: -2px;
width: 22px;
height: 22px;
position: absolute;
border-radius: 50%;
background: #f91942;
}
.tg-bolticon i{
color: #fff;
display: block;
font-size: 12px;
line-height: 22px;
text-align: center;
}
.tg-btnedit{
color: #fff;
left: 30px;
bottom: -25px;
width: 50px;
height: 50px;
display: block;
border: 4px solid;
border-radius: 50%;
position: absolute;
}
.tg-btnedit i{
color: #fff;
width: 100%;
float:right;
font-size: 16px;
line-height: 42px;
border-radius: 50%;
text-align: center;
}
.tg-btnmenutoggle{
transform: rotate(180deg);
top: 110px;
right: 100%;
color: #fff;
cursor: pointer;
position: absolute;
text-align: center;
}
.cls-1 {
fill: #2b2f3e;
fill-rule: evenodd;
}
.tg-btnmenutoggle i{
top: 0;
right: 0;
z-index: 2;
color: #fff;
width: 100%;
height: 100%;
display: block;
line-height: 67px;
position: absolute;
}
.tg-navdashboard {
width: 250px;
float:right;
margin: 80px 0;
font-size: 14px;
line-height: 58px;
border-top: 1px solid #495067;
}
.tg-navdashboard ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-navdashboard ul li {
margin: 0;
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
border-bottom: 1px solid #495067;
}
.tg-navdashboard > ul > li:nth-child(odd){ background: #333848; }
.tg-navdashboard > ul > li:nth-child(even){ background: #363b4d; }
.tg-navdashboard > ul > li > a {
color: #ddd;
width: 100%;
float:right;
line-height: inherit;
border-right: 2px solid transparent;
}
.tg-navdashboard > ul > li > a:before{ display: none; }
.tg-navdashboard ul li a:focus,
.tg-navdashboard ul li a:hover,
.tg-navdashboard ul li a:active,
.tg-navdashboard ul li.tg-active a{ color: #fff; }
.tg-navdashboard ul li a i,
.tg-navdashboard ul li a span{
float:right;
line-height: inherit;
}
.tg-navdashboard ul li a i{
width: 58px;
display: block;
font-size: 20px;
text-align: center;
}
.tg-navdashboard ul li a span{ text-align: right; }
.tg-navdashboard .tg-dropdowarrow{ display: block; }
.tg-navdashboard ul li.menu-item-has-children ul{
opacity: 1;
clear: both;
width: auto;
float: none;
display: none;
position: static;
overflow: hidden;
visibility: visible;
margin: 0 30px 20px 0;
-webkit-box-shadow: none;
box-shadow: none;
border-right: 1px solid #495067;
}
.tg-navdashboard .menu-item-has-children .sub-menu{ background: none; }
.tg-navdashboard .menu-item-has-children .sub-menu li{
border: 0;
width: 100%;
float:right;
margin: 10px 0 0;
line-height: 20px;
position: relative;
padding: 0 30px 0 ;
background: none !important;
}
.tg-navdashboard .menu-item-has-children .sub-menu li:before{
top: 50%;
right: 0;
width: 20px;
height: 1px;
content: '';
position: absolute;
background: #495067;
}
.tg-navdashboard .menu-item-has-children .sub-menu li a{
color: #999;
line-height: inherit;
}
.tg-navdashboard .tg-dropdowarrow{ top: 20px; }
.tg-socialandappicons{
float:right;
width: 250px;
}
.tg-socialandappicons ul{
float:right;
width: 250px;
text-align: center;
}
.tg-socialandappicons ul li{
width: auto;
float: none;
vertical-align: top;
display: inline-block;
}
.tg-socialandappicons .tg-socialicons{ padding: 0 0 20px; }
.tg-appstoreicons{
padding: 15px;
background: rgba(0,0,0,0.20);
}
.tg-appstoreicons li{ padding: 0 5px; }
.tg-wrapper.tg-openmenu { padding-right: 60px; }
.tg-wrapper.tg-openmenu .tg-sidebarwrapper { width: 60px; }
.tg-openmenu .tg-sidebarwrapper .tg-logo{ margin: 0 60px 0 0 ; }
.tg-openmenu .tg-user{
background: #363b4d;
padding: 30px 65px 40px 0;
}
.tg-openmenu .tg-btnmenutoggle .cls-1{ fill: #363b4d; }
.tg-openmenu .tg-btnmenutoggle i:before{ content: '\f105'; }
.tg-openmenu .tg-socialandappicons{ margin: 0 60px 0 0; }
/*==============================================
Dashboard Inner Banner
==============================================*/
.tg-dashboardbanner{
width: 100%;
float:right;
padding: 30px 60px;
position: relative;
border-bottom: 1px solid #d5d5d5;
}
.tg-dashboardbanner:before{
right: 0;
bottom: 0;
width: 100%;
height: 2px;
content: '';
background: #fff;
position: absolute;
}
.tg-dashboardbanner h1{
margin: 0;
color: #666;
float:right;
font-size: 18px;
font-weight: 400;
line-height: 18px;
text-transform: capitalize;
}
/*==============================================
Dashboard Main
==============================================*/
.tg-main{
min-height: 731px;
padding: 20px 60px;
}
/*==============================================
Dashboard Alerts
==============================================*/
.tg-alertexamples{}
.tg-alert{
margin: 0;
width: 100%;
float:right;
font-size: 14px;
line-height: 20px;
padding: 8px 15px;
position: relative;
}
.tg-alert + .tg-alert{margin: 10px 0 0;}
.tg-alert p {
margin: 0;
font-size: inherit;
line-height: inherit;
padding: 6px 0 6px 180px;
}
.tg-alert p strong{
color: inherit;
font-weight: 500;
}
.tg-anchors{
top: 50%;
left: 15px;
margin: -16px 0 0;
position: absolute;
}
.tg-anchors a{
opacity: 1;
float:right;
color: inherit;
font-size: 14px;
font-weight: 400;
line-height: 32px;
text-shadow: none;
}
.tg-btndoaction{
padding: 0 25px;
border-radius: 5px;
margin: 0 0 0 15px;
background: inherit;
display: inline-block;
vertical-align: middle;
color: #fff !important;
}
.alert-info .tg-btndoaction{ background: #31708f; }
.alert-warning .tg-btndoaction{ background: #d89d49; }
.alert-danger .tg-btndoaction{ background: #d9534f; }
.alert-success .tg-btndoaction{ background: #3c763d; }
.tg-anchors a.close{
font-size: 18px;
font-weight: 500;
}
/*==============================================
Dashboard Statistics
==============================================*/
.tg-statistics{
width: 100%;
float:right;
}
.tg-statistic .tg-badge{
top: 20px;
left: 20px;
}
.tg-statistic{ padding: 30px; }
.tg-statistic figure{
width: 70px;
margin: 0;
float:right;
}
.tg-statistic figure img{
width: 100%;
height: auto;
display: block;
}
.tg-statistic .tg-contentbox{padding: 6px 15px 6px 0;}
.tg-contentbox h2{
margin: 0 0 10px;
font-size: 44px;
font-weight: 400;
line-height: 32px;
}
.tg-contentbox h3{
margin: 0;
font-size: 18px;
font-weight: 500;
line-height: 20px;
}
.tg-btnviewdetail{
color: #666;
left: 15px;
bottom: 10px;
position: absolute;
padding: 0 0 0 14px;
text-transform: capitalize;
font: 500 14px/14px IRANSans-l;
}
.tg-btnviewdetail:before{
top: 0;
left: 0;
position: absolute;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-dashboardscrollbar.tg-myactivitylog,
.tg-dashboardscrollbar.tg-approvedads{padding: 30px 24px 30px 15px; }
.tg-myactivitylog .mCSB_container {padding: 0 6px 0 0 ;}
.tg-activitylog{
width: 100%;
float:right;
color: #666;
font-size: 13px;
line-height: 17px;
list-style: none;
border-right: 2px solid #eaedef;
}
.tg-activitylog li{
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 0 15px 25px 0;
}
.tg-activitylog li:last-child{padding-bottom: 0;}
.tg-activitylog li:before{
top: 0;
right: -7px;
content: '';
width: 12px;
height: 12px;
display: block;
background: #fff;
position: absolute;
border-radius: 50%;
border: 2px solid #ddd;
}
.tg-activitylog li h3{
margin: 0;
color: #363b4d;
font-size: 14px;
line-height: 17px;
}
.tg-activitylog li h3 a{color: #55acee;}
.tg-activitylog li time{
display: block;
font-size: 13px;
line-height: 16px;
padding: 3px 0 0;
}
.tg-approvedads{
width: 100%;
float:right;
color: #666;
font-size: 13px;
line-height: 17px;
list-style: none;
}
.tg-approvedads li{
width: 100%;
float:right;
padding: 0 0 25px;
position: relative;
line-height: inherit;
list-style-type: none;
}
.tg-approvedads li:last-child{padding: 0;}
.tg-approvedads li figure{
margin: 0;
float:right;
overflow: hidden;
border-radius: 5px;
}
.tg-approvedads li figure a,
.tg-approvedads li figure a img{display: block;}
.tg-approvedads li .tg-adcontent{
width: auto;
float: none;
overflow: hidden;
padding: 0 10px 0 0;
}
.tg-approvedads li .tg-adcontent h3{
color: #363b4d;
font-size: 14px;
line-height: 14px;
margin: 5px 0 4px;
}
.tg-approvedads li .tg-adcontent time{
display: block;
font-size: 13px;
line-height: 15px;
}
.tg-adverified {
color: #666;
width: 105px;
height: 24px;
display: block;
font-size: 12px;
font-weight: 500;
line-height: 20px;
text-align: right;
border-radius: 20px;
padding: 2px 10px 0 26px;
border: 1px solid #dbdbdb;
background: url(../images/icons/img-15.png) no-repeat 10px 50%;
}
.tg-totalviews{padding: 15px;}
.tg-viewchart{
width: 100%;
float:right;
height: 300px;
padding: 15px 0 0;
}
.tg-viewchart .ct-bar {
stroke: #eee;
cursor: pointer;
}
.tg-viewchart .ct-grid.ct-horizontal {display: none}
.tg-viewchart .ct-vertical{
stroke-dasharray: 0;
stroke: rgba(234, 237, 239, 1);
}
.tg-viewchart .ct-label{
color: #666;
font-size: 13px;
}
.tg-offersmessages{padding: 0;}
.tg-offersmessages ul{
width: 100%;
float:right;
font-size: 13px;
line-height: 20px;
list-style: none;
}
.tg-offersmessages ul li{
width: 30%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 20px 20px 20px 8px;
}
.tg-offersmessages ul li + li{border-right: 1px solid #dbdbdb;}
.tg-offersmessages ul li:nth-child(2){background: #fcfcfc;}
.tg-offersmessages ul li:last-child{
width: 40%;
padding: 20px;
}
.tg-offersmessages ul li + li:before,
.tg-offersmessages ul li + li:after{
width: 0;
height: 0;
right: -1px;
content: '';
position: absolute;
}
.tg-offersmessages ul li + li:before{
top: 14px;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-right: 8px solid #dbdbdb;
}
.tg-offersmessages ul li + li:after{
top: 15px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid #fff;
}
.tg-offersmessages ul li:last-child:after{
top: 15px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid #fcfcfc;
}
.tg-offersmessages ul li .tg-dashboardscrollbar{height: 515px;}
.tg-offersmessages .tg-ad{
margin: 0;
width: 100%;
float:right;
padding: 10px;
cursor: pointer;
}
.tg-offersmessages .tg-ad figure{width: auto;}
.tg-offersmessages .tg-ad h3{
margin: 0;
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 25px;
overflow: hidden;
padding: 0 10px 0 0px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.tg-offersmessages .tg-ad:hover{
background: #f7f7f7;
-webkit-box-shadow: none;
box-shadow: none;
}
.tg-offerers .mCSB_inside > .mCSB_container {margin-left: 12px;}
.tg-offerer{
margin: 0;
width: 100%;
float:right;
padding: 10px;
cursor: pointer;
position: relative;
}
.tg-offerer figure{
margin: 0;
float:right;
overflow: hidden;
border-radius: 50%;
}
.tg-offerer h3{
margin: 0;
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
padding: 10px 10px 10px 0;
-webkit-box-orient: vertical;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.tg-offerer:hover{background: #f7f7f7;}
.tg-btndelete{
top: 10px;
left: 30px;
opacity: 0;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
border-radius: 5px;
position: absolute;
visibility: hidden;
background: #f91942;
}
.tg-btndelete:hover,
.tg-btndelete:focus,
.tg-btndelete:active{color: #fff;}
.tg-offerer:hover .tg-btndelete{
opacity: 1;
visibility: visible;
}
.tg-chatarea{
width: 100%;
float:right;
}
.tg-messages{}
.tg-offerermessage,
.tg-memessage{
width: 100%;
float:right;
margin: 8px 0;
position: relative;
padding: 0 40px;
}
.tg-offerermessage figure,
.tg-memessage figure{
margin: 0;
bottom: 21px;
width: 30px;
height: 30px;
overflow: hidden;
border-radius: 50%;
position: absolute;
}
.tg-offerermessage figure{right: 0;}
.tg-memessage figure{left: 0;}
.tg-offerermessage figure img,
.tg-memessage figure img{display: block;}
.tg-offerermessage .tg-description,
.tg-memessage .tg-description{}
.tg-offerermessage .tg-description p,
.tg-memessage .tg-description p{
width: auto;
padding: 10px;
font-size: 13px;
margin: 0 0 5px;
line-height: 20px;
background: #f7f7f7;
}
.tg-offerermessage .tg-description p{float:right;}
.tg-memessage .tg-description p{float: left;}
.tg-offerermessage .tg-description p{border-radius: 10px 10px 10px 0;}
.tg-memessage .tg-description p{border-radius: 10px 10px 0 10px;}
.tg-offerermessage .tg-description p a,
.tg-memessage .tg-description p a{
color: #55acee;
text-decoration: none;
}
.tg-offerermessage .tg-description time,
.tg-memessage .tg-description time{
width: 100%;
float:right;
color: #666;
font-size: 11px;
line-height: 16px;
}
.tg-offerermessage .tg-description time{text-align: right;}
.tg-memessage .tg-description time{text-align: right;}
.tg-readmessage .tg-description time{
position: relative;
padding: 0 0 0 16px;
}
.tg-readmessage .tg-description time:before{
top: 0;
left: 0;
width: 16px;
height: 16px;
font-size: 11px;
line-height: 16px;
content: '\f00c';
position: absolute;
font-family: 'FontAwesome';
}
.tg-offersmessages ul li .tg-messages.tg-dashboardscrollbar {
height: 364px;
margin: 0 0 20px;
}
.tg-messages .mCSB_inside > .mCSB_container{margin: 0;}
.tg-messages .mCSB_scrollTools{width: 0;}
.tg-replaybox{
float:right;
width: 100%;
border: 1px solid #eaedef;
}
.tg-replaybox .form-control{
border: 0;
width: 100%;
float:right;
resize: none;
padding: 8px;
height: 100px;
font-size: 13px;
line-height: 16px;
border-radius: 0;
}
.tg-iconbox{
width: 100%;
float:right;
padding: 8px;
height: 39px;
text-align: right;
border-top: 1px solid #eaedef;
}
.tg-iconbox i{
margin: 0 6px 0 0 ;
cursor: pointer;
font-size: 16px;
line-height: 22px;
display: inline-block;
vertical-align: middle;
}
.tg-todotasklist{
height: 557px;
padding: 20px 20px 20px 15px;
}
.tg-todotasklist ul{
width: 100%;
float:right;
color: #363b4d;
font-size: 14px;
line-height: 36px;
list-style-type: none;
}
.tg-todotasklist ul li{
width: 100%;
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-todotasklist ul li + li{
margin: 15px 0 0;
padding: 15px 0 0;
border-top: 1px solid #eaedef;
}
.tg-todotasklist .tg-checkbox{}
.tg-todotasklist .tg-checkbox input[type=checkbox]:checked + label{
color: #666;
text-decoration:line-through;
}
.tg-footer{
position: relative;
padding: 15px 60px;
background: none !important;
border-top: 1px solid #d5d5d5;
}
.tg-footer:before{
top: 0;
right: 0;
width: 100%;
height: 2px;
content: '';
background: #fff;
position: absolute;
}
.tg-footernav{
padding: 0;
width: auto;
background: none;
line-height: 20px;
}
.tg-footernav:before{display: none;}
.tg-footernav ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-footernav ul li{
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-footernav ul li:first-child{padding-right: 0;}
.tg-footernav ul li a{
color: #666;
display: block;
}
.tg-copyright{
padding: 0;
width: auto;
float: left;
font-size: 13px;
}
/*==============================================
Dashboard Profile Setting
==============================================*/
.tg-profilephotogallery{
width: 100%;
float:right;
}
.tg-profilephotogallery ul{
overflow: hidden;
list-style: none;
}
.tg-profilephotogallery ul li{
float:right;
list-style-type: none;
}
.tg-profilephotogallery ul li + li{padding: 0 10px 0 0;}
.tg-profilephotogallery ul li figure{
margin: 0;
overflow: hidden;
position: relative;
border-radius: 5px;
}
.tg-profilephotogallery ul li figure i{
top: 3px;
left: 3px;
z-index: 2;
opacity: 0;
cursor: pointer;
font-size: 14px;
line-height: 16px;
position: absolute;
visibility: hidden;
}
.tg-profilephotogallery ul li figure:hover i,
.tg-profilephotogallery ul li figure.tg-activephoto i{
opacity: 1;
visibility: visible;
}
.tg-profilephotogallery ul li figure img{
z-index: 1;
display: block;
position: relative;
}
.tg-dashboardholder strong{
width: 100%;
float:right;
font-size: 18px;
font-weight: 500;
line-height: 21px;
padding: 0 0 15px;
}
.tg-selectgroup .tg-checkbox{width: 95px;}
.tg-selectgroup .tg-radio{width: auto;}
.tg-selectgroup .tg-radio + .tg-radio{margin: 0 20px 0 0 ;}
/*==============================================
Dashboard Post An Ad
==============================================*/
.tg-dashboardbox + .tg-dashboardbox{margin: 40px 0 0;}
.tg-contactdetail .tg-inputwithicon i{
left: 0;
right: auto;
width: 40px;
height: 40px;
cursor: pointer;
line-height: 40px;
text-align: center;
}
.tg-contactdetail .tg-inputwithicon .form-control{padding-left: 40px;}
.tg-contactdetail .tg-checkbox{
width: auto;
float: left;
padding: 13px 0;
}
.tg-contactdetail .tg-checkbox a{color: #55acee;}
.tg-categorysequence {
margin: 0;
padding: 0;
width: 100%;
float:right;
color:#484848;
list-style: none;
text-align: center;
text-transform: capitalize;
font:14px/20px IRANSans-l;
}
.tg-categorysequence li{
width:auto;
padding:0 15px;
position:relative;
line-height:inherit;
list-style-type:none;
vertical-align: top;
display: inline-block;
}
.tg-categorysequence li:after{
top:0;
right:-3px;
color:#484848;
content:'\f104';
position:absolute;
font-size: inherit;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-categorysequence li:first-child{ padding-right: 0;}
.tg-categorysequence li:first-child:after{display: none;}
.tg-categorysequence li a{color:#55acee;}
.tg-priceformgroup{
position: relative;
padding-left: 134px;
}
.tg-priceformgroup .tg-checkbox{
top: 10px;
left: 0;
float: none;
width: 114px;
position: absolute;
}
.tg-priceformgroup .tg-checkbox label{
color: #666;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
.mce-branding-powered-by{display: none;}
.tg-categorymodal .tg-thememodaldialog{max-width: 870px;}
.tg-dbcategoriesslider{
direction: ltr;
width: 100%;
float:right;
margin: 20px 0;
padding: 0 10px;
}
.tg-dbcategoriesslider .tg-category{
width: 100%;
padding: 0;
}
.tg-dbcategoriesslider.owl-carousel .owl-stage-outer{padding: 4px 0;}
.tg-category:hover .tg-categoryholder{
background: #fff;
padding: 0 0 18px;
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-dbcategoriesslider .tg-category:hover .tg-categoryholder{padding: 0;}
.tg-category:hover h4{
opacity: 1;
bottom: 18px;
visibility: visible;
}
.tg-dbcategoriesslider .tg-prev {left: 0;}
.tg-dbcategoriesslider .tg-next {right: 0;}
.tg-subcategories{
clear: both;
color: #666;
font-size: 14px;
overflow: hidden;
line-height: 20px;
list-style: none;
margin: 0 -30px -30px;
border-top: 1px solid #dbdbdb;
}
.tg-subcategories > li{
width: 50%;
float:right;
padding: 0 30px 30px;
}
.tg-subcategories li{
position: relative;
font-size: inherit;
line-height: inherit;
list-style-type: none;
}
.tg-subcategories > li + li{
background: #fcfcfc;
border-right: 1px solid #dbdbdb;
}
.tg-subcategories ul{
margin: 0;
padding: 0;
width: 100%;
float:right;
font-size: 14px;
overflow: hidden;
line-height: 20px;
list-style: none;
}
.tg-subcategories .tg-title{
padding: 15px 0;
margin: 0 0 20px;
}
.tg-subcategories .tg-title strong {
color: #363b4d;
font-size: 16px;
font-weight: 500;
line-height: 19px;
}
.tg-subcategories ul li + li{margin: 15px 0 0;}
.tg-hassubcategories{padding: 0 0 0 20px;}
.tg-hassubcategories:before{
top: 0;
left: 0;
content: '\f104';
font-size: inherit;
position: absolute;
line-height: inherit;
font-family: 'FontAwesome';
}
/*==============================================
Dashboard Privacy Setting
==============================================*/
.tg-privacysetting ul{
width: 100%;
float:right;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
padding: 0 0 30px;
}
.tg-privacysetting ul li{
width: 100%;
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-privacysetting ul li + li{
margin: 15px 0 0;
padding: 15px 0 0;
border-top: 1px solid #eaedef;
}
.tg-privacysetting ul li .tg-checkbox{}
.tg-privacysetting ul li .tg-checkbox label{
color: #666;
font-weight: 500;
}
.tg-privacysetting ul li .tg-checkbox input[type=checkbox]:checked + label{color: #363b4d;}
.tg-deleteaccount{
width: 100%;
float:right;
background: rgba(217,83,79,0.10);
}
.tg-deleteaccount .tg-dashboardboxtitle{border-bottom-color: rgba(217,83,79,0.10);}
.tg-deleteaccount .tg-dashboardboxtitle h2{color: #a94442;}
.tg-deleteaccount .tg-btn{
color: #fff;
outline: none;
background: #d9534f;
}
.tg-deleteaccount .tg-btn:before{display: none;}
.tg-modaldeleteconfirmation .tg-thememodaldialog{max-width: 830px;}
.tg-modaldeleteconfirmation .tg-thememodalcontent{
text-align: center;
background: #f2dede;
border: 1px solid #ebccd1;
}
.tg-modaldeleteconfirmation .tg-thememodalcontent h2{
color: #a94442;
font-size: 20px;
line-height: 20px;
margin: 0 0 15px;
}
.tg-modaldeleteconfirmation .tg-thememodalcontent p{
margin: 0 0 30px;
color: #a94442;
font-size: 16px;
line-height: 20px;
}
.tg-modaldeleteconfirmation .tg-btnsactions{
margin: 0;
z-index: 2;
width: 100%;
float:right;
position: relative;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn{
padding: 0;
margin: 0 15px;
width: 200px;
text-align: center;
background: #363b4d;
border-color: #363b4d;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn:hover{
background: #d9534f;
border-color: #d9534f;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn:before{display: none;}
.tg-modaldeleteconfirmation .tg-close{background: #d9534f;}
/*==============================================
Dashboard My Ads
==============================================*/
.tg-navtabledata{
width: 100%;
float:right;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
.tg-navtabledata ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-navtabledata ul li{
float:right;
padding: 0 20px;
position: relative;
line-height: inherit;
list-style-type: none;
}
.tg-navtabledata ul li:first-child{padding-right:0;}
.tg-navtabledata ul li + li:before{
right: -1px;
top: 5px;
width: 1px;
height: 10px;
content: '';
position: absolute;
background: #363b4d;
}
.tg-navtabledata ul li a{
color: #363b4d;
display: block;
}
.tg-navtabledata ul li:hover a,
.tg-navtabledata ul li.tg-active a{font-weight: 500;}
.tg-otherfilters{
width: 100%;
float:right;
padding: 30px 0;
}
.tg-otherfilters .form-group{margin: 0;}
.tg-otherfilters .tg-sortby{
padding-right: 75px;
position: relative;
}
.tg-otherfilters .tg-sortby span{
top: 0;
right: 0;
color: #666;
font-size: 16px;
font-weight: 500;
line-height: 40px;
position: absolute;
}
.tg-otherfilters .tg-sortby .tg-select{width: 100%;}
.tg-otherfilters .tg-inputwithicon .form-control{padding-left: 40px;}
.tg-otherfilters .tg-inputwithicon i{
right: auto;
left: 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
}
/* .tg-tablescroll{
width: 100%;
float:right;
overflow: hidden;
overflow-x: scroll;
} */
.tg-dashboardtable{margin: 0;}
.tg-dashboardtable thead tr th{
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
text-align: right;
padding: 15px 10px;
background: #f7f7f7;
vertical-align: middle;
}
.tg-dashboardtable tbody tr[data-category=sold]{background: url(../images/pattern-01.png);}
.tg-dashboardtable tbody tr td{
text-align: right;
padding: 20px 10px;
}
.tg-dashboardtable thead tr th .tg-checkbox,
.tg-dashboardtable tbody tr td .tg-checkbox{
width: 20px;
height: 20px;
}
.tg-dashboardtable tbody tr td,
.tg-dashboardtable tbody tr td h3,
.tg-dashboardtable tbody tr td time{
color: #363b4d;
font-size: 15px;
font-weight: 500;
line-height: 20px;
}
.tg-dashboardtable tbody tr td time{
display: block;
min-width: 95px;
padding: 0 0 10px;
}
.tg-dashboardtable tbody tr td h3 + span,
.tg-dashboardtable tbody tr td time + span{
color: #666;
display: block;
font-size: 12px;
font-weight: 500;
line-height: 16px;
}
.tg-dashboardtable tbody tr td address{
margin: 0;
color: #666;
font-size: 13px;
line-height: 20px;
font-style: normal;
}
.tg-adcategories{
min-width: 110px;
display: block;
}
.tg-adstatus{
width: 80px;
color: #fff;
display: block;
font-size: 13px;
font-weight: 500;
line-height: 30px;
border-radius: 3px;
text-align: center;
text-transform: uppercase;
}
.tg-adstatusinactive{
color: #363b4d;
background: #f7f7f7;
}
.tg-adstatusinactive + em{
color: #666;
display: block;
padding: 5px 0 0;
font-size: 12px;
font-weight: 500;
line-height: 16px;
font-style: normal;
}
.tg-adstatusexpired{background: #fc9209;}
.tg-adstatusdeleted{background: #f91942;}
.tg-btnsactions{
min-width: 150px;
width: 100%;
float:right;
margin: -5px 0;
}
.tg-btnaction{
margin: 5px;
width: 40px;
height: 40px;
float:right;
color: #363b4d;
line-height: 40px;
border-radius: 5px;
background: #f7f7f7;
text-align: center;
}
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete{background: #f91942;}
.tg-dashboardtable tbody tr:hover .tg-btnactionview,
.tg-dashboardtable tbody tr:hover .tg-btnactionedit,
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete,
.tg-dashboardtable tbody tr:hover .tg-btnactionview i,
.tg-dashboardtable tbody tr:hover .tg-btnactionedit i,
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete i{color: #fff;}
.tg-btnaction i{
display: block;
line-height: 40px;
}
.tg-dashboardtable tbody tr:hover{
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
/*==============================================
Dashboard My Favourites
==============================================*/
.tg-tagsold{
color: #fff;
width: 52px;
height: 24px;
display: block;
margin: 8px 0 0;
font-size: 12px;
font-weight: 500;
line-height: 24px;
text-align: center;
border-radius: 24px;
text-transform: capitalize;
}
.tg-myfavourites .tg-btnsactions{min-width: 105px;}
/*==============================================
Dashboard Payments
==============================================*/
.tg-expirynote{
width: 100%;
float:right;
}
.tg-expirynote .tg-description{padding: 0 0 30px;}
.tg-expirynote .tg-description p{margin: 0;}
.tg-btns{
width: 100%;
float:right;
}
.tg-expirynote .tg-btns .tg-btn{
width: 45%;
margin: 0;
padding: 0;
text-align: center;
}
.tg-btnrenew{background: #f91942 !important;}
.tg-btnrenew:before{display: none;}
.tg-btnallpackages{float: left;}
.tg-pkgexpirycounter{
width: 100%;
float:right;
}
.tg-pkgexpirycounter ul{
clear: both;
margin: -15px;
overflow: hidden;
list-style: none;
text-align: center;
}
.tg-pkgexpirycounter ul li{
width: 25%;
float:right;
padding: 15px;
list-style-type: none;
}
.tg-pkgexpirycounter ul li .tg-holder{
width: 100%;
float:right;
padding: 55px 30px;
background: #f7f7f7;
}
.tg-pkgexpirycounter ul li .tg-holder h3{
margin: 0 0 5px;
font-size: 50px;
font-weight: 400;
line-height: 40px;
}
.tg-pkgexpirycounter ul li .tg-holder h4{
margin: 0;
color: #666;
font-size: 20px;
font-weight: 500;
line-height: 23px;
}
/*==============================================
Dashboard Offer Messages
==============================================*/
.tg-offersmessageswithsearch ul li .tg-dashboardscrollbar{height: 558px;}
.tg-offersmessageswithsearch ul li:first-child .tg-dashboardscrollbar {height: 480px;}
.tg-offersmessageswithsearch ul li:last-child .tg-messages.tg-dashboardscrollbar { height: 397px; }
.tg-offersmessages fieldset{ padding: 0 0 20px; }
.tg-offersmessages fieldset .form-control{
z-index: 1;
height: 50px;
line-height: 30px;
position: relative;
padding: 10px 20px 10px 50px;
}
.tg-offersmessages fieldset .form-control + i{
top: 0;
left: 0;
z-index: 2;
width: 50px;
height: 50px;
font-size: 16px;
line-height: 50px;
position: absolute;
text-align: center;
}
|
UnivStore.WebApp/Content/dashboard.css
|
.tg-btn{cursor: pointer;}
.tg-checkbox input[type=checkbox] + label,
.tg-radio input[type=radio] + label{
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
padding: 0 30px 0 0;
text-transform: capitalize;
}
.tg-checkbox input[type=checkbox] + label:before,
.tg-radio input[type=radio] + label:before{
top: 0;
content: '';
width: 20px;
height: 20px;
background: #fff;
line-height: 18px;
border-radius: 3px;
border: 1px solid #bbb;
}
.tg-radio input[type=radio] + label:before{border-radius: 50%;}
.tg-checkbox input[type=checkbox] + label:after{
top: 0;
right: 0;
opacity: 0;
width: 20px;
height: 20px;
content: '\f00c';
color: #1e8cbe;
font-size: 13px;
line-height: 20px;
position: absolute;
text-align: center;
visibility: hidden;
font-family: 'FontAwesome';
}
.tg-radio input[type=radio] + label:after{
top: 5px;
right: 5px;
opacity: 0;
content: '';
width: 10px;
height: 10px;
border-radius: 50%;
position: absolute;
text-align: center;
visibility: hidden;
background: #1e8cbe;
}
.tg-checkbox input[type=checkbox]:checked + label:before,
.tg-radio input[type=radio]:checked + label:before{content: '';}
.tg-checkbox input[type=checkbox]:checked + label,
.tg-radio input[type=radio]:checked + label{color: #666;}
.tg-checkbox input[type=checkbox]:checked + label:after,
.tg-radio input[type=radio]:checked + label:after{
opacity: 1;
visibility: visible;
}
/*==============================================
Theme BreadCrumb
==============================================*/
.tg-breadcrumb {
margin:0;
color: #999;
width: auto;
float: left;
list-style: none;
text-align: right;
text-transform: capitalize;
font:14px/20px IRANSans-l;
}
.tg-breadcrumb li{
width:auto;
float:right;
padding:0 15px;
position:relative;
line-height:inherit;
list-style-type:none;
}
.tg-breadcrumb li:after{
top:0;
right:-3px;
color:#484848;
content:'\f104';
position:absolute;
font-size: inherit;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-breadcrumb li:first-child{ padding-right: 0;}
.tg-breadcrumb li:first-child:after{display: none;}
.tg-breadcrumb li a{
display:block;
color:#484848;
}
.tg-fileuploadlabel{
width: 100%;
float:right;
padding: 30px;
color: #363b4d;
font-size: 14px;
line-height: 17px;
margin: 0 0 10px;
cursor: pointer;
border-radius: 5px;
border: 3px dashed #eaedef;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
}
.tg-fileuploadlabel span{display: block;}
.tg-fileuploadlabel span:first-child{
font-size: 18px;
font-weight: 500;
line-height: 21px;
}
.tg-fileuploadlabel span:nth-child(2){padding: 15px 0;}
.tg-fileuploadlabel span:nth-child(4){
color: #363b4d;
font-size: 13px;
line-height: 16px;
margin: 30px 0 0;
}
input[type=file].tg-fileinput{display: none;}
.mCSB_horizontal.mCSB_inside > .mCSB_container{margin: 0 0 13px;}
.mCSB_scrollTools.mCSB_scrollTools_horizontal{height: 3px;}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
margin: 0;
height: 3px;
background: #f7f7f7;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
margin: 0;
height: 3px;
}
/*==============================================
Dashboard Global Elements
==============================================*/
.tg-dbsectionspace{padding: 20px 0;}
.tg-dashboardbox{
width: 100%;
float:right;
overflow: hidden;
background: #fff;
position: relative;
border-radius: 5px;
}
.tg-dashboardbox:hover{
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-dashboardboxtitle{
width: 100%;
float:right;
padding: 10px;
border-bottom: 1px solid #eaedef;
}
.tg-dashboardboxtitle h2{
margin: 0;
float:right;
color: #363b4d;
font-size: 20px;
font-weight: 500;
line-height: 20px;
padding: 8px 10px 8px 0;
}
.tg-dashboardboxtitle .tg-formthemesearch{
width: 50%;
float: left;
}
.tg-dashboardboxtitle .tg-formthemesearch .tg-select:after{line-height: 36px;}
.tg-dashboardboxtitle .tg-formthemesearch .tg-select select{
height: 36px;
line-height: 20px;
padding: 7px 20px;
}
.tg-dashboardholder{
z-index: 2;
width: 100%;
float:right;
padding: 30px;
position: relative;
}
.tg-dashboardscrollbar{
width: 100%;
float:right;
height: 330px;
overflow: hidden;
}
.tg-dashboardscrollbar .mCSB_inside > .mCSB_container {margin-left: 15px;}
.tg-dashboardscrollbar .mCSB_scrollTools .mCSB_draggerRail {background: #f7f7f7;}
.tg-dotnotification{
position: relative;
padding-left: 26px !important;
}
.tg-dotnotification:before{
top: 50%;
left: 10px;
width: 6px;
height: 6px;
content: '';
margin: -3px 0 0;
position: absolute;
border-radius: 6px;
background: #f91942;
}
/*==============================================
Dashboard Header Style
==============================================*/
.tg-dashboardheader{
z-index: 999;
background: #fff;
padding: 20px 60px;
position: relative;
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-navigation > ul > li:first-child{padding-right: 0;}
.tg-navigation > ul > li:last-child{padding-left: 0;}
.tg-themedropdown{
position: relative;
display: inline-block;
vertical-align: middle;
}
.tg-notification{
float: left;
margin: 0 10px 0 0;
}
.tg-btndropdown{
outline: 0;
color: #666;
background: none;
position: relative;
}
.tg-btndropdown i{
width: 46px;
height: 46px;
display: block;
font-size: 18px;
overflow: hidden;
line-height: 44px;
border-radius: 50%;
border: 1px solid #666;
}
.tg-dashboardheader .tg-btn{
float:right;
padding: 0 30px;
}
.tg-badge{
top: 0;
left: 0;
color: #fff;
min-width: 10px;
padding: 1px 6px;
font-size: 10px;
font-weight: 500;
line-height: 15px;
text-align: center;
border-radius: 50%;
position: absolute;
background: #f91942;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
}
.tg-dropdownmenu{
border: 0;
margin: 0;
left: 0;
opacity: 0;
top: 150px;
right: auto;
padding: 0;
float: none;
width: 330px;
display: block;
color: #363b4d;
font-size: 13px;
line-height: 20px;
border-radius: 0;
background: #fff;
list-style: none;
visibility: hidden;
position: absolute;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.10);
box-shadow: 0 0 8px 0 rgba(0,0,0,0.10);
}
.tg-dropdownmenu:before{
width: 0;
height: 0;
content: '';
left: 15px;
bottom: 100%;
position: absolute;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-bottom: 5px solid #fff;
}
.tg-dropdownmenu li{
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 20px 38px 20px 20px ;
}
.tg-dropdownmenu li:before{
top: 29px;
right: 18px;
width: 4px;
height: 4px;
content: '';
border-radius: 50%;
position: absolute;
background: #f91942;
}
.tg-dropdownmenu li + li{border-top: 1px solid #eaeaea;}
.tg-dropdownmenu li:hover{ background: #f7f7f7; }
.tg-dropdownmenu li p{
margin: 0;
line-height: inherit;
}
.tg-themedropdown.open .tg-dropdownmenu{
top: 70px;
opacity: 1;
visibility: visible;
}
/*==============================================
Dashboard Sidebar Navigation Style
==============================================*/
.tg-dashboardnav{
width: 100%;
float:right;
}
.tg-wrapper:before{display: none;}
.tg-wrapper {
overflow: hidden;
background: #f7f7f7;
padding: 0 250px 2px 0;
}
.tg-sidebarwrapper {
top: 0;
right: 0;
z-index: 50;
width: 250px;
height: 100%;
position: fixed;
background: #363b4d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
}
.tg-sidebarwrapper .tg-logo{
margin: 0;
width: 250px;
height: 85px;
padding: 26px 40px;
}
.tg-sidebarwrapper .tg-logo a img{
height: 33px;
width: 170px;
}
.tg-user{
width: 250px;
float:right;
padding: 30px 20px;
position: relative;
background: #2b2f3e;
}
.tg-user figure{
margin: 0;
float:right;
position: relative;
border-radius: 50%;
}
.tg-user figure a{
display: block;
overflow: hidden;
border-radius: 50%;
}
.tg-user figure a img{ display: block; }
.tg-usercontent{
overflow: hidden;
padding: 12px 15px 12px 0;
}
.tg-usercontent h3{
color: #ddd;
margin: 0 0 6px;
font-size: 16px;
font-weight: 500;
line-height: 16px;
}
.tg-usercontent h4{
margin: 0;
color: #ddd;
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.tg-bolticon{
top: -2px;
right: -2px;
width: 22px;
height: 22px;
position: absolute;
border-radius: 50%;
background: #f91942;
}
.tg-bolticon i{
color: #fff;
display: block;
font-size: 12px;
line-height: 22px;
text-align: center;
}
.tg-btnedit{
color: #fff;
left: 30px;
bottom: -25px;
width: 50px;
height: 50px;
display: block;
border: 4px solid;
border-radius: 50%;
position: absolute;
}
.tg-btnedit i{
color: #fff;
width: 100%;
float:right;
font-size: 16px;
line-height: 42px;
border-radius: 50%;
text-align: center;
}
.tg-btnmenutoggle{
transform: rotate(180deg);
top: 110px;
right: 100%;
color: #fff;
cursor: pointer;
position: absolute;
text-align: center;
}
.cls-1 {
fill: #2b2f3e;
fill-rule: evenodd;
}
.tg-btnmenutoggle i{
top: 0;
right: 0;
z-index: 2;
color: #fff;
width: 100%;
height: 100%;
display: block;
line-height: 67px;
position: absolute;
}
.tg-navdashboard {
width: 250px;
float:right;
margin: 80px 0;
font-size: 14px;
line-height: 58px;
border-top: 1px solid #495067;
}
.tg-navdashboard ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-navdashboard ul li {
margin: 0;
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
border-bottom: 1px solid #495067;
}
.tg-navdashboard > ul > li:nth-child(odd){ background: #333848; }
.tg-navdashboard > ul > li:nth-child(even){ background: #363b4d; }
.tg-navdashboard > ul > li > a {
color: #ddd;
width: 100%;
float:right;
line-height: inherit;
border-right: 2px solid transparent;
}
.tg-navdashboard > ul > li > a:before{ display: none; }
.tg-navdashboard ul li a:focus,
.tg-navdashboard ul li a:hover,
.tg-navdashboard ul li a:active,
.tg-navdashboard ul li.tg-active a{ color: #fff; }
.tg-navdashboard ul li a i,
.tg-navdashboard ul li a span{
float:right;
line-height: inherit;
}
.tg-navdashboard ul li a i{
width: 58px;
display: block;
font-size: 20px;
text-align: center;
}
.tg-navdashboard ul li a span{ text-align: right; }
.tg-navdashboard .tg-dropdowarrow{ display: block; }
.tg-navdashboard ul li.menu-item-has-children ul{
opacity: 1;
clear: both;
width: auto;
float: none;
display: none;
position: static;
overflow: hidden;
visibility: visible;
margin: 0 30px 20px 0;
-webkit-box-shadow: none;
box-shadow: none;
border-right: 1px solid #495067;
}
.tg-navdashboard .menu-item-has-children .sub-menu{ background: none; }
.tg-navdashboard .menu-item-has-children .sub-menu li{
border: 0;
width: 100%;
float:right;
margin: 10px 0 0;
line-height: 20px;
position: relative;
padding: 0 30px 0 ;
background: none !important;
}
.tg-navdashboard .menu-item-has-children .sub-menu li:before{
top: 50%;
right: 0;
width: 20px;
height: 1px;
content: '';
position: absolute;
background: #495067;
}
.tg-navdashboard .menu-item-has-children .sub-menu li a{
color: #999;
line-height: inherit;
}
.tg-navdashboard .tg-dropdowarrow{ top: 20px; }
.tg-socialandappicons{
float:right;
width: 250px;
}
.tg-socialandappicons ul{
float:right;
width: 250px;
text-align: center;
}
.tg-socialandappicons ul li{
width: auto;
float: none;
vertical-align: top;
display: inline-block;
}
.tg-socialandappicons .tg-socialicons{ padding: 0 0 20px; }
.tg-appstoreicons{
padding: 15px;
background: rgba(0,0,0,0.20);
}
.tg-appstoreicons li{ padding: 0 5px; }
.tg-wrapper.tg-openmenu { padding-right: 60px; }
.tg-wrapper.tg-openmenu .tg-sidebarwrapper { width: 60px; }
.tg-openmenu .tg-sidebarwrapper .tg-logo{ margin: 0 60px 0 0 ; }
.tg-openmenu .tg-user{
background: #363b4d;
padding: 30px 65px 40px 0;
}
.tg-openmenu .tg-btnmenutoggle .cls-1{ fill: #363b4d; }
.tg-openmenu .tg-btnmenutoggle i:before{ content: '\f105'; }
.tg-openmenu .tg-socialandappicons{ margin: 0 60px 0 0; }
/*==============================================
Dashboard Inner Banner
==============================================*/
.tg-dashboardbanner{
width: 100%;
float:right;
padding: 30px 60px;
position: relative;
border-bottom: 1px solid #d5d5d5;
}
.tg-dashboardbanner:before{
right: 0;
bottom: 0;
width: 100%;
height: 2px;
content: '';
background: #fff;
position: absolute;
}
.tg-dashboardbanner h1{
margin: 0;
color: #666;
float:right;
font-size: 18px;
font-weight: 400;
line-height: 18px;
text-transform: capitalize;
}
/*==============================================
Dashboard Main
==============================================*/
.tg-main{
min-height: 731px;
padding: 20px 60px;
}
/*==============================================
Dashboard Alerts
==============================================*/
.tg-alertexamples{}
.tg-alert{
margin: 0;
width: 100%;
float:right;
font-size: 14px;
line-height: 20px;
padding: 8px 15px;
position: relative;
}
.tg-alert + .tg-alert{margin: 10px 0 0;}
.tg-alert p {
margin: 0;
font-size: inherit;
line-height: inherit;
padding: 6px 0 6px 180px;
}
.tg-alert p strong{
color: inherit;
font-weight: 500;
}
.tg-anchors{
top: 50%;
left: 15px;
margin: -16px 0 0;
position: absolute;
}
.tg-anchors a{
opacity: 1;
float:right;
color: inherit;
font-size: 14px;
font-weight: 400;
line-height: 32px;
text-shadow: none;
}
.tg-btndoaction{
padding: 0 25px;
border-radius: 5px;
margin: 0 0 0 15px;
background: inherit;
display: inline-block;
vertical-align: middle;
color: #fff !important;
}
.alert-info .tg-btndoaction{ background: #31708f; }
.alert-warning .tg-btndoaction{ background: #d89d49; }
.alert-danger .tg-btndoaction{ background: #d9534f; }
.alert-success .tg-btndoaction{ background: #3c763d; }
.tg-anchors a.close{
font-size: 18px;
font-weight: 500;
}
/*==============================================
Dashboard Statistics
==============================================*/
.tg-statistics{
width: 100%;
float:right;
}
.tg-statistic .tg-badge{
top: 20px;
left: 20px;
}
.tg-statistic{ padding: 30px; }
.tg-statistic figure{
width: 70px;
margin: 0;
float:right;
}
.tg-statistic figure img{
width: 100%;
height: auto;
display: block;
}
.tg-statistic .tg-contentbox{padding: 6px 15px 6px 0;}
.tg-contentbox h2{
margin: 0 0 10px;
font-size: 44px;
font-weight: 400;
line-height: 32px;
}
.tg-contentbox h3{
margin: 0;
font-size: 18px;
font-weight: 500;
line-height: 20px;
}
.tg-btnviewdetail{
color: #666;
left: 15px;
bottom: 10px;
position: absolute;
padding: 0 0 0 14px;
text-transform: capitalize;
font: 500 14px/14px IRANSans-l;
}
.tg-btnviewdetail:before{
top: 0;
left: 0;
position: absolute;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-dashboardscrollbar.tg-myactivitylog,
.tg-dashboardscrollbar.tg-approvedads{padding: 30px 24px 30px 15px; }
.tg-myactivitylog .mCSB_container {padding: 0 6px 0 0 ;}
.tg-activitylog{
width: 100%;
float:right;
color: #666;
font-size: 13px;
line-height: 17px;
list-style: none;
border-right: 2px solid #eaedef;
}
.tg-activitylog li{
width: 100%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 0 15px 25px 0;
}
.tg-activitylog li:last-child{padding-bottom: 0;}
.tg-activitylog li:before{
top: 0;
right: -7px;
content: '';
width: 12px;
height: 12px;
display: block;
background: #fff;
position: absolute;
border-radius: 50%;
border: 2px solid #ddd;
}
.tg-activitylog li h3{
margin: 0;
color: #363b4d;
font-size: 14px;
line-height: 17px;
}
.tg-activitylog li h3 a{color: #55acee;}
.tg-activitylog li time{
display: block;
font-size: 13px;
line-height: 16px;
padding: 3px 0 0;
}
.tg-approvedads{
width: 100%;
float:right;
color: #666;
font-size: 13px;
line-height: 17px;
list-style: none;
}
.tg-approvedads li{
width: 100%;
float:right;
padding: 0 0 25px;
position: relative;
line-height: inherit;
list-style-type: none;
}
.tg-approvedads li:last-child{padding: 0;}
.tg-approvedads li figure{
margin: 0;
float:right;
overflow: hidden;
border-radius: 5px;
}
.tg-approvedads li figure a,
.tg-approvedads li figure a img{display: block;}
.tg-approvedads li .tg-adcontent{
width: auto;
float: none;
overflow: hidden;
padding: 0 10px 0 0;
}
.tg-approvedads li .tg-adcontent h3{
color: #363b4d;
font-size: 14px;
line-height: 14px;
margin: 5px 0 4px;
}
.tg-approvedads li .tg-adcontent time{
display: block;
font-size: 13px;
line-height: 15px;
}
.tg-adverified {
color: #666;
width: 105px;
height: 24px;
display: block;
font-size: 12px;
font-weight: 500;
line-height: 20px;
text-align: right;
border-radius: 20px;
padding: 2px 10px 0 26px;
border: 1px solid #dbdbdb;
background: url(../images/icons/img-15.png) no-repeat 10px 50%;
}
.tg-totalviews{padding: 15px;}
.tg-viewchart{
width: 100%;
float:right;
height: 300px;
padding: 15px 0 0;
}
.tg-viewchart .ct-bar {
stroke: #eee;
cursor: pointer;
}
.tg-viewchart .ct-grid.ct-horizontal {display: none}
.tg-viewchart .ct-vertical{
stroke-dasharray: 0;
stroke: rgba(234, 237, 239, 1);
}
.tg-viewchart .ct-label{
color: #666;
font-size: 13px;
}
.tg-offersmessages{padding: 0;}
.tg-offersmessages ul{
width: 100%;
float:right;
font-size: 13px;
line-height: 20px;
list-style: none;
}
.tg-offersmessages ul li{
width: 30%;
float:right;
position: relative;
line-height: inherit;
list-style-type: none;
padding: 20px 20px 20px 8px;
}
.tg-offersmessages ul li + li{border-right: 1px solid #dbdbdb;}
.tg-offersmessages ul li:nth-child(2){background: #fcfcfc;}
.tg-offersmessages ul li:last-child{
width: 40%;
padding: 20px;
}
.tg-offersmessages ul li + li:before,
.tg-offersmessages ul li + li:after{
width: 0;
height: 0;
right: -1px;
content: '';
position: absolute;
}
.tg-offersmessages ul li + li:before{
top: 14px;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-right: 8px solid #dbdbdb;
}
.tg-offersmessages ul li + li:after{
top: 15px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid #fff;
}
.tg-offersmessages ul li:last-child:after{
top: 15px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid #fcfcfc;
}
.tg-offersmessages ul li .tg-dashboardscrollbar{height: 515px;}
.tg-offersmessages .tg-ad{
margin: 0;
width: 100%;
float:right;
padding: 10px;
cursor: pointer;
}
.tg-offersmessages .tg-ad figure{width: auto;}
.tg-offersmessages .tg-ad h3{
margin: 0;
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 25px;
overflow: hidden;
padding: 0 10px 0 0px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.tg-offersmessages .tg-ad:hover{
background: #f7f7f7;
-webkit-box-shadow: none;
box-shadow: none;
}
.tg-offerers .mCSB_inside > .mCSB_container {margin-left: 12px;}
.tg-offerer{
margin: 0;
width: 100%;
float:right;
padding: 10px;
cursor: pointer;
position: relative;
}
.tg-offerer figure{
margin: 0;
float:right;
overflow: hidden;
border-radius: 50%;
}
.tg-offerer h3{
margin: 0;
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
padding: 10px 10px 10px 0;
-webkit-box-orient: vertical;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.tg-offerer:hover{background: #f7f7f7;}
.tg-btndelete{
top: 10px;
left: 30px;
opacity: 0;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
border-radius: 5px;
position: absolute;
visibility: hidden;
background: #f91942;
}
.tg-btndelete:hover,
.tg-btndelete:focus,
.tg-btndelete:active{color: #fff;}
.tg-offerer:hover .tg-btndelete{
opacity: 1;
visibility: visible;
}
.tg-chatarea{
width: 100%;
float:right;
}
.tg-messages{}
.tg-offerermessage,
.tg-memessage{
width: 100%;
float:right;
margin: 8px 0;
position: relative;
padding: 0 40px;
}
.tg-offerermessage figure,
.tg-memessage figure{
margin: 0;
bottom: 21px;
width: 30px;
height: 30px;
overflow: hidden;
border-radius: 50%;
position: absolute;
}
.tg-offerermessage figure{right: 0;}
.tg-memessage figure{left: 0;}
.tg-offerermessage figure img,
.tg-memessage figure img{display: block;}
.tg-offerermessage .tg-description,
.tg-memessage .tg-description{}
.tg-offerermessage .tg-description p,
.tg-memessage .tg-description p{
width: auto;
padding: 10px;
font-size: 13px;
margin: 0 0 5px;
line-height: 20px;
background: #f7f7f7;
}
.tg-offerermessage .tg-description p{float:right;}
.tg-memessage .tg-description p{float: left;}
.tg-offerermessage .tg-description p{border-radius: 10px 10px 10px 0;}
.tg-memessage .tg-description p{border-radius: 10px 10px 0 10px;}
.tg-offerermessage .tg-description p a,
.tg-memessage .tg-description p a{
color: #55acee;
text-decoration: none;
}
.tg-offerermessage .tg-description time,
.tg-memessage .tg-description time{
width: 100%;
float:right;
color: #666;
font-size: 11px;
line-height: 16px;
}
.tg-offerermessage .tg-description time{text-align: right;}
.tg-memessage .tg-description time{text-align: right;}
.tg-readmessage .tg-description time{
position: relative;
padding: 0 0 0 16px;
}
.tg-readmessage .tg-description time:before{
top: 0;
left: 0;
width: 16px;
height: 16px;
font-size: 11px;
line-height: 16px;
content: '\f00c';
position: absolute;
font-family: 'FontAwesome';
}
.tg-offersmessages ul li .tg-messages.tg-dashboardscrollbar {
height: 364px;
margin: 0 0 20px;
}
.tg-messages .mCSB_inside > .mCSB_container{margin: 0;}
.tg-messages .mCSB_scrollTools{width: 0;}
.tg-replaybox{
float:right;
width: 100%;
border: 1px solid #eaedef;
}
.tg-replaybox .form-control{
border: 0;
width: 100%;
float:right;
resize: none;
padding: 8px;
height: 100px;
font-size: 13px;
line-height: 16px;
border-radius: 0;
}
.tg-iconbox{
width: 100%;
float:right;
padding: 8px;
height: 39px;
text-align: right;
border-top: 1px solid #eaedef;
}
.tg-iconbox i{
margin: 0 6px 0 0 ;
cursor: pointer;
font-size: 16px;
line-height: 22px;
display: inline-block;
vertical-align: middle;
}
.tg-todotasklist{
height: 557px;
padding: 20px 20px 20px 15px;
}
.tg-todotasklist ul{
width: 100%;
float:right;
color: #363b4d;
font-size: 14px;
line-height: 36px;
list-style-type: none;
}
.tg-todotasklist ul li{
width: 100%;
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-todotasklist ul li + li{
margin: 15px 0 0;
padding: 15px 0 0;
border-top: 1px solid #eaedef;
}
.tg-todotasklist .tg-checkbox{}
.tg-todotasklist .tg-checkbox input[type=checkbox]:checked + label{
color: #666;
text-decoration:line-through;
}
.tg-footer{
position: relative;
padding: 15px 60px;
background: none !important;
border-top: 1px solid #d5d5d5;
}
.tg-footer:before{
top: 0;
right: 0;
width: 100%;
height: 2px;
content: '';
background: #fff;
position: absolute;
}
.tg-footernav{
padding: 0;
width: auto;
background: none;
line-height: 20px;
}
.tg-footernav:before{display: none;}
.tg-footernav ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-footernav ul li{
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-footernav ul li:first-child{padding-right: 0;}
.tg-footernav ul li a{
color: #666;
display: block;
}
.tg-copyright{
padding: 0;
width: auto;
float: left;
font-size: 13px;
}
/*==============================================
Dashboard Profile Setting
==============================================*/
.tg-profilephotogallery{
width: 100%;
float:right;
}
.tg-profilephotogallery ul{
overflow: hidden;
list-style: none;
}
.tg-profilephotogallery ul li{
float:right;
list-style-type: none;
}
.tg-profilephotogallery ul li + li{padding: 0 10px 0 0;}
.tg-profilephotogallery ul li figure{
margin: 0;
overflow: hidden;
position: relative;
border-radius: 5px;
}
.tg-profilephotogallery ul li figure i{
top: 3px;
left: 3px;
z-index: 2;
opacity: 0;
cursor: pointer;
font-size: 14px;
line-height: 16px;
position: absolute;
visibility: hidden;
}
.tg-profilephotogallery ul li figure:hover i,
.tg-profilephotogallery ul li figure.tg-activephoto i{
opacity: 1;
visibility: visible;
}
.tg-profilephotogallery ul li figure img{
z-index: 1;
display: block;
position: relative;
}
.tg-dashboardholder strong{
width: 100%;
float:right;
font-size: 18px;
font-weight: 500;
line-height: 21px;
padding: 0 0 15px;
}
.tg-selectgroup .tg-checkbox{width: 95px;}
.tg-selectgroup .tg-radio{width: auto;}
.tg-selectgroup .tg-radio + .tg-radio{margin: 0 20px 0 0 ;}
/*==============================================
Dashboard Post An Ad
==============================================*/
.tg-dashboardbox + .tg-dashboardbox{margin: 40px 0 0;}
.tg-contactdetail .tg-inputwithicon i{
left: 0;
right: auto;
width: 40px;
height: 40px;
cursor: pointer;
line-height: 40px;
text-align: center;
}
.tg-contactdetail .tg-inputwithicon .form-control{padding-left: 40px;}
.tg-contactdetail .tg-checkbox{
width: auto;
float: left;
padding: 13px 0;
}
.tg-contactdetail .tg-checkbox a{color: #55acee;}
.tg-categorysequence {
margin: 0;
padding: 0;
width: 100%;
float:right;
color:#484848;
list-style: none;
text-align: center;
text-transform: capitalize;
font:14px/20px IRANSans-l;
}
.tg-categorysequence li{
width:auto;
padding:0 15px;
position:relative;
line-height:inherit;
list-style-type:none;
vertical-align: top;
display: inline-block;
}
.tg-categorysequence li:after{
top:0;
right:-3px;
color:#484848;
content:'\f104';
position:absolute;
font-size: inherit;
line-height: inherit;
font-family: 'FontAwesome';
}
.tg-categorysequence li:first-child{ padding-right: 0;}
.tg-categorysequence li:first-child:after{display: none;}
.tg-categorysequence li a{color:#55acee;}
.tg-priceformgroup{
position: relative;
padding-left: 134px;
}
.tg-priceformgroup .tg-checkbox{
top: 10px;
left: 0;
float: none;
width: 114px;
position: absolute;
}
.tg-priceformgroup .tg-checkbox label{
color: #666;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
.mce-branding-powered-by{display: none;}
.tg-categorymodal .tg-thememodaldialog{max-width: 870px;}
.tg-dbcategoriesslider{
direction: ltr;
width: 100%;
float:right;
margin: 20px 0;
padding: 0 10px;
}
.tg-dbcategoriesslider .tg-category{
width: 100%;
padding: 0;
}
.tg-dbcategoriesslider.owl-carousel .owl-stage-outer{padding: 4px 0;}
.tg-category:hover .tg-categoryholder{
background: #fff;
padding: 0 0 18px;
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
.tg-dbcategoriesslider .tg-category:hover .tg-categoryholder{padding: 0;}
.tg-category:hover h4{
opacity: 1;
bottom: 18px;
visibility: visible;
}
.tg-dbcategoriesslider .tg-prev {left: 0;}
.tg-dbcategoriesslider .tg-next {right: 0;}
.tg-subcategories{
clear: both;
color: #666;
font-size: 14px;
overflow: hidden;
line-height: 20px;
list-style: none;
margin: 0 -30px -30px;
border-top: 1px solid #dbdbdb;
}
.tg-subcategories > li{
width: 50%;
float:right;
padding: 0 30px 30px;
}
.tg-subcategories li{
position: relative;
font-size: inherit;
line-height: inherit;
list-style-type: none;
}
.tg-subcategories > li + li{
background: #fcfcfc;
border-right: 1px solid #dbdbdb;
}
.tg-subcategories ul{
margin: 0;
padding: 0;
width: 100%;
float:right;
font-size: 14px;
overflow: hidden;
line-height: 20px;
list-style: none;
}
.tg-subcategories .tg-title{
padding: 15px 0;
margin: 0 0 20px;
}
.tg-subcategories .tg-title strong {
color: #363b4d;
font-size: 16px;
font-weight: 500;
line-height: 19px;
}
.tg-subcategories ul li + li{margin: 15px 0 0;}
.tg-hassubcategories{padding: 0 0 0 20px;}
.tg-hassubcategories:before{
top: 0;
left: 0;
content: '\f104';
font-size: inherit;
position: absolute;
line-height: inherit;
font-family: 'FontAwesome';
}
/*==============================================
Dashboard Privacy Setting
==============================================*/
.tg-privacysetting ul{
width: 100%;
float:right;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
padding: 0 0 30px;
}
.tg-privacysetting ul li{
width: 100%;
float:right;
line-height: inherit;
list-style-type: none;
}
.tg-privacysetting ul li + li{
margin: 15px 0 0;
padding: 15px 0 0;
border-top: 1px solid #eaedef;
}
.tg-privacysetting ul li .tg-checkbox{}
.tg-privacysetting ul li .tg-checkbox label{
color: #666;
font-weight: 500;
}
.tg-privacysetting ul li .tg-checkbox input[type=checkbox]:checked + label{color: #363b4d;}
.tg-deleteaccount{
width: 100%;
float:right;
background: rgba(217,83,79,0.10);
}
.tg-deleteaccount .tg-dashboardboxtitle{border-bottom-color: rgba(217,83,79,0.10);}
.tg-deleteaccount .tg-dashboardboxtitle h2{color: #a94442;}
.tg-deleteaccount .tg-btn{
color: #fff;
outline: none;
background: #d9534f;
}
.tg-deleteaccount .tg-btn:before{display: none;}
.tg-modaldeleteconfirmation .tg-thememodaldialog{max-width: 830px;}
.tg-modaldeleteconfirmation .tg-thememodalcontent{
text-align: center;
background: #f2dede;
border: 1px solid #ebccd1;
}
.tg-modaldeleteconfirmation .tg-thememodalcontent h2{
color: #a94442;
font-size: 20px;
line-height: 20px;
margin: 0 0 15px;
}
.tg-modaldeleteconfirmation .tg-thememodalcontent p{
margin: 0 0 30px;
color: #a94442;
font-size: 16px;
line-height: 20px;
}
.tg-modaldeleteconfirmation .tg-btnsactions{
margin: 0;
z-index: 2;
width: 100%;
float:right;
position: relative;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn{
padding: 0;
margin: 0 15px;
width: 200px;
text-align: center;
background: #363b4d;
border-color: #363b4d;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn:hover{
background: #d9534f;
border-color: #d9534f;
}
.tg-modaldeleteconfirmation .tg-btnsactions .tg-btn:before{display: none;}
.tg-modaldeleteconfirmation .tg-close{background: #d9534f;}
/*==============================================
Dashboard My Ads
==============================================*/
.tg-navtabledata{
width: 100%;
float:right;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
.tg-navtabledata ul{
width: 100%;
float:right;
list-style: none;
line-height: inherit;
}
.tg-navtabledata ul li{
float:right;
padding: 0 20px;
position: relative;
line-height: inherit;
list-style-type: none;
}
.tg-navtabledata ul li:first-child{padding-right:0;}
.tg-navtabledata ul li + li:before{
right: -1px;
top: 5px;
width: 1px;
height: 10px;
content: '';
position: absolute;
background: #363b4d;
}
.tg-navtabledata ul li a{
color: #363b4d;
display: block;
}
.tg-navtabledata ul li:hover a,
.tg-navtabledata ul li.tg-active a{font-weight: 500;}
.tg-otherfilters{
width: 100%;
float:right;
padding: 30px 0;
}
.tg-otherfilters .form-group{margin: 0;}
.tg-otherfilters .tg-sortby{
padding-right: 75px;
position: relative;
}
.tg-otherfilters .tg-sortby span{
top: 0;
right: 0;
color: #666;
font-size: 16px;
font-weight: 500;
line-height: 40px;
position: absolute;
}
.tg-otherfilters .tg-sortby .tg-select{width: 100%;}
.tg-otherfilters .tg-inputwithicon .form-control{padding-left: 40px;}
.tg-otherfilters .tg-inputwithicon i{
right: auto;
left: 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
}
/* .tg-tablescroll{
width: 100%;
float:right;
overflow: hidden;
overflow-x: scroll;
} */
.tg-dashboardtable{margin: 0;}
.tg-dashboardtable thead tr th{
color: #363b4d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
text-align: right;
padding: 15px 10px;
background: #f7f7f7;
vertical-align: middle;
}
.tg-dashboardtable tbody tr[data-category=sold]{background: url(../images/pattern-01.png);}
.tg-dashboardtable tbody tr td{
text-align: right;
padding: 20px 10px;
}
.tg-dashboardtable thead tr th .tg-checkbox,
.tg-dashboardtable tbody tr td .tg-checkbox{
width: 20px;
height: 20px;
}
.tg-dashboardtable tbody tr td,
.tg-dashboardtable tbody tr td h3,
.tg-dashboardtable tbody tr td time{
color: #363b4d;
font-size: 15px;
font-weight: 500;
line-height: 20px;
}
.tg-dashboardtable tbody tr td time{
display: block;
min-width: 95px;
padding: 0 0 10px;
}
.tg-dashboardtable tbody tr td h3 + span,
.tg-dashboardtable tbody tr td time + span{
color: #666;
display: block;
font-size: 12px;
font-weight: 500;
line-height: 16px;
}
.tg-dashboardtable tbody tr td address{
margin: 0;
color: #666;
font-size: 13px;
line-height: 20px;
font-style: normal;
}
.tg-adcategories{
min-width: 110px;
display: block;
}
.tg-adstatus{
width: 80px;
color: #fff;
display: block;
font-size: 13px;
font-weight: 500;
line-height: 30px;
border-radius: 3px;
text-align: center;
text-transform: uppercase;
}
.tg-adstatusinactive{
color: #363b4d;
background: #f7f7f7;
}
.tg-adstatusinactive + em{
color: #666;
display: block;
padding: 5px 0 0;
font-size: 12px;
font-weight: 500;
line-height: 16px;
font-style: normal;
}
.tg-adstatusexpired{background: #fc9209;}
.tg-adstatusdeleted{background: #f91942;}
.tg-btnsactions{
min-width: 150px;
width: 100%;
float:right;
margin: -5px 0;
}
.tg-btnaction{
margin: 5px;
width: 40px;
height: 40px;
float:right;
color: #363b4d;
line-height: 40px;
border-radius: 5px;
background: #f7f7f7;
text-align: center;
}
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete{background: #f91942;}
.tg-dashboardtable tbody tr:hover .tg-btnactionview,
.tg-dashboardtable tbody tr:hover .tg-btnactionedit,
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete,
.tg-dashboardtable tbody tr:hover .tg-btnactionview i,
.tg-dashboardtable tbody tr:hover .tg-btnactionedit i,
.tg-dashboardtable tbody tr:hover .tg-btnactiondelete i{color: #fff;}
.tg-btnaction i{
display: block;
line-height: 40px;
}
.tg-dashboardtable tbody tr:hover{
-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.20);
}
/*==============================================
Dashboard My Favourites
==============================================*/
.tg-tagsold{
color: #fff;
width: 52px;
height: 24px;
display: block;
margin: 8px 0 0;
font-size: 12px;
font-weight: 500;
line-height: 24px;
text-align: center;
border-radius: 24px;
text-transform: capitalize;
}
.tg-myfavourites .tg-btnsactions{min-width: 105px;}
/*==============================================
Dashboard Payments
==============================================*/
.tg-expirynote{
width: 100%;
float:right;
}
.tg-expirynote .tg-description{padding: 0 0 30px;}
.tg-expirynote .tg-description p{margin: 0;}
.tg-btns{
width: 100%;
float:right;
}
.tg-expirynote .tg-btns .tg-btn{
width: 45%;
margin: 0;
padding: 0;
text-align: center;
}
.tg-btnrenew{background: #f91942 !important;}
.tg-btnrenew:before{display: none;}
.tg-btnallpackages{float: left;}
.tg-pkgexpirycounter{
width: 100%;
float:right;
}
.tg-pkgexpirycounter ul{
clear: both;
margin: -15px;
overflow: hidden;
list-style: none;
text-align: center;
}
.tg-pkgexpirycounter ul li{
width: 25%;
float:right;
padding: 15px;
list-style-type: none;
}
.tg-pkgexpirycounter ul li .tg-holder{
width: 100%;
float:right;
padding: 55px 30px;
background: #f7f7f7;
}
.tg-pkgexpirycounter ul li .tg-holder h3{
margin: 0 0 5px;
font-size: 50px;
font-weight: 400;
line-height: 40px;
}
.tg-pkgexpirycounter ul li .tg-holder h4{
margin: 0;
color: #666;
font-size: 20px;
font-weight: 500;
line-height: 23px;
}
/*==============================================
Dashboard Offer Messages
==============================================*/
.tg-offersmessageswithsearch ul li .tg-dashboardscrollbar{height: 558px;}
.tg-offersmessageswithsearch ul li:first-child .tg-dashboardscrollbar {height: 480px;}
.tg-offersmessageswithsearch ul li:last-child .tg-messages.tg-dashboardscrollbar { height: 397px; }
.tg-offersmessages fieldset{ padding: 0 0 20px; }
.tg-offersmessages fieldset .form-control{
z-index: 1;
height: 50px;
line-height: 30px;
position: relative;
padding: 10px 20px 10px 50px;
}
.tg-offersmessages fieldset .form-control + i{
top: 0;
left: 0;
z-index: 2;
width: 50px;
height: 50px;
font-size: 16px;
line-height: 50px;
position: absolute;
text-align: center;
}
| 0.382141 | 0.098816 |
.ke-text {
font-size: 12px;
font-family: "sans serif",tahoma,verdana,helvetica;
}
.ke-icon-source {
background-position: 0px 0px;
width: 16px;
height: 16px;
}
.ke-icon-print {
background-position: 0px -32px;
width: 16px;
height: 16px;
}
.ke-icon-undo {
background-position: 0px -48px;
width: 16px;
height: 16px;
}
.ke-icon-redo {
background-position: 0px -64px;
width: 16px;
height: 16px;
}
.ke-icon-cut {
background-position: 0px -80px;
width: 16px;
height: 16px;
}
.ke-icon-copy {
background-position: 0px -96px;
width: 16px;
height: 16px;
}
.ke-icon-paste {
background-position: 0px -112px;
width: 16px;
height: 16px;
}
.ke-icon-selectall {
background-position: 0px -128px;
width: 16px;
height: 16px;
}
.ke-icon-justifyleft {
background-position: 0px -144px;
width: 16px;
height: 16px;
}
.ke-icon-justifycenter {
background-position: 0px -160px;
width: 16px;
height: 16px;
}
.ke-icon-justifyright {
background-position: 0px -176px;
width: 16px;
height: 16px;
}
.ke-icon-justifyfull {
background-position: 0px -192px;
width: 16px;
height: 16px;
}
.ke-icon-insertorderedlist {
background-position: 0px -208px;
width: 16px;
height: 16px;
}
.ke-icon-insertunorderedlist {
background-position: 0px -224px;
width: 16px;
height: 16px;
}
.ke-icon-indent {
background-position: 0px -240px;
width: 16px;
height: 16px;
}
.ke-icon-outdent {
background-position: 0px -256px;
width: 16px;
height: 16px;
}
.ke-icon-subscript {
background-position: 0px -272px;
width: 16px;
height: 16px;
}
.ke-icon-superscript {
background-position: 0px -288px;
width: 16px;
height: 16px;
}
.ke-icon-title {
background-position: 0px -336px;
width: 25px;
height: 16px;
}
.ke-icon-fontname {
background-position: 0px -352px;
width: 21px;
height: 16px;
}
.ke-icon-fontsize {
background-position: 0px -368px;
width: 23px;
height: 16px;
}
.ke-icon-textcolor {
background-position: 0px -384px;
width: 20px;
height: 16px;
}
.ke-icon-bgcolor {
background-position: 0px -400px;
width: 20px;
height: 16px;
}
.ke-icon-bold {
background-position: 0px -416px;
width: 16px;
height: 16px;
}
.ke-icon-italic {
background-position: 0px -432px;
width: 16px;
height: 16px;
}
.ke-icon-underline {
background-position: 0px -448px;
width: 16px;
height: 16px;
}
.ke-icon-strikethrough {
background-position: 0px -464px;
width: 16px;
height: 16px;
}
.ke-icon-removeformat {
background-position: 0px -480px;
width: 16px;
height: 16px;
}
.ke-icon-image {
background-position: 0px -496px;
width: 16px;
height: 16px;
}
.ke-icon-flash {
background-position: 0px -512px;
width: 16px;
height: 16px;
}
.ke-icon-media {
background-position: 0px -528px;
width: 16px;
height: 16px;
}
.ke-icon-table {
background-position: 0px -560px;
width: 16px;
height: 16px;
}
.ke-icon-hr {
background-position: 0px -592px;
width: 16px;
height: 16px;
}
.ke-icon-emoticons {
background-position: 0px -608px;
width: 16px;
height: 16px;
}
.ke-icon-link {
background-position: 0px -624px;
width: 16px;
height: 16px;
}
.ke-icon-unlink {
background-position: 0px -640px;
width: 16px;
height: 16px;
}
.ke-icon-fullscreen {
background-position: 0px -656px;
width: 16px;
height: 16px;
}
.ke-icon-about {
background-position: 0px -672px;
width: 16px;
height: 16px;
}
.ke-icon-plainpaste {
background-position: 0px -704px;
width: 16px;
height: 16px;
}
.ke-icon-wordpaste {
background-position: 0px -720px;
width: 16px;
height: 16px;
}
.ke-container {
border: 1px solid #CCCCCC;
background-color: #F0F0EE;
table-layout: fixed;
overflow: hidden;
border-collapse:separate;
padding:0;
margin:0;
}
.ke-toolbar-outer {
border: 0;
padding: 0;
margin: 0;
}
.ke-toolbar {
width: 100%;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-toolbar td {
border:0;
padding: 2px 5px;
margin:0;
}
.ke-toolbar-table {
font-size: 0;
float: left;
clear: both;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-toolbar-table td {
border:0;
padding: 0;
margin:0;
}
.ke-toolbar-close {
display: block;
background-position: 0px -688px;
width: 16px;
height: 16px;
position: absolute;
margin: 10px 10px 5px 10px;
right: 0;
top: 0;
cursor: pointer;
background-image: url(./default/default.gif);
}
.ke-bottom-outer {
border: 0;
padding: 0;
margin: 0;
}
.ke-bottom {
width: 100%;
font-size: 0;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-bottom-left {
width: 100%;
cursor: s-resize;
border:0;
margin:0;
padding:0;
}
.ke-bottom-right {
cursor: se-resize;
border:0;
margin:0;
padding:0;
}
.ke-bottom-right-img {
display: block;
background-position: -4px -740px;
width: 12px;
height: 12px;
background-image: url(./default/default.gif);
}
.ke-textarea-outer {
border: 0;
padding: 0 5px;
margin: 0;
}
.ke-textarea-table {
width: 100%;
padding: 0;
margin: 0;
border: 1px solid #CCCCCC;
background-color: #FFFFFF;
border-collapse:separate;
}
.ke-textarea-table td {
border:0;
padding: 0 0 0 5px;
}
.ke-textarea {
width: 100%;
margin: 0;
padding: 0;
border: 0;
background-color: #FFFFFF;
color: #000000;
font-size: 12px;
font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
line-height: 18px;
overflow: auto;
}
.ke-iframe {
width: 100%;
margin: 0;
padding: 0;
border: 0;
background-color: #FFFFFF;
}
.ke-common-icon {
display: block;
background-repeat: no-repeat;
overflow: hidden;
}
.ke-common-icon-url {
background-image: url(./default/default.gif);
}
.ke-icon {
display: block;
border: 1px solid #F0F0EE;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-on {
display: block;
border: 1px solid #4086FF;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-selected {
display: block;
border: 1px solid #4086FF;
background-color: #DDDDDD;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-disabled {
display: block;
border: 1px solid #F0F0EE;
padding: 1px 2px;
margin: 1px;
cursor: default;
}
.ke-menu {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
text-align: left;
padding: 2px;
z-index: 19811214;
}
.ke-menu-noselected {
background-color: #F0F0EE;
color: #222222;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-menu-selected {
background-color: #4086FF;
color: #FFFFFF;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-contextmenu {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
padding: 2px;
text-align: left;
z-index: 19811214;
}
.ke-contextmenu-noselected {
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-contextmenu-selected {
background-color: #4086FF;
color: #FFFFFF;
font-size: 12px;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-dialog {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
text-align: left;
}
.ke-dialog-title {
background-color: #F0F0EE;
padding: 10px 10px 5px 10px;
color: #000000;
text-align: left;
font-size: 14px;
font-weight: bold;
cursor: move;
}
.ke-dialog-body {
margin: 10px;
}
.ke-dialog-iframe {
border: 1px solid #AAAAAA;
}
.ke-dialog-bottom {
font-size: 12px;
}
.ke-dialog-preview {
margin: 5px;
float: right;
}
.ke-dialog-yes {
margin: 5px;
float: right;
}
.ke-dialog-no {
margin: 5px 10px 5px 5px;
float: right;
}
.ke-mask {
position: absolute;
z-index: 19811212;
top: 0;
left: 0;
display: none;
background-color: #FFFFFF;
}
.ke-button {
background-color: #DDDDDD;
border-top: 2px solid #DDDDDD;
border-left: 2px solid #DDDDDD;
border-right: 2px solid #AAAAAA;
border-bottom: 2px solid #AAAAAA;
cursor: pointer;
font-size: 12px;
}
.ke-text-input {
background-color:#FFFFFF;
font-size: 12px;
}
.ke-picker-table {
margin:0;
padding:0;
border-collapse: separate;
}
.ke-picker-td {
width: 16px;
height: 14px;
font-size: 12px;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:0;
padding:0;
}
.ke-picker-td-top {
height: 14px;
font-size: 12px;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:0;
padding:0;
text-align: center;
}
.ke-loading-table {
margin:0;
padding:0;
border-collapse: separate;
}
.ke-loading-table td{
border:0;
margin:0;
padding:0;
font-size: 12px;
}
.ke-loading-img {
display: block;
background-repeat: no-repeat;
background-image: url(./common/loading.gif);
width: 16px;
height: 16px;
}
.ke-plugin-emoticons-table {
margin:0;
padding:0;
border-collapse:separate;
width:390px;
height:252px;
}
.ke-plugin-emoticons-td {
margin:0;
padding:1px;
border:1px solid #F0F0EE;
cursor:pointer;
}
.ke-plugin-emoticons-span {
display:block;
background-repeat:no-repeat;
overflow:hidden;
width:24px;
height:24px;
background-image:url(./../plugins/emoticons/qq.gif);
}
.ke-plugin-table-table {
margin:0;
padding:0;
border-collapse:separate;
}
.ke-plugin-table-td {
border:0;
margin:0;
padding:0;
}
.ke-plugin-table-td-bottom {
font-size:12px;
text-align:center;
height:20px;
border:0;
margin:0;
padding:0;
}
.ke-plugin-table-div {
border:1px solid #DDDDDD;
background-color:#FFFFFF;
cursor:pointer;
overflow:hidden;
margin:1px;
padding:0;
width:12px;
height:12px;
}
|
public/huy/js/skins/default.css
|
.ke-text {
font-size: 12px;
font-family: "sans serif",tahoma,verdana,helvetica;
}
.ke-icon-source {
background-position: 0px 0px;
width: 16px;
height: 16px;
}
.ke-icon-print {
background-position: 0px -32px;
width: 16px;
height: 16px;
}
.ke-icon-undo {
background-position: 0px -48px;
width: 16px;
height: 16px;
}
.ke-icon-redo {
background-position: 0px -64px;
width: 16px;
height: 16px;
}
.ke-icon-cut {
background-position: 0px -80px;
width: 16px;
height: 16px;
}
.ke-icon-copy {
background-position: 0px -96px;
width: 16px;
height: 16px;
}
.ke-icon-paste {
background-position: 0px -112px;
width: 16px;
height: 16px;
}
.ke-icon-selectall {
background-position: 0px -128px;
width: 16px;
height: 16px;
}
.ke-icon-justifyleft {
background-position: 0px -144px;
width: 16px;
height: 16px;
}
.ke-icon-justifycenter {
background-position: 0px -160px;
width: 16px;
height: 16px;
}
.ke-icon-justifyright {
background-position: 0px -176px;
width: 16px;
height: 16px;
}
.ke-icon-justifyfull {
background-position: 0px -192px;
width: 16px;
height: 16px;
}
.ke-icon-insertorderedlist {
background-position: 0px -208px;
width: 16px;
height: 16px;
}
.ke-icon-insertunorderedlist {
background-position: 0px -224px;
width: 16px;
height: 16px;
}
.ke-icon-indent {
background-position: 0px -240px;
width: 16px;
height: 16px;
}
.ke-icon-outdent {
background-position: 0px -256px;
width: 16px;
height: 16px;
}
.ke-icon-subscript {
background-position: 0px -272px;
width: 16px;
height: 16px;
}
.ke-icon-superscript {
background-position: 0px -288px;
width: 16px;
height: 16px;
}
.ke-icon-title {
background-position: 0px -336px;
width: 25px;
height: 16px;
}
.ke-icon-fontname {
background-position: 0px -352px;
width: 21px;
height: 16px;
}
.ke-icon-fontsize {
background-position: 0px -368px;
width: 23px;
height: 16px;
}
.ke-icon-textcolor {
background-position: 0px -384px;
width: 20px;
height: 16px;
}
.ke-icon-bgcolor {
background-position: 0px -400px;
width: 20px;
height: 16px;
}
.ke-icon-bold {
background-position: 0px -416px;
width: 16px;
height: 16px;
}
.ke-icon-italic {
background-position: 0px -432px;
width: 16px;
height: 16px;
}
.ke-icon-underline {
background-position: 0px -448px;
width: 16px;
height: 16px;
}
.ke-icon-strikethrough {
background-position: 0px -464px;
width: 16px;
height: 16px;
}
.ke-icon-removeformat {
background-position: 0px -480px;
width: 16px;
height: 16px;
}
.ke-icon-image {
background-position: 0px -496px;
width: 16px;
height: 16px;
}
.ke-icon-flash {
background-position: 0px -512px;
width: 16px;
height: 16px;
}
.ke-icon-media {
background-position: 0px -528px;
width: 16px;
height: 16px;
}
.ke-icon-table {
background-position: 0px -560px;
width: 16px;
height: 16px;
}
.ke-icon-hr {
background-position: 0px -592px;
width: 16px;
height: 16px;
}
.ke-icon-emoticons {
background-position: 0px -608px;
width: 16px;
height: 16px;
}
.ke-icon-link {
background-position: 0px -624px;
width: 16px;
height: 16px;
}
.ke-icon-unlink {
background-position: 0px -640px;
width: 16px;
height: 16px;
}
.ke-icon-fullscreen {
background-position: 0px -656px;
width: 16px;
height: 16px;
}
.ke-icon-about {
background-position: 0px -672px;
width: 16px;
height: 16px;
}
.ke-icon-plainpaste {
background-position: 0px -704px;
width: 16px;
height: 16px;
}
.ke-icon-wordpaste {
background-position: 0px -720px;
width: 16px;
height: 16px;
}
.ke-container {
border: 1px solid #CCCCCC;
background-color: #F0F0EE;
table-layout: fixed;
overflow: hidden;
border-collapse:separate;
padding:0;
margin:0;
}
.ke-toolbar-outer {
border: 0;
padding: 0;
margin: 0;
}
.ke-toolbar {
width: 100%;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-toolbar td {
border:0;
padding: 2px 5px;
margin:0;
}
.ke-toolbar-table {
font-size: 0;
float: left;
clear: both;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-toolbar-table td {
border:0;
padding: 0;
margin:0;
}
.ke-toolbar-close {
display: block;
background-position: 0px -688px;
width: 16px;
height: 16px;
position: absolute;
margin: 10px 10px 5px 10px;
right: 0;
top: 0;
cursor: pointer;
background-image: url(./default/default.gif);
}
.ke-bottom-outer {
border: 0;
padding: 0;
margin: 0;
}
.ke-bottom {
width: 100%;
font-size: 0;
padding:0;
margin:0;
border-collapse:separate;
}
.ke-bottom-left {
width: 100%;
cursor: s-resize;
border:0;
margin:0;
padding:0;
}
.ke-bottom-right {
cursor: se-resize;
border:0;
margin:0;
padding:0;
}
.ke-bottom-right-img {
display: block;
background-position: -4px -740px;
width: 12px;
height: 12px;
background-image: url(./default/default.gif);
}
.ke-textarea-outer {
border: 0;
padding: 0 5px;
margin: 0;
}
.ke-textarea-table {
width: 100%;
padding: 0;
margin: 0;
border: 1px solid #CCCCCC;
background-color: #FFFFFF;
border-collapse:separate;
}
.ke-textarea-table td {
border:0;
padding: 0 0 0 5px;
}
.ke-textarea {
width: 100%;
margin: 0;
padding: 0;
border: 0;
background-color: #FFFFFF;
color: #000000;
font-size: 12px;
font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
line-height: 18px;
overflow: auto;
}
.ke-iframe {
width: 100%;
margin: 0;
padding: 0;
border: 0;
background-color: #FFFFFF;
}
.ke-common-icon {
display: block;
background-repeat: no-repeat;
overflow: hidden;
}
.ke-common-icon-url {
background-image: url(./default/default.gif);
}
.ke-icon {
display: block;
border: 1px solid #F0F0EE;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-on {
display: block;
border: 1px solid #4086FF;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-selected {
display: block;
border: 1px solid #4086FF;
background-color: #DDDDDD;
padding: 1px 2px;
margin: 1px;
cursor: pointer;
}
.ke-icon-disabled {
display: block;
border: 1px solid #F0F0EE;
padding: 1px 2px;
margin: 1px;
cursor: default;
}
.ke-menu {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
text-align: left;
padding: 2px;
z-index: 19811214;
}
.ke-menu-noselected {
background-color: #F0F0EE;
color: #222222;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-menu-selected {
background-color: #4086FF;
color: #FFFFFF;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-contextmenu {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
padding: 2px;
text-align: left;
z-index: 19811214;
}
.ke-contextmenu-noselected {
background-color: #F0F0EE;
color: #222222;
font-size: 12px;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-contextmenu-selected {
background-color: #4086FF;
color: #FFFFFF;
font-size: 12px;
padding: 2px 30px 2px 10px;
cursor: pointer;
}
.ke-dialog {
position: absolute;
border-top: 1px solid #C5C5C5;
border-left: 1px solid #C5C5C5;
border-right: 1px solid #9F9F9F;
border-bottom: 1px solid #9F9F9F;
background-color: #F0F0EE;
color: #222222;
text-align: left;
}
.ke-dialog-title {
background-color: #F0F0EE;
padding: 10px 10px 5px 10px;
color: #000000;
text-align: left;
font-size: 14px;
font-weight: bold;
cursor: move;
}
.ke-dialog-body {
margin: 10px;
}
.ke-dialog-iframe {
border: 1px solid #AAAAAA;
}
.ke-dialog-bottom {
font-size: 12px;
}
.ke-dialog-preview {
margin: 5px;
float: right;
}
.ke-dialog-yes {
margin: 5px;
float: right;
}
.ke-dialog-no {
margin: 5px 10px 5px 5px;
float: right;
}
.ke-mask {
position: absolute;
z-index: 19811212;
top: 0;
left: 0;
display: none;
background-color: #FFFFFF;
}
.ke-button {
background-color: #DDDDDD;
border-top: 2px solid #DDDDDD;
border-left: 2px solid #DDDDDD;
border-right: 2px solid #AAAAAA;
border-bottom: 2px solid #AAAAAA;
cursor: pointer;
font-size: 12px;
}
.ke-text-input {
background-color:#FFFFFF;
font-size: 12px;
}
.ke-picker-table {
margin:0;
padding:0;
border-collapse: separate;
}
.ke-picker-td {
width: 16px;
height: 14px;
font-size: 12px;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:0;
padding:0;
}
.ke-picker-td-top {
height: 14px;
font-size: 12px;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:0;
padding:0;
text-align: center;
}
.ke-loading-table {
margin:0;
padding:0;
border-collapse: separate;
}
.ke-loading-table td{
border:0;
margin:0;
padding:0;
font-size: 12px;
}
.ke-loading-img {
display: block;
background-repeat: no-repeat;
background-image: url(./common/loading.gif);
width: 16px;
height: 16px;
}
.ke-plugin-emoticons-table {
margin:0;
padding:0;
border-collapse:separate;
width:390px;
height:252px;
}
.ke-plugin-emoticons-td {
margin:0;
padding:1px;
border:1px solid #F0F0EE;
cursor:pointer;
}
.ke-plugin-emoticons-span {
display:block;
background-repeat:no-repeat;
overflow:hidden;
width:24px;
height:24px;
background-image:url(./../plugins/emoticons/qq.gif);
}
.ke-plugin-table-table {
margin:0;
padding:0;
border-collapse:separate;
}
.ke-plugin-table-td {
border:0;
margin:0;
padding:0;
}
.ke-plugin-table-td-bottom {
font-size:12px;
text-align:center;
height:20px;
border:0;
margin:0;
padding:0;
}
.ke-plugin-table-div {
border:1px solid #DDDDDD;
background-color:#FFFFFF;
cursor:pointer;
overflow:hidden;
margin:1px;
padding:0;
width:12px;
height:12px;
}
| 0.326057 | 0.067886 |
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--soft-cyan: #66e2dc;
--soft-red: #fa7453;
--light-orange: #ffb964;
--light-grayish-orange:#fcfaf9;
--very-dark-black: #191826;
}
.logo {
margin: 3rem 0 0 7rem;
}
.container {
background-image: url('/starter-code/assets/bg-main-desktop.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}
.row {
display: flex;
flex-direction: row;
justify-content: space-around;
}
h1 {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 70px;
font-weight: 700;
margin: 12rem 0 0 7rem;
}
p {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 34px;
margin: 2rem 0 0 7rem;
}
/************* BLACK CARD SECTION ******************/
.dark_row {
background-color: var(--very-dark-black);
background-image: url('/starter-code/assets/bg-pattern-2.svg');
background-repeat: no-repeat;
background-position: top center;
width: 1110px;
height: 600px;
border-radius: 10px;
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 15rem 0 0 7rem;
}
.app {
width: 312px;
height: 642px;
margin-top: -12rem;
margin-left: 4rem;
}
/******** light orange premium card *********************/
.download_premium {
background-color: var(--soft-red);
border-radius: 10px;
width: 446px;
height: 625px;
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 4rem;
}
.download_premium h2 {
color: var(--light-grayish-orange);
margin: 1rem 0 0 4rem;
font-size: 40px;
}
.download_premium p {
color: var(--light-grayish-orange);
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
line-height: 26px;
margin-left: 4rem;
}
.download_premium span {
font-size: 40px;
font-weight: 600;
}
.download_premium a {
text-decoration: none;
margin-top: 2rem;
margin-left: 4rem;
padding-top: 20px;
}
.apple {
background-color: var(--very-dark-black);
color: var(--light-grayish-orange);
width: 333px;
height: 61px;
border-radius: 10px;
text-align: center;
margin-top: 1rem;
}
.icon-apple {
margin: -1px 10px;
}
.icon-android {
margin: -1px 10px;
}
.apple:hover {
background-color: var(--soft-cyan);
}
.android {
background-color: var(--light-grayish-orange);
color: var(--very-dark-black);
width: 333px;
height: 61px;
border-radius: 10px;
text-align: center;
margin-bottom: 2rem;
}
.android:hover {
background-color: var(--light-orange);
}
footer {
margin-top: 9rem;
}
.footer-logo {
margin-left: 1rem;
}
footer p {
margin-top: -0.3rem;
margin-left: -5rem;
}
footer span {
color: var(--very-dark-black);
font-weight: 700;
}
footer .social-icons {
margin: 0 10px;
}
footer .link:hover {
background-color: var(--soft-red);
color: var(--light-grayish-orange);
text-decoration: none;
}
.link .social-icons:hover {
color: var(--light-grayish-orange);
cursor: pointer;
}
@media (max-width: 900px) {
.container {
background-image: url('/starter-code/assets/bg-main-tablet.png');
background-repeat: no-repeat;
}
.pattern-1 {
width: 266.67px;
height: 400px;
}
.dark_row {
width: 696px;
height: 600px;
margin-left: 4rem;
}
.download_premium {
height: 546px;
width: 399px;
margin-left: -8rem;
}
.download_premium a {
margin-left: 2.5rem;
}
.app {
width: 270.21px;
height: 556px;
}
footer .row:nth-child(3) {
margin: 5rem 0 0 9rem;
}
footer .row {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.footer-logo {
margin-left: 4rem;
}
footer p {
margin-left: 4rem;
}
.social-icons {
float: right;
}
.icon-section {
float: right;
margin-top: -4rem;
margin-left: -5rem;
}
}
@media(max-width: 560px) {
.container {
background-image: url('/starter-code/assets/bg-main-mobile.png');
background-repeat: no-repeat;
}
.logo {
margin-left: 4rem;
}
h1 {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 58px;
font-weight: 700;
margin: 12rem 0 0 4rem;
}
p {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
line-height: 30px;
margin: 2rem 0 0 4rem;
}
.pattern-1 {
display: none;
}
.dark_row {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 375px;
height: 600px;
margin-left: 5rem;
}
.download_premium {
width: 375px;
height: 546px;
margin-left: 0.1rem;
}
.apple {
width: 296px;
height: 61px;
}
.android {
width: 296px;
height: 61px;
}
.app {
width: 208.97px;
height: 430px;
margin-top: 8rem;
margin-left: 1rem;
}
footer .row{
margin: 25rem 0 0 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer .footer-logo {
margin-bottom: 2rem;
margin-left: 1rem;
}
footer .social-icons {
margin-top: 7rem;
margin-right: -2rem;
margin-left: 4rem;
margin-bottom: 5rem;
}
}
|
Equalizer Landing Page/frontendmentor-equalizer-landing-page-main/starter-code/css/style.css
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--soft-cyan: #66e2dc;
--soft-red: #fa7453;
--light-orange: #ffb964;
--light-grayish-orange:#fcfaf9;
--very-dark-black: #191826;
}
.logo {
margin: 3rem 0 0 7rem;
}
.container {
background-image: url('/starter-code/assets/bg-main-desktop.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}
.row {
display: flex;
flex-direction: row;
justify-content: space-around;
}
h1 {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 70px;
font-weight: 700;
margin: 12rem 0 0 7rem;
}
p {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 34px;
margin: 2rem 0 0 7rem;
}
/************* BLACK CARD SECTION ******************/
.dark_row {
background-color: var(--very-dark-black);
background-image: url('/starter-code/assets/bg-pattern-2.svg');
background-repeat: no-repeat;
background-position: top center;
width: 1110px;
height: 600px;
border-radius: 10px;
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 15rem 0 0 7rem;
}
.app {
width: 312px;
height: 642px;
margin-top: -12rem;
margin-left: 4rem;
}
/******** light orange premium card *********************/
.download_premium {
background-color: var(--soft-red);
border-radius: 10px;
width: 446px;
height: 625px;
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 4rem;
}
.download_premium h2 {
color: var(--light-grayish-orange);
margin: 1rem 0 0 4rem;
font-size: 40px;
}
.download_premium p {
color: var(--light-grayish-orange);
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
line-height: 26px;
margin-left: 4rem;
}
.download_premium span {
font-size: 40px;
font-weight: 600;
}
.download_premium a {
text-decoration: none;
margin-top: 2rem;
margin-left: 4rem;
padding-top: 20px;
}
.apple {
background-color: var(--very-dark-black);
color: var(--light-grayish-orange);
width: 333px;
height: 61px;
border-radius: 10px;
text-align: center;
margin-top: 1rem;
}
.icon-apple {
margin: -1px 10px;
}
.icon-android {
margin: -1px 10px;
}
.apple:hover {
background-color: var(--soft-cyan);
}
.android {
background-color: var(--light-grayish-orange);
color: var(--very-dark-black);
width: 333px;
height: 61px;
border-radius: 10px;
text-align: center;
margin-bottom: 2rem;
}
.android:hover {
background-color: var(--light-orange);
}
footer {
margin-top: 9rem;
}
.footer-logo {
margin-left: 1rem;
}
footer p {
margin-top: -0.3rem;
margin-left: -5rem;
}
footer span {
color: var(--very-dark-black);
font-weight: 700;
}
footer .social-icons {
margin: 0 10px;
}
footer .link:hover {
background-color: var(--soft-red);
color: var(--light-grayish-orange);
text-decoration: none;
}
.link .social-icons:hover {
color: var(--light-grayish-orange);
cursor: pointer;
}
@media (max-width: 900px) {
.container {
background-image: url('/starter-code/assets/bg-main-tablet.png');
background-repeat: no-repeat;
}
.pattern-1 {
width: 266.67px;
height: 400px;
}
.dark_row {
width: 696px;
height: 600px;
margin-left: 4rem;
}
.download_premium {
height: 546px;
width: 399px;
margin-left: -8rem;
}
.download_premium a {
margin-left: 2.5rem;
}
.app {
width: 270.21px;
height: 556px;
}
footer .row:nth-child(3) {
margin: 5rem 0 0 9rem;
}
footer .row {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.footer-logo {
margin-left: 4rem;
}
footer p {
margin-left: 4rem;
}
.social-icons {
float: right;
}
.icon-section {
float: right;
margin-top: -4rem;
margin-left: -5rem;
}
}
@media(max-width: 560px) {
.container {
background-image: url('/starter-code/assets/bg-main-mobile.png');
background-repeat: no-repeat;
}
.logo {
margin-left: 4rem;
}
h1 {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 58px;
font-weight: 700;
margin: 12rem 0 0 4rem;
}
p {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
line-height: 30px;
margin: 2rem 0 0 4rem;
}
.pattern-1 {
display: none;
}
.dark_row {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 375px;
height: 600px;
margin-left: 5rem;
}
.download_premium {
width: 375px;
height: 546px;
margin-left: 0.1rem;
}
.apple {
width: 296px;
height: 61px;
}
.android {
width: 296px;
height: 61px;
}
.app {
width: 208.97px;
height: 430px;
margin-top: 8rem;
margin-left: 1rem;
}
footer .row{
margin: 25rem 0 0 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer .footer-logo {
margin-bottom: 2rem;
margin-left: 1rem;
}
footer .social-icons {
margin-top: 7rem;
margin-right: -2rem;
margin-left: 4rem;
margin-bottom: 5rem;
}
}
| 0.456894 | 0.08819 |
/*this is the area above entry tables, containing action button, view controls, drop-down find-in-table, etc.*/
.lotusui30 .lotusActionBar{margin-bottom:4px;/*this number works with the margin-top of the paging control to simulate 8px*/position:relative;float:right;width:100%;height:2.3em;/*this height accommodates the searchTab, if it is the only element in the action bar*/}
.lotusui30 .lotusActionBar2{margin-top:-25px;margin-bottom:4px;position:relative;float:right;width:100%;height:2.3em} /*use this in place of lotusActionBar when you want to compress the vertical space between the actionbar and the element(s) above it*/
/***********************************************************/
/*****************************/
/*** A C T I O N M E N U ***/
/*****************************/
.lotusui30 ul.lotusActionMenu{margin:0;padding:0;list-style-type:none;display:table;position:absolute;z-index:900px;border:1px solid #aaa;background-color:#fff;-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;}
.lotusui_ie6 .lotusui30 ul.lotusActionMenu{width:15em;}
.lotusui30 .lotusActionMenu li{white-space:nowrap;background-color:transparent;}
.lotusui_ie6 .lotusui30 .lotusActionMenu li{white-space:normal;}/*since we have a fixed width, we have to allow for wrapping*/
.lotusui30 .lotusActionMenu li.lotusSelected a{background-image:url(../../images/lotusSprite-8bit.png);background-position:96% -1865px;background-repeat:no-repeat;}
.lotusui30 .lotusActionMenu li.lotusMenuSeparator{border-top :1px solid #ccc;}
.lotusui30 .lotusActionMenu a{padding:3px 25px 5px 40px;text-decoration:none;display:block;}
.lotusui30 .lotusActionMenu a, .lotusui30 .lotusActionMenu a:link, .lotusui30 .lotusActionMenu a:visited{color:#000;background-color:#fff;}
.lotusui_ie6 .lotusui30 .lotusActionMenu a{zoom:1}
.lotusui30 .lotusActionMenu .lotusIcon a{padding-right:2px;}
.lotusui30 .lotusActionMenu .lotusIcon img{width:16px;height:16px;margin-left:6px;}
.lotusui30.lotusImagesOff .lotusActionMenu .lotusIcon img, .lotusImagesOff .lotusui30 .lotusActionMenu .lotusIcon img{display:inline-block;}
.lotusui30 .lotusActionMenu a:hover, .lotusui30 .lotusActionMenu a:focus, .lotusui30 .lotusActionMenu a:active{text-decoration:none;color:#000;background-color:#eee;}
.lotusui30 .lotusActionMenu.lotusPlain a{padding-right:10px;}
.lotusui30.lotusImagesOff .lotusActionMenu li.lotusSelected a, .lotusImagesOff .lotusui30 .lotusActionMenu li.lotusSelected a{padding-right:15px;}
.lotusui30.lotusImagesOff .lotusActionMenu a:visited, .lotusImagesOff .lotusui30 .lotusActionMenu a:visited, .lotusui30.lotusImagesOff .lotusActionMenu a:hover, .lotusImagesOff .lotusui30 .lotusActionMenu a:hover, .lotusui30.lotusImagesOff .lotusActionMenu a:focus, .lotusImagesOff .lotusui30 .lotusActionMenu a:focus, .lotusui30.lotusImagesOff .lotusActionMenu a:active, .lotusImagesOff .lotusui30 .lotusActionMenu a:active{text-decoration:underline;}
/***********************************************************/
/*** B R E A D C R U M B S ***/
/*these sit above the page header (lotusHeader)*/
.lotusui30 .lotusBreadcrumbs{margin:0 0 15px 0}
/***********************************************************/
/*NOTE: buttons have a lot of overrides to make them consistent across browsers and support deprecated versions. Be very careful when modifying this code - more code found in deprecated.css*/
/*** B U T T O N S ***/
/*all buttons*/
.lotusui30 .lotusBtn, .lotusui30 .lotusBtnImg{margin:0;/*reset to get rid of Safari 0em user agent style*/background-color:#f1f1f1;
background-image:-moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ebebeb));color:#000;
font-weight:bold;text-align:center;border:1px solid #aaa;}
.lotusui30 .lotusBtn{margin-left:5px;padding:2px 7px;font-size:.9em;cursor:pointer;}
/*browser adjustments*/
.lotusui_ie .lotusui30 .lotusBtn{padding:1px;/*adjustment for IE funky extra padding*/line-height:1.7em;/*fix for discrepancy in button tag height between buttons with and without an image*/}
.lotusui_ie .lotusui30 .lotusBtn img{margin:.5em 0 .3em 0;} /*need this for button with drop-down arrow to look okay in IE*/
/*adjustment to make input elements the same height as button elements*/
.lotusui_ie8 .lotusui30 input.lotusBtn{padding:3px 7px;}
.lotusui_ie9 .lotusui30 input.lotusBtn{padding:4px 7px;}
/*image buttons - an input type=image wrapped with a span or an img wrapped with a link*/
.lotusui30 .lotusBtnImg{padding:2px;/*default padding, which makes a 16 pixel icon if the image uses the default image size*/
display:-moz-inline-box;
display:inline-block;
vertical-align:top;/*to better align an image button with regular buttons when they are in a row*/
line-height:1;}
.lotusui30 .lotusBtnImg input{margin:0;width:16px;height:16px;background-repeat:no-repeat;vertical-align:middle;/*fixes IE6*/}/*default margin, padding and size*/
.lotusui_ie .lotusui30 .lotusBtnImg input{margin-top:-1px;}/*extra tweak to center image in IE*/
.lotusui30.lotusImagesOff .lotusBtnImg input, .lotusImagesOff .lotusui30 .lotusBtnImg input{display:none;}
/*disabled buttons*/
.lotusui30 .lotusBtnDisabled{color:#b0b0b0 !important;background-color:#eee !important;cursor:default !important;border-color:#ccc !important;}/*we don't want disabled button border color to change on hover*/
.lotusui30 .lotusBtnDisabled input{cursor:default !important;opacity:.3 !important;filter:alpha(opacity=30) !important;}/*disabled image buttons*/
/*for high contrast mode*/
.lotusui30.lotusImagesOff .lotusBtnDisabled, .lotusImagesOff .lotusui30 .lotusBtnDisabled{opacity:.5 !important;color:#000 !important;filter:alpha(opacity=50) !important;}
.lotusui30.lotusImagesOff .lotusBtnDisabled a.lotusAltText, .lotusImagesOff .lotusui30 .lotusBtnDisabled a.lotusAltText{text-decoration:none !important;cursor:default;}/*high contrast alt text - we don't want it to underline on hover and it doesn't inherit the lotusBtnDisabled cursor so we need to define it again.*/
/*miscellaneous*/
.lotusui30 .lotusBtnContainer{overflow:hidden;}/*put this around a bunch of "link" buttons*/
.lotusui30 .lotusBtnDivider{border-bottom:1px solid #e0e0e0;padding-bottom:5px;}/*add this as an additional class when you need a bottom divider for the buttons*/
/*generic/common buttons*/
/*put the style on the wrapper span along with the lotusBtnImg class*/
.lotusui30 .lotusAdd input{background-image:url(../../images/lotusHSprite-8bit.png);background-position:-519px -8px;opacity:0.45;filter:alpha(opacity=45)}
.lotusui30 .lotusClose input{width:16px;height:16px;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-555px -8px;opacity:0.45;filter:alpha(opacity=45)/*45% is the min opacity for meeting contrast requirements on white/off-white background*/;}
.lotusui30 .lotusAdd input:hover, .lotusui30 .lotusAdd input:focus, .lotusui30 .lotusAdd input:active, .lotusui30 .lotusClose input:hover, .lotusui30 .lotusClose input:focus, .lotusui30 .lotusClose input:active{opacity:0.55;filter:alpha(opacity=55);}
/*hover states*/
.lotusui30 .lotusBtn:hover, .lotusui30 .lotusBtn:focus, .lotusui30 .lotusBtn:active, .lotusui30 .lotusBtnImg:hover, .lotusui30 .lotusBtnImg:focus, .lotusui30 .lotusBtnImg:active{border-color:#666;}
/***********************************************************/
/*** C A L L O U T B O X ***/
/*This is the portable pull-quote/callout box area. It can be used on any page.*/
.lotusui30 .lotusAboutBox .lotusAboutText .lotusHeading{font-size:3em;font-weight:normal;line-height:1.2;}
.lotusui30 .lotusAboutBox .lotusAboutText .lotusHeading2{margin:3px 0 15px;font-size:1.5em;font-weight:normal;}
.lotusui30 .lotusAboutBox{padding-left:25px;padding-bottom:15px;position:relative;background-position:right top;background-repeat:repeat-x;overflow:hidden;min-height:160px;background-color:#eee;border:1px solid #ccc;}
.lotusui_ie .lotusui30 .lotusAboutBox{display:inline-block;}
.lotusui_ie6 .lotusui30 .lotusAboutBox{height:auto !important;height:160px;}
.lotusui30 .lotusAboutBox img{position:absolute;right:30px;top:22px;width:128px;height:128px;}
.lotusui30 .lotusAboutText{margin:22px 185px 20px 20px;}
.lotusui30 .lotusWelcomeBox{margin-right:-15px;margin-bottom:20px;padding:15px;position:relative;border:1px solid #ccc;overflow:hidden;zoom:1;background-color:#eee;}
.lotusui30 .lotusWelcomeBox .lotusHeading{margin:0 0 10px 25px;font-size:1.7em;font-weight:normal;line-height:1;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer{margin:15px 0 0 0;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer .lotusBtn{float:right;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer .lotusInlinelist li{border-width:0;}
.lotusui30 .lotusWelcomeBox p,
.lotusui30 .lotusWelcomeBox ul{margin-top:5px;margin-bottom:0;margin-left:0;}
.lotusui30 .lotusWelcomeBox ul.lotusInlinelist{float:right;} /*fixes alignment issues between button text and links*/
/***********************************************************/
/*** C L O S E B U T T O N ***/
.lotusui30 .lotusWelcomeBox .lotusClose{position:absolute;top:10px;left:12px;font-weight:bold;/*for HC mode*/}
.lotusui30.lotusImagesOff .lotusWelcomeBox, .lotusImagesOff .lotusui30 .lotusWelcomeBox,
.lotusui30.lotusImagesOff .lotusAboutBox, .lotusImagesOff .lotusui30 .lotusAboutBox{border:solid 1px #666;}
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a{text-decoration:none;}
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:hover, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:hover,
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:hover, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:hover,
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:active, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:active{text-decoration:underline} /*add .lotusui30 .lotusCalloutBox a when it's appropriate*/
/***********************************************************/
/*** C A P T I O N ***/
/*provides a gray background for a caption above another component*/
.lotusui30 .lotusCaption{margin-top:.2em;padding:2px 5px;height:2em;line-height:2;clear:both;text-align:center;background-color:#fafafa;border:1px solid #ccc;}
.lotusui30 .lotusCaption select{color:#666;}
/***********************************************************/
/*** C O M M E N T ***/
/*base post/comment styling*/
.lotusui30 .lotusPost{padding:7px 0 7px 7px;overflow:hidden;zoom:1;}
.lotusui30 .lotusPostAuthorInfo{display:block;float:right;font-size:0.9em;width:50px;}
.lotusui30 .lotusPostAuthorInfo .lotusPostAvatar{background-repeat:no-repeat;}
.lotusui30.lotusImagesOff .lotusPostAvatar, .lotusImagesOff .lotusui30 .lotusPostAvatar{display:none;}
.lotusui30 .lotusPost .lotusPostAuthorInfo .lotusMeta{margin:0;font-size:1em;}
.lotusui30 .lotusPostName{font-weight:bold;line-height:1.1;}
.lotusui30 .lotusPostAvatar{padding:4px 0;}/*bottom padding is for when comments don't have much text, like condensed comments, so the top and bottom padding matches*/
.lotusui30 .lotusPostContent{padding:0 0 7px 20px/*room for the delete icon*/;min-height:26px;position:relative;overflow:hidden;zoom:1;}
.lotusui_ie6 .lotusui30 .lotusPostContent{right:-3px;}/*to counteract the IE6 3px margin bug*/
.lotusui30 .lotusPostContent .lotusPostAction{margin-bottom:5px;}
.lotusui30 .lotusPostContent p:first-child{margin-top:0;}
.lotusui30 .lotusPost .lotusPostDetails{overflow:hidden;}
.lotusui30 .lotusPost .lotusTitle{font-size:1em;}
.lotusui30 .lotusPost .lotusPostObject{float:right;margin-left:10px;}
.lotusui30 .lotusPost .lotusPostContent .lotusIcon{margin-left:3px;}
.lotusui30 .lotusPost .lotusPostIndicator{position:absolute;top:-9999px;left:0;height:100%;}
.lotusui30 .lotusPost .lotusPostIndicator img{background-image: url("../../images/lotusHSprite-8bit.png"); background-repeat:no-repeat; background-position: -1206px -9px; height:14px; width:14px; opacity:0.45; filter:alpha(opacity=45);}
.lotusui30.lotusImagesOff .lotusPost .lotusPostIndicator img, .lotusImagesOff .lotusui30 .lotusPost .lotusPostIndicator img{display:none;}
.lotusui30 .lotusPost .lotusPostIndicator a{position:absolute; top:50%; left:0; margin-top:-7px;line-height:1em;}
.lotusui30 .lotusPost .lotusPostMore{position:relative;top:-9999px;}/*this hiding offscreen technique with position:relative simulates visibility:hidden but gets the text read by the screen reader*/
.lotusui30 .lotusPost .lotusPostInlineActions{margin-top:5px;}/*for inline actions in a post*/
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox{padding:5px;background-color:#fff;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox .lotusActionMessage{float:right;margin-left:15px;line-height:1.2;}
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox .lotusActions{margin:0;}
/*lotusPostHover needs to be assigned using javascript (there is an IE performance degradation if you use :hover declarations on non-links*/
.lotusui30 .lotusPost .lotusDelete{display:block;position:absolute;top:-9999px;left:0;line-height:1;}
.lotusui30 .lotusPost .lotusDelete img{opacity:0.45;filter:alpha(opacity=45);}
.lotusui30 .lotusPost .lotusDelete:hover img, .lotusui30 .lotusPost .lotusDelete:focus img, .lotusui30 .lotusPost .lotusDelete:active img{opacity:0.75;filter:alpha(opacity=75);}
.lotusui30 .lotusPostHover .lotusPostMore, .lotusui30 .lotusPostSelected .lotusPostMore, .lotusui30 .lotusPostHover .lotusPostIndicator, .lotusui30 .lotusPostSelected .lotusPostIndicator, .lotusui30 .lotusPostHover .lotusDelete, .lotusui30 .lotusPostSelected .lotusDelete{top:0;}
.lotusui_ie6 .lotusui30 .lotusPostHover .lotusPostIndicator, .lotusui_ie6 .lotusui30 .lotusPostSelected .lotusPostIndicator{top:2em;}
/*default definitions for a status update at the top of an activity stream*/
.lotusui30 .lotusAddComment{padding:4px;zoom:1;margin-bottom:10px;margin-left:4px;background-color:#E8EDF3;}
.lotusui30 .lotusAddComment a.lotusCommentInput{padding:2px 4px 10px 2px;border:1px solid #BDC7DB;background-color:#fff;display:block;}
/*update status "comment"*/
/*lotusUpdateStatus is an additional class along with lotusPost*/
.lotusui30 .lotusUpdateStatus{padding:3px 7px;background-color:#eee;}
.lotusui30.lotusImagesOff .lotusUpdateStatus, .lotusImagesOff .lotusui30 .lotusUpdateStatus{border-width:1px;border-style:solid;}
.lotusui30 .lotusUpdateStatus .lotusPostContent{padding-left:0;/*gets rid of spacing for delete icon*/}
.lotusui30 .lotusUpdateStatus .lotusPostDetails{margin:5px 10px 3px 0;}
.lotusui30 .lotusUpdateStatus .lotusPostStatusControl{margin-right:10px;background-color:#fff;}
.lotusui30 .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput{padding:4px;display:block;}
.lotusui30.lotusImagesOff .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput, .lotusImagesOff .lotusui30 .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput{border-width:1px;border-style:solid;}
/*COMMENT CONTAINERS*/
/* comment list */
.lotusui30 ul.lotusCommentList{margin:0;padding:0;list-style-type:none;}
.lotusui30 ul.lotusCommentList li{border-top-color:#e3e2e2;zoom:1;}
.lotusui_ie7 .lotusui30 ul.lotusCommentList .lotusCommentItem{display:inline;width:100%;vertical-align:bottom;}/*fixes a gap between list items when the post inside the li tag has an absolutely positioned delete button*/
.lotusui30 ul.lotusCommentList li.lotusCommentItem,
.lotusui30 ul.lotusCommentList > li{border-top-width:1px;border-top-style:solid;}/*the second definition is for any 2.1 code that was out there without the lotusCommentItem class*/
.lotusui_ie6 .lotusui30 ul.lotusCommentList li.lotusCommentItem li{border-top-width:0;}
.lotusui30 ul.lotusCommentList li.lotusFirst{border-top-width:0;}
/*these styles are overrides for an add comment integrated into the comment list*/
.lotusui30 .lotusCommentList li.lotusAddComment{margin:0;}
.lotusui30 .lotusCommentList li.lotusAddComment a{padding-bottom:2px;}
/*condensed comment list*/
/*(used for things like history in embedded experience*/
.lotusui_ie6 .lotusui30 .lotusCommentsCondensed .lotusCommentItem {position:relative;}
.lotusui30 .lotusCommentsCondensed .lotusPost{padding:5px 0;}
.lotusui30 .lotusCommentsCondensed .lotusPostAuthorInfo{width:auto;padding-left:10px;}
.lotusui30 .lotusCommentsCondensed .lotusPostAction{margin-left:9em;}
.lotusui30 .lotusCommentsCondensed .lotusPostContent{padding-left:0;position:relative;}
.lotusui30 .lotusCommentsCondensed .lotusPostContent .lotusMeta{position:absolute;top:0;left:0;}
.lotusui30 .lotusCommentsCondensed .lotusPostDetails{clear:both;width:98%;}
.lotusui30 .lotusCommentsCondensed .lotusPostDetails p{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis;}
/* board */
.lotusui_ie .lotusui30 .lotusBoard{zoom:1;position:relative;}/*to properly position board in IE7, ltr and rtl*/
.lotusui30 .lotusBoard .lotusPost{padding:10px 2px 15px 2px;border-top:1px solid #e3e2e2;}/*this accomodates older versions of posts on boards that aren't in a lotusStream wrapper*/
.lotusui30 .lotusBoard .lotusPost .lotusActions{margin-top:5px;}
/*an activity stream is an unordered list that exists on a board*/
.lotusui30 .lotusBoard .lotusStream{margin:0;padding:0;list-style-type:none;}
.lotusui30 .lotusBoard .lotusStream > li{border-top:1px solid #e3e2e2;}
.lotusui_ie7 .lotusui30 .lotusBoard .lotusStream > li{vertical-align:bottom;}/*fix a gap in IE7*/
.lotusui30 .lotusBoard .lotusStream > li:first-child{border-top-width:0;}
.lotusui30 .lotusBoard .lotusStream > li > .lotusAction{display:block;padding:10px;}
.lotusui30 .lotusBoard .lotusStream .lotusPost{padding:10px;border:0;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusStream .lotusPost{border-color:#fff;}
.lotusui30 .lotusBoard .lotusStream .lotusPostHover, .lotusui30 .lotusBoard .lotusStream .lotusPostSelected{background-color:#eee;cursor:pointer;}
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPost, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPost {margin:0 1px;} /*placeholder space for a border on hover/selected*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPostHover, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPostHover, .lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPostSelected, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPostSelected {margin:0; border-right:1px solid; border-left:1px solid;} /*add a border in high contrast*/
.lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPostHover{margin:1px;background-color:transparent;border-width:none;}/*reset for comment list posts in a stream - we don't want to change background color/border on hover*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusCommentList .lotusPost, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPost {margin:0;} /*take off placeholder space for border*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusCommentList .lotusPostHover, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPostHover {border:0;} /*take off the high contrast hover border for the comment list*/
/*graceful degradation for IE6*/
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPost{margin:0 1px 1px 1px;border-top:1px solid #e3e2e2;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPostHover, .lotusui_ie6 .lotusui30 .lotusBoard .lotusPostSelected{margin:0;border:1px solid #eee;}
.lotusui_ie6 .lotusui30 .lotusCommentList .lotusPost{border-top-width:0;}
/*end IE6 styling*/
.lotusui30 .lotusBoard .lotusPostContent{padding:0 0 0 15px;}
.lotusui30 .lotusBoard .lotusCommentList{position:relative;margin:3px 5px 0 0;padding:0;border-top:1px solid #ddd;clear:both;}
.lotusui30 .lotusBoard .lotusCommentList:after{content:"";position:absolute;top:-10px;right:53px;width:12px;height:12px;background:url(../../images/lotusSprite-8bit.png) 0 -2516px no-repeat;}
.lotusui30 .lotusBoard ul.lotusCommentList li.lotusCommentItem{margin:0;padding:0;background-color:#f2f2f2;border-width:0 1px 1px 1px;border-style:solid;border-color:#ddd;}
.lotusui30 .lotusBoard ul.lotusCommentList > li{margin:0;background-color:#f2f2f2;border-width:0 1px 1px 1px;border-style:solid;border-color:#ddd;} /* > li structure is to support markup that didn't have the lotusCommentItem class, as it should have. On separate line so IE6 reads lotusCommentItem styles*/
.lotusui30 .lotusBoard ul.lotusCommentList .lotusPost{padding:10px;border-width:0}/*reset the posts in a comment list*/
.lotusui30 .lotusBoard ul.lotusCommentList li.lotusCommentItem .lotusPost, .lotusui30 .lotusBoard ul.lotusCommentList > li .lotusPost{margin:0;}
.lotusui30 .lotusBoard .lotusCommentList .lotusAddComment{position:relative;top:-9999px;padding:0;background-color:transparent;border-width:0/*to reset the > li border definitions*/;}
.lotusui30 .lotusBoard .lotusPostHover .lotusCommentList .lotusAddComment, .lotusui30 .lotusBoard .lotusPostSelected .lotusCommentList .lotusAddComment{top:-1px;}
.lotusui30 .lotusBoard .lotusAddComment a.lotusCommentInput{display:block;padding:5px 10px;color:#666;}
.lotusui30 .lotusBoard .lotusCommentItem > .lotusMeta{display:block;padding:5px 10px;}/*this makes both a link or a span/div classed with lotusMeta work*/
.lotusui30 .lotusBoard .lotusCommentItem > a.lotusMeta{color:#1970B0;}/*we want the link to use the link color and lotusMeta to control the size/padding*/
/* IE6 workaround for child selector */
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem .lotusMeta{display:block;padding:5px 10px;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem a.lotusMeta{color:#1970B0;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem .lotusPost .lotusMeta{display:inline;padding:0;}
/*end IE6 workaround*/
.lotusui30 .lotusBoard .lotusPostAuthorInfo{width:auto;padding:0 5px 0 15px;}
.lotusui30 .lotusBoard .lotusPost .lotusPerson { font-weight:bold; padding-left:2px; }
.lotusui30 .lotusBoard .lotusPost .lotusPostAction .lotusPerson{padding-left:0;}/*a person name in an the post action is in a sentence so shouldn't have right padding*/
/*the controls on an activity stream page*/
/*lotusStreamUpdate is an additional class along with lotusForm2*/
.lotusui30 .lotusBoard .lotusStreamUpdate{overflow:hidden;}
.lotusui30 .lotusBoard .lotusCommentList .lotusStreamUpdate{background:none;}
.lotusui30 .lotusBoard .lotusStreamUpdate label{font-weight:bold;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusFieldEmphasis{background-color:#fff;
-moz-box-shadow: 0 4px 4px #f3f3f3 inset;
-webkit-box-shadow: 0 4px 4px #f3f3f3 inset;
box-shadow: 0 4px 4px #f3f3f3 inset;}/*shadow must be 1px bigger because of the overlapping textarea border*/
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusFieldEmphasis{border:1px solid #ddd;padding:5px;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{width:100%;height:5em;padding:5px;margin:0;display:block;background:none;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;}
.lotusui30.lotusImagesOff .lotusBoard .lotusStreamUpdate .lotusText, .lotusImagesOff .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{background:#fff;}/*textarea border does not show in firefox high contrast with transparent background*/
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusTextCollapsed.lotusText{height:2.25em;border-color:#ddd;}
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText.lotusTextCollapsed{height:1.25em;}
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{border:0;padding:0;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusActions{margin-top:5px;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusActions .lotusInlinelist.lotusRight li{padding:0 7px 0 0;margin-right:7px;}/*only want to do this for the actions that are aligned right, to make the right edge flush with the status input box*/
.lotusui30 .lotusBoard .lotusPaging.lotusPagingTop{margin-top:10px;margin-bottom:0;}/*because IE6 reads the last class, don't do anything if there isn't lotusPagingTop*/
.lotusui30 .lotusBoard .lotusPaging .lotusSelected{font-weight:bold;color:#222;}
.lotusui30 .lotusBoard .lotusPaging option.lotusMenuSeparator{border-top:1px solid #ccc;}/*options can't be styled in IE*/
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPaging select{margin:0;}/*so borders don't get cut off*/
.lotusui_ie .lotusui30 .lotusBoard .lotusPaging select{font-size:1em;}
/*feeds for an activity stream*/
.lotusui30 .lotusBoard .lotusFeeds{margin-top:8px;}
.lotusui30 .lotusBoard .lotusFeeds a.lotusFeed{margin-left:0;}
/*discussion forum*/
.lotusui30 .lotusForum .lotusPost{margin:7px 0;background-color:#ccc;}
.lotusui30.lotusImagesOff .lotusForum .lotusPost, .lotusImagesOff .lotusui30 .lotusForum .lotusPost{border-width:1px;border-style:solid;}
.lotusui30 .lotusForum .lotusPostAuthorInfo{width:100px;text-align:center;}
.lotusui30 .lotusForum .lotusPostAuthorInfo .lotusPostAvatar{background:url(../../images/lotusSprite-8bit.png) 0 -2006px no-repeat;}
.lotusui30 .lotusForum .lotusPostContent{padding:7px 15px;background-color:#fff;}
.lotusui30 .lotusForum .lotusPostContent .lotusTitle{font-size:1.2em;font-weight:bold;}
.lotusui30 .lotusForum ul.lotusCommentList .lotusPost{background-color:#eee;}
.lotusui30 .lotusForum ul.lotusCommentList li.lotusCommentItem{border-width:0;}
.lotusui30 .lotusForum ul.lotusCommentList .lotusChild{margin-right:0;padding-right:20px;list-style-type:none;background: url(../../images/commentIndent_rtl.png) right top no-repeat;}/*we can't use a sprite for this graphic because the size of posts are erratic and the rest of the sprite would bleed through*/
.lotusui30 .lotusForum .lotusPostDetails{padding:5px 0;}
.lotusui30 .lotusForum .lotusPostDetails blockquote{margin:4px 0;padding:4px 8px;width:75%;color:#545454;background-color:#eee;border-width:1px 3px 1px 1px;border-style:solid;border-color:#ccc;}
/*simple comment bubble*/
/*these styles are NOT an extension of lotusPost*/
.lotusui30 .lotusCommentBubble{padding-top:10px;background:url(../../images/lotusSprite-8bit.png) 90% -2869px no-repeat;zoom:1;}
.lotusui30 .lotusCommentBubbleBody{padding:5px 15px 5px 10px;background-color:#eee;}
.lotusui30.lotusImagesOff .lotusCommentBubbleBody, .lotusImagesOff .lotusui30 .lotusCommentBubbleBody{border-width:1px;border-style:solid;}
/***********************************************************/
/*** D I A L O G ***/
/*this can be wrapped in a dojo dialog, if desired, which gives you the lightbox behavior for free, else, wrap it in a div assigned the class lotusDialogWrapper*/
.lotusui30 .lotusDialogWrapper {position:absolute;}
.lotusui_ie6 .lotusui30 .lotusDialogWrapper {width:525px;}/*this used to be 500px, the extra 25px is to accommodate forms with left labels*/
.lotusui30 .lotusDialogBorder {border:1px solid #999;
-moz-box-shadow:0 3px 7px #999;
-webkit-box-shadow:0 3px 7px #999;
box-shadow:0 3px 7px #999}
.lotusui30 .lotusDialogBorder .lotusDialog {background-color:#fff;}
.lotusui30 .lotusDialog .lotusDialogHeader {border-bottom:1px solid #ccc; padding:15px 20px; background-color:#fafafa;
background-image:-moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));}
.lotusui30 .lotusDialog .lotusHeading {font-size:1.5em; font-weight:bold; margin-left:30px;}
.lotusui30 .lotusDialog .lotusHeading {background:none; border:0; padding:0;} /*overriding deprecated css*/
/* close icon */
.lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose {padding:3px; border:1px solid #aaa; line-height:1em; position:absolute; top:15px; left:15px;}
.lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose img {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-555px -8px; width:16px; height:16px;} /*don't use opacity here because the gen3 image has partial transparency and IE can't handle opacity overrides when there is transparency*/
.lotusui30.lotusImagesOff .lotusDialog .lotusDialogHeader .lotusDialogClose img, .lotusImagesOff .lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose img {display:none;}
.lotusui30 .lotusDialog .lotusFormTable, .lotusui30 .lotusDialog .lotusFormTable td, .lotusui30 .lotusDialog .lotusDialogContent {padding:15px 20px; max-height:300px; overflow:auto; border-bottom:1px solid #aaa;}
.lotusui_ie .lotusui30 .lotusDialog .lotusDialogContent{position:relative; overflow-x:hidden;} /*position:relative is needed to make sure relatively positioned elements within a scrolled div scroll properly - otherwise they act like fixed-position elements. overflow-x:hidden is needed to prevent the horizontal scrollbar from appearing because of the position:relative.*/
.lotusui_ie6 .lotusui30 .lotusDialog .lotusDialogContent {height:expression(this.scrollHeight > 299 ? "300px" : "auto");}
.lotusui30 .lotusDialog .lotusHeading2 {margin:0 0 5px; font-size:1.2em; font-weight:bold;}
.lotusui30 .lotusDialog .lotusHeading2 {background:none; border:0; color:#444; padding:0; text-shadow:none;} /*overriding deprecated css*/
.lotusui30 .lotusDialog .lotusDialogFooter {background-color:#eaecee; padding:12px 15px; text-align:left;}
.lotusui30 .lotusDialogFooter .lotusBtn {margin-right:5px;}
.lotusui30 .lotusDialog td.lotusFormLabel {vertical-align:top;}
.lotusui30 .lotusDialog.lotusForm2 .lotusFormField:last-child {margin-bottom:0;} /*this CSS3 pseudo class is only supported in modern browsers (and not IE) which makes the multiple class selector okay to use here*/
/*overrides for forms in dialogs*/
/*we need this to keep the error icon on the same line as the form field in all browsers*/
.lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {min-width:310px;}
/*this is to fix display issues in IE7 & IE8 compatability mode, rtl languages*/
.lotusui_ie7 .lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {width:310px;}
.lotusui_ie6 .lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {width:460px;}
/* for lightbox */
.lotusui30 .lotusOverlay {display:none; position:absolute; top:0; right:0; width:100%; background-color:#000; opacity:0.3; filter: alpha(opacity=30);}
/*override for tag cloud*/
.lotusui30 .lotusDialog .lotusTagCloud ul li {margin-bottom:3px; list-style:none;}
/***********************************************************/
/***************************************/
/*** D I S P L A Y C O N T R O L S ***/
/***************************************/
.lotusui30 .lotusViewControl{display:table;}
.lotusui30 .lotusViewControl span{margin:5px 10px 0 0;float:right;}/*styles for the text preceeding the control*/
.lotusui30 .lotusViewControl div{padding:1px;border:1px solid #ccc;display:table;background-color:#f1f1f1;
background-image:-moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);background-image:-webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ebebeb));background-position:top left;zoom:1;}
.lotusui30.lotusImagesOff .lotusViewControl div, .lotusImagesOff .lotusui30 .lotusViewControl div{border-width:0;}
.lotusui30 .lotusViewControl td{vertical-align:middle;padding:0 2px 0 0;}
.lotusui30 .lotusViewControl td div{display:-moz-inline-box;display:inline-block;overflow:hidden;}
.lotusui30.lotusImagesOff .lotusViewControl td div, .lotusImagesOff .lotusui30 .lotusViewControl td div{overflow:visible;}
.lotusui30 .lotusViewControl .lotusView{padding:0;width:18px;height:18px;display:block;float:right;background-image:url(../../images/lotusHSprite-8bit.png);background-repeat:no-repeat;}
.lotusui30 .lotusDetailsOff {background-position:-351px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusDetailsOn {background-position:-351px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusSummaryOff {background-position:-395px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusSummaryOn {background-position:-395px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusTreeOff {background-position:-439px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusTreeOn {background-position:-439px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusTileOff {background-position:-417px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusTileOn {background-position:-417px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusFolderOff {background-position:-373px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusFolderOn {background-position:-373px -7px;background-color:#fff;margin:0;border:1px solid #444;}
/*accessibility*/
.lotusui30.lotusImagesOff .lotusViewControl .lotusView, .lotusImagesOff .lotusui30 .lotusViewControl .lotusView{width:auto;height:auto;}
.lotusui30.lotusImagesOff .lotusViewControl .lotusView span, .lotusImagesOff .lotusui30 .lotusViewControl .lotusView span{margin:0 5px;}
.lotusui30.lotusImagesOff .lotusViewControl a.lotusSelected:hover, .lotusImagesOff .lotusui30 .lotusViewControl a.lotusSelected:hover, .lotusui30.lotusImagesOff .lotusViewControl a.lotusSelected:focus, .lotusImagesOff .lotusui30 .lotusViewControl a.lotusSelected:focus{cursor:default;text-decoration:none;}
.lotusui30.lotusImagesOff .lotusViewControl .lotusSelected .lotusAltText, .lotusImagesOff .lotusui30 .lotusViewControl .lotusSelected .lotusAltText{font-weight:bold;}
/***********************************************************/
/*** F E E D S **/
/*the feed links under the content*/
.lotusui30 .lotusFeeds{margin:5px 10px;}
.lotusui30 .lotusFeeds a.lotusFeed{padding-right:16px;margin-left:7px;background:url(../../images/lotusSprite-8bit.png) 100% -3177px no-repeat;display:-moz-inline-box;display:inline-block;zoom:1;min-height:12px/*ff2 fix*/}
.lotusui30.lotusImagesOff .lotusFeeds a.lotusFeed, .lotusImagesOff .lotusui30 .lotusFeeds a.lotusFeed{padding-right:0}
/***********************************************************/
/*** F I L T E R S **/
/*the filter links that are removable*/
.lotusui30 .lotusFilters2{font-size:.9em;line-height:1.4;margin:1px 0 5px 0;}
.lotusui30 .lotusFilters2 .lotusInlinelist{display:inline;}
.lotusui30 .lotusFilters2 .lotusInlinelist li{margin:0;padding:0 3px;border-width:0;}/*this is added for accessibility only (screen readers) so we want no visuals, however, margin from links (adjusted) needs to be transferred to padding on li tags for proper spacing*/
.lotusui30 .lotusFilters2 .lotusInlinelist:first-child li:first-child{padding-right:0;}/*this fix for proper edge alignment isn't perfect if the first inline list is preceded by text and there is a second inline list preceded by text (the spacing between the text and filters is different for each), otherwise, you don't really know the spacing isn't intentional.*/
.lotusui30 .lotusFilters2 .lotusInlinelist li a.lotusFilter{margin:0;}
.lotusui30 .lotusFilters2 a.lotusFilter{line-height:1.4;margin:0 2px;padding:1px 5px 1px 0;display:inline-block;white-space:nowrap;border:1px solid #999999;background-color:#fafafa;}
.lotusui30 .lotusFilters2 a.lotusFilter:first-child{margin-right:0;}/*proper edge aligment*/
.lotusui30 .lotusFilters2 a.lotusFilter, .lotusui30 .lotusFilters2 a.lotusFilter:hover, .lotusui30 .lotusFilters2 a.lotusFilter:focus{text-decoration:none;}
.lotusui30 .lotusFilters2 img.lotusDelete{margin:0 5px;vertical-align:baseline;}
.lotusui_ie .lotusui30 .lotusFilters2{vertical-align:middle;}
.lotusui_ie7 .lotusui30 .lotusFilters2 a.lotusFilter{margin-top:2px;margin-bottom:4px;vertical-align:middle;}
.lotusui_ie6 .lotusui30 .lotusFilters2 a.lotusFilter{margin-top:3px;margin-bottom:3px;padding-top:2px;padding-bottom:2px;vertical-align:middle;}
/*some additional items for filters under a header*/
.lotusui30.lotusImagesOff .lotusFilters2 img.lotusDelete, .lotusImagesOff .lotusui30 .lotusFilters2 img.lotusDelete{display:none;}
.lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter .lotusAltText, .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter .lotusAltText{margin:0 5px;}
.lotusui30 .lotusFilters2 .lotusDivider{margin:0 2px 0 5px;}/*accounts for the right margin on the last filter*/
.lotusui30 .lotusFilters2 a.lotusFilter + .lotusDivider{margin-right:5px;}
.lotusui30 .lotusFilters2 .lotusIcon{vertical-align:top;}
.lotusui_ie .lotusui30 .lotusFilters2 .lotusIcon{vertical-align:middle;}
.lotusui30 .lotusFilters2 a.lotusIcon:hover, .lotusui30 .lotusFilters2 a.lotusIcon:focus{text-decoration:none;}
.lotusui30 .lotusFilters2 a.lotusAction{font-size:1em;}
/* Make the X show up on the left side */
.lotusui_ie .lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter, .lotusui_ie .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter{padding-right:5px;}
.lotusui_ie .lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter .lotusAltText, .lotusui_ie .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter .lotusAltText{margin-left:0;}
.lotusui_ie .lotusui30 .lotusFilters2 a.lotusFilter img.lotusDelete,
.lotusui_ie .lotusui30 .lotusFilters2 a.lotusFilter span.lotusAltText{unicode-bidi: bidi-override;direction: rtl;}
.lotusui30 .lotusFilters2 a.lotusFilter img.lotusDelete:before, .lotusui30 a.lotusFilter span.lotusAltText:before{content: "\200F";}
/*** F L Y O U T **/
/*The flyout extends from a UI component to provide a preview or additional content*/
.lotusui30 .lotusFlyout {border:1px solid #aaa; background:#fff;
-moz-border-radius:13px;
-webkit-border-radius:13px;
border-radius:13px;
-moz-box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
-webkit-box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
}
.lotusui30 .lotusFlyout .lotusWrapper {overflow:hidden;} /*for the inset shadow on the header*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader {padding:13px 20px; font-size:0.9em;}
.lotusui30.lotusImagesOff .lotusFlyout .lotusFlyoutHeader, .lotusImagesOff .lotusui30 .lotusFlyout .lotusFlyoutHeader {border-bottom:1px solid #ccc;} /*because the header only has a background color*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusInlinelist {margin-left:20px;} /*to make room for the close icon*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusMeta {font-size:1em;}
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusPerson {font-weight:bold;}
.lotusui30 .lotusFlyout .lotusClose {position:absolute; top:10px; left:10px; line-height:0.5/*to keep the click target square*/;}
.lotusui30 .lotusFlyout .lotusFlyoutContent {overflow-y:auto; margin-bottom:10px; position:relative/*for IE6/7*/;}
.lotusui_ie .lotusui30 .lotusFlyout .lotusFlyoutContent, .lotusui_ie8 .lotusui30 .lotusFlyout .lotusFlyoutContent {margin-bottom:0;} /*because IE6-8 don't have rounded corners*/
.lotusui30 .lotusFlyout .lotusFlyoutContentArea {padding:0 10px 10px; zoom:1;}
.lotusui30 .lotusFlyoutConnector {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-1090px -9px; width:8px; height:15px; position:absolute;}
/*the following styles are scoped to lotusFlyoutInner because they are in an iFrame*/
.lotusui30 .lotusFlyoutInner {padding:0 10px;}
.lotusui_ie6 .lotusui30 .lotusFlyoutInner .lotusHideOverflow {zoom:1;}
.lotusui30 .lotusFlyoutInner .lotusHeadingChunk {font-size:1.5em; line-height:1.2; margin-bottom:15px; clear:both;}
.lotusui30 .lotusFlyoutInner .lotusHeading2Chunk {font-size:1.5em; line-height:1.2; margin-bottom:15px; clear:both;} /*smaller text size when it is a status message with a file*/
.lotusui30 .lotusFlyoutInner .lotusHeading {font-size:1em; font-weight:normal; display:inline;}
.lotusui30 .lotusFlyoutInner .lotusHeading img {vertical-align:baseline; margin-left:5px;}
.lotusui_ie .lotusui30 .lotusFlyoutInner .lotusHeadingAction {margin-right:5px;}
.lotusui30 .lotusFlyoutInner .lotusHeadingAction img {vertical-align:baseline;}
.lotusui30 .lotusFlyoutInner .lotusFlyoutImage {float:right; padding:5px 0 15px 20px;}
.lotusui30 .lotusFlyoutInner .lotusDivider{margin:0 5px;color:#666;}
/* overrides */
.lotusui30 .lotusFlyoutInner .lotusChunk {margin-top:0; margin-bottom:15px;}
.lotusui30 .lotusFlyoutInner .lotusStatus {font-size:1.1em; font-style:italic; color:#444; font-family:Georgia, Tahoma, "Times New Roman", serif;}/*make sure this goes after lotusChunk*/
.lotusui30 .lotusFlyoutInner .lotusLike {position:relative;}/*for IE6/7*/
.lotusui30 .lotusFlyoutInner .lotusCommentList {margin:10px 0 0;}
.lotusui30 .lotusFlyoutInner .lotusBoard .lotusCommentList .lotusAddComment {top:-1px;}
.lotusui30 .lotusFlyoutInner .lotusBoard .lotusCommentList:after {background:none;}
.lotusui30 .lotusFlyoutInner .lotusForm2 {background-color:#f2f2f2;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormTitle {padding:15px;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusHeading2 {color:#222; font-size:1.3em;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormBody {padding:0 15px 10px;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter {margin:0 15px; overflow:hidden; padding:10px 0; border-top:1px dotted #aaa; background:none;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter li {margin-right:7px; padding:0 7px 0 0;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter li.lotusFirst {margin-right:0; padding-right:0;}
/***********************************************************/
/*** F O R M S ***/
/*these styles are for inline and popup forms*/
/*new, div-based form, labels on top or left*/
.lotusui30 .lotusForm2{margin:0;padding:0;zoom:1;background-color:transparent;}
.lotusui30 .lotusForm2 .lotusMessage2{top:20px;margin:20px;}/*global error messages*/
.lotusui30 .lotusForm2 .lotusFormTitle{padding:15px 20px}
.lotusui30 .lotusForm2 .lotusFormBody{padding:0 20px 10px;}
.lotusui30 .lotusForm2 .lotusFormTitle .lotusHeading{font-size:1.3em;font-weight:bold;color:#222;}/*extra specificity here so if the form sits in a table it doesn't use the table lotusHeading size*/
.lotusui_ie .lotusui30 .lotusForm2 .lotusFormTitle .lotusHeading{float:none;/*override for when form is in a section*/}
.lotusui30 .lotusForm2 .lotusFormTitle .lotusMeta{font-size:1em;}
.lotusui30 .lotusForm2 label, .lotusui30 .lotusForm2 .lotusFormLabel{display:block;margin-bottom:3px;color:#222;}/*lotusFormLabel is used when you want text that looks like a label but isn't really. Chances are you would use a section header or fieldset legend instead, but this gives you another option*/
.lotusui_ie8 .lotusui30 .lotusForm2 label .lotusIcon img,
.lotusui_ie8 .lotusui30 .lotusForm2 .lotusFormLabel .lotusIcon img,
.lotusui_ie9 .lotusui30 .lotusForm2 label .lotusIcon img,
.lotusui_ie9 .lotusui30 .lotusForm2 .lotusFormLabel .lotusIcon img{vertical-align:text-top;}/*better alignment than the icon hanging below the label which middle alignment does*/
.lotusui30 .lotusForm2 .lotusFormRequired{margin-left:3px;}
.lotusui30 .lotusForm2 fieldset{margin:0;padding:0;border-width:0;min-width:271px;float:right;}/*this allows us to use fieldsets for non-sighted users, only*/
.lotusui30 .lotusForm2 .lotusFieldset{padding:0 5px 5px 5px;border:1px solid #aaa;}/*assign this to a fieldset you want to display*/
.lotusui30 .lotusForm2 fieldset legend{padding-left:0;padding-right:0;margin-bottom:2px;color:#222;font-weight:normal;}
.lotusui30 .lotusForm2 .lotusFieldset legend{padding-left:2px;padding-right:2px;}
/*adjustments to checkbox/radio buttons for better x-browser alignment*/
.lotusui30 .lotusForm2 input.lotusCheckbox{width:13px;height:13px;margin:0 0 0 3px;padding:0;vertical-align:bottom;position:relative;top:-2px;}
.lotusui_ie .lotusui30 .lotusForm2 input.lotusCheckbox{top:-5px;margin-left:6px;}
.lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox{top:-2px;}
.lotusui_ie9 .lotusui30 .lotusForm2 input.lotusCheckbox{top:-2px;}
.lotusui30 .lotusForm2 label.lotusCheckbox{display:inline;}/*use for radio buttons, too*/
.lotusui30 .lotusForm2 .lotusFormField{margin-bottom:10px;overflow:hidden;clear:both;zoom:1;}
.lotusui30 .lotusForm2 .lotusFormField .lotusMeta{margin-top:5px;}
.lotusui30 .lotusFormField .lotusFieldWrapper{float:right;/*this is to allow an error or help icon to align top*/}
.lotusui30 .lotusForm2 fieldset .lotusFieldWrapper{float:none;}
.lotusui30 .lotusForm2 .lotusText, .lotusui30 .lotusForm2 textarea, .lotusui30 .lotusForm2 select{width:275px;border:1px solid #aaa;padding:3px;}
.lotusui30 .lotusForm2 textarea.lotusText{overflow:auto;}/*removes textarea scrollbars in IE unless they are needed*/
.lotusui30 .lotusForm2 select{padding:1px 0;width:283px;}/*reset this to look better*/
.lotusui30 .lotusForm2 .lotusFormFooter{padding:10px 20px;background-color:#eee;}
.lotusui30 .lotusForm2 .lotusFormFooter .lotusBtn{margin-left:10px;}
.lotusui_ie .lotusui30 .lotusForm2 .lotusBtn{padding:1px 7px;width:auto;overflow:visible;}/*IE button padding hack (and reset button padding from default)*/
.lotusui_ie7 .lotusui30 .lotusForm2 input.lotusCheckbox{margin-right:-3px}/*fixes IE 3px margin jog bug - we aren't fixing in IE6 or IE8 because the checkboxes are different from the radio buttons in left alignment and this fix brings the checkbox too far to the left*/
.lotusui_ie .lotusui30 .lotusForm2 legend, .lotusui_ie8 .lotusui30 .lotusForm2 legend{margin-right:-6px}/*align legend with content when there's no border*/
.lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox, .lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset legend, .lotusui_ie8 .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox, .lotusui_ie8 .lotusui30 .lotusForm2 .lotusFieldset legend{margin-right:0}/*reset*/
/*forms with labels to the left - lotusLeftLabels is an additional class beside lotusForm2*/
/* this version of the form has adjustments to padding to get the required field indicators to hang*/
.lotusui30 .lotusLeftLabels .lotusFormBody{padding-right:10px}
.lotusui30 .lotusLeftLabels label, .lotusui30 .lotusLeftLabels .lotusFormLabel{margin-right:10px;padding-left:10px;float:right;width:120px;position:relative;word-wrap:break-word;zoom:1;}/*lotusFormLabel is an extra label like a fieldset legend*/
.lotusui_ie6 .lotusui30 .lotusLeftLabels label, .lotusui_ie6 .lotusui30 .lotusLeftLabels .lotusFormLabel{position:static;}
.lotusui30 .lotusLeftLabels .lotusFormRequired{position:absolute;right:-8px;}
/*use lotusIndent for items needed to align with the form elements, when there isn't a left label*/
.lotusui30 .lotusLeftLabels .lotusIndent{margin-right:140px;}
.lotusui_ie6 .lotusui30 .lotusLeftLabels .lotusIndent{margin-right:150px;}
.lotusui30 .lotusLeftLabels label.lotusCheckbox{margin-right:0;padding-left:3px;float:none;width:auto;}
.lotusui30 .lotusLeftLabels fieldset input.lotusCheckbox{margin-right:0;}
.lotusui30 .lotusLeftLabels .lotusFormField .lotusMeta{width:275px;/*this needs to match the width of form fields*/}
/*form sections*/
.lotusui30 .lotusForm2 .lotusFormSection{margin-top:30px}
.lotusui_ie6 .lotusui30 .lotusForm2 .lotusFormBody .lotusFormSectionHeader .lotusArrow{overflow:hidden;}
.lotusui30 .lotusForm2 .lotusFormBody .lotusFormSectionHeader .lotusHeading2{font-size:1.1em;float:none;/*override for when form is in a section*/}
.lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusMeta{font-size:1em;}
.lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:visited, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:hover, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:focus, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:active{color:#222;text-decoration:none;}
.lotusui30 .lotusForm2 .lotusFormSectionBody{padding-top:10px;padding-right:15px;clear:both;}
/*form errors*/
/*lotusFormError applies to older form styles, it is for a message that shows up above a field in error or for an error message at the top of a smaller form. For messages at the top of a larger form or dialog, use an error message component*/
.lotusui30 .lotusForm2 .lotusFormError{color:#ce2c25;}/*for error text not in a message component*/
.lotusui30 .lotusForm2 .lotusFormErrorIcon{visibility:hidden;display:inline-block;margin-right:5px;font-weight:bold;color:#ce2c25/*alt text*/;}/*displays next to a field*/
.lotusui30 .lotusForm2 fieldset.lotusFieldset + span.lotusFormErrorIcon{margin-top:8px;}/*this is the error icon for a radio or checkbox group with a visible fieldset*/
.lotusui30 .lotusForm2 .lotusFormErrorField{border:1px solid #ce2c25;}
.lotusui30 .lotusForm2 fieldset.lotusFormErrorField{padding:5px;}
/*the fieldset top border disappears when the legend isn't visible. Using progressive enhancement (and advanced CSS selectors) we can create fallback styling*/
/*all fieldsets in error in IE get a background color instead of a border*/
.lotusui_ie .lotusui30 .lotusForm2 fieldset.lotusFormErrorField, .lotusui_ie8 .lotusui30 .lotusForm2 fieldset.lotusFormErrorField{border-width:0;background-color:#ffe3ed;}
/*IE7 and up browsers get a red border on a visible fieldset*/
.lotusui_ie7 .lotusui30 .lotusForm2 fieldset.lotusFieldset.lotusFormErrorField, .lotusui_ie8 .lotusui30 .lotusForm2 fieldset.lotusFieldset.lotusFormErrorField{border:1px solid #ce2c25;background-color:transparent;}
/***********************************************************/
/*** G R I D ***/
/*for a group of same-sized elements with a div as the outer wrapper*/
/*for example, a group of people photos*/
.lotusui30 .lotusGrid{zoom:1;margin:5px 0 0 0;overflow:hidden;zoom:1}
.lotusui_ie .lotusui30 .lotusGrid{margin-bottom:5px;}
.lotusui30 .lotusGrid div{margin:0 0 5px 5px;float:right}
/***********************************************************/
/*** H E A D E R ***/
/*found at the top of the page, center column*/
.lotusui30 .lotusHeader{margin-top:-5px;margin-bottom:15px;overflow:hidden;position:relative;zoom:1;}
.lotusui30 .lotusHeader .lotusHeading{font-size:1.7em;font-weight:normal;}
.lotusui30 div.lotusHeader{margin-bottom:15px;}/*this is for a simple header, not in a table layout, to adjust the bottom margin*/
.lotusui30 .lotusHeader img{margin-left:10px;}
.lotusui30 .lotusHeader .lotusDetails{margin-top:5px;position:relative;white-space:break-word;clear:both;}
.lotusui30 .lotusHeader .lotusDetails p{color:#222;}
.lotusui30 .lotusHeader .lotusBtnContainer{margin-top:10px;}
/***********************************************************/
/*** P O P U P H E L P ***/
.lotusui30 .lotusHelp{
margin:0;padding:5px;position:absolute;width:200px;
background-color:#ffffe1;border:1px solid #ccc;
-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;
overflow:hidden;
}
.lotusui30 .lotusHelp .lotusHelpHeader{margin:5px 5px 0 3px;float:right;overflow:hidden;}
.lotusui_ie .lotusui30 .lotusHelp .lotusHelpHeader{margin-top:1px;}
.lotusui30 .lotusHelp .lotusHeading{font-size:1.1em;color:#222;font-weight:bold;}
.lotusui30 .lotusHelp p{padding:0 5px 5px 0;line-height:1.5;/*this line-height is important for alignment and needs to be here in case this winds up on a page with a different line-height*/}
.lotusui30 .lotusMedium{width:300px;}/*you can put this as an additional class to set the width to 300 pixels*/
/***********************************************************/
/*** L E G A L S T A T E M E N T ***/
/*IBM logo and legal statement*/
/*3 different versions - regular pages, login page, and about page*/
.lotusui30 .lotusLegal .lotusLicense{color:#666;}
.lotusui30 .lotusLegal .lotusBuild{color:#000;}
.lotusui30 table.lotusLegal td{font-size:0.8em;line-height:1.2;}
.lotusui30 table.lotusLegal{margin:5px 25px 10px 25px;}
.lotusui30 table.lotusLegal td{vertical-align:middle;padding:5px;}
.lotusui30 .lotusLogin .lotusLegal{margin-right:10px;}
.lotusui30 .lotusLogin table.lotusLegal{margin-top:15px;}
/***********************************************************/
/*** L I K E ***/
.lotusui30 .lotusLike {display:inline-block; color:#222; font-size:0.9em;}
.lotusui30 .lotusLike .lotusLikeCount {padding:2px 22px 2px 4px; margin-left:7px; position:relative; display:inline-block; background:#f2f2f2; border:1px solid #ddd;
-moz-border-radius: 2px;
border-radius: 2px;}
.lotusui30 .lotusLike .lotusLikeCount .lotusIconLike {position:absolute; right:3px;}
.lotusui30 .lotusLike .lotusDivider {margin:0 2px; color:#ccc;}
.lotusui30 .lotusLike .lotusLikeConnector {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-1117px -13px; width:7px; height:6px; position:absolute; bottom:4px; left:-7px;}
.lotusui_ie .lotusui30 .lotusLike .lotusLikeCount {display:inline; zoom:1; margin-left:8px;} /* inline-block fix and spacing */
.lotusui_ie .lotusui30 .lotusLike, .lotusui_ie .lotusui30 .lotusLike .lotusLikeText {display:inline; zoom:1;} /* inline-block fix */
.lotusui_ie .lotusui30 .lotusLike .lotusLikeDescription, .lotusui_ie .lotusui30 .lotusLike .lotusDivider, .lotusui_ie .lotusui30 .lotusLike .lotusLikeAction {padding-bottom:3px; zoom:1;} /* match the bubble padding and border to make the text align */
.lotusui_ie6 .lotusui30 .lotusLike .lotusLikeConnector {bottom:auto; top:11px;} /* position the connector in IE6 */
/* when there are no likes */
.lotusui30 .lotusLike .lotusNoLikes {padding-right:10px; padding-left:9px; text-decoration:none;}
/* when only you like it */
.lotusui30 .lotusLike .lotusDisabled {text-decoration:none; color:#222;}
/* when it is the simple, clickable, control */
.lotusui30 .lotusLike .lotusLikeSimple {background:none; border:0; margin:0; padding:0 19px 0 0;}
.lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike {right:0; top:1px/*to align with count only*/;}
.lotusui_ie .lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike, .lotusui_ie9 .lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike {top:0;} /*IE tweeks to align with count only*/
.lotusui30.lotusImagesOff .lotusLike .lotusIconLike, .lotusImagesOff .lotusui30 .lotusLike .lotusIconLike {display:none;} /*hide the icon*/
.lotusui30.lotusImagesOff .lotusLike .lotusLikeCount, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeCount {padding-right:5px;} /* remove icon placeholder space */
.lotusui30.lotusImagesOff .lotusLike .lotusLikeSimple, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeSimple {padding-right:0;} /* order in this file is important */
.lotusui30.lotusImagesOff .lotusLike .lotusLikeText, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeText {display:inline;} /* make this inline with lotusAltText */
.lotusui30.lotusImagesOff .lotusLike .lotusNoLikes, .lotusImagesOff .lotusui30 .lotusLike .lotusNoLikes {display:none;} /* don't even show the link when it provides no context */
/* light box */
.lotusui30 .lotusLikeLightBox {width:300px;}
.lotusui30 .lotusLikeLightBox .lotusLike {float:right; margin-left:5px;} /* needed for IE6/7 */
.lotusui30 .lotusLikeLightBox .lotusLikeHeader {border-bottom:1px solid #ccc; padding:8px 10px; overflow:hidden; zoom:1;}
.lotusui30 .lotusLikeLightBox .lotusLikeHeaderText {padding:3px 0; font-size:0.9em; color:#222;}
.lotusui30.lotusImagesOff .lotusLikeLightBox .lotusLikeHeaderText, .lotusImagesOff .lotusui30 .lotusLikeLightBox .lotusLikeHeaderText {padding-left:10px;} /*allow room for the dialog close icon*/
.lotusui30 .lotusLikeLightBox ul.lotusList {overflow:auto; height:360px;}
.lotusui30 .lotusLikeLightBox ul.lotusList li {margin:0; padding:0; border-bottom:1px solid #ededed; overflow:hidden;}
.lotusui30 .lotusLikeLightBox ul.lotusList li a {margin:1px; padding:5px 10px; display:block;}
.lotusui30 .lotusLikeLightBox ul.lotusList li a:hover, .lotusui30 .lotusLikeLightBox ul.lotusList li a:focus, .lotusui30 .lotusLikeLightBox ul.lotusList li a:active {background-color:#eee;}
.lotusui30 .lotusLikeLightBox .lotusLikeAvatar {display:block; cursor:pointer/*for IE6 and IE7*/;}
.lotusui30 .lotusLikeLightBox .lotusLikeAvatar img {float:right;} /*float has to be on img not lotusLikeAvatar for IE6/7*/
.lotusui30 .lotusLikeLightBox .lotusPerson {overflow:hidden; padding:7px 10px 7px 0; font-weight:bold; display:block; cursor:pointer/*for IE6 and IE7*/;}
/***********************************************************/
/*** L I S T S ***/
/*use in conjuction with sections if you want a more complex list*/
.lotusui30 ul.lotusList{clear:both;overflow:hidden;margin:0;padding:0;list-style-type:none}
.lotusui30 ul.lotusMeta.lotusList{font-size:1em;}/*lists that have meta text use normal text size but meta color. the class order is important so IE6 reads ul.lotusList*/
.lotusui30 ul.lotusList ul{list-style-type:none} /*makes sure all nested lists don't have bullets, even though we don't typically nest these straight lists*/
.lotusui30 ul.lotusList li {margin:1px 0;padding:3px 2px;clear:both;zoom:1}
.lotusui30 ul.lotusEditable li{text-align:left;overflow:hidden} /*use this class in combination with list class - allows you to put a delete button on a list item*/
.lotusui30 ul.lotusList li.lotusSelected{background-color:#eee}
.lotusui30 ul.lotusList li.lotusSelected a{text-decoration:none;color:#000;}
.lotusui30 ul.lotusList img.lotusLeft{margin-left:3px}
.lotusui30 ul.lotusList div p{margin-top:3px;margin-bottom:0}/*second line of data*/
.lotusui30.lotusImagesOff .lotusEditable .lotusDelete img, .lotusImagesOff .lotusui30 .lotusEditable .lotusDelete img{display:none}
/*styles for a definitions list*/
.lotusui30 dl.lotusList dt{padding:3px 10px;margin:10px 0 0 0;font-size:1.1em}
.lotusui30 dl.lotusList dd{margin:0;padding:5px 10px}
/***********************************************************/
/*** M E D I A V I E W E R ***/
/*overall widget styling */
.lotusui30 .lotusGallery {
background: none repeat scroll 0 0 #212327;
text-align: right;
width: 700px; /*default*/
}
/*Main item section styling*/
.lotusui30 .lotusGallery .lotusItemViewer {
position: relative;
height: 323px;
border-top: 1px solid #34363A;
clear: both;
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem {
margin:20px 0;
text-align: center;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem .lotusNoImage { /*goes on lotusItem inner div*/
color: white;
font-size: 1em;
padding-top: 135px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem img {
border: 0 none;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusClickable {
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavControl {
top: 0;
height: 100%;
position: absolute;
z-index: 999;
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavControl img {
height: 100%;
width: 32px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavNext {
float: left;
left: 0;
padding: 0 20px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavNext img{
background-position: -747px 50%;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavEnd img{
background-position: -709px 50%;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavPrev {
float: right;
right: 0;
padding: 0 20px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavPrev img{
background-position: -785px 50%;
}
.lotusui30 .lotusGallery .lotusItem img{
-moz-box-shadow:0 0 5px #111;-webkit-box-shadow:0 0 5px #111;box-shadow:0 0 5px #111;
}
/*thumbnail section styling*/
.lotusui30 .lotusGallery .lotusThumbnails {
position: relative;
overflow:hidden;
border-bottom: 1px solid #111;
height: 81px; /*this is needed so webkit browsers can do the vertical icon centering*/
background-color:#222428;
background-image:-moz-linear-gradient(top, #383A3E 0%, #222428 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#383A3E), to(#222428));
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnails{
height:80px; /*need this for IE to contain the 100% height of the nav controls*/
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavControl {
top: 0;
height: 100%;
position: absolute;
padding:0 23px;
z-index: 999;
cursor: pointer;
border-top: 1px solid #494A4E;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavControl img{
height:100%;
width:10px;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavNext {
left: -1px;
-moz-box-shadow: 5px 0 10px #111;
-webkit-box-shadow: 5px 0 10px #111;
-box-shadow: 5px 0 10px #111;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavNext img {
background-position: -823px 50%;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavPrev {
right: -1px;
-moz-box-shadow: -5px 0 10px #111;
-webkit-box-shadow: -5px 0 10px #111;
-box-shadow: -5px 0 10px #111;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavPrev img{
background-position: -839px 50%;
}
.lotusui30 .lotusGallery .lotusThumbnailScroller {
text-align: right;
border-top: 1px solid #1B1C20;
position:relative; /*for IE7*/
width:auto; /*IE6 needs this set, 590px for example*/
overflow: hidden;
padding-top: 15px;
padding-bottom: 15px;
text-align: right;
margin:0 55px;
background-color:#191A1E;-moz-box-shadow:inset 0 -2px 5px #111;-webkit-box-shadow:inset 0 -2px 5px #111;box-shadow:inset 0 -2px 5px #111;
}
.lotusui30 .lotusGallery .lotusThumbnailScroller_rtl {
float: left;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip {
width:5000px; /*need to make this foolproof length to accommodate longest batch of images, to keep from wrapping in IE6.*/
padding-right: 10px;
padding-left: 10px;
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnailStrip {
position: relative;
right: auto;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail {
float: right;
margin: 0 5px;
position: relative;
width:50px;height:50px;/*default image size*/
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusLast{
width:60px;
border-left:3px solid #777;
margin-left:5px;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusSelected {
margin: -5px;
padding:3px;
border: 2px solid #eee;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusImageTrim {
position:absolute;
height: 50px; width: 50px; /*default image size*/
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusNoThumbnail .lotusImageTrim {
border:2px dashed #444;
height: 46px; width: 46px; /*adjusted default image size*/
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusThumbnailTemplate {
position: absolute;
right: 0;
top: -9999px;
width:50px;
height:50px;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail_rtl {
float: left;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail img{
position: relative;
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusThumbOverlay {
position: absolute;
cursor: pointer;
top: 0;
right: 0;
width: 100%;
height: 100%;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusLast .lotusThumbOverlay {
width:50px; /*needed to override this to match the thumbnail size*/
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusThumbOverlay {
right: auto;
}
/*.lotusui30 .lotusThumbnails .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusSelected {
top: -5px;
right: -5px;
border: 1px solid #6D6F72;
}*/
/*footer section styling*/
.lotusui30 .lotusGallery .lotusItemDetails {
clear: both;
padding: 20px 20px 0;
background-color:#1B1C20;border-top:1px solid #323336;
height:6.75em;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails {
color: #ccc;
font-size: 1.2em;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusInner {
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusTitle {
font-size:inherit;
line-height:inherit; /*don't let the oneui30 dijit theme apply here*/
color:#fff;
font-weight:bold;
white-space: nowrap;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusTitle .lotusCount{
margin-left:10px;
padding-left:10px;
color: #ccc; /*this should be the same color as lotusMeta*/
border-left:1px solid #B2B2B2;
font-weight:normal;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails p {
margin:0;
display: inline;
line-height:inherit;
font-size:.9em;
white-space:nowrap;
width:100%;overflow:hidden;
-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusMeta {
font-size:.75em;
color:#ccc;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusMeta a {
color: #84cbf4;
text-decoration: none;
}
/*shared styling*/
.lotusui30 .lotusGallery a.lotusNavDisabled {
cursor: default !important;
}
.lotusui30 .lotusGallery a.lotusNavControl img {
background-image: url("../../images/lotusHSprite-8bit.png");
background-repeat: no-repeat;
opacity: 0.5;
filter: alpha(opacity=50);
}
.lotusui30 .lotusGallery a.lotusNavControl:hover img, .lotusui30 .lotusGallery a.lotusNavControl:focus img {
opacity: 0.75;
filter: alpha(opacity=75);
}
.lotusui30 .lotusGallery a.lotusNavDisabled img, .lotusui30 .lotusGallery a.lotusNavDisabled:hover img, .lotusui30 .lotusGallery a.lotusNavDisabled:focus img {
opacity: 0.2;
filter: alpha(opacity=20);
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusLoading {
background: url("../../images/loading.gif") no-repeat scroll center center transparent;
height: 100%;
}
.lotusui30 .lotusGallery .lotusLoading {
background: url("../../images/loading.gif") no-repeat scroll center center transparent;
width: auto;
height: auto;
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnails .lotusLoading {
background-position: 34px center;
}
/***********************************************************/
/*** M E G A M E N U **/
/*these are a type of dropdown used for global navigation*/
.lotusui30 .lotusNavMenu {margin:0; position:absolute; border:1px solid #5f5f5f; z-index:900;}
.lotusui30 .lotusNavMenu table {margin:0; padding:5px 0; list-style-type:none; background-color:#fff;}
.lotusui30 .lotusNavMenu tr {white-space:nowrap; zoom:1; background-color:transparent; color:#222;}
.lotusui30 .lotusNavMenu th, .lotusui30 .lotusNavMenu table td {text-align:right; padding:0 5px;}/*added table to increase specificity because of lotusLayout*/
.lotusui30 .lotusNavMenu table.lotusAlignRight th, .lotusui30 .lotusNavMenu table.lotusAlignRight td {text-align:left;}
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator td {border-bottom:1px solid #ccc;}
.lotusui30 .lotusNavMenu tr img {margin:0 8px 0 3px;}
.lotusui_ie .lotusui30 .lotusNavMenu tr img {margin-top:-10px;}/*image alignment adjustment*/ /*TODO look at this when refactoring apps menu*/
.lotusui30 .lotusNavMenu tr a, .lotusui30 .lotusNavMenu tr span {display:inline-block; padding:5px;}
.lotusui30 .lotusNavMenu .dijitTooltipContainer a:hover {text-decoration:underline;}
.lotusui30 .lotusNavMenu .dijitTooltipContainer {background-image:none; background-color:transparent; border-width:0;}
.lotusui30 .lotusNavMenu .dijitTooltipConnector {display:none;}
/*spacing adjustments*/
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator td {padding-bottom:5px;}
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator + tr th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator + tr td {padding-top:5px}/*this won't work in IE6*/
/*menu layout*/
.lotusui30 .lotusNavMenu .lotusTwoCol {width:535px;}
.lotusui30 .lotusNavMenu .lotusTwoCol tr a {width:245px; text-decoration:none;}
.lotusui30 .lotusNavMenu .lotusEllipsis {width:auto;}
/*two column*/
.lotusui30 .lotusNavMenu .lotusTwoCol tr img {margin:0 3px;}
/***********************************************************/
/*** M E N U ***/
/*this menu is set up to allow for rounded corners in all browsers and is a set width*/
.lotusui30 .lotusMenu{margin:0 0 15px 0;padding:5px 0;width:178px;word-wrap:break-word;background-color:#eee;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;}
.lotusui30 .lotusMenu .lotusInner{overflow:hidden;}
.lotusui30 .lotusMenu .lotusMenuSection{overflow:hidden;margin:0 0 5px 0;padding-bottom:5px;border-bottom:1px solid #ccc;zoom:1;}/*creates a section in the menu, with a divider at the bottom*/
.lotusui30 .lotusMenu .lotusMenuSubsection{padding:5px 20px 0 0;}/*allows you to indent a section of the menu*/
.lotusui30 .lotusMenu .lotusMenuHeader{margin:0 5px;padding:2px 25px 2px 0;}
.lotusui30 .lotusMenu .lotusMenuHeader, .lotusui30 .lotusMenu .lotusHeaderSelected .lotusMenuHeader{color:#000;}
.lotusui30 .lotusMenu .lotusMenuHeader a, .lotusui30 .lotusMenu .lotusMenuHeader a:visited, .lotusui30 .lotusMenu .lotusMenuHeader a:hover, .lotusui30 .lotusMenu .lotusMenuHeader a:focus, .lotusui30 .lotusMenu .lotusMenuHeader a:active{color:#000;}
.lotusui30 .lotusMenu .lotusHeaderSelected, .lotusui30 .lotusMenu .lotusHeaderSelected a, .lotusui30 .lotusMenu .lotusHeaderSelected a:visited, .lotusui30 .lotusMenu .lotusHeaderSelected a:hover, .lotusui30 .lotusMenu .lotusHeaderSelected a:focus, .lotusui30 .lotusMenu .lotusHeaderSelected a:active{color:#fff;}
.lotusui30 .lotusMenu .lotusMenuSubsection .lotusMenuHeader{margin-right:-15px;}
.lotusui30 .lotusMenu .lotusHeaderSelected{color:#fff;background-color:#595b5d;border-width:1px 0;border-style:solid;border-color:#595b5d;}
.lotusui30 .lotusMenu .lotusMenuHeader a.lotusArrow{position:absolute;right:9px;top:3px;}
.lotusui30 .lotusMenu .lotusHeading{font-size:1em;line-height:1.5;}
/*Use a ul element for menu items. Put an additional lotusIcons class on it if your menu items have icons*/
.lotusui30 .lotusMenu ul{margin:0;padding:0;list-style-type:none;}
.lotusui30 .lotusMenu li{zoom:1;}/*sets hasLayout in IE*/
.lotusui30 .lotusMenu li a{padding:2px 10px 2px 0;display:block;font-weight:normal;}
.lotusui30 .lotusMenu li a, .lotusui30 .lotusMenu .lotusMenuHeader{position:relative;zoom:1;}
.lotusui30 .lotusMenu li a, .lotusui30 .lotusMenu li a:visited, .lotusui30 .lotusMenu li a:hover, .lotusui30 .lotusMenu li a:focus, .lotusui30 .lotusMenu li a:active{color:#000;}
/*.lotusui30 .lotusMenu li a:hover, .lotusui30 .lotusMenu li a:focus, .lotusui30 .lotusMenu li a:active{text-decoration:underline;}*/
/*lotusIcons is assigned to a list of menu items with icons; an image is added inside the link before the text. This is legacy code*/
.lotusui30 .lotusMenu ul.lotusIcons img{position:absolute;right:10px;}
.lotusui30 .lotusMenu ul.lotusIcons .lotusSelected img{right:25px;}
.lotusui30 .lotusMenu ul.lotusIcons a{padding-right:29px;}
/*----------*/
.lotusui30 .lotusMenu li.lotusSelected a{margin:0 5px;padding-right:5px;background-color:#595b5d;border-width:1px 0;border-style:solid;border-color:#595b5d;font-weight:bold;}
.lotusui30 .lotusMenu li.lotusSelected a, .lotusui30 .lotusMenu li.lotusSelected a:visited, .lotusui30 .lotusMenu li.lotusSelected a:hover, .lotusui30 .lotusMenu li.lotusSelected a:focus, .lotusui30 .lotusMenu li.lotusSelected a:active{color:#fff;text-decoration:none;}
.lotusui30 .lotusMenu ul.lotusIcons .lotusSelected a{ padding-right: 24px; }
.lotusui30 .lotusMenu .lotusMenuSubsection li.lotusSelected a{margin-right:-15px;padding-right:25px;}
.lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a{ padding-right: 44px; }
.lotusui30.lotusImagesOff .lotusMenu .lotusMenuSubsection ul.lotusIcons a, .lotusImagesOff .lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons a{padding-right:10px;}
.lotusui30.lotusImagesOff .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a, .lotusImagesOff .lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a{padding-right:25px;}
.lotusui_ie6 .lotusui30 .lotusMenu .lotusMenuSubsection li.lotusSelected a{position:relative;zoom:1;}/*fix so negative margins aren't truncated by container*/
.lotusui30 .lotusMenu div.lotusChunk{margin:5px 0 0 5px;}/*lotusChunk allows you to apply vertical spacing within sections - wrap a div with this class around "chunks" of data*/
.lotusui30 .lotusMenu .lotusAction{margin-right:30px;display:inline-block;}
/*menu arrows are created as CSS sprites, using the lotusArrow class found in baseTheme.css*/
.lotusui30 .lotusMenu .lotusTwistyOpenMenu{background-position:4px -1016px;opacity:0.55;filter:alpha(opacity=55);}/*the section is selected*/
.lotusui30 .lotusMenu .lotusTwistyClosedMenu{background-position:4px -1112px;opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusMenu a.lotusArrow, .lotusui30 .lotusMenu a.lotusArrow:hover, .lotusui30 .lotusMenu a.lotusArrow:focus{text-decoration:none;}
/*unread badge*/
.lotusui30 .lotusMenu .lotusUnreadBadge {margin-right:15px; padding:0 0.4em; color:#fff; background:#767676; display:inline-block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:.85em;} /* display:inline; makes the background disappear in IE9 */
.lotusui30.lotusImagesOff .lotusMenu .lotusUnreadBadge, .lotusImagesOff .lotusui30 .lotusMenu .lotusUnreadBadge{border-width:1px;border-style:solid;}
/***********************************************************/
/*** M E S S A G E S ***/
/*these are the yellow warning/error messages that show up at the top of the content area*/
.lotusui30 .lotusMessage2{padding:5px;margin-bottom:12px;background-color:#fffabc;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;overflow:hidden;zoom:1;position:relative;}/*error message*/
.lotusui30 .lotusMessage2 .lotusIcon {margin:2px 0 0 5px;float:right;}
.lotusui30.lotusImagesOff .lotusMessage2 .lotusIcon{display:none;}, .lotusImagesOff .lotusui30 .lotusMessage2 .lotusIcon{display:none;}
.lotusui30 .lotusMessage2 .lotusMessageBody{margin:0 20px;}
.lotusui30 .lotusMessage2 .lotusDelete{position:absolute;left:5px;top:5px;}
.lotusui30 .lotusMessage2 .lotusDelete img{float:none;opacity:0.45;filter:alpha(opacity=45);}
.lotusui30 .lotusMessage2 .lotusDelete:hover img, .lotusui30 .lotusMessage2 .lotusDelete:focus img, .lotusui30 .lotusMessage2 .lotusDelete:active img{opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusMessage2 span.lotusAltText{float:right;margin-right:5px;margin-left:5px;}
.lotusui30.lotusImagesOff .lotusMessage2 .lotusDelete .lotusAltText, .lotusImagesOff .lotusui30 .lotusMessage2 .lotusDelete .lotusAltText{font-weight:bold;}
/***********************************************************/
/*** P A G I N G ***/
/*these are the page bars at the top and bottom of a table/list of entries*/
.lotusui30 .lotusPaging {margin-top:2px; padding:5px; overflow:hidden; clear:both; text-align:center; font-size:.9em; background-color:#fafafa; border:1px solid #ccc; zoom:1;}
.lotusui30 .lotusPaging a, .lotusui30 .lotusPaging a:visited {font-weight:bold;}
.lotusui30 .lotusPaging input {width:20px; text-align:center; font-size:0.9em;}
.lotusui30 .lotusPaging input, .lotusui30 .lotusPaging select {margin-top:-2px; margin-bottom:-2px;}
.lotusui30 .lotusPaging div,
.lotusui30 .lotusPaging .lotusInlinelist li.lotusFirst {padding-right:5px;}
.lotusui30 .lotusPaging .lotusInlinelist li {padding:0 6px; border-color:#8d8d8d;}
.lotusui30 .lotusPaging .lotusInlinelist li.lotusLast {padding-right:0;}
.lotusui30 .lotusPaging .lotusView a, .lotusui30 .lotusPaging .lotusView a:visited, .lotusui30 .lotusPaging .lotusView a:hover, .lotusui30 .lotusPaging .lotusView a:focus, .lotusui30 .lotusPaging .lotusView a:active {color:#444; font-weight:normal;}
.lotusui30 .lotusPaging .lotusView .lotusSelected a {font-weight:bold; text-decoration:none;}
/***********************************************************/
/*** P A L E T T E ***/
/*this is the palette that opens under the place bar to allow users to customize the UI */
.lotusui30 .lotusPalette{overflow:hidden;zoom:1;background-color:#7a7f84;border-bottom:6px solid #676b6f;}
.lotusui30 .lotusPalette .lotusLoading{background-image:url(../../images/loading.gif);}
.lotusui30 .lotusPaletteHeader{padding:7px 10px 0;overflow:hidden;zoom:1;position:relative;line-height:1.9em;background-color:#62656a;color:#fff;border-width:1px 0;border-style:solid;border-top-color:#62656a;border-bottom-color:#777b81;}
.lotusui30 .lotusPaletteHeader .lotusHeading{margin:0;padding:0;float:right;font-size:1.2em;font-weight:bold;color:#fff;}
/*.lotusPaletteHeader a{text-decoration:none;}*/
.lotusui30 .lotusPalette .lotusPaletteHeader a,
.lotusui30 .lotusPalette .lotusPaletteHeader a:hover,
.lotusui30 .lotusPalette .lotusPaletteHeader a:focus,
.lotusui30 .lotusPalette .lotusPaletteHeader a:active,
.lotusui30 .lotusPalette .lotusPaletteHeader a:visited{color:#fff;}
.lotusui30 .lotusPaletteHeader ul.lotusTabs{float:right; margin-right:0; width:75%;}
.lotusui30 .lotusPaletteHeader .lotusTabs li{border-width:0;}
.lotusui30 .lotusPaletteHeader .lotusTabs li,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected{background-color:transparent;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:visited{color:#fff;}
.lotusui30 .lotusPaletteHeader .lotusTabs a,
.lotusui30 .lotusPaletteHeader .lotusTabs a:visited{margin:2px 0 8px 0;padding:3px 8px;color:#fff;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a{font-weight:bold;}
.lotusui30 .lotusPaletteHeader .lotusTabs li a:hover,
.lotusui30 .lotusPaletteHeader .lotusTabs li a:focus{text-decoration:underline;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:hover,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:focus{text-decoration:none;}
.lotusui30 .lotusPalette .lotusClose{margin-right:20px;padding:2px;float:left;}/*there is also a lotusBtnImg class on this element*/
.lotusui30 .lotusPaletteBody{margin-bottom:1px;background-color:#414648;border-width:2px 0;border-style:solid;border-top-color:#222;border-bottom-color:#222;overflow:hidden;zoom:1;}
.lotusui30 .lotusPaletteNav{width:200px;float:right;height:20.2em;padding:10px 0 10px 15px;border-left:1px solid #222;}
.lotusui30.lotusImagesOff .lotusPaletteNav, .lotusImagesOff .lotusui30 .lotusPaletteNav{height:22em;}/*to allow for expanded UI with image alt text*/
.lotusui30 .lotusPalette .lotusChunk{margin:0 10px 10px 0;overflow:hidden;}
.lotusui30 .lotusPalette .lotusSearch input.lotusText{width:143px;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader{margin:0 0 3px 10px;padding:0;color:#fff;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusHeading2{font-size:1.1em;font-weight:bold;color:#fff;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusBtnImg{margin-left:3px;padding:0 2px;float:right;vertical-align:bottom;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusBtnImg input{color:#fff;background:url(../../images/lotusHSprite-8bit.png) -651px -8px;}
.lotusui30 .lotusPalette .lotusSearch input.lotusText{background-color:#fff;color:#222;border-color:#fff;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu{margin-right:10px;border-width:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;height:15em;overflow:auto;background-color:#232426;}
.lotusui_ie .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu{height:12.8em;position:relative/*bug fix, need this here to overcome fixed positioning ie bug*/;}/*we want 6 items to show. Adjustment for IE*/
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:visited, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:hover, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:focus, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:active{margin-left:2px;/*to keep horizontal scrollbar from showing on click*/color:#fff;background-color:transparent;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a:visited{border-width:0;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusMore a{margin-left:5px;background:url(../../images/lotusSprite-8bit.png) 6px -45px no-repeat;/*opacity:0.55;filter:alpha(opacity=55) opacity lightens the text, too, disabling for now*//*55% is the min opacity for meeting contrast requirements on white/off-white background for small text*/}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:visited,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a{background-color:#595b5d;}
.lotusui30 .lotusPaletteContent{padding:10px 10px 10px 0;overflow:auto;zoom:1;height:20.2em;background-color:#37393c;}
.lotusui_ie6 .lotusui30 .lotusPaletteContent{position:relative;right:-3px;}
.lotusui30 .lotusPaletteContent.lotusPlain div.lotusIcon,
.lotusui_ie6 .lotusui30 .lotusPlain div.lotusIcon{width:1em;} /*when there are no icons, add this additional class to lotusPaletteContent and write out the lotusIcon div with an */
.lotusui30 .lotusPaletteWidgets{min-height:18.2em;}
.lotusui30 .lotusPaletteWidgets .lotusSelected{border-color:#fff;}
.lotusui30 .lotusPaletteWidget{margin:0 0 6px 10px;padding:6px 0;width:19em;height:2.6em;float:right;overflow:hidden;line-height:1.4em;border:1px solid #222;display:table; table-layout: fixed;background-color:#4d5054;color:#fff;}
.lotusui_ie .lotusui30 .lotusPaletteWidget{direction:ltr;}/*we only set the direction of rtl on the text of the widget to help solve layout issues*/
.lotusui30 .lotusPaletteWidgetHover{cursor:pointer;border-color:#fff;}/*this class needs to be added by javascript on hover because it is not on an anchor tag*/
.lotusui30.lotusImagesOff .lotusPaletteWidgets .lotusSelected, .lotusImagesOff .lotusui30 .lotusPaletteWidgets .lotusSelected,
.lotusui30.lotusImagesOff .lotusPaletteWidgetHover, .lotusImagesOff .lotusui30 .lotusPaletteWidgetHover{border-style:dotted;}
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:hover,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:focus,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:active,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:visited{color:#fff;}
.lotusui30 .lotusPaletteWidget .lotusInner{display:table-row;height:2.6em;/*height fixes safari skinny widgets*/}
.lotusui30 .lotusPaletteWidget div{font-weight:bold;display:table-cell;vertical-align:middle;}
.lotusui30 .lotusPaletteWidget div.lotusIcon{width:34px;text-align:center;}
.lotusui30 .lotusPaletteWidget div.lotusIcon span{display:block;height:16px;width:16px;padding:3px;margin:.5em 5px;}
.lotusui30 .lotusPaletteWidget div.lotusIcon img{width:16px;height:16px;}/*need to force this size to preserve layout - so widgets will float properly*/
.lotusui30 .lotusPaletteWidget a.lotusIcon{display:table-cell;width:25px;vertical-align:middle;background:url(../../images/lotusSprite-8bit.png) 100% -4068px no-repeat;font-size:2em/*to make alt text larger*/;opacity:.8;filter:alpha(opacity=80);}
.lotusui30 .lotusPaletteWidget a.lotusIcon:hover,
.lotusui30 .lotusPaletteWidget a.lotusIcon:focus{text-decoration:none;opacity:1;filter:alpha(opacity=100);}
.lotusui30 .lotusPaletteWidget div.lotusIcon span{background-color:transparent;}
.lotusui_ie .lotusui30 .lotusPaletteWidget div{float:right;padding-top:.25em;}
.lotusui_ie .lotusui30 .lotusPaletteWidget div.lotusIcon span,
.lotusui_ie .lotusui30 .lotusPaletteWidget img{margin-top:-1px;}
.lotusui_ie .lotusui30 .lotusPaletteWidget a.lotusIcon{float:left;display:block;margin-top:-2px;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle{padding-left:.1em;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle {display:block;height:1.2em;margin:0;font-weight:bold;white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle span{font-size:.8em;}/*alt text for ratings, or any other text under the title*/
.lotusui_ie .lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:10em;direction:rtl;}
.lotusui_ie7 .lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:11em;}
.lotusui_ie7 .lotusui30 .lotusPaletteContent.lotusPlain .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:13em;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget{height:5.3em;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon{width:50px;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon span{height:50px;width:50px;margin:0;padding:0 5px;background-color:transparent;border-width:0;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon img{width:48px;height:48px;border:1px solid #000;}
.lotusui30 .lotusPaletteContent .lotusPaging{border-width:0;padding:2px 0;background-color:transparent;}
.lotusui30 .lotusPaletteContent .lotusPaging div{padding-right:0;margin-right:0;}
.lotusui30 .lotusPaletteContent .lotusPaging ul li,
.lotusui30 .lotusPaletteContent .lotusPaging div{color:#C1C0C0;}
.lotusui30 .lotusPaletteContent .lotusPaging .lotusInlinelist{margin-left:5px;}
.lotusui30 .lotusPalette .lotusPaging input.lotusText{border:1px solid #181818;background-color:#222;color:#fff;}
.lotusui30 .lotusPalette .lotusPaging a,
.lotusui30 .lotusPalette .lotusPaging a:visited{text-decoration:none;color:#fff;}
.lotusui30 .lotusPalette .lotusPaging a:hover,
.lotusui30 .lotusPalette .lotusPaging a:focus{text-decoration:underline;color:#fff;}
/*some additional options for widgets*/
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded,
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded a{padding:0 2px 16px 0;}
.lotusui30 .lotusPalette .lotusShowHide{display:table-cell;vertical-align:middle;text-align:left;padding-left:10px;}/*replaces the plus sign with show hide text, for an add features customize UI*/
.lotusui_ie .lotusui30 .lotusPaletteWidget .lotusShowHide{float:left;display:block;margin-top:.35em;}
.lotusui_ie .lotusui30 .lotusPaletteWidget lotusPaletteWidget .lotusAdded{margin-top:-.5em;}
.lotusui30.lotusImagesOff a.lotusIcon img, .lotusImagesOff .lotusui30 a.lotusIcon img{display:none;}
/*some additional options for widgets*/
.lotusui30 .lotusPalette .lotusAdded,
.lotusui30 .lotusPalette .lotusAdded a{color:#0c0;}/*to indicate that a widget has been added to the page*/
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded,
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded a{color:#c1c0c0;}/*grays out header, if widget is already added to the page*/
/***********************************************************/
/*** P O P U P ***/
/*Apply this class to the dijitDialogUnderlay node only when the browser supports fixed positioning. This improves performance so scrolling doesn't repaint the underlay.*/
.lotusui30 .lotusPopupUnderlayFixed {position:fixed; width:100%; height:100%;}
.lotusui30 .lotusPopup {position:relative; border:3px solid #ababab/*this is needed for IE*/; border:3px solid rgba(3, 3, 3, 0.45); color:#222; z-index:10000/*when wrapped in dijit, the dijit node gets set to 10,000. we need to set this so the close icon can sit on top.*/; zoom:1;
-moz-border-radius:3px;
border-radius:3px;
-moz-box-shadow:0 0 5px rgba(34, 34, 34, 0.5);
-webkit-box-shadow:0 0 5px rgba(34, 34, 34, 0.5);
box-shadow:0 0 5px rgba(34, 34, 34, 0.5);}
.lotusui30 .lotusPopup .lotusPopupHeader {background:#fff; margin-bottom:-10px; position:relative; zoom:1;}
.lotusui30 .lotusPopup .lotusPopupHeader .lotusHeading {margin:0 20px; padding:20px 0 10px; border-bottom:2px solid #888; font-size:1.2em; font-weight:bold;}
.lotusui30 .lotusPopup .lotusPopupContent {background:#fff;}
.lotusui30 .lotusPopup .lotusPopupContentArea {padding:20px;}
.lotusui30 .lotusPopup .lotusPopupFooter {margin-top:-10px; padding:0 20px 20px; background:#fff;}
.lotusui30 .lotusPopup .lotusPopupClose {position:absolute; left:-14px; top:-14px; z-index:10001/*make this larger than lotusPopup*/; line-height:0/*so the anchor doesn't grow with large font-size*/;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose {line-height:1.5;} /*reverse above 0 height*/
.lotusui30 .lotusPopup .lotusPopupClose img {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-150px 0; width:32px; height:32px;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose img, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose img {display:none;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose {left:10px; top:10px;}
.lotusui30 .lotusPopup .lotusPopupConnector {background-image:url(../../images/lotusHSprite-8bit.png); position:absolute;}
.lotusui30 .lotusPopupBottom .lotusPopupConnector {background-position:-855px -11px; width:15px; height:11px; top:-11px; right:20px;}
.lotusui30 .lotusPopupLeft .lotusPopupConnector {background-position:-897px -9px; width:11px; height:15px; top:20px; left:-11px;}
.lotusui30 .lotusPopupTop .lotusPopupConnector {background-position:-876px -11px; width:15px; height:11px; bottom:-11px; right:20px;}
.lotusui30 .lotusPopupRight .lotusPopupConnector {background-position:-914px -9px; width:11px; height:15px; top:20px; right:-11px;}
/***********************************************************/
/*** S E A R C H ***/
.lotusui30 .lotusSearch{margin:0;padding:0;}/*ie fix*/
.lotusui30 .lotusSearch .lotusText, .lotusui30 .lotusSearch .dijitTextBox{vertical-align:top;border:1px solid #aaa;background-color:#fff;}
.lotusui30 .lotusSearch .lotusText, .lotusui30 .lotusSearch .lotusScope{margin:0 1px;}
.lotusui30 .lotusSearch .lotusText{padding:2px 5px 3px;width:11em;zoom:1;}
.lotusui_ie .lotusui30 .lotusSearch .lotusText{font-size:1em;}/*to match alignment in 2.1*/
.lotusui30 .lotusSearch .lotusScope{padding:2px 4px 2px 25px;position:relative;display:block/*Force FF2 into block mode*/;display:inline-block;min-width:11em;height:1.33em;white-space:nowrap;line-height:1.33;background:#fff url(../../images/lotusSprite-8bit.png) 0 -1636px no-repeat;text-decoration:none;cursor:pointer;color:#000;border:1px solid #aaa;}
.lotusui30 .lotusSearch a.lotusScope:hover, .lotusui30 .lotusSearch a.lotusScope:focus, .lotusui30 .lotusSearch a.lotusScope:active {text-decoration:none; color:#fff; background-color:#595b5d; background-position:0 -1724px;}
.lotusui30 .lotusSearch .lotusScope .lotusIcon{margin-left:3px;vertical-align:top;}
.lotusui_ie .lotusui30 .lotusSearch .lotusScope{margin-top:1px;}
/*min-width not working in these cases*/
.lotusui_ie6 .lotusui30 .lotusSearch .lotusScope{width:11em;}
/*high contrast mode*/
.lotusui30 .lotusSearch .lotusScope .lotusAltText{position:absolute;top:0;left:0;width:16px;height:16px;min-width:0;background-image:none;display:none;}
.lotusui30.lotusImagesOff .lotusSearch .lotusScope .lotusAltText, .lotusImagesOff .lotusui30 .lotusSearch .lotusScope .lotusAltText{display:block;}
.lotusui30 .lotusSearch .lotusSearchButton{background-color:transparent;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-591px -8px;opacity:0.45;filter:alpha(opacity=45);}/*image button*/
.lotusui30 .lotusSearch .lotusSearchButton:hover, .lotusui30 .lotusSearch .lotusSearchButton:focus, .lotusui30 .lotusSearch .lotusSearchButton:active{opacity:0.55;filter:alpha(opacity=55);}
/***********************************************************/
/*** S E A R C H T A B ***/
/*this is the UI for a search/find control that hides the input fields until the user opens them*/
/*this must be inside a relatively positioned div - override default positioning in the code, if necessary*/
.lotusui30 .lotusSearchTab{position:absolute;left:0;bottom:0;padding:.3em 5px;z-index:1;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:#fff;}
.lotusui30 .lotusTabExpanded{-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:#fff;}
.lotusui30 .lotusSearchTab a, .lotusui30 .lotusSearchTab a:visited{padding-left:12px;display:block;background:url(../../images/lotusSprite-8bit.png) 0 -1014px no-repeat;opacity:0.55;filter:alpha(opacity=55);text-decoration:none;font-weight:bold;}
.lotusui30 .lotusSearchTab a, .lotusui30 .lotusSearchTab a:visited, .lotusui30 .lotusSearchTab a:hover, .lotusui30 .lotusSearchTab a:focus, .lotusui30 .lotusSearchTab a:active{color:#000;}
.lotusui30 form.lotusSearchForm{margin:0;padding:12px 10px;position:absolute;top:2.1em;left:0;display:none;z-index:0;background-color:#fff;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;white-space:nowrap;}
.lotusui30 .lotusSearchForm input.lotusText{margin:0;padding:2px 5px 3px;line-height:1.3;width:15em;vertical-align:top;border:1px solid #aaa;}
.lotusui30 .lotusSearchForm lotusBtn, .lotusui30 .lotusSearchForm select{vertical-align:middle;margin-right:3px;}
.lotusui30 .lotusSearchForm .lotusBtnImg{padding:2px;display:-moz-inline-box;display:inline-block;vertical-align:middle;}
.lotusui30 .lotusSearchForm .lotusSearchButton{background-image:url(../../images/lotusHSprite-8bit.png);background-position:-591px -8px;opacity:0.6;filter:alpha(opacity=60);}
/***********************************************************/
/*S E C T I O N */
/*this is used to space out different elements in all three columns*/
/*a section contains a header*/
.lotusui30 .lotusSection2{margin:0 -3px 15px 0;clear:both;zoom:1;position:relative;}
/*main section header - other headers are part of the section body*/
/*reset how the arrow sprite is defined (to accommodate making the lotusArrow link display:table-cell*/
.lotusui30 .lotusSection2 .lotusArrow{background-image:none;}/*takes the background image off of the link*/
.lotusui30 .lotusSection2 .lotusArrow img{background-image:url(../../images/lotusSprite-8bit.png);background-repeat:no-repeat;width:16px;height:16px;vertical-align:top;}/*moves the background image onto the image*/
.lotusui30 .lotusSection2 .lotusSectionHeader{display:table;width:100%;}/*ie6 and 7 don't support display:table, so we will make adjustments to use floats. The table solution is more optimal for long header text wrapping/image alignment */
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusInner{display:table-row;}/*extra styling flexibility*/
/*twisty arrow, for collapsable sections*/
/*twisty sprite definitions are in base.css*/
.lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:visited, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:hover, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:focus, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:active{padding:5px 5px 5px 0;width:16px;display:table-cell;float:none;vertical-align:top;text-decoration:none}
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:visited, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:hover, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:focus, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:active{float:right;}
.lotusui30.lotusImagesOff .lotusSection2 .lotusArrow img, .lotusImagesOff .lotusui30 .lotusSection2 .lotusArrow img{margin-top:0;}/*TODO: do we need this?*/
/*heading text*/
.lotusui30 .lotusSection2 .lotusHeading{padding:5px 0 5px 5px;font-size:1.2em;font-weight:bold;display:table-cell;vertical-align:middle;}/*assigned to the h2 tag or equivalent*/
.lotusui30 .lotusSection2 .lotusHeading a, .lotusui30 .lotusSection2 .lotusHeading a:visited, .lotusui30 .lotusSection2 .lotusHeading a:hover, .lotusui30 .lotusSection2 .lotusHeading a:focus, .lotusui30 .lotusSection2 .lotusHeading a:active{color:#222;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusHeading{padding-right:1px;/*text is being clipped*/float:right;width:70%;}/*header text*/
.lotusui30.lotusImagesOff .lotusSection2 .lotusHeading, .lotusImagesOff .lotusui30 .lotusSection2 .lotusHeading{margin-left:10px;}/*we need more room for text in place of the action icon*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusFirst{padding-right:10px;}/*add along with lotusHeading class when sections don't have a twisty arrow*/
/*action icons*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcon{padding:4px 0;display:table-cell;vertical-align:top;width:22px;background-repeat:no-repeat;}/*this is the action menu icon*/
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcon{float:left;}
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusActionIcon img{width:16px;height:16px;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-499px -9px;opacity:0.45;filter:alpha(opacity=45)/*45% is the min opacity for meeting contrast requirements on white/off-white background*/}
.lotusui30.lotusImagesOff .lotusSection2 .lotusHeading .lotusIcon, .lotusImagesOff .lotusui30 .lotusSection2 .lotusHeading .lotusIcon{width:auto;height:auto;}/*settings for alternate text*/
/*for multiple icons*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcons img{margin-right:3px;}
/*subheader before section body*/
.lotusui30 .lotusSection2 .lotusSubheader{padding:7px 10px;overflow:hidden;color:#444;border-bottom:1px solid #eee;}
.lotusui30 .lotusSection2 .lotusSubheader .lotusHeading2{font-size:1em;font-weight:normal;}
/*the section body*/
.lotusui30 .lotusSection2 .lotusSectionBody{margin:0 15px 0 0;padding:0 0 5px 0;}
/*subheader within a section body. With or without a twisty, optional help icon*/
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader{margin-top:5px;margin-bottom:5px;padding:0 0 0 5px;border-width:0;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusArrow{float:right;margin-right:-3px;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2{float:right;width:85%;font-size:1.1em;font-weight:bold;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:visited, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:hover, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:focus, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:active{color:#000;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusIcon{float:left;padding-left:5px;padding-top:2px;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusIcon{padding-top:5px;}
.lotusui30 .lotusSection2 div.lotusChunk, .lotusui30 .lotusSection2 div.lotusSubsection{margin-top:5px;clear:both;zoom:1;}
.lotusui30 .lotusSection2 .lotusLast{margin-bottom:0;}/*gets rid of extra bottom margin on the last "subsection"*/
/*scrolling*/
.lotusui30 .lotusSection2 .lotusSectionScroll{overflow:hidden;clear:both;}
.lotusui30 .lotusSection2 .lotusSectionScroll a{margin:0 auto;float:none;}
.lotusui30.lotusImagesOff .lotusSection2 .lotusSectionScroll, .lotusImagesOff .lotusui30 .lotusSection2 .lotusSectionScroll{overflow:visible;padding-bottom:3px;}
/*drag handle, for draggable section*/
.lotusui30 .lotusSection2 .lotusDraggable{cursor:default;}
.lotusui30 .lotusSection2 .lotusDragHandle{width:9px;height:17px;position:absolute;right:-7px;top:5px;background:url(../../images/lotusHSprite-8bit.png) -462px -8px no-repeat;zoom:1;cursor:move;visibility:hidden;}/*we may want to move this outside of a section and make it a more general class. It must be positioned within a relative div*/
/*footer*/
.lotusui30 .lotusSection2 .lotusSectionFooter{padding:7px 10px;border-top:1px solid #eee;clear:both;zoom:1}
/*adjustments for components within a section*/
.lotusui30 .lotusSection2 .lotusTagCloud{width:100%; overflow:hidden;}/*to fix issues with the tag cloud overflowing the section container*/
/*lists in sections and widgets*/
.lotusui30 .lotusSection2 .lotusList{margin:0 -8px 0 0;} /*allows selection to extend to the left and right of the list items*/
.lotusui30 .lotusSection2 .lotusList li{padding-right:8px;padding-left:5px;}
.lotusui_ie6 .lotusui30 .lotusSection2 .lotusList{zoom:1;position:relative;}/*margin offset truncation fix*/
/*for left alignment in a section*/
.lotusui30 .lotusSection2 .lotusVertTable, .lotusui30 .lotusSection2 div.lotusChunk .lotusVertTable{margin-right:-2px;}/*to offset the 2px padding on the first table cell*/
.lotusui30 .lotusSection2 ul.lotusTree{margin-right:-10px;}
.lotusui30.lotusImagesOff .lotusSection2 ul.lotusTree, .lotusImagesOff .lotusui30 .lotusSection2 ul.lotusTree{margin-right:15px;}
/*paging controls within a footer*/
.lotusui30 .lotusSection2 .lotusSectionFooter .lotusPaging{padding:2px 0;overflow:hidden;font-size:1em;line-height:1;height:auto;background-color:transparent;border-width:0;}
.lotusui30 .lotusSection2 .lotusPaging div{padding-right:0;}
/*section varieties*/
.lotusui30 .lotusPortlet{margin-right:0;border:1px solid #ccc;}
.lotusui30 .lotusPortlet .lotusSectionHeader{border-bottom:1px solid #ccc;background-color:#f4f4f4;background-image:-moz-linear-gradient(top, #f4f4f4 0%, #eaeaea 100%);background-image:-webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#eaeaea));background-position:left top;background-repeat:repeat-x;overflow:hidden;}
/*forms within a section*/
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormTitle{padding:15px 10px;}
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormBody{padding:0 10px 10px;}
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormFooter{margin:0 -10px -5px;zoom:1;position:relative;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusForm2 .lotusFormFooter{padding:10px 30px;}
/****************************************************************/
/*** S O R T ***/
/*these are for the sort controls found at the top of a table/list of entries*/
.lotusui30 .lotusSort{margin:3px 10px;font-size:.9em;}
.lotusui30 .lotusSort ul{display:inline;}
.lotusui30 .lotusSort li a{vertical-align:baseline;}
.lotusui30 .lotusSort .lotusInlinelist li{padding:2px 5px;}
.lotusui30 .lotusSort .lotusInlinelist li.lotusFirst{padding-right:0;}
.lotusui30 .lotusSort a{padding:0;background-repeat:no-repeat;display:-moz-inline-box/*for FF2*/;display:inline-block;vertical-align:middle;}
.lotusui30 a.lotusMoreSorts{padding-left:10px;}
.lotusui30 a.lotusActiveSort{text-decoration:none;}
.lotusui30 .lotusSort .lotusAscending, .lotusui30 .lotusSort .lotusDescending{padding-left:10px;}
.lotusui30.lotusImagesOff .lotusSort .lotusAscending, .lotusImagesOff .lotusui30 .lotusSort .lotusAscending, .lotusui30.lotusImagesOff .lotusSort .lotusDescending, .lotusImagesOff .lotusui30 .lotusSort .lotusDescending{padding-left:0;}
.lotusui30 .lotusSort .lotusAscending{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -4227px;}
.lotusui30 .lotusSort .lotusDescending{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -4323px;}
.lotusui30 .lotusSort a.lotusMoreSorts{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -775px;/*opacity:0.55;filter:alpha(opacity=55) opacity lightens the text, too, disabling for now*/;}
/****************************************************************/
/*** T A B L E S ***/
/*layout table*/
/*note, if you need to use the structure of a relative div containing an absolute div within a layout table, be aware that Safari will only show the portion of your absolute div that is within the table area. This is by design.*/
/*there is no cellpadding built into the plain vanilla layout tables. Used judiciously for complex layouts.*/
.lotusui30 .lotusLayout td{padding:0;vertical-align:top;text-align:right;} /*default alignment*/
.lotusui30 .lotusLayout td.lotusvAlignMid{vertical-align:middle;}/*allows you to override default alignment*/
.lotusui30 .lotusColumns{width:100%;}/*a varient of the layout table used to create multiple columns*/
.lotusui30 .lotusColumns td{padding:0 10px;}
.lotusui30 .lotusColumns td:first-child, .lotusui30 .lotusColumns td.lotusFirst{padding-right:0;}
.lotusui30 .lotusColumns td:last-child{padding-left:0;}
.lotusui30 .lotusColumns td.lotusLast{padding-left:0;} /*Keep this on a separate declaration from td:last-child for IE*/
.lotusui30 .lotusLayout .lotusAlignRight{text-align:left;}
.lotusui30 .lotusLayout .lotusCenter{text-align:center;}
/*used for presenting information in a vertical format*/
.lotusui30 .lotusVertTable th, .lotusui30 .lotusVertTable td{padding:2px;}
.lotusui30 .lotusVertTable th{padding-left:50px;text-align:right;vertical-align:top;font-weight:normal;color:#666;}
.lotusui30 .lotusVertTable p{margin:0;}
/*entry/data table*/
.lotusui30 .lotusTable{width:100%;border-collapse:collapse;border-bottom-color:#eee;}
.lotusui30 .lotusTable th, .lotusui30 .lotusTable td{padding:5px 2px;vertical-align:top;text-align:right;font-weight:normal;}
.lotusui30 .lotusTable th.lotusSubHeader{padding-top:15px;}/*wrap an h4 tag in a th tag that spans the table columns for a subheader*/
.lotusui30 .lotusTable .lotusFirst th.lotusSubHeader{padding-top:5px;}
.lotusui30 .lotusTable .lotusSummary td{padding:5px 2px 0 2px;}
.lotusui30 .lotusTable .lotusDetails td, .lotusui30 .lotusTable .lotusMore td{padding:0 2px 5px 2px;}
.lotusui30 .lotusTable td p:first-child, .lotusui30 p.lotusFirst{margin-top:0;}/*for IE6, you have to assign the class lotusFirst to the first paragraph*/
.lotusui30 .lotusTable td, .lotusui30 .lotusTable th.lotusRowHeader, .lotusui30 .lotusTable th.lotusSubHeader{border-top:1px solid #eee;}/*use lotusRowHeader as a class on a th tag for a header that is the first cell of a row*/
.lotusui30 .lotusTable .lotusLast td, .lotusui30 .lotusTable .lotusLast th.lotusRowHeader{border-bottom:1px solid #eee;}/*this give the option of a border under the last table row*/
.lotusui30 .lotusTable .lotusDetails td, .lotusui30 .lotusTable .lotusFirst td, .lotusui30 .lotusTable .lotusMore td, .lotusui30 .lotusTable .lotusFirst th.lotusRowHeader, .lotusui30 .lotusTable .lotusFirst th.lotusSubHeader{border-top-width:0;}
.lotusui30 .lotusTable th.lotusFirstCell, .lotusui30 .lotusTable td.lotusFirstCell{padding-right:10px;}
.lotusui30 .lotusTable th.lotusLastCell, .lotusui30 .lotusTable td.lotusLastCell{padding-left:10px;}
.lotusui30 .lotusTable .lotusAltRow td, .lotusui30 .lotusTable .lotusAltRow th.lotusRowHeader{background-color:#fafafa;}
.lotusui30 .lotusTable th.lotusAltCell, .lotusui30 .lotusTable td.lotusAltCell{background-color:#fafafa;border-width:0 0 1px 1px;border-style:solid;border-left-color:#fff;border-bottom-color:#fff;}
.lotusui30 .lotusTable .lotusAlignRight{text-align:left;}
.lotusui30 .lotusTable .lotusCenter{text-align:center;}
.lotusui30 .lotusTable .lotusSS{font-size:.9em;white-space:nowrap;width:30px;color:#666;}
.lotusui30 .lotusTable .lotusType{margin-right:5px;padding:0;font-weight:normal;font-size:.75em;color:#666;}/*allows you to add an image and text inside a header to indicate the type of entry - requires an additional class*/
/*h4 tags with class lotusTitle are used for entry titles*/
.lotusui30 .lotusTable .lotusComplete, .lotusui30 .lotusTable .lotusComplete a{text-decoration:line-through;color:#666;} /*for to do items*/
/*h5 tags with class lotusHeading are used for subsections in entry details*/
.lotusui30 .lotusTable .lotusHeading{margin:12px 0 2px 0;font-size:1.1em;}
/*when the h4 tag occurs in the details row (like in notifications), we need some bottom margin*/
.lotusui30 .lotusTable .lotusDetails .lotusTitle{margin-bottom:2px;}
.lotusui30 .lotusTable .lotusDivider{padding:0 5px;}
.lotusui_ie .lotusui30 .lotusTable .lotusDivider{display:inline-block;}
.lotusui30 .lotusTable .lotusFirstCell input{margin:3px 0 0 0;}
.lotusui30 .lotusui_ie .lotusTable .lotusFirstCell input{margin:0;}
.lotusui30 .lotusTable .lotusPaging td{border-color:#eee;}
.lotusui30 .lotusTable .lotusActions{white-space:nowrap;}/*fix for Safari*/
/*this table also shows up at the top of the UI, for announcements.*/
.lotusui30 .lotusInfoTable{margin:0 0 12px 0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#f0f0f0;border:1px solid #ccc;}
.lotusui30 .lotusInfoTable .lotusTableHeader{position:relative;zoom:1;}
.lotusui30 .lotusInfoTable .lotusHeading{margin:0;padding:0;font-size:1.2em;font-weight:bold;}
.lotusui30 .lotusInfoTable th, .lotusui30 .lotusInfoTable td{padding:5px 10px;}
.lotusui30 .lotusInfoTable .lotusClose{position:absolute;left:-5px;top:0;display:block;padding:2px;font-weight:bold;/*for HC mode*/}
.lotusui_ie6 .lotusui30 .lotusInfoTable .lotusClose{font-size:12px;}/*preserves the height of the close button when the font size is made larger*/
/*forms in a table*/
.lotusui30 .lotusTable .lotusForm2{background-color:#fafafa;}/*forms only have a background color when they are inline in a table*/
/*this is a bug fix for IE8, which incorrectly renders tables with column spans, and we can't just target the colspan attribute in the CSS, because it views all cells as having a colspan attribute. So we target each colspan other than 1*/
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="0"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="0"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="2"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="2"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="3"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="3"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="4"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="4"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="5"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="5"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="6"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="6"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="7"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="7"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="8"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="8"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="9"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="9"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="11"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="11"]
{width:100%;}
/****************************************************************/
/*** T A B S ***/
/*tabs are used in content area and titlebar. The style adjustments needed for the titlebar are grouped with the titleBar styles*/
.lotusui30 .lotusTabContainer{position:relative;border-bottom:1px solid #ccc;z-index:1;margin-top:8px;margin-bottom:10px;zoom:1;}
.lotusui30 ul.lotusTabs{margin:0 10px 0 0;padding:0;position:relative;bottom:-3px;overflow:hidden;list-style:none;zoom:1;width:100%;/*needed for IE*/}
/*not needed in right-to-left*/
.lotusui30.lotusImagesOff ul.lotusTabs, .lotusImagesOff .lotusui30 ul.lotusTabs{bottom:-4px;}
.lotusui30.lotusImagesOff ul.lotusTabs li.lotusSelected, .lotusImagesOff .lotusui30 ul.lotusTabs li.lotusSelected{border-bottom-width:0;}
.lotusui30 .lotusTabs li{margin:0 0 2px 2px;float:right;border-width:1px;border-style:solid;border-color:#eee;border-bottom-color:#ccc;background-color:#eee;zoom:1;}/*set margins to important so they are preserved within other components*/
.lotusui30 .lotusTabs li.lotusSelected{background-color:#fff;border-color:#ccc #ccc #fff;}
.lotusui30 .lotusTabs a, .lotusui30 .lotusTabs a:visited{padding:6px 8px;display:block;text-decoration:none;line-height:1;white-space:nowrap;}/*line-height is for IE, to keep the selected tab sitting on top of the border when there is a drop-down image in the tab. white-space is needed for some IEs.*/
.lotusui30 .lotusTabs li.lotusSelected a, .lotusui30 .lotusTabs li.lotusSelected a:visited{font-weight:bold;color:#000;}
.lotusui30 .lotusTabs a:hover, .lotusui30 .lotusTabs a:focus{text-decoration:none;}
/*a style that can be applied to a div that allows you to surround a tab content area with a border*/
.lotusui30 .lotusTabContent{margin:-10px 0 12px 0;padding:10px;border-width:0 1px 1px 1px;border-style:solid;border-color:#d9d9d9;}
/*condensed tabs*/
.lotusui30 .lotusTabCondensed {margin-top:5px;}
.lotusui30 .lotusTabCondensed .lotusTabs {margin:0; bottom:-1px; width:auto;}
.lotusui_ie .lotusui30 .lotusTabCondensed .lotusTabs {width:100%;} /*IE6 and IE7 need the 100% width in RTL*/
.lotusui30 .lotusTabCondensed .lotusTabs li {border-width:0 0 1px; border-color:#fff; margin:0; background:#fff;}
.lotusui30 .lotusTabCondensed .lotusTabs a {color:#666; padding:7px 5px; border-bottom:1px solid #ccc; position:relative; bottom:-1px; zoom:1;}
.lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a {margin:0 5px;}
.lotusui30 .lotusTabCondensed .lotusTabs li.lotusSelected:first-child a {margin-right:0;}
.lotusui30 .lotusTabCondensed .lotusTabs a:hover, .lotusui30 .lotusTabCondensed .lotusTabs a:focus, .lotusui30 .lotusTabCondensed .lotusTabs a:active, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:hover, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:focus, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:active {color:#000; border-color:#000;}
.lotusui_ie6 .lotusui30 .lotusTabCondensed .lotusTabs a, .lotusui_ie6 .lotusui30 .lotusTabCondensed .lotusTabs a:visited {display:inline-block;}
.lotusui30.lotusImagesOff .lotusTabCondensed ul.lotusTabs, .lotusImagesOff .lotusui30 .lotusTabCondensed ul.lotusTabs{bottom:-1px;}
.lotusui30.lotusImagesOff .lotusTabCondensed .lotusTabs .lotusSelected a, .lotusImagesOff .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a {border:1px dashed #000;}
/****************************************************************/
/*** T A G C L O U D ***/
/*a tag cloud is a visual way of displaying the relative importance of tags, with lotusF1 being of least importance and lotusF5 being most important*/
.lotusui30 .lotusTagCloud ul{margin:0;padding:0}
.lotusui30 .lotusTagCloud li{margin-left:3px;display:inline;word-wrap:break-word;}/*margin is to insert spaces if the list is created without whitespace in the source code*/
.lotusui30 .lotusTagCloud a{text-decoration:none;}
.lotusui30 .lotusTagCloud a:hover, .lotusTagCloud a:focus{text-decoration:underline;}
.lotusui30 a.lotusF5, .lotusui30 a.lotusF5:visited{font-size:1.5em;color:#008abf;}
.lotusui30 a.lotusF4, .lotusui30 a.lotusF4:visited{font-size:1.167em;font-weight:bold;color:#003f69;}
.lotusui30 a.lotusF3, .lotusui30 a.lotusF3:visited{font-size:1.167em;color:#003f69;}
.lotusui30 a.lotusF2, .lotusui30 a.lotusF2:visited{font-size:.917em;font-weight:bold;color:#00649d;}
.lotusui30 a.lotusF1, .lotusui30 a.lotusF1:visited{font-size:.917em;color:#00649d;}
/***********************************************************/
/*** T I P S ***/
.lotusui30 .lotusTips{
margin:15px 0 5px 0;padding:5px;
-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;
background-color:#fffabc;border:1px solid #ccc;
overflow:hidden;zoom:1;
}
.lotusui30 .lotusTips.lotusFirst{margin-top:0;}/*this style definition (with no spaces) applies to any div with class="lotusTips lotusFirst"*/
.lotusui30 .lotusTips .lotusTipsHeader{margin:5px 0 10px 0;padding:0 5px 0 0;position:relative;overflow:hidden;zoom:1;}
.lotusui30 .lotusTips .lotusHeading{font-size:1.1em;color:#222;line-height:inherit;/*1.2 line-height defined globally for lotusHeading hides the underline of the x on hover and degrades alignment*/}
.lotusui_ie .lotusui30 .lotusTips .lotusHeading{line-height:1.5;}/*ie7 and prior don't support line-height:inherit*/
.lotusui30 .lotusTips .lotusClose{position:absolute;left:0;top:0;display:block;padding:2px;font-weight:bold;/*for HC mode*/}
.lotusui30 .lotusTips .lotusClose input{width:12px;height:12px;vertical-align:top;/*better supports layout in both strict and transitional doctypes*/background-position:-557px -10px;}
.lotusui_ie6 .lotusui30 .lotusTips .lotusClose{font-size:12px;}/*preserves the height of the close button when the font size is made larger*/
.lotusui30 .lotusTips .lotusHeading2{margin:2px 5px;font-weight:bold;color:#222;}
.lotusui30 .lotusTips p{margin:0;padding:5px;}
.lotusui30 .lotusTips ul{margin:0;padding-right:20px;}
.lotusui30 .lotusTips li{margin:0;padding:0;}
.lotusui30 .lotusTips .lotusInlinelist{padding-bottom:5px;padding-right:0;}
.lotusui30 .lotusTips .lotusInlinelist li{padding-bottom:5px;border-right-width:0;}
/***********************************************************/
/*** T R E E ***/ /*needs review - need additional tree visuals from Jason*/
.lotusui30 ul.lotusTree{margin:0;padding:0;list-style-type:none;line-height:1.5;}
.lotusui30 .lotusTree ul{margin:0 14px 0 0;padding:0;list-style-type:none;}
.lotusui30 .lotusTree li{margin:0;padding:1px 0;}
.lotusui30 .lotusTree a{text-decoration:none;}
.lotusui30 .lotusTree a:hover, .lotusui30 .lotusTree a:focus{text-decoration:underline;}
.lotusui30 .lotusTree .lotusIcon{margin-left:3px;}
.lotusui30 .lotusTree input{margin:0 0 0 3px;padding:0;vertical-align:middle;}
/*this is a specific type of tree*/
.lotusui30 .lotusOrgChart ul{margin-right:11px;}
.lotusui30 .lotusOrgChart li{padding:0;}
.lotusui30 .lotusOrgChart li a{margin:0;padding:0 20px 2px 0;display:block;}
.lotusui30 .lotusOrgChart .lotusBottom{padding:0 20px 5px 0;}
.lotusui30 .lotusOrgChartTop, .lotusui30 .lotusOrgChartMiddle, .lotusui30 .lotusOrgChartBottom{padding-right:20px;}
/*the second class definition for each type of node accommodates a div version of the org chart*/
.lotusui30 .lotusOrgChart li a, .lotusui30 .lotusOrgChartMiddle{background:url(../../images/lotusSprite-8bit.png) 100% -3722px no-repeat;}
.lotusui30 .lotusOrgChart a.lotusTop, .lotusui30 .lotusOrgChartTop{background:url(../../images/lotusSprite-8bit.png) 100% -3950px no-repeat;}
.lotusui30 .lotusOrgChart .lotusBottom, .lotusui30 .lotusOrgChartBottom{background:url(../../images/lotusSprite-8bit.png) 100% -3494px no-repeat;}
/*images off adjustments*/
.lotusui30.lotusImagesOff ul.lotusTree, .lotusImagesOff .lotusui30 ul.lotusTree, .lotusui30.lotusImagesOff .lotusTree ul *, .lotusImagesOff .lotusui30 .lotusTree ul * {list-style-type:square;}
.lotusui30.lotusImagesOff .lotusOrgChart li a, .lotusImagesOff .lotusui30 .lotusOrgChart li a, .lotusui30.lotusImagesOff .lotusBottom, .lotusImagesOff .lotusui30 .lotusBottom{padding-right:0;}
/***********************************************************/
/*** V C A R D (P E R S O N C A R D)***/
/*this is the popup person card that shows up when you click on a person link (via a hover link)*/
.lotusui30 .lotusVCard{display:table;position:absolute;width:400px;border:1px solid #ccc;-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;background-color:#fafafa;}
.lotusui30 .lotusVCard table.lotusContainer{width:100%;}
.lotusui30 .lotusVCard h2{margin:0;padding:0;font-size:1.2em;font-weight:bold;color:#444;}
/*lotusAppLinks are the application links at the top of the card*/
.lotusui30 .lotusVCard .lotusAppLinks td{background-repeat:repeat-x;border-width:0 1px 1px 0;border-style:solid;border-color:#c5c5c5;background-color:#fff;text-align:center;}
.lotusui30 .lotusVCard .lotusAppLinks td.lotusFirst{border-right-width:0;}
.lotusui30 .lotusVCard .lotusAppLinks a{display:block;padding:3px 9px;}
/*the more arrow, for when there is a second row of application links*/
.lotusui30 .lotusVCard .lotusMore{width:16px;margin-left:10px;background:url(../../images/lotusSprite-8bit.png) 0 -3019px no-repeat;opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusVCard a.lotusMore:visited, .lotusVCard a.lotusMore:hover, .lotusVCard a.lotusMore:focus, .lotusVCard a.lotusMore:active{text-decoration:none}
.lotusui30 .lotusVCard .lotusMoreExpanded{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -3071px;opacity:0.55;filter:alpha(opacity=55);}
/*lotusPersonDetails is the detail area of the card that contains all info for the person*/
.lotusui30 .lotusVCard .lotusDetails{padding:10px;border-top:1px solid #fff;background-color:#f2f2f2;}
.lotusui30 .lotusVCard .lotusPhoto{padding:3px;border:1px solid #bdc4ca;float:right;position:relative;/*IE fix for floated elements within a relative container not showing*/}
.lotusui_ie .lotusui30 .lotusVCard .lotusPhoto{position:static;}/*need to do this to solve an issue with the person photo appearing outside the person card in ie, undoes the fix for LTR*/
.lotusui30.lotusImagesOff .lotusVCard .lotusPhoto, .lotusImagesOff .lotusui30 .lotusVCard .lotusPhoto{border-width:0;}
.lotusui30 .lotusVCard .lotusPersonInfo{margin-right:86px;}
/*lotusPersonActions are actions you can perform on this person, from the person card*/
.lotusui30 .lotusVCard .lotusPersonActions{padding:5px;border-top:1px solid #c5c5c5;background-color:#fff;}
/*action menu within person card*/
.lotusui30 .lotusVCard .lotusPersonActions .lotusInlinelist li{border-left-color:#1970B0;}
.lotusui30 .lotusVCard .lotusActionMenu{position:static;right:auto;top:auto;border-width:0;display:none;width:auto;margin-top:-10px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
/*lotusComments in the person card contains status information for the person*/
.lotusui30.lotusImagesOff .lotusCommentHeader, .lotusImagesOff .lotusui30 .lotusCommentHeader{display:none;}
.lotusui30 .lotusVCard .lotusComment{clear:both;}
.lotusui30 .lotusVCard .lotusDetails .lotusComment{position:relative;margin:-10px -10px 2px 0;padding:0 10px 0 0;zoom:1;}
.lotusui30 .lotusVCard .lotusDetails .lotusCommentHeader{padding-right:15px;padding-bottom:3px;position:absolute;top:0;right:20px;z-index:1;height:1.6em;background:url(../../images/lotusSprite-8bit.png) 100% -2250px no-repeat;}
.lotusui30 .lotusVCard .lotusDetails .lotusCommentBody{position:relative;top:1.7em;margin:-1px 0 2.2em 0;padding:5px 10px;color:#666;background-color:#fff;border:1px solid #ccc;z-index:0;zoom:1;}
/*adjustments for an inline version of the card*/
.lotusui30 .lotusInlineVCard{position:static;right:auto;margin:0 0 10px 0;}
.lotusui30 .lotusInlineVCard, .lotusui30 .lotusInlineVCard .lotusContainer{width:175px;position:static;top:auto;right:auto;}
.lotusui30 .lotusInlineVCard .lotusPhoto{padding:0;border-width:0;margin-top:5px;}
.lotusui30 .lotusInlineVCard h2{margin:0;padding:0;font-size:1.2em;font-weight:bold;color:#444;line-height:1.3;}
.lotusui30 .lotusInlineVCard h2 img{vertical-align:baseline;}/*better alignment for strict and transistional doctypes*/
.lotusui30.lotusImagesOff .lotusInlineVCard h2 .lotusAltText, .lotusImagesOff .lotusui30 .lotusInlineVCard h2 .lotusAltText{font-size:.75em;display:block;}
.lotusui30 .lotusInlineVCard .lotusPersonInfo{margin-right:60px;margin-top:4px;}
.lotusui30.lotusImagesOff .lotusInlineVCard .lotusPersonInfo, .lotusImagesOff .lotusui30 .lotusInlineVCard .lotusPersonInfo{margin-right:5px;}
.lotusui30 .lotusInlineVCard .lotusEmail{padding:5px 10px;clear:both;border-width:1px 0;border-style:solid;border-color:#c5c5c5;}
.lotusui30 .lotusInlineVCard .lotusAppLinks{list-style-type:none;margin:0;padding:0;}
.lotusui30 .lotusInlineVCard .lotusPivotNav{padding:2px 2px 1px 5px;overflow:hidden;zoom:1;}
.lotusui30 .lotusInlineVCard .lotusPivotNavToggle{margin:0 0 0 5px;padding:0;float:right;height:45px;width:10px;}
.lotusui30.lotusImagesOff .lotusInlineVCard .lotusPivotNavToggle, .lotusImagesOff .lotusui30 .lotusInlineVCard .lotusPivotNavToggle{width:16px;}
.lotusui30 .lotusPivotNavToggle a{display:block;height:45px;background:#d8d8e0 url(../../images/lotusSprite-8bit.png) -2px -296px no-repeat;opacity:0.55;filter:alpha(opacity=55)/*55% is the min opacity for meeting contrast requirements on white/off-white background for small text*/text-decoration:none;}
.lotusui30 .lotusPivotNavToggle a:visited, .lotusui30 .lotusPivotNavToggle a:hover, .lotusui30 .lotusPivotNavToggle a:focus, .lotusui30 .lotusPivotNavToggle a:active{text-decoration:none;}
.lotusui30 .lotusPivotNavOpen .lotusPivotNavToggle a{background-image:url(../../images/lotusSprite-8bit.png);background-position: -1px -244px;}
.lotusui30 .lotusInlineVCard .lotusInlineVCardDetails{display:none;}
/***********************************************************/
/*** V C A R D H O V E R ***/
/*this is the hover link that shows when you hover over a person's name and allows you to open their profile card*/
.lotusui30 .lotusVCardHover{padding:5px 25px 5px 5px;position:absolute;border:1px solid #aeaeae;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background:#fff79a url(../../images/lotusSprite-8bit.png) 95% -3282px no-repeat;white-space:nowrap;}
.lotusui30 a.lotusVCardHover:hover, .lotusui30 a.lotusVCardHover:focus, .lotusui30 a.lotusVCardHover:active{text-decoration:none;}
.lotusui30.lotusImagesOff .lotusVCardHover, .lotusImagesOff .lotusui30 .lotusVCardHover{padding-right:5px;}
/***********************************************************/
/*** I C O N S ***/
.lotusui30 .lotusIconLike,
.lotusui30 .lotusIconMsgSuccess,
.lotusui30 .lotusIconMsgError,
.lotusui30 .lotusIconMsgInfo,
.lotusui30 .lotusIconMsgWarning {background-image:url(../../images/lotusHSprite-8bit.png);width:16px;height:16px;background-repeat:no-repeat;display:-moz-inline-box;display:inline-block;}
.lotusui30 .lotusIconLike {background-position:-88px -8px;}
.lotusui30 .lotusIconMsgSuccess {background-position:0 -8px;}
.lotusui30 .lotusIconMsgError {background-position:-22px -8px;}
.lotusui30 .lotusIconMsgInfo {background-position:-44px -8px;}
.lotusui30 .lotusIconMsgWarning {background-position:-66px -8px;}
|
plugins/com.ibm.socialcrm.notesintegration.servlet/web-files/css/base/framework/componentsRTL.css
|
/*this is the area above entry tables, containing action button, view controls, drop-down find-in-table, etc.*/
.lotusui30 .lotusActionBar{margin-bottom:4px;/*this number works with the margin-top of the paging control to simulate 8px*/position:relative;float:right;width:100%;height:2.3em;/*this height accommodates the searchTab, if it is the only element in the action bar*/}
.lotusui30 .lotusActionBar2{margin-top:-25px;margin-bottom:4px;position:relative;float:right;width:100%;height:2.3em} /*use this in place of lotusActionBar when you want to compress the vertical space between the actionbar and the element(s) above it*/
/***********************************************************/
/*****************************/
/*** A C T I O N M E N U ***/
/*****************************/
.lotusui30 ul.lotusActionMenu{margin:0;padding:0;list-style-type:none;display:table;position:absolute;z-index:900px;border:1px solid #aaa;background-color:#fff;-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;}
.lotusui_ie6 .lotusui30 ul.lotusActionMenu{width:15em;}
.lotusui30 .lotusActionMenu li{white-space:nowrap;background-color:transparent;}
.lotusui_ie6 .lotusui30 .lotusActionMenu li{white-space:normal;}/*since we have a fixed width, we have to allow for wrapping*/
.lotusui30 .lotusActionMenu li.lotusSelected a{background-image:url(../../images/lotusSprite-8bit.png);background-position:96% -1865px;background-repeat:no-repeat;}
.lotusui30 .lotusActionMenu li.lotusMenuSeparator{border-top :1px solid #ccc;}
.lotusui30 .lotusActionMenu a{padding:3px 25px 5px 40px;text-decoration:none;display:block;}
.lotusui30 .lotusActionMenu a, .lotusui30 .lotusActionMenu a:link, .lotusui30 .lotusActionMenu a:visited{color:#000;background-color:#fff;}
.lotusui_ie6 .lotusui30 .lotusActionMenu a{zoom:1}
.lotusui30 .lotusActionMenu .lotusIcon a{padding-right:2px;}
.lotusui30 .lotusActionMenu .lotusIcon img{width:16px;height:16px;margin-left:6px;}
.lotusui30.lotusImagesOff .lotusActionMenu .lotusIcon img, .lotusImagesOff .lotusui30 .lotusActionMenu .lotusIcon img{display:inline-block;}
.lotusui30 .lotusActionMenu a:hover, .lotusui30 .lotusActionMenu a:focus, .lotusui30 .lotusActionMenu a:active{text-decoration:none;color:#000;background-color:#eee;}
.lotusui30 .lotusActionMenu.lotusPlain a{padding-right:10px;}
.lotusui30.lotusImagesOff .lotusActionMenu li.lotusSelected a, .lotusImagesOff .lotusui30 .lotusActionMenu li.lotusSelected a{padding-right:15px;}
.lotusui30.lotusImagesOff .lotusActionMenu a:visited, .lotusImagesOff .lotusui30 .lotusActionMenu a:visited, .lotusui30.lotusImagesOff .lotusActionMenu a:hover, .lotusImagesOff .lotusui30 .lotusActionMenu a:hover, .lotusui30.lotusImagesOff .lotusActionMenu a:focus, .lotusImagesOff .lotusui30 .lotusActionMenu a:focus, .lotusui30.lotusImagesOff .lotusActionMenu a:active, .lotusImagesOff .lotusui30 .lotusActionMenu a:active{text-decoration:underline;}
/***********************************************************/
/*** B R E A D C R U M B S ***/
/*these sit above the page header (lotusHeader)*/
.lotusui30 .lotusBreadcrumbs{margin:0 0 15px 0}
/***********************************************************/
/*NOTE: buttons have a lot of overrides to make them consistent across browsers and support deprecated versions. Be very careful when modifying this code - more code found in deprecated.css*/
/*** B U T T O N S ***/
/*all buttons*/
.lotusui30 .lotusBtn, .lotusui30 .lotusBtnImg{margin:0;/*reset to get rid of Safari 0em user agent style*/background-color:#f1f1f1;
background-image:-moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ebebeb));color:#000;
font-weight:bold;text-align:center;border:1px solid #aaa;}
.lotusui30 .lotusBtn{margin-left:5px;padding:2px 7px;font-size:.9em;cursor:pointer;}
/*browser adjustments*/
.lotusui_ie .lotusui30 .lotusBtn{padding:1px;/*adjustment for IE funky extra padding*/line-height:1.7em;/*fix for discrepancy in button tag height between buttons with and without an image*/}
.lotusui_ie .lotusui30 .lotusBtn img{margin:.5em 0 .3em 0;} /*need this for button with drop-down arrow to look okay in IE*/
/*adjustment to make input elements the same height as button elements*/
.lotusui_ie8 .lotusui30 input.lotusBtn{padding:3px 7px;}
.lotusui_ie9 .lotusui30 input.lotusBtn{padding:4px 7px;}
/*image buttons - an input type=image wrapped with a span or an img wrapped with a link*/
.lotusui30 .lotusBtnImg{padding:2px;/*default padding, which makes a 16 pixel icon if the image uses the default image size*/
display:-moz-inline-box;
display:inline-block;
vertical-align:top;/*to better align an image button with regular buttons when they are in a row*/
line-height:1;}
.lotusui30 .lotusBtnImg input{margin:0;width:16px;height:16px;background-repeat:no-repeat;vertical-align:middle;/*fixes IE6*/}/*default margin, padding and size*/
.lotusui_ie .lotusui30 .lotusBtnImg input{margin-top:-1px;}/*extra tweak to center image in IE*/
.lotusui30.lotusImagesOff .lotusBtnImg input, .lotusImagesOff .lotusui30 .lotusBtnImg input{display:none;}
/*disabled buttons*/
.lotusui30 .lotusBtnDisabled{color:#b0b0b0 !important;background-color:#eee !important;cursor:default !important;border-color:#ccc !important;}/*we don't want disabled button border color to change on hover*/
.lotusui30 .lotusBtnDisabled input{cursor:default !important;opacity:.3 !important;filter:alpha(opacity=30) !important;}/*disabled image buttons*/
/*for high contrast mode*/
.lotusui30.lotusImagesOff .lotusBtnDisabled, .lotusImagesOff .lotusui30 .lotusBtnDisabled{opacity:.5 !important;color:#000 !important;filter:alpha(opacity=50) !important;}
.lotusui30.lotusImagesOff .lotusBtnDisabled a.lotusAltText, .lotusImagesOff .lotusui30 .lotusBtnDisabled a.lotusAltText{text-decoration:none !important;cursor:default;}/*high contrast alt text - we don't want it to underline on hover and it doesn't inherit the lotusBtnDisabled cursor so we need to define it again.*/
/*miscellaneous*/
.lotusui30 .lotusBtnContainer{overflow:hidden;}/*put this around a bunch of "link" buttons*/
.lotusui30 .lotusBtnDivider{border-bottom:1px solid #e0e0e0;padding-bottom:5px;}/*add this as an additional class when you need a bottom divider for the buttons*/
/*generic/common buttons*/
/*put the style on the wrapper span along with the lotusBtnImg class*/
.lotusui30 .lotusAdd input{background-image:url(../../images/lotusHSprite-8bit.png);background-position:-519px -8px;opacity:0.45;filter:alpha(opacity=45)}
.lotusui30 .lotusClose input{width:16px;height:16px;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-555px -8px;opacity:0.45;filter:alpha(opacity=45)/*45% is the min opacity for meeting contrast requirements on white/off-white background*/;}
.lotusui30 .lotusAdd input:hover, .lotusui30 .lotusAdd input:focus, .lotusui30 .lotusAdd input:active, .lotusui30 .lotusClose input:hover, .lotusui30 .lotusClose input:focus, .lotusui30 .lotusClose input:active{opacity:0.55;filter:alpha(opacity=55);}
/*hover states*/
.lotusui30 .lotusBtn:hover, .lotusui30 .lotusBtn:focus, .lotusui30 .lotusBtn:active, .lotusui30 .lotusBtnImg:hover, .lotusui30 .lotusBtnImg:focus, .lotusui30 .lotusBtnImg:active{border-color:#666;}
/***********************************************************/
/*** C A L L O U T B O X ***/
/*This is the portable pull-quote/callout box area. It can be used on any page.*/
.lotusui30 .lotusAboutBox .lotusAboutText .lotusHeading{font-size:3em;font-weight:normal;line-height:1.2;}
.lotusui30 .lotusAboutBox .lotusAboutText .lotusHeading2{margin:3px 0 15px;font-size:1.5em;font-weight:normal;}
.lotusui30 .lotusAboutBox{padding-left:25px;padding-bottom:15px;position:relative;background-position:right top;background-repeat:repeat-x;overflow:hidden;min-height:160px;background-color:#eee;border:1px solid #ccc;}
.lotusui_ie .lotusui30 .lotusAboutBox{display:inline-block;}
.lotusui_ie6 .lotusui30 .lotusAboutBox{height:auto !important;height:160px;}
.lotusui30 .lotusAboutBox img{position:absolute;right:30px;top:22px;width:128px;height:128px;}
.lotusui30 .lotusAboutText{margin:22px 185px 20px 20px;}
.lotusui30 .lotusWelcomeBox{margin-right:-15px;margin-bottom:20px;padding:15px;position:relative;border:1px solid #ccc;overflow:hidden;zoom:1;background-color:#eee;}
.lotusui30 .lotusWelcomeBox .lotusHeading{margin:0 0 10px 25px;font-size:1.7em;font-weight:normal;line-height:1;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer{margin:15px 0 0 0;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer .lotusBtn{float:right;}
.lotusui30 .lotusWelcomeBox .lotusBtnContainer .lotusInlinelist li{border-width:0;}
.lotusui30 .lotusWelcomeBox p,
.lotusui30 .lotusWelcomeBox ul{margin-top:5px;margin-bottom:0;margin-left:0;}
.lotusui30 .lotusWelcomeBox ul.lotusInlinelist{float:right;} /*fixes alignment issues between button text and links*/
/***********************************************************/
/*** C L O S E B U T T O N ***/
.lotusui30 .lotusWelcomeBox .lotusClose{position:absolute;top:10px;left:12px;font-weight:bold;/*for HC mode*/}
.lotusui30.lotusImagesOff .lotusWelcomeBox, .lotusImagesOff .lotusui30 .lotusWelcomeBox,
.lotusui30.lotusImagesOff .lotusAboutBox, .lotusImagesOff .lotusui30 .lotusAboutBox{border:solid 1px #666;}
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a{text-decoration:none;}
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:hover, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:hover,
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:hover, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:hover,
.lotusui30.lotusImagesOff .lotusWelcomeBox .lotusClose a:active, .lotusImagesOff .lotusui30 .lotusWelcomeBox .lotusClose a:active{text-decoration:underline} /*add .lotusui30 .lotusCalloutBox a when it's appropriate*/
/***********************************************************/
/*** C A P T I O N ***/
/*provides a gray background for a caption above another component*/
.lotusui30 .lotusCaption{margin-top:.2em;padding:2px 5px;height:2em;line-height:2;clear:both;text-align:center;background-color:#fafafa;border:1px solid #ccc;}
.lotusui30 .lotusCaption select{color:#666;}
/***********************************************************/
/*** C O M M E N T ***/
/*base post/comment styling*/
.lotusui30 .lotusPost{padding:7px 0 7px 7px;overflow:hidden;zoom:1;}
.lotusui30 .lotusPostAuthorInfo{display:block;float:right;font-size:0.9em;width:50px;}
.lotusui30 .lotusPostAuthorInfo .lotusPostAvatar{background-repeat:no-repeat;}
.lotusui30.lotusImagesOff .lotusPostAvatar, .lotusImagesOff .lotusui30 .lotusPostAvatar{display:none;}
.lotusui30 .lotusPost .lotusPostAuthorInfo .lotusMeta{margin:0;font-size:1em;}
.lotusui30 .lotusPostName{font-weight:bold;line-height:1.1;}
.lotusui30 .lotusPostAvatar{padding:4px 0;}/*bottom padding is for when comments don't have much text, like condensed comments, so the top and bottom padding matches*/
.lotusui30 .lotusPostContent{padding:0 0 7px 20px/*room for the delete icon*/;min-height:26px;position:relative;overflow:hidden;zoom:1;}
.lotusui_ie6 .lotusui30 .lotusPostContent{right:-3px;}/*to counteract the IE6 3px margin bug*/
.lotusui30 .lotusPostContent .lotusPostAction{margin-bottom:5px;}
.lotusui30 .lotusPostContent p:first-child{margin-top:0;}
.lotusui30 .lotusPost .lotusPostDetails{overflow:hidden;}
.lotusui30 .lotusPost .lotusTitle{font-size:1em;}
.lotusui30 .lotusPost .lotusPostObject{float:right;margin-left:10px;}
.lotusui30 .lotusPost .lotusPostContent .lotusIcon{margin-left:3px;}
.lotusui30 .lotusPost .lotusPostIndicator{position:absolute;top:-9999px;left:0;height:100%;}
.lotusui30 .lotusPost .lotusPostIndicator img{background-image: url("../../images/lotusHSprite-8bit.png"); background-repeat:no-repeat; background-position: -1206px -9px; height:14px; width:14px; opacity:0.45; filter:alpha(opacity=45);}
.lotusui30.lotusImagesOff .lotusPost .lotusPostIndicator img, .lotusImagesOff .lotusui30 .lotusPost .lotusPostIndicator img{display:none;}
.lotusui30 .lotusPost .lotusPostIndicator a{position:absolute; top:50%; left:0; margin-top:-7px;line-height:1em;}
.lotusui30 .lotusPost .lotusPostMore{position:relative;top:-9999px;}/*this hiding offscreen technique with position:relative simulates visibility:hidden but gets the text read by the screen reader*/
.lotusui30 .lotusPost .lotusPostInlineActions{margin-top:5px;}/*for inline actions in a post*/
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox{padding:5px;background-color:#fff;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox .lotusActionMessage{float:right;margin-left:15px;line-height:1.2;}
.lotusui30 .lotusPost .lotusPostInlineActions .lotusActionBox .lotusActions{margin:0;}
/*lotusPostHover needs to be assigned using javascript (there is an IE performance degradation if you use :hover declarations on non-links*/
.lotusui30 .lotusPost .lotusDelete{display:block;position:absolute;top:-9999px;left:0;line-height:1;}
.lotusui30 .lotusPost .lotusDelete img{opacity:0.45;filter:alpha(opacity=45);}
.lotusui30 .lotusPost .lotusDelete:hover img, .lotusui30 .lotusPost .lotusDelete:focus img, .lotusui30 .lotusPost .lotusDelete:active img{opacity:0.75;filter:alpha(opacity=75);}
.lotusui30 .lotusPostHover .lotusPostMore, .lotusui30 .lotusPostSelected .lotusPostMore, .lotusui30 .lotusPostHover .lotusPostIndicator, .lotusui30 .lotusPostSelected .lotusPostIndicator, .lotusui30 .lotusPostHover .lotusDelete, .lotusui30 .lotusPostSelected .lotusDelete{top:0;}
.lotusui_ie6 .lotusui30 .lotusPostHover .lotusPostIndicator, .lotusui_ie6 .lotusui30 .lotusPostSelected .lotusPostIndicator{top:2em;}
/*default definitions for a status update at the top of an activity stream*/
.lotusui30 .lotusAddComment{padding:4px;zoom:1;margin-bottom:10px;margin-left:4px;background-color:#E8EDF3;}
.lotusui30 .lotusAddComment a.lotusCommentInput{padding:2px 4px 10px 2px;border:1px solid #BDC7DB;background-color:#fff;display:block;}
/*update status "comment"*/
/*lotusUpdateStatus is an additional class along with lotusPost*/
.lotusui30 .lotusUpdateStatus{padding:3px 7px;background-color:#eee;}
.lotusui30.lotusImagesOff .lotusUpdateStatus, .lotusImagesOff .lotusui30 .lotusUpdateStatus{border-width:1px;border-style:solid;}
.lotusui30 .lotusUpdateStatus .lotusPostContent{padding-left:0;/*gets rid of spacing for delete icon*/}
.lotusui30 .lotusUpdateStatus .lotusPostDetails{margin:5px 10px 3px 0;}
.lotusui30 .lotusUpdateStatus .lotusPostStatusControl{margin-right:10px;background-color:#fff;}
.lotusui30 .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput{padding:4px;display:block;}
.lotusui30.lotusImagesOff .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput, .lotusImagesOff .lotusui30 .lotusUpdateStatus .lotusPostStatusControl .lotusStatusInput{border-width:1px;border-style:solid;}
/*COMMENT CONTAINERS*/
/* comment list */
.lotusui30 ul.lotusCommentList{margin:0;padding:0;list-style-type:none;}
.lotusui30 ul.lotusCommentList li{border-top-color:#e3e2e2;zoom:1;}
.lotusui_ie7 .lotusui30 ul.lotusCommentList .lotusCommentItem{display:inline;width:100%;vertical-align:bottom;}/*fixes a gap between list items when the post inside the li tag has an absolutely positioned delete button*/
.lotusui30 ul.lotusCommentList li.lotusCommentItem,
.lotusui30 ul.lotusCommentList > li{border-top-width:1px;border-top-style:solid;}/*the second definition is for any 2.1 code that was out there without the lotusCommentItem class*/
.lotusui_ie6 .lotusui30 ul.lotusCommentList li.lotusCommentItem li{border-top-width:0;}
.lotusui30 ul.lotusCommentList li.lotusFirst{border-top-width:0;}
/*these styles are overrides for an add comment integrated into the comment list*/
.lotusui30 .lotusCommentList li.lotusAddComment{margin:0;}
.lotusui30 .lotusCommentList li.lotusAddComment a{padding-bottom:2px;}
/*condensed comment list*/
/*(used for things like history in embedded experience*/
.lotusui_ie6 .lotusui30 .lotusCommentsCondensed .lotusCommentItem {position:relative;}
.lotusui30 .lotusCommentsCondensed .lotusPost{padding:5px 0;}
.lotusui30 .lotusCommentsCondensed .lotusPostAuthorInfo{width:auto;padding-left:10px;}
.lotusui30 .lotusCommentsCondensed .lotusPostAction{margin-left:9em;}
.lotusui30 .lotusCommentsCondensed .lotusPostContent{padding-left:0;position:relative;}
.lotusui30 .lotusCommentsCondensed .lotusPostContent .lotusMeta{position:absolute;top:0;left:0;}
.lotusui30 .lotusCommentsCondensed .lotusPostDetails{clear:both;width:98%;}
.lotusui30 .lotusCommentsCondensed .lotusPostDetails p{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis;}
/* board */
.lotusui_ie .lotusui30 .lotusBoard{zoom:1;position:relative;}/*to properly position board in IE7, ltr and rtl*/
.lotusui30 .lotusBoard .lotusPost{padding:10px 2px 15px 2px;border-top:1px solid #e3e2e2;}/*this accomodates older versions of posts on boards that aren't in a lotusStream wrapper*/
.lotusui30 .lotusBoard .lotusPost .lotusActions{margin-top:5px;}
/*an activity stream is an unordered list that exists on a board*/
.lotusui30 .lotusBoard .lotusStream{margin:0;padding:0;list-style-type:none;}
.lotusui30 .lotusBoard .lotusStream > li{border-top:1px solid #e3e2e2;}
.lotusui_ie7 .lotusui30 .lotusBoard .lotusStream > li{vertical-align:bottom;}/*fix a gap in IE7*/
.lotusui30 .lotusBoard .lotusStream > li:first-child{border-top-width:0;}
.lotusui30 .lotusBoard .lotusStream > li > .lotusAction{display:block;padding:10px;}
.lotusui30 .lotusBoard .lotusStream .lotusPost{padding:10px;border:0;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusStream .lotusPost{border-color:#fff;}
.lotusui30 .lotusBoard .lotusStream .lotusPostHover, .lotusui30 .lotusBoard .lotusStream .lotusPostSelected{background-color:#eee;cursor:pointer;}
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPost, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPost {margin:0 1px;} /*placeholder space for a border on hover/selected*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPostHover, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPostHover, .lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusPostSelected, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusPostSelected {margin:0; border-right:1px solid; border-left:1px solid;} /*add a border in high contrast*/
.lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPostHover{margin:1px;background-color:transparent;border-width:none;}/*reset for comment list posts in a stream - we don't want to change background color/border on hover*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusCommentList .lotusPost, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPost {margin:0;} /*take off placeholder space for border*/
.lotusui30.lotusImagesOff .lotusBoard .lotusStream .lotusCommentList .lotusPostHover, .lotusImagesOff .lotusui30 .lotusBoard .lotusStream .lotusCommentList .lotusPostHover {border:0;} /*take off the high contrast hover border for the comment list*/
/*graceful degradation for IE6*/
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPost{margin:0 1px 1px 1px;border-top:1px solid #e3e2e2;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPostHover, .lotusui_ie6 .lotusui30 .lotusBoard .lotusPostSelected{margin:0;border:1px solid #eee;}
.lotusui_ie6 .lotusui30 .lotusCommentList .lotusPost{border-top-width:0;}
/*end IE6 styling*/
.lotusui30 .lotusBoard .lotusPostContent{padding:0 0 0 15px;}
.lotusui30 .lotusBoard .lotusCommentList{position:relative;margin:3px 5px 0 0;padding:0;border-top:1px solid #ddd;clear:both;}
.lotusui30 .lotusBoard .lotusCommentList:after{content:"";position:absolute;top:-10px;right:53px;width:12px;height:12px;background:url(../../images/lotusSprite-8bit.png) 0 -2516px no-repeat;}
.lotusui30 .lotusBoard ul.lotusCommentList li.lotusCommentItem{margin:0;padding:0;background-color:#f2f2f2;border-width:0 1px 1px 1px;border-style:solid;border-color:#ddd;}
.lotusui30 .lotusBoard ul.lotusCommentList > li{margin:0;background-color:#f2f2f2;border-width:0 1px 1px 1px;border-style:solid;border-color:#ddd;} /* > li structure is to support markup that didn't have the lotusCommentItem class, as it should have. On separate line so IE6 reads lotusCommentItem styles*/
.lotusui30 .lotusBoard ul.lotusCommentList .lotusPost{padding:10px;border-width:0}/*reset the posts in a comment list*/
.lotusui30 .lotusBoard ul.lotusCommentList li.lotusCommentItem .lotusPost, .lotusui30 .lotusBoard ul.lotusCommentList > li .lotusPost{margin:0;}
.lotusui30 .lotusBoard .lotusCommentList .lotusAddComment{position:relative;top:-9999px;padding:0;background-color:transparent;border-width:0/*to reset the > li border definitions*/;}
.lotusui30 .lotusBoard .lotusPostHover .lotusCommentList .lotusAddComment, .lotusui30 .lotusBoard .lotusPostSelected .lotusCommentList .lotusAddComment{top:-1px;}
.lotusui30 .lotusBoard .lotusAddComment a.lotusCommentInput{display:block;padding:5px 10px;color:#666;}
.lotusui30 .lotusBoard .lotusCommentItem > .lotusMeta{display:block;padding:5px 10px;}/*this makes both a link or a span/div classed with lotusMeta work*/
.lotusui30 .lotusBoard .lotusCommentItem > a.lotusMeta{color:#1970B0;}/*we want the link to use the link color and lotusMeta to control the size/padding*/
/* IE6 workaround for child selector */
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem .lotusMeta{display:block;padding:5px 10px;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem a.lotusMeta{color:#1970B0;}
.lotusui_ie6 .lotusui30 .lotusBoard .lotusCommentItem .lotusPost .lotusMeta{display:inline;padding:0;}
/*end IE6 workaround*/
.lotusui30 .lotusBoard .lotusPostAuthorInfo{width:auto;padding:0 5px 0 15px;}
.lotusui30 .lotusBoard .lotusPost .lotusPerson { font-weight:bold; padding-left:2px; }
.lotusui30 .lotusBoard .lotusPost .lotusPostAction .lotusPerson{padding-left:0;}/*a person name in an the post action is in a sentence so shouldn't have right padding*/
/*the controls on an activity stream page*/
/*lotusStreamUpdate is an additional class along with lotusForm2*/
.lotusui30 .lotusBoard .lotusStreamUpdate{overflow:hidden;}
.lotusui30 .lotusBoard .lotusCommentList .lotusStreamUpdate{background:none;}
.lotusui30 .lotusBoard .lotusStreamUpdate label{font-weight:bold;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusFieldEmphasis{background-color:#fff;
-moz-box-shadow: 0 4px 4px #f3f3f3 inset;
-webkit-box-shadow: 0 4px 4px #f3f3f3 inset;
box-shadow: 0 4px 4px #f3f3f3 inset;}/*shadow must be 1px bigger because of the overlapping textarea border*/
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusFieldEmphasis{border:1px solid #ddd;padding:5px;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{width:100%;height:5em;padding:5px;margin:0;display:block;background:none;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;}
.lotusui30.lotusImagesOff .lotusBoard .lotusStreamUpdate .lotusText, .lotusImagesOff .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{background:#fff;}/*textarea border does not show in firefox high contrast with transparent background*/
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusTextCollapsed.lotusText{height:2.25em;border-color:#ddd;}
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText.lotusTextCollapsed{height:1.25em;}
.lotusui_ie .lotusui30 .lotusBoard .lotusStreamUpdate .lotusText{border:0;padding:0;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusActions{margin-top:5px;}
.lotusui30 .lotusBoard .lotusStreamUpdate .lotusActions .lotusInlinelist.lotusRight li{padding:0 7px 0 0;margin-right:7px;}/*only want to do this for the actions that are aligned right, to make the right edge flush with the status input box*/
.lotusui30 .lotusBoard .lotusPaging.lotusPagingTop{margin-top:10px;margin-bottom:0;}/*because IE6 reads the last class, don't do anything if there isn't lotusPagingTop*/
.lotusui30 .lotusBoard .lotusPaging .lotusSelected{font-weight:bold;color:#222;}
.lotusui30 .lotusBoard .lotusPaging option.lotusMenuSeparator{border-top:1px solid #ccc;}/*options can't be styled in IE*/
.lotusui_ie6 .lotusui30 .lotusBoard .lotusPaging select{margin:0;}/*so borders don't get cut off*/
.lotusui_ie .lotusui30 .lotusBoard .lotusPaging select{font-size:1em;}
/*feeds for an activity stream*/
.lotusui30 .lotusBoard .lotusFeeds{margin-top:8px;}
.lotusui30 .lotusBoard .lotusFeeds a.lotusFeed{margin-left:0;}
/*discussion forum*/
.lotusui30 .lotusForum .lotusPost{margin:7px 0;background-color:#ccc;}
.lotusui30.lotusImagesOff .lotusForum .lotusPost, .lotusImagesOff .lotusui30 .lotusForum .lotusPost{border-width:1px;border-style:solid;}
.lotusui30 .lotusForum .lotusPostAuthorInfo{width:100px;text-align:center;}
.lotusui30 .lotusForum .lotusPostAuthorInfo .lotusPostAvatar{background:url(../../images/lotusSprite-8bit.png) 0 -2006px no-repeat;}
.lotusui30 .lotusForum .lotusPostContent{padding:7px 15px;background-color:#fff;}
.lotusui30 .lotusForum .lotusPostContent .lotusTitle{font-size:1.2em;font-weight:bold;}
.lotusui30 .lotusForum ul.lotusCommentList .lotusPost{background-color:#eee;}
.lotusui30 .lotusForum ul.lotusCommentList li.lotusCommentItem{border-width:0;}
.lotusui30 .lotusForum ul.lotusCommentList .lotusChild{margin-right:0;padding-right:20px;list-style-type:none;background: url(../../images/commentIndent_rtl.png) right top no-repeat;}/*we can't use a sprite for this graphic because the size of posts are erratic and the rest of the sprite would bleed through*/
.lotusui30 .lotusForum .lotusPostDetails{padding:5px 0;}
.lotusui30 .lotusForum .lotusPostDetails blockquote{margin:4px 0;padding:4px 8px;width:75%;color:#545454;background-color:#eee;border-width:1px 3px 1px 1px;border-style:solid;border-color:#ccc;}
/*simple comment bubble*/
/*these styles are NOT an extension of lotusPost*/
.lotusui30 .lotusCommentBubble{padding-top:10px;background:url(../../images/lotusSprite-8bit.png) 90% -2869px no-repeat;zoom:1;}
.lotusui30 .lotusCommentBubbleBody{padding:5px 15px 5px 10px;background-color:#eee;}
.lotusui30.lotusImagesOff .lotusCommentBubbleBody, .lotusImagesOff .lotusui30 .lotusCommentBubbleBody{border-width:1px;border-style:solid;}
/***********************************************************/
/*** D I A L O G ***/
/*this can be wrapped in a dojo dialog, if desired, which gives you the lightbox behavior for free, else, wrap it in a div assigned the class lotusDialogWrapper*/
.lotusui30 .lotusDialogWrapper {position:absolute;}
.lotusui_ie6 .lotusui30 .lotusDialogWrapper {width:525px;}/*this used to be 500px, the extra 25px is to accommodate forms with left labels*/
.lotusui30 .lotusDialogBorder {border:1px solid #999;
-moz-box-shadow:0 3px 7px #999;
-webkit-box-shadow:0 3px 7px #999;
box-shadow:0 3px 7px #999}
.lotusui30 .lotusDialogBorder .lotusDialog {background-color:#fff;}
.lotusui30 .lotusDialog .lotusDialogHeader {border-bottom:1px solid #ccc; padding:15px 20px; background-color:#fafafa;
background-image:-moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));}
.lotusui30 .lotusDialog .lotusHeading {font-size:1.5em; font-weight:bold; margin-left:30px;}
.lotusui30 .lotusDialog .lotusHeading {background:none; border:0; padding:0;} /*overriding deprecated css*/
/* close icon */
.lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose {padding:3px; border:1px solid #aaa; line-height:1em; position:absolute; top:15px; left:15px;}
.lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose img {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-555px -8px; width:16px; height:16px;} /*don't use opacity here because the gen3 image has partial transparency and IE can't handle opacity overrides when there is transparency*/
.lotusui30.lotusImagesOff .lotusDialog .lotusDialogHeader .lotusDialogClose img, .lotusImagesOff .lotusui30 .lotusDialog .lotusDialogHeader .lotusDialogClose img {display:none;}
.lotusui30 .lotusDialog .lotusFormTable, .lotusui30 .lotusDialog .lotusFormTable td, .lotusui30 .lotusDialog .lotusDialogContent {padding:15px 20px; max-height:300px; overflow:auto; border-bottom:1px solid #aaa;}
.lotusui_ie .lotusui30 .lotusDialog .lotusDialogContent{position:relative; overflow-x:hidden;} /*position:relative is needed to make sure relatively positioned elements within a scrolled div scroll properly - otherwise they act like fixed-position elements. overflow-x:hidden is needed to prevent the horizontal scrollbar from appearing because of the position:relative.*/
.lotusui_ie6 .lotusui30 .lotusDialog .lotusDialogContent {height:expression(this.scrollHeight > 299 ? "300px" : "auto");}
.lotusui30 .lotusDialog .lotusHeading2 {margin:0 0 5px; font-size:1.2em; font-weight:bold;}
.lotusui30 .lotusDialog .lotusHeading2 {background:none; border:0; color:#444; padding:0; text-shadow:none;} /*overriding deprecated css*/
.lotusui30 .lotusDialog .lotusDialogFooter {background-color:#eaecee; padding:12px 15px; text-align:left;}
.lotusui30 .lotusDialogFooter .lotusBtn {margin-right:5px;}
.lotusui30 .lotusDialog td.lotusFormLabel {vertical-align:top;}
.lotusui30 .lotusDialog.lotusForm2 .lotusFormField:last-child {margin-bottom:0;} /*this CSS3 pseudo class is only supported in modern browsers (and not IE) which makes the multiple class selector okay to use here*/
/*overrides for forms in dialogs*/
/*we need this to keep the error icon on the same line as the form field in all browsers*/
.lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {min-width:310px;}
/*this is to fix display issues in IE7 & IE8 compatability mode, rtl languages*/
.lotusui_ie7 .lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {width:310px;}
.lotusui_ie6 .lotusui30 .lotusDialogBorder .lotusForm2 .lotusFormField {width:460px;}
/* for lightbox */
.lotusui30 .lotusOverlay {display:none; position:absolute; top:0; right:0; width:100%; background-color:#000; opacity:0.3; filter: alpha(opacity=30);}
/*override for tag cloud*/
.lotusui30 .lotusDialog .lotusTagCloud ul li {margin-bottom:3px; list-style:none;}
/***********************************************************/
/***************************************/
/*** D I S P L A Y C O N T R O L S ***/
/***************************************/
.lotusui30 .lotusViewControl{display:table;}
.lotusui30 .lotusViewControl span{margin:5px 10px 0 0;float:right;}/*styles for the text preceeding the control*/
.lotusui30 .lotusViewControl div{padding:1px;border:1px solid #ccc;display:table;background-color:#f1f1f1;
background-image:-moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);background-image:-webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ebebeb));background-position:top left;zoom:1;}
.lotusui30.lotusImagesOff .lotusViewControl div, .lotusImagesOff .lotusui30 .lotusViewControl div{border-width:0;}
.lotusui30 .lotusViewControl td{vertical-align:middle;padding:0 2px 0 0;}
.lotusui30 .lotusViewControl td div{display:-moz-inline-box;display:inline-block;overflow:hidden;}
.lotusui30.lotusImagesOff .lotusViewControl td div, .lotusImagesOff .lotusui30 .lotusViewControl td div{overflow:visible;}
.lotusui30 .lotusViewControl .lotusView{padding:0;width:18px;height:18px;display:block;float:right;background-image:url(../../images/lotusHSprite-8bit.png);background-repeat:no-repeat;}
.lotusui30 .lotusDetailsOff {background-position:-351px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusDetailsOn {background-position:-351px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusSummaryOff {background-position:-395px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusSummaryOn {background-position:-395px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusTreeOff {background-position:-439px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusTreeOn {background-position:-439px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusTileOff {background-position:-417px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusTileOn {background-position:-417px -7px;background-color:#fff;margin:0;border:1px solid #444;}
.lotusui30 .lotusFolderOff {background-position:-373px -7px;margin:1px;border-width:0;}
.lotusui30 .lotusFolderOn {background-position:-373px -7px;background-color:#fff;margin:0;border:1px solid #444;}
/*accessibility*/
.lotusui30.lotusImagesOff .lotusViewControl .lotusView, .lotusImagesOff .lotusui30 .lotusViewControl .lotusView{width:auto;height:auto;}
.lotusui30.lotusImagesOff .lotusViewControl .lotusView span, .lotusImagesOff .lotusui30 .lotusViewControl .lotusView span{margin:0 5px;}
.lotusui30.lotusImagesOff .lotusViewControl a.lotusSelected:hover, .lotusImagesOff .lotusui30 .lotusViewControl a.lotusSelected:hover, .lotusui30.lotusImagesOff .lotusViewControl a.lotusSelected:focus, .lotusImagesOff .lotusui30 .lotusViewControl a.lotusSelected:focus{cursor:default;text-decoration:none;}
.lotusui30.lotusImagesOff .lotusViewControl .lotusSelected .lotusAltText, .lotusImagesOff .lotusui30 .lotusViewControl .lotusSelected .lotusAltText{font-weight:bold;}
/***********************************************************/
/*** F E E D S **/
/*the feed links under the content*/
.lotusui30 .lotusFeeds{margin:5px 10px;}
.lotusui30 .lotusFeeds a.lotusFeed{padding-right:16px;margin-left:7px;background:url(../../images/lotusSprite-8bit.png) 100% -3177px no-repeat;display:-moz-inline-box;display:inline-block;zoom:1;min-height:12px/*ff2 fix*/}
.lotusui30.lotusImagesOff .lotusFeeds a.lotusFeed, .lotusImagesOff .lotusui30 .lotusFeeds a.lotusFeed{padding-right:0}
/***********************************************************/
/*** F I L T E R S **/
/*the filter links that are removable*/
.lotusui30 .lotusFilters2{font-size:.9em;line-height:1.4;margin:1px 0 5px 0;}
.lotusui30 .lotusFilters2 .lotusInlinelist{display:inline;}
.lotusui30 .lotusFilters2 .lotusInlinelist li{margin:0;padding:0 3px;border-width:0;}/*this is added for accessibility only (screen readers) so we want no visuals, however, margin from links (adjusted) needs to be transferred to padding on li tags for proper spacing*/
.lotusui30 .lotusFilters2 .lotusInlinelist:first-child li:first-child{padding-right:0;}/*this fix for proper edge alignment isn't perfect if the first inline list is preceded by text and there is a second inline list preceded by text (the spacing between the text and filters is different for each), otherwise, you don't really know the spacing isn't intentional.*/
.lotusui30 .lotusFilters2 .lotusInlinelist li a.lotusFilter{margin:0;}
.lotusui30 .lotusFilters2 a.lotusFilter{line-height:1.4;margin:0 2px;padding:1px 5px 1px 0;display:inline-block;white-space:nowrap;border:1px solid #999999;background-color:#fafafa;}
.lotusui30 .lotusFilters2 a.lotusFilter:first-child{margin-right:0;}/*proper edge aligment*/
.lotusui30 .lotusFilters2 a.lotusFilter, .lotusui30 .lotusFilters2 a.lotusFilter:hover, .lotusui30 .lotusFilters2 a.lotusFilter:focus{text-decoration:none;}
.lotusui30 .lotusFilters2 img.lotusDelete{margin:0 5px;vertical-align:baseline;}
.lotusui_ie .lotusui30 .lotusFilters2{vertical-align:middle;}
.lotusui_ie7 .lotusui30 .lotusFilters2 a.lotusFilter{margin-top:2px;margin-bottom:4px;vertical-align:middle;}
.lotusui_ie6 .lotusui30 .lotusFilters2 a.lotusFilter{margin-top:3px;margin-bottom:3px;padding-top:2px;padding-bottom:2px;vertical-align:middle;}
/*some additional items for filters under a header*/
.lotusui30.lotusImagesOff .lotusFilters2 img.lotusDelete, .lotusImagesOff .lotusui30 .lotusFilters2 img.lotusDelete{display:none;}
.lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter .lotusAltText, .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter .lotusAltText{margin:0 5px;}
.lotusui30 .lotusFilters2 .lotusDivider{margin:0 2px 0 5px;}/*accounts for the right margin on the last filter*/
.lotusui30 .lotusFilters2 a.lotusFilter + .lotusDivider{margin-right:5px;}
.lotusui30 .lotusFilters2 .lotusIcon{vertical-align:top;}
.lotusui_ie .lotusui30 .lotusFilters2 .lotusIcon{vertical-align:middle;}
.lotusui30 .lotusFilters2 a.lotusIcon:hover, .lotusui30 .lotusFilters2 a.lotusIcon:focus{text-decoration:none;}
.lotusui30 .lotusFilters2 a.lotusAction{font-size:1em;}
/* Make the X show up on the left side */
.lotusui_ie .lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter, .lotusui_ie .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter{padding-right:5px;}
.lotusui_ie .lotusui30.lotusImagesOff .lotusFilters2 a.lotusFilter .lotusAltText, .lotusui_ie .lotusImagesOff .lotusui30 .lotusFilters2 a.lotusFilter .lotusAltText{margin-left:0;}
.lotusui_ie .lotusui30 .lotusFilters2 a.lotusFilter img.lotusDelete,
.lotusui_ie .lotusui30 .lotusFilters2 a.lotusFilter span.lotusAltText{unicode-bidi: bidi-override;direction: rtl;}
.lotusui30 .lotusFilters2 a.lotusFilter img.lotusDelete:before, .lotusui30 a.lotusFilter span.lotusAltText:before{content: "\200F";}
/*** F L Y O U T **/
/*The flyout extends from a UI component to provide a preview or additional content*/
.lotusui30 .lotusFlyout {border:1px solid #aaa; background:#fff;
-moz-border-radius:13px;
-webkit-border-radius:13px;
border-radius:13px;
-moz-box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
-webkit-box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
}
.lotusui30 .lotusFlyout .lotusWrapper {overflow:hidden;} /*for the inset shadow on the header*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader {padding:13px 20px; font-size:0.9em;}
.lotusui30.lotusImagesOff .lotusFlyout .lotusFlyoutHeader, .lotusImagesOff .lotusui30 .lotusFlyout .lotusFlyoutHeader {border-bottom:1px solid #ccc;} /*because the header only has a background color*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusInlinelist {margin-left:20px;} /*to make room for the close icon*/
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusMeta {font-size:1em;}
.lotusui30 .lotusFlyout .lotusFlyoutHeader .lotusPerson {font-weight:bold;}
.lotusui30 .lotusFlyout .lotusClose {position:absolute; top:10px; left:10px; line-height:0.5/*to keep the click target square*/;}
.lotusui30 .lotusFlyout .lotusFlyoutContent {overflow-y:auto; margin-bottom:10px; position:relative/*for IE6/7*/;}
.lotusui_ie .lotusui30 .lotusFlyout .lotusFlyoutContent, .lotusui_ie8 .lotusui30 .lotusFlyout .lotusFlyoutContent {margin-bottom:0;} /*because IE6-8 don't have rounded corners*/
.lotusui30 .lotusFlyout .lotusFlyoutContentArea {padding:0 10px 10px; zoom:1;}
.lotusui30 .lotusFlyoutConnector {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-1090px -9px; width:8px; height:15px; position:absolute;}
/*the following styles are scoped to lotusFlyoutInner because they are in an iFrame*/
.lotusui30 .lotusFlyoutInner {padding:0 10px;}
.lotusui_ie6 .lotusui30 .lotusFlyoutInner .lotusHideOverflow {zoom:1;}
.lotusui30 .lotusFlyoutInner .lotusHeadingChunk {font-size:1.5em; line-height:1.2; margin-bottom:15px; clear:both;}
.lotusui30 .lotusFlyoutInner .lotusHeading2Chunk {font-size:1.5em; line-height:1.2; margin-bottom:15px; clear:both;} /*smaller text size when it is a status message with a file*/
.lotusui30 .lotusFlyoutInner .lotusHeading {font-size:1em; font-weight:normal; display:inline;}
.lotusui30 .lotusFlyoutInner .lotusHeading img {vertical-align:baseline; margin-left:5px;}
.lotusui_ie .lotusui30 .lotusFlyoutInner .lotusHeadingAction {margin-right:5px;}
.lotusui30 .lotusFlyoutInner .lotusHeadingAction img {vertical-align:baseline;}
.lotusui30 .lotusFlyoutInner .lotusFlyoutImage {float:right; padding:5px 0 15px 20px;}
.lotusui30 .lotusFlyoutInner .lotusDivider{margin:0 5px;color:#666;}
/* overrides */
.lotusui30 .lotusFlyoutInner .lotusChunk {margin-top:0; margin-bottom:15px;}
.lotusui30 .lotusFlyoutInner .lotusStatus {font-size:1.1em; font-style:italic; color:#444; font-family:Georgia, Tahoma, "Times New Roman", serif;}/*make sure this goes after lotusChunk*/
.lotusui30 .lotusFlyoutInner .lotusLike {position:relative;}/*for IE6/7*/
.lotusui30 .lotusFlyoutInner .lotusCommentList {margin:10px 0 0;}
.lotusui30 .lotusFlyoutInner .lotusBoard .lotusCommentList .lotusAddComment {top:-1px;}
.lotusui30 .lotusFlyoutInner .lotusBoard .lotusCommentList:after {background:none;}
.lotusui30 .lotusFlyoutInner .lotusForm2 {background-color:#f2f2f2;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormTitle {padding:15px;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusHeading2 {color:#222; font-size:1.3em;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormBody {padding:0 15px 10px;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter {margin:0 15px; overflow:hidden; padding:10px 0; border-top:1px dotted #aaa; background:none;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter li {margin-right:7px; padding:0 7px 0 0;}
.lotusui30 .lotusFlyoutInner .lotusForm2 .lotusFormFooter li.lotusFirst {margin-right:0; padding-right:0;}
/***********************************************************/
/*** F O R M S ***/
/*these styles are for inline and popup forms*/
/*new, div-based form, labels on top or left*/
.lotusui30 .lotusForm2{margin:0;padding:0;zoom:1;background-color:transparent;}
.lotusui30 .lotusForm2 .lotusMessage2{top:20px;margin:20px;}/*global error messages*/
.lotusui30 .lotusForm2 .lotusFormTitle{padding:15px 20px}
.lotusui30 .lotusForm2 .lotusFormBody{padding:0 20px 10px;}
.lotusui30 .lotusForm2 .lotusFormTitle .lotusHeading{font-size:1.3em;font-weight:bold;color:#222;}/*extra specificity here so if the form sits in a table it doesn't use the table lotusHeading size*/
.lotusui_ie .lotusui30 .lotusForm2 .lotusFormTitle .lotusHeading{float:none;/*override for when form is in a section*/}
.lotusui30 .lotusForm2 .lotusFormTitle .lotusMeta{font-size:1em;}
.lotusui30 .lotusForm2 label, .lotusui30 .lotusForm2 .lotusFormLabel{display:block;margin-bottom:3px;color:#222;}/*lotusFormLabel is used when you want text that looks like a label but isn't really. Chances are you would use a section header or fieldset legend instead, but this gives you another option*/
.lotusui_ie8 .lotusui30 .lotusForm2 label .lotusIcon img,
.lotusui_ie8 .lotusui30 .lotusForm2 .lotusFormLabel .lotusIcon img,
.lotusui_ie9 .lotusui30 .lotusForm2 label .lotusIcon img,
.lotusui_ie9 .lotusui30 .lotusForm2 .lotusFormLabel .lotusIcon img{vertical-align:text-top;}/*better alignment than the icon hanging below the label which middle alignment does*/
.lotusui30 .lotusForm2 .lotusFormRequired{margin-left:3px;}
.lotusui30 .lotusForm2 fieldset{margin:0;padding:0;border-width:0;min-width:271px;float:right;}/*this allows us to use fieldsets for non-sighted users, only*/
.lotusui30 .lotusForm2 .lotusFieldset{padding:0 5px 5px 5px;border:1px solid #aaa;}/*assign this to a fieldset you want to display*/
.lotusui30 .lotusForm2 fieldset legend{padding-left:0;padding-right:0;margin-bottom:2px;color:#222;font-weight:normal;}
.lotusui30 .lotusForm2 .lotusFieldset legend{padding-left:2px;padding-right:2px;}
/*adjustments to checkbox/radio buttons for better x-browser alignment*/
.lotusui30 .lotusForm2 input.lotusCheckbox{width:13px;height:13px;margin:0 0 0 3px;padding:0;vertical-align:bottom;position:relative;top:-2px;}
.lotusui_ie .lotusui30 .lotusForm2 input.lotusCheckbox{top:-5px;margin-left:6px;}
.lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox{top:-2px;}
.lotusui_ie9 .lotusui30 .lotusForm2 input.lotusCheckbox{top:-2px;}
.lotusui30 .lotusForm2 label.lotusCheckbox{display:inline;}/*use for radio buttons, too*/
.lotusui30 .lotusForm2 .lotusFormField{margin-bottom:10px;overflow:hidden;clear:both;zoom:1;}
.lotusui30 .lotusForm2 .lotusFormField .lotusMeta{margin-top:5px;}
.lotusui30 .lotusFormField .lotusFieldWrapper{float:right;/*this is to allow an error or help icon to align top*/}
.lotusui30 .lotusForm2 fieldset .lotusFieldWrapper{float:none;}
.lotusui30 .lotusForm2 .lotusText, .lotusui30 .lotusForm2 textarea, .lotusui30 .lotusForm2 select{width:275px;border:1px solid #aaa;padding:3px;}
.lotusui30 .lotusForm2 textarea.lotusText{overflow:auto;}/*removes textarea scrollbars in IE unless they are needed*/
.lotusui30 .lotusForm2 select{padding:1px 0;width:283px;}/*reset this to look better*/
.lotusui30 .lotusForm2 .lotusFormFooter{padding:10px 20px;background-color:#eee;}
.lotusui30 .lotusForm2 .lotusFormFooter .lotusBtn{margin-left:10px;}
.lotusui_ie .lotusui30 .lotusForm2 .lotusBtn{padding:1px 7px;width:auto;overflow:visible;}/*IE button padding hack (and reset button padding from default)*/
.lotusui_ie7 .lotusui30 .lotusForm2 input.lotusCheckbox{margin-right:-3px}/*fixes IE 3px margin jog bug - we aren't fixing in IE6 or IE8 because the checkboxes are different from the radio buttons in left alignment and this fix brings the checkbox too far to the left*/
.lotusui_ie .lotusui30 .lotusForm2 legend, .lotusui_ie8 .lotusui30 .lotusForm2 legend{margin-right:-6px}/*align legend with content when there's no border*/
.lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox, .lotusui_ie .lotusui30 .lotusForm2 .lotusFieldset legend, .lotusui_ie8 .lotusui30 .lotusForm2 .lotusFieldset input.lotusCheckbox, .lotusui_ie8 .lotusui30 .lotusForm2 .lotusFieldset legend{margin-right:0}/*reset*/
/*forms with labels to the left - lotusLeftLabels is an additional class beside lotusForm2*/
/* this version of the form has adjustments to padding to get the required field indicators to hang*/
.lotusui30 .lotusLeftLabels .lotusFormBody{padding-right:10px}
.lotusui30 .lotusLeftLabels label, .lotusui30 .lotusLeftLabels .lotusFormLabel{margin-right:10px;padding-left:10px;float:right;width:120px;position:relative;word-wrap:break-word;zoom:1;}/*lotusFormLabel is an extra label like a fieldset legend*/
.lotusui_ie6 .lotusui30 .lotusLeftLabels label, .lotusui_ie6 .lotusui30 .lotusLeftLabels .lotusFormLabel{position:static;}
.lotusui30 .lotusLeftLabels .lotusFormRequired{position:absolute;right:-8px;}
/*use lotusIndent for items needed to align with the form elements, when there isn't a left label*/
.lotusui30 .lotusLeftLabels .lotusIndent{margin-right:140px;}
.lotusui_ie6 .lotusui30 .lotusLeftLabels .lotusIndent{margin-right:150px;}
.lotusui30 .lotusLeftLabels label.lotusCheckbox{margin-right:0;padding-left:3px;float:none;width:auto;}
.lotusui30 .lotusLeftLabels fieldset input.lotusCheckbox{margin-right:0;}
.lotusui30 .lotusLeftLabels .lotusFormField .lotusMeta{width:275px;/*this needs to match the width of form fields*/}
/*form sections*/
.lotusui30 .lotusForm2 .lotusFormSection{margin-top:30px}
.lotusui_ie6 .lotusui30 .lotusForm2 .lotusFormBody .lotusFormSectionHeader .lotusArrow{overflow:hidden;}
.lotusui30 .lotusForm2 .lotusFormBody .lotusFormSectionHeader .lotusHeading2{font-size:1.1em;float:none;/*override for when form is in a section*/}
.lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusMeta{font-size:1em;}
.lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:visited, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:hover, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:focus, .lotusui30 .lotusForm2 .lotusFormSectionHeader .lotusHeading2 a:active{color:#222;text-decoration:none;}
.lotusui30 .lotusForm2 .lotusFormSectionBody{padding-top:10px;padding-right:15px;clear:both;}
/*form errors*/
/*lotusFormError applies to older form styles, it is for a message that shows up above a field in error or for an error message at the top of a smaller form. For messages at the top of a larger form or dialog, use an error message component*/
.lotusui30 .lotusForm2 .lotusFormError{color:#ce2c25;}/*for error text not in a message component*/
.lotusui30 .lotusForm2 .lotusFormErrorIcon{visibility:hidden;display:inline-block;margin-right:5px;font-weight:bold;color:#ce2c25/*alt text*/;}/*displays next to a field*/
.lotusui30 .lotusForm2 fieldset.lotusFieldset + span.lotusFormErrorIcon{margin-top:8px;}/*this is the error icon for a radio or checkbox group with a visible fieldset*/
.lotusui30 .lotusForm2 .lotusFormErrorField{border:1px solid #ce2c25;}
.lotusui30 .lotusForm2 fieldset.lotusFormErrorField{padding:5px;}
/*the fieldset top border disappears when the legend isn't visible. Using progressive enhancement (and advanced CSS selectors) we can create fallback styling*/
/*all fieldsets in error in IE get a background color instead of a border*/
.lotusui_ie .lotusui30 .lotusForm2 fieldset.lotusFormErrorField, .lotusui_ie8 .lotusui30 .lotusForm2 fieldset.lotusFormErrorField{border-width:0;background-color:#ffe3ed;}
/*IE7 and up browsers get a red border on a visible fieldset*/
.lotusui_ie7 .lotusui30 .lotusForm2 fieldset.lotusFieldset.lotusFormErrorField, .lotusui_ie8 .lotusui30 .lotusForm2 fieldset.lotusFieldset.lotusFormErrorField{border:1px solid #ce2c25;background-color:transparent;}
/***********************************************************/
/*** G R I D ***/
/*for a group of same-sized elements with a div as the outer wrapper*/
/*for example, a group of people photos*/
.lotusui30 .lotusGrid{zoom:1;margin:5px 0 0 0;overflow:hidden;zoom:1}
.lotusui_ie .lotusui30 .lotusGrid{margin-bottom:5px;}
.lotusui30 .lotusGrid div{margin:0 0 5px 5px;float:right}
/***********************************************************/
/*** H E A D E R ***/
/*found at the top of the page, center column*/
.lotusui30 .lotusHeader{margin-top:-5px;margin-bottom:15px;overflow:hidden;position:relative;zoom:1;}
.lotusui30 .lotusHeader .lotusHeading{font-size:1.7em;font-weight:normal;}
.lotusui30 div.lotusHeader{margin-bottom:15px;}/*this is for a simple header, not in a table layout, to adjust the bottom margin*/
.lotusui30 .lotusHeader img{margin-left:10px;}
.lotusui30 .lotusHeader .lotusDetails{margin-top:5px;position:relative;white-space:break-word;clear:both;}
.lotusui30 .lotusHeader .lotusDetails p{color:#222;}
.lotusui30 .lotusHeader .lotusBtnContainer{margin-top:10px;}
/***********************************************************/
/*** P O P U P H E L P ***/
.lotusui30 .lotusHelp{
margin:0;padding:5px;position:absolute;width:200px;
background-color:#ffffe1;border:1px solid #ccc;
-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;
overflow:hidden;
}
.lotusui30 .lotusHelp .lotusHelpHeader{margin:5px 5px 0 3px;float:right;overflow:hidden;}
.lotusui_ie .lotusui30 .lotusHelp .lotusHelpHeader{margin-top:1px;}
.lotusui30 .lotusHelp .lotusHeading{font-size:1.1em;color:#222;font-weight:bold;}
.lotusui30 .lotusHelp p{padding:0 5px 5px 0;line-height:1.5;/*this line-height is important for alignment and needs to be here in case this winds up on a page with a different line-height*/}
.lotusui30 .lotusMedium{width:300px;}/*you can put this as an additional class to set the width to 300 pixels*/
/***********************************************************/
/*** L E G A L S T A T E M E N T ***/
/*IBM logo and legal statement*/
/*3 different versions - regular pages, login page, and about page*/
.lotusui30 .lotusLegal .lotusLicense{color:#666;}
.lotusui30 .lotusLegal .lotusBuild{color:#000;}
.lotusui30 table.lotusLegal td{font-size:0.8em;line-height:1.2;}
.lotusui30 table.lotusLegal{margin:5px 25px 10px 25px;}
.lotusui30 table.lotusLegal td{vertical-align:middle;padding:5px;}
.lotusui30 .lotusLogin .lotusLegal{margin-right:10px;}
.lotusui30 .lotusLogin table.lotusLegal{margin-top:15px;}
/***********************************************************/
/*** L I K E ***/
.lotusui30 .lotusLike {display:inline-block; color:#222; font-size:0.9em;}
.lotusui30 .lotusLike .lotusLikeCount {padding:2px 22px 2px 4px; margin-left:7px; position:relative; display:inline-block; background:#f2f2f2; border:1px solid #ddd;
-moz-border-radius: 2px;
border-radius: 2px;}
.lotusui30 .lotusLike .lotusLikeCount .lotusIconLike {position:absolute; right:3px;}
.lotusui30 .lotusLike .lotusDivider {margin:0 2px; color:#ccc;}
.lotusui30 .lotusLike .lotusLikeConnector {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-1117px -13px; width:7px; height:6px; position:absolute; bottom:4px; left:-7px;}
.lotusui_ie .lotusui30 .lotusLike .lotusLikeCount {display:inline; zoom:1; margin-left:8px;} /* inline-block fix and spacing */
.lotusui_ie .lotusui30 .lotusLike, .lotusui_ie .lotusui30 .lotusLike .lotusLikeText {display:inline; zoom:1;} /* inline-block fix */
.lotusui_ie .lotusui30 .lotusLike .lotusLikeDescription, .lotusui_ie .lotusui30 .lotusLike .lotusDivider, .lotusui_ie .lotusui30 .lotusLike .lotusLikeAction {padding-bottom:3px; zoom:1;} /* match the bubble padding and border to make the text align */
.lotusui_ie6 .lotusui30 .lotusLike .lotusLikeConnector {bottom:auto; top:11px;} /* position the connector in IE6 */
/* when there are no likes */
.lotusui30 .lotusLike .lotusNoLikes {padding-right:10px; padding-left:9px; text-decoration:none;}
/* when only you like it */
.lotusui30 .lotusLike .lotusDisabled {text-decoration:none; color:#222;}
/* when it is the simple, clickable, control */
.lotusui30 .lotusLike .lotusLikeSimple {background:none; border:0; margin:0; padding:0 19px 0 0;}
.lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike {right:0; top:1px/*to align with count only*/;}
.lotusui_ie .lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike, .lotusui_ie9 .lotusui30 .lotusLike .lotusLikeSimple .lotusIconLike {top:0;} /*IE tweeks to align with count only*/
.lotusui30.lotusImagesOff .lotusLike .lotusIconLike, .lotusImagesOff .lotusui30 .lotusLike .lotusIconLike {display:none;} /*hide the icon*/
.lotusui30.lotusImagesOff .lotusLike .lotusLikeCount, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeCount {padding-right:5px;} /* remove icon placeholder space */
.lotusui30.lotusImagesOff .lotusLike .lotusLikeSimple, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeSimple {padding-right:0;} /* order in this file is important */
.lotusui30.lotusImagesOff .lotusLike .lotusLikeText, .lotusImagesOff .lotusui30 .lotusLike .lotusLikeText {display:inline;} /* make this inline with lotusAltText */
.lotusui30.lotusImagesOff .lotusLike .lotusNoLikes, .lotusImagesOff .lotusui30 .lotusLike .lotusNoLikes {display:none;} /* don't even show the link when it provides no context */
/* light box */
.lotusui30 .lotusLikeLightBox {width:300px;}
.lotusui30 .lotusLikeLightBox .lotusLike {float:right; margin-left:5px;} /* needed for IE6/7 */
.lotusui30 .lotusLikeLightBox .lotusLikeHeader {border-bottom:1px solid #ccc; padding:8px 10px; overflow:hidden; zoom:1;}
.lotusui30 .lotusLikeLightBox .lotusLikeHeaderText {padding:3px 0; font-size:0.9em; color:#222;}
.lotusui30.lotusImagesOff .lotusLikeLightBox .lotusLikeHeaderText, .lotusImagesOff .lotusui30 .lotusLikeLightBox .lotusLikeHeaderText {padding-left:10px;} /*allow room for the dialog close icon*/
.lotusui30 .lotusLikeLightBox ul.lotusList {overflow:auto; height:360px;}
.lotusui30 .lotusLikeLightBox ul.lotusList li {margin:0; padding:0; border-bottom:1px solid #ededed; overflow:hidden;}
.lotusui30 .lotusLikeLightBox ul.lotusList li a {margin:1px; padding:5px 10px; display:block;}
.lotusui30 .lotusLikeLightBox ul.lotusList li a:hover, .lotusui30 .lotusLikeLightBox ul.lotusList li a:focus, .lotusui30 .lotusLikeLightBox ul.lotusList li a:active {background-color:#eee;}
.lotusui30 .lotusLikeLightBox .lotusLikeAvatar {display:block; cursor:pointer/*for IE6 and IE7*/;}
.lotusui30 .lotusLikeLightBox .lotusLikeAvatar img {float:right;} /*float has to be on img not lotusLikeAvatar for IE6/7*/
.lotusui30 .lotusLikeLightBox .lotusPerson {overflow:hidden; padding:7px 10px 7px 0; font-weight:bold; display:block; cursor:pointer/*for IE6 and IE7*/;}
/***********************************************************/
/*** L I S T S ***/
/*use in conjuction with sections if you want a more complex list*/
.lotusui30 ul.lotusList{clear:both;overflow:hidden;margin:0;padding:0;list-style-type:none}
.lotusui30 ul.lotusMeta.lotusList{font-size:1em;}/*lists that have meta text use normal text size but meta color. the class order is important so IE6 reads ul.lotusList*/
.lotusui30 ul.lotusList ul{list-style-type:none} /*makes sure all nested lists don't have bullets, even though we don't typically nest these straight lists*/
.lotusui30 ul.lotusList li {margin:1px 0;padding:3px 2px;clear:both;zoom:1}
.lotusui30 ul.lotusEditable li{text-align:left;overflow:hidden} /*use this class in combination with list class - allows you to put a delete button on a list item*/
.lotusui30 ul.lotusList li.lotusSelected{background-color:#eee}
.lotusui30 ul.lotusList li.lotusSelected a{text-decoration:none;color:#000;}
.lotusui30 ul.lotusList img.lotusLeft{margin-left:3px}
.lotusui30 ul.lotusList div p{margin-top:3px;margin-bottom:0}/*second line of data*/
.lotusui30.lotusImagesOff .lotusEditable .lotusDelete img, .lotusImagesOff .lotusui30 .lotusEditable .lotusDelete img{display:none}
/*styles for a definitions list*/
.lotusui30 dl.lotusList dt{padding:3px 10px;margin:10px 0 0 0;font-size:1.1em}
.lotusui30 dl.lotusList dd{margin:0;padding:5px 10px}
/***********************************************************/
/*** M E D I A V I E W E R ***/
/*overall widget styling */
.lotusui30 .lotusGallery {
background: none repeat scroll 0 0 #212327;
text-align: right;
width: 700px; /*default*/
}
/*Main item section styling*/
.lotusui30 .lotusGallery .lotusItemViewer {
position: relative;
height: 323px;
border-top: 1px solid #34363A;
clear: both;
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem {
margin:20px 0;
text-align: center;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem .lotusNoImage { /*goes on lotusItem inner div*/
color: white;
font-size: 1em;
padding-top: 135px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusItem img {
border: 0 none;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusClickable {
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavControl {
top: 0;
height: 100%;
position: absolute;
z-index: 999;
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavControl img {
height: 100%;
width: 32px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavNext {
float: left;
left: 0;
padding: 0 20px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavNext img{
background-position: -747px 50%;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavEnd img{
background-position: -709px 50%;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavPrev {
float: right;
right: 0;
padding: 0 20px;
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusNavPrev img{
background-position: -785px 50%;
}
.lotusui30 .lotusGallery .lotusItem img{
-moz-box-shadow:0 0 5px #111;-webkit-box-shadow:0 0 5px #111;box-shadow:0 0 5px #111;
}
/*thumbnail section styling*/
.lotusui30 .lotusGallery .lotusThumbnails {
position: relative;
overflow:hidden;
border-bottom: 1px solid #111;
height: 81px; /*this is needed so webkit browsers can do the vertical icon centering*/
background-color:#222428;
background-image:-moz-linear-gradient(top, #383A3E 0%, #222428 100%);
background-image:-webkit-gradient(linear, left top, left bottom, from(#383A3E), to(#222428));
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnails{
height:80px; /*need this for IE to contain the 100% height of the nav controls*/
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavControl {
top: 0;
height: 100%;
position: absolute;
padding:0 23px;
z-index: 999;
cursor: pointer;
border-top: 1px solid #494A4E;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavControl img{
height:100%;
width:10px;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavNext {
left: -1px;
-moz-box-shadow: 5px 0 10px #111;
-webkit-box-shadow: 5px 0 10px #111;
-box-shadow: 5px 0 10px #111;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavNext img {
background-position: -823px 50%;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavPrev {
right: -1px;
-moz-box-shadow: -5px 0 10px #111;
-webkit-box-shadow: -5px 0 10px #111;
-box-shadow: -5px 0 10px #111;
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusNavPrev img{
background-position: -839px 50%;
}
.lotusui30 .lotusGallery .lotusThumbnailScroller {
text-align: right;
border-top: 1px solid #1B1C20;
position:relative; /*for IE7*/
width:auto; /*IE6 needs this set, 590px for example*/
overflow: hidden;
padding-top: 15px;
padding-bottom: 15px;
text-align: right;
margin:0 55px;
background-color:#191A1E;-moz-box-shadow:inset 0 -2px 5px #111;-webkit-box-shadow:inset 0 -2px 5px #111;box-shadow:inset 0 -2px 5px #111;
}
.lotusui30 .lotusGallery .lotusThumbnailScroller_rtl {
float: left;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip {
width:5000px; /*need to make this foolproof length to accommodate longest batch of images, to keep from wrapping in IE6.*/
padding-right: 10px;
padding-left: 10px;
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnailStrip {
position: relative;
right: auto;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail {
float: right;
margin: 0 5px;
position: relative;
width:50px;height:50px;/*default image size*/
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusLast{
width:60px;
border-left:3px solid #777;
margin-left:5px;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusSelected {
margin: -5px;
padding:3px;
border: 2px solid #eee;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusImageTrim {
position:absolute;
height: 50px; width: 50px; /*default image size*/
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusNoThumbnail .lotusImageTrim {
border:2px dashed #444;
height: 46px; width: 46px; /*adjusted default image size*/
}
.lotusui30 .lotusGallery .lotusThumbnails .lotusThumbnailTemplate {
position: absolute;
right: 0;
top: -9999px;
width:50px;
height:50px;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail_rtl {
float: left;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail img{
position: relative;
cursor: pointer;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusThumbOverlay {
position: absolute;
cursor: pointer;
top: 0;
right: 0;
width: 100%;
height: 100%;
}
.lotusui30 .lotusGallery .lotusThumbnailStrip .lotusLast .lotusThumbOverlay {
width:50px; /*needed to override this to match the thumbnail size*/
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusThumbOverlay {
right: auto;
}
/*.lotusui30 .lotusThumbnails .lotusGallery .lotusThumbnailStrip .lotusThumbnail .lotusSelected {
top: -5px;
right: -5px;
border: 1px solid #6D6F72;
}*/
/*footer section styling*/
.lotusui30 .lotusGallery .lotusItemDetails {
clear: both;
padding: 20px 20px 0;
background-color:#1B1C20;border-top:1px solid #323336;
height:6.75em;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails {
color: #ccc;
font-size: 1.2em;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusInner {
overflow: hidden;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusTitle {
font-size:inherit;
line-height:inherit; /*don't let the oneui30 dijit theme apply here*/
color:#fff;
font-weight:bold;
white-space: nowrap;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails .lotusTitle .lotusCount{
margin-left:10px;
padding-left:10px;
color: #ccc; /*this should be the same color as lotusMeta*/
border-left:1px solid #B2B2B2;
font-weight:normal;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusDetails p {
margin:0;
display: inline;
line-height:inherit;
font-size:.9em;
white-space:nowrap;
width:100%;overflow:hidden;
-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusMeta {
font-size:.75em;
color:#ccc;
}
.lotusui30 .lotusGallery .lotusItemDetails .lotusMeta a {
color: #84cbf4;
text-decoration: none;
}
/*shared styling*/
.lotusui30 .lotusGallery a.lotusNavDisabled {
cursor: default !important;
}
.lotusui30 .lotusGallery a.lotusNavControl img {
background-image: url("../../images/lotusHSprite-8bit.png");
background-repeat: no-repeat;
opacity: 0.5;
filter: alpha(opacity=50);
}
.lotusui30 .lotusGallery a.lotusNavControl:hover img, .lotusui30 .lotusGallery a.lotusNavControl:focus img {
opacity: 0.75;
filter: alpha(opacity=75);
}
.lotusui30 .lotusGallery a.lotusNavDisabled img, .lotusui30 .lotusGallery a.lotusNavDisabled:hover img, .lotusui30 .lotusGallery a.lotusNavDisabled:focus img {
opacity: 0.2;
filter: alpha(opacity=20);
}
.lotusui30 .lotusGallery .lotusItemViewer .lotusLoading {
background: url("../../images/loading.gif") no-repeat scroll center center transparent;
height: 100%;
}
.lotusui30 .lotusGallery .lotusLoading {
background: url("../../images/loading.gif") no-repeat scroll center center transparent;
width: auto;
height: auto;
}
.lotusui_ie .lotusui30 .lotusGallery .lotusThumbnails .lotusLoading {
background-position: 34px center;
}
/***********************************************************/
/*** M E G A M E N U **/
/*these are a type of dropdown used for global navigation*/
.lotusui30 .lotusNavMenu {margin:0; position:absolute; border:1px solid #5f5f5f; z-index:900;}
.lotusui30 .lotusNavMenu table {margin:0; padding:5px 0; list-style-type:none; background-color:#fff;}
.lotusui30 .lotusNavMenu tr {white-space:nowrap; zoom:1; background-color:transparent; color:#222;}
.lotusui30 .lotusNavMenu th, .lotusui30 .lotusNavMenu table td {text-align:right; padding:0 5px;}/*added table to increase specificity because of lotusLayout*/
.lotusui30 .lotusNavMenu table.lotusAlignRight th, .lotusui30 .lotusNavMenu table.lotusAlignRight td {text-align:left;}
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator td {border-bottom:1px solid #ccc;}
.lotusui30 .lotusNavMenu tr img {margin:0 8px 0 3px;}
.lotusui_ie .lotusui30 .lotusNavMenu tr img {margin-top:-10px;}/*image alignment adjustment*/ /*TODO look at this when refactoring apps menu*/
.lotusui30 .lotusNavMenu tr a, .lotusui30 .lotusNavMenu tr span {display:inline-block; padding:5px;}
.lotusui30 .lotusNavMenu .dijitTooltipContainer a:hover {text-decoration:underline;}
.lotusui30 .lotusNavMenu .dijitTooltipContainer {background-image:none; background-color:transparent; border-width:0;}
.lotusui30 .lotusNavMenu .dijitTooltipConnector {display:none;}
/*spacing adjustments*/
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator td {padding-bottom:5px;}
.lotusui30 .lotusNavMenu tr.lotusMenuSeparator + tr th, .lotusui30 .lotusNavMenu tr.lotusMenuSeparator + tr td {padding-top:5px}/*this won't work in IE6*/
/*menu layout*/
.lotusui30 .lotusNavMenu .lotusTwoCol {width:535px;}
.lotusui30 .lotusNavMenu .lotusTwoCol tr a {width:245px; text-decoration:none;}
.lotusui30 .lotusNavMenu .lotusEllipsis {width:auto;}
/*two column*/
.lotusui30 .lotusNavMenu .lotusTwoCol tr img {margin:0 3px;}
/***********************************************************/
/*** M E N U ***/
/*this menu is set up to allow for rounded corners in all browsers and is a set width*/
.lotusui30 .lotusMenu{margin:0 0 15px 0;padding:5px 0;width:178px;word-wrap:break-word;background-color:#eee;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;}
.lotusui30 .lotusMenu .lotusInner{overflow:hidden;}
.lotusui30 .lotusMenu .lotusMenuSection{overflow:hidden;margin:0 0 5px 0;padding-bottom:5px;border-bottom:1px solid #ccc;zoom:1;}/*creates a section in the menu, with a divider at the bottom*/
.lotusui30 .lotusMenu .lotusMenuSubsection{padding:5px 20px 0 0;}/*allows you to indent a section of the menu*/
.lotusui30 .lotusMenu .lotusMenuHeader{margin:0 5px;padding:2px 25px 2px 0;}
.lotusui30 .lotusMenu .lotusMenuHeader, .lotusui30 .lotusMenu .lotusHeaderSelected .lotusMenuHeader{color:#000;}
.lotusui30 .lotusMenu .lotusMenuHeader a, .lotusui30 .lotusMenu .lotusMenuHeader a:visited, .lotusui30 .lotusMenu .lotusMenuHeader a:hover, .lotusui30 .lotusMenu .lotusMenuHeader a:focus, .lotusui30 .lotusMenu .lotusMenuHeader a:active{color:#000;}
.lotusui30 .lotusMenu .lotusHeaderSelected, .lotusui30 .lotusMenu .lotusHeaderSelected a, .lotusui30 .lotusMenu .lotusHeaderSelected a:visited, .lotusui30 .lotusMenu .lotusHeaderSelected a:hover, .lotusui30 .lotusMenu .lotusHeaderSelected a:focus, .lotusui30 .lotusMenu .lotusHeaderSelected a:active{color:#fff;}
.lotusui30 .lotusMenu .lotusMenuSubsection .lotusMenuHeader{margin-right:-15px;}
.lotusui30 .lotusMenu .lotusHeaderSelected{color:#fff;background-color:#595b5d;border-width:1px 0;border-style:solid;border-color:#595b5d;}
.lotusui30 .lotusMenu .lotusMenuHeader a.lotusArrow{position:absolute;right:9px;top:3px;}
.lotusui30 .lotusMenu .lotusHeading{font-size:1em;line-height:1.5;}
/*Use a ul element for menu items. Put an additional lotusIcons class on it if your menu items have icons*/
.lotusui30 .lotusMenu ul{margin:0;padding:0;list-style-type:none;}
.lotusui30 .lotusMenu li{zoom:1;}/*sets hasLayout in IE*/
.lotusui30 .lotusMenu li a{padding:2px 10px 2px 0;display:block;font-weight:normal;}
.lotusui30 .lotusMenu li a, .lotusui30 .lotusMenu .lotusMenuHeader{position:relative;zoom:1;}
.lotusui30 .lotusMenu li a, .lotusui30 .lotusMenu li a:visited, .lotusui30 .lotusMenu li a:hover, .lotusui30 .lotusMenu li a:focus, .lotusui30 .lotusMenu li a:active{color:#000;}
/*.lotusui30 .lotusMenu li a:hover, .lotusui30 .lotusMenu li a:focus, .lotusui30 .lotusMenu li a:active{text-decoration:underline;}*/
/*lotusIcons is assigned to a list of menu items with icons; an image is added inside the link before the text. This is legacy code*/
.lotusui30 .lotusMenu ul.lotusIcons img{position:absolute;right:10px;}
.lotusui30 .lotusMenu ul.lotusIcons .lotusSelected img{right:25px;}
.lotusui30 .lotusMenu ul.lotusIcons a{padding-right:29px;}
/*----------*/
.lotusui30 .lotusMenu li.lotusSelected a{margin:0 5px;padding-right:5px;background-color:#595b5d;border-width:1px 0;border-style:solid;border-color:#595b5d;font-weight:bold;}
.lotusui30 .lotusMenu li.lotusSelected a, .lotusui30 .lotusMenu li.lotusSelected a:visited, .lotusui30 .lotusMenu li.lotusSelected a:hover, .lotusui30 .lotusMenu li.lotusSelected a:focus, .lotusui30 .lotusMenu li.lotusSelected a:active{color:#fff;text-decoration:none;}
.lotusui30 .lotusMenu ul.lotusIcons .lotusSelected a{ padding-right: 24px; }
.lotusui30 .lotusMenu .lotusMenuSubsection li.lotusSelected a{margin-right:-15px;padding-right:25px;}
.lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a{ padding-right: 44px; }
.lotusui30.lotusImagesOff .lotusMenu .lotusMenuSubsection ul.lotusIcons a, .lotusImagesOff .lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons a{padding-right:10px;}
.lotusui30.lotusImagesOff .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a, .lotusImagesOff .lotusui30 .lotusMenu .lotusMenuSubsection ul.lotusIcons .lotusSelected a{padding-right:25px;}
.lotusui_ie6 .lotusui30 .lotusMenu .lotusMenuSubsection li.lotusSelected a{position:relative;zoom:1;}/*fix so negative margins aren't truncated by container*/
.lotusui30 .lotusMenu div.lotusChunk{margin:5px 0 0 5px;}/*lotusChunk allows you to apply vertical spacing within sections - wrap a div with this class around "chunks" of data*/
.lotusui30 .lotusMenu .lotusAction{margin-right:30px;display:inline-block;}
/*menu arrows are created as CSS sprites, using the lotusArrow class found in baseTheme.css*/
.lotusui30 .lotusMenu .lotusTwistyOpenMenu{background-position:4px -1016px;opacity:0.55;filter:alpha(opacity=55);}/*the section is selected*/
.lotusui30 .lotusMenu .lotusTwistyClosedMenu{background-position:4px -1112px;opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusMenu a.lotusArrow, .lotusui30 .lotusMenu a.lotusArrow:hover, .lotusui30 .lotusMenu a.lotusArrow:focus{text-decoration:none;}
/*unread badge*/
.lotusui30 .lotusMenu .lotusUnreadBadge {margin-right:15px; padding:0 0.4em; color:#fff; background:#767676; display:inline-block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:.85em;} /* display:inline; makes the background disappear in IE9 */
.lotusui30.lotusImagesOff .lotusMenu .lotusUnreadBadge, .lotusImagesOff .lotusui30 .lotusMenu .lotusUnreadBadge{border-width:1px;border-style:solid;}
/***********************************************************/
/*** M E S S A G E S ***/
/*these are the yellow warning/error messages that show up at the top of the content area*/
.lotusui30 .lotusMessage2{padding:5px;margin-bottom:12px;background-color:#fffabc;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;overflow:hidden;zoom:1;position:relative;}/*error message*/
.lotusui30 .lotusMessage2 .lotusIcon {margin:2px 0 0 5px;float:right;}
.lotusui30.lotusImagesOff .lotusMessage2 .lotusIcon{display:none;}, .lotusImagesOff .lotusui30 .lotusMessage2 .lotusIcon{display:none;}
.lotusui30 .lotusMessage2 .lotusMessageBody{margin:0 20px;}
.lotusui30 .lotusMessage2 .lotusDelete{position:absolute;left:5px;top:5px;}
.lotusui30 .lotusMessage2 .lotusDelete img{float:none;opacity:0.45;filter:alpha(opacity=45);}
.lotusui30 .lotusMessage2 .lotusDelete:hover img, .lotusui30 .lotusMessage2 .lotusDelete:focus img, .lotusui30 .lotusMessage2 .lotusDelete:active img{opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusMessage2 span.lotusAltText{float:right;margin-right:5px;margin-left:5px;}
.lotusui30.lotusImagesOff .lotusMessage2 .lotusDelete .lotusAltText, .lotusImagesOff .lotusui30 .lotusMessage2 .lotusDelete .lotusAltText{font-weight:bold;}
/***********************************************************/
/*** P A G I N G ***/
/*these are the page bars at the top and bottom of a table/list of entries*/
.lotusui30 .lotusPaging {margin-top:2px; padding:5px; overflow:hidden; clear:both; text-align:center; font-size:.9em; background-color:#fafafa; border:1px solid #ccc; zoom:1;}
.lotusui30 .lotusPaging a, .lotusui30 .lotusPaging a:visited {font-weight:bold;}
.lotusui30 .lotusPaging input {width:20px; text-align:center; font-size:0.9em;}
.lotusui30 .lotusPaging input, .lotusui30 .lotusPaging select {margin-top:-2px; margin-bottom:-2px;}
.lotusui30 .lotusPaging div,
.lotusui30 .lotusPaging .lotusInlinelist li.lotusFirst {padding-right:5px;}
.lotusui30 .lotusPaging .lotusInlinelist li {padding:0 6px; border-color:#8d8d8d;}
.lotusui30 .lotusPaging .lotusInlinelist li.lotusLast {padding-right:0;}
.lotusui30 .lotusPaging .lotusView a, .lotusui30 .lotusPaging .lotusView a:visited, .lotusui30 .lotusPaging .lotusView a:hover, .lotusui30 .lotusPaging .lotusView a:focus, .lotusui30 .lotusPaging .lotusView a:active {color:#444; font-weight:normal;}
.lotusui30 .lotusPaging .lotusView .lotusSelected a {font-weight:bold; text-decoration:none;}
/***********************************************************/
/*** P A L E T T E ***/
/*this is the palette that opens under the place bar to allow users to customize the UI */
.lotusui30 .lotusPalette{overflow:hidden;zoom:1;background-color:#7a7f84;border-bottom:6px solid #676b6f;}
.lotusui30 .lotusPalette .lotusLoading{background-image:url(../../images/loading.gif);}
.lotusui30 .lotusPaletteHeader{padding:7px 10px 0;overflow:hidden;zoom:1;position:relative;line-height:1.9em;background-color:#62656a;color:#fff;border-width:1px 0;border-style:solid;border-top-color:#62656a;border-bottom-color:#777b81;}
.lotusui30 .lotusPaletteHeader .lotusHeading{margin:0;padding:0;float:right;font-size:1.2em;font-weight:bold;color:#fff;}
/*.lotusPaletteHeader a{text-decoration:none;}*/
.lotusui30 .lotusPalette .lotusPaletteHeader a,
.lotusui30 .lotusPalette .lotusPaletteHeader a:hover,
.lotusui30 .lotusPalette .lotusPaletteHeader a:focus,
.lotusui30 .lotusPalette .lotusPaletteHeader a:active,
.lotusui30 .lotusPalette .lotusPaletteHeader a:visited{color:#fff;}
.lotusui30 .lotusPaletteHeader ul.lotusTabs{float:right; margin-right:0; width:75%;}
.lotusui30 .lotusPaletteHeader .lotusTabs li{border-width:0;}
.lotusui30 .lotusPaletteHeader .lotusTabs li,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected{background-color:transparent;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:visited{color:#fff;}
.lotusui30 .lotusPaletteHeader .lotusTabs a,
.lotusui30 .lotusPaletteHeader .lotusTabs a:visited{margin:2px 0 8px 0;padding:3px 8px;color:#fff;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a{font-weight:bold;}
.lotusui30 .lotusPaletteHeader .lotusTabs li a:hover,
.lotusui30 .lotusPaletteHeader .lotusTabs li a:focus{text-decoration:underline;}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:hover,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:focus{text-decoration:none;}
.lotusui30 .lotusPalette .lotusClose{margin-right:20px;padding:2px;float:left;}/*there is also a lotusBtnImg class on this element*/
.lotusui30 .lotusPaletteBody{margin-bottom:1px;background-color:#414648;border-width:2px 0;border-style:solid;border-top-color:#222;border-bottom-color:#222;overflow:hidden;zoom:1;}
.lotusui30 .lotusPaletteNav{width:200px;float:right;height:20.2em;padding:10px 0 10px 15px;border-left:1px solid #222;}
.lotusui30.lotusImagesOff .lotusPaletteNav, .lotusImagesOff .lotusui30 .lotusPaletteNav{height:22em;}/*to allow for expanded UI with image alt text*/
.lotusui30 .lotusPalette .lotusChunk{margin:0 10px 10px 0;overflow:hidden;}
.lotusui30 .lotusPalette .lotusSearch input.lotusText{width:143px;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader{margin:0 0 3px 10px;padding:0;color:#fff;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusHeading2{font-size:1.1em;font-weight:bold;color:#fff;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusBtnImg{margin-left:3px;padding:0 2px;float:right;vertical-align:bottom;}
.lotusui30 .lotusPaletteNav .lotusPaletteNavHeader .lotusBtnImg input{color:#fff;background:url(../../images/lotusHSprite-8bit.png) -651px -8px;}
.lotusui30 .lotusPalette .lotusSearch input.lotusText{background-color:#fff;color:#222;border-color:#fff;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu{margin-right:10px;border-width:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;height:15em;overflow:auto;background-color:#232426;}
.lotusui_ie .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu{height:12.8em;position:relative/*bug fix, need this here to overcome fixed positioning ie bug*/;}/*we want 6 items to show. Adjustment for IE*/
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:visited, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:hover, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:focus, .lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li a:active{margin-left:2px;/*to keep horizontal scrollbar from showing on click*/color:#fff;background-color:transparent;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a:visited{border-width:0;}
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusMore a{margin-left:5px;background:url(../../images/lotusSprite-8bit.png) 6px -45px no-repeat;/*opacity:0.55;filter:alpha(opacity=55) opacity lightens the text, too, disabling for now*//*55% is the min opacity for meeting contrast requirements on white/off-white background for small text*/}
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a,
.lotusui30 .lotusPaletteHeader .lotusTabs li.lotusSelected a:visited,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected,
.lotusui30 .lotusPalette .lotusPaletteNav .lotusMenu li.lotusSelected a{background-color:#595b5d;}
.lotusui30 .lotusPaletteContent{padding:10px 10px 10px 0;overflow:auto;zoom:1;height:20.2em;background-color:#37393c;}
.lotusui_ie6 .lotusui30 .lotusPaletteContent{position:relative;right:-3px;}
.lotusui30 .lotusPaletteContent.lotusPlain div.lotusIcon,
.lotusui_ie6 .lotusui30 .lotusPlain div.lotusIcon{width:1em;} /*when there are no icons, add this additional class to lotusPaletteContent and write out the lotusIcon div with an */
.lotusui30 .lotusPaletteWidgets{min-height:18.2em;}
.lotusui30 .lotusPaletteWidgets .lotusSelected{border-color:#fff;}
.lotusui30 .lotusPaletteWidget{margin:0 0 6px 10px;padding:6px 0;width:19em;height:2.6em;float:right;overflow:hidden;line-height:1.4em;border:1px solid #222;display:table; table-layout: fixed;background-color:#4d5054;color:#fff;}
.lotusui_ie .lotusui30 .lotusPaletteWidget{direction:ltr;}/*we only set the direction of rtl on the text of the widget to help solve layout issues*/
.lotusui30 .lotusPaletteWidgetHover{cursor:pointer;border-color:#fff;}/*this class needs to be added by javascript on hover because it is not on an anchor tag*/
.lotusui30.lotusImagesOff .lotusPaletteWidgets .lotusSelected, .lotusImagesOff .lotusui30 .lotusPaletteWidgets .lotusSelected,
.lotusui30.lotusImagesOff .lotusPaletteWidgetHover, .lotusImagesOff .lotusui30 .lotusPaletteWidgetHover{border-style:dotted;}
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:hover,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:focus,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:active,
.lotusui30 .lotusPaletteContent .lotusPaletteWidget a:visited{color:#fff;}
.lotusui30 .lotusPaletteWidget .lotusInner{display:table-row;height:2.6em;/*height fixes safari skinny widgets*/}
.lotusui30 .lotusPaletteWidget div{font-weight:bold;display:table-cell;vertical-align:middle;}
.lotusui30 .lotusPaletteWidget div.lotusIcon{width:34px;text-align:center;}
.lotusui30 .lotusPaletteWidget div.lotusIcon span{display:block;height:16px;width:16px;padding:3px;margin:.5em 5px;}
.lotusui30 .lotusPaletteWidget div.lotusIcon img{width:16px;height:16px;}/*need to force this size to preserve layout - so widgets will float properly*/
.lotusui30 .lotusPaletteWidget a.lotusIcon{display:table-cell;width:25px;vertical-align:middle;background:url(../../images/lotusSprite-8bit.png) 100% -4068px no-repeat;font-size:2em/*to make alt text larger*/;opacity:.8;filter:alpha(opacity=80);}
.lotusui30 .lotusPaletteWidget a.lotusIcon:hover,
.lotusui30 .lotusPaletteWidget a.lotusIcon:focus{text-decoration:none;opacity:1;filter:alpha(opacity=100);}
.lotusui30 .lotusPaletteWidget div.lotusIcon span{background-color:transparent;}
.lotusui_ie .lotusui30 .lotusPaletteWidget div{float:right;padding-top:.25em;}
.lotusui_ie .lotusui30 .lotusPaletteWidget div.lotusIcon span,
.lotusui_ie .lotusui30 .lotusPaletteWidget img{margin-top:-1px;}
.lotusui_ie .lotusui30 .lotusPaletteWidget a.lotusIcon{float:left;display:block;margin-top:-2px;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle{padding-left:.1em;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle {display:block;height:1.2em;margin:0;font-weight:bold;white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle span{font-size:.8em;}/*alt text for ratings, or any other text under the title*/
.lotusui_ie .lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:10em;direction:rtl;}
.lotusui_ie7 .lotusui30 .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:11em;}
.lotusui_ie7 .lotusui30 .lotusPaletteContent.lotusPlain .lotusPaletteWidget .lotusWidgetTitle .lotusTitle{width:13em;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget{height:5.3em;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon{width:50px;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon span{height:50px;width:50px;margin:0;padding:0 5px;background-color:transparent;border-width:0;}
.lotusui30 .lotusLargeWidgets .lotusPaletteWidget div.lotusIcon img{width:48px;height:48px;border:1px solid #000;}
.lotusui30 .lotusPaletteContent .lotusPaging{border-width:0;padding:2px 0;background-color:transparent;}
.lotusui30 .lotusPaletteContent .lotusPaging div{padding-right:0;margin-right:0;}
.lotusui30 .lotusPaletteContent .lotusPaging ul li,
.lotusui30 .lotusPaletteContent .lotusPaging div{color:#C1C0C0;}
.lotusui30 .lotusPaletteContent .lotusPaging .lotusInlinelist{margin-left:5px;}
.lotusui30 .lotusPalette .lotusPaging input.lotusText{border:1px solid #181818;background-color:#222;color:#fff;}
.lotusui30 .lotusPalette .lotusPaging a,
.lotusui30 .lotusPalette .lotusPaging a:visited{text-decoration:none;color:#fff;}
.lotusui30 .lotusPalette .lotusPaging a:hover,
.lotusui30 .lotusPalette .lotusPaging a:focus{text-decoration:underline;color:#fff;}
/*some additional options for widgets*/
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded,
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded a{padding:0 2px 16px 0;}
.lotusui30 .lotusPalette .lotusShowHide{display:table-cell;vertical-align:middle;text-align:left;padding-left:10px;}/*replaces the plus sign with show hide text, for an add features customize UI*/
.lotusui_ie .lotusui30 .lotusPaletteWidget .lotusShowHide{float:left;display:block;margin-top:.35em;}
.lotusui_ie .lotusui30 .lotusPaletteWidget lotusPaletteWidget .lotusAdded{margin-top:-.5em;}
.lotusui30.lotusImagesOff a.lotusIcon img, .lotusImagesOff .lotusui30 a.lotusIcon img{display:none;}
/*some additional options for widgets*/
.lotusui30 .lotusPalette .lotusAdded,
.lotusui30 .lotusPalette .lotusAdded a{color:#0c0;}/*to indicate that a widget has been added to the page*/
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded,
.lotusui30 .lotusPalette lotusPaletteWidget .lotusAdded a{color:#c1c0c0;}/*grays out header, if widget is already added to the page*/
/***********************************************************/
/*** P O P U P ***/
/*Apply this class to the dijitDialogUnderlay node only when the browser supports fixed positioning. This improves performance so scrolling doesn't repaint the underlay.*/
.lotusui30 .lotusPopupUnderlayFixed {position:fixed; width:100%; height:100%;}
.lotusui30 .lotusPopup {position:relative; border:3px solid #ababab/*this is needed for IE*/; border:3px solid rgba(3, 3, 3, 0.45); color:#222; z-index:10000/*when wrapped in dijit, the dijit node gets set to 10,000. we need to set this so the close icon can sit on top.*/; zoom:1;
-moz-border-radius:3px;
border-radius:3px;
-moz-box-shadow:0 0 5px rgba(34, 34, 34, 0.5);
-webkit-box-shadow:0 0 5px rgba(34, 34, 34, 0.5);
box-shadow:0 0 5px rgba(34, 34, 34, 0.5);}
.lotusui30 .lotusPopup .lotusPopupHeader {background:#fff; margin-bottom:-10px; position:relative; zoom:1;}
.lotusui30 .lotusPopup .lotusPopupHeader .lotusHeading {margin:0 20px; padding:20px 0 10px; border-bottom:2px solid #888; font-size:1.2em; font-weight:bold;}
.lotusui30 .lotusPopup .lotusPopupContent {background:#fff;}
.lotusui30 .lotusPopup .lotusPopupContentArea {padding:20px;}
.lotusui30 .lotusPopup .lotusPopupFooter {margin-top:-10px; padding:0 20px 20px; background:#fff;}
.lotusui30 .lotusPopup .lotusPopupClose {position:absolute; left:-14px; top:-14px; z-index:10001/*make this larger than lotusPopup*/; line-height:0/*so the anchor doesn't grow with large font-size*/;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose {line-height:1.5;} /*reverse above 0 height*/
.lotusui30 .lotusPopup .lotusPopupClose img {background-image:url(../../images/lotusHSprite-8bit.png); background-position:-150px 0; width:32px; height:32px;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose img, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose img {display:none;}
.lotusui30.lotusImagesOff .lotusPopup .lotusPopupClose, .lotusImagesOff .lotusui30 .lotusPopup .lotusPopupClose {left:10px; top:10px;}
.lotusui30 .lotusPopup .lotusPopupConnector {background-image:url(../../images/lotusHSprite-8bit.png); position:absolute;}
.lotusui30 .lotusPopupBottom .lotusPopupConnector {background-position:-855px -11px; width:15px; height:11px; top:-11px; right:20px;}
.lotusui30 .lotusPopupLeft .lotusPopupConnector {background-position:-897px -9px; width:11px; height:15px; top:20px; left:-11px;}
.lotusui30 .lotusPopupTop .lotusPopupConnector {background-position:-876px -11px; width:15px; height:11px; bottom:-11px; right:20px;}
.lotusui30 .lotusPopupRight .lotusPopupConnector {background-position:-914px -9px; width:11px; height:15px; top:20px; right:-11px;}
/***********************************************************/
/*** S E A R C H ***/
.lotusui30 .lotusSearch{margin:0;padding:0;}/*ie fix*/
.lotusui30 .lotusSearch .lotusText, .lotusui30 .lotusSearch .dijitTextBox{vertical-align:top;border:1px solid #aaa;background-color:#fff;}
.lotusui30 .lotusSearch .lotusText, .lotusui30 .lotusSearch .lotusScope{margin:0 1px;}
.lotusui30 .lotusSearch .lotusText{padding:2px 5px 3px;width:11em;zoom:1;}
.lotusui_ie .lotusui30 .lotusSearch .lotusText{font-size:1em;}/*to match alignment in 2.1*/
.lotusui30 .lotusSearch .lotusScope{padding:2px 4px 2px 25px;position:relative;display:block/*Force FF2 into block mode*/;display:inline-block;min-width:11em;height:1.33em;white-space:nowrap;line-height:1.33;background:#fff url(../../images/lotusSprite-8bit.png) 0 -1636px no-repeat;text-decoration:none;cursor:pointer;color:#000;border:1px solid #aaa;}
.lotusui30 .lotusSearch a.lotusScope:hover, .lotusui30 .lotusSearch a.lotusScope:focus, .lotusui30 .lotusSearch a.lotusScope:active {text-decoration:none; color:#fff; background-color:#595b5d; background-position:0 -1724px;}
.lotusui30 .lotusSearch .lotusScope .lotusIcon{margin-left:3px;vertical-align:top;}
.lotusui_ie .lotusui30 .lotusSearch .lotusScope{margin-top:1px;}
/*min-width not working in these cases*/
.lotusui_ie6 .lotusui30 .lotusSearch .lotusScope{width:11em;}
/*high contrast mode*/
.lotusui30 .lotusSearch .lotusScope .lotusAltText{position:absolute;top:0;left:0;width:16px;height:16px;min-width:0;background-image:none;display:none;}
.lotusui30.lotusImagesOff .lotusSearch .lotusScope .lotusAltText, .lotusImagesOff .lotusui30 .lotusSearch .lotusScope .lotusAltText{display:block;}
.lotusui30 .lotusSearch .lotusSearchButton{background-color:transparent;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-591px -8px;opacity:0.45;filter:alpha(opacity=45);}/*image button*/
.lotusui30 .lotusSearch .lotusSearchButton:hover, .lotusui30 .lotusSearch .lotusSearchButton:focus, .lotusui30 .lotusSearch .lotusSearchButton:active{opacity:0.55;filter:alpha(opacity=55);}
/***********************************************************/
/*** S E A R C H T A B ***/
/*this is the UI for a search/find control that hides the input fields until the user opens them*/
/*this must be inside a relatively positioned div - override default positioning in the code, if necessary*/
.lotusui30 .lotusSearchTab{position:absolute;left:0;bottom:0;padding:.3em 5px;z-index:1;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:#fff;}
.lotusui30 .lotusTabExpanded{-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:#fff;}
.lotusui30 .lotusSearchTab a, .lotusui30 .lotusSearchTab a:visited{padding-left:12px;display:block;background:url(../../images/lotusSprite-8bit.png) 0 -1014px no-repeat;opacity:0.55;filter:alpha(opacity=55);text-decoration:none;font-weight:bold;}
.lotusui30 .lotusSearchTab a, .lotusui30 .lotusSearchTab a:visited, .lotusui30 .lotusSearchTab a:hover, .lotusui30 .lotusSearchTab a:focus, .lotusui30 .lotusSearchTab a:active{color:#000;}
.lotusui30 form.lotusSearchForm{margin:0;padding:12px 10px;position:absolute;top:2.1em;left:0;display:none;z-index:0;background-color:#fff;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;white-space:nowrap;}
.lotusui30 .lotusSearchForm input.lotusText{margin:0;padding:2px 5px 3px;line-height:1.3;width:15em;vertical-align:top;border:1px solid #aaa;}
.lotusui30 .lotusSearchForm lotusBtn, .lotusui30 .lotusSearchForm select{vertical-align:middle;margin-right:3px;}
.lotusui30 .lotusSearchForm .lotusBtnImg{padding:2px;display:-moz-inline-box;display:inline-block;vertical-align:middle;}
.lotusui30 .lotusSearchForm .lotusSearchButton{background-image:url(../../images/lotusHSprite-8bit.png);background-position:-591px -8px;opacity:0.6;filter:alpha(opacity=60);}
/***********************************************************/
/*S E C T I O N */
/*this is used to space out different elements in all three columns*/
/*a section contains a header*/
.lotusui30 .lotusSection2{margin:0 -3px 15px 0;clear:both;zoom:1;position:relative;}
/*main section header - other headers are part of the section body*/
/*reset how the arrow sprite is defined (to accommodate making the lotusArrow link display:table-cell*/
.lotusui30 .lotusSection2 .lotusArrow{background-image:none;}/*takes the background image off of the link*/
.lotusui30 .lotusSection2 .lotusArrow img{background-image:url(../../images/lotusSprite-8bit.png);background-repeat:no-repeat;width:16px;height:16px;vertical-align:top;}/*moves the background image onto the image*/
.lotusui30 .lotusSection2 .lotusSectionHeader{display:table;width:100%;}/*ie6 and 7 don't support display:table, so we will make adjustments to use floats. The table solution is more optimal for long header text wrapping/image alignment */
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusInner{display:table-row;}/*extra styling flexibility*/
/*twisty arrow, for collapsable sections*/
/*twisty sprite definitions are in base.css*/
.lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:visited, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:hover, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:focus, .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:active{padding:5px 5px 5px 0;width:16px;display:table-cell;float:none;vertical-align:top;text-decoration:none}
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:visited, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:hover, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:focus, .lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader a.lotusArrow:active{float:right;}
.lotusui30.lotusImagesOff .lotusSection2 .lotusArrow img, .lotusImagesOff .lotusui30 .lotusSection2 .lotusArrow img{margin-top:0;}/*TODO: do we need this?*/
/*heading text*/
.lotusui30 .lotusSection2 .lotusHeading{padding:5px 0 5px 5px;font-size:1.2em;font-weight:bold;display:table-cell;vertical-align:middle;}/*assigned to the h2 tag or equivalent*/
.lotusui30 .lotusSection2 .lotusHeading a, .lotusui30 .lotusSection2 .lotusHeading a:visited, .lotusui30 .lotusSection2 .lotusHeading a:hover, .lotusui30 .lotusSection2 .lotusHeading a:focus, .lotusui30 .lotusSection2 .lotusHeading a:active{color:#222;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusHeading{padding-right:1px;/*text is being clipped*/float:right;width:70%;}/*header text*/
.lotusui30.lotusImagesOff .lotusSection2 .lotusHeading, .lotusImagesOff .lotusui30 .lotusSection2 .lotusHeading{margin-left:10px;}/*we need more room for text in place of the action icon*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusFirst{padding-right:10px;}/*add along with lotusHeading class when sections don't have a twisty arrow*/
/*action icons*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcon{padding:4px 0;display:table-cell;vertical-align:top;width:22px;background-repeat:no-repeat;}/*this is the action menu icon*/
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcon{float:left;}
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusActionIcon img{width:16px;height:16px;background-image:url(../../images/lotusHSprite-8bit.png);background-position:-499px -9px;opacity:0.45;filter:alpha(opacity=45)/*45% is the min opacity for meeting contrast requirements on white/off-white background*/}
.lotusui30.lotusImagesOff .lotusSection2 .lotusHeading .lotusIcon, .lotusImagesOff .lotusui30 .lotusSection2 .lotusHeading .lotusIcon{width:auto;height:auto;}/*settings for alternate text*/
/*for multiple icons*/
.lotusui30 .lotusSection2 .lotusSectionHeader .lotusIcons img{margin-right:3px;}
/*subheader before section body*/
.lotusui30 .lotusSection2 .lotusSubheader{padding:7px 10px;overflow:hidden;color:#444;border-bottom:1px solid #eee;}
.lotusui30 .lotusSection2 .lotusSubheader .lotusHeading2{font-size:1em;font-weight:normal;}
/*the section body*/
.lotusui30 .lotusSection2 .lotusSectionBody{margin:0 15px 0 0;padding:0 0 5px 0;}
/*subheader within a section body. With or without a twisty, optional help icon*/
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader{margin-top:5px;margin-bottom:5px;padding:0 0 0 5px;border-width:0;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusArrow{float:right;margin-right:-3px;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2{float:right;width:85%;font-size:1.1em;font-weight:bold;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:visited, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:hover, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:focus, .lotusui30 .lotusSection2 .lotusSectionBody .lotusHeading2 a:active{color:#000;}
.lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusIcon{float:left;padding-left:5px;padding-top:2px;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusSectionBody .lotusSubheader .lotusIcon{padding-top:5px;}
.lotusui30 .lotusSection2 div.lotusChunk, .lotusui30 .lotusSection2 div.lotusSubsection{margin-top:5px;clear:both;zoom:1;}
.lotusui30 .lotusSection2 .lotusLast{margin-bottom:0;}/*gets rid of extra bottom margin on the last "subsection"*/
/*scrolling*/
.lotusui30 .lotusSection2 .lotusSectionScroll{overflow:hidden;clear:both;}
.lotusui30 .lotusSection2 .lotusSectionScroll a{margin:0 auto;float:none;}
.lotusui30.lotusImagesOff .lotusSection2 .lotusSectionScroll, .lotusImagesOff .lotusui30 .lotusSection2 .lotusSectionScroll{overflow:visible;padding-bottom:3px;}
/*drag handle, for draggable section*/
.lotusui30 .lotusSection2 .lotusDraggable{cursor:default;}
.lotusui30 .lotusSection2 .lotusDragHandle{width:9px;height:17px;position:absolute;right:-7px;top:5px;background:url(../../images/lotusHSprite-8bit.png) -462px -8px no-repeat;zoom:1;cursor:move;visibility:hidden;}/*we may want to move this outside of a section and make it a more general class. It must be positioned within a relative div*/
/*footer*/
.lotusui30 .lotusSection2 .lotusSectionFooter{padding:7px 10px;border-top:1px solid #eee;clear:both;zoom:1}
/*adjustments for components within a section*/
.lotusui30 .lotusSection2 .lotusTagCloud{width:100%; overflow:hidden;}/*to fix issues with the tag cloud overflowing the section container*/
/*lists in sections and widgets*/
.lotusui30 .lotusSection2 .lotusList{margin:0 -8px 0 0;} /*allows selection to extend to the left and right of the list items*/
.lotusui30 .lotusSection2 .lotusList li{padding-right:8px;padding-left:5px;}
.lotusui_ie6 .lotusui30 .lotusSection2 .lotusList{zoom:1;position:relative;}/*margin offset truncation fix*/
/*for left alignment in a section*/
.lotusui30 .lotusSection2 .lotusVertTable, .lotusui30 .lotusSection2 div.lotusChunk .lotusVertTable{margin-right:-2px;}/*to offset the 2px padding on the first table cell*/
.lotusui30 .lotusSection2 ul.lotusTree{margin-right:-10px;}
.lotusui30.lotusImagesOff .lotusSection2 ul.lotusTree, .lotusImagesOff .lotusui30 .lotusSection2 ul.lotusTree{margin-right:15px;}
/*paging controls within a footer*/
.lotusui30 .lotusSection2 .lotusSectionFooter .lotusPaging{padding:2px 0;overflow:hidden;font-size:1em;line-height:1;height:auto;background-color:transparent;border-width:0;}
.lotusui30 .lotusSection2 .lotusPaging div{padding-right:0;}
/*section varieties*/
.lotusui30 .lotusPortlet{margin-right:0;border:1px solid #ccc;}
.lotusui30 .lotusPortlet .lotusSectionHeader{border-bottom:1px solid #ccc;background-color:#f4f4f4;background-image:-moz-linear-gradient(top, #f4f4f4 0%, #eaeaea 100%);background-image:-webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#eaeaea));background-position:left top;background-repeat:repeat-x;overflow:hidden;}
/*forms within a section*/
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormTitle{padding:15px 10px;}
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormBody{padding:0 10px 10px;}
.lotusui30 .lotusSection2 .lotusForm2 .lotusFormFooter{margin:0 -10px -5px;zoom:1;position:relative;}
.lotusui_ie .lotusui30 .lotusSection2 .lotusForm2 .lotusFormFooter{padding:10px 30px;}
/****************************************************************/
/*** S O R T ***/
/*these are for the sort controls found at the top of a table/list of entries*/
.lotusui30 .lotusSort{margin:3px 10px;font-size:.9em;}
.lotusui30 .lotusSort ul{display:inline;}
.lotusui30 .lotusSort li a{vertical-align:baseline;}
.lotusui30 .lotusSort .lotusInlinelist li{padding:2px 5px;}
.lotusui30 .lotusSort .lotusInlinelist li.lotusFirst{padding-right:0;}
.lotusui30 .lotusSort a{padding:0;background-repeat:no-repeat;display:-moz-inline-box/*for FF2*/;display:inline-block;vertical-align:middle;}
.lotusui30 a.lotusMoreSorts{padding-left:10px;}
.lotusui30 a.lotusActiveSort{text-decoration:none;}
.lotusui30 .lotusSort .lotusAscending, .lotusui30 .lotusSort .lotusDescending{padding-left:10px;}
.lotusui30.lotusImagesOff .lotusSort .lotusAscending, .lotusImagesOff .lotusui30 .lotusSort .lotusAscending, .lotusui30.lotusImagesOff .lotusSort .lotusDescending, .lotusImagesOff .lotusui30 .lotusSort .lotusDescending{padding-left:0;}
.lotusui30 .lotusSort .lotusAscending{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -4227px;}
.lotusui30 .lotusSort .lotusDescending{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -4323px;}
.lotusui30 .lotusSort a.lotusMoreSorts{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -775px;/*opacity:0.55;filter:alpha(opacity=55) opacity lightens the text, too, disabling for now*/;}
/****************************************************************/
/*** T A B L E S ***/
/*layout table*/
/*note, if you need to use the structure of a relative div containing an absolute div within a layout table, be aware that Safari will only show the portion of your absolute div that is within the table area. This is by design.*/
/*there is no cellpadding built into the plain vanilla layout tables. Used judiciously for complex layouts.*/
.lotusui30 .lotusLayout td{padding:0;vertical-align:top;text-align:right;} /*default alignment*/
.lotusui30 .lotusLayout td.lotusvAlignMid{vertical-align:middle;}/*allows you to override default alignment*/
.lotusui30 .lotusColumns{width:100%;}/*a varient of the layout table used to create multiple columns*/
.lotusui30 .lotusColumns td{padding:0 10px;}
.lotusui30 .lotusColumns td:first-child, .lotusui30 .lotusColumns td.lotusFirst{padding-right:0;}
.lotusui30 .lotusColumns td:last-child{padding-left:0;}
.lotusui30 .lotusColumns td.lotusLast{padding-left:0;} /*Keep this on a separate declaration from td:last-child for IE*/
.lotusui30 .lotusLayout .lotusAlignRight{text-align:left;}
.lotusui30 .lotusLayout .lotusCenter{text-align:center;}
/*used for presenting information in a vertical format*/
.lotusui30 .lotusVertTable th, .lotusui30 .lotusVertTable td{padding:2px;}
.lotusui30 .lotusVertTable th{padding-left:50px;text-align:right;vertical-align:top;font-weight:normal;color:#666;}
.lotusui30 .lotusVertTable p{margin:0;}
/*entry/data table*/
.lotusui30 .lotusTable{width:100%;border-collapse:collapse;border-bottom-color:#eee;}
.lotusui30 .lotusTable th, .lotusui30 .lotusTable td{padding:5px 2px;vertical-align:top;text-align:right;font-weight:normal;}
.lotusui30 .lotusTable th.lotusSubHeader{padding-top:15px;}/*wrap an h4 tag in a th tag that spans the table columns for a subheader*/
.lotusui30 .lotusTable .lotusFirst th.lotusSubHeader{padding-top:5px;}
.lotusui30 .lotusTable .lotusSummary td{padding:5px 2px 0 2px;}
.lotusui30 .lotusTable .lotusDetails td, .lotusui30 .lotusTable .lotusMore td{padding:0 2px 5px 2px;}
.lotusui30 .lotusTable td p:first-child, .lotusui30 p.lotusFirst{margin-top:0;}/*for IE6, you have to assign the class lotusFirst to the first paragraph*/
.lotusui30 .lotusTable td, .lotusui30 .lotusTable th.lotusRowHeader, .lotusui30 .lotusTable th.lotusSubHeader{border-top:1px solid #eee;}/*use lotusRowHeader as a class on a th tag for a header that is the first cell of a row*/
.lotusui30 .lotusTable .lotusLast td, .lotusui30 .lotusTable .lotusLast th.lotusRowHeader{border-bottom:1px solid #eee;}/*this give the option of a border under the last table row*/
.lotusui30 .lotusTable .lotusDetails td, .lotusui30 .lotusTable .lotusFirst td, .lotusui30 .lotusTable .lotusMore td, .lotusui30 .lotusTable .lotusFirst th.lotusRowHeader, .lotusui30 .lotusTable .lotusFirst th.lotusSubHeader{border-top-width:0;}
.lotusui30 .lotusTable th.lotusFirstCell, .lotusui30 .lotusTable td.lotusFirstCell{padding-right:10px;}
.lotusui30 .lotusTable th.lotusLastCell, .lotusui30 .lotusTable td.lotusLastCell{padding-left:10px;}
.lotusui30 .lotusTable .lotusAltRow td, .lotusui30 .lotusTable .lotusAltRow th.lotusRowHeader{background-color:#fafafa;}
.lotusui30 .lotusTable th.lotusAltCell, .lotusui30 .lotusTable td.lotusAltCell{background-color:#fafafa;border-width:0 0 1px 1px;border-style:solid;border-left-color:#fff;border-bottom-color:#fff;}
.lotusui30 .lotusTable .lotusAlignRight{text-align:left;}
.lotusui30 .lotusTable .lotusCenter{text-align:center;}
.lotusui30 .lotusTable .lotusSS{font-size:.9em;white-space:nowrap;width:30px;color:#666;}
.lotusui30 .lotusTable .lotusType{margin-right:5px;padding:0;font-weight:normal;font-size:.75em;color:#666;}/*allows you to add an image and text inside a header to indicate the type of entry - requires an additional class*/
/*h4 tags with class lotusTitle are used for entry titles*/
.lotusui30 .lotusTable .lotusComplete, .lotusui30 .lotusTable .lotusComplete a{text-decoration:line-through;color:#666;} /*for to do items*/
/*h5 tags with class lotusHeading are used for subsections in entry details*/
.lotusui30 .lotusTable .lotusHeading{margin:12px 0 2px 0;font-size:1.1em;}
/*when the h4 tag occurs in the details row (like in notifications), we need some bottom margin*/
.lotusui30 .lotusTable .lotusDetails .lotusTitle{margin-bottom:2px;}
.lotusui30 .lotusTable .lotusDivider{padding:0 5px;}
.lotusui_ie .lotusui30 .lotusTable .lotusDivider{display:inline-block;}
.lotusui30 .lotusTable .lotusFirstCell input{margin:3px 0 0 0;}
.lotusui30 .lotusui_ie .lotusTable .lotusFirstCell input{margin:0;}
.lotusui30 .lotusTable .lotusPaging td{border-color:#eee;}
.lotusui30 .lotusTable .lotusActions{white-space:nowrap;}/*fix for Safari*/
/*this table also shows up at the top of the UI, for announcements.*/
.lotusui30 .lotusInfoTable{margin:0 0 12px 0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#f0f0f0;border:1px solid #ccc;}
.lotusui30 .lotusInfoTable .lotusTableHeader{position:relative;zoom:1;}
.lotusui30 .lotusInfoTable .lotusHeading{margin:0;padding:0;font-size:1.2em;font-weight:bold;}
.lotusui30 .lotusInfoTable th, .lotusui30 .lotusInfoTable td{padding:5px 10px;}
.lotusui30 .lotusInfoTable .lotusClose{position:absolute;left:-5px;top:0;display:block;padding:2px;font-weight:bold;/*for HC mode*/}
.lotusui_ie6 .lotusui30 .lotusInfoTable .lotusClose{font-size:12px;}/*preserves the height of the close button when the font size is made larger*/
/*forms in a table*/
.lotusui30 .lotusTable .lotusForm2{background-color:#fafafa;}/*forms only have a background color when they are inline in a table*/
/*this is a bug fix for IE8, which incorrectly renders tables with column spans, and we can't just target the colspan attribute in the CSS, because it views all cells as having a colspan attribute. So we target each colspan other than 1*/
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="0"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="0"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="2"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="2"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="3"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="3"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="4"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="4"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="5"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="5"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="6"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="6"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="7"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="7"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="8"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="8"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="9"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="9"],
.lotusui_ie8 .lotusui30 .lotusTable th[colspan*="11"],
.lotusui_ie8 .lotusui30 .lotusTable td[colspan*="11"]
{width:100%;}
/****************************************************************/
/*** T A B S ***/
/*tabs are used in content area and titlebar. The style adjustments needed for the titlebar are grouped with the titleBar styles*/
.lotusui30 .lotusTabContainer{position:relative;border-bottom:1px solid #ccc;z-index:1;margin-top:8px;margin-bottom:10px;zoom:1;}
.lotusui30 ul.lotusTabs{margin:0 10px 0 0;padding:0;position:relative;bottom:-3px;overflow:hidden;list-style:none;zoom:1;width:100%;/*needed for IE*/}
/*not needed in right-to-left*/
.lotusui30.lotusImagesOff ul.lotusTabs, .lotusImagesOff .lotusui30 ul.lotusTabs{bottom:-4px;}
.lotusui30.lotusImagesOff ul.lotusTabs li.lotusSelected, .lotusImagesOff .lotusui30 ul.lotusTabs li.lotusSelected{border-bottom-width:0;}
.lotusui30 .lotusTabs li{margin:0 0 2px 2px;float:right;border-width:1px;border-style:solid;border-color:#eee;border-bottom-color:#ccc;background-color:#eee;zoom:1;}/*set margins to important so they are preserved within other components*/
.lotusui30 .lotusTabs li.lotusSelected{background-color:#fff;border-color:#ccc #ccc #fff;}
.lotusui30 .lotusTabs a, .lotusui30 .lotusTabs a:visited{padding:6px 8px;display:block;text-decoration:none;line-height:1;white-space:nowrap;}/*line-height is for IE, to keep the selected tab sitting on top of the border when there is a drop-down image in the tab. white-space is needed for some IEs.*/
.lotusui30 .lotusTabs li.lotusSelected a, .lotusui30 .lotusTabs li.lotusSelected a:visited{font-weight:bold;color:#000;}
.lotusui30 .lotusTabs a:hover, .lotusui30 .lotusTabs a:focus{text-decoration:none;}
/*a style that can be applied to a div that allows you to surround a tab content area with a border*/
.lotusui30 .lotusTabContent{margin:-10px 0 12px 0;padding:10px;border-width:0 1px 1px 1px;border-style:solid;border-color:#d9d9d9;}
/*condensed tabs*/
.lotusui30 .lotusTabCondensed {margin-top:5px;}
.lotusui30 .lotusTabCondensed .lotusTabs {margin:0; bottom:-1px; width:auto;}
.lotusui_ie .lotusui30 .lotusTabCondensed .lotusTabs {width:100%;} /*IE6 and IE7 need the 100% width in RTL*/
.lotusui30 .lotusTabCondensed .lotusTabs li {border-width:0 0 1px; border-color:#fff; margin:0; background:#fff;}
.lotusui30 .lotusTabCondensed .lotusTabs a {color:#666; padding:7px 5px; border-bottom:1px solid #ccc; position:relative; bottom:-1px; zoom:1;}
.lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a {margin:0 5px;}
.lotusui30 .lotusTabCondensed .lotusTabs li.lotusSelected:first-child a {margin-right:0;}
.lotusui30 .lotusTabCondensed .lotusTabs a:hover, .lotusui30 .lotusTabCondensed .lotusTabs a:focus, .lotusui30 .lotusTabCondensed .lotusTabs a:active, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:hover, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:focus, .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a:active {color:#000; border-color:#000;}
.lotusui_ie6 .lotusui30 .lotusTabCondensed .lotusTabs a, .lotusui_ie6 .lotusui30 .lotusTabCondensed .lotusTabs a:visited {display:inline-block;}
.lotusui30.lotusImagesOff .lotusTabCondensed ul.lotusTabs, .lotusImagesOff .lotusui30 .lotusTabCondensed ul.lotusTabs{bottom:-1px;}
.lotusui30.lotusImagesOff .lotusTabCondensed .lotusTabs .lotusSelected a, .lotusImagesOff .lotusui30 .lotusTabCondensed .lotusTabs .lotusSelected a {border:1px dashed #000;}
/****************************************************************/
/*** T A G C L O U D ***/
/*a tag cloud is a visual way of displaying the relative importance of tags, with lotusF1 being of least importance and lotusF5 being most important*/
.lotusui30 .lotusTagCloud ul{margin:0;padding:0}
.lotusui30 .lotusTagCloud li{margin-left:3px;display:inline;word-wrap:break-word;}/*margin is to insert spaces if the list is created without whitespace in the source code*/
.lotusui30 .lotusTagCloud a{text-decoration:none;}
.lotusui30 .lotusTagCloud a:hover, .lotusTagCloud a:focus{text-decoration:underline;}
.lotusui30 a.lotusF5, .lotusui30 a.lotusF5:visited{font-size:1.5em;color:#008abf;}
.lotusui30 a.lotusF4, .lotusui30 a.lotusF4:visited{font-size:1.167em;font-weight:bold;color:#003f69;}
.lotusui30 a.lotusF3, .lotusui30 a.lotusF3:visited{font-size:1.167em;color:#003f69;}
.lotusui30 a.lotusF2, .lotusui30 a.lotusF2:visited{font-size:.917em;font-weight:bold;color:#00649d;}
.lotusui30 a.lotusF1, .lotusui30 a.lotusF1:visited{font-size:.917em;color:#00649d;}
/***********************************************************/
/*** T I P S ***/
.lotusui30 .lotusTips{
margin:15px 0 5px 0;padding:5px;
-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;
background-color:#fffabc;border:1px solid #ccc;
overflow:hidden;zoom:1;
}
.lotusui30 .lotusTips.lotusFirst{margin-top:0;}/*this style definition (with no spaces) applies to any div with class="lotusTips lotusFirst"*/
.lotusui30 .lotusTips .lotusTipsHeader{margin:5px 0 10px 0;padding:0 5px 0 0;position:relative;overflow:hidden;zoom:1;}
.lotusui30 .lotusTips .lotusHeading{font-size:1.1em;color:#222;line-height:inherit;/*1.2 line-height defined globally for lotusHeading hides the underline of the x on hover and degrades alignment*/}
.lotusui_ie .lotusui30 .lotusTips .lotusHeading{line-height:1.5;}/*ie7 and prior don't support line-height:inherit*/
.lotusui30 .lotusTips .lotusClose{position:absolute;left:0;top:0;display:block;padding:2px;font-weight:bold;/*for HC mode*/}
.lotusui30 .lotusTips .lotusClose input{width:12px;height:12px;vertical-align:top;/*better supports layout in both strict and transitional doctypes*/background-position:-557px -10px;}
.lotusui_ie6 .lotusui30 .lotusTips .lotusClose{font-size:12px;}/*preserves the height of the close button when the font size is made larger*/
.lotusui30 .lotusTips .lotusHeading2{margin:2px 5px;font-weight:bold;color:#222;}
.lotusui30 .lotusTips p{margin:0;padding:5px;}
.lotusui30 .lotusTips ul{margin:0;padding-right:20px;}
.lotusui30 .lotusTips li{margin:0;padding:0;}
.lotusui30 .lotusTips .lotusInlinelist{padding-bottom:5px;padding-right:0;}
.lotusui30 .lotusTips .lotusInlinelist li{padding-bottom:5px;border-right-width:0;}
/***********************************************************/
/*** T R E E ***/ /*needs review - need additional tree visuals from Jason*/
.lotusui30 ul.lotusTree{margin:0;padding:0;list-style-type:none;line-height:1.5;}
.lotusui30 .lotusTree ul{margin:0 14px 0 0;padding:0;list-style-type:none;}
.lotusui30 .lotusTree li{margin:0;padding:1px 0;}
.lotusui30 .lotusTree a{text-decoration:none;}
.lotusui30 .lotusTree a:hover, .lotusui30 .lotusTree a:focus{text-decoration:underline;}
.lotusui30 .lotusTree .lotusIcon{margin-left:3px;}
.lotusui30 .lotusTree input{margin:0 0 0 3px;padding:0;vertical-align:middle;}
/*this is a specific type of tree*/
.lotusui30 .lotusOrgChart ul{margin-right:11px;}
.lotusui30 .lotusOrgChart li{padding:0;}
.lotusui30 .lotusOrgChart li a{margin:0;padding:0 20px 2px 0;display:block;}
.lotusui30 .lotusOrgChart .lotusBottom{padding:0 20px 5px 0;}
.lotusui30 .lotusOrgChartTop, .lotusui30 .lotusOrgChartMiddle, .lotusui30 .lotusOrgChartBottom{padding-right:20px;}
/*the second class definition for each type of node accommodates a div version of the org chart*/
.lotusui30 .lotusOrgChart li a, .lotusui30 .lotusOrgChartMiddle{background:url(../../images/lotusSprite-8bit.png) 100% -3722px no-repeat;}
.lotusui30 .lotusOrgChart a.lotusTop, .lotusui30 .lotusOrgChartTop{background:url(../../images/lotusSprite-8bit.png) 100% -3950px no-repeat;}
.lotusui30 .lotusOrgChart .lotusBottom, .lotusui30 .lotusOrgChartBottom{background:url(../../images/lotusSprite-8bit.png) 100% -3494px no-repeat;}
/*images off adjustments*/
.lotusui30.lotusImagesOff ul.lotusTree, .lotusImagesOff .lotusui30 ul.lotusTree, .lotusui30.lotusImagesOff .lotusTree ul *, .lotusImagesOff .lotusui30 .lotusTree ul * {list-style-type:square;}
.lotusui30.lotusImagesOff .lotusOrgChart li a, .lotusImagesOff .lotusui30 .lotusOrgChart li a, .lotusui30.lotusImagesOff .lotusBottom, .lotusImagesOff .lotusui30 .lotusBottom{padding-right:0;}
/***********************************************************/
/*** V C A R D (P E R S O N C A R D)***/
/*this is the popup person card that shows up when you click on a person link (via a hover link)*/
.lotusui30 .lotusVCard{display:table;position:absolute;width:400px;border:1px solid #ccc;-webkit-box-shadow:0 2px 5px #eee;-moz-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;background-color:#fafafa;}
.lotusui30 .lotusVCard table.lotusContainer{width:100%;}
.lotusui30 .lotusVCard h2{margin:0;padding:0;font-size:1.2em;font-weight:bold;color:#444;}
/*lotusAppLinks are the application links at the top of the card*/
.lotusui30 .lotusVCard .lotusAppLinks td{background-repeat:repeat-x;border-width:0 1px 1px 0;border-style:solid;border-color:#c5c5c5;background-color:#fff;text-align:center;}
.lotusui30 .lotusVCard .lotusAppLinks td.lotusFirst{border-right-width:0;}
.lotusui30 .lotusVCard .lotusAppLinks a{display:block;padding:3px 9px;}
/*the more arrow, for when there is a second row of application links*/
.lotusui30 .lotusVCard .lotusMore{width:16px;margin-left:10px;background:url(../../images/lotusSprite-8bit.png) 0 -3019px no-repeat;opacity:0.55;filter:alpha(opacity=55);}
.lotusui30 .lotusVCard a.lotusMore:visited, .lotusVCard a.lotusMore:hover, .lotusVCard a.lotusMore:focus, .lotusVCard a.lotusMore:active{text-decoration:none}
.lotusui30 .lotusVCard .lotusMoreExpanded{background-image:url(../../images/lotusSprite-8bit.png);background-position:0 -3071px;opacity:0.55;filter:alpha(opacity=55);}
/*lotusPersonDetails is the detail area of the card that contains all info for the person*/
.lotusui30 .lotusVCard .lotusDetails{padding:10px;border-top:1px solid #fff;background-color:#f2f2f2;}
.lotusui30 .lotusVCard .lotusPhoto{padding:3px;border:1px solid #bdc4ca;float:right;position:relative;/*IE fix for floated elements within a relative container not showing*/}
.lotusui_ie .lotusui30 .lotusVCard .lotusPhoto{position:static;}/*need to do this to solve an issue with the person photo appearing outside the person card in ie, undoes the fix for LTR*/
.lotusui30.lotusImagesOff .lotusVCard .lotusPhoto, .lotusImagesOff .lotusui30 .lotusVCard .lotusPhoto{border-width:0;}
.lotusui30 .lotusVCard .lotusPersonInfo{margin-right:86px;}
/*lotusPersonActions are actions you can perform on this person, from the person card*/
.lotusui30 .lotusVCard .lotusPersonActions{padding:5px;border-top:1px solid #c5c5c5;background-color:#fff;}
/*action menu within person card*/
.lotusui30 .lotusVCard .lotusPersonActions .lotusInlinelist li{border-left-color:#1970B0;}
.lotusui30 .lotusVCard .lotusActionMenu{position:static;right:auto;top:auto;border-width:0;display:none;width:auto;margin-top:-10px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
/*lotusComments in the person card contains status information for the person*/
.lotusui30.lotusImagesOff .lotusCommentHeader, .lotusImagesOff .lotusui30 .lotusCommentHeader{display:none;}
.lotusui30 .lotusVCard .lotusComment{clear:both;}
.lotusui30 .lotusVCard .lotusDetails .lotusComment{position:relative;margin:-10px -10px 2px 0;padding:0 10px 0 0;zoom:1;}
.lotusui30 .lotusVCard .lotusDetails .lotusCommentHeader{padding-right:15px;padding-bottom:3px;position:absolute;top:0;right:20px;z-index:1;height:1.6em;background:url(../../images/lotusSprite-8bit.png) 100% -2250px no-repeat;}
.lotusui30 .lotusVCard .lotusDetails .lotusCommentBody{position:relative;top:1.7em;margin:-1px 0 2.2em 0;padding:5px 10px;color:#666;background-color:#fff;border:1px solid #ccc;z-index:0;zoom:1;}
/*adjustments for an inline version of the card*/
.lotusui30 .lotusInlineVCard{position:static;right:auto;margin:0 0 10px 0;}
.lotusui30 .lotusInlineVCard, .lotusui30 .lotusInlineVCard .lotusContainer{width:175px;position:static;top:auto;right:auto;}
.lotusui30 .lotusInlineVCard .lotusPhoto{padding:0;border-width:0;margin-top:5px;}
.lotusui30 .lotusInlineVCard h2{margin:0;padding:0;font-size:1.2em;font-weight:bold;color:#444;line-height:1.3;}
.lotusui30 .lotusInlineVCard h2 img{vertical-align:baseline;}/*better alignment for strict and transistional doctypes*/
.lotusui30.lotusImagesOff .lotusInlineVCard h2 .lotusAltText, .lotusImagesOff .lotusui30 .lotusInlineVCard h2 .lotusAltText{font-size:.75em;display:block;}
.lotusui30 .lotusInlineVCard .lotusPersonInfo{margin-right:60px;margin-top:4px;}
.lotusui30.lotusImagesOff .lotusInlineVCard .lotusPersonInfo, .lotusImagesOff .lotusui30 .lotusInlineVCard .lotusPersonInfo{margin-right:5px;}
.lotusui30 .lotusInlineVCard .lotusEmail{padding:5px 10px;clear:both;border-width:1px 0;border-style:solid;border-color:#c5c5c5;}
.lotusui30 .lotusInlineVCard .lotusAppLinks{list-style-type:none;margin:0;padding:0;}
.lotusui30 .lotusInlineVCard .lotusPivotNav{padding:2px 2px 1px 5px;overflow:hidden;zoom:1;}
.lotusui30 .lotusInlineVCard .lotusPivotNavToggle{margin:0 0 0 5px;padding:0;float:right;height:45px;width:10px;}
.lotusui30.lotusImagesOff .lotusInlineVCard .lotusPivotNavToggle, .lotusImagesOff .lotusui30 .lotusInlineVCard .lotusPivotNavToggle{width:16px;}
.lotusui30 .lotusPivotNavToggle a{display:block;height:45px;background:#d8d8e0 url(../../images/lotusSprite-8bit.png) -2px -296px no-repeat;opacity:0.55;filter:alpha(opacity=55)/*55% is the min opacity for meeting contrast requirements on white/off-white background for small text*/text-decoration:none;}
.lotusui30 .lotusPivotNavToggle a:visited, .lotusui30 .lotusPivotNavToggle a:hover, .lotusui30 .lotusPivotNavToggle a:focus, .lotusui30 .lotusPivotNavToggle a:active{text-decoration:none;}
.lotusui30 .lotusPivotNavOpen .lotusPivotNavToggle a{background-image:url(../../images/lotusSprite-8bit.png);background-position: -1px -244px;}
.lotusui30 .lotusInlineVCard .lotusInlineVCardDetails{display:none;}
/***********************************************************/
/*** V C A R D H O V E R ***/
/*this is the hover link that shows when you hover over a person's name and allows you to open their profile card*/
.lotusui30 .lotusVCardHover{padding:5px 25px 5px 5px;position:absolute;border:1px solid #aeaeae;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background:#fff79a url(../../images/lotusSprite-8bit.png) 95% -3282px no-repeat;white-space:nowrap;}
.lotusui30 a.lotusVCardHover:hover, .lotusui30 a.lotusVCardHover:focus, .lotusui30 a.lotusVCardHover:active{text-decoration:none;}
.lotusui30.lotusImagesOff .lotusVCardHover, .lotusImagesOff .lotusui30 .lotusVCardHover{padding-right:5px;}
/***********************************************************/
/*** I C O N S ***/
.lotusui30 .lotusIconLike,
.lotusui30 .lotusIconMsgSuccess,
.lotusui30 .lotusIconMsgError,
.lotusui30 .lotusIconMsgInfo,
.lotusui30 .lotusIconMsgWarning {background-image:url(../../images/lotusHSprite-8bit.png);width:16px;height:16px;background-repeat:no-repeat;display:-moz-inline-box;display:inline-block;}
.lotusui30 .lotusIconLike {background-position:-88px -8px;}
.lotusui30 .lotusIconMsgSuccess {background-position:0 -8px;}
.lotusui30 .lotusIconMsgError {background-position:-22px -8px;}
.lotusui30 .lotusIconMsgInfo {background-position:-44px -8px;}
.lotusui30 .lotusIconMsgWarning {background-position:-66px -8px;}
| 0.143638 | 0.074635 |
@import url("include/common.css");
body.fade-in {
opacity: 1;
transition: 1s opacity;
background-color: #fafafa;
}
.popover {
background: #eee;
}
.popover-body {
box-shadow: 20px 20px 20px grey;
}
#container {
min-height: 100%;
position: relative;
}
.footer {
background-color: white;
width: 100%;
height: 55px;
font-size: 12px;
text-align: center;
bottom: 0;
}
#loadinginline {
display: none;
top: 0;
left: 0;
right: 0;
width: 100%;
background: red;
}
#loadmiddleinline {
margin: 0 auto;
display: table;
font-size: 20px;
}
#loadinnerinline>p {
font-size: 20px;
}
#sessionList {
max-height: 500px;
margin-bottom: 10px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 2px;
}
.list-group-item {
margin: 0 0 10px 0;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.list-group-item:not(.active) {
background-color: lightgrey;
border-color: lightgrey;
}
.row.display-flex {
display: flex;
flex-wrap: wrap;
}
.team-row {
justify-content: center;
}
.row.display-flex>[class*='col-'] {
display: flex;
flex-direction: column;
}
.col-team {
margin-top: 30px;
}
.team {
padding: 0 15px 15px;
height: 100%;
border-radius: 10px;
background-color: #fff;
}
.team-status-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-buttons>a {
text-decoration: none;
color: inherit;
}
.team a {
text-decoration: underline;
}
.team-active {
border: solid 4px #A5C663;
}
.team-warning {
border: solid 4px #FAA;
}
.team-alert {
border: solid 4px grey;
}
.team-standby {
border: solid 4px darkgray;
}
.team-rest {
border: solid 4px lightgrey;
}
.team-callsign {
font-size: 2vmax;
text-transform: uppercase;
padding: 0.5em;
}
.team-leader {
font-weight: bold;
}
.team-active .team-callsign {
background: #A5C663;
color: black;
}
.team-warning .team-callsign {
background: #FAA;
color: black;
}
.team-alert .team-callsign {
background: grey;
color: black;
}
.team-standby .team-callsign {
background: darkgray;
color: black;
}
.team-rest .team-callsign {
background: lightgrey;
color: black;
}
.team-active .team-callsign a,
.team-standby .team-callsign a,
.team-rest .team-callsign a,
.team-alert .team-callsign a {
color: inherit;
text-decoration: none;
}
.team-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.sector-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-job-count-active,
.team-status,
.team-status-for,
.team-time {
font-size: 1.vmax;
padding: 0.2em;
}
.team-member:not(:last-child):after {
content: ", ";
}
.team-stat-warning {
color: orange;
-webkit-animation: pulsate 3s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.5;
}
.team-stat-hazard {
color: red;
-webkit-animation: pulsate 3s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.5;
}
@-webkit-keyframes pulsate {
0% {
opacity: 0.5;
}
50% {
opacity: 1.0;
}
100% {
opacity: 0.5;
}
}
.gridWidth>label {
width: auto;
padding-top: 0.375rem;
display: inline-block;
}
.gridWidth>select {
display: inline-block;
float: right;
width: 50%;
}
.team-resources {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-history-view {
padding: 0.3em;
}
.team-history-loading {
opacity: 0.5;
}
.team-history-view>div {
font-size: 0.6em;
font-weight: bold;
position: absolute;
bottom: 0;
margin-bottom: 5px;
width: 100%;
}
.team-history-view>div>a {
color: inherit;
text-decoration: none;
}
.team-members {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-location {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-history {}
.team-history {
font-size: 0.9em;
}
.team-history-row:nth-child(even) {
background: #cccccc30;
}
.history-job:hover {
cursor: pointer;
}
.history-job-number {
text-decoration: underline;
color: #007bff;
}
.fa-disabled {
opacity: 0.6;
cursor: not-allowed;
}
.teamFilters:hover {
cursor: pointer;
}
|
pages/styles/teamsummary.css
|
@import url("include/common.css");
body.fade-in {
opacity: 1;
transition: 1s opacity;
background-color: #fafafa;
}
.popover {
background: #eee;
}
.popover-body {
box-shadow: 20px 20px 20px grey;
}
#container {
min-height: 100%;
position: relative;
}
.footer {
background-color: white;
width: 100%;
height: 55px;
font-size: 12px;
text-align: center;
bottom: 0;
}
#loadinginline {
display: none;
top: 0;
left: 0;
right: 0;
width: 100%;
background: red;
}
#loadmiddleinline {
margin: 0 auto;
display: table;
font-size: 20px;
}
#loadinnerinline>p {
font-size: 20px;
}
#sessionList {
max-height: 500px;
margin-bottom: 10px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 2px;
}
.list-group-item {
margin: 0 0 10px 0;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.list-group-item:not(.active) {
background-color: lightgrey;
border-color: lightgrey;
}
.row.display-flex {
display: flex;
flex-wrap: wrap;
}
.team-row {
justify-content: center;
}
.row.display-flex>[class*='col-'] {
display: flex;
flex-direction: column;
}
.col-team {
margin-top: 30px;
}
.team {
padding: 0 15px 15px;
height: 100%;
border-radius: 10px;
background-color: #fff;
}
.team-status-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-buttons>a {
text-decoration: none;
color: inherit;
}
.team a {
text-decoration: underline;
}
.team-active {
border: solid 4px #A5C663;
}
.team-warning {
border: solid 4px #FAA;
}
.team-alert {
border: solid 4px grey;
}
.team-standby {
border: solid 4px darkgray;
}
.team-rest {
border: solid 4px lightgrey;
}
.team-callsign {
font-size: 2vmax;
text-transform: uppercase;
padding: 0.5em;
}
.team-leader {
font-weight: bold;
}
.team-active .team-callsign {
background: #A5C663;
color: black;
}
.team-warning .team-callsign {
background: #FAA;
color: black;
}
.team-alert .team-callsign {
background: grey;
color: black;
}
.team-standby .team-callsign {
background: darkgray;
color: black;
}
.team-rest .team-callsign {
background: lightgrey;
color: black;
}
.team-active .team-callsign a,
.team-standby .team-callsign a,
.team-rest .team-callsign a,
.team-alert .team-callsign a {
color: inherit;
text-decoration: none;
}
.team-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.sector-summary {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-job-count-active,
.team-status,
.team-status-for,
.team-time {
font-size: 1.vmax;
padding: 0.2em;
}
.team-member:not(:last-child):after {
content: ", ";
}
.team-stat-warning {
color: orange;
-webkit-animation: pulsate 3s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.5;
}
.team-stat-hazard {
color: red;
-webkit-animation: pulsate 3s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.5;
}
@-webkit-keyframes pulsate {
0% {
opacity: 0.5;
}
50% {
opacity: 1.0;
}
100% {
opacity: 0.5;
}
}
.gridWidth>label {
width: auto;
padding-top: 0.375rem;
display: inline-block;
}
.gridWidth>select {
display: inline-block;
float: right;
width: 50%;
}
.team-resources {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-history-view {
padding: 0.3em;
}
.team-history-loading {
opacity: 0.5;
}
.team-history-view>div {
font-size: 0.6em;
font-weight: bold;
position: absolute;
bottom: 0;
margin-bottom: 5px;
width: 100%;
}
.team-history-view>div>a {
color: inherit;
text-decoration: none;
}
.team-members {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-location {
padding: 0.3em;
border-bottom: solid 1px #ccc;
}
.team-history {}
.team-history {
font-size: 0.9em;
}
.team-history-row:nth-child(even) {
background: #cccccc30;
}
.history-job:hover {
cursor: pointer;
}
.history-job-number {
text-decoration: underline;
color: #007bff;
}
.fa-disabled {
opacity: 0.6;
cursor: not-allowed;
}
.teamFilters:hover {
cursor: pointer;
}
| 0.419053 | 0.072178 |
body{
background-color: #f5f5f5;
}
/* 头部 */
.lb_headWrap{
background:#ffffff;
color: #060606;
}
/* 主内容 */
.personal-content{
background-color: #fff;
padding-left: .28rem;
box-sizing: border-box;
}
.personal-content ul li{
height: 1rem;
line-height: 1rem;
border-bottom: .01rem solid #f3f3f3;
position: relative;
}
.personal-content ul li a{
overflow: hidden;
}
/* 左边 */
.personal-content ul li .fl{
font-size: .28rem;
color: #000;
}
/* 右边 */
.personal-content ul li .fr{
padding-right: .6rem;
color: #747886;
font-size: .24rem;
}
/* 头像 */
.personal-content ul li .fr .text{
height: 1rem;
display: flex;
align-items: center;
position: relative;
}
.personal-content ul li .fr .avatar img{
width: .66rem;
height: .66rem;
border-radius: 50%;
}
.personal-content ul li .fr .avatar-file{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
left: 0;
top: 0;
}
/* 二维码 */
.personal-content ul li .fr .code-icon img{
width: .36rem;
height: .36rem;
}
/* 右箭头 */
.right-arrow {
border-bottom: .02rem solid #afaeb6;
border-right: .02rem solid #afaeb6;
width: .18rem;
height: .18rem;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
top: 0;
bottom: 0;
margin: auto;
right: .28rem;
}
/* 蒙层 */
.mask{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,.3);
z-index: 100;
display: none;
}
/* 上拉弹窗 */
.select-wrap{
width: 100%;
position: fixed;
left: 0;
bottom: -100%;
z-index: 101;
background: #f5f6fa;
transition: all 0.5s
}
.select-wrap .select-list{
background-color: #fff;
}
.select-wrap .select-list li{
height: .9rem;
line-height: .9rem;
text-align: center;
font-size: .3rem;
color: #000006;
border-bottom: .01rem solid #f3f3f3;
position: relative;
}
.select-wrap .select-list li input{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
left: 0;
top: 0;
}
.select-wrap .cancelBtn{
width: 100%;
height: .9rem;
line-height: .9rem;
text-align: center;
font-size: .3rem;
color: #000006;
background-color: #fff;
margin-top: .25rem;
border-top: .01rem solid #f3f3f3;
outline: none;
}
/* 修改名字页 */
/* 字体渐变 */
/* .editBtn{
position: absolute;
right: .3rem;
color: #5ac0f7;
background: -webkit-gradient(linear, left top, right top, from(#60d0f7) , to(#50a5f8));
background: -webkit-linear-gradient(left, #60d0f7 , #50a5f8);
background: -o-linear-gradient(left, #60d0f7 , #50a5f8);
background: linear-gradient(to right, #60d0f7 , #50a5f8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} */
.editBtn{
width: .9rem;
height: .44rem;
line-height: .44rem;
color: #fff;
text-align: center;
display: block;
position: absolute;
right: .3rem;
top: 50%;
margin-top: -.22rem;
background: #5ac0f7;
border-radius: .08rem;
opacity: .5;
}
.editBtn a{
line-height: .44rem;
color: #fff;
}
.edit-content{
margin-top: .36rem;
}
.edit-content .edit-item{
width: 100%;
height: 1rem;
line-height: 1rem;
background: #fff;
position: relative;
}
.edit-content .edit-item .editName{
width: 90%;
height: .5rem;
padding: 0 .28rem;
box-sizing: border-box;
background: none;
border: none;
outline: none;
}
.edit-content .edit-item .del-icon{
width: .44rem;
height: .44rem;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
right: .28rem;
line-height: 0;
}
.edit-content .edit-item .del-icon img{
width: 100%;
}
/**图片上传 wrap*/
.mask_upImg_wrap {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
height: 100%;
background-color: rgba(255,255,255,.5);
}
/*发送请求 wrap*/
.loadingWrapRq {
display: table;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
padding: .25rem 0 0 2.8rem;
box-sizing: border-box;
width: auto;
height: .8rem;
font: .2rem/.26rem "微软雅黑";
color: #000;
/*background: red;*/ /*0*/
}
/*gif图*/
.loadingWrapGif {
float: left;
display: block;
margin-right:.1rem;
width: .3rem;
height: .3rem;
}
|
public/static/chatWeb/css/news/my/personal_center.css
|
body{
background-color: #f5f5f5;
}
/* 头部 */
.lb_headWrap{
background:#ffffff;
color: #060606;
}
/* 主内容 */
.personal-content{
background-color: #fff;
padding-left: .28rem;
box-sizing: border-box;
}
.personal-content ul li{
height: 1rem;
line-height: 1rem;
border-bottom: .01rem solid #f3f3f3;
position: relative;
}
.personal-content ul li a{
overflow: hidden;
}
/* 左边 */
.personal-content ul li .fl{
font-size: .28rem;
color: #000;
}
/* 右边 */
.personal-content ul li .fr{
padding-right: .6rem;
color: #747886;
font-size: .24rem;
}
/* 头像 */
.personal-content ul li .fr .text{
height: 1rem;
display: flex;
align-items: center;
position: relative;
}
.personal-content ul li .fr .avatar img{
width: .66rem;
height: .66rem;
border-radius: 50%;
}
.personal-content ul li .fr .avatar-file{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
left: 0;
top: 0;
}
/* 二维码 */
.personal-content ul li .fr .code-icon img{
width: .36rem;
height: .36rem;
}
/* 右箭头 */
.right-arrow {
border-bottom: .02rem solid #afaeb6;
border-right: .02rem solid #afaeb6;
width: .18rem;
height: .18rem;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
top: 0;
bottom: 0;
margin: auto;
right: .28rem;
}
/* 蒙层 */
.mask{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,.3);
z-index: 100;
display: none;
}
/* 上拉弹窗 */
.select-wrap{
width: 100%;
position: fixed;
left: 0;
bottom: -100%;
z-index: 101;
background: #f5f6fa;
transition: all 0.5s
}
.select-wrap .select-list{
background-color: #fff;
}
.select-wrap .select-list li{
height: .9rem;
line-height: .9rem;
text-align: center;
font-size: .3rem;
color: #000006;
border-bottom: .01rem solid #f3f3f3;
position: relative;
}
.select-wrap .select-list li input{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
left: 0;
top: 0;
}
.select-wrap .cancelBtn{
width: 100%;
height: .9rem;
line-height: .9rem;
text-align: center;
font-size: .3rem;
color: #000006;
background-color: #fff;
margin-top: .25rem;
border-top: .01rem solid #f3f3f3;
outline: none;
}
/* 修改名字页 */
/* 字体渐变 */
/* .editBtn{
position: absolute;
right: .3rem;
color: #5ac0f7;
background: -webkit-gradient(linear, left top, right top, from(#60d0f7) , to(#50a5f8));
background: -webkit-linear-gradient(left, #60d0f7 , #50a5f8);
background: -o-linear-gradient(left, #60d0f7 , #50a5f8);
background: linear-gradient(to right, #60d0f7 , #50a5f8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} */
.editBtn{
width: .9rem;
height: .44rem;
line-height: .44rem;
color: #fff;
text-align: center;
display: block;
position: absolute;
right: .3rem;
top: 50%;
margin-top: -.22rem;
background: #5ac0f7;
border-radius: .08rem;
opacity: .5;
}
.editBtn a{
line-height: .44rem;
color: #fff;
}
.edit-content{
margin-top: .36rem;
}
.edit-content .edit-item{
width: 100%;
height: 1rem;
line-height: 1rem;
background: #fff;
position: relative;
}
.edit-content .edit-item .editName{
width: 90%;
height: .5rem;
padding: 0 .28rem;
box-sizing: border-box;
background: none;
border: none;
outline: none;
}
.edit-content .edit-item .del-icon{
width: .44rem;
height: .44rem;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
right: .28rem;
line-height: 0;
}
.edit-content .edit-item .del-icon img{
width: 100%;
}
/**图片上传 wrap*/
.mask_upImg_wrap {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
height: 100%;
background-color: rgba(255,255,255,.5);
}
/*发送请求 wrap*/
.loadingWrapRq {
display: table;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
padding: .25rem 0 0 2.8rem;
box-sizing: border-box;
width: auto;
height: .8rem;
font: .2rem/.26rem "微软雅黑";
color: #000;
/*background: red;*/ /*0*/
}
/*gif图*/
.loadingWrapGif {
float: left;
display: block;
margin-right:.1rem;
width: .3rem;
height: .3rem;
}
| 0.354098 | 0.043711 |
.input-div{margin-bottom:20px}.input-div
input{margin:0}.input, .input
label{margin:0
!important}.poster{margin-right:20px;width:400px;height:400px}table#schedule{width:400px}h1#sh-title{font-size:2.5em;line-height:.75em !important}span#ch{font-weight:400;font-size:16px;margin:0;padding:0;color:#999}#background,#poster{background-repeat:no-repeat}#background{filter:alpha(opacity=100);-moz-opacity:1;opacity:1;position:absolute;background-position:top center;background-size:cover;width:100%;top:0;left:0}#show #body
#poster{float:left;margin-right:10px;padding:0;width:55%;box-shadow:0 0 5px #333;background-position:center center;background-size:cover}#show{margin-bottom:40px}#show
#head{width:100%;margin-bottom:0}#show #head
h1{margin-left:100px;color:rgba(255,255,255,.95);text-shadow:0 -1px 0 #333;font-size:2.5em;font-weight:800}#show
#body{width:100%}#show #body
#side{width:90px;float:left;text-align:center;margin:0;color:#007DC3;font-size:.85em}#show #body #side
.item{width:100%;margin-bottom:5px;padding:10px
0;background:rgba(255,255,255,.85);cursor:default}#show #body #side
#epg{background:#007DC3;cursor:pointer}#show #body #side #epg
a{color:#FFF}#show #body #side #epg:hover{background:#00CDFF}#show #body #side #epg:hover
a{color:#111}#related{margin:0
auto}.related-show{width:15%;margin:0
.5%;float:left;text-align:center}.related-show
.poster{width:120px;height:120px;background-size:100% auto}#show #body
#details{width:30%;float:left;margin:0
10px;color:#FFF}#show #body #details:after{}.detail{width:100%;font-size:.75em;font-weight:none;color:#007DC3;margin:0
10px 10px 0;background:rgba(255,255,255,.95);padding:10px}#show-info .epg-info{margin-bottom:20px}#show-info .epg-info
hr{border:1px
dotted #999;font-size:.85em}#show-info .epg-info
h4{text-shadow:0 -1px 0 #333}#show-info .epg-info
sup{font-size:small}#show-info .epg-info
table{width:100%}#show-info .epg-info table tr
td{background:rgba(255,255,255,.9);padding:5px
10px}body.epg{background:#207cca;background:-moz-linear-gradient(45deg, #207cca 0%, #a0e6f7 54%, #0ce 100%);background:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#207cca), color-stop(54%,#a0e6f7), color-stop(100%,#00ccee));background:-webkit-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:-o-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:-ms-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#207cca', endColorstr='#00ccee',GradientType=1 )}#body-wrapper{width:100%;float:left}#featured{height:500px;width:30%;float:left;margin-top:125px;margin-left:20px;background:rgba(255,255,255,.9)}#ch-lineup{font-family:"Arial",Helvetica,Tahoma,sans-serif;font-size:12px;margin:0
auto;width:960px}.ch{width:61px;height:61px;border:2px
solid #FFF;font-size:1em;text-align:center;margin:0
5px 5px 0;padding:5px;float:left;border-radius:5px;color:rgba(32,120,200,.85);background:rgba(255,255,255,.85);cursor:pointer}.ch:hover,.ch.selected{border:2px
solid rgba(32,120,200,.85)}#list{width:60%}#ch-detail{color:#007DC3}#ch-detail
#name{font-size:14px}#ch-detail #sch-link{margin:10px}#ch-detail #sch-link
a{background:#007DC3;color:#FFF;padding:5px
10px}#ch-detail #ch-desc{clear:both}#side{width:40%}#side .side-item{background:rgba(255,255,255,.85);padding:20px;margin-bottom:20px;border-radius:5px;border:2px
solid #FFF}#tools{width:100%;margin-bottom:40px;border-top:1px solid rgba(0,0,0,.15);background:#0CE;border-radius:0 0 5px 5px;box-shadow:0 0 2px #666;overflow:hidden}#tools
.tool{float:left;height:80px}.tool div, .tool h3, .tool h4, .tool p, .tool
legend{margin:10px;color:#FFF;text-shadow:0 -1px 1px #666}.tool
legend{margin:10px
0 0 10px;font-size:13px;color:#FFF}#page-title.tool{background:#333}#page-title.tool
h4{margin:25px
20px 10px 20px;color:#FFF}#ui-datepicker-div{display:none}#tools #filter input, #tools #filter select, #tools #filter
textarea{max-width:180px}#tools #filter input[type="submit"]{background:#07D;border:none;cursor:pointer;color:#FFF}#tools #filter input[type="submit"]:hover{background:#FFF;color:#07D}#tools
#social.tool{float:right}#tools #social.tool
#addthis{margin:25px
20px 10px 10px !important}#epg{width:960px;margin:0
auto;font-family:"Arial",Helvetica,Tahoma,sans-serif;font-size:12px}#origin,#theader,#tcol,#tdata{float:left;margin:5px
0}#origin{width:94px}#theader{box-shadow:-1px -1px 2px #666;width:850px;height:98%;overflow:hidden;padding:1% 0;border-radius:5px;background:rgba(51,51,51,.85)}#tcol{width:94px;height:558px;overflow:hidden}#tdata{width:850px;height:558px;overflow:auto;background:#333;border-radius:0 5px 5px 0}#theader #time-row{width:9000px;height:98%}#theader #time-row
.time{width:240px;float:left;border-radius:5px;background:#FFF;color:#333;text-shadow:0 1px 1px #999}#origin,#tcol{margin-right:0}#tcol #ch-col{width:100%;cursor:pointer}#tcol #ch-col
.channel{width:100%;text-align:center;color:#FFF;background:#333;margin-bottom:3px;padding:20px
0;border-radius:5px 0 0 5px;overflow:hidden}#tdata .sh-row{margin-bottom:3px;clear:both;width:9000px}#tdata .sh-row:last-child{margin-bottom:0}#tdata .sh-row
.show{float:left;cursor:pointer;border-radius:5px;outline:1px
solid #333;background:#fff;white-space:nowrap}#tdata .sh-row .show:hover{background:#0CE;color:#FFF}#tdata .sh-row
.show.active{background:#39F;color:#FFF}#detail-container{position:absolute;width:300px;background:#333;color:#FFF;box-shadow:0 0 3px #000;border-radius:5px;opacity:0;display:block}#detail-container
p#title{font-size:14px;font-weight:400;color:#0CE}#detail-container p#title
a{color:#0CE}#detail-container
p{margin:10px
!important;padding:0;white-space:normal;color:#FFF}
|
assets/cache/8a5837ea8aaf1c22301da9982794de96.css
|
.input-div{margin-bottom:20px}.input-div
input{margin:0}.input, .input
label{margin:0
!important}.poster{margin-right:20px;width:400px;height:400px}table#schedule{width:400px}h1#sh-title{font-size:2.5em;line-height:.75em !important}span#ch{font-weight:400;font-size:16px;margin:0;padding:0;color:#999}#background,#poster{background-repeat:no-repeat}#background{filter:alpha(opacity=100);-moz-opacity:1;opacity:1;position:absolute;background-position:top center;background-size:cover;width:100%;top:0;left:0}#show #body
#poster{float:left;margin-right:10px;padding:0;width:55%;box-shadow:0 0 5px #333;background-position:center center;background-size:cover}#show{margin-bottom:40px}#show
#head{width:100%;margin-bottom:0}#show #head
h1{margin-left:100px;color:rgba(255,255,255,.95);text-shadow:0 -1px 0 #333;font-size:2.5em;font-weight:800}#show
#body{width:100%}#show #body
#side{width:90px;float:left;text-align:center;margin:0;color:#007DC3;font-size:.85em}#show #body #side
.item{width:100%;margin-bottom:5px;padding:10px
0;background:rgba(255,255,255,.85);cursor:default}#show #body #side
#epg{background:#007DC3;cursor:pointer}#show #body #side #epg
a{color:#FFF}#show #body #side #epg:hover{background:#00CDFF}#show #body #side #epg:hover
a{color:#111}#related{margin:0
auto}.related-show{width:15%;margin:0
.5%;float:left;text-align:center}.related-show
.poster{width:120px;height:120px;background-size:100% auto}#show #body
#details{width:30%;float:left;margin:0
10px;color:#FFF}#show #body #details:after{}.detail{width:100%;font-size:.75em;font-weight:none;color:#007DC3;margin:0
10px 10px 0;background:rgba(255,255,255,.95);padding:10px}#show-info .epg-info{margin-bottom:20px}#show-info .epg-info
hr{border:1px
dotted #999;font-size:.85em}#show-info .epg-info
h4{text-shadow:0 -1px 0 #333}#show-info .epg-info
sup{font-size:small}#show-info .epg-info
table{width:100%}#show-info .epg-info table tr
td{background:rgba(255,255,255,.9);padding:5px
10px}body.epg{background:#207cca;background:-moz-linear-gradient(45deg, #207cca 0%, #a0e6f7 54%, #0ce 100%);background:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#207cca), color-stop(54%,#a0e6f7), color-stop(100%,#00ccee));background:-webkit-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:-o-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:-ms-linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);background:linear-gradient(45deg, #207cca 0%,#a0e6f7 54%,#0ce 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#207cca', endColorstr='#00ccee',GradientType=1 )}#body-wrapper{width:100%;float:left}#featured{height:500px;width:30%;float:left;margin-top:125px;margin-left:20px;background:rgba(255,255,255,.9)}#ch-lineup{font-family:"Arial",Helvetica,Tahoma,sans-serif;font-size:12px;margin:0
auto;width:960px}.ch{width:61px;height:61px;border:2px
solid #FFF;font-size:1em;text-align:center;margin:0
5px 5px 0;padding:5px;float:left;border-radius:5px;color:rgba(32,120,200,.85);background:rgba(255,255,255,.85);cursor:pointer}.ch:hover,.ch.selected{border:2px
solid rgba(32,120,200,.85)}#list{width:60%}#ch-detail{color:#007DC3}#ch-detail
#name{font-size:14px}#ch-detail #sch-link{margin:10px}#ch-detail #sch-link
a{background:#007DC3;color:#FFF;padding:5px
10px}#ch-detail #ch-desc{clear:both}#side{width:40%}#side .side-item{background:rgba(255,255,255,.85);padding:20px;margin-bottom:20px;border-radius:5px;border:2px
solid #FFF}#tools{width:100%;margin-bottom:40px;border-top:1px solid rgba(0,0,0,.15);background:#0CE;border-radius:0 0 5px 5px;box-shadow:0 0 2px #666;overflow:hidden}#tools
.tool{float:left;height:80px}.tool div, .tool h3, .tool h4, .tool p, .tool
legend{margin:10px;color:#FFF;text-shadow:0 -1px 1px #666}.tool
legend{margin:10px
0 0 10px;font-size:13px;color:#FFF}#page-title.tool{background:#333}#page-title.tool
h4{margin:25px
20px 10px 20px;color:#FFF}#ui-datepicker-div{display:none}#tools #filter input, #tools #filter select, #tools #filter
textarea{max-width:180px}#tools #filter input[type="submit"]{background:#07D;border:none;cursor:pointer;color:#FFF}#tools #filter input[type="submit"]:hover{background:#FFF;color:#07D}#tools
#social.tool{float:right}#tools #social.tool
#addthis{margin:25px
20px 10px 10px !important}#epg{width:960px;margin:0
auto;font-family:"Arial",Helvetica,Tahoma,sans-serif;font-size:12px}#origin,#theader,#tcol,#tdata{float:left;margin:5px
0}#origin{width:94px}#theader{box-shadow:-1px -1px 2px #666;width:850px;height:98%;overflow:hidden;padding:1% 0;border-radius:5px;background:rgba(51,51,51,.85)}#tcol{width:94px;height:558px;overflow:hidden}#tdata{width:850px;height:558px;overflow:auto;background:#333;border-radius:0 5px 5px 0}#theader #time-row{width:9000px;height:98%}#theader #time-row
.time{width:240px;float:left;border-radius:5px;background:#FFF;color:#333;text-shadow:0 1px 1px #999}#origin,#tcol{margin-right:0}#tcol #ch-col{width:100%;cursor:pointer}#tcol #ch-col
.channel{width:100%;text-align:center;color:#FFF;background:#333;margin-bottom:3px;padding:20px
0;border-radius:5px 0 0 5px;overflow:hidden}#tdata .sh-row{margin-bottom:3px;clear:both;width:9000px}#tdata .sh-row:last-child{margin-bottom:0}#tdata .sh-row
.show{float:left;cursor:pointer;border-radius:5px;outline:1px
solid #333;background:#fff;white-space:nowrap}#tdata .sh-row .show:hover{background:#0CE;color:#FFF}#tdata .sh-row
.show.active{background:#39F;color:#FFF}#detail-container{position:absolute;width:300px;background:#333;color:#FFF;box-shadow:0 0 3px #000;border-radius:5px;opacity:0;display:block}#detail-container
p#title{font-size:14px;font-weight:400;color:#0CE}#detail-container p#title
a{color:#0CE}#detail-container
p{margin:10px
!important;padding:0;white-space:normal;color:#FFF}
| 0.238284 | 0.064565 |
.pku-detail-group .btn-operate {
float: right;
}
.p-toolbar .student-head {
float: left;
padding-left: 35px;
}
.p-toolbar .student-head-right {
float: right;
margin-right: 20px;
}
.student-footer {
position: absolute;
width: 100%;
bottom: 0px;
}
.container {
position: relative;
}
.container .subscribe {
position: absolute;
display: block;
font-size: 18px;
top: 100px;
left: -64px;
height: 46px;
width: 80px;
line-height: 46px;
background: #FFFFFF;
border-bottom: 2px solid #00b38a;
}
.form-info-wrap .helper-info-left-wrap {
float: left;
width: 680px;
}
.form-info-wrap .helper-info-left-wrap .pull-center {
text-align: center;
padding: 20px;
}
.form-info-wrap .helper-info-right-wrap {
float: right;
}
.form-info-wrap .helper-info-right-wrap .right-wrap {
padding: 0;
font-family: 'STHeitiSC-Medium', 'Heiti SC Medium', 'Heiti SC';
margin-bottom: 30px;
width: 240px;
height: 287px;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-left {
font-weight: 700;
font-style: normal;
font-size: 16px;
line-height: 24px;
float: left;
width: 100%;
background-color: #EEEEEE;
border-bottom: 1px solid #B3B3B3;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-right {
float: right;
padding: 5px;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-right a {
font-weight: 200;
font-size: 13px;
font-style: normal;
color: #999999;
line-height: 20px;
padding: 0px 5px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody {
padding: 10px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody tr {
line-height: 15px;
border-bottom: 1px solid #B3B3B3;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody tr td {
font-size: 13px;
padding: 5px 0px;
color: #888888;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main {
padding: 0px 6px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .title {
width: 228px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .title a {
font-weight: 700;
font-style: normal;
font-size: 14px;
color: #225599;
line-height: 16px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .detail {
width: 228px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.job-info-table {
width: 95%;
margin: 0 auto;
}
.job-info-table tbody {
padding: 10px;
}
.job-info-table tbody tr {
line-height: 25px;
border-bottom: 1px dotted #000;
}
.job-info-table tbody tr td {
font-size: 14px;
padding: 10px 0px;
}
.job-info-table .job-info-main,
.job-info-table .job-info-num {
float: left;
}
.job-info-table .job-info-btn {
float: right;
}
.job-info-table .job-info-btn .job-hasbeen {
font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight: 700;
font-style: normal;
font-size: 14px;
color: #225599;
}
.job-info-table .job-info-btn .job-hasbeen a {
color: #bbb;
font-size: 14px;
text-align: center;
}
.job-info-table .job-info-btn .hasbeen {
padding: 0px 20px;
}
.job-info-table .job-info-num {
height: 40px;
width: 40px;
border: 1px solid #ccc;
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.job-info-table .job-info-main {
margin: 0px 25px;
position: relative;
}
.job-info-table .job-info-main .title {
width: 450px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.job-info-table .job-info-main .title a {
font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
cursor: pointer;
font-weight: 700;
font-style: normal;
font-size: 18px;
color: #225599;
line-height: 16px;
}
.job-info-table .enterprise-info .info-enter,
.job-info-table .enterprise-info .info-detail,
.job-info-table .enterprise-info .info-all {
float: left;
}
.job-info-table .enterprise-info .info-detail {
margin: 0px 10px;
width: 300px;
display: block;
}
.job-info-table .enterprise-info .info-detail p {
width: 100%;
}
.job-info-table .enterprise-info .info-detail p span {
width: 205px;
display: inline-block;
}
.job-info-table .enterprise-info .info-all {
position: absolute;
right: 0px;
bottom: 0px;
}
.job-info-table .enterprise-info .info-all a {
cursor: pointer;
font-style: normal;
color: #225599;
line-height: 16px;
}
.articleContainer {
/* width:970px; */
min-height: 758px;
border-left: 1px solid #FFFFFF;
border-right: 1px solid #FFFFFF;
border-bottom: 2px solid #FFFFFF;
}
.articleContainer .articleType {
background-color: #FFFFFF;
/*height: 30px;*/
font-size: 18px;
color: #000;
opacity: 0.7;
font-weight: bold;
text-align: center;
margin: 20px 10px 10px 10px;
/*border-bottom: 1px solid #ACA7A7;*/
/*padding-bottom: 35px;*/
}
.articleContainer .articleTitle {
line-height: 50px;
width: 100%;
/* background: url(../images/articleTitleBg.gif) repeat-x; */
font-size: 18px;
color: #3a3a3a;
text-indent: 30px;
/* text-align: center; */
}
.articleContainer .articleDate {
font-size: 12px;
color: #9c6959;
text-indent: 30px;
line-height: 24px;
height: 24px;
background-color: #f9f3f1;
/*padding-top: 9px;
margin-top: 10px;*/
margin: 0 10px;
padding-left: 160px;
}
.articleContainer .articleDate .input-group2 {
float: left;
padding: 0px 75px;
}
.articleContainer .articleContext {
/* border: 2px solid #F3EAEA; */
/* border-radius: 6px; */
padding: 15px 20px;
font-size: 12px;
line-height: 20px;
}
.wall-detail {
width: 100%;
}
.wall-detail .img-div {
float: left;
margin: 0 20px;
width: 150px;
height: 130px;
}
.wall-detail .info-div {
float: left;
margin: 0 20px;
font-size: 14px;
}
.wall-detail .info-div div {
padding: 5px 0px;
}
.wall-detail .info-div label {
font-weight: bold;
}
.wall-detail p {
margin: 10px 20px;
text-indent: 2em;
font-size: 14px;
min-height: 50px;
}
.b26 {
margin-left: 26px;
}
.info-more {
line-height: 26px;
float: right;
margin-right: 20px;
font-size: 14px;
}
.wall-detail-table {
width: 100%;
}
.wall-detail-table .col-name th {
height: 30px;
line-height: 30px;
background: #e8e8e8;
border: 1px solid #ccc;
font-size: 14px;
text-align: center;
}
.wall-detail-table td {
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #ccc;
vertical-align: middle;
}
.td50p th,
.td50p td {
width: 50%;
word-break: break-all;
}
.td20p th,
.td20p td {
width: 20%;
word-break: break-all;
}
/** tableft */
.tabs-below .nav-tabs,
.tabs-right .nav-tabs,
.tabs-left .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-top-color: #ddd;
border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active a,
.tabs-below > .nav-tabs > .active a:hover,
.tabs-below > .nav-tabs > .active a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left {
height: 100%;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 130px;
margin-right: 0;
margin-bottom: 3px;
text-align: center;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eee #ddd #eee #eee;
border-left: 4px solid #BE0000;
border-radius: 0px;
padding-left: 12px;
}
.tabs-left > .nav-tabs .active:before {
content: " ";
display: inline-block;
position: absolute;
top: 5px;
left: 117px;
border-top: 15px solid transparent;
border-left: 0 solid #ccc;
border-bottom: 15px solid transparent;
border-right: 15px solid #ccc;
z-index: 1;
}
.tabs-left > .nav-tabs .active:after {
content: " ";
display: inline-block;
position: absolute;
top: 6px;
left: 118px;
border-top: 14px solid transparent;
border-left: 0 solid #fff;
border-bottom: 14px solid transparent;
border-right: 14px solid #fff;
z-index: 2;
}
.tabs-left > .nav-tabs > .active a,
.tabs-left > .nav-tabs > .active a:hover,
.tabs-left > .nav-tabs > .active a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #fff;
border: 0;
border-left: 4px solid #BE0000;
border-radius: 0px;
padding-left: 12px;
border-right: 1px solid #ddd;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eee #eee #eee #ddd;
}
.tabs-right > .nav-tabs > .active a,
.tabs-right > .nav-tabs > .active a:hover,
.tabs-right > .nav-tabs > .active a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #fff;
}
.student-photo {
width: 130px;
height: 160px;
text-align: center;
}
.student-photo img {
width: 117px;
height: 120px;
border-radius: 50%;
}
.student-name {
font-size: 18px;
font-weight: 700;
font-family: "Arial-BoldMT", "Arial Bold", "Arial";
}
.work-panel {
margin: 10px 18px;
width: 134px;
float: left;
}
.work-panel .panel-heading {
text-align: center;
font-family: 'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
font-weight: 200;
font-style: normal;
font-size: 20px;
color: #9A0000;
}
.work-panel .panel-body {
padding: 0;
text-align: center;
}
.work-panel .panel-body .nums {
font-family: 'GB18030Bitmap', 'GB18030 Bitmap';
font-weight: 400;
font-style: normal;
font-size: 48px;
}
/* resume **/
#resume-tbody tr td i {
display: block;
width: 26px;
height: 26px;
background: url(../images/student/resume-avantar.png) no-repeat;
background-position: 0 0;
margin: 0px auto;
}
#resume-tbody tr td i.default {
background-position: -32px 0;
}
.base-photo {
position: absolute;
width: 128px;
height: 128px;
top: 0px;
left: 130px;
}
.base-photo img {
width: 117px;
height: 120px;
}
.base-photo .mr_headfile {
position: absolute;
width: 117px;
height: 120px;
opacity: 0;
cursor: pointer;
top: 0px;
}
.base-photo small {
color: #a94442;
padding: 0px;
position: absolute;
width: 220px;
top: 120px;
}
.tabbable .tab-content .tab-pane table {
margin: 20px 0px;
}
.rss-tip {
position: absolute;
top: 0px;
right: 10px;
width: 250px;
height: 100px;
background: url('../images/student/dashed.png') no-repeat;
}
.form-lr-show {
margin: 0px !important;
}
|
public/static/css/studentcss/student.css
|
.pku-detail-group .btn-operate {
float: right;
}
.p-toolbar .student-head {
float: left;
padding-left: 35px;
}
.p-toolbar .student-head-right {
float: right;
margin-right: 20px;
}
.student-footer {
position: absolute;
width: 100%;
bottom: 0px;
}
.container {
position: relative;
}
.container .subscribe {
position: absolute;
display: block;
font-size: 18px;
top: 100px;
left: -64px;
height: 46px;
width: 80px;
line-height: 46px;
background: #FFFFFF;
border-bottom: 2px solid #00b38a;
}
.form-info-wrap .helper-info-left-wrap {
float: left;
width: 680px;
}
.form-info-wrap .helper-info-left-wrap .pull-center {
text-align: center;
padding: 20px;
}
.form-info-wrap .helper-info-right-wrap {
float: right;
}
.form-info-wrap .helper-info-right-wrap .right-wrap {
padding: 0;
font-family: 'STHeitiSC-Medium', 'Heiti SC Medium', 'Heiti SC';
margin-bottom: 30px;
width: 240px;
height: 287px;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-left {
font-weight: 700;
font-style: normal;
font-size: 16px;
line-height: 24px;
float: left;
width: 100%;
background-color: #EEEEEE;
border-bottom: 1px solid #B3B3B3;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-right {
float: right;
padding: 5px;
}
.form-info-wrap .helper-info-right-wrap .right-wrap .wrap-header-right a {
font-weight: 200;
font-size: 13px;
font-style: normal;
color: #999999;
line-height: 20px;
padding: 0px 5px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody {
padding: 10px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody tr {
line-height: 15px;
border-bottom: 1px solid #B3B3B3;
}
.form-info-wrap .helper-info-right-wrap .wrap-table tbody tr td {
font-size: 13px;
padding: 5px 0px;
color: #888888;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main {
padding: 0px 6px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .title {
width: 228px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .title a {
font-weight: 700;
font-style: normal;
font-size: 14px;
color: #225599;
line-height: 16px;
}
.form-info-wrap .helper-info-right-wrap .wrap-table .wrap-main .detail {
width: 228px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.job-info-table {
width: 95%;
margin: 0 auto;
}
.job-info-table tbody {
padding: 10px;
}
.job-info-table tbody tr {
line-height: 25px;
border-bottom: 1px dotted #000;
}
.job-info-table tbody tr td {
font-size: 14px;
padding: 10px 0px;
}
.job-info-table .job-info-main,
.job-info-table .job-info-num {
float: left;
}
.job-info-table .job-info-btn {
float: right;
}
.job-info-table .job-info-btn .job-hasbeen {
font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
font-weight: 700;
font-style: normal;
font-size: 14px;
color: #225599;
}
.job-info-table .job-info-btn .job-hasbeen a {
color: #bbb;
font-size: 14px;
text-align: center;
}
.job-info-table .job-info-btn .hasbeen {
padding: 0px 20px;
}
.job-info-table .job-info-num {
height: 40px;
width: 40px;
border: 1px solid #ccc;
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.job-info-table .job-info-main {
margin: 0px 25px;
position: relative;
}
.job-info-table .job-info-main .title {
width: 450px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.job-info-table .job-info-main .title a {
font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
cursor: pointer;
font-weight: 700;
font-style: normal;
font-size: 18px;
color: #225599;
line-height: 16px;
}
.job-info-table .enterprise-info .info-enter,
.job-info-table .enterprise-info .info-detail,
.job-info-table .enterprise-info .info-all {
float: left;
}
.job-info-table .enterprise-info .info-detail {
margin: 0px 10px;
width: 300px;
display: block;
}
.job-info-table .enterprise-info .info-detail p {
width: 100%;
}
.job-info-table .enterprise-info .info-detail p span {
width: 205px;
display: inline-block;
}
.job-info-table .enterprise-info .info-all {
position: absolute;
right: 0px;
bottom: 0px;
}
.job-info-table .enterprise-info .info-all a {
cursor: pointer;
font-style: normal;
color: #225599;
line-height: 16px;
}
.articleContainer {
/* width:970px; */
min-height: 758px;
border-left: 1px solid #FFFFFF;
border-right: 1px solid #FFFFFF;
border-bottom: 2px solid #FFFFFF;
}
.articleContainer .articleType {
background-color: #FFFFFF;
/*height: 30px;*/
font-size: 18px;
color: #000;
opacity: 0.7;
font-weight: bold;
text-align: center;
margin: 20px 10px 10px 10px;
/*border-bottom: 1px solid #ACA7A7;*/
/*padding-bottom: 35px;*/
}
.articleContainer .articleTitle {
line-height: 50px;
width: 100%;
/* background: url(../images/articleTitleBg.gif) repeat-x; */
font-size: 18px;
color: #3a3a3a;
text-indent: 30px;
/* text-align: center; */
}
.articleContainer .articleDate {
font-size: 12px;
color: #9c6959;
text-indent: 30px;
line-height: 24px;
height: 24px;
background-color: #f9f3f1;
/*padding-top: 9px;
margin-top: 10px;*/
margin: 0 10px;
padding-left: 160px;
}
.articleContainer .articleDate .input-group2 {
float: left;
padding: 0px 75px;
}
.articleContainer .articleContext {
/* border: 2px solid #F3EAEA; */
/* border-radius: 6px; */
padding: 15px 20px;
font-size: 12px;
line-height: 20px;
}
.wall-detail {
width: 100%;
}
.wall-detail .img-div {
float: left;
margin: 0 20px;
width: 150px;
height: 130px;
}
.wall-detail .info-div {
float: left;
margin: 0 20px;
font-size: 14px;
}
.wall-detail .info-div div {
padding: 5px 0px;
}
.wall-detail .info-div label {
font-weight: bold;
}
.wall-detail p {
margin: 10px 20px;
text-indent: 2em;
font-size: 14px;
min-height: 50px;
}
.b26 {
margin-left: 26px;
}
.info-more {
line-height: 26px;
float: right;
margin-right: 20px;
font-size: 14px;
}
.wall-detail-table {
width: 100%;
}
.wall-detail-table .col-name th {
height: 30px;
line-height: 30px;
background: #e8e8e8;
border: 1px solid #ccc;
font-size: 14px;
text-align: center;
}
.wall-detail-table td {
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #ccc;
vertical-align: middle;
}
.td50p th,
.td50p td {
width: 50%;
word-break: break-all;
}
.td20p th,
.td20p td {
width: 20%;
word-break: break-all;
}
/** tableft */
.tabs-below .nav-tabs,
.tabs-right .nav-tabs,
.tabs-left .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-top-color: #ddd;
border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active a,
.tabs-below > .nav-tabs > .active a:hover,
.tabs-below > .nav-tabs > .active a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left {
height: 100%;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 130px;
margin-right: 0;
margin-bottom: 3px;
text-align: center;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eee #ddd #eee #eee;
border-left: 4px solid #BE0000;
border-radius: 0px;
padding-left: 12px;
}
.tabs-left > .nav-tabs .active:before {
content: " ";
display: inline-block;
position: absolute;
top: 5px;
left: 117px;
border-top: 15px solid transparent;
border-left: 0 solid #ccc;
border-bottom: 15px solid transparent;
border-right: 15px solid #ccc;
z-index: 1;
}
.tabs-left > .nav-tabs .active:after {
content: " ";
display: inline-block;
position: absolute;
top: 6px;
left: 118px;
border-top: 14px solid transparent;
border-left: 0 solid #fff;
border-bottom: 14px solid transparent;
border-right: 14px solid #fff;
z-index: 2;
}
.tabs-left > .nav-tabs > .active a,
.tabs-left > .nav-tabs > .active a:hover,
.tabs-left > .nav-tabs > .active a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #fff;
border: 0;
border-left: 4px solid #BE0000;
border-radius: 0px;
padding-left: 12px;
border-right: 1px solid #ddd;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eee #eee #eee #ddd;
}
.tabs-right > .nav-tabs > .active a,
.tabs-right > .nav-tabs > .active a:hover,
.tabs-right > .nav-tabs > .active a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #fff;
}
.student-photo {
width: 130px;
height: 160px;
text-align: center;
}
.student-photo img {
width: 117px;
height: 120px;
border-radius: 50%;
}
.student-name {
font-size: 18px;
font-weight: 700;
font-family: "Arial-BoldMT", "Arial Bold", "Arial";
}
.work-panel {
margin: 10px 18px;
width: 134px;
float: left;
}
.work-panel .panel-heading {
text-align: center;
font-family: 'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
font-weight: 200;
font-style: normal;
font-size: 20px;
color: #9A0000;
}
.work-panel .panel-body {
padding: 0;
text-align: center;
}
.work-panel .panel-body .nums {
font-family: 'GB18030Bitmap', 'GB18030 Bitmap';
font-weight: 400;
font-style: normal;
font-size: 48px;
}
/* resume **/
#resume-tbody tr td i {
display: block;
width: 26px;
height: 26px;
background: url(../images/student/resume-avantar.png) no-repeat;
background-position: 0 0;
margin: 0px auto;
}
#resume-tbody tr td i.default {
background-position: -32px 0;
}
.base-photo {
position: absolute;
width: 128px;
height: 128px;
top: 0px;
left: 130px;
}
.base-photo img {
width: 117px;
height: 120px;
}
.base-photo .mr_headfile {
position: absolute;
width: 117px;
height: 120px;
opacity: 0;
cursor: pointer;
top: 0px;
}
.base-photo small {
color: #a94442;
padding: 0px;
position: absolute;
width: 220px;
top: 120px;
}
.tabbable .tab-content .tab-pane table {
margin: 20px 0px;
}
.rss-tip {
position: absolute;
top: 0px;
right: 10px;
width: 250px;
height: 100px;
background: url('../images/student/dashed.png') no-repeat;
}
.form-lr-show {
margin: 0px !important;
}
| 0.370225 | 0.05572 |
.project-status{
width: 100%;
display: flex;
flex-direction: row;
margin: 2rem 0 2rem 0;
}
.col{
background-color: #fff;
display: flex;
flex-direction: column;
width: 16rem;
height: 18rem;
min-width: 16rem;
font-size: 1.2rem;
margin: 0 0.5rem 0 0.5rem;
text-align: center;
justify-content: center;
position: relative;
padding: 1rem;
flex: 1;
}
.col:first-child {
margin-right: 0.5rem;
margin-left: 0;
}
.col:last-child {
margin-left: 0.5rem;
margin-right: 0;
}
.days-left{
font-size: 8rem;
font-weight: bold;
color: rgb(17, 57, 99);
height: 9rem;
}
.employees{
background-color: white;
height: 28rem;
width: 100%;
padding: 1rem;
margin: 0rem;
}
.first-row{
height: 1.5rem;
}
.chart{
width: 15rem;
min-width: 15rem;
height: 15rem;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.allign{
height: 180px;
display: flex;
align-items: center;
justify-content: center;
}
.container{
background-color: white;
height: 28rem;
width: 100%;
padding: 1rem;
margin: 0 1.5rem 0 1rem;
}
@media only screen and (max-width: 900px) {
.project-status{
flex-flow: row wrap;
}
.chart{
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.col{
height: 20rem;
margin: 1rem 0rem 1rem 0rem;
display: flex;
justify-content: center;
align-items: center;
}
.col:first-child {
margin-right: 1rem;
margin-left: 0;
}
.col:last-child {
margin-left: 1rem;
margin-right: 0;
}
.employees{
overflow-x: auto;
overflow-y: hidden;
height: 30rem;
max-width: 100%;
}
}
@media only screen and (max-width: 696px) {
.col{
width: 100%;
height: 18rem;
min-width: 16rem;
margin: 1rem 0rem 1rem 0rem;
}
.col:first-child {
margin-right: 0;
margin-left: 0;
}
.col:last-child {
margin-left: 0;
margin-right: 0;
}
.container{
width: 92%;
margin: 1rem;
}
}
|
src/app/system-frame/interface/dashboard/dashboard.component.css
|
.project-status{
width: 100%;
display: flex;
flex-direction: row;
margin: 2rem 0 2rem 0;
}
.col{
background-color: #fff;
display: flex;
flex-direction: column;
width: 16rem;
height: 18rem;
min-width: 16rem;
font-size: 1.2rem;
margin: 0 0.5rem 0 0.5rem;
text-align: center;
justify-content: center;
position: relative;
padding: 1rem;
flex: 1;
}
.col:first-child {
margin-right: 0.5rem;
margin-left: 0;
}
.col:last-child {
margin-left: 0.5rem;
margin-right: 0;
}
.days-left{
font-size: 8rem;
font-weight: bold;
color: rgb(17, 57, 99);
height: 9rem;
}
.employees{
background-color: white;
height: 28rem;
width: 100%;
padding: 1rem;
margin: 0rem;
}
.first-row{
height: 1.5rem;
}
.chart{
width: 15rem;
min-width: 15rem;
height: 15rem;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.allign{
height: 180px;
display: flex;
align-items: center;
justify-content: center;
}
.container{
background-color: white;
height: 28rem;
width: 100%;
padding: 1rem;
margin: 0 1.5rem 0 1rem;
}
@media only screen and (max-width: 900px) {
.project-status{
flex-flow: row wrap;
}
.chart{
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.col{
height: 20rem;
margin: 1rem 0rem 1rem 0rem;
display: flex;
justify-content: center;
align-items: center;
}
.col:first-child {
margin-right: 1rem;
margin-left: 0;
}
.col:last-child {
margin-left: 1rem;
margin-right: 0;
}
.employees{
overflow-x: auto;
overflow-y: hidden;
height: 30rem;
max-width: 100%;
}
}
@media only screen and (max-width: 696px) {
.col{
width: 100%;
height: 18rem;
min-width: 16rem;
margin: 1rem 0rem 1rem 0rem;
}
.col:first-child {
margin-right: 0;
margin-left: 0;
}
.col:last-child {
margin-left: 0;
margin-right: 0;
}
.container{
width: 92%;
margin: 1rem;
}
}
| 0.739516 | 0.078043 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Mobile version */
/* Body general style */
html {
height: 100%;
font-family: "Poppins", sans-serif;
}
body,
.body {
flex-direction: column;
font-family: "Poppins", sans-serif;
width: 100%;
height: 100%;
background-color: #fafafa;
}
ul {
list-style: none;
padding: 0;
}
a {
outline: none;
text-decoration: none;
color: inherit;
}
a:visited,
a:hover,
a:active {
color: inherit;
}
/* Header */
/* Navigation Bar */
.head-bar {
background-color: white;
margin-bottom: 0;
margin-top: 5px;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 0;
}
.head-bar .logo {
font-weight: bold;
color: #1026ea;
margin-left: 24px;
line-height: 20px;
animation: logodisplay 1s;
}
@keyframes logodisplay {
from {
transform: rotate(-90deg);
}
}
.head-bar .menu {
margin-right: 24px;
border: none;
background-color: white;
}
.navbar-desktop {
display: none;
}
/* Headline */
.headline {
background-image: url("../img/background/headlinebgmobile.png");
background-size: 100%;
background-repeat: no-repeat;
display: flex;
border-bottom-left-radius: 100px;
background-color: white;
padding-top: 40px;
padding-bottom: 60px;
}
.headline-content {
flex-direction: column;
margin-left: 24px;
margin-right: 24px;
margin-top: 60px;
border-bottom-left-radius: 50px;
}
#headline-title,
#headline-subtitle {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 52px;
color: #172b4d;
}
#headline-subtitle {
margin-bottom: 5px;
}
#headline-info {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
.headline-info {
margin-bottom: 20px;
}
.headline-action {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
color: #1026ea;
margin-bottom: 20px;
}
.headline-icons {
flex-direction: row;
gap: 25px;
justify-content: start;
}
/* My Works Section */
.my-works {
background-color: #fafafa;
grid-template-rows: auto auto auto auto;
row-gap: 60px;
padding-top: 75px;
padding-bottom: 64px;
}
#work-1 {
grid-row: 1 / 2;
}
#work-2 {
grid-row: 2 / 3;
}
#work-3 {
grid-row: 3 / 4;
}
#work-4 {
grid-row: 4 / 5;
}
p {
margin: 0;
display: inline;
}
/* Works Cards */
.work-card {
flex-direction: column;
background: white;
padding: 16px;
border: 1px solid #dfe1e6;
border-radius: 16px;
margin: 0 24px 0 24px;
}
.card-preview {
flex: 1 1 100%;
width: 100%;
max-width: 480px;
align-self: center;
transition: all 1s;
}
.card-preview:hover {
transform: scale(0.95);
}
.work-title {
font-family: Poppins, sans-serif;
font-style: normal;
font-weight: bold;
font-size: 36px;
color: #172b4d;
line-height: 44px;
margin-top: 24px;
margin-bottom: 15px;
}
.work-info {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.client {
color: #344563;
font-weight: bold;
}
.job,
.year {
font-size: 13px;
color: #7a869a;
}
.counter {
background: #c1c7d0;
width: 8px;
height: 8px;
border-radius: 100%;
}
.work-description {
color: #344563;
}
.work-tags {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.tag-button {
padding: 4px 12px;
color: #1026ea;
background: #ebebff;
border-radius: 8px;
border: none;
}
.work-button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
/* About Myself Section */
.about-myself {
width: 100%;
margin-top: 24px;
background-color: white;
border-top-right-radius: 100px;
}
.about-content {
flex-direction: column;
padding: 30px 30px 30px 30px;
}
#about-title {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 52px;
color: #172b4d;
margin-bottom: 14px;
}
#about-info {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
margin-bottom: 14px;
}
#about-action {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
color: #1026ea;
margin-bottom: 14px;
}
.about-icons {
flex-direction: row;
gap: 25px;
justify-content: start;
margin-bottom: 20px;
}
.about-button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
.experience {
flex-grow: 1;
padding: 30px 30px 200px 30px;
}
.experience-list {
flex-direction: column;
flex-grow: 1;
}
#languages-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.language {
display: flex;
background-color: #f7f7f9;
align-items: center;
padding: 10px;
border-radius: 8px;
}
.language p {
flex-grow: 3;
margin-left: 20px;
}
.language img {
max-width: 50px;
}
.experience h3 {
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 24px;
padding: 10px 0 10px 0;
}
.experience hr {
height: 1px;
border: 0;
border-top: 1px solid lightgray;
}
/* Contact Form */
footer {
background: #6070ff;
background-image: url(../img/background/footerbg.png);
background-size: 60%;
background-repeat: no-repeat;
background-position-x: right;
border-top-left-radius: 100px;
margin-top: -130px;
}
.section-form,
.section-form div,
.section-form form {
flex-direction: column;
text-align: center;
}
.section-form h2 {
font-size: 40px;
padding-bottom: 30px;
font-weight: bold;
}
.section-form h2,
.section-form p {
color: white;
}
.section-form {
margin: 0 24px 0 24px;
padding: 55px 0 55px 0;
}
.contact-title-info {
margin-top: 30px;
}
.contact-info {
margin-bottom: 30px;
}
.section-form form {
gap: 18px;
}
.section-form form input,
.section-form form textarea {
padding: 15px 16px;
border: 1px solid #cfd8dc;
border-radius: 8px;
background: #fff;
flex-grow: 1;
font-family: Poppins, sans-serif;
}
.section-form .button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
.section-form .button:hover {
background-color: lightgray;
}
/* Adding cursor pointer */
button,
.clickeable {
cursor: pointer;
}
button {
transition: all 0.2s linear;
}
button:hover {
background-color: #1026ea;
color: white;
}
/* Displays */
.d-flex {
display: flex;
}
.d-grid {
display: grid;
}
/* Mobile Modals Styling */
#overlay {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #c1c7d0;
opacity: 0.8;
}
#modal {
display: inline-flex;
position: fixed;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
align-items: center;
justify-content: center;
}
.modal-container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 5px 5px 5px 5px;
gap: 5px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 10px;
}
.modal-container .d-flex {
display: flex;
min-width: 0;
min-height: 0;
margin: 0;
overflow: hidden;
}
.modal-container > div {
align-items: center;
justify-content: space-between;
}
.modal-container .work-title {
font-size: 20px;
}
.modal-container .work-info,
.modal-container .work-info .job,
.modal-container .work-info .year {
font-size: 13px;
padding: 1px;
}
.modal-container .work-info {
justify-content: start;
}
.modal-details-and-buttons,
.modal-full-buttons {
flex-direction: column;
}
.modal-details-and-buttons {
gap: 5px;
}
.modal-full-buttons {
gap: 5px;
width: 100%;
}
.modal-container .work-description {
font-size: 11px;
}
#work-description-long {
display: none;
}
.modal-container .modal-preview {
width: 250px;
align-self: center;
}
.modal-container button {
font-size: 0.7em;
}
.modal-buttons {
justify-content: center;
gap: 20px;
}
.modal-buttons button {
display: flex;
align-items: center;
flex-direction: row;
}
.modal-buttons button p {
margin: 0;
font-size: 10px;
}
.modal-buttons .work-button {
display: flex;
flex-direction: row;
justify-content: center;
margin: 0;
padding: 0;
width: 100px;
height: 40px;
gap: 5px;
}
.modal-buttons img {
max-width: 15px;
max-height: 15px;
}
.modal-close-btn:hover {
cursor: pointer;
}
.modal-tags .work-tags {
align-self: start;
justify-self: start;
}
@media screen and (min-width: 992px) {
html {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Poppins", sans-serif;
}
p {
line-height: 24px;
}
.body {
min-width: 480px;
font-family: "Poppins", sans-serif;
}
/* Header */
.head-bar .logo {
margin-left: 80px;
}
.navbar {
display: none;
}
.navbar-desktop {
display: flex;
flex-direction: row;
margin-right: 80px;
}
.navbar-desktop a {
color: #344563;
transition: all 0.2s linear;
}
.navbar-desktop a:hover {
color: blue;
}
.navbar-desktop ul {
gap: 40px;
}
.headline {
background-image: url(../img/background/headerbg.svg);
padding-bottom: 120px;
background-repeat: no-repeat;
align-items: center;
justify-content: center;
border-bottom-left-radius: 50px;
background-color: white;
}
#headline-title {
margin-top: -10px;
margin-bottom: -30px;
}
.headline-content {
max-width: 700px;
gap: 20px;
}
.headline-content h2 {
margin-top: 10px;
}
/* Portfolio - Cards */
.work-card {
display: grid;
grid-template-columns: auto auto;
grid-template-rows: auto;
gap: 50px;
}
.card-info {
display: flex;
flex-direction: column;
margin: 20px;
gap: 10px;
}
#work-2 .card-info,
#work-4 .card-info {
grid-column-start: 1;
grid-row-start: 1;
}
.my-works img {
flex: 1 1 100%;
width: 100%;
width: 544px;
max-width: 544px;
align-self: center;
}
/* About Section */
.about-myself-container {
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 50px;
padding: 100px 0 150px 0;
}
.about-content {
margin-left: 50px;
}
.experience {
margin-right: 50px;
}
.experience-list {
display: flex;
flex-direction: column;
gap: 10px;
}
#languages-list {
flex-direction: row;
}
.language {
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
min-width: 100px;
min-height: 100px;
padding: 5px;
}
.language p {
margin: 0;
padding: 0;
}
/* Contact Me section */
footer {
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url(../img/background/footerbgdesk.svg);
background-repeat: no-repeat;
background-size: 100%;
}
.section-form {
align-items: center;
justify-content: center;
max-width: 350px;
padding: 50px;
padding-bottom: 70px;
font-family: "Poppins", sans-serif;
}
.form-input {
width: 320px;
}
.form-input .button {
align-self: center;
transition: all 0.2s linear;
}
.form-input .button:hover {
background-color: lightgray;
}
/* Mobile Modals Styling */
#modal {
display: inline-flex;
position: fixed;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
align-items: center;
justify-content: center;
}
.modal-container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 20px 10px 20px 10px;
gap: 10px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 10px;
width: 900px;
height: 500px;
min-width: 0;
min-height: 0;
margin: 0;
overflow: hidden;
}
.modal-container > div {
align-items: center;
justify-content: space-between;
}
.modal-container .work-title {
font-size: 20px;
margin-left: 10px;
margin-right: 10px;
}
.modal-container .work-info,
.modal-container .work-info .job,
.modal-container .work-info .year {
font-size: 13px;
padding: 1px;
}
.modal-container .work-info {
flex-direction: row;
justify-content: start;
margin-left: 10px;
margin-right: 10px;
}
.modal-container .work-description {
font-size: 11px;
}
.modal-container .modal-preview {
width: 500px;
align-self: center;
}
.modal-container button {
font-size: 0.7em;
}
.modal-buttons {
justify-content: center;
gap: 20px;
}
.modal-buttons button {
display: flex;
align-items: center;
flex-direction: row;
}
.modal-buttons button p {
margin: 0;
font-size: 10px;
}
.modal-buttons .work-button {
display: flex;
flex-direction: row;
justify-content: center;
margin: 0;
padding: 0;
width: 100px;
height: 40px;
gap: 5px;
}
.modal-buttons img {
max-width: 15px;
max-height: 15px;
}
.modal-close-btn:hover {
cursor: pointer;
}
.modal-details-and-buttons {
flex-direction: row;
flex-wrap: nowrap;
margin-left: 10px;
margin-right: 10px;
}
.modal-full-buttons {
align-items: start;
}
}
@media screen and (min-height: 920px) {
.work-title h3 {
font-size: 40px;
}
.modal-container {
width: 900px;
height: 900px;
justify-content: start;
}
.modal-container .modal-preview {
display: block;
width: 900px;
max-height: 500px;
align-items: start;
}
.modal-container .modal-preview img {
display: block;
max-width: none;
width: 900px;
overflow: hidden;
}
#modal-details-and-buttons {
margin-top: 20px;
}
#modal-details-and-buttons .work-description {
font-size: 15px;
flex-grow: 3;
}
#work-description-short {
display: none;
}
#work-description-long {
display: block;
max-width: 600px;
}
.modal-full-buttons {
gap: 20px;
align-self: start;
}
.modal-full-buttons .d-flex {
margin-left: 10px;
}
}
.focus:focus {
border: solid 3px black;
}
/* Menu Overlay */
#menu-overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: #6070ff;
mix-blend-mode: multiply;
backdrop-filter: blur(6px) opacity(0.5);
transition: all 0.25s linear;
}
#menu-overlay .container,
#menu-overlay ul {
flex-direction: column;
}
#menu-overlay ul {
margin-left: 20px;
gap: 25px;
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 44px;
color: #fff;
}
#menu-overlay .container div {
align-self: end;
}
.xicon-image {
margin: 20px 20px 0 0;
padding: 5px;
}
.d-off {
display: none;
}
.no-scroll {
overflow: hidden;
}
/* Form style */
.form-error {
color: white;
}
|
css/styles.css
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Mobile version */
/* Body general style */
html {
height: 100%;
font-family: "Poppins", sans-serif;
}
body,
.body {
flex-direction: column;
font-family: "Poppins", sans-serif;
width: 100%;
height: 100%;
background-color: #fafafa;
}
ul {
list-style: none;
padding: 0;
}
a {
outline: none;
text-decoration: none;
color: inherit;
}
a:visited,
a:hover,
a:active {
color: inherit;
}
/* Header */
/* Navigation Bar */
.head-bar {
background-color: white;
margin-bottom: 0;
margin-top: 5px;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 0;
}
.head-bar .logo {
font-weight: bold;
color: #1026ea;
margin-left: 24px;
line-height: 20px;
animation: logodisplay 1s;
}
@keyframes logodisplay {
from {
transform: rotate(-90deg);
}
}
.head-bar .menu {
margin-right: 24px;
border: none;
background-color: white;
}
.navbar-desktop {
display: none;
}
/* Headline */
.headline {
background-image: url("../img/background/headlinebgmobile.png");
background-size: 100%;
background-repeat: no-repeat;
display: flex;
border-bottom-left-radius: 100px;
background-color: white;
padding-top: 40px;
padding-bottom: 60px;
}
.headline-content {
flex-direction: column;
margin-left: 24px;
margin-right: 24px;
margin-top: 60px;
border-bottom-left-radius: 50px;
}
#headline-title,
#headline-subtitle {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 52px;
color: #172b4d;
}
#headline-subtitle {
margin-bottom: 5px;
}
#headline-info {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
.headline-info {
margin-bottom: 20px;
}
.headline-action {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
color: #1026ea;
margin-bottom: 20px;
}
.headline-icons {
flex-direction: row;
gap: 25px;
justify-content: start;
}
/* My Works Section */
.my-works {
background-color: #fafafa;
grid-template-rows: auto auto auto auto;
row-gap: 60px;
padding-top: 75px;
padding-bottom: 64px;
}
#work-1 {
grid-row: 1 / 2;
}
#work-2 {
grid-row: 2 / 3;
}
#work-3 {
grid-row: 3 / 4;
}
#work-4 {
grid-row: 4 / 5;
}
p {
margin: 0;
display: inline;
}
/* Works Cards */
.work-card {
flex-direction: column;
background: white;
padding: 16px;
border: 1px solid #dfe1e6;
border-radius: 16px;
margin: 0 24px 0 24px;
}
.card-preview {
flex: 1 1 100%;
width: 100%;
max-width: 480px;
align-self: center;
transition: all 1s;
}
.card-preview:hover {
transform: scale(0.95);
}
.work-title {
font-family: Poppins, sans-serif;
font-style: normal;
font-weight: bold;
font-size: 36px;
color: #172b4d;
line-height: 44px;
margin-top: 24px;
margin-bottom: 15px;
}
.work-info {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.client {
color: #344563;
font-weight: bold;
}
.job,
.year {
font-size: 13px;
color: #7a869a;
}
.counter {
background: #c1c7d0;
width: 8px;
height: 8px;
border-radius: 100%;
}
.work-description {
color: #344563;
}
.work-tags {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.tag-button {
padding: 4px 12px;
color: #1026ea;
background: #ebebff;
border-radius: 8px;
border: none;
}
.work-button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
/* About Myself Section */
.about-myself {
width: 100%;
margin-top: 24px;
background-color: white;
border-top-right-radius: 100px;
}
.about-content {
flex-direction: column;
padding: 30px 30px 30px 30px;
}
#about-title {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 52px;
color: #172b4d;
margin-bottom: 14px;
}
#about-info {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
margin-bottom: 14px;
}
#about-action {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
color: #1026ea;
margin-bottom: 14px;
}
.about-icons {
flex-direction: row;
gap: 25px;
justify-content: start;
margin-bottom: 20px;
}
.about-button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
.experience {
flex-grow: 1;
padding: 30px 30px 200px 30px;
}
.experience-list {
flex-direction: column;
flex-grow: 1;
}
#languages-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.language {
display: flex;
background-color: #f7f7f9;
align-items: center;
padding: 10px;
border-radius: 8px;
}
.language p {
flex-grow: 3;
margin-left: 20px;
}
.language img {
max-width: 50px;
}
.experience h3 {
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 24px;
padding: 10px 0 10px 0;
}
.experience hr {
height: 1px;
border: 0;
border-top: 1px solid lightgray;
}
/* Contact Form */
footer {
background: #6070ff;
background-image: url(../img/background/footerbg.png);
background-size: 60%;
background-repeat: no-repeat;
background-position-x: right;
border-top-left-radius: 100px;
margin-top: -130px;
}
.section-form,
.section-form div,
.section-form form {
flex-direction: column;
text-align: center;
}
.section-form h2 {
font-size: 40px;
padding-bottom: 30px;
font-weight: bold;
}
.section-form h2,
.section-form p {
color: white;
}
.section-form {
margin: 0 24px 0 24px;
padding: 55px 0 55px 0;
}
.contact-title-info {
margin-top: 30px;
}
.contact-info {
margin-bottom: 30px;
}
.section-form form {
gap: 18px;
}
.section-form form input,
.section-form form textarea {
padding: 15px 16px;
border: 1px solid #cfd8dc;
border-radius: 8px;
background: #fff;
flex-grow: 1;
font-family: Poppins, sans-serif;
}
.section-form .button {
padding: 10px 25px;
width: fit-content;
font-size: 17px;
background: white;
border: 1px solid #1026ea;
border-radius: 8px;
color: #1026ea;
}
.section-form .button:hover {
background-color: lightgray;
}
/* Adding cursor pointer */
button,
.clickeable {
cursor: pointer;
}
button {
transition: all 0.2s linear;
}
button:hover {
background-color: #1026ea;
color: white;
}
/* Displays */
.d-flex {
display: flex;
}
.d-grid {
display: grid;
}
/* Mobile Modals Styling */
#overlay {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #c1c7d0;
opacity: 0.8;
}
#modal {
display: inline-flex;
position: fixed;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
align-items: center;
justify-content: center;
}
.modal-container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 5px 5px 5px 5px;
gap: 5px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 10px;
}
.modal-container .d-flex {
display: flex;
min-width: 0;
min-height: 0;
margin: 0;
overflow: hidden;
}
.modal-container > div {
align-items: center;
justify-content: space-between;
}
.modal-container .work-title {
font-size: 20px;
}
.modal-container .work-info,
.modal-container .work-info .job,
.modal-container .work-info .year {
font-size: 13px;
padding: 1px;
}
.modal-container .work-info {
justify-content: start;
}
.modal-details-and-buttons,
.modal-full-buttons {
flex-direction: column;
}
.modal-details-and-buttons {
gap: 5px;
}
.modal-full-buttons {
gap: 5px;
width: 100%;
}
.modal-container .work-description {
font-size: 11px;
}
#work-description-long {
display: none;
}
.modal-container .modal-preview {
width: 250px;
align-self: center;
}
.modal-container button {
font-size: 0.7em;
}
.modal-buttons {
justify-content: center;
gap: 20px;
}
.modal-buttons button {
display: flex;
align-items: center;
flex-direction: row;
}
.modal-buttons button p {
margin: 0;
font-size: 10px;
}
.modal-buttons .work-button {
display: flex;
flex-direction: row;
justify-content: center;
margin: 0;
padding: 0;
width: 100px;
height: 40px;
gap: 5px;
}
.modal-buttons img {
max-width: 15px;
max-height: 15px;
}
.modal-close-btn:hover {
cursor: pointer;
}
.modal-tags .work-tags {
align-self: start;
justify-self: start;
}
@media screen and (min-width: 992px) {
html {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Poppins", sans-serif;
}
p {
line-height: 24px;
}
.body {
min-width: 480px;
font-family: "Poppins", sans-serif;
}
/* Header */
.head-bar .logo {
margin-left: 80px;
}
.navbar {
display: none;
}
.navbar-desktop {
display: flex;
flex-direction: row;
margin-right: 80px;
}
.navbar-desktop a {
color: #344563;
transition: all 0.2s linear;
}
.navbar-desktop a:hover {
color: blue;
}
.navbar-desktop ul {
gap: 40px;
}
.headline {
background-image: url(../img/background/headerbg.svg);
padding-bottom: 120px;
background-repeat: no-repeat;
align-items: center;
justify-content: center;
border-bottom-left-radius: 50px;
background-color: white;
}
#headline-title {
margin-top: -10px;
margin-bottom: -30px;
}
.headline-content {
max-width: 700px;
gap: 20px;
}
.headline-content h2 {
margin-top: 10px;
}
/* Portfolio - Cards */
.work-card {
display: grid;
grid-template-columns: auto auto;
grid-template-rows: auto;
gap: 50px;
}
.card-info {
display: flex;
flex-direction: column;
margin: 20px;
gap: 10px;
}
#work-2 .card-info,
#work-4 .card-info {
grid-column-start: 1;
grid-row-start: 1;
}
.my-works img {
flex: 1 1 100%;
width: 100%;
width: 544px;
max-width: 544px;
align-self: center;
}
/* About Section */
.about-myself-container {
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 50px;
padding: 100px 0 150px 0;
}
.about-content {
margin-left: 50px;
}
.experience {
margin-right: 50px;
}
.experience-list {
display: flex;
flex-direction: column;
gap: 10px;
}
#languages-list {
flex-direction: row;
}
.language {
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
min-width: 100px;
min-height: 100px;
padding: 5px;
}
.language p {
margin: 0;
padding: 0;
}
/* Contact Me section */
footer {
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url(../img/background/footerbgdesk.svg);
background-repeat: no-repeat;
background-size: 100%;
}
.section-form {
align-items: center;
justify-content: center;
max-width: 350px;
padding: 50px;
padding-bottom: 70px;
font-family: "Poppins", sans-serif;
}
.form-input {
width: 320px;
}
.form-input .button {
align-self: center;
transition: all 0.2s linear;
}
.form-input .button:hover {
background-color: lightgray;
}
/* Mobile Modals Styling */
#modal {
display: inline-flex;
position: fixed;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
align-items: center;
justify-content: center;
}
.modal-container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 20px 10px 20px 10px;
gap: 10px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 10px;
width: 900px;
height: 500px;
min-width: 0;
min-height: 0;
margin: 0;
overflow: hidden;
}
.modal-container > div {
align-items: center;
justify-content: space-between;
}
.modal-container .work-title {
font-size: 20px;
margin-left: 10px;
margin-right: 10px;
}
.modal-container .work-info,
.modal-container .work-info .job,
.modal-container .work-info .year {
font-size: 13px;
padding: 1px;
}
.modal-container .work-info {
flex-direction: row;
justify-content: start;
margin-left: 10px;
margin-right: 10px;
}
.modal-container .work-description {
font-size: 11px;
}
.modal-container .modal-preview {
width: 500px;
align-self: center;
}
.modal-container button {
font-size: 0.7em;
}
.modal-buttons {
justify-content: center;
gap: 20px;
}
.modal-buttons button {
display: flex;
align-items: center;
flex-direction: row;
}
.modal-buttons button p {
margin: 0;
font-size: 10px;
}
.modal-buttons .work-button {
display: flex;
flex-direction: row;
justify-content: center;
margin: 0;
padding: 0;
width: 100px;
height: 40px;
gap: 5px;
}
.modal-buttons img {
max-width: 15px;
max-height: 15px;
}
.modal-close-btn:hover {
cursor: pointer;
}
.modal-details-and-buttons {
flex-direction: row;
flex-wrap: nowrap;
margin-left: 10px;
margin-right: 10px;
}
.modal-full-buttons {
align-items: start;
}
}
@media screen and (min-height: 920px) {
.work-title h3 {
font-size: 40px;
}
.modal-container {
width: 900px;
height: 900px;
justify-content: start;
}
.modal-container .modal-preview {
display: block;
width: 900px;
max-height: 500px;
align-items: start;
}
.modal-container .modal-preview img {
display: block;
max-width: none;
width: 900px;
overflow: hidden;
}
#modal-details-and-buttons {
margin-top: 20px;
}
#modal-details-and-buttons .work-description {
font-size: 15px;
flex-grow: 3;
}
#work-description-short {
display: none;
}
#work-description-long {
display: block;
max-width: 600px;
}
.modal-full-buttons {
gap: 20px;
align-self: start;
}
.modal-full-buttons .d-flex {
margin-left: 10px;
}
}
.focus:focus {
border: solid 3px black;
}
/* Menu Overlay */
#menu-overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: #6070ff;
mix-blend-mode: multiply;
backdrop-filter: blur(6px) opacity(0.5);
transition: all 0.25s linear;
}
#menu-overlay .container,
#menu-overlay ul {
flex-direction: column;
}
#menu-overlay ul {
margin-left: 20px;
gap: 25px;
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 44px;
color: #fff;
}
#menu-overlay .container div {
align-self: end;
}
.xicon-image {
margin: 20px 20px 0 0;
padding: 5px;
}
.d-off {
display: none;
}
.no-scroll {
overflow: hidden;
}
/* Form style */
.form-error {
color: white;
}
| 0.324342 | 0.052741 |
a:hover {
color: #2205bf;
text-decoration:none;
}
.panel-title1 a:hover{
color: #fff;
text-decoration: underline;
}
.social-box.linkedin i {
color: #fff;
background: #2205bf;
}
.checkbox span:after {
color: #fff;
background-color: #2205bf;
}
.user-card .card-block .activity-leval li.active {
background-color: #2205bf;
}
#count-down .clock-presenter .digit {
background:#2205bf;
color:#fff;
}
form-control:focus {
color: #6f6e6e;
background-color: #fff;
border-color:#2205bf;
}
.btn-primary {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
box-shadow: 0 5px 10px rgb(34, 5, 191,0.3);
}
.btn-primary:hover {
color: #fff !important;
background-color:#4b2feb;
border-color: #4b2feb;
}
.btn-primary:focus, .btn-primary.focus {
box-shadow: 0 0 0 2px rgb(48, 110, 255,0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #4b2feb;
border-color: #4b2feb;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(24, 193, 185, 0.1);
}
.btn-secondary {
color: #fff;
background-color: #fa713b ;
border-color: #fa713b;
box-shadow:0 5px 10px rgba(250, 113, 59, 0.3);
}
.btn-secondary:hover {
color: #fff !important;
background-color:#f36730;
border-color:#fa713b;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show>.btn-secondary.dropdown-toggle {
color: #fff;
background-color:#fa713b;
border-color: #fa713b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px #fa713b;
}
.btn-outline-primary {
color: #2205bf !important;
background-color: transparent;
background-image: none;
border-color: #2205bf;
box-shadow: 0 2px 5px 0 rgb(204, 197, 238), 0 2px 10px 0 rgb(218, 213, 246);
}
.btn-outline-primary:hover {
color: #fff !important;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
box-shadow: 0 0 0 2px rgba(5, 117, 230, 0.1);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
color: #2205bf;
background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show>.btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(5, 117, 230, 0.1);
}
.btn-outline-secondary {
color: #fa713b;
background-color: transparent;
background-image: none;
border-color:#fa713b;
}
.btn-outline-secondary:hover {
color: #fff !important;
background-color:#fa713b;
border-color:#fa713b;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.1);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
color: #fff;
background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show>.btn-outline-secondary.dropdown-toggle {
color: #fff;
background-color:#fa713b;
border-color:#fa713b;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.1);
}
.btn-link {
font-weight: 400;
color: #2205bf;
background-color: transparent;
}
.btn-link:hover {
color:#2205bf;
text-decoration: underline;
background-color: transparent;
border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
text-decoration: underline;
border-color: transparent;
box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
color: #aaadb2;
pointer-events: none;
}
.notifyimg {
background: #2205bf;
}
.drop-icon-wrap .drop-icon-item:hover{
color: #2205bf;
text-decoration: none;
background-color: #f1f1f5;
}
.dropdown-item:hover, .dropdown-item:focus {
color: #2205bf;
text-decoration: none;
background-color:#f1f1f5;
}
.dropdown-item.active, .dropdown-item:active {
color: #2205bf;
text-decoration: none;
background-color:#f1f1f5;
}
.button-1{
border:1px solid #2205bf;
}
.button-1 a{
color:#2205bf;
}
.eff-1{
background:#2205bf;
}
.eff-2{
background:#2205bf;
}
.eff-3{
background:#2205bf;
}
.eff-4{
background:#2205bf;
}
.eff-5{
background:#2205bf;
}
.eff-6{
background:#2205bf;
}
.eff-7{
border:0px solid #2205bf;
}
.button-1:hover .eff-7{
border:70px solid #2205bf;
}
.eff-8{
border:70px solid #2205bf;
}
.button-1:hover .eff-8{
border:0px solid #2205bf;
}
.button-1.btn-hover:hover a{
color:#2205bf
}
.accordionjs .acc_section.acc_active > .acc_head{
background-color: #ebf2f7;
}
timeline__item:after {
border: 6px solid #2205bf;
}
.custom-control-input:checked~.custom-control-label::before {
color: #fff;
background-color: #2205bf;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
background-color: #2205bf;
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
background-color: #2205bf;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
background-color: #2205bf;
}
.custom-select:focus {
border-color: #2205bf;
}
.custom-file-input:focus~.custom-file-label {
border-color: #2205bf;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-file-input:focus~.custom-file-label::after {
border-color: #2205bf;
}
.custom-file-label::after {
background-color: #2205bf;
border-left: 1px solid #2205bf;
}
.custom-range::-webkit-slider-thumb {
background-color: #2205bf;
}
.custom-range::-moz-range-thumb {
background-color: #2205bf;
}
.custom-range::-ms-thumb {
background-color: #2205bf;
}
.nav-link.active {
color: #fff;
background-color: #2205bf;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
color: #fff;
background-color: #2205bf;
}
.page-link:hover {
color: #2205bf;
}
.page-item.active .page-link {
z-index: 1;
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.range.range-primary input[type="range"]::-webkit-slider-thumb {
background-color: #2205bf;
}
.range.range-primary input[type="range"]::-moz-slider-thumb {
background-color: #2205bf;
}
.range.range-primary output {
background-color: #2205bf;
}
.range.range-primary input[type="range"] {
outline-color: #2205bf;
}
.nav-tabs .nav-item1 .nav-link:hover:not(.disabled) {
color: #fff;
background: #2205bf;
}
.nav-tabs .nav-item1 .nav-link.active {
color: #fff;
background: #2205bf;
}
.panel.price>.panel-heading {
background:#2205bf;
color:#fff;
}
.panel.price>.panel-heading{
background: #2205bf;
}
.pricing-tabs .nav-price li a{
border: 1px solid #2205bf;
}
.pricing-tabs .nav-price li .active{
background: #2205bf;
color: #fff;
}
.heading-primary {
background-color: #2205bf;
color: #ffffff;
padding: 5px;
}
.alert-primary {
color: #fcfdff;
background-color: #2205bf;
border-color: #2205bf;
}
.alert-primary hr {
border-top-color: #b7cded;
}
.alert-primary .alert-link {
color: #172b46;
}
.badge-primary {
color: #fff;
background-color: #2205bf;
box-shadow:0 5px 10px rgb(34, 5, 191,0.2);
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
color: #fff;
text-decoration: none;
background-color: #8135c3;
}
.bg-gradient-primary{
background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);
}
.bg-gradient-secondary{
background-image :linear-gradient(315deg, #ee9617 0%, #fe5858 74%);
}
.bg-gradient-success{
background:linear-gradient(120deg, #04a760 0%, #36da95 100%);
}
.bg-gradient-info{
background-image: linear-gradient(315deg, #0584a7 0%, #09c6f9 74%);
}
.bg-gradient-warning{
background:linear-gradient(120deg, #f9bd1d 0%, #ffc107 100%);
}
.bg-gradient-danger{
background:linear-gradient(120deg, #d20c0c 0%, #ff5630 100%);
}
.bg-primary-tranparant{
background-color: #ded8fd !important;
color: #2205bf;
}
.bg-secondary-tranparant{
background-color: #fbdfc6 !important;
color: #ff9b44;
}
.bg-success-tranparant{
background-color: #cbeddf !important;
color: #1dab2d;
}
.bg-warning-tranparant{
background-color: rgba(255, 171, 0, 0.25) !important;
color: #ffab00;
}
.bg-danger-tranparant{
background-color: #fbd2da !important;
color: #fa5c7c;
}
.bg-info-tranparant{
background-color: #caeaf5 !important;
color: #0ca7ec;
}
.bg-primary {
background-color: #2205bf !important;
color:#fff;
}
a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
background-color: #2356ce !important;
color:#fff;
}
.border-primary {
border-color: #2205bf !important;
}
.text-primary {
color: #2205bf !important;
}
a.text-primary:hover, a.text-primary:focus {
color: #4a2def !important;
}
a.text-dark:hover, a.text-dark:focus {
color: #2205bf !important;
}
.header-bg {
background:#fa713b;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right,#fa713b, #2205bf);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right,#fa713b, #2205bf);
}
.nav-tabs .nav-link:hover:not(.disabled) {
color: #fff;
background: #2205bf;
}
.nav-tabs .nav-link.active {
color: #fff;
background: #2205bf;
}
.navtab-wizard.nav-tabs .nav-link.active, .navtab-wizard.nav-tabs .nav-link:hover{
color: #2205bf;
background: #fff;
}
.expanel-primary {
border: #2205bf !important;
}
.expanel-primary>.expanel-heading {
color: #fff !important;
background-color: #2205bf !important;
border-color: #2205bf !important;
}
.error-img .form-control:focus {
border-color: #2205bf;
}
.avatar {
background: #2205bf no-repeat center/cover;
}
.pricing-table:hover .price-header {
background-color: #2205bf;
}
.primary .pricing-divider{
background:linear-gradient(to bottom right,#2205bf,#fa713b) !important;
padding: 1em 0 4em;
position: relative;
}
.secondary .pricing-divider{
background:linear-gradient(to bottom right, #fa713b 0%, #4a08a0 100%) !important;
padding: 1em 0 4em;
position: relative;
}
.product-grid6 .icons li a{
color:#2205bf;
border:1px solid #2205bf;
}
.product-grid6 .icons li a:hover{
color:#fff;
background-image:linear-gradient(120deg, #2205bf 0%, #2205bf 100%);
}
.product-grid6 .icons li a:after,.product-grid6 .icons li a:before{
color:#fff;
background-image:linear-gradient(120deg, #2205bf 0%, #2205bf 100%);
}
/*--loaders--*/
.spinner {
background:#2205bf;
}
.spinner-lg {
background-color: #2205bf;
}
.double-bounce1, .double-bounce2 {
background: #2205bf;
}
.cube1, .cube2 {
background: #2205bf;
}
.lds-heart div {
background: #2205bf;
}
.lds-heart div:after,
.lds-heart div:before {
background: #2205bf;
}
.lds-ring div {
border: 6px solid #2205bf;
border-color: #2205bf transparent transparent transparent;
}
.lds-hourglass:after {
border: 26px solid #2205bf;
border-color: #2205bf transparent ;
}
.lds-circle > div {
background: #2205bf;
}
.lds-dual-ring:after {
border: 5px solid #2205bf;
border-color: #2205bf transparent #2205bf transparent;
}
.lds-facebook div {
background: #2205bf;
}
.lds-roller div:after {
background: #2205bf;
}
.lds-ripple div {
border: 4px solid #2205bf;
}
.lds-spinner div:after {
background: #2205bf;
}
.lds-default div {
background: #2205bf;
}
.lds-ellipsis div {
background: #2205bf;
}
.lds-grid div {
background: #2205bf;
}
div.lds-ball2 div {
background: #2205bf;
}
.lds-ball div {
background: #2205bf;
}
.lds-bars div:nth-child(1) {
background: #2205bf;
}
.lds-bars div:nth-child(2) {
background: #2205bf;
}
.lds-bars div:nth-child(3) {
background: #2205bf;
}
.lds-bars div:nth-child(4) {
background: #2205bf;
}
@keyframes lds-blocks {
0% {
background: #fa713b;
}
12.5% {
background: #fa713b;
}
12.625% {
background: #2205bf;
}
100% {
background: #2205bf;
}
}
@-webkit-keyframes lds-blocks {
0% {
background: #fa713b;
}
12.5% {
background: #fa713b;
}
12.625% {
background: #2205bf;
}
100% {
background: #2205bf;
}
}
.lds-blocks div {
background: #2205bf;
}
.lds-cube div {
background: #2205bf;
}
.lds-eclipse div {
box-shadow: 0 4px 0 0 #2205bf;
}
.lds-flickr div:nth-child(1) {
background: #2205bf;
}
.lds-flickr div:nth-child(3) {
background: #2205bf;
}
.lds-gear>div div {
background: #2205bf;
}
.lds-magnify>div>div div:nth-child(1) {
border: 12px solid #2205bf;
}
.lds-magnify>div>div div:nth-child(2) {
background: #2205bf;
}
.lds-pacman>div:nth-child(2) div {
background: #2205bf;
}
.lds-disk>div div:nth-child(1) {
background: #2205bf;
}
.bn-label{
background: #2205bf;
color:#fff;
}
.best-ticker{
border: solid 1px #2205bf;
}
/*--loaders--*/
.logo-img{
background: url(../images/brand/logo.png);
display: block;
position: absolute;
width: 100%;
height: 100%;
background-repeat: no-repeat;
margin-left: 30px;
}
@media (max-width:320px){
.logo-img{
background: url(images/brand/favicon.png);
background-repeat: no-repeat;
margin-left: 30px;
}
}
.mediaicon {
border: 1px solid #2205bf;
background: #2205bf;
}
a.chip:hover {
color: #fff;
text-decoration: none;
background-color: #2205bf;
}
.highlight .s {
color: #2205bf;
}
.selectgroup-input:checked+.selectgroup-button {
border-color: #2205bf;
z-index: 1;
color: #2205bf;
background: #f6f7fb;
}
.selectgroup-input:focus+.selectgroup-button {
border-color: #2205bf;
z-index: 2;
color: #2205bf;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-switch-input:checked~.custom-switch-indicator {
background: #2205bf;
}
.custom-switch-input:focus~.custom-switch-indicator {
border-color: #2205bf;
}
.imagecheck-input:focus~.imagecheck-figure {
border-color:#eff2f9
}
.imagecheck-figure:before {
background: #2205bf url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") no-repeat center center/50% 50%;
color: #fff;
}
.colorinput-input:focus~.colorinput-color {
border-color: #2205bf;
}
.ui-datepicker .ui-datepicker-title {
color: #2205bf;
font-weight: bold;
}
#back-to-top {
background:#2205bf;
color: #fff;
}
#back-to-top:hover {
background: #fff;
color: #2205bf;
border: 2px solid #2205bf;
}
#chat-message {
background: linear-gradient(120deg, #0f75ff 50%, #2205bf 100%);
color: #fff;
}
.tabs-menu1 ul li .active{
border-bottom: 3px solid #2205bf;
border-radius: 2px;
color: #2205bf;
}
.wideget-user-tab .tabs-menu1 ul li .active{
border-bottom: 2px solid #2205bf !important;
}
.rating-stars .rating-stars-container .rating-star.is--active .fa-heart ,
.rating-stars .rating-stars-container .rating-star.is--hover .fa-heart {
color: #2205bf;
}
.message-feed:not(.right) .mf-content {
background: #eff2f9;
font-size: 15px;
color: #3c4858;
}
.message-feed:not(.right) .mf-content:before{
border-right-color: #e2ebf7;
}
.msb-reply button {
background: #2205bf;
color:#fff;
}
.wizard-card .moving-tab {
background-color: #2205bf !important;
}
.wizard-card .choice:hover .icon, .wizard-card .choice.active .icon {
border-color: #2205bf !important;
color: #2205bf !important;
}
.cal1 .clndr .clndr-table .header-days {
background: #2205bf;
}
.cal1 .clndr .clndr-table tr .day.today.event,
.cal1 .clndr .clndr-table tr .day.my-today.event {
background: #2205bf;
}
.cal1 .clndr .clndr-table tr .day.today:hover,
.cal1 .clndr .clndr-table tr .day.my-today:hover {
background: #2205bf;
color:#fff;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button {
color: #2205bf;
background: #e6f2fe;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button {
color: #2205bf;
background: #e6f2fe;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button:hover {
background: #2205bf;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button:hover {
background: #2205bf;
}
.fc button {
background: #2205bf;
}
.fc-event,
.fc-event-dot {
background-color: #2205bf;
color:#f1f1f1! important;
}
.sweet-alert button {
background-color: #2205bf !important;
}
.timeline__item:after {
border: 6px solid #2205bf;
}
.label-primary.arrowed:before {
border-right-color: #2205bf;
}
.widgetdate p{
border-bottom:2px solid #2205bf;
}
.widgetbox p {
border-bottom:2px solid #2205bf;
}
.datebox p {
border-bottom:2px solid #2205bf;
}
.arrow-ribbon.bg-primary:before {
border-left: 15px solid #2205bf;
}
.arrow-ribbon.ribbon-center.bg-primary:before {
border-left: 33px solid #2205bf;
}
.arrow-ribbon.top-right.bg-primary:before {
border-right: 15px solid #2205bf;
}
.arrow-ribbon.bottom-right.bg-primary:before {
border-right: 15px solid #2205bf;
}
.arrow-ribbon.ribbon-center3.bg-primary:before {
border-right: 15px solid #2205bf;
}
.ribbon1:after {
border-top: 10px solid #2205bf;
}
.ribbon1 span {
background: #2205bf;
}
.ribbon1 span:before {
background: #2205bf;
}
.ribbon1 span:after {
background: #2205bf;
}
.ribbon2 {
background: #2205bf;
}
.ribbon2:before {
border-bottom: 6px solid #272b44;
}
.ribbon2:after {
border-left: 30px solid #2205bf;
border-right: 30px solid #2205bf;
}
.ribbon3 {
background: #2205bf;
}
.ribbon3:after {
border-left: 15px solid #2205bf;
}
.ribbon4 {
background: #2205bf;
}
.ribbon5 {
background: #2205bf;
}
.arrow-ribbon2:before {
border-left: 24px solid #272b44;
}
.badge-offer.bg-primary:after{
border-top: 12px solid #272b44;
}
.badge-offer1.bg-primary:after{
border-top: 12px solid #272b44;
}
.ribbon5:before {
border-top: 10px solid #272b44;
}
.ribbon5:after {
border-top: 10px solid #272b44;
}
.wrap:before {
background: #272b44;
}
.wrap:after {
background: #272b44;
}
.ribbon6 {
box-shadow:0 0 0 3px #2205bf, 0px 21px 5px -18px rgba(0,0,0,0.6);
background: #2205bf;
}
.product-tags li a:hover{
background:#2205bf;
border-color:#2205bf;
border-radius:2px;
color:#fff!important;
}
.card-pay .tabs-menu li a.active {
background: rgb(34, 5, 191);
color: #fff;
}
.item1-tabs-menu ul li .active {
background: #2205bf;
color: #fff;
}
.carousel-indicators li.active {
color: #fff;
background: #2205bf !important;
}
.item-cards7-ic.realestate-list li a:hover{
color:#2205bf;
}
.item1-links a:hover{
color:#2205bf;
}
.item1-links a.active{
background:#f1f1f5;
color:#2205bf;
border-right:2px solid #2205bf;
}
.settings-tab .tabs-menu li a.active {
background: #2205bf;
color: #fff;
}
.ads-tabs .tabs-menus ul li .active {
background: #2205bf;
color: #fff;
}
.showmore-button-inner {
border: 1px solid #2205bf;
color: #2205bf;
}
.owl-nav button {
color: #2205bf !important;
}
.owl-carousel:hover .owl-nav button {
color: #2205bf !important;
}
.owl-nav > div i {
color:#2205bf;
}
.tabs-menu ul.eductaional-tabs li .active{
background: #2205bf;
}
.register-right .nav-tabs .nav-link:hover{
background:#2205bf;
color:#fff ;
}
.gradient-icon {
background: linear-gradient(120deg, #3ba2ff 0%, #2205bf 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.axgmap-img{
border:3px solid #2205bf;
background:#fff;
}
code {
color: #2205bf;
}
#gdpr-cookie-message h4 {
color: #2205bf;
}
#gdpr-cookie-message h5 {
color: #2205bf;
}
#gdpr-cookie-message a {
color: #2205bf;
border-bottom: 1px solid #2205bf;
}
#gdpr-cookie-message a:hover {
border-bottom: 1px solid #2205bf;
transition: all 0.3s ease-in;
color:#2205bf;
}
button#gdpr-cookie-advanced {
color: #fff;
background-color: #2205bf;
}
.ui-widget-header {
background: #2205bf;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
background: #2205bf;
}
.items-blog-tab-heading .items-blog-tab-menu li .active{
background: #2205bf;
color: #fff;
}
.item2-gl-nav .item2-gl-menu li .active{
color:#2205bf;
}
.item-all-cat .category-type .item-all-card img{
background: linear-gradient(120deg, #3ba2ff 0%, #2205bf 100%);
}
.item-all-cat .item-all-card:hover .item-all-text h5{
color:#2205bf !important;
}
.counter-icon{
border: 1px solid #2205bf;
}
.counter-icon i{
color: #2205bf;
}
.social li a:hover{
color:#2205bf;
}
.footer-main a:hover{
color:#2205bf;
}
.footer-links a:hover{
color:#2205bf;
text-decoration:none;
}
.header-main .drop-profile i{
color:#2205bf;
}
.header-links li a.active{
background:#2205bf;
color:#fff;
}
.header-links li a:hover{
background:#2205bf;
color:#fff;
}
@media (max-width:480px){
.zoom-container .arrow-ribbon2:before{
border-left: 17px solid #2205bf;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
color: #fff;
background-color: #2205bf;
border-radius:0;
}
}
.bg-bannerpattern{
background: linear-gradient(138deg, rgb(81, 15, 168), rgb(48, 110, 255));
}
.owl-nav > div i {
color:#2205bf;
}
.SumoSelect:focus>.CaptionCont{
border-color: #2205bf;
}
.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p:focus {
border-color: #2205bf;
outline: none;
background-color: #2205bf;
}
.SumoSelect>.optWrapper.multiple>.options li.opt.selected span i, .SumoSelect .select-all.selected>span i, .SumoSelect .select-all.partial>span i {
background-color: #2205bf;
}
.default-skin{
--skin-hover:#2205bf;
}
.ms-choice {
color: #2205bf;
}
.multi-wrapper .item-1:hover {
background: #2205bf;
}
.radio-group .radio-normal:hover + label:before {
border-color: #2205bf;
}
.radio-group .radio-normal:checked + label:before {
border-color: #2205bf;
text-align: center;
background: #2205bf;
}
.checkbox-group .checkbox-normal:hover + label:before {
border-color: #2205bf;
}
.checkbox-group .checkbox-normal:checked + label:before {
border-color: #2205bf;
font-weight: bold;
background: #2205bf;
}
.checkbox-group .checkbox-indeterminate + label:before {
border-color: #2205bf;
font-weight: bold;
background: #2205bf;
}
.tab-active {
color: #2205bf;
border-bottom: 2px solid #2205bf;
}
.transfer-double-list-footer {
color: #2205bf;
}
.btn-arrow-active {
color: #fff;
background: #2205bf;
}
.transfer-double-list-main::-webkit-scrollbar-thumb:hover {
background: #2205bf;
}
.transfer-double-selected-list-main::-webkit-scrollbar-thumb:hover {
background: #2205bf;
}
.breadcrumb-arrow li a {
background-color:#2205bf ;
border: 1px solid #2205bf;
}
.breadcrumb-arrow li a:before {
border-left-color: #2205bf ;
}
.breadcrumb-arrow li a:after {
border-left: 12px solid #e8e8ef;
}
.cont_breadcrumbs_1 > ul > li:hover {
background-color: #ecdfdf;
}
.cont_breadcrumbs_1 > ul > li:last-child {
background-color: #2205bf;
}
.timeline>li .timeline-image {
border: 7px solid #2205bf;
border-radius: 100%;
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline>li:nth-child(odd) .line:before {
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline>li:nth-child(even) .line:before {
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline--horizontal .timeline-divider {
background:#2205bf !important;
}
.timeline-nav-button{
border:2px solid #2205bf;
}
.custom-control-input:focus~.custom-control-label::before {
box-shadow: 0 0 0 1px, 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-webkit-slider-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px , 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-moz-range-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px , 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-ms-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px, 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.error-img .form-control:focus {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-switch-input:focus~.custom-switch-indicator {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.imagecheck-input:focus~.imagecheck-figure {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.colorinput-input:focus~.colorinput-color {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.selectize-input.focus {
border-color: #0000fe;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.item-card7-imgs:hover a{
background:linear-gradient(to right, rgba(59, 162, 255, 0.7), rgb(48, 110, 255, 0.7));
}
.owl-carousel button.owl-dot {
background:rgb(206, 199, 241) !important;
}
.owl-carousel button.owl-dot.active {
background:rgb(34, 5, 191) !important;
}
.bg-background:before{
background:rgba(0,0,0,0.7);
}
.bg-background2:before{
background:linear-gradient(to right, rgba(81, 15, 168, 0.9), rgb(48, 110, 255, 0.8));
}
.bg-background-color:before{
background:linear-gradient(to right, rgba(81, 15, 168, 0.9), rgb(48, 110, 255, 0.8));;
}
.bg-background3:before{
background-image:linear-gradient( 135deg, rgba(0, 0, 0, 0.7) 10%, rgb(0, 0, 0, 0.7) 100%);
}
.item-card:hover .item-card-desc:before{
background:linear-gradient( 135deg, rgba(81, 15, 168, 0.9) 10%, rgb(48, 110, 255, 0.8) 100%);
}
.slider-header .item:before {
background: linear-gradient( 135deg, rgba(81, 15, 168, 0.9) 10%, rgb(48, 110, 255, 0.8) 100%);
}
.rating-stars .rating-stars-container .rating-star.is--active,
.rating-stars .rating-stars-container .rating-star.is--hover {
color: #ffc107;
}
.rating-stars .rating-stars-container .rating-star.is--no-hover {
color: rgb(223, 228, 243);
}
.rating-stars .rating-stars-container .rating-star.is--active .fa-heart ,
.rating-stars .rating-stars-container .rating-star.is--hover .fa-heart {
color: #2205bf ;
}
.rating-stars .rating-stars-container .rating-star .fa-heart .is--no-hover {
color: #e8e8ef;
}
/*-----Rating Stars-----*/
/*-----Br Themes-----*/
.br-theme-bars-horizontal .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-horizontal .br-widget a.br-active,
.br-theme-bars-horizontal .br-widget a.br-selected {
background-color: #2205bf ;
}
.br-theme-bars-horizontal .br-widget .br-current-rating {
color: #2205bf ;
}
.br-theme-bars-pill .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-pill .br-widget a.br-active,
.br-theme-bars-pill .br-widget a.br-selected {
background-color: #2205bf ;
color: white;
}
.br-theme-bars-pill .br-widget a {
color: #2205bf ;
}
.br-theme-bars-square .br-widget a.br-active,
.br-theme-bars-square .br-widget a.br-selected {
border: 2px solid #e8e8ef ;
color: #2205bf ;
}
.br-theme-bars-square .br-widget a {
border: 2px solid rgba(107,122,144,0.1);
background-color: #fff;
color: #95a1b2;
}
.br-theme-bars-movie .br-widget a.br-active,
.br-theme-bars-movie .br-widget a.br-selected {
background-color: #2205bf ;
}
.br-theme-bars-movie .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-movie .br-widget .br-current-rating {
color:#2205bf ;
}
.br-theme-bars-1to10 .br-widget a {
background-color:#eaf0f7;
}
.br-theme-bars-1to10 .br-widget a.br-active,
.br-theme-bars-1to10 .br-widget a.br-selected {
background-color:#2205bf;
}
.br-theme-bars-1to10 .br-widget .br-current-rating {
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a.br-active:after {
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a.br-selected:after {
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-active:after {
content: '\f005';
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
content: '\f005';
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
content: '\f123';
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a:after {
content: '\f005';
color: #e8e8ef;
}
.br-theme-fontawesome-stars-o .br-widget a:after {
content: '\f006';
color: #e8e8ef;
}
/*-----Br Themes-----*/
.jsr_slider:focus::before {
background: #2205bf;
}
.jsr_slider::before {
background: #2205bf ;
}
.jsr_label {
background:#4629e7;
color: #fff;
}
.jsr_label--minmax {
color: #fff;
background: #2205bf;
}
.jsr_bar{
background: #2205bf;
}
.jsr_bar--limit {
background-color: #2205bf;
}
.irs-slider{
background-color: #2205bf;
}
.offer-primary { border-color: #2205bf ; }
.offer-primary .shape{
border-color: transparent #2205bf transparent transparent;
}
.pignose-calendar .pignose-calendar-unit.pignose-calendar-unit-active a {
background-color: #2205bf;
}
.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sun,
.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sat {
color: #2205bf;
}
.pignose-calendar .pignose-calendar-top .pignose-calendar-top-nav .pignose-calendar-top-icon {
color: #2205bf;
}
.slider-transparent.slider-box.slide-animation li:before{
background:rgb(48, 110, 255, 0.8);
}
.index-cat:before{
background:url(images/brand/favicon-1.png);
}
.side-account i{
height: 45px;
width: 45px;
padding: 7px;
border-radius: 50%;
font-size: 23px;
text-align: center;
line-height: 28px;
}
.menu-icons .menu-icon{
height: 45px;
width: 45px;
padding: 7px;
border-radius: 50%;
font-size: 23px;
text-align: center;
line-height: 28px;
}
.btn-primary-light{
border-color: #dfd7fa;
background-color: rgba(90, 63, 243, 0.25)!important;
color: #2205bf!important;
}
.btn-primary-light:hover{
border-color: #2205bf;
background-color: #2205bf !important;
color: #ffff !important;
}
.btn-info-light {
color: #0a7ffb;
background: rgba(33, 150, 243, 0.24);
border-color: #cae6fc;
}
.btn-info-light:hover {
color: #fff;
background-color: #0a7ffb;
border-color: #0a7ffb;
}
.btn-secondary-light {
color: #fa713b;
background-color: rgba(250, 113, 59, 0.25);
border-color: #f7d9cc;
}
.btn-secondary-light:hover {
color: #fff;
background-color: #fa713b;
border-color: #fa713b;
}
.btn-success-light {
color: #36b37e;
background-color: #d1f3e0;
border-color: #cdecdf;
}
.btn-success-light:hover {
color: #fff;
background-color: #36b37e;
border-color: #36b37e;
}
.btn-warning-light{
background-color: #fff2d8;
color: #ffa001;
}
.user_info{
margin-top: auto;
margin-bottom: auto;
margin-left: 15px;
}
.img_cont {
position: relative;
height: 50px;
width: 50px;
}
.chat .contacts li {
width: 100% !important;
padding: 15px;
border-bottom: 1px solid rgba(255,255,255,0.09);
}
.chat .active {
background-color: rgba(255,255,255,0.1);
}
.chat .contacts li {
width: 100% !important;
padding: 13px 15px;
border-bottom: 1px solid rgb(227, 227, 247,0.5);
}
/*--item-card2--*/
.item-card2-icons{
position: absolute;
top: 20px;
right: 15px;
z-index:9;
}
.item-card2-icons a{
width: 2rem;
display: inline-block;
height: 2rem;
text-align: center;
border-radius: 100px;
line-height: 2.1rem;
border-radius:50px;
color:#fff;
}
/*--bg-transparents--*/
.bg-primary-transparent {
background: rgba(34, 5, 191, 0.15) !important;
}
.bg-secondary-transparent {
background-color: rgba(247, 138, 95, 0.2) !important;
}
.bg-success-transparent {
background-color: rgba(54, 179, 126, 0.2) !important;
}
.bg-primary-transparent {
background-color:#d6e2ff ;
}
.bg-info-transparent {
background-color: #ccf1f7;
}
.bg-warning-transparent {
background-color: #fec !important;
}
.bg-danger-transparent {
background-color: #ffddd6;
}
.bg-pink-transparent {
background-color: rgba(255,43,136, 0.15) ;
}
.bg-purple-transparent {
background-color: rgba(96,77,216, 0.2) ;
}
.bg-dark-transparent {
background-color: rgba(55,66,84, 0.1) ;
}
.bg-twitter-transparent {
background: rgb(28, 157, 235,0.2);
color:#1c9deb
}
.bg-linkedin-transparent {
background: rgba(0, 119, 181, 0.2);
color: #0077b5;
}
.bg-facebook-transparent {
background: rgb(95, 144, 204,0.2);
color: #4064ad;
}
.bg-googleplus-transparent {
background: rgb(216, 75, 63,0.2);
color:#d84b3f;
}
.bg-danger-transparent {
background: rgba(255, 98, 88, 0.2);
}
/*////////////////////badgelight//////////////////*/
.badge-primary-light {
color: #2205bf;
background-color: rgba(90, 63, 243, 0.15);
}
.badge-success-light {
background-color: rgba(29, 171, 45, 0.15) !important;
color: #36b37e;
}
.badge-secondary-light {
background-color: rgba(250, 113, 59, 0.15) !important;
color: #fa713b;
}
.badge-warning-light {
background-color: rgba(255, 171, 0, 0.15) !important;
color: #ffab00;
}
.badge-danger-light {
color: #f94859;
background-color: rgba(250,92,124,.15);
}
.badge-info-light {
color: #0a7ffb;
background-color: rgba(3, 85, 208, 0.1);
}
/*////////////////////Dropshadows//////////////////*/
.primary-dropshadow{
box-shadow: 0 5px 10px rgb(34, 5, 191,0.3);
}
.secondary-dropshadow{
box-shadow:0 5px 10px rgba(250, 113, 59, 0.3);
}
.info-dropshadow{
box-shadow: 0 5px 10px rgba(0, 184, 217, 0.3);
}
.success-dropshadow{
box-shadow: 0 5px 10px rgba(19, 191, 166, 0.3);
}
.warning-dropshadow{
box-shadow:0 5px 10px rgba(255, 171, 0, 0.3);
}
.danger-dropshadow{
box-shadow: 0 5px 10px rgba(237, 49, 76, 0.3) ;
}
.default-shadow{
box-shadow: 4px 3px 6px 0 rgba(0,0,0,0.2);
}
/*////////////////////text-shadow//////////////////*/
.text-primary-shadow{
text-shadow: -2px 2px 2px rgba(34, 5, 191, 0.3);
}
.text-secondary-shadow{
text-shadow: -2px 2px 2px rgba(245, 128, 84, 0.3);
}
.text-info-shadow{
text-shadow: -2px 2px 2px rgba(12, 167, 23, 0.3);
}
.text-success-shadow{
text-shadow: -2px 2px 2px rgba(54, 179, 126, 0.3);
}
.text-warning-shadow{
text-shadow: -2px 2px 2px rgba(255, 171, 0, 0.3);
}
.text-danger-shadow{
text-shadow: -2px 2px 2px rgba(255, 0, 0, 0.3);
}
.text-purple-shadow{
text-shadow: -2px 2px 2px rgba(99, 2, 143, 0.3);
}
.text-pink-shadow{
text-shadow: -2px 2px 2px rgba(255, 43, 136, 0.3);
}
@media (max-width: 575.98px){
.mobile-logo{
display:block;
margin-top: 3px;
margin-left: 10px;
}
}
@media (min-width: 575.98px){
.mobile-logo1{
display:none;
margin-top: 3px;
margin-left: 10px;
}
.mobile-logo{
display:none;
margin-top: 3px;
margin-left: 10px;
}
}
/*////////////////////style-1//////////////////*/
body.style-1 {
background: #fff;
}
.style-1 .card{
border: 1px solid rgba(67, 87, 133, .2);
box-shadow:none !important;
}
.style-1 .page-header {
box-shadow:none !important;
}
.style-1 .header-brand-img.dark-version{
display:none;
}
/*////////////////////icon-dark//////////////////*/
.icon-dark .first-sidemenu {
background: #12045f;
border-right: 1px solid #eaf0f7;
}
.ps__thumb-y {
background-color:rgba(184, 184, 235, 0.2) !important;
}
.line-animations:after{
content: '';
display: block;
position: absolute;
height: 15vh;
width: 100%;
top: -50%;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
animation: run 20s 0s infinite;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
z-index:-3;
width:1px;
left:45% !important;
}
.resp-tabs-list:before{
left: -5px;
right: 0;
margin: 0 auto;
content: '';
width: 1px;
height: 130vh;
background: rgba(245, 255, 251, 0.2);
position: absolute;
top: 0;
}
.resp-tabs-list.hor_1.line-animations li{
z-index:99;
}
@keyframes run{
0%{
top: -50%;
}
100%{
top: 110%;
}
}
.dropdown-menu a:hover{
background:#f0f1f7 !important;
}
.dropdown-menu .cart:hover{
background:#f0f1f7 !important;
}
.chat .contacts li:hover{
background:#f0f1f7 !important;
}
.sidebar-right .list:hover{
background:#f0f1f7 !important;
}
.daterangepicker{
box-shadow: 0px 5px 25px rgba(39, 55, 76, 0.2);
}
@media (min-width: 575.98px){
.mobile-logo , .mobile-logo-1{
display:none;
}
.app-header .header-brand-img.desktop-logo-1{
display:none;
}
.dark-mode .header-brand .header-brand-img.desktop-logo-1{
display:initial;
}
.dark-mode .header-brand .header-brand-img.desktop-logo{
display:none;
}
.header-dark .app-header .header-brand-img.desktop-logo{
display:none;
}
.header-dark .app-header .desktop-logo-1{
display:initial;
}
.header-color .app-header .header-brand-img.desktop-logo{
display:none;
}
.header-color .app-header .header-brand-img.desktop-logo-1{
display:initial;
}
.col-login .header-brand-img.dark-theme{
display:none;
}
}
@media (max-width: 575.97px){
.app-header .header-brand .header-brand-img.desktop-logoo , .app-header .header-brand .header-brand-img.desktop-logo-1{
display:none;
}
.app-header .header-brand .mobile-logo{
display:initial;
}
.app-header .header-brand .mobile-logo-1{
display:none;
}
.dark-mode .app-header .header-brand .mobile-logo-1{
display:initial;
margin-top: 4px;
}
.dark-mode .app-header .header-brand .mobile-logo{
display:none;
}
.header-dark .app-header .header-brand .mobile-logo{
display:none;
}
.header-dark .app-header .header-brand .mobile-logo-1{
display:initial;
}
.header-color .app-header .header-brand .mobile-logo{
display:none;
}
.header-color .app-header .header-brand .mobile-logo-1{
display:initial;
}
.col-login .header-brand-img.dark-theme{
display:none;
}
}
|
public/assets/css/default.css
|
a:hover {
color: #2205bf;
text-decoration:none;
}
.panel-title1 a:hover{
color: #fff;
text-decoration: underline;
}
.social-box.linkedin i {
color: #fff;
background: #2205bf;
}
.checkbox span:after {
color: #fff;
background-color: #2205bf;
}
.user-card .card-block .activity-leval li.active {
background-color: #2205bf;
}
#count-down .clock-presenter .digit {
background:#2205bf;
color:#fff;
}
form-control:focus {
color: #6f6e6e;
background-color: #fff;
border-color:#2205bf;
}
.btn-primary {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
box-shadow: 0 5px 10px rgb(34, 5, 191,0.3);
}
.btn-primary:hover {
color: #fff !important;
background-color:#4b2feb;
border-color: #4b2feb;
}
.btn-primary:focus, .btn-primary.focus {
box-shadow: 0 0 0 2px rgb(48, 110, 255,0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #4b2feb;
border-color: #4b2feb;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(24, 193, 185, 0.1);
}
.btn-secondary {
color: #fff;
background-color: #fa713b ;
border-color: #fa713b;
box-shadow:0 5px 10px rgba(250, 113, 59, 0.3);
}
.btn-secondary:hover {
color: #fff !important;
background-color:#f36730;
border-color:#fa713b;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show>.btn-secondary.dropdown-toggle {
color: #fff;
background-color:#fa713b;
border-color: #fa713b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px #fa713b;
}
.btn-outline-primary {
color: #2205bf !important;
background-color: transparent;
background-image: none;
border-color: #2205bf;
box-shadow: 0 2px 5px 0 rgb(204, 197, 238), 0 2px 10px 0 rgb(218, 213, 246);
}
.btn-outline-primary:hover {
color: #fff !important;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
box-shadow: 0 0 0 2px rgba(5, 117, 230, 0.1);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
color: #2205bf;
background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show>.btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(5, 117, 230, 0.1);
}
.btn-outline-secondary {
color: #fa713b;
background-color: transparent;
background-image: none;
border-color:#fa713b;
}
.btn-outline-secondary:hover {
color: #fff !important;
background-color:#fa713b;
border-color:#fa713b;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.1);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
color: #fff;
background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show>.btn-outline-secondary.dropdown-toggle {
color: #fff;
background-color:#fa713b;
border-color:#fa713b;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.1);
}
.btn-link {
font-weight: 400;
color: #2205bf;
background-color: transparent;
}
.btn-link:hover {
color:#2205bf;
text-decoration: underline;
background-color: transparent;
border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
text-decoration: underline;
border-color: transparent;
box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
color: #aaadb2;
pointer-events: none;
}
.notifyimg {
background: #2205bf;
}
.drop-icon-wrap .drop-icon-item:hover{
color: #2205bf;
text-decoration: none;
background-color: #f1f1f5;
}
.dropdown-item:hover, .dropdown-item:focus {
color: #2205bf;
text-decoration: none;
background-color:#f1f1f5;
}
.dropdown-item.active, .dropdown-item:active {
color: #2205bf;
text-decoration: none;
background-color:#f1f1f5;
}
.button-1{
border:1px solid #2205bf;
}
.button-1 a{
color:#2205bf;
}
.eff-1{
background:#2205bf;
}
.eff-2{
background:#2205bf;
}
.eff-3{
background:#2205bf;
}
.eff-4{
background:#2205bf;
}
.eff-5{
background:#2205bf;
}
.eff-6{
background:#2205bf;
}
.eff-7{
border:0px solid #2205bf;
}
.button-1:hover .eff-7{
border:70px solid #2205bf;
}
.eff-8{
border:70px solid #2205bf;
}
.button-1:hover .eff-8{
border:0px solid #2205bf;
}
.button-1.btn-hover:hover a{
color:#2205bf
}
.accordionjs .acc_section.acc_active > .acc_head{
background-color: #ebf2f7;
}
timeline__item:after {
border: 6px solid #2205bf;
}
.custom-control-input:checked~.custom-control-label::before {
color: #fff;
background-color: #2205bf;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
background-color: #2205bf;
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
background-color: #2205bf;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
background-color: #2205bf;
}
.custom-select:focus {
border-color: #2205bf;
}
.custom-file-input:focus~.custom-file-label {
border-color: #2205bf;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-file-input:focus~.custom-file-label::after {
border-color: #2205bf;
}
.custom-file-label::after {
background-color: #2205bf;
border-left: 1px solid #2205bf;
}
.custom-range::-webkit-slider-thumb {
background-color: #2205bf;
}
.custom-range::-moz-range-thumb {
background-color: #2205bf;
}
.custom-range::-ms-thumb {
background-color: #2205bf;
}
.nav-link.active {
color: #fff;
background-color: #2205bf;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
color: #fff;
background-color: #2205bf;
}
.page-link:hover {
color: #2205bf;
}
.page-item.active .page-link {
z-index: 1;
color: #fff;
background-color: #2205bf;
border-color: #2205bf;
}
.range.range-primary input[type="range"]::-webkit-slider-thumb {
background-color: #2205bf;
}
.range.range-primary input[type="range"]::-moz-slider-thumb {
background-color: #2205bf;
}
.range.range-primary output {
background-color: #2205bf;
}
.range.range-primary input[type="range"] {
outline-color: #2205bf;
}
.nav-tabs .nav-item1 .nav-link:hover:not(.disabled) {
color: #fff;
background: #2205bf;
}
.nav-tabs .nav-item1 .nav-link.active {
color: #fff;
background: #2205bf;
}
.panel.price>.panel-heading {
background:#2205bf;
color:#fff;
}
.panel.price>.panel-heading{
background: #2205bf;
}
.pricing-tabs .nav-price li a{
border: 1px solid #2205bf;
}
.pricing-tabs .nav-price li .active{
background: #2205bf;
color: #fff;
}
.heading-primary {
background-color: #2205bf;
color: #ffffff;
padding: 5px;
}
.alert-primary {
color: #fcfdff;
background-color: #2205bf;
border-color: #2205bf;
}
.alert-primary hr {
border-top-color: #b7cded;
}
.alert-primary .alert-link {
color: #172b46;
}
.badge-primary {
color: #fff;
background-color: #2205bf;
box-shadow:0 5px 10px rgb(34, 5, 191,0.2);
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
color: #fff;
text-decoration: none;
background-color: #8135c3;
}
.bg-gradient-primary{
background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);
}
.bg-gradient-secondary{
background-image :linear-gradient(315deg, #ee9617 0%, #fe5858 74%);
}
.bg-gradient-success{
background:linear-gradient(120deg, #04a760 0%, #36da95 100%);
}
.bg-gradient-info{
background-image: linear-gradient(315deg, #0584a7 0%, #09c6f9 74%);
}
.bg-gradient-warning{
background:linear-gradient(120deg, #f9bd1d 0%, #ffc107 100%);
}
.bg-gradient-danger{
background:linear-gradient(120deg, #d20c0c 0%, #ff5630 100%);
}
.bg-primary-tranparant{
background-color: #ded8fd !important;
color: #2205bf;
}
.bg-secondary-tranparant{
background-color: #fbdfc6 !important;
color: #ff9b44;
}
.bg-success-tranparant{
background-color: #cbeddf !important;
color: #1dab2d;
}
.bg-warning-tranparant{
background-color: rgba(255, 171, 0, 0.25) !important;
color: #ffab00;
}
.bg-danger-tranparant{
background-color: #fbd2da !important;
color: #fa5c7c;
}
.bg-info-tranparant{
background-color: #caeaf5 !important;
color: #0ca7ec;
}
.bg-primary {
background-color: #2205bf !important;
color:#fff;
}
a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
background-color: #2356ce !important;
color:#fff;
}
.border-primary {
border-color: #2205bf !important;
}
.text-primary {
color: #2205bf !important;
}
a.text-primary:hover, a.text-primary:focus {
color: #4a2def !important;
}
a.text-dark:hover, a.text-dark:focus {
color: #2205bf !important;
}
.header-bg {
background:#fa713b;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right,#fa713b, #2205bf);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right,#fa713b, #2205bf);
}
.nav-tabs .nav-link:hover:not(.disabled) {
color: #fff;
background: #2205bf;
}
.nav-tabs .nav-link.active {
color: #fff;
background: #2205bf;
}
.navtab-wizard.nav-tabs .nav-link.active, .navtab-wizard.nav-tabs .nav-link:hover{
color: #2205bf;
background: #fff;
}
.expanel-primary {
border: #2205bf !important;
}
.expanel-primary>.expanel-heading {
color: #fff !important;
background-color: #2205bf !important;
border-color: #2205bf !important;
}
.error-img .form-control:focus {
border-color: #2205bf;
}
.avatar {
background: #2205bf no-repeat center/cover;
}
.pricing-table:hover .price-header {
background-color: #2205bf;
}
.primary .pricing-divider{
background:linear-gradient(to bottom right,#2205bf,#fa713b) !important;
padding: 1em 0 4em;
position: relative;
}
.secondary .pricing-divider{
background:linear-gradient(to bottom right, #fa713b 0%, #4a08a0 100%) !important;
padding: 1em 0 4em;
position: relative;
}
.product-grid6 .icons li a{
color:#2205bf;
border:1px solid #2205bf;
}
.product-grid6 .icons li a:hover{
color:#fff;
background-image:linear-gradient(120deg, #2205bf 0%, #2205bf 100%);
}
.product-grid6 .icons li a:after,.product-grid6 .icons li a:before{
color:#fff;
background-image:linear-gradient(120deg, #2205bf 0%, #2205bf 100%);
}
/*--loaders--*/
.spinner {
background:#2205bf;
}
.spinner-lg {
background-color: #2205bf;
}
.double-bounce1, .double-bounce2 {
background: #2205bf;
}
.cube1, .cube2 {
background: #2205bf;
}
.lds-heart div {
background: #2205bf;
}
.lds-heart div:after,
.lds-heart div:before {
background: #2205bf;
}
.lds-ring div {
border: 6px solid #2205bf;
border-color: #2205bf transparent transparent transparent;
}
.lds-hourglass:after {
border: 26px solid #2205bf;
border-color: #2205bf transparent ;
}
.lds-circle > div {
background: #2205bf;
}
.lds-dual-ring:after {
border: 5px solid #2205bf;
border-color: #2205bf transparent #2205bf transparent;
}
.lds-facebook div {
background: #2205bf;
}
.lds-roller div:after {
background: #2205bf;
}
.lds-ripple div {
border: 4px solid #2205bf;
}
.lds-spinner div:after {
background: #2205bf;
}
.lds-default div {
background: #2205bf;
}
.lds-ellipsis div {
background: #2205bf;
}
.lds-grid div {
background: #2205bf;
}
div.lds-ball2 div {
background: #2205bf;
}
.lds-ball div {
background: #2205bf;
}
.lds-bars div:nth-child(1) {
background: #2205bf;
}
.lds-bars div:nth-child(2) {
background: #2205bf;
}
.lds-bars div:nth-child(3) {
background: #2205bf;
}
.lds-bars div:nth-child(4) {
background: #2205bf;
}
@keyframes lds-blocks {
0% {
background: #fa713b;
}
12.5% {
background: #fa713b;
}
12.625% {
background: #2205bf;
}
100% {
background: #2205bf;
}
}
@-webkit-keyframes lds-blocks {
0% {
background: #fa713b;
}
12.5% {
background: #fa713b;
}
12.625% {
background: #2205bf;
}
100% {
background: #2205bf;
}
}
.lds-blocks div {
background: #2205bf;
}
.lds-cube div {
background: #2205bf;
}
.lds-eclipse div {
box-shadow: 0 4px 0 0 #2205bf;
}
.lds-flickr div:nth-child(1) {
background: #2205bf;
}
.lds-flickr div:nth-child(3) {
background: #2205bf;
}
.lds-gear>div div {
background: #2205bf;
}
.lds-magnify>div>div div:nth-child(1) {
border: 12px solid #2205bf;
}
.lds-magnify>div>div div:nth-child(2) {
background: #2205bf;
}
.lds-pacman>div:nth-child(2) div {
background: #2205bf;
}
.lds-disk>div div:nth-child(1) {
background: #2205bf;
}
.bn-label{
background: #2205bf;
color:#fff;
}
.best-ticker{
border: solid 1px #2205bf;
}
/*--loaders--*/
.logo-img{
background: url(../images/brand/logo.png);
display: block;
position: absolute;
width: 100%;
height: 100%;
background-repeat: no-repeat;
margin-left: 30px;
}
@media (max-width:320px){
.logo-img{
background: url(images/brand/favicon.png);
background-repeat: no-repeat;
margin-left: 30px;
}
}
.mediaicon {
border: 1px solid #2205bf;
background: #2205bf;
}
a.chip:hover {
color: #fff;
text-decoration: none;
background-color: #2205bf;
}
.highlight .s {
color: #2205bf;
}
.selectgroup-input:checked+.selectgroup-button {
border-color: #2205bf;
z-index: 1;
color: #2205bf;
background: #f6f7fb;
}
.selectgroup-input:focus+.selectgroup-button {
border-color: #2205bf;
z-index: 2;
color: #2205bf;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-switch-input:checked~.custom-switch-indicator {
background: #2205bf;
}
.custom-switch-input:focus~.custom-switch-indicator {
border-color: #2205bf;
}
.imagecheck-input:focus~.imagecheck-figure {
border-color:#eff2f9
}
.imagecheck-figure:before {
background: #2205bf url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") no-repeat center center/50% 50%;
color: #fff;
}
.colorinput-input:focus~.colorinput-color {
border-color: #2205bf;
}
.ui-datepicker .ui-datepicker-title {
color: #2205bf;
font-weight: bold;
}
#back-to-top {
background:#2205bf;
color: #fff;
}
#back-to-top:hover {
background: #fff;
color: #2205bf;
border: 2px solid #2205bf;
}
#chat-message {
background: linear-gradient(120deg, #0f75ff 50%, #2205bf 100%);
color: #fff;
}
.tabs-menu1 ul li .active{
border-bottom: 3px solid #2205bf;
border-radius: 2px;
color: #2205bf;
}
.wideget-user-tab .tabs-menu1 ul li .active{
border-bottom: 2px solid #2205bf !important;
}
.rating-stars .rating-stars-container .rating-star.is--active .fa-heart ,
.rating-stars .rating-stars-container .rating-star.is--hover .fa-heart {
color: #2205bf;
}
.message-feed:not(.right) .mf-content {
background: #eff2f9;
font-size: 15px;
color: #3c4858;
}
.message-feed:not(.right) .mf-content:before{
border-right-color: #e2ebf7;
}
.msb-reply button {
background: #2205bf;
color:#fff;
}
.wizard-card .moving-tab {
background-color: #2205bf !important;
}
.wizard-card .choice:hover .icon, .wizard-card .choice.active .icon {
border-color: #2205bf !important;
color: #2205bf !important;
}
.cal1 .clndr .clndr-table .header-days {
background: #2205bf;
}
.cal1 .clndr .clndr-table tr .day.today.event,
.cal1 .clndr .clndr-table tr .day.my-today.event {
background: #2205bf;
}
.cal1 .clndr .clndr-table tr .day.today:hover,
.cal1 .clndr .clndr-table tr .day.my-today:hover {
background: #2205bf;
color:#fff;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button {
color: #2205bf;
background: #e6f2fe;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button {
color: #2205bf;
background: #e6f2fe;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button:hover {
background: #2205bf;
}
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button:hover {
background: #2205bf;
}
.fc button {
background: #2205bf;
}
.fc-event,
.fc-event-dot {
background-color: #2205bf;
color:#f1f1f1! important;
}
.sweet-alert button {
background-color: #2205bf !important;
}
.timeline__item:after {
border: 6px solid #2205bf;
}
.label-primary.arrowed:before {
border-right-color: #2205bf;
}
.widgetdate p{
border-bottom:2px solid #2205bf;
}
.widgetbox p {
border-bottom:2px solid #2205bf;
}
.datebox p {
border-bottom:2px solid #2205bf;
}
.arrow-ribbon.bg-primary:before {
border-left: 15px solid #2205bf;
}
.arrow-ribbon.ribbon-center.bg-primary:before {
border-left: 33px solid #2205bf;
}
.arrow-ribbon.top-right.bg-primary:before {
border-right: 15px solid #2205bf;
}
.arrow-ribbon.bottom-right.bg-primary:before {
border-right: 15px solid #2205bf;
}
.arrow-ribbon.ribbon-center3.bg-primary:before {
border-right: 15px solid #2205bf;
}
.ribbon1:after {
border-top: 10px solid #2205bf;
}
.ribbon1 span {
background: #2205bf;
}
.ribbon1 span:before {
background: #2205bf;
}
.ribbon1 span:after {
background: #2205bf;
}
.ribbon2 {
background: #2205bf;
}
.ribbon2:before {
border-bottom: 6px solid #272b44;
}
.ribbon2:after {
border-left: 30px solid #2205bf;
border-right: 30px solid #2205bf;
}
.ribbon3 {
background: #2205bf;
}
.ribbon3:after {
border-left: 15px solid #2205bf;
}
.ribbon4 {
background: #2205bf;
}
.ribbon5 {
background: #2205bf;
}
.arrow-ribbon2:before {
border-left: 24px solid #272b44;
}
.badge-offer.bg-primary:after{
border-top: 12px solid #272b44;
}
.badge-offer1.bg-primary:after{
border-top: 12px solid #272b44;
}
.ribbon5:before {
border-top: 10px solid #272b44;
}
.ribbon5:after {
border-top: 10px solid #272b44;
}
.wrap:before {
background: #272b44;
}
.wrap:after {
background: #272b44;
}
.ribbon6 {
box-shadow:0 0 0 3px #2205bf, 0px 21px 5px -18px rgba(0,0,0,0.6);
background: #2205bf;
}
.product-tags li a:hover{
background:#2205bf;
border-color:#2205bf;
border-radius:2px;
color:#fff!important;
}
.card-pay .tabs-menu li a.active {
background: rgb(34, 5, 191);
color: #fff;
}
.item1-tabs-menu ul li .active {
background: #2205bf;
color: #fff;
}
.carousel-indicators li.active {
color: #fff;
background: #2205bf !important;
}
.item-cards7-ic.realestate-list li a:hover{
color:#2205bf;
}
.item1-links a:hover{
color:#2205bf;
}
.item1-links a.active{
background:#f1f1f5;
color:#2205bf;
border-right:2px solid #2205bf;
}
.settings-tab .tabs-menu li a.active {
background: #2205bf;
color: #fff;
}
.ads-tabs .tabs-menus ul li .active {
background: #2205bf;
color: #fff;
}
.showmore-button-inner {
border: 1px solid #2205bf;
color: #2205bf;
}
.owl-nav button {
color: #2205bf !important;
}
.owl-carousel:hover .owl-nav button {
color: #2205bf !important;
}
.owl-nav > div i {
color:#2205bf;
}
.tabs-menu ul.eductaional-tabs li .active{
background: #2205bf;
}
.register-right .nav-tabs .nav-link:hover{
background:#2205bf;
color:#fff ;
}
.gradient-icon {
background: linear-gradient(120deg, #3ba2ff 0%, #2205bf 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.axgmap-img{
border:3px solid #2205bf;
background:#fff;
}
code {
color: #2205bf;
}
#gdpr-cookie-message h4 {
color: #2205bf;
}
#gdpr-cookie-message h5 {
color: #2205bf;
}
#gdpr-cookie-message a {
color: #2205bf;
border-bottom: 1px solid #2205bf;
}
#gdpr-cookie-message a:hover {
border-bottom: 1px solid #2205bf;
transition: all 0.3s ease-in;
color:#2205bf;
}
button#gdpr-cookie-advanced {
color: #fff;
background-color: #2205bf;
}
.ui-widget-header {
background: #2205bf;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
background: #2205bf;
}
.items-blog-tab-heading .items-blog-tab-menu li .active{
background: #2205bf;
color: #fff;
}
.item2-gl-nav .item2-gl-menu li .active{
color:#2205bf;
}
.item-all-cat .category-type .item-all-card img{
background: linear-gradient(120deg, #3ba2ff 0%, #2205bf 100%);
}
.item-all-cat .item-all-card:hover .item-all-text h5{
color:#2205bf !important;
}
.counter-icon{
border: 1px solid #2205bf;
}
.counter-icon i{
color: #2205bf;
}
.social li a:hover{
color:#2205bf;
}
.footer-main a:hover{
color:#2205bf;
}
.footer-links a:hover{
color:#2205bf;
text-decoration:none;
}
.header-main .drop-profile i{
color:#2205bf;
}
.header-links li a.active{
background:#2205bf;
color:#fff;
}
.header-links li a:hover{
background:#2205bf;
color:#fff;
}
@media (max-width:480px){
.zoom-container .arrow-ribbon2:before{
border-left: 17px solid #2205bf;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
color: #fff;
background-color: #2205bf;
border-radius:0;
}
}
.bg-bannerpattern{
background: linear-gradient(138deg, rgb(81, 15, 168), rgb(48, 110, 255));
}
.owl-nav > div i {
color:#2205bf;
}
.SumoSelect:focus>.CaptionCont{
border-color: #2205bf;
}
.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p:focus {
border-color: #2205bf;
outline: none;
background-color: #2205bf;
}
.SumoSelect>.optWrapper.multiple>.options li.opt.selected span i, .SumoSelect .select-all.selected>span i, .SumoSelect .select-all.partial>span i {
background-color: #2205bf;
}
.default-skin{
--skin-hover:#2205bf;
}
.ms-choice {
color: #2205bf;
}
.multi-wrapper .item-1:hover {
background: #2205bf;
}
.radio-group .radio-normal:hover + label:before {
border-color: #2205bf;
}
.radio-group .radio-normal:checked + label:before {
border-color: #2205bf;
text-align: center;
background: #2205bf;
}
.checkbox-group .checkbox-normal:hover + label:before {
border-color: #2205bf;
}
.checkbox-group .checkbox-normal:checked + label:before {
border-color: #2205bf;
font-weight: bold;
background: #2205bf;
}
.checkbox-group .checkbox-indeterminate + label:before {
border-color: #2205bf;
font-weight: bold;
background: #2205bf;
}
.tab-active {
color: #2205bf;
border-bottom: 2px solid #2205bf;
}
.transfer-double-list-footer {
color: #2205bf;
}
.btn-arrow-active {
color: #fff;
background: #2205bf;
}
.transfer-double-list-main::-webkit-scrollbar-thumb:hover {
background: #2205bf;
}
.transfer-double-selected-list-main::-webkit-scrollbar-thumb:hover {
background: #2205bf;
}
.breadcrumb-arrow li a {
background-color:#2205bf ;
border: 1px solid #2205bf;
}
.breadcrumb-arrow li a:before {
border-left-color: #2205bf ;
}
.breadcrumb-arrow li a:after {
border-left: 12px solid #e8e8ef;
}
.cont_breadcrumbs_1 > ul > li:hover {
background-color: #ecdfdf;
}
.cont_breadcrumbs_1 > ul > li:last-child {
background-color: #2205bf;
}
.timeline>li .timeline-image {
border: 7px solid #2205bf;
border-radius: 100%;
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline>li:nth-child(odd) .line:before {
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline>li:nth-child(even) .line:before {
background-color: #2205bf;
box-shadow: 0 0 2px #2205bf;
}
.timeline--horizontal .timeline-divider {
background:#2205bf !important;
}
.timeline-nav-button{
border:2px solid #2205bf;
}
.custom-control-input:focus~.custom-control-label::before {
box-shadow: 0 0 0 1px, 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-webkit-slider-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px , 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-moz-range-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px , 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-range::-ms-thumb:focus {
outline: none;
box-shadow: 0 0 0 1px, 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.error-img .form-control:focus {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.custom-switch-input:focus~.custom-switch-indicator {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.imagecheck-input:focus~.imagecheck-figure {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.colorinput-input:focus~.colorinput-color {
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.selectize-input.focus {
border-color: #0000fe;
box-shadow: 0 0 0 2px rgb(48, 110, 255, 0.25);
}
.item-card7-imgs:hover a{
background:linear-gradient(to right, rgba(59, 162, 255, 0.7), rgb(48, 110, 255, 0.7));
}
.owl-carousel button.owl-dot {
background:rgb(206, 199, 241) !important;
}
.owl-carousel button.owl-dot.active {
background:rgb(34, 5, 191) !important;
}
.bg-background:before{
background:rgba(0,0,0,0.7);
}
.bg-background2:before{
background:linear-gradient(to right, rgba(81, 15, 168, 0.9), rgb(48, 110, 255, 0.8));
}
.bg-background-color:before{
background:linear-gradient(to right, rgba(81, 15, 168, 0.9), rgb(48, 110, 255, 0.8));;
}
.bg-background3:before{
background-image:linear-gradient( 135deg, rgba(0, 0, 0, 0.7) 10%, rgb(0, 0, 0, 0.7) 100%);
}
.item-card:hover .item-card-desc:before{
background:linear-gradient( 135deg, rgba(81, 15, 168, 0.9) 10%, rgb(48, 110, 255, 0.8) 100%);
}
.slider-header .item:before {
background: linear-gradient( 135deg, rgba(81, 15, 168, 0.9) 10%, rgb(48, 110, 255, 0.8) 100%);
}
.rating-stars .rating-stars-container .rating-star.is--active,
.rating-stars .rating-stars-container .rating-star.is--hover {
color: #ffc107;
}
.rating-stars .rating-stars-container .rating-star.is--no-hover {
color: rgb(223, 228, 243);
}
.rating-stars .rating-stars-container .rating-star.is--active .fa-heart ,
.rating-stars .rating-stars-container .rating-star.is--hover .fa-heart {
color: #2205bf ;
}
.rating-stars .rating-stars-container .rating-star .fa-heart .is--no-hover {
color: #e8e8ef;
}
/*-----Rating Stars-----*/
/*-----Br Themes-----*/
.br-theme-bars-horizontal .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-horizontal .br-widget a.br-active,
.br-theme-bars-horizontal .br-widget a.br-selected {
background-color: #2205bf ;
}
.br-theme-bars-horizontal .br-widget .br-current-rating {
color: #2205bf ;
}
.br-theme-bars-pill .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-pill .br-widget a.br-active,
.br-theme-bars-pill .br-widget a.br-selected {
background-color: #2205bf ;
color: white;
}
.br-theme-bars-pill .br-widget a {
color: #2205bf ;
}
.br-theme-bars-square .br-widget a.br-active,
.br-theme-bars-square .br-widget a.br-selected {
border: 2px solid #e8e8ef ;
color: #2205bf ;
}
.br-theme-bars-square .br-widget a {
border: 2px solid rgba(107,122,144,0.1);
background-color: #fff;
color: #95a1b2;
}
.br-theme-bars-movie .br-widget a.br-active,
.br-theme-bars-movie .br-widget a.br-selected {
background-color: #2205bf ;
}
.br-theme-bars-movie .br-widget a {
background-color: #e8e8ef;
}
.br-theme-bars-movie .br-widget .br-current-rating {
color:#2205bf ;
}
.br-theme-bars-1to10 .br-widget a {
background-color:#eaf0f7;
}
.br-theme-bars-1to10 .br-widget a.br-active,
.br-theme-bars-1to10 .br-widget a.br-selected {
background-color:#2205bf;
}
.br-theme-bars-1to10 .br-widget .br-current-rating {
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a.br-active:after {
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a.br-selected:after {
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-active:after {
content: '\f005';
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
content: '\f005';
color: #2205bf ;
}
.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
content: '\f123';
color: #2205bf ;
}
.br-theme-fontawesome-stars .br-widget a:after {
content: '\f005';
color: #e8e8ef;
}
.br-theme-fontawesome-stars-o .br-widget a:after {
content: '\f006';
color: #e8e8ef;
}
/*-----Br Themes-----*/
.jsr_slider:focus::before {
background: #2205bf;
}
.jsr_slider::before {
background: #2205bf ;
}
.jsr_label {
background:#4629e7;
color: #fff;
}
.jsr_label--minmax {
color: #fff;
background: #2205bf;
}
.jsr_bar{
background: #2205bf;
}
.jsr_bar--limit {
background-color: #2205bf;
}
.irs-slider{
background-color: #2205bf;
}
.offer-primary { border-color: #2205bf ; }
.offer-primary .shape{
border-color: transparent #2205bf transparent transparent;
}
.pignose-calendar .pignose-calendar-unit.pignose-calendar-unit-active a {
background-color: #2205bf;
}
.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sun,
.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sat {
color: #2205bf;
}
.pignose-calendar .pignose-calendar-top .pignose-calendar-top-nav .pignose-calendar-top-icon {
color: #2205bf;
}
.slider-transparent.slider-box.slide-animation li:before{
background:rgb(48, 110, 255, 0.8);
}
.index-cat:before{
background:url(images/brand/favicon-1.png);
}
.side-account i{
height: 45px;
width: 45px;
padding: 7px;
border-radius: 50%;
font-size: 23px;
text-align: center;
line-height: 28px;
}
.menu-icons .menu-icon{
height: 45px;
width: 45px;
padding: 7px;
border-radius: 50%;
font-size: 23px;
text-align: center;
line-height: 28px;
}
.btn-primary-light{
border-color: #dfd7fa;
background-color: rgba(90, 63, 243, 0.25)!important;
color: #2205bf!important;
}
.btn-primary-light:hover{
border-color: #2205bf;
background-color: #2205bf !important;
color: #ffff !important;
}
.btn-info-light {
color: #0a7ffb;
background: rgba(33, 150, 243, 0.24);
border-color: #cae6fc;
}
.btn-info-light:hover {
color: #fff;
background-color: #0a7ffb;
border-color: #0a7ffb;
}
.btn-secondary-light {
color: #fa713b;
background-color: rgba(250, 113, 59, 0.25);
border-color: #f7d9cc;
}
.btn-secondary-light:hover {
color: #fff;
background-color: #fa713b;
border-color: #fa713b;
}
.btn-success-light {
color: #36b37e;
background-color: #d1f3e0;
border-color: #cdecdf;
}
.btn-success-light:hover {
color: #fff;
background-color: #36b37e;
border-color: #36b37e;
}
.btn-warning-light{
background-color: #fff2d8;
color: #ffa001;
}
.user_info{
margin-top: auto;
margin-bottom: auto;
margin-left: 15px;
}
.img_cont {
position: relative;
height: 50px;
width: 50px;
}
.chat .contacts li {
width: 100% !important;
padding: 15px;
border-bottom: 1px solid rgba(255,255,255,0.09);
}
.chat .active {
background-color: rgba(255,255,255,0.1);
}
.chat .contacts li {
width: 100% !important;
padding: 13px 15px;
border-bottom: 1px solid rgb(227, 227, 247,0.5);
}
/*--item-card2--*/
.item-card2-icons{
position: absolute;
top: 20px;
right: 15px;
z-index:9;
}
.item-card2-icons a{
width: 2rem;
display: inline-block;
height: 2rem;
text-align: center;
border-radius: 100px;
line-height: 2.1rem;
border-radius:50px;
color:#fff;
}
/*--bg-transparents--*/
.bg-primary-transparent {
background: rgba(34, 5, 191, 0.15) !important;
}
.bg-secondary-transparent {
background-color: rgba(247, 138, 95, 0.2) !important;
}
.bg-success-transparent {
background-color: rgba(54, 179, 126, 0.2) !important;
}
.bg-primary-transparent {
background-color:#d6e2ff ;
}
.bg-info-transparent {
background-color: #ccf1f7;
}
.bg-warning-transparent {
background-color: #fec !important;
}
.bg-danger-transparent {
background-color: #ffddd6;
}
.bg-pink-transparent {
background-color: rgba(255,43,136, 0.15) ;
}
.bg-purple-transparent {
background-color: rgba(96,77,216, 0.2) ;
}
.bg-dark-transparent {
background-color: rgba(55,66,84, 0.1) ;
}
.bg-twitter-transparent {
background: rgb(28, 157, 235,0.2);
color:#1c9deb
}
.bg-linkedin-transparent {
background: rgba(0, 119, 181, 0.2);
color: #0077b5;
}
.bg-facebook-transparent {
background: rgb(95, 144, 204,0.2);
color: #4064ad;
}
.bg-googleplus-transparent {
background: rgb(216, 75, 63,0.2);
color:#d84b3f;
}
.bg-danger-transparent {
background: rgba(255, 98, 88, 0.2);
}
/*////////////////////badgelight//////////////////*/
.badge-primary-light {
color: #2205bf;
background-color: rgba(90, 63, 243, 0.15);
}
.badge-success-light {
background-color: rgba(29, 171, 45, 0.15) !important;
color: #36b37e;
}
.badge-secondary-light {
background-color: rgba(250, 113, 59, 0.15) !important;
color: #fa713b;
}
.badge-warning-light {
background-color: rgba(255, 171, 0, 0.15) !important;
color: #ffab00;
}
.badge-danger-light {
color: #f94859;
background-color: rgba(250,92,124,.15);
}
.badge-info-light {
color: #0a7ffb;
background-color: rgba(3, 85, 208, 0.1);
}
/*////////////////////Dropshadows//////////////////*/
.primary-dropshadow{
box-shadow: 0 5px 10px rgb(34, 5, 191,0.3);
}
.secondary-dropshadow{
box-shadow:0 5px 10px rgba(250, 113, 59, 0.3);
}
.info-dropshadow{
box-shadow: 0 5px 10px rgba(0, 184, 217, 0.3);
}
.success-dropshadow{
box-shadow: 0 5px 10px rgba(19, 191, 166, 0.3);
}
.warning-dropshadow{
box-shadow:0 5px 10px rgba(255, 171, 0, 0.3);
}
.danger-dropshadow{
box-shadow: 0 5px 10px rgba(237, 49, 76, 0.3) ;
}
.default-shadow{
box-shadow: 4px 3px 6px 0 rgba(0,0,0,0.2);
}
/*////////////////////text-shadow//////////////////*/
.text-primary-shadow{
text-shadow: -2px 2px 2px rgba(34, 5, 191, 0.3);
}
.text-secondary-shadow{
text-shadow: -2px 2px 2px rgba(245, 128, 84, 0.3);
}
.text-info-shadow{
text-shadow: -2px 2px 2px rgba(12, 167, 23, 0.3);
}
.text-success-shadow{
text-shadow: -2px 2px 2px rgba(54, 179, 126, 0.3);
}
.text-warning-shadow{
text-shadow: -2px 2px 2px rgba(255, 171, 0, 0.3);
}
.text-danger-shadow{
text-shadow: -2px 2px 2px rgba(255, 0, 0, 0.3);
}
.text-purple-shadow{
text-shadow: -2px 2px 2px rgba(99, 2, 143, 0.3);
}
.text-pink-shadow{
text-shadow: -2px 2px 2px rgba(255, 43, 136, 0.3);
}
@media (max-width: 575.98px){
.mobile-logo{
display:block;
margin-top: 3px;
margin-left: 10px;
}
}
@media (min-width: 575.98px){
.mobile-logo1{
display:none;
margin-top: 3px;
margin-left: 10px;
}
.mobile-logo{
display:none;
margin-top: 3px;
margin-left: 10px;
}
}
/*////////////////////style-1//////////////////*/
body.style-1 {
background: #fff;
}
.style-1 .card{
border: 1px solid rgba(67, 87, 133, .2);
box-shadow:none !important;
}
.style-1 .page-header {
box-shadow:none !important;
}
.style-1 .header-brand-img.dark-version{
display:none;
}
/*////////////////////icon-dark//////////////////*/
.icon-dark .first-sidemenu {
background: #12045f;
border-right: 1px solid #eaf0f7;
}
.ps__thumb-y {
background-color:rgba(184, 184, 235, 0.2) !important;
}
.line-animations:after{
content: '';
display: block;
position: absolute;
height: 15vh;
width: 100%;
top: -50%;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
animation: run 20s 0s infinite;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
z-index:-3;
width:1px;
left:45% !important;
}
.resp-tabs-list:before{
left: -5px;
right: 0;
margin: 0 auto;
content: '';
width: 1px;
height: 130vh;
background: rgba(245, 255, 251, 0.2);
position: absolute;
top: 0;
}
.resp-tabs-list.hor_1.line-animations li{
z-index:99;
}
@keyframes run{
0%{
top: -50%;
}
100%{
top: 110%;
}
}
.dropdown-menu a:hover{
background:#f0f1f7 !important;
}
.dropdown-menu .cart:hover{
background:#f0f1f7 !important;
}
.chat .contacts li:hover{
background:#f0f1f7 !important;
}
.sidebar-right .list:hover{
background:#f0f1f7 !important;
}
.daterangepicker{
box-shadow: 0px 5px 25px rgba(39, 55, 76, 0.2);
}
@media (min-width: 575.98px){
.mobile-logo , .mobile-logo-1{
display:none;
}
.app-header .header-brand-img.desktop-logo-1{
display:none;
}
.dark-mode .header-brand .header-brand-img.desktop-logo-1{
display:initial;
}
.dark-mode .header-brand .header-brand-img.desktop-logo{
display:none;
}
.header-dark .app-header .header-brand-img.desktop-logo{
display:none;
}
.header-dark .app-header .desktop-logo-1{
display:initial;
}
.header-color .app-header .header-brand-img.desktop-logo{
display:none;
}
.header-color .app-header .header-brand-img.desktop-logo-1{
display:initial;
}
.col-login .header-brand-img.dark-theme{
display:none;
}
}
@media (max-width: 575.97px){
.app-header .header-brand .header-brand-img.desktop-logoo , .app-header .header-brand .header-brand-img.desktop-logo-1{
display:none;
}
.app-header .header-brand .mobile-logo{
display:initial;
}
.app-header .header-brand .mobile-logo-1{
display:none;
}
.dark-mode .app-header .header-brand .mobile-logo-1{
display:initial;
margin-top: 4px;
}
.dark-mode .app-header .header-brand .mobile-logo{
display:none;
}
.header-dark .app-header .header-brand .mobile-logo{
display:none;
}
.header-dark .app-header .header-brand .mobile-logo-1{
display:initial;
}
.header-color .app-header .header-brand .mobile-logo{
display:none;
}
.header-color .app-header .header-brand .mobile-logo-1{
display:initial;
}
.col-login .header-brand-img.dark-theme{
display:none;
}
}
| 0.316158 | 0.065635 |
#wrapper2 {
position: absolute;
top: 0%;
float: left;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled2 {
padding-right: 0px;
}
#sidebar-wrapper2 {
background-color: rgba(0, 0, 0, 0.2);
z-index: 1000;
position: fixed;
top: 70px;
right: 1px;
width: 0;
height: 100%;
overflow-y: auto;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper2.toggled #sidebar-wrapper2 {
width: 100px;
}
#page-content-wrapper2 {
width: 100%;
position: absolute;
padding: 15px;
}
#wrapper.toggled #page-content-wrapper2 {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav2 {
position: absolute;
top: 0;
width: 100px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav2 li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav2 li a {
display: block;
text-decoration: none;
color: #999999;
}
.sidebar-nav2 li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav2 li a:active,
.sidebar-nav2 li a:focus {
text-decoration: none;
}
.sidebar-nav2 > .sidebar-brand2 {
height: 65px;
font-size: 18px;
line-height: 60px;
}
.sidebar-nav2 > .sidebar-brand2 a {
color: blue;
}
.sidebar-nav2 > .sidebar-brand2 a:hover {
color: red;
background: none;
}
@media(min-width:768px) {
#wrapper2 {
padding-right: 250px;
}
#wrapper.toggled2 {
padding-right: 0;
}
#sidebar-wrapper2 {
width: 0px;
}
#wrapper2.toggled #sidebar-wrapper2 {
width: 0;
}
#page-content-wrapper2 {
padding: 20px;
position: relative;
}
#wrapper2.toggled #page-content-wrapper2 {
position: relative;
margin-left: 0;
}
}
|
public/css/simple-sidebar2.css
|
#wrapper2 {
position: absolute;
top: 0%;
float: left;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled2 {
padding-right: 0px;
}
#sidebar-wrapper2 {
background-color: rgba(0, 0, 0, 0.2);
z-index: 1000;
position: fixed;
top: 70px;
right: 1px;
width: 0;
height: 100%;
overflow-y: auto;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper2.toggled #sidebar-wrapper2 {
width: 100px;
}
#page-content-wrapper2 {
width: 100%;
position: absolute;
padding: 15px;
}
#wrapper.toggled #page-content-wrapper2 {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav2 {
position: absolute;
top: 0;
width: 100px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav2 li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav2 li a {
display: block;
text-decoration: none;
color: #999999;
}
.sidebar-nav2 li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav2 li a:active,
.sidebar-nav2 li a:focus {
text-decoration: none;
}
.sidebar-nav2 > .sidebar-brand2 {
height: 65px;
font-size: 18px;
line-height: 60px;
}
.sidebar-nav2 > .sidebar-brand2 a {
color: blue;
}
.sidebar-nav2 > .sidebar-brand2 a:hover {
color: red;
background: none;
}
@media(min-width:768px) {
#wrapper2 {
padding-right: 250px;
}
#wrapper.toggled2 {
padding-right: 0;
}
#sidebar-wrapper2 {
width: 0px;
}
#wrapper2.toggled #sidebar-wrapper2 {
width: 0;
}
#page-content-wrapper2 {
padding: 20px;
position: relative;
}
#wrapper2.toggled #page-content-wrapper2 {
position: relative;
margin-left: 0;
}
}
| 0.560493 | 0.070017 |
.portfolio-footer {
width: 100%;
padding-bottom: 10px;
}
.icon-globe {
font-size: 19px;
position: absolute;
left: 231px;
color: #46A8E5;
cursor: pointer;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: .3s;
transition: 0.3s;
}
.article-spacer {
width: 100%;
height: 10px;
background: transparent;
position: relative;
}
.article-tools.project {
padding-bottom: 15px;
}
.portfolio-overlay {
position: relative;
background-color: rgba(0, 0, 0, .5);
left: 0;
right: 0;
top: 130px;
margin: auto;
height: 100%;
width: 80%;
border: 1px solid rgba(225, 225, 225, .6);
border-radius: 15px 15px 15px 15px;
padding: 20px;
padding-bottom: 50px;
margin-bottom: 50px;
}
.portfolio-overlay.show-portfolio {
color: #46A8E5;
}
.about-stanza-header {
position: relative;
color: #46A8E5;
padding-bottom: 2px !important;
padding-top: 10px !important;
font-size: 14px;
}
.my-contributions {
position: relative;
color: #46A8E5;
font-size: 14px;
padding-bottom: 5px;
}
.about-stanza-body {
position: relative;
color: #fff;
font-size: 14px;
padding-bottom: 20px;
font-weight: 400;
}
.about-me,
.about-me.first {
position: relative;
color: #fff;
font-size: 14px;
padding-bottom: 10px;
padding-top: 20px;
font-weight: 400;
}
.about-me.main {
padding-bottom: 5px;
padding-top: 20px;
font-weight: 400;
}
.about-me {
padding-bottom: 0;
}
/* Article Container */
.article-container {
position: relative;
padding-left: 25px;
padding-bottom: 40px;
padding-top: 10px;
display: none;
height: 100%;
}
.article-container.unhide {
display: block;
}
div.ng-scope > div:nth-child(3) > div > div > div:nth-child(6) > p:nth-child(3) {
padding-top: 15px;
padding-bottom: 5px;
}
.about-interact-header {
position: relative;
color: #46A8E5;
font-size: 14px;
padding-bottom: 2px !important;
padding-top: 10px !important;
}
.article-text {
color: #fff;
font-size: 14px;
font-weight: 400;
width: 97%;
line-height: 1.5;
}
.article-stack {
color: white;
position: relative;
padding-top: 15px;
font-size: 13px;
}
.article-tools {
color: white;
position: relative;
font-size: 13px;
}
.article-stack span,
.article-tools span {
color: #fa9581;
padding-right: 5px;
}
.article-line {
position: relative;
width: 250px;
height: 0px;
top: 5px;
border-bottom: 1px solid #efefef;
}
.article-line.body {
position: relative;
width: 100px;
height: 0px;
border-bottom: 1px solid rgba(225, 225, 255, .7);
display: none;
}
.work-type {
color: #fa9581;
z-index: 0;
padding-top: 45px;
font-size: 21px;
}
.work-type.projects {
padding-top: 30px;
}
.article-header {
position: relative;
width: 100%;
height: 100%;
text-align: left;
}
.company-name {
margin: 0;
padding: 0;
color: white;
font-size: 18px;
margin: 0;
top: 10px;
width: auto;
position: relative;
margin: auto;
cursor: pointer;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
a.company-name:hover {
color: #fa9581;
}
.role-name {
font-size: 14px;
color: #46A8E5;
padding-top: 15px;
margin: 0;
}
.role-name.orange {
color: #fa9581;
}
.role-name.orange.italic {
font-style: italic;
}
.role-name.orange.italic > span {
font-style: normal;
font-size: 12px;
}
.interval-and-location {
padding-top: 1px;
font-size: 13px;
color: #fff;
margin: 0;
}
|
client/styles/portfolio.css
|
.portfolio-footer {
width: 100%;
padding-bottom: 10px;
}
.icon-globe {
font-size: 19px;
position: absolute;
left: 231px;
color: #46A8E5;
cursor: pointer;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: .3s;
transition: 0.3s;
}
.article-spacer {
width: 100%;
height: 10px;
background: transparent;
position: relative;
}
.article-tools.project {
padding-bottom: 15px;
}
.portfolio-overlay {
position: relative;
background-color: rgba(0, 0, 0, .5);
left: 0;
right: 0;
top: 130px;
margin: auto;
height: 100%;
width: 80%;
border: 1px solid rgba(225, 225, 225, .6);
border-radius: 15px 15px 15px 15px;
padding: 20px;
padding-bottom: 50px;
margin-bottom: 50px;
}
.portfolio-overlay.show-portfolio {
color: #46A8E5;
}
.about-stanza-header {
position: relative;
color: #46A8E5;
padding-bottom: 2px !important;
padding-top: 10px !important;
font-size: 14px;
}
.my-contributions {
position: relative;
color: #46A8E5;
font-size: 14px;
padding-bottom: 5px;
}
.about-stanza-body {
position: relative;
color: #fff;
font-size: 14px;
padding-bottom: 20px;
font-weight: 400;
}
.about-me,
.about-me.first {
position: relative;
color: #fff;
font-size: 14px;
padding-bottom: 10px;
padding-top: 20px;
font-weight: 400;
}
.about-me.main {
padding-bottom: 5px;
padding-top: 20px;
font-weight: 400;
}
.about-me {
padding-bottom: 0;
}
/* Article Container */
.article-container {
position: relative;
padding-left: 25px;
padding-bottom: 40px;
padding-top: 10px;
display: none;
height: 100%;
}
.article-container.unhide {
display: block;
}
div.ng-scope > div:nth-child(3) > div > div > div:nth-child(6) > p:nth-child(3) {
padding-top: 15px;
padding-bottom: 5px;
}
.about-interact-header {
position: relative;
color: #46A8E5;
font-size: 14px;
padding-bottom: 2px !important;
padding-top: 10px !important;
}
.article-text {
color: #fff;
font-size: 14px;
font-weight: 400;
width: 97%;
line-height: 1.5;
}
.article-stack {
color: white;
position: relative;
padding-top: 15px;
font-size: 13px;
}
.article-tools {
color: white;
position: relative;
font-size: 13px;
}
.article-stack span,
.article-tools span {
color: #fa9581;
padding-right: 5px;
}
.article-line {
position: relative;
width: 250px;
height: 0px;
top: 5px;
border-bottom: 1px solid #efefef;
}
.article-line.body {
position: relative;
width: 100px;
height: 0px;
border-bottom: 1px solid rgba(225, 225, 255, .7);
display: none;
}
.work-type {
color: #fa9581;
z-index: 0;
padding-top: 45px;
font-size: 21px;
}
.work-type.projects {
padding-top: 30px;
}
.article-header {
position: relative;
width: 100%;
height: 100%;
text-align: left;
}
.company-name {
margin: 0;
padding: 0;
color: white;
font-size: 18px;
margin: 0;
top: 10px;
width: auto;
position: relative;
margin: auto;
cursor: pointer;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
a.company-name:hover {
color: #fa9581;
}
.role-name {
font-size: 14px;
color: #46A8E5;
padding-top: 15px;
margin: 0;
}
.role-name.orange {
color: #fa9581;
}
.role-name.orange.italic {
font-style: italic;
}
.role-name.orange.italic > span {
font-style: normal;
font-size: 12px;
}
.interval-and-location {
padding-top: 1px;
font-size: 13px;
color: #fff;
margin: 0;
}
| 0.423816 | 0.082365 |
.panel-container {
position: relative;
z-index: 2;
overflow-x: hidden;
}
.panel-container.project-open {
/* smooth scroll on iOS devices */
-webkit-overflow-scrolling: touch;
}
.panel-container .scroll {
display: block;
position: absolute;
z-index: 2;
bottom: 30px;
left: 50%;
width: 44px;
height: 44px;
/* rest button default style */
cursor: pointer;
border: none;
background: url("../img/cd-icon-arrow.svg") no-repeat center center;
visibility: hidden;
-webkit-transform: translateX(-50%) scale(0);
-moz-transform: translateX(-50%) scale(0);
-ms-transform: translateX(-50%) scale(0);
-o-transform: translateX(-50%) scale(0);
transform: translateX(-50%) scale(0);
-webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s;
-moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s;
transition: transform 0.3s 0s, visibility 0s 0.3s;
}
.panel-container .scroll:focus {
outline: none;
}
.panel-container.project-open .scroll {
visibility: visible;
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
-webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
-moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
transition: transform 0.4s 0s, visibility 0s 0s;
-webkit-animation: panel-translate 1.2s 0.8s;
-moz-animation: panel-translate 1.2s 0.8s;
animation: panel-translate 1.2s 0.8s;
-webkit-animation-iteration-count: 2;
-moz-animation-iteration-count: 2;
animation-iteration-count: 2;
}
.no-touch .panel-container.project-open .scroll:hover {
-webkit-transform: translateX(-50%) scale(1.2);
-moz-transform: translateX(-50%) scale(1.2);
-ms-transform: translateX(-50%) scale(1.2);
-o-transform: translateX(-50%) scale(1.2);
transform: translateX(-50%) scale(1.2);
}
@-webkit-keyframes panel-translate {
0% {
-webkit-transform: translateX(-50%) scale(1);
}
50% {
-webkit-transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-webkit-transform: translateX(-50%) scale(1);
}
}
@-moz-keyframes panel-translate {
0% {
-moz-transform: translateX(-50%) scale(1);
}
50% {
-moz-transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-moz-transform: translateX(-50%) scale(1);
}
}
@keyframes panel-translate {
0% {
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
}
50% {
-webkit-transform: translateY(10px) translateX(-50%) scale(1);
-moz-transform: translateY(10px) translateX(-50%) scale(1);
-ms-transform: translateY(10px) translateX(-50%) scale(1);
-o-transform: translateY(10px) translateX(-50%) scale(1);
transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
}
}
.panel-previews {
position: relative;
z-index: 2;
height: 100vh;
width: 100vw;
}
.panel-previews::after {
clear: both;
content: "";
display: table;
}
.project-open .panel-previews {
pointer-events: none;
}
.panel-previews li {
height: 25%;
width: 100%;
overflow: hidden;
-webkit-transition: -webkit-transform 0.5s;
-moz-transition: -moz-transform 0.5s;
transition: transform 0.5s;
/* Force Hardware Acceleration */
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateZ(1px);
-moz-transform: translateZ(1px);
-ms-transform: translateZ(1px);
-o-transform: translateZ(1px);
transform: translateZ(1px);
}
.panel-previews li.selected {
opacity: 0;
/* move selected project preview out of the viewport with no transition */
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: -webkit-transform 0s;
-moz-transition: -moz-transform 0s;
transition: transform 0s;
}
.panel-previews li.slide-out {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
.panel-previews a {
display: block;
height: 100vh;
width: 100%;
/* fixes a bug on projects caption width */
-webkit-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
transform: translateY(0%);
opacity: 0;
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.panel-previews li:nth-of-type(2) a {
-webkit-transform: translateY(-25%);
-moz-transform: translateY(-25%);
-ms-transform: translateY(-25%);
-o-transform: translateY(-25%);
transform: translateY(-25%);
}
.panel-previews li:nth-of-type(3) a {
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.panel-previews li:nth-of-type(4) a {
-webkit-transform: translateY(-75%);
-moz-transform: translateY(-75%);
-ms-transform: translateY(-75%);
-o-transform: translateY(-75%);
transform: translateY(-75%);
}
.panel-previews .bg-loaded a {
opacity: 1;
}
@media only screen and (min-width: 1024px) {
.panel-previews li {
display: inline-block;
height: 100%;
width: 25%;
float: left;
}
.panel-previews li.selected {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.panel-previews li.slide-out {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.panel-previews a {
/* width equal to window width */
width: 400%;
}
.panel-previews li:nth-of-type(2) a {
-webkit-transform: translateX(-25%);
-moz-transform: translateX(-25%);
-ms-transform: translateX(-25%);
-o-transform: translateX(-25%);
transform: translateX(-25%);
}
.panel-previews li:nth-of-type(3) a {
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
.panel-previews li:nth-of-type(4) a {
-webkit-transform: translateX(-75%);
-moz-transform: translateX(-75%);
-ms-transform: translateX(-75%);
-o-transform: translateX(-75%);
transform: translateX(-75%);
}
}
.panel-contents {
position: absolute;
z-index: 1;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
}
.panel-contents > li {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
opacity: 0;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.panel-contents > li.selected {
z-index: 1;
opacity: 1;
-webkit-transition: opacity 0s;
-moz-transition: opacity 0s;
transition: opacity 0s;
}
.panel-contents .preview-image {
display: block;
height: 100vh;
}
.panel-previews a,
.panel-contents .preview-image {
/* set a background image for each project */
background: #5b927d url(../img/img-1.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(2) a,
.panel-contents > li:nth-of-type(2) .preview-image {
background: #a8ae7e url(../img/img-2.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(3) a,
.panel-contents > li:nth-of-type(3) .preview-image {
background: #e7d5a4 url(../img/img-3.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(4) a,
.panel-contents > li:nth-of-type(4) .preview-image {
background: #835531 url(../img/img-4.jpg) no-repeat center center;
background-size: cover;
}
|
b4jlibs/ABM/2.51/Firebase/Objects/www/css/sliding-panels.css
|
.panel-container {
position: relative;
z-index: 2;
overflow-x: hidden;
}
.panel-container.project-open {
/* smooth scroll on iOS devices */
-webkit-overflow-scrolling: touch;
}
.panel-container .scroll {
display: block;
position: absolute;
z-index: 2;
bottom: 30px;
left: 50%;
width: 44px;
height: 44px;
/* rest button default style */
cursor: pointer;
border: none;
background: url("../img/cd-icon-arrow.svg") no-repeat center center;
visibility: hidden;
-webkit-transform: translateX(-50%) scale(0);
-moz-transform: translateX(-50%) scale(0);
-ms-transform: translateX(-50%) scale(0);
-o-transform: translateX(-50%) scale(0);
transform: translateX(-50%) scale(0);
-webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s;
-moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s;
transition: transform 0.3s 0s, visibility 0s 0.3s;
}
.panel-container .scroll:focus {
outline: none;
}
.panel-container.project-open .scroll {
visibility: visible;
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
-webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
-moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
transition: transform 0.4s 0s, visibility 0s 0s;
-webkit-animation: panel-translate 1.2s 0.8s;
-moz-animation: panel-translate 1.2s 0.8s;
animation: panel-translate 1.2s 0.8s;
-webkit-animation-iteration-count: 2;
-moz-animation-iteration-count: 2;
animation-iteration-count: 2;
}
.no-touch .panel-container.project-open .scroll:hover {
-webkit-transform: translateX(-50%) scale(1.2);
-moz-transform: translateX(-50%) scale(1.2);
-ms-transform: translateX(-50%) scale(1.2);
-o-transform: translateX(-50%) scale(1.2);
transform: translateX(-50%) scale(1.2);
}
@-webkit-keyframes panel-translate {
0% {
-webkit-transform: translateX(-50%) scale(1);
}
50% {
-webkit-transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-webkit-transform: translateX(-50%) scale(1);
}
}
@-moz-keyframes panel-translate {
0% {
-moz-transform: translateX(-50%) scale(1);
}
50% {
-moz-transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-moz-transform: translateX(-50%) scale(1);
}
}
@keyframes panel-translate {
0% {
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
}
50% {
-webkit-transform: translateY(10px) translateX(-50%) scale(1);
-moz-transform: translateY(10px) translateX(-50%) scale(1);
-ms-transform: translateY(10px) translateX(-50%) scale(1);
-o-transform: translateY(10px) translateX(-50%) scale(1);
transform: translateY(10px) translateX(-50%) scale(1);
}
100% {
-webkit-transform: translateX(-50%) scale(1);
-moz-transform: translateX(-50%) scale(1);
-ms-transform: translateX(-50%) scale(1);
-o-transform: translateX(-50%) scale(1);
transform: translateX(-50%) scale(1);
}
}
.panel-previews {
position: relative;
z-index: 2;
height: 100vh;
width: 100vw;
}
.panel-previews::after {
clear: both;
content: "";
display: table;
}
.project-open .panel-previews {
pointer-events: none;
}
.panel-previews li {
height: 25%;
width: 100%;
overflow: hidden;
-webkit-transition: -webkit-transform 0.5s;
-moz-transition: -moz-transform 0.5s;
transition: transform 0.5s;
/* Force Hardware Acceleration */
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateZ(1px);
-moz-transform: translateZ(1px);
-ms-transform: translateZ(1px);
-o-transform: translateZ(1px);
transform: translateZ(1px);
}
.panel-previews li.selected {
opacity: 0;
/* move selected project preview out of the viewport with no transition */
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: -webkit-transform 0s;
-moz-transition: -moz-transform 0s;
transition: transform 0s;
}
.panel-previews li.slide-out {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
.panel-previews a {
display: block;
height: 100vh;
width: 100%;
/* fixes a bug on projects caption width */
-webkit-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
transform: translateY(0%);
opacity: 0;
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.panel-previews li:nth-of-type(2) a {
-webkit-transform: translateY(-25%);
-moz-transform: translateY(-25%);
-ms-transform: translateY(-25%);
-o-transform: translateY(-25%);
transform: translateY(-25%);
}
.panel-previews li:nth-of-type(3) a {
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.panel-previews li:nth-of-type(4) a {
-webkit-transform: translateY(-75%);
-moz-transform: translateY(-75%);
-ms-transform: translateY(-75%);
-o-transform: translateY(-75%);
transform: translateY(-75%);
}
.panel-previews .bg-loaded a {
opacity: 1;
}
@media only screen and (min-width: 1024px) {
.panel-previews li {
display: inline-block;
height: 100%;
width: 25%;
float: left;
}
.panel-previews li.selected {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.panel-previews li.slide-out {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.panel-previews a {
/* width equal to window width */
width: 400%;
}
.panel-previews li:nth-of-type(2) a {
-webkit-transform: translateX(-25%);
-moz-transform: translateX(-25%);
-ms-transform: translateX(-25%);
-o-transform: translateX(-25%);
transform: translateX(-25%);
}
.panel-previews li:nth-of-type(3) a {
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
.panel-previews li:nth-of-type(4) a {
-webkit-transform: translateX(-75%);
-moz-transform: translateX(-75%);
-ms-transform: translateX(-75%);
-o-transform: translateX(-75%);
transform: translateX(-75%);
}
}
.panel-contents {
position: absolute;
z-index: 1;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
}
.panel-contents > li {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
opacity: 0;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.panel-contents > li.selected {
z-index: 1;
opacity: 1;
-webkit-transition: opacity 0s;
-moz-transition: opacity 0s;
transition: opacity 0s;
}
.panel-contents .preview-image {
display: block;
height: 100vh;
}
.panel-previews a,
.panel-contents .preview-image {
/* set a background image for each project */
background: #5b927d url(../img/img-1.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(2) a,
.panel-contents > li:nth-of-type(2) .preview-image {
background: #a8ae7e url(../img/img-2.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(3) a,
.panel-contents > li:nth-of-type(3) .preview-image {
background: #e7d5a4 url(../img/img-3.jpg) no-repeat center center;
background-size: cover;
}
.panel-previews li:nth-of-type(4) a,
.panel-contents > li:nth-of-type(4) .preview-image {
background: #835531 url(../img/img-4.jpg) no-repeat center center;
background-size: cover;
}
| 0.368292 | 0.070848 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.