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 |
|---|---|---|---|---|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: space-around;
align-items: center;
}
/* Spinner Loader */
.spinner {
width: 80px;
height: 80px;
position: relative;
}
.spinner span {
position: absolute;
width: 100%;
height: 100%;
border: 6px solid transparent;
border-radius: 50%;
}
.spinner span:nth-child(1) {
border-top-color: #ca0e50;
animation: spinnerOne 1.2s linear infinite;
}
.spinner span:nth-child(2) {
border-bottom-color: #ca0e50;
animation: spinnerTwo 1.2s linear infinite;
}
@keyframes spinnerOne {
0% {
transform: rotate(0deg);
border-width: 6px;
}
50% {
transform: rotate(180deg);
border-width: 1px;
}
100% {
transform: rotate(360deg);
border-width: 6px;
}
}
@keyframes spinnerTwo {
0% {
transform: rotate(0deg);
border-width: 1px;
}
50% {
transform: rotate(180deg);
border-width: 6px;
}
100% {
transform: rotate(360deg);
border-width: 1px;
}
}
/* Bouncer Loader */
.bouncer {
display: flex;
justify-content: space-around;
align-items: flex-end;
width: 100px;
height: 100px;
}
.bouncer span {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #0066ff;
animation: bouncer 0.5s cubic-bezier(0.19, 0.57, 0.3, 0.98) infinite alternate;
}
.bouncer span:nth-child(2) {
animation-delay: 0.1s;
opacity: 0.8;
}
.bouncer span:nth-child(3) {
animation-delay: 0.2s;
opacity: 0.6;
}
.bouncer span:nth-child(4) {
animation-delay: 0.3s;
opacity: 0.4;
}
@keyframes bouncer {
from {
transform: translateY(0);
}
to {
transform: translateY(-100px);
}
}
/* Boxes Loader */
.boxes {
width: 80px;
height: 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.boxes span {
background-color: #ff7b00;
animation: boxes 0.4s linear infinite alternate;
}
.boxes span:nth-child(1) {
animation-delay: 0.1s;
}
.boxes span:nth-child(2) {
animation-delay: 0.2s;
}
.boxes span:nth-child(3) {
animation-delay: 0.4s;
}
.boxes span:nth-child(4) {
animation-delay: 0.3s;
}
@keyframes boxes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* Flipper */
.flipper {
position: relative;
width: 80px;
height: 80px;
perspective: 200px;
}
.flipper span {
position: absolute;
top: 0;
width: 40px;
height: 40px;
background-color: coral;
transform-origin: bottom right;
animation: flip 2s infinite linear;
}
.flipper span:nth-child(2) {
animation-delay: 1s;
opacity: 0.5;
}
@keyframes flip {
0% {
transform: rotateX(0deg) rotateY(0deg);
}
25% {
transform: rotateX(0deg) rotateY(180deg);
}
50% {
transform: rotateX(180deg) rotateY(180deg);
}
75% {
transform: rotateX(180deg) rotateY(0deg);
}
100% {
transform: rotateX(0deg) rotateY(0deg);
}
} | style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: space-around;
align-items: center;
}
/* Spinner Loader */
.spinner {
width: 80px;
height: 80px;
position: relative;
}
.spinner span {
position: absolute;
width: 100%;
height: 100%;
border: 6px solid transparent;
border-radius: 50%;
}
.spinner span:nth-child(1) {
border-top-color: #ca0e50;
animation: spinnerOne 1.2s linear infinite;
}
.spinner span:nth-child(2) {
border-bottom-color: #ca0e50;
animation: spinnerTwo 1.2s linear infinite;
}
@keyframes spinnerOne {
0% {
transform: rotate(0deg);
border-width: 6px;
}
50% {
transform: rotate(180deg);
border-width: 1px;
}
100% {
transform: rotate(360deg);
border-width: 6px;
}
}
@keyframes spinnerTwo {
0% {
transform: rotate(0deg);
border-width: 1px;
}
50% {
transform: rotate(180deg);
border-width: 6px;
}
100% {
transform: rotate(360deg);
border-width: 1px;
}
}
/* Bouncer Loader */
.bouncer {
display: flex;
justify-content: space-around;
align-items: flex-end;
width: 100px;
height: 100px;
}
.bouncer span {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #0066ff;
animation: bouncer 0.5s cubic-bezier(0.19, 0.57, 0.3, 0.98) infinite alternate;
}
.bouncer span:nth-child(2) {
animation-delay: 0.1s;
opacity: 0.8;
}
.bouncer span:nth-child(3) {
animation-delay: 0.2s;
opacity: 0.6;
}
.bouncer span:nth-child(4) {
animation-delay: 0.3s;
opacity: 0.4;
}
@keyframes bouncer {
from {
transform: translateY(0);
}
to {
transform: translateY(-100px);
}
}
/* Boxes Loader */
.boxes {
width: 80px;
height: 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.boxes span {
background-color: #ff7b00;
animation: boxes 0.4s linear infinite alternate;
}
.boxes span:nth-child(1) {
animation-delay: 0.1s;
}
.boxes span:nth-child(2) {
animation-delay: 0.2s;
}
.boxes span:nth-child(3) {
animation-delay: 0.4s;
}
.boxes span:nth-child(4) {
animation-delay: 0.3s;
}
@keyframes boxes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* Flipper */
.flipper {
position: relative;
width: 80px;
height: 80px;
perspective: 200px;
}
.flipper span {
position: absolute;
top: 0;
width: 40px;
height: 40px;
background-color: coral;
transform-origin: bottom right;
animation: flip 2s infinite linear;
}
.flipper span:nth-child(2) {
animation-delay: 1s;
opacity: 0.5;
}
@keyframes flip {
0% {
transform: rotateX(0deg) rotateY(0deg);
}
25% {
transform: rotateX(0deg) rotateY(180deg);
}
50% {
transform: rotateX(180deg) rotateY(180deg);
}
75% {
transform: rotateX(180deg) rotateY(0deg);
}
100% {
transform: rotateX(0deg) rotateY(0deg);
}
} | 0.72086 | 0.155623 |
* Filename : nav.less
* Preprocessor : LESS
* Update : 03/05/18
*
**/
span[color="white"] {
color: #ffffff;
}
span[color="yellow"] {
color: #f7b41b;
}
section[name="contactMap"] {
background-color: #f7b41b;
height: auto;
width: 100vw;
display: block;
}
section[name="contactMap"] wrapper {
height: auto;
}
section[name="contactMap"] span.convenios {
background-color: #000000;
color: #ffffff;
font-family: font-med-condensed;
font-size: 6vw;
padding: 1.8vw 3vw 0.5vw 3vw;
margin: 0vw auto;
position: relative;
top: -3vw;
left: calc(36vw);
letter-spacing: 0.3vw;
}
#cts-GoogleMap {
height: 79vh;
display: block;
width: 100%;
}
#cts-convenios {
height: auto;
display: inline-block;
margin: 0 auto;
width: 90vw;
background-color: #f7b41b;
display: -webkit-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-align-content: center;
-ms-align-content: center;
align-content: center;
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
box-sizing: border-box;
padding: 5vw;
}
#cts-convenios img {
display: block;
margin: 0 auto;
width: 100%;
}
img.hands {
display: none;
}
@media (min-width: 1200px) {
#cts-convenios {
height: 30vh;
margin: 0 auto;
width: 100vw;
box-sizing: border-box;
padding: 5vw 0vw;
display: inline-block;
display: -webkit-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-webkit-align-content: center;
-ms-align-content: center;
align-content: center;
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
}
#cts-convenios img {
display: inline-block;
margin: 0px;
width: 30%;
}
#cts-convenios img.hands {
display: inline-block;
width: 30vw;
}
#cts-GoogleMap {
height: 65vh;
display: block;
width: 100%;
}
section[name="contactMap"] {
background-color: #f7b41b;
height: auto;
width: 100vw;
display: block;
}
section[name="contactMap"] wrapper {
height: auto;
}
section[name="contactMap"] span.convenios {
background-color: #000000;
color: #ffffff;
font-family: font-med-condensed;
font-size: 2vw;
padding: 0.55vw 1vw 0.3vw 1vw;
/* margin: 0vw auto; */
position: relative;
top: -1.25vw;
left: calc(44.5vw);
letter-spacing: 0.1vw;
}
} | src/css/views/w5_contact/s2_maps.css | * Filename : nav.less
* Preprocessor : LESS
* Update : 03/05/18
*
**/
span[color="white"] {
color: #ffffff;
}
span[color="yellow"] {
color: #f7b41b;
}
section[name="contactMap"] {
background-color: #f7b41b;
height: auto;
width: 100vw;
display: block;
}
section[name="contactMap"] wrapper {
height: auto;
}
section[name="contactMap"] span.convenios {
background-color: #000000;
color: #ffffff;
font-family: font-med-condensed;
font-size: 6vw;
padding: 1.8vw 3vw 0.5vw 3vw;
margin: 0vw auto;
position: relative;
top: -3vw;
left: calc(36vw);
letter-spacing: 0.3vw;
}
#cts-GoogleMap {
height: 79vh;
display: block;
width: 100%;
}
#cts-convenios {
height: auto;
display: inline-block;
margin: 0 auto;
width: 90vw;
background-color: #f7b41b;
display: -webkit-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-align-content: center;
-ms-align-content: center;
align-content: center;
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
box-sizing: border-box;
padding: 5vw;
}
#cts-convenios img {
display: block;
margin: 0 auto;
width: 100%;
}
img.hands {
display: none;
}
@media (min-width: 1200px) {
#cts-convenios {
height: 30vh;
margin: 0 auto;
width: 100vw;
box-sizing: border-box;
padding: 5vw 0vw;
display: inline-block;
display: -webkit-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-webkit-align-content: center;
-ms-align-content: center;
align-content: center;
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
}
#cts-convenios img {
display: inline-block;
margin: 0px;
width: 30%;
}
#cts-convenios img.hands {
display: inline-block;
width: 30vw;
}
#cts-GoogleMap {
height: 65vh;
display: block;
width: 100%;
}
section[name="contactMap"] {
background-color: #f7b41b;
height: auto;
width: 100vw;
display: block;
}
section[name="contactMap"] wrapper {
height: auto;
}
section[name="contactMap"] span.convenios {
background-color: #000000;
color: #ffffff;
font-family: font-med-condensed;
font-size: 2vw;
padding: 0.55vw 1vw 0.3vw 1vw;
/* margin: 0vw auto; */
position: relative;
top: -1.25vw;
left: calc(44.5vw);
letter-spacing: 0.1vw;
}
} | 0.348313 | 0.068195 |
body{
margin:0;
font-family:'Arial Narrow', sans-serif;
}
.error{
text-align:center;
color: red;
font-weight:700;
}
.wrapper{
width:1200px;
margin:0 auto;
}
.nav-default{
width:100%;
height:255px;
background:url('../img/night.jpg');
background-size:cover;
padding:10px;
box-shadow: 0px 5px 5px #888888;
}
#home img, .admin{
box-shadow: 1px 1px 5px #888888;
}
#home img:hover, .admin:hover{
box-shadow: 2px 1px 5px #888888;
}
.welcome-msg{
clear:right;
color:#FFFFFF;
border:5px solid #FFFFFF;
width:350px;
margin:0 auto;
text-align:center;
background:rgba(0, 0, 0, 0.5);
font-family:'Vivaldi';
}
.welcome-msg h1{
font-size:55px;
margin:5px;
}
.footer{
width:100%;
height:50px;
background:url('../img/footer.jpg');
clear:both;
box-shadow: 5px -2px 5px #888888;
}
.access{
margin:0 30px;
color:#FFFFFF;
float:right;
}
.admin{
clear:right;
color:#FFFFFF;
width:35px;
font-size:16px;
float:right;
padding:5px;
margin:5px 30px;
}
.content-wrap{
padding:15px;
width:80%;
float:left;
}
#categories{
float:right;
width:15%;
padding-top:45px;
}
#categories h2{
margin-left:20px;
}
.category-item a, .category-item-all a{
text-decoration:none;
}
.category-item a:hover, .category-item-all a:hover{
font-weight:700;
}
.category-list{
margin-top:40px;
}
.category-item, .category-item-all{
list-style-type: square;
margin-top:10px;
}
.login-form{
width:50%;
border:1px solid lightgray;
margin:50px auto;
padding:50px;
}
.login-form input{
width:80%;
height:30px;
border-radius:5px;
float:right;
}
.login-form .login-btn, .edit-btn, .delete-btn, .read-more-btn{
width:100px;
height:35px;
}
.read-more-btn{
float:right;
}
.edit-btn{
display:block;
margin:10px auto;
}
.login-form label{
font-size:20px;
}
.post-title{
font-size:24px;
}
.post-image{
width:200px;
float:left;
margin-right: 15px;
display:inline-block;
}
.post-content{
text-align:justify;
display:inline-block;
margin-bottom:10px;
height:200px;
overflow:hidden;
}
.post-info{
margin:5px 0;
font-size: 12px;
}
.entire-post-content{
text-align:justify;
}
.new-post-id{
margin:15px;
}
.new-post, .edit-post, .delete-post{
border:1px solid gray;
width:100%;
padding:10px;
display:none;
margin-bottom:20px;
}
.delete-post form{
text-align:center;
margin:0 auto;
}
.new-post-btn, .edit-post-btn, .delete-post-btn, .logout-btn{
width:150px;
height:50px;
font-size:16px;
}
.logout-btn{
float:right;
margin-top:20px;
}
.display {
display:block;
}
.new-post form, .edit-post form, .delete-post form{
width:80%;
margin:0 auto;
}
.new-post-title, textarea{
width:100%;
margin:15px;
resize:none;
}
.upload-img{
margin:15px;
}
.delete-post-id{
margin:15px;
} | stylesheets/style.css | body{
margin:0;
font-family:'Arial Narrow', sans-serif;
}
.error{
text-align:center;
color: red;
font-weight:700;
}
.wrapper{
width:1200px;
margin:0 auto;
}
.nav-default{
width:100%;
height:255px;
background:url('../img/night.jpg');
background-size:cover;
padding:10px;
box-shadow: 0px 5px 5px #888888;
}
#home img, .admin{
box-shadow: 1px 1px 5px #888888;
}
#home img:hover, .admin:hover{
box-shadow: 2px 1px 5px #888888;
}
.welcome-msg{
clear:right;
color:#FFFFFF;
border:5px solid #FFFFFF;
width:350px;
margin:0 auto;
text-align:center;
background:rgba(0, 0, 0, 0.5);
font-family:'Vivaldi';
}
.welcome-msg h1{
font-size:55px;
margin:5px;
}
.footer{
width:100%;
height:50px;
background:url('../img/footer.jpg');
clear:both;
box-shadow: 5px -2px 5px #888888;
}
.access{
margin:0 30px;
color:#FFFFFF;
float:right;
}
.admin{
clear:right;
color:#FFFFFF;
width:35px;
font-size:16px;
float:right;
padding:5px;
margin:5px 30px;
}
.content-wrap{
padding:15px;
width:80%;
float:left;
}
#categories{
float:right;
width:15%;
padding-top:45px;
}
#categories h2{
margin-left:20px;
}
.category-item a, .category-item-all a{
text-decoration:none;
}
.category-item a:hover, .category-item-all a:hover{
font-weight:700;
}
.category-list{
margin-top:40px;
}
.category-item, .category-item-all{
list-style-type: square;
margin-top:10px;
}
.login-form{
width:50%;
border:1px solid lightgray;
margin:50px auto;
padding:50px;
}
.login-form input{
width:80%;
height:30px;
border-radius:5px;
float:right;
}
.login-form .login-btn, .edit-btn, .delete-btn, .read-more-btn{
width:100px;
height:35px;
}
.read-more-btn{
float:right;
}
.edit-btn{
display:block;
margin:10px auto;
}
.login-form label{
font-size:20px;
}
.post-title{
font-size:24px;
}
.post-image{
width:200px;
float:left;
margin-right: 15px;
display:inline-block;
}
.post-content{
text-align:justify;
display:inline-block;
margin-bottom:10px;
height:200px;
overflow:hidden;
}
.post-info{
margin:5px 0;
font-size: 12px;
}
.entire-post-content{
text-align:justify;
}
.new-post-id{
margin:15px;
}
.new-post, .edit-post, .delete-post{
border:1px solid gray;
width:100%;
padding:10px;
display:none;
margin-bottom:20px;
}
.delete-post form{
text-align:center;
margin:0 auto;
}
.new-post-btn, .edit-post-btn, .delete-post-btn, .logout-btn{
width:150px;
height:50px;
font-size:16px;
}
.logout-btn{
float:right;
margin-top:20px;
}
.display {
display:block;
}
.new-post form, .edit-post form, .delete-post form{
width:80%;
margin:0 auto;
}
.new-post-title, textarea{
width:100%;
margin:15px;
resize:none;
}
.upload-img{
margin:15px;
}
.delete-post-id{
margin:15px;
} | 0.102799 | 0.038107 |
div {
display: inline-block;
}
#system-name {
color: white;
font-size: 33px;
/* font-weight: 600; */
margin-left: 10%;
margin-right: 35%;
}
#left-div {
height: 97%;
background-color: #130f40;
width: 20%;
position: absolute;
}
#main-div {
height: 640px;
width: 100%;
background-color: white;
border: 2px solid black;
/* position: relative; */
}
#header {
height: 50px;
margin-left: 20%;
width: 79%;
background-color: #0D2A4A;
position: absolute;
}
#banner-name {
background-color: #7158e2;
height: 50px;
width: 100%;
padding-left: 25px;
font-size: 45px;
color: white;
box-sizing: border-box;
}
.btn {
border: none;
color: white;
padding: 12px 28px;
font-size: 17px;
cursor: pointer;
/* margin-left: 68%; */
}
.danger {
background-color: #f44336;
}
#right-div {
/* margin-left: 23%; */
position: absolute;
width: 79%;
height: 590px;
margin-top: 50px;
margin-left: 20%;
/* background-color: rgba(60, 99, 130, 1.0); */
}
#right-div::-webkit-scrollbar {
display: none;
}
.CRUD-OPTION {
height: 160px;
width: 180px;
/* background-image: linear-gradient(45deg,rgb(60, 89, 66),rgb(26, 16, 98)); */
background-color: #48C9B0;
margin-top: 20px;
margin-left: 48px;
cursor: pointer;
color: white;
text-align: center;
padding-top: 60px;
box-sizing: border-box;
font-size: 28px;
font-weight: 700;
position: relative;
transition: all ease-in-out .2s;
border: 3px solid brown;
}
.CRUD-OPTION:hover {
/* height: 180px;
width: 200px; */
transform: scale(1.1);
}
.CRUD-OPTION:hover .CRUD-OPTION {
background-color: #48C9B0;
}
/* Red */
.danger:hover {
background: #da190b;
}
#side-bar th {
color: white;
font-size: 22px;
background-color: pink;
}
#side-bar {
border-spacing: 0px 25px;
}
#side-bar td,
#side-bar th {
color: white;
font-size: 22px;
margin: 10%;
border-bottom: 1px solid grey;
}
#side-bar tr:hover td,
#side-bar tr:hover i {
background-color: #f44336;
color: black;
}
#side-bar .sidebaricon1 {
font-size: 28px;
color: white;
margin-right: 30px;
margin-left: 18px;
margin-bottom: 30px;
height: 50;
width: 150px;
}
#side-bar .icon-text {
height: 50;
width: 150px;
}
#input-form {
margin-left: 10px;
}
#input-form input[type="button"],
#input-form input[type="submit"] {
border: none;
background: none;
/* border: 1px solid black; */
border-radius: 28px;
font-size: 22px;
margin-left: 150px;
margin-top: 15px;
width: 200px;
cursor: pointer;
background-color: #1e3799;
color: white;
padding: 5px;
}
#input-form input[type="button"]:hover,
#input-form input[type="submit"]:hover {
transform: scale(1.01);
background-color: #38ada9;
} | public/css/layout.css | div {
display: inline-block;
}
#system-name {
color: white;
font-size: 33px;
/* font-weight: 600; */
margin-left: 10%;
margin-right: 35%;
}
#left-div {
height: 97%;
background-color: #130f40;
width: 20%;
position: absolute;
}
#main-div {
height: 640px;
width: 100%;
background-color: white;
border: 2px solid black;
/* position: relative; */
}
#header {
height: 50px;
margin-left: 20%;
width: 79%;
background-color: #0D2A4A;
position: absolute;
}
#banner-name {
background-color: #7158e2;
height: 50px;
width: 100%;
padding-left: 25px;
font-size: 45px;
color: white;
box-sizing: border-box;
}
.btn {
border: none;
color: white;
padding: 12px 28px;
font-size: 17px;
cursor: pointer;
/* margin-left: 68%; */
}
.danger {
background-color: #f44336;
}
#right-div {
/* margin-left: 23%; */
position: absolute;
width: 79%;
height: 590px;
margin-top: 50px;
margin-left: 20%;
/* background-color: rgba(60, 99, 130, 1.0); */
}
#right-div::-webkit-scrollbar {
display: none;
}
.CRUD-OPTION {
height: 160px;
width: 180px;
/* background-image: linear-gradient(45deg,rgb(60, 89, 66),rgb(26, 16, 98)); */
background-color: #48C9B0;
margin-top: 20px;
margin-left: 48px;
cursor: pointer;
color: white;
text-align: center;
padding-top: 60px;
box-sizing: border-box;
font-size: 28px;
font-weight: 700;
position: relative;
transition: all ease-in-out .2s;
border: 3px solid brown;
}
.CRUD-OPTION:hover {
/* height: 180px;
width: 200px; */
transform: scale(1.1);
}
.CRUD-OPTION:hover .CRUD-OPTION {
background-color: #48C9B0;
}
/* Red */
.danger:hover {
background: #da190b;
}
#side-bar th {
color: white;
font-size: 22px;
background-color: pink;
}
#side-bar {
border-spacing: 0px 25px;
}
#side-bar td,
#side-bar th {
color: white;
font-size: 22px;
margin: 10%;
border-bottom: 1px solid grey;
}
#side-bar tr:hover td,
#side-bar tr:hover i {
background-color: #f44336;
color: black;
}
#side-bar .sidebaricon1 {
font-size: 28px;
color: white;
margin-right: 30px;
margin-left: 18px;
margin-bottom: 30px;
height: 50;
width: 150px;
}
#side-bar .icon-text {
height: 50;
width: 150px;
}
#input-form {
margin-left: 10px;
}
#input-form input[type="button"],
#input-form input[type="submit"] {
border: none;
background: none;
/* border: 1px solid black; */
border-radius: 28px;
font-size: 22px;
margin-left: 150px;
margin-top: 15px;
width: 200px;
cursor: pointer;
background-color: #1e3799;
color: white;
padding: 5px;
}
#input-form input[type="button"]:hover,
#input-form input[type="submit"]:hover {
transform: scale(1.01);
background-color: #38ada9;
} | 0.324771 | 0.08698 |
@charset "UTF-8";
*,
*:after,
*:before {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-size: 15px;
}
html,
body {
height: 100vh;
overflow: hidden;
position: relative;
background: white;
color: black;
font-size: 15px;
font-family: 'Poppins', sans-serif;
width: 100%;
}
.button-9 {
backface-visibility: hidden;
background-color: #405cf5;
border-radius: 6px;
border-width: 0;
box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.1) 0 2px 5px 0,
rgba(0, 0, 0, 0.07) 0 1px 1px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
font-size: 100%;
height: 44px;
line-height: 1.15;
margin: 12px;
outline: none;
overflow: hidden;
padding: 0 25px;
position: relative;
text-align: center;
text-transform: none;
transition: all 0.2s, box-shadow 0.08s ease-in;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
/*width: 100%;*/
}
.button-9:disabled {
cursor: default;
}
.button-9:focus {
box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.2) 0 6px 15px 0,
rgba(0, 0, 0, 0.1) 0 2px 2px 0, rgba(50, 151, 211, 0.3) 0 0 0 4px;
}
#notion-app {
height: 100vh;
overflow: hidden;
position: relative;
background-color: transparent;
}
.notion-app--inner {
color: #37352f;
fill: currentcolor;
line-height: 1.5;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.notion-app--main {
width: 100%;
height: 100%;
position: relative;
display: flex;
background: white;
}
.notion__sidebar {
flex-grow: 0;
flex-shrink: 0;
height: 100%;
position: relative;
z-index: 99;
background: #f7f6f3;
transition: width 300ms ease-in 0s;
width: 240px;
}
@media (max-width: 768px) {
.notion__sidebar {
width: 0;
}
}
.notion__main {
display: flex;
flex-direction: column;
width: 100%;
overflow: hidden;
}
@media (max-width: 768px) {
.notion__main {
width: 100%;
}
}
.notion__topbar {
display: flex;
flex-direction: column;
width: 100%;
overflow: hidden;
z-index: 100;
background: white;
user-select: none;
}
.notion__container {
display: flex;
justify-content: space-between;
align-items: center;
overflow: hidden;
padding-left: 12px;
padding-right: 10px;
height: 45px;
}
.burger {
display: none;
position: relative;
outline: 0;
background: none;
border: none;
cursor: pointer;
}
.burger:focus {
outline: 0;
}
@media (max-width: 768px) {
.burger {
display: block;
flex-shrink: 0;
padding: 12px;
}
}
.burger__inner {
position: absolute;
top: 0;
left: 0;
will-change: opacity;
opacity: 1;
}
.burger__svg {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 3px;
}
.burger__svg svg {
width: 16px;
height: 16px;
display: block;
fill: rgba(55, 53, 47, 0.8);
flex-shrink: 0;
backface-visibility: hidden;
}
.notion__url {
display: flex;
align-items: center;
line-height: 1.2;
font-size: 14px;
height: 100%;
flex-grow: 0;
margin-right: 8px;
}
.url__item {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: inline-flex;
align-items: center;
flex-shrink: 1;
white-space: nowrap;
height: 24px;
border-radius: 3px;
font-size: inherit;
line-height: 1.2;
padding-left: 6px;
padding-right: 6px;
color: #37352f;
text-decoration: none;
}
.url__item:hover {
background: rgba(55, 53, 47, 0.08);
text-decoration: none;
}
.line__oblique {
margin-left: 2px;
margin-right: 2px;
color: rgba(55, 53, 47, 0.4);
}
.empty {
flex-grow: 1;
flex-shrink: 1;
}
.notion__action--buttons {
flex-grow: 0;
flex-shrink: 0;
display: flex;
align-items: center;
padding-right: 0;
padding-left: 12px;
justify-content: space-between;
z-index: 101;
height: 45px;
opacity: 1;
transition: opacity 700ms ease 0s, color 700ms ease 0s;
}
.notion__button {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
border: 0;
background: transparent;
display: inline-flex;
align-items: center;
flex-shrink: 0;
white-space: nowrap;
height: 28px;
border-radius: 3px;
font-size: 14px;
line-height: 1.2;
padding-left: 8px;
padding-right: 8px;
color: #37352f;
margin-right: 2px;
}
.notion__button:focus {
outline: 0;
}
.notion__button:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__button--active {
background: rgba(55, 53, 47, 0.08);
}
@media (max-width: 420px) {
.notion__button {
padding-right: 0;
padding-left: 0;
}
}
@media (max-width: 768px) {
.notion__sidebar--active {
position: absolute;
width: 240px;
height: 100%;
top: 0;
left: 0;
z-index: 200;
}
}
.deactivate__notion--sidebar {
width: 0;
}
.notion__list-item-active {
background: rgba(55, 53, 47, 0.08);
}
.profile {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
height: 45px;
width: 100%;
margin-bottom: 0;
padding: 2px 14px;
background: transparent;
border: 0;
outline: 0;
text-decoration: none;
z-index: 300;
}
.profile-logout-button {
border: none;
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
margin-left: 16px;
padding: 2px 14px;
background: none;
color: #37352f;
font-weight: 500;
}
.profile-logout-button:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.profile:focus {
outline: 0;
}
.profile:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.profile__icon {
flex-shrink: 0;
flex-grow: 0;
border-radius: 3px;
color: rgba(55, 53, 47, 0.6);
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
cursor: pointer;
}
.profile__icon--inner {
cursor: pointer;
user-select: none;
transition: background 20ms ease-in 0s;
display: flex;
align-items: center;
justify-content: center;
height: 25px;
width: 25px;
border-radius: 3px;
flex-shrink: 0;
margin-top: 1px;
color: #37352f;
}
.profile__block {
width: 100%;
cursor: pointer;
height: 100%;
border-radius: 5px;
padding: 5px;
background: #0c9eec;
color: white;
font-size: 14px;
}
.profile__name-block {
flex: 1 1 auto;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.profile__name {
display: flex;
cursor: pointer;
text-align: start;
flex-direction: column;
margin-right: 6px;
margin-top: 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #37352f;
font-weight: 500;
}
.notion__list {
padding-top: 14px;
padding-bottom: 20px;
z-index: 1;
margin-right: 0;
margin-bottom: 0;
height: 100%;
overflow: hidden auto;
/* ползунок скроллбара */
/* Стрелки */
}
.notion__list::-webkit-scrollbar {
width: 8px;
/* ширина для вертикального скролла */
background-color: #d0d0d0;
}
.notion__list::-webkit-scrollbar-thumb {
background-color: #9d9d9d;
}
.notion__list::-webkit-scrollbar-button:vertical:start:decrement {
display: none;
}
.notion__list::-webkit-scrollbar-button:vertical:end:increment {
display: none;
}
.notion__page--block {
display: block;
}
.notion__item {
display: block;
color: inherit;
text-decoration: none;
width: 100%;
}
.notion__item--inner {
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
width: 100%;
color: #37352f;
font-weight: 600;
}
.notion__item--inner:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__selectable--arrow {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
border-radius: 3px;
}
.notion__selectable--arrow:hover {
background: #a3a3a369;
}
.notion__list-item-file {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
flex-grow: 0;
width: 22px;
height: 18px;
margin-right: 4px;
position: relative;
}
.list__file {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 20px;
width: 20px;
border-radius: 3px;
flex-shrink: 0;
}
.notion__list-item-name {
flex: 1 1 auto;
white-space: nowrap;
min-width: 0px;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
align-items: center;
}
.notion__list--action-btn {
flex-grow: 0;
flex-shrink: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.notion__list--action-delete {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: transparent;
border: 0;
outline: 0;
}
.notion__list--action-delete:hover {
background: #a3a3a369;
}
.notion__list--action-delete:focus {
outline: 0;
}
.notion__list-outliner__private-empty {
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
padding: 2px 14px 2px 28px;
width: 100%;
flex: 1 1 auto;
}
.notion__list-outliner__private-empty p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: rgba(55, 53, 47, 0.4);
padding-left: 12px;
}
.add_notion-page {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
padding: 2px 14px;
width: 100%;
color: rgba(55, 53, 47, 0.6);
outline: 0;
border: 0;
}
.add_notion-page:focus {
outline: 0;
}
.add_notion-page:hover {
background: rgba(55, 53, 47, 0.08);
}
.plus_add_notion {
flex-shrink: 0;
flex-grow: 0;
border-radius: 3px;
color: rgba(55, 53, 47, 0.6);
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
}
.add_page__text {
flex: 1 1 auto;
white-space: nowrap;
min-width: 0px;
overflow: hidden;
text-overflow: ellipsis;
text-align: start;
}
.notion__frame {
flex-grow: 0;
flex-shrink: 1;
display: flex;
flex-direction: column;
background: white;
z-index: 1;
height: calc(100vh - 45px);
max-height: 100%;
position: relative;
width: 100%;
}
@media (max-width: 768px) {
.notion__frame {
width: 100%;
}
}
.notion__scroll {
display: flex;
flex-direction: column;
z-index: 1;
flex-grow: 1;
position: relative;
overflow: auto;
/* ползунок скроллбара */
/* Стрелки */
}
.notion__scroll::-webkit-scrollbar {
width: 8px;
/* ширина для вертикального скролла */
background-color: #d0d0d0;
}
.notion__scroll::-webkit-scrollbar-thumb {
background-color: #9d9d9d;
}
.notion__scroll::-webkit-scrollbar-button:vertical:start:decrement {
display: none;
}
.notion__scroll::-webkit-scrollbar-button:vertical:end:increment {
display: none;
}
.notion__title--block {
padding: 100px 96px 0 96px;
}
@media (max-width: 568px) {
.notion__title--block {
padding: 100px 66px 0 66px;
}
}
.notion__title {
resize: none;
color: #37352f;
font-weight: 700;
line-height: 48px;
font-size: 40px;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
cursor: text;
display: flex;
align-items: center;
border: 0;
outline: 0;
height: auto;
width: 100%;
max-width: 100%;
white-space: pre-wrap;
word-break: break-word;
overflow: hidden;
min-height: 40px;
}
.notion__title:focus {
outline: 0;
}
.notion-page--content {
flex-shrink: 0;
max-width: 100%;
display: flex;
align-items: flex-start;
flex-direction: column;
font-size: 16px;
line-height: 1.5;
width: 100%;
padding: 0 56px;
margin-top: 40px;
}
@media (max-width: 568px) {
.notion-page--content {
padding: 0 26px;
}
}
.notion__block {
margin-top: 2px;
margin-right: 3px;
width: 100%;
margin-bottom: 1px;
display: flex;
position: relative;
}
.notion__block:hover .block__action--btns {
opacity: 1;
}
.text__block {
max-width: 100%;
width: 100%;
white-space: pre-wrap;
word-break: break-word;
caret-color: #37352f;
padding: 3px 2px;
cursor: pointer;
resize: none;
border: 0;
outline: 0;
}
.text__block:focus {
outline: 0;
}
.block__action--btns {
flex-shrink: 0;
opacity: 0;
flex-grow: 0;
display: flex;
align-items: center;
background: transparent;
height: 30px;
position: relative;
transition: opacity 0.2s linear;
}
.add_btn {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: none;
border: 0;
outline: 0;
cursor: pointer;
}
.add_btn:focus {
outline: 0;
}
.add_btn:hover {
background: rgba(55, 53, 47, 0.08);
}
.dots_btn {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: none;
border: 0;
cursor: pointer;
outline: 0;
}
.dots_btn:focus {
outline: 0;
}
.dots_btn:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__empty-block--image {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
background: #f2f1ee;
border-radius: 3px;
transition: background 20ms ease-in 0s;
}
.notion__empty-block--image:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__empty-block--image-inner {
font-size: 14px;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
color: rgba(55, 53, 47, 0.6);
border-radius: 3px;
padding: 12px 36px 12px 12px;
display: flex;
align-items: center;
text-align: left;
width: 100%;
overflow: hidden;
}
.empty__block--text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.button_none {
cursor: pointer;
outline: 0;
border: 0;
}
.button_none:focus {
outline: 0;
}
.notion__image--block {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
position: relative;
overflow: hidden;
flex-grow: 1;
}
.notion__image--block--inner {
width: 80%;
height: 80%;
}
.image__block {
display: block;
object-fit: cover;
border-radius: 1px;
width: 100%;
pointer-events: auto;
}
.notion__block--page {
display: flex;
cursor: pointer;
width: 100%;
color: #37352f;
max-width: 819px;
text-decoration: none;
}
.notion__block--page:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.notion__block--page-inner {
flex: 1 1 0;
min-width: 1px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 2px;
display: flex;
align-items: center;
}
.svg__icon-file {
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
margin-right: 4px;
border-radius: 3px;
flex-shrink: 0;
}
.block__page-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 500;
line-height: 1.3;
border-bottom: 1px solid rgba(55, 53, 47, 0.16);
}
.notion__block--video {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
}
@media (max-width: 768px) {
.notion__block--video {
max-width: 568px;
}
}
@media (max-width: 568px) {
.notion__block--video {
max-width: 368px;
}
}
@media (max-width: 500px) {
.notion__block--video {
max-width: 268px;
}
}
.notion__block--video-inner {
display: flex;
width: 100%;
background-color: #f2f1ee;
flex-grow: 1;
min-height: 100px;
height: 0px;
position: relative;
padding-bottom: 56.2061%;
}
.videoBlock {
position: absolute;
max-width: 819px;
width: 100%;
height: 100%;
border-radius: 1px;
}
@media (max-width: 768px) {
.videoBlock {
max-width: 568px;
}
}
@media (max-width: 568px) {
.videoBlock {
max-width: 368px;
}
}
@media (max-width: 500px) {
.videoBlock {
max-width: 268px;
}
}
.popups__inner {
position: absolute;
top: 0;
left: 0;
background: #dfdfdf7a;
align-items: center;
justify-content: center;
width: 100%;
display: none;
height: 100%;
z-index: 1000;
}
.popups_active {
display: flex !important;
}
.popup__type {
display: none;
flex-direction: column;
width: 324px;
min-width: 180px;
max-width: calc(100vw - 24px);
height: 100%;
max-height: 40vh;
background: white;
border-radius: 3px;
position: relative;
box-shadow: rgba(15, 15, 15, 0.5) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px,
rgba(15, 15, 15, 0.2) 0px 9px 24px;
overflow: hidden;
z-index: 1000;
}
@media (max-width: 424px) {
.popup__type {
width: 280px;
}
}
.popup__type-inner {
flex-grow: 1;
z-index: 1;
overflow: hidden auto;
margin-right: 0px;
margin-bottom: 0px;
}
.popup__type-header {
display: flex;
padding-left: 14px;
padding-right: 14px;
margin-top: 6px;
margin-bottom: 8px;
color: rgba(55, 53, 47, 0.6);
font-size: 11px;
font-weight: 500;
line-height: 120%;
user-select: none;
text-transform: uppercase;
}
.popup__type-header h4 {
align-self: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.type__blocks {
width: 100%;
display: flex;
flex-direction: column;
}
.type__item {
display: flex;
align-items: center;
line-height: 120%;
width: 100%;
user-select: none;
min-height: 45px;
font-size: 14px;
padding-top: 4px;
padding-bottom: 4px;
text-decoration: none;
}
.type__item:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.type__item-icon {
display: flex;
align-items: center;
justify-content: center;
margin-left: 14px;
margin-top: 1px;
align-self: flex-start;
}
.type__img {
display: block;
object-fit: cover;
border-radius: 3px;
background: white;
width: 46px;
height: 46px;
flex-grow: 0;
flex-shrink: 0;
box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px;
}
.type__item-name {
margin-left: 8px;
margin-right: 14px;
min-width: 0px;
flex: 1 1 auto;
font-size: 18px;
color: #4f5050;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.popup__type--active {
display: flex;
}
.loader-container {
position: relative;
display: contents;
width: 250px;
height: 250px;
}
.loader-container .loader {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.wave .loader {
width: 100px;
height: 100px;
}
.wave .loader > div {
float: left;
margin: 40% 2% 0 0;
width: 4%;
height: 16%;
background-color: #0c9eec;
animation: wave 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) infinite;
}
.wave .loader .line-1 {
margin-left: 30%;
}
.wave .loader .line-1 {
animation-delay: 0.1s;
}
.wave .loader .line-2 {
animation-delay: 0.2s;
}
.wave .loader .line-3 {
animation-delay: 0.3s;
}
.wave .loader .line-4 {
animation-delay: 0.4s;
}
.wave .loader .line-5 {
animation-delay: 0.5s;
}
@keyframes wave {
0%,
100% {
transform: scaleY(1);
}
50% {
transform: scaleY(2);
}
}
.arc-rotate-double .loader {
width: 80px;
height: 80px;
}
.arc-rotate-double .loader > div {
position: absolute;
border: 2px solid;
border-color: transparent #7e878d;
border-radius: 50%;
animation: load 1s infinite ease-in-out;
}
.arc-rotate-double .loader .arc-1 {
margin: 32% 0 0 32%;
width: 36%;
height: 36%;
}
.arc-rotate-double .loader .arc-2 {
margin: 40% 0 0 40%;
width: 20%;
height: 20%;
animation-direction: reverse;
animation-delay: -0.5s;
}
@keyframes load {
0% {
transform: rotate(0) scale(1);
}
50% {
transform: rotate(180deg) scale(0.6);
}
100% {
transform: rotate(360deg) scale(1);
}
}
.loader__container-note {
position: relative;
width: 100%;
height: 50px;
display: block;
margin-bottom: 10px;
}
.loader__container-note .loader {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.notion__text--block--inner {
width: 100%;
height: auto;
max-width: 100%;
white-space: pre-wrap;
word-break: break-word;
}
.input_link--style {
border-radius: 2px;
padding: 6px 5px;
background: rgba(55, 53, 47, 0.15);
border: darkgrey 1px solid;
width: 100%;
outline: none;
}
.input_link--style:focus {
outline: none;
}
.btn_link {
cursor: pointer;
outline: none !important;
background: none !important;
border: none;
}
.btn-link--active {
border-bottom: 1px solid #6c757d;
}
.btn_link:focus {
outline: none !important;
}
.modal_background {
background: #dfdfdf7a;
}
.modal-footer-2-btns {
display: flex;
flex-wrap: wrap;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
padding: 0.75rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
.btn-link {
padding: 6px 15px;
background: #52aeff;
border-radius: 6px;
border: none;
color: white;
font-size: 15px;
cursor: pointer;
outline: none;
}
.btn-link:focus {
outline: none;
}
.example-2 {
padding: 10px 15px;
}
.example-2 .btn-tertiary {
color: white;
padding: 0;
line-height: 30px;
width: 60%;
text-align: center;
margin: auto;
display: block;
background-color: dodgerblue;
}
.example-2 .input-file {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.example-2 .input-file + .js-labelFile {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0 10px;
cursor: pointer;
}
.modal_start {
justify-content: flex-start;
}
.m_10 {
margin-right: 8px;
}
.modal_centered {
justify-content: center;
align-items: center;
}
.modal_width {
width: 40%;
}
@media (max-width: 1200px) {
.modal_width {
width: 60%;
}
}
@media (max-width: 968px) {
.modal_width {
width: 60%;
}
}
@media (max-width: 624px) {
.modal_width {
width: 80%;
}
.example-2 .btn-tertiary {
width: 80%;
}
}
.uploadPhoto {
width: 50%;
height: auto;
}
@media (max-width: 568px) {
.uploadPhoto {
width: 70%;
}
}
.upload__img {
width: 100%;
max-width: 100%;
height: auto;
object-fit: contain;
}
.modal__body {
display: flex;
flex-direction: column;
align-items: center;
}
.w_100 {
width: 100%;
}
.bg__image {
background: #f0f0f0;
}
.w_video {
width: 80%;
}
.btn_dots {
background: none;
border: none;
border-bottom: 1px solid #6c757d;
border-top: 1px solid #6c757d;
cursor: pointer;
outline: none;
text-align: left;
}
.btn_dots:last-child {
border-top: none;
}
.btn_dots:focus {
outline: none;
} | src/assets/css/style.css | @charset "UTF-8";
*,
*:after,
*:before {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-size: 15px;
}
html,
body {
height: 100vh;
overflow: hidden;
position: relative;
background: white;
color: black;
font-size: 15px;
font-family: 'Poppins', sans-serif;
width: 100%;
}
.button-9 {
backface-visibility: hidden;
background-color: #405cf5;
border-radius: 6px;
border-width: 0;
box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.1) 0 2px 5px 0,
rgba(0, 0, 0, 0.07) 0 1px 1px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
font-size: 100%;
height: 44px;
line-height: 1.15;
margin: 12px;
outline: none;
overflow: hidden;
padding: 0 25px;
position: relative;
text-align: center;
text-transform: none;
transition: all 0.2s, box-shadow 0.08s ease-in;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
/*width: 100%;*/
}
.button-9:disabled {
cursor: default;
}
.button-9:focus {
box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.2) 0 6px 15px 0,
rgba(0, 0, 0, 0.1) 0 2px 2px 0, rgba(50, 151, 211, 0.3) 0 0 0 4px;
}
#notion-app {
height: 100vh;
overflow: hidden;
position: relative;
background-color: transparent;
}
.notion-app--inner {
color: #37352f;
fill: currentcolor;
line-height: 1.5;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.notion-app--main {
width: 100%;
height: 100%;
position: relative;
display: flex;
background: white;
}
.notion__sidebar {
flex-grow: 0;
flex-shrink: 0;
height: 100%;
position: relative;
z-index: 99;
background: #f7f6f3;
transition: width 300ms ease-in 0s;
width: 240px;
}
@media (max-width: 768px) {
.notion__sidebar {
width: 0;
}
}
.notion__main {
display: flex;
flex-direction: column;
width: 100%;
overflow: hidden;
}
@media (max-width: 768px) {
.notion__main {
width: 100%;
}
}
.notion__topbar {
display: flex;
flex-direction: column;
width: 100%;
overflow: hidden;
z-index: 100;
background: white;
user-select: none;
}
.notion__container {
display: flex;
justify-content: space-between;
align-items: center;
overflow: hidden;
padding-left: 12px;
padding-right: 10px;
height: 45px;
}
.burger {
display: none;
position: relative;
outline: 0;
background: none;
border: none;
cursor: pointer;
}
.burger:focus {
outline: 0;
}
@media (max-width: 768px) {
.burger {
display: block;
flex-shrink: 0;
padding: 12px;
}
}
.burger__inner {
position: absolute;
top: 0;
left: 0;
will-change: opacity;
opacity: 1;
}
.burger__svg {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 3px;
}
.burger__svg svg {
width: 16px;
height: 16px;
display: block;
fill: rgba(55, 53, 47, 0.8);
flex-shrink: 0;
backface-visibility: hidden;
}
.notion__url {
display: flex;
align-items: center;
line-height: 1.2;
font-size: 14px;
height: 100%;
flex-grow: 0;
margin-right: 8px;
}
.url__item {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: inline-flex;
align-items: center;
flex-shrink: 1;
white-space: nowrap;
height: 24px;
border-radius: 3px;
font-size: inherit;
line-height: 1.2;
padding-left: 6px;
padding-right: 6px;
color: #37352f;
text-decoration: none;
}
.url__item:hover {
background: rgba(55, 53, 47, 0.08);
text-decoration: none;
}
.line__oblique {
margin-left: 2px;
margin-right: 2px;
color: rgba(55, 53, 47, 0.4);
}
.empty {
flex-grow: 1;
flex-shrink: 1;
}
.notion__action--buttons {
flex-grow: 0;
flex-shrink: 0;
display: flex;
align-items: center;
padding-right: 0;
padding-left: 12px;
justify-content: space-between;
z-index: 101;
height: 45px;
opacity: 1;
transition: opacity 700ms ease 0s, color 700ms ease 0s;
}
.notion__button {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
border: 0;
background: transparent;
display: inline-flex;
align-items: center;
flex-shrink: 0;
white-space: nowrap;
height: 28px;
border-radius: 3px;
font-size: 14px;
line-height: 1.2;
padding-left: 8px;
padding-right: 8px;
color: #37352f;
margin-right: 2px;
}
.notion__button:focus {
outline: 0;
}
.notion__button:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__button--active {
background: rgba(55, 53, 47, 0.08);
}
@media (max-width: 420px) {
.notion__button {
padding-right: 0;
padding-left: 0;
}
}
@media (max-width: 768px) {
.notion__sidebar--active {
position: absolute;
width: 240px;
height: 100%;
top: 0;
left: 0;
z-index: 200;
}
}
.deactivate__notion--sidebar {
width: 0;
}
.notion__list-item-active {
background: rgba(55, 53, 47, 0.08);
}
.profile {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
height: 45px;
width: 100%;
margin-bottom: 0;
padding: 2px 14px;
background: transparent;
border: 0;
outline: 0;
text-decoration: none;
z-index: 300;
}
.profile-logout-button {
border: none;
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
margin-left: 16px;
padding: 2px 14px;
background: none;
color: #37352f;
font-weight: 500;
}
.profile-logout-button:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.profile:focus {
outline: 0;
}
.profile:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.profile__icon {
flex-shrink: 0;
flex-grow: 0;
border-radius: 3px;
color: rgba(55, 53, 47, 0.6);
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
cursor: pointer;
}
.profile__icon--inner {
cursor: pointer;
user-select: none;
transition: background 20ms ease-in 0s;
display: flex;
align-items: center;
justify-content: center;
height: 25px;
width: 25px;
border-radius: 3px;
flex-shrink: 0;
margin-top: 1px;
color: #37352f;
}
.profile__block {
width: 100%;
cursor: pointer;
height: 100%;
border-radius: 5px;
padding: 5px;
background: #0c9eec;
color: white;
font-size: 14px;
}
.profile__name-block {
flex: 1 1 auto;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.profile__name {
display: flex;
cursor: pointer;
text-align: start;
flex-direction: column;
margin-right: 6px;
margin-top: 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #37352f;
font-weight: 500;
}
.notion__list {
padding-top: 14px;
padding-bottom: 20px;
z-index: 1;
margin-right: 0;
margin-bottom: 0;
height: 100%;
overflow: hidden auto;
/* ползунок скроллбара */
/* Стрелки */
}
.notion__list::-webkit-scrollbar {
width: 8px;
/* ширина для вертикального скролла */
background-color: #d0d0d0;
}
.notion__list::-webkit-scrollbar-thumb {
background-color: #9d9d9d;
}
.notion__list::-webkit-scrollbar-button:vertical:start:decrement {
display: none;
}
.notion__list::-webkit-scrollbar-button:vertical:end:increment {
display: none;
}
.notion__page--block {
display: block;
}
.notion__item {
display: block;
color: inherit;
text-decoration: none;
width: 100%;
}
.notion__item--inner {
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
width: 100%;
color: #37352f;
font-weight: 600;
}
.notion__item--inner:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__selectable--arrow {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
border-radius: 3px;
}
.notion__selectable--arrow:hover {
background: #a3a3a369;
}
.notion__list-item-file {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
flex-grow: 0;
width: 22px;
height: 18px;
margin-right: 4px;
position: relative;
}
.list__file {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 20px;
width: 20px;
border-radius: 3px;
flex-shrink: 0;
}
.notion__list-item-name {
flex: 1 1 auto;
white-space: nowrap;
min-width: 0px;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
align-items: center;
}
.notion__list--action-btn {
flex-grow: 0;
flex-shrink: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.notion__list--action-delete {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: transparent;
border: 0;
outline: 0;
}
.notion__list--action-delete:hover {
background: #a3a3a369;
}
.notion__list--action-delete:focus {
outline: 0;
}
.notion__list-outliner__private-empty {
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
padding: 2px 14px 2px 28px;
width: 100%;
flex: 1 1 auto;
}
.notion__list-outliner__private-empty p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: rgba(55, 53, 47, 0.4);
padding-left: 12px;
}
.add_notion-page {
user-select: none;
transition: background 20ms ease-in 0s;
cursor: pointer;
display: flex;
align-items: center;
min-height: 27px;
font-size: 14px;
padding: 2px 14px;
width: 100%;
color: rgba(55, 53, 47, 0.6);
outline: 0;
border: 0;
}
.add_notion-page:focus {
outline: 0;
}
.add_notion-page:hover {
background: rgba(55, 53, 47, 0.08);
}
.plus_add_notion {
flex-shrink: 0;
flex-grow: 0;
border-radius: 3px;
color: rgba(55, 53, 47, 0.6);
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
}
.add_page__text {
flex: 1 1 auto;
white-space: nowrap;
min-width: 0px;
overflow: hidden;
text-overflow: ellipsis;
text-align: start;
}
.notion__frame {
flex-grow: 0;
flex-shrink: 1;
display: flex;
flex-direction: column;
background: white;
z-index: 1;
height: calc(100vh - 45px);
max-height: 100%;
position: relative;
width: 100%;
}
@media (max-width: 768px) {
.notion__frame {
width: 100%;
}
}
.notion__scroll {
display: flex;
flex-direction: column;
z-index: 1;
flex-grow: 1;
position: relative;
overflow: auto;
/* ползунок скроллбара */
/* Стрелки */
}
.notion__scroll::-webkit-scrollbar {
width: 8px;
/* ширина для вертикального скролла */
background-color: #d0d0d0;
}
.notion__scroll::-webkit-scrollbar-thumb {
background-color: #9d9d9d;
}
.notion__scroll::-webkit-scrollbar-button:vertical:start:decrement {
display: none;
}
.notion__scroll::-webkit-scrollbar-button:vertical:end:increment {
display: none;
}
.notion__title--block {
padding: 100px 96px 0 96px;
}
@media (max-width: 568px) {
.notion__title--block {
padding: 100px 66px 0 66px;
}
}
.notion__title {
resize: none;
color: #37352f;
font-weight: 700;
line-height: 48px;
font-size: 40px;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
cursor: text;
display: flex;
align-items: center;
border: 0;
outline: 0;
height: auto;
width: 100%;
max-width: 100%;
white-space: pre-wrap;
word-break: break-word;
overflow: hidden;
min-height: 40px;
}
.notion__title:focus {
outline: 0;
}
.notion-page--content {
flex-shrink: 0;
max-width: 100%;
display: flex;
align-items: flex-start;
flex-direction: column;
font-size: 16px;
line-height: 1.5;
width: 100%;
padding: 0 56px;
margin-top: 40px;
}
@media (max-width: 568px) {
.notion-page--content {
padding: 0 26px;
}
}
.notion__block {
margin-top: 2px;
margin-right: 3px;
width: 100%;
margin-bottom: 1px;
display: flex;
position: relative;
}
.notion__block:hover .block__action--btns {
opacity: 1;
}
.text__block {
max-width: 100%;
width: 100%;
white-space: pre-wrap;
word-break: break-word;
caret-color: #37352f;
padding: 3px 2px;
cursor: pointer;
resize: none;
border: 0;
outline: 0;
}
.text__block:focus {
outline: 0;
}
.block__action--btns {
flex-shrink: 0;
opacity: 0;
flex-grow: 0;
display: flex;
align-items: center;
background: transparent;
height: 30px;
position: relative;
transition: opacity 0.2s linear;
}
.add_btn {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: none;
border: 0;
outline: 0;
cursor: pointer;
}
.add_btn:focus {
outline: 0;
}
.add_btn:hover {
background: rgba(55, 53, 47, 0.08);
}
.dots_btn {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: none;
border: 0;
cursor: pointer;
outline: 0;
}
.dots_btn:focus {
outline: 0;
}
.dots_btn:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__empty-block--image {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
background: #f2f1ee;
border-radius: 3px;
transition: background 20ms ease-in 0s;
}
.notion__empty-block--image:hover {
background: rgba(55, 53, 47, 0.08);
}
.notion__empty-block--image-inner {
font-size: 14px;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial,
sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
color: rgba(55, 53, 47, 0.6);
border-radius: 3px;
padding: 12px 36px 12px 12px;
display: flex;
align-items: center;
text-align: left;
width: 100%;
overflow: hidden;
}
.empty__block--text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.button_none {
cursor: pointer;
outline: 0;
border: 0;
}
.button_none:focus {
outline: 0;
}
.notion__image--block {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
position: relative;
overflow: hidden;
flex-grow: 1;
}
.notion__image--block--inner {
width: 80%;
height: 80%;
}
.image__block {
display: block;
object-fit: cover;
border-radius: 1px;
width: 100%;
pointer-events: auto;
}
.notion__block--page {
display: flex;
cursor: pointer;
width: 100%;
color: #37352f;
max-width: 819px;
text-decoration: none;
}
.notion__block--page:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.notion__block--page-inner {
flex: 1 1 0;
min-width: 1px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 2px;
display: flex;
align-items: center;
}
.svg__icon-file {
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
margin-right: 4px;
border-radius: 3px;
flex-shrink: 0;
}
.block__page-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 500;
line-height: 1.3;
border-bottom: 1px solid rgba(55, 53, 47, 0.16);
}
.notion__block--video {
width: 100%;
max-width: 819px;
align-self: center;
margin-top: 4px;
margin-bottom: 4px;
}
@media (max-width: 768px) {
.notion__block--video {
max-width: 568px;
}
}
@media (max-width: 568px) {
.notion__block--video {
max-width: 368px;
}
}
@media (max-width: 500px) {
.notion__block--video {
max-width: 268px;
}
}
.notion__block--video-inner {
display: flex;
width: 100%;
background-color: #f2f1ee;
flex-grow: 1;
min-height: 100px;
height: 0px;
position: relative;
padding-bottom: 56.2061%;
}
.videoBlock {
position: absolute;
max-width: 819px;
width: 100%;
height: 100%;
border-radius: 1px;
}
@media (max-width: 768px) {
.videoBlock {
max-width: 568px;
}
}
@media (max-width: 568px) {
.videoBlock {
max-width: 368px;
}
}
@media (max-width: 500px) {
.videoBlock {
max-width: 268px;
}
}
.popups__inner {
position: absolute;
top: 0;
left: 0;
background: #dfdfdf7a;
align-items: center;
justify-content: center;
width: 100%;
display: none;
height: 100%;
z-index: 1000;
}
.popups_active {
display: flex !important;
}
.popup__type {
display: none;
flex-direction: column;
width: 324px;
min-width: 180px;
max-width: calc(100vw - 24px);
height: 100%;
max-height: 40vh;
background: white;
border-radius: 3px;
position: relative;
box-shadow: rgba(15, 15, 15, 0.5) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px,
rgba(15, 15, 15, 0.2) 0px 9px 24px;
overflow: hidden;
z-index: 1000;
}
@media (max-width: 424px) {
.popup__type {
width: 280px;
}
}
.popup__type-inner {
flex-grow: 1;
z-index: 1;
overflow: hidden auto;
margin-right: 0px;
margin-bottom: 0px;
}
.popup__type-header {
display: flex;
padding-left: 14px;
padding-right: 14px;
margin-top: 6px;
margin-bottom: 8px;
color: rgba(55, 53, 47, 0.6);
font-size: 11px;
font-weight: 500;
line-height: 120%;
user-select: none;
text-transform: uppercase;
}
.popup__type-header h4 {
align-self: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.type__blocks {
width: 100%;
display: flex;
flex-direction: column;
}
.type__item {
display: flex;
align-items: center;
line-height: 120%;
width: 100%;
user-select: none;
min-height: 45px;
font-size: 14px;
padding-top: 4px;
padding-bottom: 4px;
text-decoration: none;
}
.type__item:hover {
text-decoration: none;
background: rgba(55, 53, 47, 0.08);
}
.type__item-icon {
display: flex;
align-items: center;
justify-content: center;
margin-left: 14px;
margin-top: 1px;
align-self: flex-start;
}
.type__img {
display: block;
object-fit: cover;
border-radius: 3px;
background: white;
width: 46px;
height: 46px;
flex-grow: 0;
flex-shrink: 0;
box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px;
}
.type__item-name {
margin-left: 8px;
margin-right: 14px;
min-width: 0px;
flex: 1 1 auto;
font-size: 18px;
color: #4f5050;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.popup__type--active {
display: flex;
}
.loader-container {
position: relative;
display: contents;
width: 250px;
height: 250px;
}
.loader-container .loader {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.wave .loader {
width: 100px;
height: 100px;
}
.wave .loader > div {
float: left;
margin: 40% 2% 0 0;
width: 4%;
height: 16%;
background-color: #0c9eec;
animation: wave 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) infinite;
}
.wave .loader .line-1 {
margin-left: 30%;
}
.wave .loader .line-1 {
animation-delay: 0.1s;
}
.wave .loader .line-2 {
animation-delay: 0.2s;
}
.wave .loader .line-3 {
animation-delay: 0.3s;
}
.wave .loader .line-4 {
animation-delay: 0.4s;
}
.wave .loader .line-5 {
animation-delay: 0.5s;
}
@keyframes wave {
0%,
100% {
transform: scaleY(1);
}
50% {
transform: scaleY(2);
}
}
.arc-rotate-double .loader {
width: 80px;
height: 80px;
}
.arc-rotate-double .loader > div {
position: absolute;
border: 2px solid;
border-color: transparent #7e878d;
border-radius: 50%;
animation: load 1s infinite ease-in-out;
}
.arc-rotate-double .loader .arc-1 {
margin: 32% 0 0 32%;
width: 36%;
height: 36%;
}
.arc-rotate-double .loader .arc-2 {
margin: 40% 0 0 40%;
width: 20%;
height: 20%;
animation-direction: reverse;
animation-delay: -0.5s;
}
@keyframes load {
0% {
transform: rotate(0) scale(1);
}
50% {
transform: rotate(180deg) scale(0.6);
}
100% {
transform: rotate(360deg) scale(1);
}
}
.loader__container-note {
position: relative;
width: 100%;
height: 50px;
display: block;
margin-bottom: 10px;
}
.loader__container-note .loader {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.notion__text--block--inner {
width: 100%;
height: auto;
max-width: 100%;
white-space: pre-wrap;
word-break: break-word;
}
.input_link--style {
border-radius: 2px;
padding: 6px 5px;
background: rgba(55, 53, 47, 0.15);
border: darkgrey 1px solid;
width: 100%;
outline: none;
}
.input_link--style:focus {
outline: none;
}
.btn_link {
cursor: pointer;
outline: none !important;
background: none !important;
border: none;
}
.btn-link--active {
border-bottom: 1px solid #6c757d;
}
.btn_link:focus {
outline: none !important;
}
.modal_background {
background: #dfdfdf7a;
}
.modal-footer-2-btns {
display: flex;
flex-wrap: wrap;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
padding: 0.75rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
.btn-link {
padding: 6px 15px;
background: #52aeff;
border-radius: 6px;
border: none;
color: white;
font-size: 15px;
cursor: pointer;
outline: none;
}
.btn-link:focus {
outline: none;
}
.example-2 {
padding: 10px 15px;
}
.example-2 .btn-tertiary {
color: white;
padding: 0;
line-height: 30px;
width: 60%;
text-align: center;
margin: auto;
display: block;
background-color: dodgerblue;
}
.example-2 .input-file {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.example-2 .input-file + .js-labelFile {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0 10px;
cursor: pointer;
}
.modal_start {
justify-content: flex-start;
}
.m_10 {
margin-right: 8px;
}
.modal_centered {
justify-content: center;
align-items: center;
}
.modal_width {
width: 40%;
}
@media (max-width: 1200px) {
.modal_width {
width: 60%;
}
}
@media (max-width: 968px) {
.modal_width {
width: 60%;
}
}
@media (max-width: 624px) {
.modal_width {
width: 80%;
}
.example-2 .btn-tertiary {
width: 80%;
}
}
.uploadPhoto {
width: 50%;
height: auto;
}
@media (max-width: 568px) {
.uploadPhoto {
width: 70%;
}
}
.upload__img {
width: 100%;
max-width: 100%;
height: auto;
object-fit: contain;
}
.modal__body {
display: flex;
flex-direction: column;
align-items: center;
}
.w_100 {
width: 100%;
}
.bg__image {
background: #f0f0f0;
}
.w_video {
width: 80%;
}
.btn_dots {
background: none;
border: none;
border-bottom: 1px solid #6c757d;
border-top: 1px solid #6c757d;
cursor: pointer;
outline: none;
text-align: left;
}
.btn_dots:last-child {
border-top: none;
}
.btn_dots:focus {
outline: none;
} | 0.489015 | 0.08374 |
body{
color: rgb(78, 91, 104);
background-color: rgb(240, 241, 243);
}
.container {
width: 100%;
margin-top: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
background: #fff;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
a{
color: rgb(106,106,247);
text-decoration: none;
}
a:hover{
color: rgba(106,106,247, 0.7);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.docs.nav {
width: 100%;
padding-left: 3%;
padding-right: 3%;
}
/*****************************************************************
*
* Form
*
*****************************************************************/
h1{
margin-top: 3%;
margin-left: 20%;
}
form{
padding: 1% 5% 5% 20%;
opacity: 0.9;
}
.heading h1{
font-family: 'Helvetica Neue', 'Open Sans';
color: #686666 ;
opacity: 0.7;
display: block;
padding: 0 0 0.2em 0.1em;
font-size: 2.7em;
}
input{
font: normal normal normal 11px/normal 'Lucida Grande';
text-rendering: auto;
color: initial;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
margin: 0 0 3% 0;
}
input{
-webkit-writing-mode: horizontal-tb;
}
form .field input[type=text], form .field input[type=email], form .field input[type=password], form .field input[type=number], form .field select, form .field textarea {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 3px;
box-shadow: inset 0 0 0 1px rgba(43, 50, 57, 0.21),inset 0 5px 3px -2px rgba(43, 50, 57, 0.04),0 0 4px 1px rgba(69, 140, 207, 0);
-webkit-appearance: none;
display: inline-block;
color: rgb(78, 91, 104);
padding: 10px 10px;
width: 66%;
font-size: 16px;
line-height: 20px;
border: 0;
outline: 1px solid #fff;
-webkit-transition: box-shadow 100ms ease;
transition: box-shadow 100ms ease;
}
.field input[type=text], .unauth-wrapper .field input[type=email], .unauth-wrapper .field input[type=password], .unauth-wrapper .field input[type=number], .unauth-wrapper .field select, .unauth-wrapper .field textarea {
padding: 15px 13px;
font-size: 16px;
line-height: 20px;
}
form .split-field .field:first-child input[type=text], form .split-field .field:first-child input[type=email], form .split-field .field:first-child input[type=password] {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.row1{
width: 100%;
margin: 0;
line-height: 2;
}
.row2{
width: 100%;
margin: 0;
line-height: 2;
}
.edit{
border: none;
color: inherit;
background: none;
cursor: pointer;
display: inline-block;
text-transform: uppercase;
font-family: inherit;
letter-spacing: 1px;
font-weight: 700;
font-size: 1.1em;
position: relative;
margin: 3% 5% 0 0;
padding: 0;
}
.edit:hover{
border-bottom: 7px solid rgba(78, 91, 104, 0.7);
}
.hidden{
visibility: hidden !important;
display: block !important;
}
.show{
visibility: visible !important;
display: block !important;
} | M/stylesheet/profile.css | body{
color: rgb(78, 91, 104);
background-color: rgb(240, 241, 243);
}
.container {
width: 100%;
margin-top: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
background: #fff;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
a{
color: rgb(106,106,247);
text-decoration: none;
}
a:hover{
color: rgba(106,106,247, 0.7);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.docs.nav {
width: 100%;
padding-left: 3%;
padding-right: 3%;
}
/*****************************************************************
*
* Form
*
*****************************************************************/
h1{
margin-top: 3%;
margin-left: 20%;
}
form{
padding: 1% 5% 5% 20%;
opacity: 0.9;
}
.heading h1{
font-family: 'Helvetica Neue', 'Open Sans';
color: #686666 ;
opacity: 0.7;
display: block;
padding: 0 0 0.2em 0.1em;
font-size: 2.7em;
}
input{
font: normal normal normal 11px/normal 'Lucida Grande';
text-rendering: auto;
color: initial;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
margin: 0 0 3% 0;
}
input{
-webkit-writing-mode: horizontal-tb;
}
form .field input[type=text], form .field input[type=email], form .field input[type=password], form .field input[type=number], form .field select, form .field textarea {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 3px;
box-shadow: inset 0 0 0 1px rgba(43, 50, 57, 0.21),inset 0 5px 3px -2px rgba(43, 50, 57, 0.04),0 0 4px 1px rgba(69, 140, 207, 0);
-webkit-appearance: none;
display: inline-block;
color: rgb(78, 91, 104);
padding: 10px 10px;
width: 66%;
font-size: 16px;
line-height: 20px;
border: 0;
outline: 1px solid #fff;
-webkit-transition: box-shadow 100ms ease;
transition: box-shadow 100ms ease;
}
.field input[type=text], .unauth-wrapper .field input[type=email], .unauth-wrapper .field input[type=password], .unauth-wrapper .field input[type=number], .unauth-wrapper .field select, .unauth-wrapper .field textarea {
padding: 15px 13px;
font-size: 16px;
line-height: 20px;
}
form .split-field .field:first-child input[type=text], form .split-field .field:first-child input[type=email], form .split-field .field:first-child input[type=password] {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.row1{
width: 100%;
margin: 0;
line-height: 2;
}
.row2{
width: 100%;
margin: 0;
line-height: 2;
}
.edit{
border: none;
color: inherit;
background: none;
cursor: pointer;
display: inline-block;
text-transform: uppercase;
font-family: inherit;
letter-spacing: 1px;
font-weight: 700;
font-size: 1.1em;
position: relative;
margin: 3% 5% 0 0;
padding: 0;
}
.edit:hover{
border-bottom: 7px solid rgba(78, 91, 104, 0.7);
}
.hidden{
visibility: hidden !important;
display: block !important;
}
.show{
visibility: visible !important;
display: block !important;
} | 0.415966 | 0.078678 |
div .form
{
position:static; background:url(images/fondoDiv2.png) no-repeat;
width:auto; height:auto;
-moz-border-radius: 10px; -webkit-border-radius: 10px;
margin-top:auto; margin-left:auto; margin-right:auto;
}
/*
.titulo
{
color:Black !important;
font-family:arial;
font-size:20px;
font-weight:bold;
}
.titulo2
{
color:Black !important;
font-family:arial;
font-size:16px;
font-weight:bold;
}
*/
.form-label{
width:250px !important;
}
.form-label-left{
width:250px !important;
}
.form-line{
padding:10px;
}
.form-label-right{
width:250px !important;
}
.form-all{
width:750px;
color:Black !important;
font-family:arial;
font-size:16px;
padding:20px;
}
/*
.more{
font-family:arial;
font-size:22px;
}
*/
.formulario{
width:auto;
height: auto;
/*height:auto;*/
overflow: hidden;
position: relative; background:#FFF;
margin-left:50px; margin-right:50px;
/*border:2px solid;
border:2px solid #938c8d;
border-radius:5px;
/*position: relative; background:#151515;
background-image:url(fraturedahove2.png);
-webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
-moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
box-shadow: 0px 1px 5px 0px #4a4a4a;
*/
}
/*demo page css*/
/* body{ font: 55.5% "Trebuchet MS", sans-serif; margin: 50px;}
.demoHeaders { margin-top: 2em; text-align:center;}
#dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;}
#dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;}
ul#icons {margin: 0; padding: 0;}
ul#icons li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;}
ul#icons span.ui-icon {float: left; margin: 0 4px;}*/
/************** FIN *********************/
/************** VENTANAS FLOTANTES *********************/
.oculto {display:none;}
.mostrar{display:block;};
.visibleInline { display:inline;}
.alineacionDerecha {text-align:right; padding-right:1em; }
.alineacionIzquierda {text-align:letf; padding-right:1em; }
#divBloqueador {position:absolute; width:100%; height:370%; background:#000000; opacity:0.6; display:none; z-index:50; top:0; left:0;}
#mostrarDiv, #mostrarDiv1
{
position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:auto; overflow-x:hidden; overflow-y:scroll; margin-top:-170px; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450;
-webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
-moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
box-shadow: 0px 1px 5px 0px #4a4a4a;
}
#mostrarDiv3{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:605px; overflow-x:hidden; overflow-y:scroll; margin-top:-280px; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv4{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:560px; margin-top:-280px; overflow-y:scroll; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv2{ position:fixed; background:url(images/fondoDiv2.png); top:50%; left:50%; width:auto; height:560px; margin-top:-100px; overflow-y:scroll; margin-left:-310px; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv5{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:27%; width:auto; height:560px; margin-top:-280px; overflow-y:scroll; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
/********************MENU******************************/
.notification {
position: relative;
margin: 0 0 15px 0;
padding: 0;
border: 1px solid;
background-position: 10px 11px !important;
background-repeat: no-repeat !important;
font-size: 13px;
width: 99.8%;
}
.attention {
background: #fffbcc url('images/icons/exclamation.png') 10px 11px no-repeat;
border-color: #e6db55;
color: #666452;
}
.information {
background: #dbe3ff url('images/icons/information.png');
border-color: #a2b4ee;
color: #585b66;
}
.success {
background: #d5ffce url('images/icons/tick_circle.png');
border-color: #9adf8f;
color: #556652;
}
.error {
background: #ffcece url('images/icons/cross_circle.png');
border-color: #df8f8f;
color: #665252;
}
.notification div {
display:block;
font-style:normal;
padding: 10px 10px 10px 36px;
line-height: 1.5em;
}
.notification .close {
color:#990000;
font-size:9px;
position:absolute;
right:5px;
top:5px;
}
/* Notification for form inputs */
.input-notification {
background-position: left 2px;
background-repeat: no-repeat;
padding: 2px 0 2px 22px;
background-color: transparent;
margin: 0 0 0 5px;
}
.button,
#main-content table tfoot td .bulk-actions select,
.pagination a.number,
form input.text-input,
form textarea,
form .wysiwyg,
form select,
.dp-popup {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.content-box,
.content-box-header,
ul.content-box-tabs li a.current,
.shortcut-button,
.notification {
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.content-box-header {
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.closed-box .content-box-header {
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
ul.content-box-tabs li a.current {
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.shortcut-button span {
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
}
div.wysiwyg ul.panel li a { opacity: 0.6; }
div.wysiwyg ul.panel li a:hover, div.wysiwyg ul.panel li a.active { opacity: 0.99; } | public/plantillas/02/css/sistema_css.css | div .form
{
position:static; background:url(images/fondoDiv2.png) no-repeat;
width:auto; height:auto;
-moz-border-radius: 10px; -webkit-border-radius: 10px;
margin-top:auto; margin-left:auto; margin-right:auto;
}
/*
.titulo
{
color:Black !important;
font-family:arial;
font-size:20px;
font-weight:bold;
}
.titulo2
{
color:Black !important;
font-family:arial;
font-size:16px;
font-weight:bold;
}
*/
.form-label{
width:250px !important;
}
.form-label-left{
width:250px !important;
}
.form-line{
padding:10px;
}
.form-label-right{
width:250px !important;
}
.form-all{
width:750px;
color:Black !important;
font-family:arial;
font-size:16px;
padding:20px;
}
/*
.more{
font-family:arial;
font-size:22px;
}
*/
.formulario{
width:auto;
height: auto;
/*height:auto;*/
overflow: hidden;
position: relative; background:#FFF;
margin-left:50px; margin-right:50px;
/*border:2px solid;
border:2px solid #938c8d;
border-radius:5px;
/*position: relative; background:#151515;
background-image:url(fraturedahove2.png);
-webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
-moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
box-shadow: 0px 1px 5px 0px #4a4a4a;
*/
}
/*demo page css*/
/* body{ font: 55.5% "Trebuchet MS", sans-serif; margin: 50px;}
.demoHeaders { margin-top: 2em; text-align:center;}
#dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;}
#dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;}
ul#icons {margin: 0; padding: 0;}
ul#icons li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;}
ul#icons span.ui-icon {float: left; margin: 0 4px;}*/
/************** FIN *********************/
/************** VENTANAS FLOTANTES *********************/
.oculto {display:none;}
.mostrar{display:block;};
.visibleInline { display:inline;}
.alineacionDerecha {text-align:right; padding-right:1em; }
.alineacionIzquierda {text-align:letf; padding-right:1em; }
#divBloqueador {position:absolute; width:100%; height:370%; background:#000000; opacity:0.6; display:none; z-index:50; top:0; left:0;}
#mostrarDiv, #mostrarDiv1
{
position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:auto; overflow-x:hidden; overflow-y:scroll; margin-top:-170px; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450;
-webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
-moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
box-shadow: 0px 1px 5px 0px #4a4a4a;
}
#mostrarDiv3{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:605px; overflow-x:hidden; overflow-y:scroll; margin-top:-280px; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv4{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:15%; width:auto; height:560px; margin-top:-280px; overflow-y:scroll; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv2{ position:fixed; background:url(images/fondoDiv2.png); top:50%; left:50%; width:auto; height:560px; margin-top:-100px; overflow-y:scroll; margin-left:-310px; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
#mostrarDiv5{ position:fixed; background:url(images/fondoDiv2.png); top:45%; left:27%; width:auto; height:560px; margin-top:-280px; overflow-y:scroll; margin-left:auto; margin-right:auto; padding:0.5em; /*border:10px solid #CCCCCC;*/ -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:450; }
/********************MENU******************************/
.notification {
position: relative;
margin: 0 0 15px 0;
padding: 0;
border: 1px solid;
background-position: 10px 11px !important;
background-repeat: no-repeat !important;
font-size: 13px;
width: 99.8%;
}
.attention {
background: #fffbcc url('images/icons/exclamation.png') 10px 11px no-repeat;
border-color: #e6db55;
color: #666452;
}
.information {
background: #dbe3ff url('images/icons/information.png');
border-color: #a2b4ee;
color: #585b66;
}
.success {
background: #d5ffce url('images/icons/tick_circle.png');
border-color: #9adf8f;
color: #556652;
}
.error {
background: #ffcece url('images/icons/cross_circle.png');
border-color: #df8f8f;
color: #665252;
}
.notification div {
display:block;
font-style:normal;
padding: 10px 10px 10px 36px;
line-height: 1.5em;
}
.notification .close {
color:#990000;
font-size:9px;
position:absolute;
right:5px;
top:5px;
}
/* Notification for form inputs */
.input-notification {
background-position: left 2px;
background-repeat: no-repeat;
padding: 2px 0 2px 22px;
background-color: transparent;
margin: 0 0 0 5px;
}
.button,
#main-content table tfoot td .bulk-actions select,
.pagination a.number,
form input.text-input,
form textarea,
form .wysiwyg,
form select,
.dp-popup {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.content-box,
.content-box-header,
ul.content-box-tabs li a.current,
.shortcut-button,
.notification {
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.content-box-header {
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.closed-box .content-box-header {
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
ul.content-box-tabs li a.current {
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.shortcut-button span {
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
}
div.wysiwyg ul.panel li a { opacity: 0.6; }
div.wysiwyg ul.panel li a:hover, div.wysiwyg ul.panel li a.active { opacity: 0.99; } | 0.22414 | 0.124319 |
@import '../variables.css';
.card {
display: flex;
flex-direction: column;
width: 100%;
max-width: 300px;
background-color: var(--darkBlue);
border-radius: 1rem;
}
@media (min-width: 576px) and (max-width: 1139.98px) {
.card {
margin-top: 25rem !important;
max-width: 38rem !important;
}
.user_info {
display: flex;
}
.user_info__avatar {
padding-right: 3rem;
margin-top: 2rem;
}
.user_info__name {
display: flex;
align-items: center;
}
.user_info__name span {
padding-right: 3rem;
}
.user_info__name h2 {
padding-left: 1rem;
}
.times {
flex-direction: row !important;
align-items: center !important;
justify-content: center;
padding: 2rem !important;
margin-top: 1rem;
margin-bottom: -1rem;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
}
@media only screen and (max-width: 575.98px) {
.card {
margin-top: 25rem !important;
max-width: 22rem !important;
}
.user_info {
display: flex;
}
.user_info__avatar {
padding-right: 1rem;
padding-bottom: 0!important;
}
.user_info__name {
display: flex;
align-items: center;
}
.times {
flex-direction: row !important;
align-items: center !important;
justify-content: center;
padding: 1rem !important;
margin-top: 1rem;
margin-bottom: -1rem;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
.user_info__name span {
padding-right: 1rem;
}
.user_info__name h2 {
font-size: 2rem!important;
width: 8rem!important;
}
.user_info__avatar img {
width: 72px!important;
height: 72px!important;
}
}
.user_info {
background-color: var(--blue);
padding: 2rem;
border-radius: 1rem;
z-index: 2;
}
.user_info__name span {
color: var(--paleBlue);
}
.user_info__avatar {
padding-bottom: 2rem;
}
.user_info__avatar img {
width: 96px;
height: 96px;
border-radius: 50%;
border: 2px solid #fff;
}
.times {
display: flex;
padding: 1.5rem 2rem;
flex-direction: column;
align-items: flex-start;
background-color: var(--darkBlue);
z-index: 1;
position: relative;
top: -10px;
ransition-property: color;
transition-duration: 0.3s;
/* For Safari browser */
-webkit-transition-property: color;
-webkit-transition-duration: 0.3s;
}
.times button{
margin-bottom: 1rem;
font-size: 1rem;
}
.times button:hover{
color: white!important;
} | src/styles/components/card.css | @import '../variables.css';
.card {
display: flex;
flex-direction: column;
width: 100%;
max-width: 300px;
background-color: var(--darkBlue);
border-radius: 1rem;
}
@media (min-width: 576px) and (max-width: 1139.98px) {
.card {
margin-top: 25rem !important;
max-width: 38rem !important;
}
.user_info {
display: flex;
}
.user_info__avatar {
padding-right: 3rem;
margin-top: 2rem;
}
.user_info__name {
display: flex;
align-items: center;
}
.user_info__name span {
padding-right: 3rem;
}
.user_info__name h2 {
padding-left: 1rem;
}
.times {
flex-direction: row !important;
align-items: center !important;
justify-content: center;
padding: 2rem !important;
margin-top: 1rem;
margin-bottom: -1rem;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
}
@media only screen and (max-width: 575.98px) {
.card {
margin-top: 25rem !important;
max-width: 22rem !important;
}
.user_info {
display: flex;
}
.user_info__avatar {
padding-right: 1rem;
padding-bottom: 0!important;
}
.user_info__name {
display: flex;
align-items: center;
}
.times {
flex-direction: row !important;
align-items: center !important;
justify-content: center;
padding: 1rem !important;
margin-top: 1rem;
margin-bottom: -1rem;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
.user_info__name span {
padding-right: 1rem;
}
.user_info__name h2 {
font-size: 2rem!important;
width: 8rem!important;
}
.user_info__avatar img {
width: 72px!important;
height: 72px!important;
}
}
.user_info {
background-color: var(--blue);
padding: 2rem;
border-radius: 1rem;
z-index: 2;
}
.user_info__name span {
color: var(--paleBlue);
}
.user_info__avatar {
padding-bottom: 2rem;
}
.user_info__avatar img {
width: 96px;
height: 96px;
border-radius: 50%;
border: 2px solid #fff;
}
.times {
display: flex;
padding: 1.5rem 2rem;
flex-direction: column;
align-items: flex-start;
background-color: var(--darkBlue);
z-index: 1;
position: relative;
top: -10px;
ransition-property: color;
transition-duration: 0.3s;
/* For Safari browser */
-webkit-transition-property: color;
-webkit-transition-duration: 0.3s;
}
.times button{
margin-bottom: 1rem;
font-size: 1rem;
}
.times button:hover{
color: white!important;
} | 0.431584 | 0.083031 |
.logo a img{
width: 250px;
}
.breakpoint-off .classynav ul li .dropdown.ds_sukien{
width: 810px;
left: -250%;
}
.breakpoint-off .classynav ul li .dropdown.ds_sukien li{
box-sizing: border-box;
min-width: 265px;
display: inline-block;
margin-left: 0;
margin-right: 0;
}
.breakpoint-off .classynav ul li .single-mega.ds_tinh li{
box-sizing: border-box;
min-width: 150px;
display: inline-block;
margin-left: 0;
margin-right: 0;
}
.breakpoint-on .classynav ul li.has-down>a::after, .breakpoint-on .classynav ul li.megamenu-item>a::after{
top: 30%;
}
/**
Custom form login
*/
.form-dang-nhap {
margin: 100px 0 150px 0;
}
.form-dang-nhap .title-login {
font-size: 140%;
color: #fff;
background-color: #ee002d;
border-color: #ee002d;
}
.form-dang-nhap .form-control:focus{
color: #495057;
background-color: #fff;
border-color: #ee002d;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(249, 0, 12, 0.92);
}
.form-dang-nhap button{
background-color: #ee002d;
color: #fff;
}
.dang-nhap-binh-luan h4{
transition: 0.4s;
}
.dang-nhap-binh-luan h4:hover{
color: #ee002d;
}
/*CUSTOM FORM TÌM KIẾM*/
#search{
padding: 11px 0 11px 5px;
border-radius: 5px;
background: #ee002d;
color: white;
font-size: 12px;
border: 1px solid;
font-style: italic;
transition: 0.3s;
}
#search:hover{
cursor: pointer;
}
#search option{
font-size: 14px;
margin: 15px;
}
.header-area .top-header-area .login-search-area .search-form form{
width: 300px;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 180px;
float: right;
}
/**
Custom panigaton
*/
nav.Panigation{
margin-top: 50px;
}
nav.Panigation a,nav.Panigation strong{
color: #000;
line-height: 38px;
position: relative;
width: 38px;
height: 38px;
font-size: 120%;
text-align: center;
display: inline-block;
}
#banner{
float: right;
width: 100%;
position: absolute;
transition: 0.2s;
}
/*#banner .banner{
position: absolute;
top:50%;
}*/
nav.Panigation strong, nav.Panigation a:hover{
background-color: #152535;
color: #fff;
}
small #error.form-text.text-muted{
color: red!important;
}
@media only screen and (max-width:1220px){
}
@media only screen and (max-width:991px){
.breakpoint-on .classynav ul li .megamenu li{
width: 49%;
display: inline-block;
}
#banner{
display: none;
}
}
@media only screen and (max-width:767px){
.header-area .top-header-area .login-search-area .search-form form{
width: 290px;
}
}
@media only screen and (max-width:480px){
.header-area .top-header-area .login-search-area .search-form form{
width: 235px;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 130px;
float: right;
}
.footer-area .footer-widget-area .list.m-3 li a h6{
color: #fff;
font-size: 100%;
}
}
@media only screen and (max-width:360px){
.header-area .top-header-area .login-search-area .search-form form{
width: 100%;
}
.header-area .top-header-area .login-search-area .search-form form #search{
display: none;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 100%;
float: left;
}
} | public/site/customsite.css | .logo a img{
width: 250px;
}
.breakpoint-off .classynav ul li .dropdown.ds_sukien{
width: 810px;
left: -250%;
}
.breakpoint-off .classynav ul li .dropdown.ds_sukien li{
box-sizing: border-box;
min-width: 265px;
display: inline-block;
margin-left: 0;
margin-right: 0;
}
.breakpoint-off .classynav ul li .single-mega.ds_tinh li{
box-sizing: border-box;
min-width: 150px;
display: inline-block;
margin-left: 0;
margin-right: 0;
}
.breakpoint-on .classynav ul li.has-down>a::after, .breakpoint-on .classynav ul li.megamenu-item>a::after{
top: 30%;
}
/**
Custom form login
*/
.form-dang-nhap {
margin: 100px 0 150px 0;
}
.form-dang-nhap .title-login {
font-size: 140%;
color: #fff;
background-color: #ee002d;
border-color: #ee002d;
}
.form-dang-nhap .form-control:focus{
color: #495057;
background-color: #fff;
border-color: #ee002d;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(249, 0, 12, 0.92);
}
.form-dang-nhap button{
background-color: #ee002d;
color: #fff;
}
.dang-nhap-binh-luan h4{
transition: 0.4s;
}
.dang-nhap-binh-luan h4:hover{
color: #ee002d;
}
/*CUSTOM FORM TÌM KIẾM*/
#search{
padding: 11px 0 11px 5px;
border-radius: 5px;
background: #ee002d;
color: white;
font-size: 12px;
border: 1px solid;
font-style: italic;
transition: 0.3s;
}
#search:hover{
cursor: pointer;
}
#search option{
font-size: 14px;
margin: 15px;
}
.header-area .top-header-area .login-search-area .search-form form{
width: 300px;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 180px;
float: right;
}
/**
Custom panigaton
*/
nav.Panigation{
margin-top: 50px;
}
nav.Panigation a,nav.Panigation strong{
color: #000;
line-height: 38px;
position: relative;
width: 38px;
height: 38px;
font-size: 120%;
text-align: center;
display: inline-block;
}
#banner{
float: right;
width: 100%;
position: absolute;
transition: 0.2s;
}
/*#banner .banner{
position: absolute;
top:50%;
}*/
nav.Panigation strong, nav.Panigation a:hover{
background-color: #152535;
color: #fff;
}
small #error.form-text.text-muted{
color: red!important;
}
@media only screen and (max-width:1220px){
}
@media only screen and (max-width:991px){
.breakpoint-on .classynav ul li .megamenu li{
width: 49%;
display: inline-block;
}
#banner{
display: none;
}
}
@media only screen and (max-width:767px){
.header-area .top-header-area .login-search-area .search-form form{
width: 290px;
}
}
@media only screen and (max-width:480px){
.header-area .top-header-area .login-search-area .search-form form{
width: 235px;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 130px;
float: right;
}
.footer-area .footer-widget-area .list.m-3 li a h6{
color: #fff;
font-size: 100%;
}
}
@media only screen and (max-width:360px){
.header-area .top-header-area .login-search-area .search-form form{
width: 100%;
}
.header-area .top-header-area .login-search-area .search-form form #search{
display: none;
}
.header-area .top-header-area .login-search-area .search-form form input[type="search"]{
width: 100%;
float: left;
}
} | 0.289271 | 0.118793 |
:root{
--primary-color-1: hsl(300, 43%, 22%);
--primary-color-2: hsl(333, 80%, 67%);
--neutral-1: hsl(303, 10%, 53%);
--neutral-2: hsl(300, 24%, 96%);
--neutral-3: hsl(0, 0%, 100%);
--font-family:'Spartan', sans-serif;
--font-weight-1:400;
--font-weight-2:500;
--font-weight-3:700;
}
*,*::before,*::after{
box-sizing: border-box;
margin-top: 0;
}
body{
font-size: 15px;
background-image: url('./images/bg-pattern-top-mobile.svg');
background-repeat: no-repeat;
}
.container{
padding: 4em 1.5em;
font-family: var(--font-family);
}
.text{
text-align: center;
}
.title-text{
font-size: 2em;
color: var(--primary-color-1);
font-weight: var(--font-weight-3);
margin: .5em;
}
.main-para{
font-size: 0.856em;
color: var(--neutral-1);
font-weight: var(--font-weight-2);
line-height: 1.7em;
margin-bottom: 2em;
}
.rating-box{
display: flex;
flex-direction: column;
align-items: center;
padding: 2em;
background-color: var(--neutral-2);
margin-bottom: 1rem;
border-radius: 10px;
color: var(--primary-color-1);
font-weight: var(--font-weight-2);
}
.testimonials{
overflow: hidden;
background-color: var(--primary-color-1);
border-radius: 10px;
margin-top: 2rem;
margin-bottom: 2rem;
padding:2em;
}
.about{
display: flex;
align-items: center;
}
.user-info{
margin: 0em 1em;
}
.name{
color: var(--neutral-3);
font-weight: var(--font-weight-2);
}
.status{
color: var(--primary-color-2);
}
.feedback{
color: var(--neutral-3);
font-size: 0.9rem;
padding-top: 1rem;
font-weight: var(--font-weight-1);
line-height: 1.3567rem;
}
.img{
border-radius: 50%;
height: 3rem;
width: 3rem;
}
.lower-box{
background:url('./images/bg-pattern-bottom-mobile.svg');
}
@media screen and (min-width: 770px){
body{
font-size: 15px;
background-image: url('./images/bg-pattern-top-desktop.svg');
background-repeat: no-repeat;
}
.upper-box{
display: flex;
}
.title-text{
font-size: 3.333rem;
}
.main-para{
font-size: 1.333rem;
}
.text{
text-align: left;
}
.lower-box{
display: flex;
position: absolute;
}
.testimonials{
overflow: hidden;
background-color: var(--primary-color-1);
border-radius: 10px;
margin-top: 2rem;
margin-right: 2rem;
padding:2em;
}
.rating-box{
display: flex;
flex-direction: column;
align-items: center;
padding: 2em;
background-color: var(--neutral-2);
margin-bottom: 1rem;
border-radius: 10px;
color: var(--primary-color-1);
font-weight: var(--font-weight-2);
width: 40vw;
}
.rb2{
margin-left: 5vw;
}
.rb3{
margin-left:10vw;
}
.ttm2{
margin-top: 10vh;
}
.ttm3{
margin-top: 20vh;
}
} | Front-End/HTML-CSS-Practice-Project/social-proof-section-master/styles.css | :root{
--primary-color-1: hsl(300, 43%, 22%);
--primary-color-2: hsl(333, 80%, 67%);
--neutral-1: hsl(303, 10%, 53%);
--neutral-2: hsl(300, 24%, 96%);
--neutral-3: hsl(0, 0%, 100%);
--font-family:'Spartan', sans-serif;
--font-weight-1:400;
--font-weight-2:500;
--font-weight-3:700;
}
*,*::before,*::after{
box-sizing: border-box;
margin-top: 0;
}
body{
font-size: 15px;
background-image: url('./images/bg-pattern-top-mobile.svg');
background-repeat: no-repeat;
}
.container{
padding: 4em 1.5em;
font-family: var(--font-family);
}
.text{
text-align: center;
}
.title-text{
font-size: 2em;
color: var(--primary-color-1);
font-weight: var(--font-weight-3);
margin: .5em;
}
.main-para{
font-size: 0.856em;
color: var(--neutral-1);
font-weight: var(--font-weight-2);
line-height: 1.7em;
margin-bottom: 2em;
}
.rating-box{
display: flex;
flex-direction: column;
align-items: center;
padding: 2em;
background-color: var(--neutral-2);
margin-bottom: 1rem;
border-radius: 10px;
color: var(--primary-color-1);
font-weight: var(--font-weight-2);
}
.testimonials{
overflow: hidden;
background-color: var(--primary-color-1);
border-radius: 10px;
margin-top: 2rem;
margin-bottom: 2rem;
padding:2em;
}
.about{
display: flex;
align-items: center;
}
.user-info{
margin: 0em 1em;
}
.name{
color: var(--neutral-3);
font-weight: var(--font-weight-2);
}
.status{
color: var(--primary-color-2);
}
.feedback{
color: var(--neutral-3);
font-size: 0.9rem;
padding-top: 1rem;
font-weight: var(--font-weight-1);
line-height: 1.3567rem;
}
.img{
border-radius: 50%;
height: 3rem;
width: 3rem;
}
.lower-box{
background:url('./images/bg-pattern-bottom-mobile.svg');
}
@media screen and (min-width: 770px){
body{
font-size: 15px;
background-image: url('./images/bg-pattern-top-desktop.svg');
background-repeat: no-repeat;
}
.upper-box{
display: flex;
}
.title-text{
font-size: 3.333rem;
}
.main-para{
font-size: 1.333rem;
}
.text{
text-align: left;
}
.lower-box{
display: flex;
position: absolute;
}
.testimonials{
overflow: hidden;
background-color: var(--primary-color-1);
border-radius: 10px;
margin-top: 2rem;
margin-right: 2rem;
padding:2em;
}
.rating-box{
display: flex;
flex-direction: column;
align-items: center;
padding: 2em;
background-color: var(--neutral-2);
margin-bottom: 1rem;
border-radius: 10px;
color: var(--primary-color-1);
font-weight: var(--font-weight-2);
width: 40vw;
}
.rb2{
margin-left: 5vw;
}
.rb3{
margin-left:10vw;
}
.ttm2{
margin-top: 10vh;
}
.ttm3{
margin-top: 20vh;
}
} | 0.437343 | 0.152947 |
.t-bdr {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr\@sm {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr\@md {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr\@lg {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-top {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-top\@sm {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-top\@md {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-top\@lg {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-right {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-right\@sm {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-right\@md {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-right\@lg {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-bottom {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-bottom\@sm {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-bottom\@md {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-bottom\@lg {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-left {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-left\@sm {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-left\@md {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-left\@lg {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-none {
border-style: solid !important;
border-width: 0 !important; }
@media (min-width: 544px) {
.t-bdr-none\@sm {
border-style: solid !important;
border-width: 0 !important; } }
@media (min-width: 768px) {
.t-bdr-none\@md {
border-style: solid !important;
border-width: 0 !important; } }
@media (min-width: 992px) {
.t-bdr-none\@lg {
border-style: solid !important;
border-width: 0 !important; } }
.t-bdr-r-0 {
border-radius: 0px; }
.t-bdr-r-1 {
border-radius: 1px; }
.t-bdr-r-2 {
border-radius: 2px; }
.t-bdr-r-3 {
border-radius: 3px; }
.t-bdr-r-4 {
border-radius: 4px; }
.t-bdr-r-circle {
border-radius: 50%; }
.t-bdr-r-pill {
border-radius: 9999px; } | packages/seed-border/dist/seed-border.css | .t-bdr {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr\@sm {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr\@md {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr\@lg {
border-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-top {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-top\@sm {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-top\@md {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-top\@lg {
border-top-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-right {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-right\@sm {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-right\@md {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-right\@lg {
border-right-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-bottom {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-bottom\@sm {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-bottom\@md {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-bottom\@lg {
border-bottom-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-left {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; }
@media (min-width: 544px) {
.t-bdr-left\@sm {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 768px) {
.t-bdr-left\@md {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
@media (min-width: 992px) {
.t-bdr-left\@lg {
border-left-style: solid !important;
border-width: 1px !important;
border-color: #eee !important; } }
.t-bdr-none {
border-style: solid !important;
border-width: 0 !important; }
@media (min-width: 544px) {
.t-bdr-none\@sm {
border-style: solid !important;
border-width: 0 !important; } }
@media (min-width: 768px) {
.t-bdr-none\@md {
border-style: solid !important;
border-width: 0 !important; } }
@media (min-width: 992px) {
.t-bdr-none\@lg {
border-style: solid !important;
border-width: 0 !important; } }
.t-bdr-r-0 {
border-radius: 0px; }
.t-bdr-r-1 {
border-radius: 1px; }
.t-bdr-r-2 {
border-radius: 2px; }
.t-bdr-r-3 {
border-radius: 3px; }
.t-bdr-r-4 {
border-radius: 4px; }
.t-bdr-r-circle {
border-radius: 50%; }
.t-bdr-r-pill {
border-radius: 9999px; } | 0.293101 | 0.156201 |
========================================
TABLE OF CONTENT
========================================
[1. IMPORT FONTS]
[2. GLOBAL STYLE]
[3. NAVBAR]
[4. SIDEBAR]
[5. CONTENT HOME]
[6. CONTENT]
[7. SIDEBAR WIDGET]
[8. CONTACT]
[9. PORTFOLIO]
[10. BLOG]
[11. 404 PAGE]
[12. RESPONSIVE]
*/
html{ height: 100%; }
body{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 22px;
margin: 0;
padding: 50px 0 0;
color: #333;
background: #1b1e24;
scrollbar-face-color: #121212;
z-index: 1;
}
.big-font{
margin: top;
padding-top: 100pt;
font-size: 40pt;
font-weight: bold;
}
::-moz-selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::-webkit-selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background-color: #121212; }
::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: #666;
}
::-webkit-scrollbar-button { display: none; }
::-webkit-scrollbar-corner { background-color: #000; }
h1,h2,h3,h4,h5,h6{ font-family: 'Lato', sans-serif; }
input[type="text"]:focus,input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,input[type="url"]:focus,
input[type="checkbox"]:focus,input[type="radio"]:focus,
textarea:focus, select:focus, option:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
/* login */
.login {
background-color: #FFF;
width: 35%;
min-width: 300px;
max-width: 600px;
margin: 6% auto auto auto;
border-radius: 10px;
min-height: 200px;
}
.login h1 {
border-radius: 10px 10px 0 0;
background-color: #f5f5f5;
padding: 10px 20px;
font-size: 16px;
text-align: center;
}
.login form {
margin: 10px 20px;
}
.marg20-top{ margin-top: 20px !important; }
.label-important{
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
#frame{
overflow: hidden !important;
border:0px;
min-height: 1000px;
}
.text-bold{ font-weight: 700; }
.text-black{ color: #22262E; }
.text-grey{ color: #bdc3c7; }
.text-dark-grey{ color: #666; }
.padd-right-5{ padding-right: 5px; }
.marg-btm-20{ margin-bottom: 20px; }
.display-block{ display: block; }
.line-height-24{ line-height: 24px; }
/*
==================
[2. LOGIN PAGE]
==================
*/
.login{
margin-top: -50px;
width: 100%;
height: 100%;
background-color: #E5E9EC;
position: fixed;
z-index: 1;
}
.login-wrapper{
position:relative;
margin-top:10%;
}
.login-logo{
margin-bottom: 40px;
max-width: 200px;
}
.login-profile{
overflow: hidden;
float: left;
height: auto;
margin-right: 11px;
margin-top: 5px;
overflow: hidden;
width: 65px;
display:inline-block
}
.login-profile img{
width: 65px;
height: auto;
}
.login-form{
margin-top: -10px;
display: inline-block;
float:left;
min-width:320px;
}
.login-form h2{
font-size: 24px;
margin: 10px 0 15px;
font-weight: 400;
text-transform: capitalize;
color: #505458;
letter-spacing: -1px;
}
.login-form h2 span{
font-weight: 900;
letter-spacing: 1px;
}
.login-form h2 strong{
font-weight: 900;
color: #0090d9;
}
.login-form input[type="text"],
.login-form input[type="password"],.login-form button{ margin-right:10px; }
.login-form input[type="text"],
.login-form input[type="password"]{
font-family: 'Lato', sans-serif;
-webkit-appearance: none !important;
color: #282323;
outline: 0;
height: 16px;
padding: 6px 9px !important;
line-height: 15px;
font-size: 13px;
font-weight: normal;
vertical-align: top;
background-color: #fff;
min-height: 35px;
filter: none !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
-o-box-shadow: none !important;
box-shadow: none !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border: 1px solid #e5e9ec;
-webkit-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
-moz-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
-o-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus{
border-color: #e5e9ec;
outline: 0 !important;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: #0090d9;
background-color:#f4f5f7;
}
.login-form label.checkbox{
position: relative;
margin-bottom: 0;
}
.login-form label.checkbox:hover{ cursor: pointer; }
.login-form label.checkbox input[type="checkbox"]{
visibility: hidden;
margin-right: 15px;
}
.login-form label.checkbox .check,
.login-form label .check{
cursor: pointer;
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
margin-right: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #BDC3C7;
}
.login-form label.checkbox .check:after,
.login-form label .check:after {
font-family: 'FontAwesome';
content: '\F00C';
position: absolute;
top: 1px;
left: 3px;
width: 7px;
height: 4px;
font-weight: 300;
font-size: 12px;
color: #fff;
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.login-form label.checkbox .check:hover::after,
.login-form label .check:hover::after {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: alpha(opacity=40);
opacity: 0.4;
}
.login-form label.checkbox input[type="checkbox"]:checked + .check{ background: #0090d9; }
.login-form label.checkbox input[type="checkbox"]:checked + .check:after{
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.login-form label.checkbox input[disabled="disabled"] + .check{
cursor: default;
background: #ECF0F1;
}
.login-form label.disabled{
cursor: default;
color: #CCCCCC;
}
.login-form label.disabled input[type="checkbox"] + .check,
.login-form label.disabled input[type="checkbox"]:checked + .check,
.login-form label.checkbox.disabled input[type="checkbox"]:checked + .check {
cursor: default;
background: #ECF0F1;
}
.login-form .copyright {
margin-top: 80px;
margin-left: -40%;
text-align: center;
font-size: 12px;
text-transform: uppercase;
color: #222;
font-weight: 300;
}
.login-form .copyright .code-name{
display: block;
width: 130px;
height: auto;
margin-bottom: 20px;
color: #222;
}
.field-required{
position: relative;
display: inline-block;
vertical-align: top;
font-size: 6px;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #F35958;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.field-required:after{
font-family: 'FontAwesome';
content: '\f005';
}
/*
==================
[3. NAVBAR]
==================
*/
.navbar.navbar-default {
padding-left: 20px;
padding-right: 20px;
border: none;
}
.navbar-default .navbar-header{
position: relative;
display: inline-block;
}
.navbar-default .navbar-header .navbar-brand{
width: 220px;
position: relative;
left: -20px;
height: 65px;
top: 0;
font-size: 26px;
line-height: 30px;
color: #888;
background: #22262e;
}
.navbar-default .navbar-header .navbar-brand small{
position: absolute;
left: 8px;
top: 35px;
display: inline-block;
margin-left: 55px;
margin-top: -20px;
max-width: 100px;
font-size: 10px;
line-height: 16px;
font-weight: 400;
color: #aaa;
visibility: visible;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.navbar-header.navbar-header-collapse .navbar-brand{ width: 80px; }
.navbar-header.navbar-header-collapse .navbar-brand small{
visibility: hidden;
display: none;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.navbar-default .navbar-header .navbar-brand strong{ font-weight: 800; }
.logo{
position: absolute;
left: 16px;
top: 10px;
margin-top: 8px;
width: auto;
height: 25px;
}
.brandActive{
background: #22262e !important;
color: #ffffff !important;
}
.navbar-default .navbar-nav.navbar-right {
position: relative;
right: 20px;
float: right;
top: 0;
}
.navbar-default .navbar-nav.navbar-right > li:first-child{ display: none; }
.navbar-default .navbar-nav.navbar-right > li{ display: inline-block; }
.navbar-default .navbar-nav.navbar-right > li > a{
position: relative;
display: inline-block;
margin-top: -3px;
}
.navbar-default .navbar-nav.navbar-right > li > a > i[class^="fa"]{
font-size: 18px;
color: #666;
}
.navbar-default .navbar-nav.navbar-right > li > a img{
position: absolute;
display: inline;
right: 0;
top: 15px;
margin-left: 20px;
}
.navbar-default .navbar-nav.navbar-right > li > a span{
display: inline-block;
margin-right: 40px;
font-weight: 700;
}
/*.navbar-default .navbar-nav >*/
.navbar-default .navbar-nav .dropdown-menu > li > a{ padding: 10px 20px; }
.navbar-default .navbar-nav .dropdown-menu{
padding-top: 0;
padding-bottom: 0;
}
.navbar-default .navbar-nav .dropdown.open > a,
.navbar-default .navbar-nav .dropdown.open > a:hover,
.navbar-default .navbar-nav .dropdown.open > a:focus,
.navbar-default .navbar-nav .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .dropdown-menu > .active > a,
.navbar-default .navbar-nav .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .dropdown-menu > .active > a:focus{
background-color: #0aa699;
color: #fff;
}
/*
==================
[4. SIDEBAR]
==================
*/
.sidebar {
position: fixed;
z-index: 2;
top: 0;
left: 0;
bottom: 0;
width: 220px;
min-height: 100%;
height: 100%;
padding: 85px 15px 20px;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 15px;
line-height: 18px;
background-color: #1b1e24 !important;
overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 2px; }
.sidebar::-webkit-scrollbar-track { background-color: #121212; }
.sidebar::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: #666;
}
.sidebar::-webkit-scrollbar-button { display: none; }
.sidebar::-webkit-scrollbar-corner { background-color: #000; }
.sidebar .nav > .nav-header{
color:#1ABC9C;
padding:20px 0px 5px 0px;
border-bottom:2px solid #F35958;
font-weight: 700;
font-size: 15px;
line-height: 18px;
}
/* button collapse sidebar */
.collapse-sidebar{
position: absolute;
z-index: 999999;
right: 2px;
top: 15px;
}
/* sidebar collapse */
.collapse-sidebar.collapse-sidebar-in::before{
font-family: 'FontAwesome';
content: '\f138';
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.collapse-sidebar::before{
font-family: 'FontAwesome';
content: '\f137';
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/* sidebar when collapse */
.sidebar.sidebar-in{
width: 80px;
overflow-x: hidden;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a + div{
visibility: hidden;
display: none;
}
/*
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a{
position: relative;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a:hover span,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a:hover span{
position: absolute;
z-index: 9999;
left: 49px;
top: 0;
display: block;
min-width: 180px;
max-width: 200px;
padding: 10px 25px 10px 30px;
text-align: left;
visibility: visible;
border-radius: 0 4px 0 0;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a:hover .caret{
display: none;
visibility: hidden;
opacity: 0;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu div{
position: absolute;
z-index: 9998;
left: 65px;
top: 36px;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover div{
visibility: visible;
display: block;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse > ul > li > a,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in > ul > li > a{
display: block;
min-width: 164px;
max-width: 200px;
padding-left: 20px;
border-radius: 0;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse > ul,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in > ul,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu div > ul{
position: relative;
}
*/
.sidebar.sidebar-in .copyright{
visibility: hidden;
display: none;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a{
padding-right: 0;
padding-left: 43px;
}
.sidebar .nav-pills.nav-stacked > li > a i + *,
.sidebar .nav-pills.nav-stacked > li > a .fa + *,
.sidebar .nav-pills.nav-stacked > li > a span{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a i + *,
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a .fa + *,
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a span{
visibility: hidden;
display: none;
}
.sidebar .nav-pills > li > a{
position: relative;
padding-left: 40px;
color: #aaaaaa;
background: transparent;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.sidebar .nav-pills > li > a:hover{
background: rgba(0,0,0,0.3);
color: #ffffff;
}
.sidebar .nav-pills > .active > a, .sidebar .nav-pills > .active > a:hover{
background: rgba(0,0,0,0.3);
color: #ffffff;
}
.sidebar .nav-pills > li > a > i{ position: relative; }
.sidebar .nav-pills > li > a > i[class^="icon-"]:before,
.sidebar .nav-pills > li > a > i[class*="icon-"]:before{
content: "";
position: absolute;
left: -28px;
top: -15px;
width: 20px;
height: 20px;
background-size: 20px 20px;
}
.sidebar .nav-pills > li > a > i.icon-home:before{ background: url(../images/icon-web/home.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-penduduk:before{ background: url(../images/icon-web/group.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-peristiwa:before{ background: url(../img/clock.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-statistik:before{ background: url(../images/icon-web/stats_lines.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-senkom:before{ background: url(../images/icon-web/senkom.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-user:before{ background: url(../images/icon-web/administrator.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-globe:before{ background: url(../img/world.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-setting:before{ background: url(../images/icon-web/gear.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-other:before{ background: url(../img/history.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-keluarga:before{ background: url(../img/messenger.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-surat:before{ background: url(../img/copy.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-pertanahan:before{ background: url(../img/certificate.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-pustaka:before{ background: url(../img/diary.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-odks:before{ background: url(../img/odks.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-odks-alt:before{ background: url(../img/notepad.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-highway:before{ background: url(../images/icon-web/highway.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-pustaka-alt:before{ background: url(../images/icon-web/bookmark.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-smsmk:before{ background: url(../img/mail.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-kpi:before{ background: url(../images/icon-web/kpi.png) no-repeat center top;}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a:before{
font-family: 'FontAwesome';
content: "\f105";
margin-left: -6px;
margin-right: 8px;
font-size: 13px;
}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a{
position: relative;
border-radius: 0;
font-size: 14px;
color: #aaa;
background: rgba(0,0,0,0.3);
}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a:hover,
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > .active > a,
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > .active > a:hover{ color: #fff; }
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li + li{ margin-top: 0; }
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li:last-child > a{ border-radius: 0 0 4px 4px; }
.sidebar .nav-pills > li.dropdownmenu > a.collapsed{
background: #1B1E24;
color: #aaa;
}
.sidebar .nav-pills > li.dropdownmenu > a,
.sidebar .nav-pills > li.dropdownmenu > a:hover{
border-radius: 4px 4px 0 0;
color: #fff;
background: rgba(0,0,0,0.3);
}
.sidebar .nav-pills > li.dropdownmenu > a > .caret{
margin-top:0.5em;
float:right;
}
.sidebar .copyright{
position: relative;
top: 60px;
padding-bottom: 30px;
text-align: center;
font-size: 10px;
color: #9a9a9a;
text-transform: uppercase;
}
.sidebar .copyright p{
padding-top: 0;
line-height: 12px;
}
.sidebar .copyright .code-name{
display: block;
width: 130px;
height: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 25px;
}
/*
==================
[5. CONTENT]
==================
*/
.content{
/*position: relative;*/
z-index: 1;
min-height: 900px;
margin-left: 220px;
margin-right: 0px;
background-color: #E5E9EC;
}
.content.content-collapse{ margin-left: 80px; }
.article{
padding: 25px 20px 0 20px;
background: transparent;
}
.article h2{
margin: 0 0 20px;
color: #22262E;
font-weight: 800;
/*letter-spacing: -1px;*/
}
.article h2 span{
color: #5E5E5E;
font-weight: 300;
}
.article h3{
margin-bottom: 20px;
font-weight: 900;
font-size: 22px;
line-height: 24px;
color: #22262E;
}
.article .breadcrumb{
display: inline-block;
background-color: transparent;
}
.article .breadcrumb > li > a{ color: #5E5E5E; }
.article .breadcrumb > .active, .article .breadcrumb > .active:hover {
font-weight: 600;
color: #22262E;
}
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
font-weight: 400;
color: #ccc;
}
.article .nav.nav-tabs{ margin-bottom:20px; }
/* box */
.box,
.grid{
clear: both;
margin-top: 0px;
margin-bottom: 25px;
padding: 0px;
}
.box:after,
.box:before,
.grid:after,
.grid:before{
content: "";
display: table;
}
.box-header, .grid-header {
margin-bottom: 0px;
border-bottom: 1px solid #dadada;
padding: 13px 15px 6px;
}
.box-header.border-none, .grid-header.border-none{
border-bottom: none;
}
.box-header h3 {
display: inline-block;
width: 70%;
font-size: 16px;
font-weight: 400;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.box-header h3 span { font-weight: 700; }
.box-header h3.uppercase,
.article h2.uppercase{ text-transform: uppercase; }
.box-header .box-option{
display: inline-block;
float: right;
width: 25%;
}
.box-header .box-option a{
position: relative;
font-size: 16px;
padding: 10px 12px;
display: block;
top: -10px;
right: 0;
text-align: right;
}
.box-header .box-option .btn-group{
position: relative;
top: -6px;
right: 0;
float: right;
}
.box-footer{ background-color: rgba(0,0,0,0.3); }
.box-content {
clear: both;
padding: 10px 25px 20px;
}
.box-content,
.box,
.grid-content,
.grid{
background-color: #fff;
color: #5E5E5E;
}
.box-content.light-blue,
.box.light-blue,
.grid-content.light-blue,
.grid.light-blue {
background-color: #58acf3 !important;
color: #fff;
}
.box-content.blue,
.box.blue,
.grid-content.blue,
.grid.blue {
background-color: #0090D9 !important;
color: #fff;
}
.box-content.red,
.box.red,
.grid-content.red,
.grid.red {
background-color: #f35958 !important;
color: #fff;
}
.box-content.yellow,
.box.yellow,
.grid-content.yellow,
.grid.yellow {
background-color: #ffb848 !important;
color: #fff;
}
.box-content.green, .box.green,
.grid-content.green, .grid.green {
background-color: #0aa699 !important;
color: #fff;
}
.box-content.light-purple,
.box.light-purple,
.grid-content.light-purple,
.grid.light-purple {
background-color: #852b99 !important;
color: #fff;
}
.box-content.purple,
.box.purple,
.grid-content.purple,
.grid.purple {
background-color: #736086 !important;
color: #fff;
}
.box-content.light-grey,
.box.light-grey,
.grid-content.light-grey,
.grid.light-grey { background-color: #fafafa !important; }
.box-content.dark-grey,
.box.dark-grey,
.grid-content.dark-grey,
.grid.dark-grey { background-color: #555 !important; }
.box-content.light-black,
.box.light-black,
.grid-content.light-black,
.grid.light-black{
background-color: #34495e !important;
color: #ddd;
}
.box-content.transparent,
.box.transparent,
.grid-content.transparent,
.grid.transparent{
background-color: transparent !important;
}
.grid.green .grid-header h3 a,
.grid.blue .grid-header h3 a,
.grid.red .grid-header h3 a,
.grid.purple .grid-header h3 a,
.grid.dark-grey .grid-header h3{
color: #fff;
text-decoration: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
-ms-transition: color 0.2s ease-in-out;
-o-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.grid.green .grid-header h3 a:hover,
.grid.blue .grid-header h3 a:hover,
.grid.red .grid-header h3 a:hover,
.grid.purple .grid-header h3 a:hover{
color: rgba(0,0,0,0.4);
text-decoration: none;
}
.grid.light-black .grid-header h3 a{ color: #aaa; }
.grid.light-black .grid-header h3 a:hover{
color: #fff;
text-decoration: none;
}
.row .col-md-12:nth-child(n+1):after,
.row .col-md-12:nth-child(n+1):before,
.row .col-md-6:nth-child(2n+1):after,
.row .col-md-6:nth-child(2n+1):before,
.row .col-md-4:nth-child(4n+1):after,
.row .col-md-4:nth-child(4n+1):before,
.row .col-md-3:nth-child(4n+1):after,
.row .col-md-3:nth-child(4n+1):before
.col-md-12:nth-child(n+1),
.col-md-6:nth-child(2n+1),
.col-md-4:nth-child(4n+1),
.col-md-4:nth-child(3n+1) {
clear: both;
display: table;
}
/* grid */
.grid-header{
margin-bottom: 15px;
position: relative;
}
.grid-header h3 {
display: inline-block;
margin: 0;
padding: 0;
width: 60%;
font-size: 18px;
font-weight: 600;
/*white-space: nowrap;*/
overflow: hidden;
text-overflow: ellipsis;
text-transform: capitalize;
}
.grid-header small{
position: absolute;
left: 15px;
bottom: -10px;
display: block;
color: #f1f1f1;
font-style: italic;
}
.grid-header .grid-menu{
display: inline-block;
float: right;
width: 35%;
}
/*
.grid-header .grid-menu a{
font-size: 16px;
padding: 10px 12px;
display: block;
position: relative;
top: -10px;
right: 0;
}*/
.grid-header .grid-menu .btn-group{
position: relative;
top: -2px;
right: 0;
float: right;
}
.grid-footer{
background-color: rgba(0,0,0,0.3);
padding: 12px 15px 5px;
}
.grid-content {
clear: both;
padding: 10px 10px 10px;
margin-top: 10px;
}
.grid-content.padding10{ padding: 10px 12px; }
.grid-content.padding15{ padding: 15px; }
.grid-img{
display: inline-block;
width: 26%;
float: left;
}
.grid-img img{
display: block;
width: 70px;
height: 70px;
vertical-align: top;
}
.grid-desc{
display: inline-block;
width: 72%;
float: left;
}
.grid-desc h3{
margin: 0 0 5px;
font-size: 16px;
line-height: 18px;
font-weight: 400;
}
.grid-desc p{
padding: 0;
margin: 0 0 5px;
font-size: 13px;
line-height: 14px;
}
/* clear row */
.row .col-lg-12:nth-child(1n+1),
.row .col-xs-12:nth-child(1n+1),
.row .col-lg-6:nth-child(2n+1),
.row .col-xs-6:nth-child(2n+1),
.row .col-lg-4:nth-child(3n+1),
.row .col-xs-4:nth-child(3n+1),
.row .col-lg-3:nth-child(4n+1),
.row .col-xs-3:nth-child(4n+1),
.row .col-lg-2:nth-child(6n+1),
.row .col-xs-2:nth-child(6n+1){
clear: both;
display: table;
}
/* daftar penduduk */
.daftar-penduduk{
text-align: center;
background: rgba(0,0,0,0.25);
color: #f1f1f1;
}
.daftar-penduduk img{
display: block;
width: 150px;
height: auto;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
margin-bottom: 20px;
}
.daftar-penduduk-title{ text-align: center; }
/* survei kemiskinan */
.bps,
.survei-container { position: relative; }
.bps:before{
content: "";
position: absolute;
left: -30px;
top: 12px;
border: 15px;
border-bottom: 15px solid transparent;
border-top: 15px solid transparent;
border-left: 15px solid transparent;
border-right: 15px solid #555;
}
.survei-container .loading{
position: absolute;
left: 23%;
top: 20px;
color: #fff;
}
.display-result{
margin: 20px 0;
color: #666;
}
.row > .items > .empty,
.row > .list-view > .items > .empty{ padding-left: 15px; }
.kemiskinan-search{ position: relative; }
.loading-keluarga{
position: absolute;
right: 30px;
top: 7px;
color: #999;
}
.table-divider{
display: block;
padding: 0 15px;
}
/* upload file */
.pemotretan{ margin-top: -3px; }
#uploadFile .qq-upload-button {
margin-top: 2px;
padding: 7px 12px;
border: 1px solid #665577;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background: #736086;
}
#uploadFile .qq-upload-button:hover,
#uploadFile .qq-upload-button:active,
#uploadFile .qq-upload-button:focus {
border: 1px solid #483c53;
background: #5f4f6e;
}
/*
#webcamContainer{
margin-top: -5px;
opacity: 0;
filter: alpha(opacity=0);
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: none;
}
.showWebcam{
opacity: 1 !important;
filter: alpha(opacity=100);
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: block !important;
}*/
#webcamContainer .btn{ margin-top: 15px; }
#hideWebcam{
display: none;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* FILTER CGRIDVIEW */
.filters .filter-container input[type="text"],
.filters .filter-container input[type="email"],
.filters .filter-container input[type="url"],
.filters .filter-container select {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.428571429;
color: #555555;
vertical-align: middle;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-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;
}
.filters .filter-container input[type="text"]:focus,
.filters .filter-container input[type="email"]:focus,
.filters .filter-container input[type="url"]:focus,
.filters .filter-container select:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.filters .filter-container input[type="text"]:-moz-placeholder,
.filters .filter-container input[type="email"]:-moz-placeholder,
.filters .filter-container input[type="url"]:-moz-placeholder { color: #999; }
.filters .filter-container input[type="text"]::-moz-placeholder,
.filters .filter-container input[type="email"]::-moz-placeholder,
.filters .filter-container input[type="url"]::-moz-placeholder {
color: #999;
opacity: 1;
}
.filters .filter-container input[type="text"]:-ms-input-placeholder,
.filters .filter-container input[type="email"]:-ms-input-placeholder,
.filters .filter-container input[type="url"]:-ms-input-placeholder { color: #999; }
.filters .filter-container input[type="text"]::-webkit-input-placeholder,
.filters .filter-container input[type="email"]::-webkit-input-placeholder,
.filters .filter-container input[type="url"]::-webkit-input-placeholder { color: #999; }
/* ANGGOTA KELUARGA */
.list-anggota-keluarga .summary{
margin-left: 15px;
margin-bottom: 15px;
text-align: left;
}
.keluarga-container{
background: #ffffff;
width: auto;
height: auto;
display: block;
}
.keluarga-container > .keluarga-img{
width: 72px;
height: 72px;
float: left;
margin-right: 20px;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-ms-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-repeat: no-repeat;
overflow: hidden;
}
.keluarga-container > .keluarga-text{
/*float: left;*/
text-align: left;
width: auto;
}
/* TABLE DETAIL VIEW */
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td { padding: 10px; }
.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th { background-color: #f0f0f0; }
/* TAMBAH PENDUDUK */
.form-tambah-penduduk input[type="text"],
.form-tambah-penduduk select{
clear: both;
display: table;
}
#Penduduk_tanggal_lahir{
clear: both;
display: table;
width: 100%;
}
@-moz-document url-prefix(){
.pemotretan{
margin-top: -27px;
}
}
/* tabs */
.tab-content{
padding: 20px;
background: #fff;
}
.dtl-keluarga h3{
text-align: center;
font-size: 18px;
line-height: 22px;
}
.dtl-keluarga table{
font-size: 14px;
line-height: 20px;
}
.dtl-keluarga table tr.odd{
background: #eaeaea;
}
/***************************************************************
*** LOADING BAR
****************************************************************/
#loadingbar {
position: fixed;
z-index: 2147483647;
top: 0;
left: -6px;
width: 1%;
height: 2px;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
background: #b91f1f;
}
#loadingbar.left {
left: 100%;
right: 0px;
width: 100%;
}
#loadingbar.up {
left: 0px;
top: 100%;
width: 5px;
bottom: 0px;
height: 100%;
}
#loadingbar.down {
left: 0;
width: 5px;
height: 0;
}
#loadingbar.waiting dd,
#loadingbar.waiting dt {
-webkit-animation: pulse 2s ease-out 0s infinite;
-moz-animation: pulse 2s ease-out 0s infinite;
-ms-animation: pulse 2s ease-out 0s infinite;
-o-animation: pulse 2s ease-out 0s infinite;
animation: pulse 2s ease-out 0s infinite;
}
#loadingbar dt {
width: 180px;
right: -80px;
clip: rect(-6px,90px,14px,-6px);
opacity: .6;
}
#loadingbar dd {
width: 20px;
right: 0;
clip: rect(-6px,22px,14px,10px);
opacity: .6;
}
#loadingbar dd,
#loadingbar dt {
position: absolute;
top: 0;
height: 2px;
-webkit-box-shadow: #B91F1F 1px 0 6px 1px;
-moz-box-shadow: #b91f1f 1px 0 6px 1px;
-ms-box-shadow: #b91f1f 1px 0 6px 1px;
box-shadow: #B91F1F 1px 0 6px 1px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
#loadingbar.left dt {
width: 180px;
left: -4px;
clip: rect(-6px,185px,14px,25px);
opacity: .6;
}
#loadingbar.left dd {
width: 20px;
left: 0;
margin: 0;
clip: rect(-6px,22px,14px,0px);
opacity: .6;
}
#loadingbar.left dd,
#loadingbar.left dt {
top: 0;
height: 2px;
}
#loadingbar.down dt {
top: auto;
bottom: -47px;
height: 180px;
clip: rect(-6px,20px,130px,-6px);
opacity: .6;
}
#loadingbar.down dd {
top: auto;
bottom: 0;
height: 20px;
margin: 0;
clip: rect(-6px,22px,20px,10px);
opacity: .6;
}
#loadingbar.down dd,
#loadingbar.down dt {
left: -5px;
right: auto;
width: 10px;
}
#loadingbar.up dt {
bottom: auto;
top: -10px;
height: 180px;
clip: rect(13px,20px,190px,-6px);
opacity: .6;
}
#loadingbar.up dd {
bottom: auto;
top: 0;
height: 20px;
margin: 0;
clip: rect(-6px,22px,25px,10px);
opacity: .6;
}
#loadingbar.up dd,
#loadingbar.up dt {
left: -5px;
right: auto;
width: 10px;
}
@keyframes pulse {
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-moz-keyframes pulse {
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-ms-keyframes pulse{
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-webkit-keyframes pulse{
30% { opacity:0.6; }
60% { opacity:0; }
100% { opacity:0.6; }
}
/**
* REPLACEMENT JQUERY-UI
*/
.ui-helper-hidden-accessible{ display:none !important; }
/**
* CHILD NAVBAR
*/
.child-navbar{ margin-bottom:10px; }
.child-navbar > .container-fluid{
padding: 0;
border-bottom: 1px solid #DDDDDD;
}
.child-navbar .nav,
.child-navbar .navbar-nav{ height: auto !important; }
.child-navbar .nav a{
padding: 10px;
color: #0AA699;
}
.child-navbar .nav a:hover{
background-color: #fff;
color: #34495E;
}
.child-navbar .nav a > .fa,
.child-navbar .nav a > .glyphicon{
margin-right: 4px;
color: #34495E;
}
.table-middle thead tr th{
vertical-align: middle;
text-align: center;
}
.table-scale{
-webkit-transform: translateX(-165px) scale(0.75,0.75);
-moz-transform: translateX(-165px) scale(0.75,0.75);
-ms-transform: translateX(-165px) scale(0.75,0.75);
-o-transform: translateX(-165px) scale(0.75,0.75);
transform: translateX(-165px) scale(0.75,0.75);
}
.table-scale2{
-webkit-transform: translateX(-220px) scale(0.72,0.72);
-moz-transform: translateX(-220px) scale(0.72,0.72);
-ms-transform: translateX(-220px) scale(0.72,0.72);
-o-transform: translateX(-220px) scale(0.72,0.72);
transform: translateX(-220px) scale(0.72,0.72);
}
.table-scale3{
-webkit-transform: translateX(-355px) scale(0.60,0.60);
-moz-transform: translateX(-355px) scale(0.60,0.60);
-ms-transform: translateX(-355px) scale(0.60,0.60);
-o-transform: translateX(-355px) scale(0.60,0.60);
transform: translateX(-355px) scale(0.60,0.60);
}
.table-scale4{
-webkit-transform: translateX(-280px) scale(0.66,0.66);
-moz-transform: translateX(-280px) scale(0.66,0.66);
-ms-transform: translateX(-280px) scale(0.66,0.66);
-o-transform: translateX(-280px) scale(0.66,0.66);
transform: translateX(-280px) scale(0.66,0.66);
}
.table-scale5{
-webkit-transform: translateX(-60px) scale(0.90,0.90);
-moz-transform: translateX(-60px) scale(0.90,0.90);
-ms-transform: translateX(-60px) scale(0.90,0.90);
-o-transform: translateX(-60px) scale(0.90,0.90);
transform: translateX(-60px) scale(0.90,0.90);
}
.table-responsive{
width: 100%;
margin-bottom: 15px;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
overflow-x: auto;
overflow-y: hidden;
border: 1px solid #ddd;
}
.table-responsive::-webkit-scrollbar { width: 5px !important; }
.table-responsive>.table{ margin-bottom: 0; }
.table-responsive>.table>thead>tr>th,
.table-responsive>.table>tbody>tr>th,
.table-responsive>.table>tfoot>tr>th,
.table-responsive>.table>thead>tr>td,
.table-responsive>.table>tbody>tr>td,
.table-responsive>.table>tfoot>tr>td{ white-space: nowrap; }
.table-responsive>.table-bordered{ border: 0; }
.table-responsive>.table-bordered>thead>tr>th:first-child,
.table-responsive>.table-bordered>tbody>tr>th:first-child,
.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.table-responsive>.table-bordered>thead>tr>td:first-child,
.table-responsive>.table-bordered>tbody>tr>td:first-child,
.table-responsive>.table-bordered>tfoot>tr>td:first-child{ border-left: 0; }
.table-responsive>.table-bordered>thead>tr>th:last-child,
.table-responsive>.table-bordered>tbody>tr>th:last-child,
.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.table-responsive>.table-bordered>thead>tr>td:last-child,
.table-responsive>.table-bordered>tbody>tr>td:last-child,
.table-responsive>.table-bordered>tfoot>tr>td:last-child{ border-right: 0; }
.table-responsive>.table-bordered>tbody>tr:last-child>th,
.table-responsive>.table-bordered>tfoot>tr:last-child>th,
.table-responsive>.table-bordered>tbody>tr:last-child>td,
.table-responsive>.table-bordered>tfoot>tr:last-child>td{ border-bottom: 0; }
/**
* KALKULASI PENDUDUK
*/
.kalkulasi-penduduk{
text-align: center;
vertical-align: middle;
}
.kalkulasi-penduduk .kalkulasi-penduduk-jumlah{
font-weight: bold;
font-size: 24px;
color: #000;
}
.kalkulasi-penduduk .kalkulasi-penduduk-label { text-transform: uppercase; }
.img-print{
position: absolute;
left: 60px;
top: 20px;
display: block;
width: 80px;
height: auto;
}
/* TREEVIEW PUSTAKA */
.treeview-pustaka{ width: 100%; }
.treeview-pustaka .pustaka-content{
position: relative;
padding-left: 0;
list-style-type: none;
}
.treeview-pustaka .pustaka-content li::before{
font-family: 'FontAwesome';
content: '\f196';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content li.no-child::before{
font-family: 'FontAwesome';
content: '\f147';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content li{
font-size: 14px;
line-height: 30px;
text-transform: uppercase;
font-weight: 400;
}
.treeview-pustaka .pustaka-content li span:hover,
.treeview-pustaka .pustaka-content ul li span:hover{ cursor: pointer; }
.treeview-pustaka .pustaka-content ul::before{
content: '';
position: absolute;
left: 6px;
top: 0;
height: 100%;
width: 1px;
background-color: #aaa;
}
.treeview-pustaka .pustaka-content ul{
position: relative;
padding-left: 23px;
list-style-type: none;
}
.treeview-pustaka .pustaka-content ul li{
position: relative;
font-size: 14px;
text-transform: uppercase;
font-weight: 400;
}
.treeview-pustaka .pustaka-content ul li::before{
font-family: 'FontAwesome';
content: '\f196';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content ul li::after{
content: '';
position: absolute;
left: -17px;
top: 13px;
width: 10px;
height: 1px;
background-color: #aaa;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content.ui-corner-all,
.ui-autocomplete{
z-index: 9999 !important;
width: auto !important;
min-width: 200px !important;
}
@media print{
body{padding:0px !important; margin:0px !important;font-size: 10pt;}
.img-print{ display: block !important; }
#area_cetak .suratkop .img-print{ top: 30px; }
#area_cetak .prmhnktp .img-print{ top: 35px; }
.matrik-print{font-size: 10pt !important;}
.table { page-break-inside:auto }
.table > thead > tr, .table > tbody > tr, .table > tfoot > tr { page-break-inside:avoid !important; page-break-after:auto }
.table > thead { display:table-header-group !important;}
.table > tfoot { display:table-footer-group !important;}
.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: 1px solid #000 !important;
line-height: 1.42857;
padding: 4px;
vertical-align: top;
font-size: 10pt !important;
}
hr{
border-top: 1px solid #000 !important;
}
}
/*
=============================
Date create: 08/05/2015;
Theme name: Keuangan;
==============================
*/
.dashboard-accounting{
display: table;
min-height: 20px;
width: 100%;
margin-bottom: 20px;
}
.dashboard-accounting::after{
content: '';
display: table;
clear: both;
margin-bottom: 20px;
}
/* accounting-left */
.dashboard-accounting .accounting-left{
display: table-cell;
vertical-align: top;
width: 65%;
padding: 20px;
background-color: #fff;
}
.accounting-info h3{
font-size: 32px;
line-height: 42px;
font-weight: 600;
}
.accounting-info h3 strong{
display: block;
font-weight: 600;
font-size: 11px;
line-height: 20px;
color: #34495e;
}
.accounting-info h3 span{
display: block;
font-weight: 300;
font-size: 11px;
line-height: 11px;
text-transform: capitalize;
color: #7f8c8d;
}
.right-border{
border-right: 1px solid #ecf0f1;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
/* progress bar */
.progress-content{ position: relative; }
.progress-content .progress{
display: block;
margin-bottom: 10px;
border-radius: 10px;
}
.progress-content .progress-bar{ border-radius: 10px; }
.progress-content .progress-information{ font-size: 12px; }
/* progress bar x-tra small */
.progress.progress-xs{
height: 5px;
margin-bottom: 0;
border-radius: 4px;
overflow: visible;
}
.progress.progress-xs .progress-bar{
position: relative;
border-radius: 4px;
}
.progress .progress-bar .progress-percentage{
position: absolute;
right: -15px;
top: -40px;
width: 30px;
height: 30px;
font-size: 10px;
font-weight: 300;
line-height: 30px;
text-align: center;
border-radius: 100%;
background-color: #0aa699;
}
.progress .progress-bar .progress-percentage::after{
content: '';
position: absolute;
left: 50%;
bottom: -5px;
width: 10px;
height: 10px;
margin-left: -10px;
border-top: 10px solid #0aa699;
border-right: 10px solid transparent;
border-bottom: 0 solid transparent;
border-left: 10px solid transparent;
}
.unvisible{ visibility: hidden; }
/* alert */
.alert-dismissable .close, .alert-dismissible .close { right: 0; }
/* nav tabs left */
.nav-tabs.nav-tabs-left{ }
.nav-tabs.nav-tabs-left > li{
display: block;
float: none;
}
.nav-tabs.nav-tabs-left > li > a{ border-right: 1px solid #ddd; }
/* accounting right */
.dashboard-accounting .accounting-right{
display: table-cell;
vertical-align: top;
width: 35%;
padding: 20px;
background-color: #fafafa;
}
.section-title{
position: relative;
display: block;
border-bottom: 1px solid #ecf0f1;
margin-bottom: 30px;
}
.section-title.border-none{ border-bottom: none; }
.section-title h2{
position: relative;
display: inline-block;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
font-size: 22px;
font-weight: 600;
}
.section-title h2::after{
content: '';
position: absolute;
left: 0;
bottom: -11px;
width: 100%;
height: 1px;
background-color: #bdc3c7;
}
.section-title h3{
font-size: 18px;
line-height: 22px;
margin-bottom: 8px;
}
.section-title h3 span{
font-weight: 400;
}
.section-title h4{
font-size: 14px;
line-height: 18px;
font-weight: 700;
margin-bottom: 5px;
}
.section-title-additional{
position: absolute;
left: 0;
bottom: -85px;
}
.section-title-additional h3{
font-size: 22px;
line-height: 28px;
}
.section-title-additional h3 span{
display: block;
font-size: 12px;
line-height: 16px;
color: #999;
}
.heading-title{
margin: 0;
padding: 0 0 9px;
height: 50px;
font-size: 16px !important;
line-height: 20px !important;
font-weight: 400 !important;
border-bottom: 1px solid #ddd;
}
/* timeline-info */
.timeline-info{
position: relative;
display: block;
list-style-type: none;
}
.timeline-info::before{
content: '';
position: absolute;
left: 15px;
top: 0;
width: 1px;
height: 100%;
background-color: #ecf0f1;
}
.timeline-info > li{ position: relative; }
.timeline-info > li::before{
content: '';
position: absolute;
left: -32px;
top: 4px;
width: 15px;
height: 15px;
border-radius: 100%;
border: 3px solid #c0392b;
}
.timeline-info > li:nth-child(odd)::before{
content: '';
border: 3px solid #0090d9;
}
/* timeline category */
.timeline-info > li > .timeline-category{
position: relative;
display: block;
text-decoration: none;
}
.timeline-info > li > .timeline-category > .fa{ padding-left: 20px; }
.timeline-info > li:nth-child(even) > .timeline-category{ color: #c0392b; }
.timeline-info > li:nth-child(odd) > .timeline-category{ color: #0090d9; }
.timeline-info > li > .timeline-category::after{
font-family: 'FontAwesome';
content: '\f196';
padding-left: 15px;
font-weight: 300;
}
.timeline-info > li > .collapsed.timeline-category::after{
font-family: 'FontAwesome';
content: '\f147';
}
.timeline-info > li:nth-child(even) > .timeline-category:hover{
text-decoration: none;
color: #0aa699;
}
.timeline-info > li:nth-child(odd) > .timeline-category:hover{
text-decoration: none;
color: #736086;
}
.timeline-entry{ display: block; }
.timeline-entry .timeline-entry-meta{
font-size: 13px;
line-height: 20px;
font-weight: 300;
color: #7f8c8d;
}
.timeline-entry .timeline-entry-meta strong{
font-size: 13px;
font-weight: 700;
color: #2c3e50;
}
.timeline-entry .timeline-entry-meta span{
padding-left: 20px;
font-size: 12px;
font-weight: 400;
color: #333;
}
.timeline-entry .timeline-entry-content{
display: block;
padding: 20px;
margin-top: 15px;
margin-bottom: 30px;
border-radius: 4px;
border: 1px solid #ecf0f1;
background-color: #fff;
}
/* timeline entry content category */
.timeline-entry .list-category{ list-style-type: none; }
.timeline-entry .list-category > li{
position: relative;
padding-bottom: 8px;
padding-left: 15px;
font-size: 13px;
line-height: 16px;
font-weight: 300;
}
.timeline-entry .list-category > li::before{
font-family: 'FontAwesome';
content: '\f105';
position: absolute;
left: 0;
font-size: 12px;
color: #0090d9;
}
.timeline-entry .list-category > li > a:hover{ color: #faa445; }
/* dashboard layout */
.btn-rounded{
border-radius: 23px;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 12px;
padding-right: 12px;
}
.control-label span.required{ display: inline-block; }
.dashboard-accounting .dash-left{ background-color: #fff; }
.dashboard-accounting .dash-right{ background-color: #fafafa; }
.dashboard-accounting [class^="accounting-col-"],
.dashboard-accounting [class*="accounting-col-"]{
display: table-cell;
vertical-align: top;
padding: 20px;
}
.dashboard-accounting .accounting-col-100{ width: 100%; }
.dashboard-accounting .accounting-col-95{ width: 95%; }
.dashboard-accounting .accounting-col-90{ width: 90%; }
.dashboard-accounting .accounting-col-85{ width: 85%; }
.dashboard-accounting .accounting-col-80{ width: 80%; }
.dashboard-accounting .accounting-col-75{ width: 75%; }
.dashboard-accounting .accounting-col-70{ width: 70%; }
.dashboard-accounting .accounting-col-55{ width: 55%; }
.dashboard-accounting .accounting-col-45{ width: 45%; }
.dashboard-accounting .accounting-col-50{ width: 50%; }
.dashboard-accounting .accounting-col-40{ width: 40%; }
.dashboard-accounting .accounting-col-30{ width: 30%; }
.dashboard-accounting .accounting-col-25{ width: 25%; }
.dashboard-accounting .accounting-col-20{ width: 20%; }
.dashboard-accounting .accounting-col-15{ width: 15%; }
.dashboard-accounting .accounting-col-10{ width: 10%; }
.dashboard-accounting .accounting-col-5{ width: 5%; }
.dashboard-accounting [class^="accounting-col-"].bg-light,
.dashboard-accounting [class*="accounting-col-"].bg-light{ background-color: #fafafa; }
.dashboard-accounting [class^="accounting-col-"].bg-white,
.dashboard-accounting [class*="accounting-col-"].bg-white{ background-color: #fff; }
/* dashboard modal */
.modal-small .modal-content{
background-color: transparent;
box-shadow: none;
border: 0;
}
.modal-small .modal-content .modal-container{
width: 400px;
margin-left: auto;
margin-right: auto;
border: 1px solid #999;
border-radius: 4px;
background-color: #fff;
}
.modal-print .modal-content, .modal-print .modal-dialog{
background-color: #DDDDDD !important;
}
.modal-small .modal-content .modal-container .modal-header{ border-bottom: 0; }
.modal-small .modal-content .modal-container .modal-header .modal-title{
font-weight: 600;
text-align: center;
}
.modal-small .modal-content .modal-container .modal-footer{
border-top: 0;
margin-top: 0;
background-color: #fff;
}
.modal-small .modal-content .modal-infers,
.modal-small .modal-content .modal-infers .modal-footer{
background-color: #34495e;
border: 0;
}
.modal-small .modal-content .modal-infers .modal-header button,
.modal-small .modal-content .modal-infers .modal-header .modal-title{
color: #fff;
opacity: 1;
text-shadow: none;
}
.modal-small .modal-content .modal-infers .form-control{
color: #fff;
background-color: #22313F;
border-color: #22313F;
}
.modal-small .modal-content .modal-infers .modal-footer{
text-align: center;
padding-bottom: 30px;
}
/* dashboard active state */
.set-non-active,
.set-non-active:hover,
.set-non-active:focus,
.set-non-active:active{
display: block;
width: 30px;
height: 30px;
border-radius: 100%;
text-align: center;
font-size: 14px;
line-height: 28px;
color: #bdc3c7;
border: 1px solid #bdc3c7;
}
.set-active,
.set-active:hover,
.set-active:focus,
.set-active:active{
display: block;
width: 30px;
height: 30px;
border-radius: 100%;
text-align: center;
color: #0090d9;
font-size: 14px;
line-height: 28px;
border: 1px solid #0090d9;
}
/*
**
** dashboard
** 31-05-2015
*/
.dashboard-content{ padding: 0 0 30px; }
.dashboard-content a{ text-decoration: none; }
.dashboard-content a:hover{ text-decoration: none; }
.dashboard-content a:hover > .content-box::after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .15);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.dashboard-content.content-small .content-box{
min-height: 94px;
padding: 15px;
}
.dashboard-content.content-small .content-box h2{
font-size: 28px;
line-height: 32px;
}
.dashboard-content.content-small .content-box h2 span{
font-size: 12px;
line-height: 18px;
font-weight: 400;
padding: 5px 0;
color: rgba(0,0,0,.45);
}
.dashboard-content .content-box{
position: relative;
width: auto;
padding: 30px;
min-height: 185px;
height: auto;
text-align: center;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
}
.dashboard-content .content-box *{
position: relative;
z-index: 3;
}
.dashboard-content .content-box h2{
display: block;
font-size: 78px;
line-height: 84px;
font-weight: 800;
margin-bottom: 0;
color: #fff;
}
.dashboard-content .content-box h2 span{
display: block;
font-size: 20px;
line-height: 22px;
font-weight: 400;
text-transform: uppercase;
padding: 10px 0;
color: rgba(0,0,0,.35);
}
.content-box.content-box-green,
.content-box.content-box-blue,
.content-box.content-box-purple,
.content-box.content-box-red,
.content-box.content-box-orange{ color: #fff; }
.content-box.content-box-green{ background-color: #0AA699; }
.content-box.content-box-blue{ background-color: #0090D9; }
.content-box.content-box-purple{ background-color: #736086; }
.content-box.content-box-red{ background-color: #F35958; }
.content-box.content-box-orange{ background-color: #FBB05E; }
/* open data kit */
.form-odk-input{
display: inline-block;
}
.form-odk-input small{
display: block;
}
.navbar-odk{
padding-left: 0;
padding-right: 0;
}
.navbar-odk > li > a{
padding: 10px 14px;
border-radius: 4px;
}
.navbar-odk > li > a:hover,
.navbar-odk > li > a:focus{
background-color: #0090D9;
color: #fff;
}
.form-odk-container::before,
.form-odk-container::after{
content: '';
display: table;
clear: both;
}
.form-odk-container{
position: relative;
background-color: #fff;
border-radius: 4px;
}
.form-odk-container .form-horizontal .control-label{ text-align: left; }
.form-odk-padd-30{
padding: 30px;
margin: 5px 0 0;
}
.form-odk-padd-10{ padding: 10px 30px; }
.form-odk-padd-20{ padding: 20px 30px; }
.form-odk-padd-30::before,
.form-odk-padd-30::after{
content: '';
display: table;
clear: both;
}
.form-odk-hidden-input{
border: none;
box-shadow: none;
border-radius: 0;
border-bottom: 1px solid #f9f9f9;
}
.form-odk-hidden-input:focus{
box-shadow: none;
border-color: #0AA699;
}
.form-odk-hidden-input.input-lg{
font-size: 30px;
color: #3d566e;
font-weight: 600;
padding-left: 9px;
}
.form-odk-hidden-input.form-control:-moz-placeholder {
color: #ddd;
font-weight: 400;
}
.form-odk-hidden-input.form-control::-moz-placeholder {
color: #ddd;
opacity: 1;
font-weight: 400;
}
.form-odk-hidden-input.form-control:-ms-input-placeholder {
color: #ddd;
font-weight: 400;
}
.form-odk-hidden-input.form-control::-webkit-input-placeholder {
color: #ddd;
font-weight: 400;
}
.form-input-container:hover,
.form-input-container:focus{
box-shadow: 1px 1px 3px 2px #ddd;
background-color: #fafafa;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-input-container .panel-collapse{
margin-top: 10px;
padding: 20px 0;
border-top: 1px solid #ddd;
}
.form-input-container .padd-right-20{ padding-right: 20px; }
.itemgroup{ background-color: #fafafa; }
.form-icon-container{
position: relative;
height: 150px;
max-width: 195px;
background-color: #fafafa;
}
.form-input-container.bg-black{
background-color: #34495e;
border-bottom: 1px solid #2c3e50;
}
.form-input-container.bg-black:hover,
.form-input-container.bg-black:focus{
box-shadow: none;
background-color: #2c3e50;
}
.form-icon-first,
.form-icon-second{
position: absolute;
font-size: 68px;
line-height: 68px;
}
.form-icon-first{
left: 10px;
top: 10px;
color: #F35958;
}
.form-icon-second{
right: 10px;
bottom: 10px;
color: #736086;
}
.form-icon-first + span{
position: absolute;
left: 50%;
top: 50%;
width: 26px;
margin-left: -13px;
margin-top: -14px;
font-size: 18px;
line-height: 18px;
text-align: center;
text-transform: uppercase;
}
.file-upload {
position: relative;
overflow: hidden;
}
.file-upload input.unggah {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
/* header action */
.header-action{
position: relative;
width: auto;
padding: 60px 120px 40px;
min-height: 300px;
font-size: 16px;
line-height: 24px;
font-weight: 300;
text-align: center;
color: #fff;
background-color: #fff;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-ms-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-repeat: no-repeat;
background-position: center center;
}
.header-action *{
position: relative;
z-index: 3;
}
.header-action::after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(52, 73, 94, 0.7);
}
.header-action h2{
color: #fff;
text-transform: uppercase;
font-weight: 600;
}
.header-action p{ padding: 10px 0; }
.header-action .btn-link{
text-decoration: underline;
color: #fff;
}
.header-action .btn-link:hover,
.header-action .btn-link:focus{
color: #fff;
text-decoration: none;
}
.content-action{ padding: 70px 0 20px; }
/* js treeview */
#rkp-content-response,
#rkp-treeview,
#jstree,
.jstree-container-ul{
display: block;
max-width: 100%;
}
.jstree-node{
display: block;
max-width: 100%;
word-wrap: break-word;
}
.jstree-item{
display: inline-block;
height: auto;
min-height: 12px;
}
.jstree-anchor{
display: inline-block;
white-space: normal;
word-wrap: break-word;
height: auto;
min-height: 12px;
}
/* treeview nav tab */
.treeview-nav-tabs .nav-tabs{ border-bottom: 1px solid #ddd; }
.treeview-nav-tabs .nav-tabs > li > a{
padding: 22px 18px;
margin-right: 0;
line-height: 1.428571429;
border: 0 solid transparent;
border-radius: 0;
color: #08c;
}
.treeview-nav-tabs .nav-tabs > li > a:hover {
color: #999;
background-color: #fff;
}
.treeview-nav-tabs .nav-tabs > li > a:hover::after,
.treeview-nav-tabs .nav-tabs > li.active > a::after,
.treeview-nav-tabs .nav-tabs > li.active > a:hover::after,
.treeview-nav-tabs .nav-tabs > li.active > a:focus::after{
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 2px;
background-color: #f35958;
}
.treeview-nav-tabs .nav-tabs > li.active > a,
.treeview-nav-tabs .nav-tabs > li.active > a:hover,
.treeview-nav-tabs .nav-tabs > li.active > a:focus{
color: #f35958;
background-color: #fff;
border: 0 solid #ddd;
border-bottom: 1px solid #ddd;
}
.treeview-nav-tabs .nav-tabs > .active > a::before,
.treeview-nav-tabs .nav-tabs > .active > a:hover::before,
.treeview-nav-tabs .nav-tabs > .active > a:focus::before{
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 5px;
height: 5px;
margin-left: -5px;
border-top: 0 solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #f35958;
border-left: 5px solid transparent;
}
/*********
** PRINT MATRIK KEUANGAN
***NN*****/
.index-content .content-box {
position: relative;
width: auto;
padding: 15px;
height: auto;
min-height: 90px;
line-height: 20px;
font-size: 16px;
font-weight: bold;
text-align: left;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
vertical-align: middle;
margin-top: 15px;
}
.width80 {
float:left;
width:80%;
}
.circle-icon {
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
margin:auto 0px;
background: #0090D9;
color: #fff;
border-radius: 50%;
cursor: pointer;
}
.circle-icon:hover {
background: #0070b9;
cursor: pointer;
}
.circle-icon a {
color: #fff;
text-decoration: none;
}
/*print*/
.wrapper{
position: relative;
width: 100%;
display: table;
padding: 25px 0;
}
.page-header{
margin-top: 10px;
}
.print-page-title{
display: block;
margin: 0px auto;
}
.print-page-title h2 {
position: relative;
display: table;
margin: 0 auto;
text-align: center;
font-size: 16px;
font-weight: bolder;
}
.print-head-number {
float: right;
width: 120px;
height: auto;
margin: 0 auto;
text-align: center;
background-color: #cfcfcf;
padding:13px;
border-radius: 5px;
}
.print-head-number p { margin-bottom: 0; }
.matrik-print-container{
background-color: #fff;
color: #000;
margin-bottom: 30px;
padding-bottom: 30px !important;
}
.matrik-print-container.a4-potrait{
width:780px;
min-height:1078px;
padding-top: 30px !important;
margin:0 auto;
}
.matrik-print-container.a4-landscape{
width:1078px;
min-height:780px;
padding-top: 30px !important;
margin:0 auto;
}
.matrik-print {
width: 100%;
padding: 0px auto;
background-color: #fff;
color: #000;
font-size: 12px;
}
.matrik-print.a4-potrait{
width:720px;
min-height:1018px;
margin: 0 auto !important;
}
.matrik-print.a4-landscape{
width:1018px;
min-height:720px;
margin: 0 auto !important;
}
.matrik {
display: table;
width: 100%;
background: #fff;
font-size: 13px;
page-break-inside:auto;
-fs-table-paginate: paginate;
}
.matrik-scale {
-webkit-transform: translateX(-80px) scale(0.85,0.85);
-moz-transform: translateX(-80px) scale(0.85,0.85);
-ms-transform: translateX(-80px) scale(0.85,0.85);
-o-transform: translateX(-80px) scale(0.85,0.85);
transform: translateX(-80px) scale(0.85,0.85);
}
.matrik > tbody > tr, .matrik > tfoot > tr, .matrik > thead > tr, .matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik > thead > tr > td{
page-break-inside:avoid; page-break-after:auto;
}
.matrik > thead {display: table-header-group;}
.matrik > thead > tr > th, .matrik > tbody > tr > th,.matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik tfoot > tr > th { border: 1px solid #000 !important; }
.matrik > thead > tr > th, .matrik > tbody > tr > th, .matrik > tfoot > tr > th, .matrik > thead > tr > td, .matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik > tfoot > tr > th {
border: 1px solid #000 !important;
line-height: 1.42857;
padding: 4px !important;
vertical-align: top;
font-size: 10px !important;
}
.no-border > tbody > tr > td, .no-border > tr > td {
padding: 3px;
border: 1px solid transparent;
}
.table-tanda-tangan{
width:100%;
border:none;
}
.table-tanda-tangan tr > td > p{font-size: 12px !important;}
.table-tanda-tangan > tbody > tr > td, .table-tanda-tangan > tr > td, .table-tanda-tangan > tr > td{
padding: 3px;
border: 1px solid transparent;
font-size: 12px !important;
}
.matrik-content { width: 100%; }
.head-side-left {
margin-left: 60px;
padding-top: 45px;
}
.head-side-right { margin-left: 60px; }
.head-descrip { font-size: 12px; }
.head-descrip td {
padding: 3px;
vertical-align: top;
}
table { page-break-after:auto; }
table tr { page-break-inside:always; page-break-after:auto; }
table td { page-break-inside:avoid; page-break-after:auto; }
table > thead { display:table-header-group; }
table > tfoot { display:table-footer-group; }
.matrik > tbody > tr > th,
.matrik > tbody > tr.th-2 > td,
table.matrik > tbody > tr.th-3 > td {
text-align: center;
font-weight: bold;
font-size: 10px;
vertical-align: middle;
}
table.matrik > tbody {
font-size: 10px;
font-weight: 400;
}
table.matrik > tbody > tr.matrik-table-footer, table.matrik > tbody > tr.matrik-table-footer > td {
font-weight: 900;
color: #000;
border:1px solid #000 !important;
}
table.matrik > tbody > tr.matrik-table-footer > td.matrik-jumlah { text-align: center; border:1px solid #000 !important;}
tr.bidang-title-1{
background-color: #7f9fbe;
font-size: 14px;
font-weight: bold;
}
tr.bidang-title-2{
font-weight: bold;
font-size: 14px;
}
tr.sub-bidang{
background-color: #fbc06e;
font-weight: bold;
}
tr.bidang-title > td { font-weight: bold; }
.matrik-content-left,
.matrik-content-right{
padding: 5px;
}
.matrik-content-left{ float: left; }
.matrik-content-right{ float: right; }
.matrik-content-left .matrik-footer, .matrik-content-right .matrik-footer, .matrik-content-right-tanggal .matrik-footer{padding:0px 20px;}
.matrik-content-right-tanggal{float: right;margin-top:30px;text-align: center;}
.matrik-content-right.center, .matrik-content-left.center { text-align: center; }
p.name-ttd {
width: 100%;
margin-top: 60px;
text-align: center;
text-decoration: underline;
}
.bold-under {
font-weight: bolder;
text-decoration: underline;
font-size: 14px;
}
img.wrap-logo {
float:left;
margin:0 auto;
height:100px;
width: auto;
padding:0px 10px;
}
.box-menu-container > .nav-list > .active, .box-menu-container > .nav-list > .active > a:hover{
background-color:#0090d9;
color:#fff;
}
.box-menu-container > .nav-list > .active > a{
color:#fff;
}
.align-top { vertical-align: top; }
.loads{
position: absolute;
z-index: 999999;
left: 0;
top: 0;
width: 3px;
height: 3px;
border-radius: 100%;
background-color: #ddd;
display: inline-block;
-webkit-animation: load 2s infinite linear;
-moz-animation: load 2s infinite linear;
-o-animation: load 2s infinite linear;
animation: load 2s infinite linear;
}
/*NOTIFICATION*/
.notification-container{
position:absolute;
z-index:1;
background-color:none;
/*box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-moz-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-webkit-box-shadow:0px 5px 10px rgba(0,0,0,0.2);*/
margin-left:-400px;
}
.notification-content{
background-color:#fff;
color:#333;
width:500px;
height:auto;
overflow:auto;
margin-top:10px;
padding:0;
box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-moz-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-webkit-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
}
.notification-content:after{
content: '';
position: absolute;
border-style: solid;
border-width: 0 10px 10px;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 99;
margin-right: 25px;
top: 0;
right: 25px;
}
.notification-content .notif-title{
padding:5px 10px;
font-weight: bold;
border-bottom:1px solid #A3DCF7;
}
.notification-content .notif-title a{
font-weight: normal;
}
.notification-content > ul{
padding:5px 0px;background-color: #fff;
max-height:400px;
overflow:auto;
}
.notification-content > ul > li{
list-style: none;
border-bottom:1px solid #A3DCF7;
font-size:11px;
}
.notification-content > ul > li.unreaded{
background-color:#D9EFFA;
}
.notification-content > ul > li.readed{
background-color:#fff;
}
.notification-content > ul > li > a{
color:#333;
text-decoration: none;
display: block;
padding:5px 10px;
}
.notification-content > ul > li > a:hover{
color:#333;
text-decoration: none;
background-color: #0AA699;
color:#fff;
}
.notif-date{
color:#A9A9A9;
font-size:10px;
}
.notification-content .notif-footer{
padding:5px 10px;
text-align: center;
border-top:1px solid #A3DCF7;
}
.notification-content .notif-footer a{
display: block;
}
.notification-detail-content{
padding:20px;
}
.notification-item .view-item{
border-bottom:1px solid #f1f1f1;
margin:0;
}
.notification-item .unreaded{
background-color:#D9EFFA;
}
.notification-item .readed{
background-color:#fff;
}
.notification-item a{
display: block;
text-decoration: none;
padding:5px 10px;
}
.notification-item a:hover{
background-color:#0AA699;
text-decoration: none;
color:#fff;
}
.notification-item.odd{
background-color:#F5F5F5;
}
.notification-item.even{
background-color:#ffffff;
}
/*end:NOTIFICATION*/
@-moz-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-webkit-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-o-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-ms-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
.table.table-footer-cetak, table.table-footer-cetak tr, table.table-footer-cetak td, table.table-footer-cetak th{
border:none;
}
/*=========================================================
= PENGATURAN HALAMAN CETAK
===========================================================*/
@page a4-potrait{
size:8.5in 11in;
margin:.5in .5in .5in .5in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;
@top-left {
content: "Sistem Informasi Desa";
}
@top-right {
content: "Halaman " counter(page);
}
}
@page a4-potrait:first{margin-top:1in;}
@page a4-landscape{
size:11in 8.5in;
margin:.5in .5in .5in .5in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;
@top-left {
content: "Sistem Informasi Desa";
}
@top-right {
content: "Halaman " counter(page);
}
}
@page a4-landscape:first{margin-top:1in;}
div.a4-potrait {
page:a4-potrait;
}
div.a4-landscape {
page:a4-landscape;
}
/*@page :left {
margin-left: 0.2cm;
margin-right: 0.5cm;
}
@page :right {
margin-left: 0.5cm;
margin-right: 0.2cm;
}*/
.white-box{
background-color: #FFFFFF;
padding-right: 50px;
padding-left: 50px;
padding-top: 15px;
padding-bottom: 15px;
}
/*Dashboard*/ | assets/css/style.css | ========================================
TABLE OF CONTENT
========================================
[1. IMPORT FONTS]
[2. GLOBAL STYLE]
[3. NAVBAR]
[4. SIDEBAR]
[5. CONTENT HOME]
[6. CONTENT]
[7. SIDEBAR WIDGET]
[8. CONTACT]
[9. PORTFOLIO]
[10. BLOG]
[11. 404 PAGE]
[12. RESPONSIVE]
*/
html{ height: 100%; }
body{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 22px;
margin: 0;
padding: 50px 0 0;
color: #333;
background: #1b1e24;
scrollbar-face-color: #121212;
z-index: 1;
}
.big-font{
margin: top;
padding-top: 100pt;
font-size: 40pt;
font-weight: bold;
}
::-moz-selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::-webkit-selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::selection {
background: #DD1859;
color: #fff;
text-shadow: none;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background-color: #121212; }
::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: #666;
}
::-webkit-scrollbar-button { display: none; }
::-webkit-scrollbar-corner { background-color: #000; }
h1,h2,h3,h4,h5,h6{ font-family: 'Lato', sans-serif; }
input[type="text"]:focus,input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,input[type="url"]:focus,
input[type="checkbox"]:focus,input[type="radio"]:focus,
textarea:focus, select:focus, option:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
/* login */
.login {
background-color: #FFF;
width: 35%;
min-width: 300px;
max-width: 600px;
margin: 6% auto auto auto;
border-radius: 10px;
min-height: 200px;
}
.login h1 {
border-radius: 10px 10px 0 0;
background-color: #f5f5f5;
padding: 10px 20px;
font-size: 16px;
text-align: center;
}
.login form {
margin: 10px 20px;
}
.marg20-top{ margin-top: 20px !important; }
.label-important{
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
#frame{
overflow: hidden !important;
border:0px;
min-height: 1000px;
}
.text-bold{ font-weight: 700; }
.text-black{ color: #22262E; }
.text-grey{ color: #bdc3c7; }
.text-dark-grey{ color: #666; }
.padd-right-5{ padding-right: 5px; }
.marg-btm-20{ margin-bottom: 20px; }
.display-block{ display: block; }
.line-height-24{ line-height: 24px; }
/*
==================
[2. LOGIN PAGE]
==================
*/
.login{
margin-top: -50px;
width: 100%;
height: 100%;
background-color: #E5E9EC;
position: fixed;
z-index: 1;
}
.login-wrapper{
position:relative;
margin-top:10%;
}
.login-logo{
margin-bottom: 40px;
max-width: 200px;
}
.login-profile{
overflow: hidden;
float: left;
height: auto;
margin-right: 11px;
margin-top: 5px;
overflow: hidden;
width: 65px;
display:inline-block
}
.login-profile img{
width: 65px;
height: auto;
}
.login-form{
margin-top: -10px;
display: inline-block;
float:left;
min-width:320px;
}
.login-form h2{
font-size: 24px;
margin: 10px 0 15px;
font-weight: 400;
text-transform: capitalize;
color: #505458;
letter-spacing: -1px;
}
.login-form h2 span{
font-weight: 900;
letter-spacing: 1px;
}
.login-form h2 strong{
font-weight: 900;
color: #0090d9;
}
.login-form input[type="text"],
.login-form input[type="password"],.login-form button{ margin-right:10px; }
.login-form input[type="text"],
.login-form input[type="password"]{
font-family: 'Lato', sans-serif;
-webkit-appearance: none !important;
color: #282323;
outline: 0;
height: 16px;
padding: 6px 9px !important;
line-height: 15px;
font-size: 13px;
font-weight: normal;
vertical-align: top;
background-color: #fff;
min-height: 35px;
filter: none !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
-o-box-shadow: none !important;
box-shadow: none !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border: 1px solid #e5e9ec;
-webkit-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
-moz-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
-o-transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus{
border-color: #e5e9ec;
outline: 0 !important;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: #0090d9;
background-color:#f4f5f7;
}
.login-form label.checkbox{
position: relative;
margin-bottom: 0;
}
.login-form label.checkbox:hover{ cursor: pointer; }
.login-form label.checkbox input[type="checkbox"]{
visibility: hidden;
margin-right: 15px;
}
.login-form label.checkbox .check,
.login-form label .check{
cursor: pointer;
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
margin-right: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #BDC3C7;
}
.login-form label.checkbox .check:after,
.login-form label .check:after {
font-family: 'FontAwesome';
content: '\F00C';
position: absolute;
top: 1px;
left: 3px;
width: 7px;
height: 4px;
font-weight: 300;
font-size: 12px;
color: #fff;
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.login-form label.checkbox .check:hover::after,
.login-form label .check:hover::after {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: alpha(opacity=40);
opacity: 0.4;
}
.login-form label.checkbox input[type="checkbox"]:checked + .check{ background: #0090d9; }
.login-form label.checkbox input[type="checkbox"]:checked + .check:after{
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.login-form label.checkbox input[disabled="disabled"] + .check{
cursor: default;
background: #ECF0F1;
}
.login-form label.disabled{
cursor: default;
color: #CCCCCC;
}
.login-form label.disabled input[type="checkbox"] + .check,
.login-form label.disabled input[type="checkbox"]:checked + .check,
.login-form label.checkbox.disabled input[type="checkbox"]:checked + .check {
cursor: default;
background: #ECF0F1;
}
.login-form .copyright {
margin-top: 80px;
margin-left: -40%;
text-align: center;
font-size: 12px;
text-transform: uppercase;
color: #222;
font-weight: 300;
}
.login-form .copyright .code-name{
display: block;
width: 130px;
height: auto;
margin-bottom: 20px;
color: #222;
}
.field-required{
position: relative;
display: inline-block;
vertical-align: top;
font-size: 6px;
font-style: normal;
font-weight: normal;
line-height: 1;
color: #F35958;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.field-required:after{
font-family: 'FontAwesome';
content: '\f005';
}
/*
==================
[3. NAVBAR]
==================
*/
.navbar.navbar-default {
padding-left: 20px;
padding-right: 20px;
border: none;
}
.navbar-default .navbar-header{
position: relative;
display: inline-block;
}
.navbar-default .navbar-header .navbar-brand{
width: 220px;
position: relative;
left: -20px;
height: 65px;
top: 0;
font-size: 26px;
line-height: 30px;
color: #888;
background: #22262e;
}
.navbar-default .navbar-header .navbar-brand small{
position: absolute;
left: 8px;
top: 35px;
display: inline-block;
margin-left: 55px;
margin-top: -20px;
max-width: 100px;
font-size: 10px;
line-height: 16px;
font-weight: 400;
color: #aaa;
visibility: visible;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.navbar-header.navbar-header-collapse .navbar-brand{ width: 80px; }
.navbar-header.navbar-header-collapse .navbar-brand small{
visibility: hidden;
display: none;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.navbar-default .navbar-header .navbar-brand strong{ font-weight: 800; }
.logo{
position: absolute;
left: 16px;
top: 10px;
margin-top: 8px;
width: auto;
height: 25px;
}
.brandActive{
background: #22262e !important;
color: #ffffff !important;
}
.navbar-default .navbar-nav.navbar-right {
position: relative;
right: 20px;
float: right;
top: 0;
}
.navbar-default .navbar-nav.navbar-right > li:first-child{ display: none; }
.navbar-default .navbar-nav.navbar-right > li{ display: inline-block; }
.navbar-default .navbar-nav.navbar-right > li > a{
position: relative;
display: inline-block;
margin-top: -3px;
}
.navbar-default .navbar-nav.navbar-right > li > a > i[class^="fa"]{
font-size: 18px;
color: #666;
}
.navbar-default .navbar-nav.navbar-right > li > a img{
position: absolute;
display: inline;
right: 0;
top: 15px;
margin-left: 20px;
}
.navbar-default .navbar-nav.navbar-right > li > a span{
display: inline-block;
margin-right: 40px;
font-weight: 700;
}
/*.navbar-default .navbar-nav >*/
.navbar-default .navbar-nav .dropdown-menu > li > a{ padding: 10px 20px; }
.navbar-default .navbar-nav .dropdown-menu{
padding-top: 0;
padding-bottom: 0;
}
.navbar-default .navbar-nav .dropdown.open > a,
.navbar-default .navbar-nav .dropdown.open > a:hover,
.navbar-default .navbar-nav .dropdown.open > a:focus,
.navbar-default .navbar-nav .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .dropdown-menu > .active > a,
.navbar-default .navbar-nav .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .dropdown-menu > .active > a:focus{
background-color: #0aa699;
color: #fff;
}
/*
==================
[4. SIDEBAR]
==================
*/
.sidebar {
position: fixed;
z-index: 2;
top: 0;
left: 0;
bottom: 0;
width: 220px;
min-height: 100%;
height: 100%;
padding: 85px 15px 20px;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 15px;
line-height: 18px;
background-color: #1b1e24 !important;
overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 2px; }
.sidebar::-webkit-scrollbar-track { background-color: #121212; }
.sidebar::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: #666;
}
.sidebar::-webkit-scrollbar-button { display: none; }
.sidebar::-webkit-scrollbar-corner { background-color: #000; }
.sidebar .nav > .nav-header{
color:#1ABC9C;
padding:20px 0px 5px 0px;
border-bottom:2px solid #F35958;
font-weight: 700;
font-size: 15px;
line-height: 18px;
}
/* button collapse sidebar */
.collapse-sidebar{
position: absolute;
z-index: 999999;
right: 2px;
top: 15px;
}
/* sidebar collapse */
.collapse-sidebar.collapse-sidebar-in::before{
font-family: 'FontAwesome';
content: '\f138';
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.collapse-sidebar::before{
font-family: 'FontAwesome';
content: '\f137';
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/* sidebar when collapse */
.sidebar.sidebar-in{
width: 80px;
overflow-x: hidden;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a + div{
visibility: hidden;
display: none;
}
/*
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a{
position: relative;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a:hover span,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu > a:hover span{
position: absolute;
z-index: 9999;
left: 49px;
top: 0;
display: block;
min-width: 180px;
max-width: 200px;
padding: 10px 25px 10px 30px;
text-align: left;
visibility: visible;
border-radius: 0 4px 0 0;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a:hover .caret{
display: none;
visibility: hidden;
opacity: 0;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu div{
position: absolute;
z-index: 9998;
left: 65px;
top: 36px;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover .collapse,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover .in,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu:hover div{
visibility: visible;
display: block;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse > ul > li > a,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in > ul > li > a{
display: block;
min-width: 164px;
max-width: 200px;
padding-left: 20px;
border-radius: 0;
backgrounds-color: #111;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .collapse > ul,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu .in > ul,
.sidebar.sidebar-in .nav-pills.nav-stacked > .dropdownmenu div > ul{
position: relative;
}
*/
.sidebar.sidebar-in .copyright{
visibility: hidden;
display: none;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a{
padding-right: 0;
padding-left: 43px;
}
.sidebar .nav-pills.nav-stacked > li > a i + *,
.sidebar .nav-pills.nav-stacked > li > a .fa + *,
.sidebar .nav-pills.nav-stacked > li > a span{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a i + *,
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a .fa + *,
.sidebar.sidebar-in .nav-pills.nav-stacked > li > a span{
visibility: hidden;
display: none;
}
.sidebar .nav-pills > li > a{
position: relative;
padding-left: 40px;
color: #aaaaaa;
background: transparent;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.sidebar .nav-pills > li > a:hover{
background: rgba(0,0,0,0.3);
color: #ffffff;
}
.sidebar .nav-pills > .active > a, .sidebar .nav-pills > .active > a:hover{
background: rgba(0,0,0,0.3);
color: #ffffff;
}
.sidebar .nav-pills > li > a > i{ position: relative; }
.sidebar .nav-pills > li > a > i[class^="icon-"]:before,
.sidebar .nav-pills > li > a > i[class*="icon-"]:before{
content: "";
position: absolute;
left: -28px;
top: -15px;
width: 20px;
height: 20px;
background-size: 20px 20px;
}
.sidebar .nav-pills > li > a > i.icon-home:before{ background: url(../images/icon-web/home.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-penduduk:before{ background: url(../images/icon-web/group.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-peristiwa:before{ background: url(../img/clock.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-statistik:before{ background: url(../images/icon-web/stats_lines.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-senkom:before{ background: url(../images/icon-web/senkom.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-user:before{ background: url(../images/icon-web/administrator.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-globe:before{ background: url(../img/world.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-setting:before{ background: url(../images/icon-web/gear.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-other:before{ background: url(../img/history.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-keluarga:before{ background: url(../img/messenger.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-surat:before{ background: url(../img/copy.png) no-repeat center top; }
.sidebar .nav-pills > li > a > i.icon-pertanahan:before{ background: url(../img/certificate.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-pustaka:before{ background: url(../img/diary.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-odks:before{ background: url(../img/odks.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-odks-alt:before{ background: url(../img/notepad.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-highway:before{ background: url(../images/icon-web/highway.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-pustaka-alt:before{ background: url(../images/icon-web/bookmark.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-smsmk:before{ background: url(../img/mail.png) no-repeat center top;}
.sidebar .nav-pills > li > a > i.icon-kpi:before{ background: url(../images/icon-web/kpi.png) no-repeat center top;}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a:before{
font-family: 'FontAwesome';
content: "\f105";
margin-left: -6px;
margin-right: 8px;
font-size: 13px;
}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a{
position: relative;
border-radius: 0;
font-size: 14px;
color: #aaa;
background: rgba(0,0,0,0.3);
}
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li > a:hover,
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > .active > a,
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > .active > a:hover{ color: #fff; }
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li + li{ margin-top: 0; }
.sidebar .nav-pills > li.dropdownmenu .nav-stacked > li:last-child > a{ border-radius: 0 0 4px 4px; }
.sidebar .nav-pills > li.dropdownmenu > a.collapsed{
background: #1B1E24;
color: #aaa;
}
.sidebar .nav-pills > li.dropdownmenu > a,
.sidebar .nav-pills > li.dropdownmenu > a:hover{
border-radius: 4px 4px 0 0;
color: #fff;
background: rgba(0,0,0,0.3);
}
.sidebar .nav-pills > li.dropdownmenu > a > .caret{
margin-top:0.5em;
float:right;
}
.sidebar .copyright{
position: relative;
top: 60px;
padding-bottom: 30px;
text-align: center;
font-size: 10px;
color: #9a9a9a;
text-transform: uppercase;
}
.sidebar .copyright p{
padding-top: 0;
line-height: 12px;
}
.sidebar .copyright .code-name{
display: block;
width: 130px;
height: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 25px;
}
/*
==================
[5. CONTENT]
==================
*/
.content{
/*position: relative;*/
z-index: 1;
min-height: 900px;
margin-left: 220px;
margin-right: 0px;
background-color: #E5E9EC;
}
.content.content-collapse{ margin-left: 80px; }
.article{
padding: 25px 20px 0 20px;
background: transparent;
}
.article h2{
margin: 0 0 20px;
color: #22262E;
font-weight: 800;
/*letter-spacing: -1px;*/
}
.article h2 span{
color: #5E5E5E;
font-weight: 300;
}
.article h3{
margin-bottom: 20px;
font-weight: 900;
font-size: 22px;
line-height: 24px;
color: #22262E;
}
.article .breadcrumb{
display: inline-block;
background-color: transparent;
}
.article .breadcrumb > li > a{ color: #5E5E5E; }
.article .breadcrumb > .active, .article .breadcrumb > .active:hover {
font-weight: 600;
color: #22262E;
}
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
font-weight: 400;
color: #ccc;
}
.article .nav.nav-tabs{ margin-bottom:20px; }
/* box */
.box,
.grid{
clear: both;
margin-top: 0px;
margin-bottom: 25px;
padding: 0px;
}
.box:after,
.box:before,
.grid:after,
.grid:before{
content: "";
display: table;
}
.box-header, .grid-header {
margin-bottom: 0px;
border-bottom: 1px solid #dadada;
padding: 13px 15px 6px;
}
.box-header.border-none, .grid-header.border-none{
border-bottom: none;
}
.box-header h3 {
display: inline-block;
width: 70%;
font-size: 16px;
font-weight: 400;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.box-header h3 span { font-weight: 700; }
.box-header h3.uppercase,
.article h2.uppercase{ text-transform: uppercase; }
.box-header .box-option{
display: inline-block;
float: right;
width: 25%;
}
.box-header .box-option a{
position: relative;
font-size: 16px;
padding: 10px 12px;
display: block;
top: -10px;
right: 0;
text-align: right;
}
.box-header .box-option .btn-group{
position: relative;
top: -6px;
right: 0;
float: right;
}
.box-footer{ background-color: rgba(0,0,0,0.3); }
.box-content {
clear: both;
padding: 10px 25px 20px;
}
.box-content,
.box,
.grid-content,
.grid{
background-color: #fff;
color: #5E5E5E;
}
.box-content.light-blue,
.box.light-blue,
.grid-content.light-blue,
.grid.light-blue {
background-color: #58acf3 !important;
color: #fff;
}
.box-content.blue,
.box.blue,
.grid-content.blue,
.grid.blue {
background-color: #0090D9 !important;
color: #fff;
}
.box-content.red,
.box.red,
.grid-content.red,
.grid.red {
background-color: #f35958 !important;
color: #fff;
}
.box-content.yellow,
.box.yellow,
.grid-content.yellow,
.grid.yellow {
background-color: #ffb848 !important;
color: #fff;
}
.box-content.green, .box.green,
.grid-content.green, .grid.green {
background-color: #0aa699 !important;
color: #fff;
}
.box-content.light-purple,
.box.light-purple,
.grid-content.light-purple,
.grid.light-purple {
background-color: #852b99 !important;
color: #fff;
}
.box-content.purple,
.box.purple,
.grid-content.purple,
.grid.purple {
background-color: #736086 !important;
color: #fff;
}
.box-content.light-grey,
.box.light-grey,
.grid-content.light-grey,
.grid.light-grey { background-color: #fafafa !important; }
.box-content.dark-grey,
.box.dark-grey,
.grid-content.dark-grey,
.grid.dark-grey { background-color: #555 !important; }
.box-content.light-black,
.box.light-black,
.grid-content.light-black,
.grid.light-black{
background-color: #34495e !important;
color: #ddd;
}
.box-content.transparent,
.box.transparent,
.grid-content.transparent,
.grid.transparent{
background-color: transparent !important;
}
.grid.green .grid-header h3 a,
.grid.blue .grid-header h3 a,
.grid.red .grid-header h3 a,
.grid.purple .grid-header h3 a,
.grid.dark-grey .grid-header h3{
color: #fff;
text-decoration: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
-ms-transition: color 0.2s ease-in-out;
-o-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.grid.green .grid-header h3 a:hover,
.grid.blue .grid-header h3 a:hover,
.grid.red .grid-header h3 a:hover,
.grid.purple .grid-header h3 a:hover{
color: rgba(0,0,0,0.4);
text-decoration: none;
}
.grid.light-black .grid-header h3 a{ color: #aaa; }
.grid.light-black .grid-header h3 a:hover{
color: #fff;
text-decoration: none;
}
.row .col-md-12:nth-child(n+1):after,
.row .col-md-12:nth-child(n+1):before,
.row .col-md-6:nth-child(2n+1):after,
.row .col-md-6:nth-child(2n+1):before,
.row .col-md-4:nth-child(4n+1):after,
.row .col-md-4:nth-child(4n+1):before,
.row .col-md-3:nth-child(4n+1):after,
.row .col-md-3:nth-child(4n+1):before
.col-md-12:nth-child(n+1),
.col-md-6:nth-child(2n+1),
.col-md-4:nth-child(4n+1),
.col-md-4:nth-child(3n+1) {
clear: both;
display: table;
}
/* grid */
.grid-header{
margin-bottom: 15px;
position: relative;
}
.grid-header h3 {
display: inline-block;
margin: 0;
padding: 0;
width: 60%;
font-size: 18px;
font-weight: 600;
/*white-space: nowrap;*/
overflow: hidden;
text-overflow: ellipsis;
text-transform: capitalize;
}
.grid-header small{
position: absolute;
left: 15px;
bottom: -10px;
display: block;
color: #f1f1f1;
font-style: italic;
}
.grid-header .grid-menu{
display: inline-block;
float: right;
width: 35%;
}
/*
.grid-header .grid-menu a{
font-size: 16px;
padding: 10px 12px;
display: block;
position: relative;
top: -10px;
right: 0;
}*/
.grid-header .grid-menu .btn-group{
position: relative;
top: -2px;
right: 0;
float: right;
}
.grid-footer{
background-color: rgba(0,0,0,0.3);
padding: 12px 15px 5px;
}
.grid-content {
clear: both;
padding: 10px 10px 10px;
margin-top: 10px;
}
.grid-content.padding10{ padding: 10px 12px; }
.grid-content.padding15{ padding: 15px; }
.grid-img{
display: inline-block;
width: 26%;
float: left;
}
.grid-img img{
display: block;
width: 70px;
height: 70px;
vertical-align: top;
}
.grid-desc{
display: inline-block;
width: 72%;
float: left;
}
.grid-desc h3{
margin: 0 0 5px;
font-size: 16px;
line-height: 18px;
font-weight: 400;
}
.grid-desc p{
padding: 0;
margin: 0 0 5px;
font-size: 13px;
line-height: 14px;
}
/* clear row */
.row .col-lg-12:nth-child(1n+1),
.row .col-xs-12:nth-child(1n+1),
.row .col-lg-6:nth-child(2n+1),
.row .col-xs-6:nth-child(2n+1),
.row .col-lg-4:nth-child(3n+1),
.row .col-xs-4:nth-child(3n+1),
.row .col-lg-3:nth-child(4n+1),
.row .col-xs-3:nth-child(4n+1),
.row .col-lg-2:nth-child(6n+1),
.row .col-xs-2:nth-child(6n+1){
clear: both;
display: table;
}
/* daftar penduduk */
.daftar-penduduk{
text-align: center;
background: rgba(0,0,0,0.25);
color: #f1f1f1;
}
.daftar-penduduk img{
display: block;
width: 150px;
height: auto;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
margin-bottom: 20px;
}
.daftar-penduduk-title{ text-align: center; }
/* survei kemiskinan */
.bps,
.survei-container { position: relative; }
.bps:before{
content: "";
position: absolute;
left: -30px;
top: 12px;
border: 15px;
border-bottom: 15px solid transparent;
border-top: 15px solid transparent;
border-left: 15px solid transparent;
border-right: 15px solid #555;
}
.survei-container .loading{
position: absolute;
left: 23%;
top: 20px;
color: #fff;
}
.display-result{
margin: 20px 0;
color: #666;
}
.row > .items > .empty,
.row > .list-view > .items > .empty{ padding-left: 15px; }
.kemiskinan-search{ position: relative; }
.loading-keluarga{
position: absolute;
right: 30px;
top: 7px;
color: #999;
}
.table-divider{
display: block;
padding: 0 15px;
}
/* upload file */
.pemotretan{ margin-top: -3px; }
#uploadFile .qq-upload-button {
margin-top: 2px;
padding: 7px 12px;
border: 1px solid #665577;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background: #736086;
}
#uploadFile .qq-upload-button:hover,
#uploadFile .qq-upload-button:active,
#uploadFile .qq-upload-button:focus {
border: 1px solid #483c53;
background: #5f4f6e;
}
/*
#webcamContainer{
margin-top: -5px;
opacity: 0;
filter: alpha(opacity=0);
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: none;
}
.showWebcam{
opacity: 1 !important;
filter: alpha(opacity=100);
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: block !important;
}*/
#webcamContainer .btn{ margin-top: 15px; }
#hideWebcam{
display: none;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* FILTER CGRIDVIEW */
.filters .filter-container input[type="text"],
.filters .filter-container input[type="email"],
.filters .filter-container input[type="url"],
.filters .filter-container select {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.428571429;
color: #555555;
vertical-align: middle;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-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;
}
.filters .filter-container input[type="text"]:focus,
.filters .filter-container input[type="email"]:focus,
.filters .filter-container input[type="url"]:focus,
.filters .filter-container select:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.filters .filter-container input[type="text"]:-moz-placeholder,
.filters .filter-container input[type="email"]:-moz-placeholder,
.filters .filter-container input[type="url"]:-moz-placeholder { color: #999; }
.filters .filter-container input[type="text"]::-moz-placeholder,
.filters .filter-container input[type="email"]::-moz-placeholder,
.filters .filter-container input[type="url"]::-moz-placeholder {
color: #999;
opacity: 1;
}
.filters .filter-container input[type="text"]:-ms-input-placeholder,
.filters .filter-container input[type="email"]:-ms-input-placeholder,
.filters .filter-container input[type="url"]:-ms-input-placeholder { color: #999; }
.filters .filter-container input[type="text"]::-webkit-input-placeholder,
.filters .filter-container input[type="email"]::-webkit-input-placeholder,
.filters .filter-container input[type="url"]::-webkit-input-placeholder { color: #999; }
/* ANGGOTA KELUARGA */
.list-anggota-keluarga .summary{
margin-left: 15px;
margin-bottom: 15px;
text-align: left;
}
.keluarga-container{
background: #ffffff;
width: auto;
height: auto;
display: block;
}
.keluarga-container > .keluarga-img{
width: 72px;
height: 72px;
float: left;
margin-right: 20px;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-ms-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-repeat: no-repeat;
overflow: hidden;
}
.keluarga-container > .keluarga-text{
/*float: left;*/
text-align: left;
width: auto;
}
/* TABLE DETAIL VIEW */
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td { padding: 10px; }
.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th { background-color: #f0f0f0; }
/* TAMBAH PENDUDUK */
.form-tambah-penduduk input[type="text"],
.form-tambah-penduduk select{
clear: both;
display: table;
}
#Penduduk_tanggal_lahir{
clear: both;
display: table;
width: 100%;
}
@-moz-document url-prefix(){
.pemotretan{
margin-top: -27px;
}
}
/* tabs */
.tab-content{
padding: 20px;
background: #fff;
}
.dtl-keluarga h3{
text-align: center;
font-size: 18px;
line-height: 22px;
}
.dtl-keluarga table{
font-size: 14px;
line-height: 20px;
}
.dtl-keluarga table tr.odd{
background: #eaeaea;
}
/***************************************************************
*** LOADING BAR
****************************************************************/
#loadingbar {
position: fixed;
z-index: 2147483647;
top: 0;
left: -6px;
width: 1%;
height: 2px;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
background: #b91f1f;
}
#loadingbar.left {
left: 100%;
right: 0px;
width: 100%;
}
#loadingbar.up {
left: 0px;
top: 100%;
width: 5px;
bottom: 0px;
height: 100%;
}
#loadingbar.down {
left: 0;
width: 5px;
height: 0;
}
#loadingbar.waiting dd,
#loadingbar.waiting dt {
-webkit-animation: pulse 2s ease-out 0s infinite;
-moz-animation: pulse 2s ease-out 0s infinite;
-ms-animation: pulse 2s ease-out 0s infinite;
-o-animation: pulse 2s ease-out 0s infinite;
animation: pulse 2s ease-out 0s infinite;
}
#loadingbar dt {
width: 180px;
right: -80px;
clip: rect(-6px,90px,14px,-6px);
opacity: .6;
}
#loadingbar dd {
width: 20px;
right: 0;
clip: rect(-6px,22px,14px,10px);
opacity: .6;
}
#loadingbar dd,
#loadingbar dt {
position: absolute;
top: 0;
height: 2px;
-webkit-box-shadow: #B91F1F 1px 0 6px 1px;
-moz-box-shadow: #b91f1f 1px 0 6px 1px;
-ms-box-shadow: #b91f1f 1px 0 6px 1px;
box-shadow: #B91F1F 1px 0 6px 1px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
#loadingbar.left dt {
width: 180px;
left: -4px;
clip: rect(-6px,185px,14px,25px);
opacity: .6;
}
#loadingbar.left dd {
width: 20px;
left: 0;
margin: 0;
clip: rect(-6px,22px,14px,0px);
opacity: .6;
}
#loadingbar.left dd,
#loadingbar.left dt {
top: 0;
height: 2px;
}
#loadingbar.down dt {
top: auto;
bottom: -47px;
height: 180px;
clip: rect(-6px,20px,130px,-6px);
opacity: .6;
}
#loadingbar.down dd {
top: auto;
bottom: 0;
height: 20px;
margin: 0;
clip: rect(-6px,22px,20px,10px);
opacity: .6;
}
#loadingbar.down dd,
#loadingbar.down dt {
left: -5px;
right: auto;
width: 10px;
}
#loadingbar.up dt {
bottom: auto;
top: -10px;
height: 180px;
clip: rect(13px,20px,190px,-6px);
opacity: .6;
}
#loadingbar.up dd {
bottom: auto;
top: 0;
height: 20px;
margin: 0;
clip: rect(-6px,22px,25px,10px);
opacity: .6;
}
#loadingbar.up dd,
#loadingbar.up dt {
left: -5px;
right: auto;
width: 10px;
}
@keyframes pulse {
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-moz-keyframes pulse {
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-ms-keyframes pulse{
30% { opacity: 0.6; }
60% { opacity: 0; }
100% { opacity: 0.6; }
}
@-webkit-keyframes pulse{
30% { opacity:0.6; }
60% { opacity:0; }
100% { opacity:0.6; }
}
/**
* REPLACEMENT JQUERY-UI
*/
.ui-helper-hidden-accessible{ display:none !important; }
/**
* CHILD NAVBAR
*/
.child-navbar{ margin-bottom:10px; }
.child-navbar > .container-fluid{
padding: 0;
border-bottom: 1px solid #DDDDDD;
}
.child-navbar .nav,
.child-navbar .navbar-nav{ height: auto !important; }
.child-navbar .nav a{
padding: 10px;
color: #0AA699;
}
.child-navbar .nav a:hover{
background-color: #fff;
color: #34495E;
}
.child-navbar .nav a > .fa,
.child-navbar .nav a > .glyphicon{
margin-right: 4px;
color: #34495E;
}
.table-middle thead tr th{
vertical-align: middle;
text-align: center;
}
.table-scale{
-webkit-transform: translateX(-165px) scale(0.75,0.75);
-moz-transform: translateX(-165px) scale(0.75,0.75);
-ms-transform: translateX(-165px) scale(0.75,0.75);
-o-transform: translateX(-165px) scale(0.75,0.75);
transform: translateX(-165px) scale(0.75,0.75);
}
.table-scale2{
-webkit-transform: translateX(-220px) scale(0.72,0.72);
-moz-transform: translateX(-220px) scale(0.72,0.72);
-ms-transform: translateX(-220px) scale(0.72,0.72);
-o-transform: translateX(-220px) scale(0.72,0.72);
transform: translateX(-220px) scale(0.72,0.72);
}
.table-scale3{
-webkit-transform: translateX(-355px) scale(0.60,0.60);
-moz-transform: translateX(-355px) scale(0.60,0.60);
-ms-transform: translateX(-355px) scale(0.60,0.60);
-o-transform: translateX(-355px) scale(0.60,0.60);
transform: translateX(-355px) scale(0.60,0.60);
}
.table-scale4{
-webkit-transform: translateX(-280px) scale(0.66,0.66);
-moz-transform: translateX(-280px) scale(0.66,0.66);
-ms-transform: translateX(-280px) scale(0.66,0.66);
-o-transform: translateX(-280px) scale(0.66,0.66);
transform: translateX(-280px) scale(0.66,0.66);
}
.table-scale5{
-webkit-transform: translateX(-60px) scale(0.90,0.90);
-moz-transform: translateX(-60px) scale(0.90,0.90);
-ms-transform: translateX(-60px) scale(0.90,0.90);
-o-transform: translateX(-60px) scale(0.90,0.90);
transform: translateX(-60px) scale(0.90,0.90);
}
.table-responsive{
width: 100%;
margin-bottom: 15px;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
overflow-x: auto;
overflow-y: hidden;
border: 1px solid #ddd;
}
.table-responsive::-webkit-scrollbar { width: 5px !important; }
.table-responsive>.table{ margin-bottom: 0; }
.table-responsive>.table>thead>tr>th,
.table-responsive>.table>tbody>tr>th,
.table-responsive>.table>tfoot>tr>th,
.table-responsive>.table>thead>tr>td,
.table-responsive>.table>tbody>tr>td,
.table-responsive>.table>tfoot>tr>td{ white-space: nowrap; }
.table-responsive>.table-bordered{ border: 0; }
.table-responsive>.table-bordered>thead>tr>th:first-child,
.table-responsive>.table-bordered>tbody>tr>th:first-child,
.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.table-responsive>.table-bordered>thead>tr>td:first-child,
.table-responsive>.table-bordered>tbody>tr>td:first-child,
.table-responsive>.table-bordered>tfoot>tr>td:first-child{ border-left: 0; }
.table-responsive>.table-bordered>thead>tr>th:last-child,
.table-responsive>.table-bordered>tbody>tr>th:last-child,
.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.table-responsive>.table-bordered>thead>tr>td:last-child,
.table-responsive>.table-bordered>tbody>tr>td:last-child,
.table-responsive>.table-bordered>tfoot>tr>td:last-child{ border-right: 0; }
.table-responsive>.table-bordered>tbody>tr:last-child>th,
.table-responsive>.table-bordered>tfoot>tr:last-child>th,
.table-responsive>.table-bordered>tbody>tr:last-child>td,
.table-responsive>.table-bordered>tfoot>tr:last-child>td{ border-bottom: 0; }
/**
* KALKULASI PENDUDUK
*/
.kalkulasi-penduduk{
text-align: center;
vertical-align: middle;
}
.kalkulasi-penduduk .kalkulasi-penduduk-jumlah{
font-weight: bold;
font-size: 24px;
color: #000;
}
.kalkulasi-penduduk .kalkulasi-penduduk-label { text-transform: uppercase; }
.img-print{
position: absolute;
left: 60px;
top: 20px;
display: block;
width: 80px;
height: auto;
}
/* TREEVIEW PUSTAKA */
.treeview-pustaka{ width: 100%; }
.treeview-pustaka .pustaka-content{
position: relative;
padding-left: 0;
list-style-type: none;
}
.treeview-pustaka .pustaka-content li::before{
font-family: 'FontAwesome';
content: '\f196';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content li.no-child::before{
font-family: 'FontAwesome';
content: '\f147';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content li{
font-size: 14px;
line-height: 30px;
text-transform: uppercase;
font-weight: 400;
}
.treeview-pustaka .pustaka-content li span:hover,
.treeview-pustaka .pustaka-content ul li span:hover{ cursor: pointer; }
.treeview-pustaka .pustaka-content ul::before{
content: '';
position: absolute;
left: 6px;
top: 0;
height: 100%;
width: 1px;
background-color: #aaa;
}
.treeview-pustaka .pustaka-content ul{
position: relative;
padding-left: 23px;
list-style-type: none;
}
.treeview-pustaka .pustaka-content ul li{
position: relative;
font-size: 14px;
text-transform: uppercase;
font-weight: 400;
}
.treeview-pustaka .pustaka-content ul li::before{
font-family: 'FontAwesome';
content: '\f196';
font-weight: 400;
padding-right: 13px;
}
.treeview-pustaka .pustaka-content ul li::after{
content: '';
position: absolute;
left: -17px;
top: 13px;
width: 10px;
height: 1px;
background-color: #aaa;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content.ui-corner-all,
.ui-autocomplete{
z-index: 9999 !important;
width: auto !important;
min-width: 200px !important;
}
@media print{
body{padding:0px !important; margin:0px !important;font-size: 10pt;}
.img-print{ display: block !important; }
#area_cetak .suratkop .img-print{ top: 30px; }
#area_cetak .prmhnktp .img-print{ top: 35px; }
.matrik-print{font-size: 10pt !important;}
.table { page-break-inside:auto }
.table > thead > tr, .table > tbody > tr, .table > tfoot > tr { page-break-inside:avoid !important; page-break-after:auto }
.table > thead { display:table-header-group !important;}
.table > tfoot { display:table-footer-group !important;}
.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: 1px solid #000 !important;
line-height: 1.42857;
padding: 4px;
vertical-align: top;
font-size: 10pt !important;
}
hr{
border-top: 1px solid #000 !important;
}
}
/*
=============================
Date create: 08/05/2015;
Theme name: Keuangan;
==============================
*/
.dashboard-accounting{
display: table;
min-height: 20px;
width: 100%;
margin-bottom: 20px;
}
.dashboard-accounting::after{
content: '';
display: table;
clear: both;
margin-bottom: 20px;
}
/* accounting-left */
.dashboard-accounting .accounting-left{
display: table-cell;
vertical-align: top;
width: 65%;
padding: 20px;
background-color: #fff;
}
.accounting-info h3{
font-size: 32px;
line-height: 42px;
font-weight: 600;
}
.accounting-info h3 strong{
display: block;
font-weight: 600;
font-size: 11px;
line-height: 20px;
color: #34495e;
}
.accounting-info h3 span{
display: block;
font-weight: 300;
font-size: 11px;
line-height: 11px;
text-transform: capitalize;
color: #7f8c8d;
}
.right-border{
border-right: 1px solid #ecf0f1;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
/* progress bar */
.progress-content{ position: relative; }
.progress-content .progress{
display: block;
margin-bottom: 10px;
border-radius: 10px;
}
.progress-content .progress-bar{ border-radius: 10px; }
.progress-content .progress-information{ font-size: 12px; }
/* progress bar x-tra small */
.progress.progress-xs{
height: 5px;
margin-bottom: 0;
border-radius: 4px;
overflow: visible;
}
.progress.progress-xs .progress-bar{
position: relative;
border-radius: 4px;
}
.progress .progress-bar .progress-percentage{
position: absolute;
right: -15px;
top: -40px;
width: 30px;
height: 30px;
font-size: 10px;
font-weight: 300;
line-height: 30px;
text-align: center;
border-radius: 100%;
background-color: #0aa699;
}
.progress .progress-bar .progress-percentage::after{
content: '';
position: absolute;
left: 50%;
bottom: -5px;
width: 10px;
height: 10px;
margin-left: -10px;
border-top: 10px solid #0aa699;
border-right: 10px solid transparent;
border-bottom: 0 solid transparent;
border-left: 10px solid transparent;
}
.unvisible{ visibility: hidden; }
/* alert */
.alert-dismissable .close, .alert-dismissible .close { right: 0; }
/* nav tabs left */
.nav-tabs.nav-tabs-left{ }
.nav-tabs.nav-tabs-left > li{
display: block;
float: none;
}
.nav-tabs.nav-tabs-left > li > a{ border-right: 1px solid #ddd; }
/* accounting right */
.dashboard-accounting .accounting-right{
display: table-cell;
vertical-align: top;
width: 35%;
padding: 20px;
background-color: #fafafa;
}
.section-title{
position: relative;
display: block;
border-bottom: 1px solid #ecf0f1;
margin-bottom: 30px;
}
.section-title.border-none{ border-bottom: none; }
.section-title h2{
position: relative;
display: inline-block;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
font-size: 22px;
font-weight: 600;
}
.section-title h2::after{
content: '';
position: absolute;
left: 0;
bottom: -11px;
width: 100%;
height: 1px;
background-color: #bdc3c7;
}
.section-title h3{
font-size: 18px;
line-height: 22px;
margin-bottom: 8px;
}
.section-title h3 span{
font-weight: 400;
}
.section-title h4{
font-size: 14px;
line-height: 18px;
font-weight: 700;
margin-bottom: 5px;
}
.section-title-additional{
position: absolute;
left: 0;
bottom: -85px;
}
.section-title-additional h3{
font-size: 22px;
line-height: 28px;
}
.section-title-additional h3 span{
display: block;
font-size: 12px;
line-height: 16px;
color: #999;
}
.heading-title{
margin: 0;
padding: 0 0 9px;
height: 50px;
font-size: 16px !important;
line-height: 20px !important;
font-weight: 400 !important;
border-bottom: 1px solid #ddd;
}
/* timeline-info */
.timeline-info{
position: relative;
display: block;
list-style-type: none;
}
.timeline-info::before{
content: '';
position: absolute;
left: 15px;
top: 0;
width: 1px;
height: 100%;
background-color: #ecf0f1;
}
.timeline-info > li{ position: relative; }
.timeline-info > li::before{
content: '';
position: absolute;
left: -32px;
top: 4px;
width: 15px;
height: 15px;
border-radius: 100%;
border: 3px solid #c0392b;
}
.timeline-info > li:nth-child(odd)::before{
content: '';
border: 3px solid #0090d9;
}
/* timeline category */
.timeline-info > li > .timeline-category{
position: relative;
display: block;
text-decoration: none;
}
.timeline-info > li > .timeline-category > .fa{ padding-left: 20px; }
.timeline-info > li:nth-child(even) > .timeline-category{ color: #c0392b; }
.timeline-info > li:nth-child(odd) > .timeline-category{ color: #0090d9; }
.timeline-info > li > .timeline-category::after{
font-family: 'FontAwesome';
content: '\f196';
padding-left: 15px;
font-weight: 300;
}
.timeline-info > li > .collapsed.timeline-category::after{
font-family: 'FontAwesome';
content: '\f147';
}
.timeline-info > li:nth-child(even) > .timeline-category:hover{
text-decoration: none;
color: #0aa699;
}
.timeline-info > li:nth-child(odd) > .timeline-category:hover{
text-decoration: none;
color: #736086;
}
.timeline-entry{ display: block; }
.timeline-entry .timeline-entry-meta{
font-size: 13px;
line-height: 20px;
font-weight: 300;
color: #7f8c8d;
}
.timeline-entry .timeline-entry-meta strong{
font-size: 13px;
font-weight: 700;
color: #2c3e50;
}
.timeline-entry .timeline-entry-meta span{
padding-left: 20px;
font-size: 12px;
font-weight: 400;
color: #333;
}
.timeline-entry .timeline-entry-content{
display: block;
padding: 20px;
margin-top: 15px;
margin-bottom: 30px;
border-radius: 4px;
border: 1px solid #ecf0f1;
background-color: #fff;
}
/* timeline entry content category */
.timeline-entry .list-category{ list-style-type: none; }
.timeline-entry .list-category > li{
position: relative;
padding-bottom: 8px;
padding-left: 15px;
font-size: 13px;
line-height: 16px;
font-weight: 300;
}
.timeline-entry .list-category > li::before{
font-family: 'FontAwesome';
content: '\f105';
position: absolute;
left: 0;
font-size: 12px;
color: #0090d9;
}
.timeline-entry .list-category > li > a:hover{ color: #faa445; }
/* dashboard layout */
.btn-rounded{
border-radius: 23px;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 12px;
padding-right: 12px;
}
.control-label span.required{ display: inline-block; }
.dashboard-accounting .dash-left{ background-color: #fff; }
.dashboard-accounting .dash-right{ background-color: #fafafa; }
.dashboard-accounting [class^="accounting-col-"],
.dashboard-accounting [class*="accounting-col-"]{
display: table-cell;
vertical-align: top;
padding: 20px;
}
.dashboard-accounting .accounting-col-100{ width: 100%; }
.dashboard-accounting .accounting-col-95{ width: 95%; }
.dashboard-accounting .accounting-col-90{ width: 90%; }
.dashboard-accounting .accounting-col-85{ width: 85%; }
.dashboard-accounting .accounting-col-80{ width: 80%; }
.dashboard-accounting .accounting-col-75{ width: 75%; }
.dashboard-accounting .accounting-col-70{ width: 70%; }
.dashboard-accounting .accounting-col-55{ width: 55%; }
.dashboard-accounting .accounting-col-45{ width: 45%; }
.dashboard-accounting .accounting-col-50{ width: 50%; }
.dashboard-accounting .accounting-col-40{ width: 40%; }
.dashboard-accounting .accounting-col-30{ width: 30%; }
.dashboard-accounting .accounting-col-25{ width: 25%; }
.dashboard-accounting .accounting-col-20{ width: 20%; }
.dashboard-accounting .accounting-col-15{ width: 15%; }
.dashboard-accounting .accounting-col-10{ width: 10%; }
.dashboard-accounting .accounting-col-5{ width: 5%; }
.dashboard-accounting [class^="accounting-col-"].bg-light,
.dashboard-accounting [class*="accounting-col-"].bg-light{ background-color: #fafafa; }
.dashboard-accounting [class^="accounting-col-"].bg-white,
.dashboard-accounting [class*="accounting-col-"].bg-white{ background-color: #fff; }
/* dashboard modal */
.modal-small .modal-content{
background-color: transparent;
box-shadow: none;
border: 0;
}
.modal-small .modal-content .modal-container{
width: 400px;
margin-left: auto;
margin-right: auto;
border: 1px solid #999;
border-radius: 4px;
background-color: #fff;
}
.modal-print .modal-content, .modal-print .modal-dialog{
background-color: #DDDDDD !important;
}
.modal-small .modal-content .modal-container .modal-header{ border-bottom: 0; }
.modal-small .modal-content .modal-container .modal-header .modal-title{
font-weight: 600;
text-align: center;
}
.modal-small .modal-content .modal-container .modal-footer{
border-top: 0;
margin-top: 0;
background-color: #fff;
}
.modal-small .modal-content .modal-infers,
.modal-small .modal-content .modal-infers .modal-footer{
background-color: #34495e;
border: 0;
}
.modal-small .modal-content .modal-infers .modal-header button,
.modal-small .modal-content .modal-infers .modal-header .modal-title{
color: #fff;
opacity: 1;
text-shadow: none;
}
.modal-small .modal-content .modal-infers .form-control{
color: #fff;
background-color: #22313F;
border-color: #22313F;
}
.modal-small .modal-content .modal-infers .modal-footer{
text-align: center;
padding-bottom: 30px;
}
/* dashboard active state */
.set-non-active,
.set-non-active:hover,
.set-non-active:focus,
.set-non-active:active{
display: block;
width: 30px;
height: 30px;
border-radius: 100%;
text-align: center;
font-size: 14px;
line-height: 28px;
color: #bdc3c7;
border: 1px solid #bdc3c7;
}
.set-active,
.set-active:hover,
.set-active:focus,
.set-active:active{
display: block;
width: 30px;
height: 30px;
border-radius: 100%;
text-align: center;
color: #0090d9;
font-size: 14px;
line-height: 28px;
border: 1px solid #0090d9;
}
/*
**
** dashboard
** 31-05-2015
*/
.dashboard-content{ padding: 0 0 30px; }
.dashboard-content a{ text-decoration: none; }
.dashboard-content a:hover{ text-decoration: none; }
.dashboard-content a:hover > .content-box::after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .15);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.dashboard-content.content-small .content-box{
min-height: 94px;
padding: 15px;
}
.dashboard-content.content-small .content-box h2{
font-size: 28px;
line-height: 32px;
}
.dashboard-content.content-small .content-box h2 span{
font-size: 12px;
line-height: 18px;
font-weight: 400;
padding: 5px 0;
color: rgba(0,0,0,.45);
}
.dashboard-content .content-box{
position: relative;
width: auto;
padding: 30px;
min-height: 185px;
height: auto;
text-align: center;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
}
.dashboard-content .content-box *{
position: relative;
z-index: 3;
}
.dashboard-content .content-box h2{
display: block;
font-size: 78px;
line-height: 84px;
font-weight: 800;
margin-bottom: 0;
color: #fff;
}
.dashboard-content .content-box h2 span{
display: block;
font-size: 20px;
line-height: 22px;
font-weight: 400;
text-transform: uppercase;
padding: 10px 0;
color: rgba(0,0,0,.35);
}
.content-box.content-box-green,
.content-box.content-box-blue,
.content-box.content-box-purple,
.content-box.content-box-red,
.content-box.content-box-orange{ color: #fff; }
.content-box.content-box-green{ background-color: #0AA699; }
.content-box.content-box-blue{ background-color: #0090D9; }
.content-box.content-box-purple{ background-color: #736086; }
.content-box.content-box-red{ background-color: #F35958; }
.content-box.content-box-orange{ background-color: #FBB05E; }
/* open data kit */
.form-odk-input{
display: inline-block;
}
.form-odk-input small{
display: block;
}
.navbar-odk{
padding-left: 0;
padding-right: 0;
}
.navbar-odk > li > a{
padding: 10px 14px;
border-radius: 4px;
}
.navbar-odk > li > a:hover,
.navbar-odk > li > a:focus{
background-color: #0090D9;
color: #fff;
}
.form-odk-container::before,
.form-odk-container::after{
content: '';
display: table;
clear: both;
}
.form-odk-container{
position: relative;
background-color: #fff;
border-radius: 4px;
}
.form-odk-container .form-horizontal .control-label{ text-align: left; }
.form-odk-padd-30{
padding: 30px;
margin: 5px 0 0;
}
.form-odk-padd-10{ padding: 10px 30px; }
.form-odk-padd-20{ padding: 20px 30px; }
.form-odk-padd-30::before,
.form-odk-padd-30::after{
content: '';
display: table;
clear: both;
}
.form-odk-hidden-input{
border: none;
box-shadow: none;
border-radius: 0;
border-bottom: 1px solid #f9f9f9;
}
.form-odk-hidden-input:focus{
box-shadow: none;
border-color: #0AA699;
}
.form-odk-hidden-input.input-lg{
font-size: 30px;
color: #3d566e;
font-weight: 600;
padding-left: 9px;
}
.form-odk-hidden-input.form-control:-moz-placeholder {
color: #ddd;
font-weight: 400;
}
.form-odk-hidden-input.form-control::-moz-placeholder {
color: #ddd;
opacity: 1;
font-weight: 400;
}
.form-odk-hidden-input.form-control:-ms-input-placeholder {
color: #ddd;
font-weight: 400;
}
.form-odk-hidden-input.form-control::-webkit-input-placeholder {
color: #ddd;
font-weight: 400;
}
.form-input-container:hover,
.form-input-container:focus{
box-shadow: 1px 1px 3px 2px #ddd;
background-color: #fafafa;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-input-container .panel-collapse{
margin-top: 10px;
padding: 20px 0;
border-top: 1px solid #ddd;
}
.form-input-container .padd-right-20{ padding-right: 20px; }
.itemgroup{ background-color: #fafafa; }
.form-icon-container{
position: relative;
height: 150px;
max-width: 195px;
background-color: #fafafa;
}
.form-input-container.bg-black{
background-color: #34495e;
border-bottom: 1px solid #2c3e50;
}
.form-input-container.bg-black:hover,
.form-input-container.bg-black:focus{
box-shadow: none;
background-color: #2c3e50;
}
.form-icon-first,
.form-icon-second{
position: absolute;
font-size: 68px;
line-height: 68px;
}
.form-icon-first{
left: 10px;
top: 10px;
color: #F35958;
}
.form-icon-second{
right: 10px;
bottom: 10px;
color: #736086;
}
.form-icon-first + span{
position: absolute;
left: 50%;
top: 50%;
width: 26px;
margin-left: -13px;
margin-top: -14px;
font-size: 18px;
line-height: 18px;
text-align: center;
text-transform: uppercase;
}
.file-upload {
position: relative;
overflow: hidden;
}
.file-upload input.unggah {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
/* header action */
.header-action{
position: relative;
width: auto;
padding: 60px 120px 40px;
min-height: 300px;
font-size: 16px;
line-height: 24px;
font-weight: 300;
text-align: center;
color: #fff;
background-color: #fff;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-ms-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-repeat: no-repeat;
background-position: center center;
}
.header-action *{
position: relative;
z-index: 3;
}
.header-action::after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(52, 73, 94, 0.7);
}
.header-action h2{
color: #fff;
text-transform: uppercase;
font-weight: 600;
}
.header-action p{ padding: 10px 0; }
.header-action .btn-link{
text-decoration: underline;
color: #fff;
}
.header-action .btn-link:hover,
.header-action .btn-link:focus{
color: #fff;
text-decoration: none;
}
.content-action{ padding: 70px 0 20px; }
/* js treeview */
#rkp-content-response,
#rkp-treeview,
#jstree,
.jstree-container-ul{
display: block;
max-width: 100%;
}
.jstree-node{
display: block;
max-width: 100%;
word-wrap: break-word;
}
.jstree-item{
display: inline-block;
height: auto;
min-height: 12px;
}
.jstree-anchor{
display: inline-block;
white-space: normal;
word-wrap: break-word;
height: auto;
min-height: 12px;
}
/* treeview nav tab */
.treeview-nav-tabs .nav-tabs{ border-bottom: 1px solid #ddd; }
.treeview-nav-tabs .nav-tabs > li > a{
padding: 22px 18px;
margin-right: 0;
line-height: 1.428571429;
border: 0 solid transparent;
border-radius: 0;
color: #08c;
}
.treeview-nav-tabs .nav-tabs > li > a:hover {
color: #999;
background-color: #fff;
}
.treeview-nav-tabs .nav-tabs > li > a:hover::after,
.treeview-nav-tabs .nav-tabs > li.active > a::after,
.treeview-nav-tabs .nav-tabs > li.active > a:hover::after,
.treeview-nav-tabs .nav-tabs > li.active > a:focus::after{
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 2px;
background-color: #f35958;
}
.treeview-nav-tabs .nav-tabs > li.active > a,
.treeview-nav-tabs .nav-tabs > li.active > a:hover,
.treeview-nav-tabs .nav-tabs > li.active > a:focus{
color: #f35958;
background-color: #fff;
border: 0 solid #ddd;
border-bottom: 1px solid #ddd;
}
.treeview-nav-tabs .nav-tabs > .active > a::before,
.treeview-nav-tabs .nav-tabs > .active > a:hover::before,
.treeview-nav-tabs .nav-tabs > .active > a:focus::before{
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 5px;
height: 5px;
margin-left: -5px;
border-top: 0 solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #f35958;
border-left: 5px solid transparent;
}
/*********
** PRINT MATRIK KEUANGAN
***NN*****/
.index-content .content-box {
position: relative;
width: auto;
padding: 15px;
height: auto;
min-height: 90px;
line-height: 20px;
font-size: 16px;
font-weight: bold;
text-align: left;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
vertical-align: middle;
margin-top: 15px;
}
.width80 {
float:left;
width:80%;
}
.circle-icon {
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
margin:auto 0px;
background: #0090D9;
color: #fff;
border-radius: 50%;
cursor: pointer;
}
.circle-icon:hover {
background: #0070b9;
cursor: pointer;
}
.circle-icon a {
color: #fff;
text-decoration: none;
}
/*print*/
.wrapper{
position: relative;
width: 100%;
display: table;
padding: 25px 0;
}
.page-header{
margin-top: 10px;
}
.print-page-title{
display: block;
margin: 0px auto;
}
.print-page-title h2 {
position: relative;
display: table;
margin: 0 auto;
text-align: center;
font-size: 16px;
font-weight: bolder;
}
.print-head-number {
float: right;
width: 120px;
height: auto;
margin: 0 auto;
text-align: center;
background-color: #cfcfcf;
padding:13px;
border-radius: 5px;
}
.print-head-number p { margin-bottom: 0; }
.matrik-print-container{
background-color: #fff;
color: #000;
margin-bottom: 30px;
padding-bottom: 30px !important;
}
.matrik-print-container.a4-potrait{
width:780px;
min-height:1078px;
padding-top: 30px !important;
margin:0 auto;
}
.matrik-print-container.a4-landscape{
width:1078px;
min-height:780px;
padding-top: 30px !important;
margin:0 auto;
}
.matrik-print {
width: 100%;
padding: 0px auto;
background-color: #fff;
color: #000;
font-size: 12px;
}
.matrik-print.a4-potrait{
width:720px;
min-height:1018px;
margin: 0 auto !important;
}
.matrik-print.a4-landscape{
width:1018px;
min-height:720px;
margin: 0 auto !important;
}
.matrik {
display: table;
width: 100%;
background: #fff;
font-size: 13px;
page-break-inside:auto;
-fs-table-paginate: paginate;
}
.matrik-scale {
-webkit-transform: translateX(-80px) scale(0.85,0.85);
-moz-transform: translateX(-80px) scale(0.85,0.85);
-ms-transform: translateX(-80px) scale(0.85,0.85);
-o-transform: translateX(-80px) scale(0.85,0.85);
transform: translateX(-80px) scale(0.85,0.85);
}
.matrik > tbody > tr, .matrik > tfoot > tr, .matrik > thead > tr, .matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik > thead > tr > td{
page-break-inside:avoid; page-break-after:auto;
}
.matrik > thead {display: table-header-group;}
.matrik > thead > tr > th, .matrik > tbody > tr > th,.matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik tfoot > tr > th { border: 1px solid #000 !important; }
.matrik > thead > tr > th, .matrik > tbody > tr > th, .matrik > tfoot > tr > th, .matrik > thead > tr > td, .matrik > tbody > tr > td, .matrik > tfoot > tr > td, .matrik > tfoot > tr > th {
border: 1px solid #000 !important;
line-height: 1.42857;
padding: 4px !important;
vertical-align: top;
font-size: 10px !important;
}
.no-border > tbody > tr > td, .no-border > tr > td {
padding: 3px;
border: 1px solid transparent;
}
.table-tanda-tangan{
width:100%;
border:none;
}
.table-tanda-tangan tr > td > p{font-size: 12px !important;}
.table-tanda-tangan > tbody > tr > td, .table-tanda-tangan > tr > td, .table-tanda-tangan > tr > td{
padding: 3px;
border: 1px solid transparent;
font-size: 12px !important;
}
.matrik-content { width: 100%; }
.head-side-left {
margin-left: 60px;
padding-top: 45px;
}
.head-side-right { margin-left: 60px; }
.head-descrip { font-size: 12px; }
.head-descrip td {
padding: 3px;
vertical-align: top;
}
table { page-break-after:auto; }
table tr { page-break-inside:always; page-break-after:auto; }
table td { page-break-inside:avoid; page-break-after:auto; }
table > thead { display:table-header-group; }
table > tfoot { display:table-footer-group; }
.matrik > tbody > tr > th,
.matrik > tbody > tr.th-2 > td,
table.matrik > tbody > tr.th-3 > td {
text-align: center;
font-weight: bold;
font-size: 10px;
vertical-align: middle;
}
table.matrik > tbody {
font-size: 10px;
font-weight: 400;
}
table.matrik > tbody > tr.matrik-table-footer, table.matrik > tbody > tr.matrik-table-footer > td {
font-weight: 900;
color: #000;
border:1px solid #000 !important;
}
table.matrik > tbody > tr.matrik-table-footer > td.matrik-jumlah { text-align: center; border:1px solid #000 !important;}
tr.bidang-title-1{
background-color: #7f9fbe;
font-size: 14px;
font-weight: bold;
}
tr.bidang-title-2{
font-weight: bold;
font-size: 14px;
}
tr.sub-bidang{
background-color: #fbc06e;
font-weight: bold;
}
tr.bidang-title > td { font-weight: bold; }
.matrik-content-left,
.matrik-content-right{
padding: 5px;
}
.matrik-content-left{ float: left; }
.matrik-content-right{ float: right; }
.matrik-content-left .matrik-footer, .matrik-content-right .matrik-footer, .matrik-content-right-tanggal .matrik-footer{padding:0px 20px;}
.matrik-content-right-tanggal{float: right;margin-top:30px;text-align: center;}
.matrik-content-right.center, .matrik-content-left.center { text-align: center; }
p.name-ttd {
width: 100%;
margin-top: 60px;
text-align: center;
text-decoration: underline;
}
.bold-under {
font-weight: bolder;
text-decoration: underline;
font-size: 14px;
}
img.wrap-logo {
float:left;
margin:0 auto;
height:100px;
width: auto;
padding:0px 10px;
}
.box-menu-container > .nav-list > .active, .box-menu-container > .nav-list > .active > a:hover{
background-color:#0090d9;
color:#fff;
}
.box-menu-container > .nav-list > .active > a{
color:#fff;
}
.align-top { vertical-align: top; }
.loads{
position: absolute;
z-index: 999999;
left: 0;
top: 0;
width: 3px;
height: 3px;
border-radius: 100%;
background-color: #ddd;
display: inline-block;
-webkit-animation: load 2s infinite linear;
-moz-animation: load 2s infinite linear;
-o-animation: load 2s infinite linear;
animation: load 2s infinite linear;
}
/*NOTIFICATION*/
.notification-container{
position:absolute;
z-index:1;
background-color:none;
/*box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-moz-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-webkit-box-shadow:0px 5px 10px rgba(0,0,0,0.2);*/
margin-left:-400px;
}
.notification-content{
background-color:#fff;
color:#333;
width:500px;
height:auto;
overflow:auto;
margin-top:10px;
padding:0;
box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-moz-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
-webkit-box-shadow:0px 5px 10px rgba(0,0,0,0.2);
}
.notification-content:after{
content: '';
position: absolute;
border-style: solid;
border-width: 0 10px 10px;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 99;
margin-right: 25px;
top: 0;
right: 25px;
}
.notification-content .notif-title{
padding:5px 10px;
font-weight: bold;
border-bottom:1px solid #A3DCF7;
}
.notification-content .notif-title a{
font-weight: normal;
}
.notification-content > ul{
padding:5px 0px;background-color: #fff;
max-height:400px;
overflow:auto;
}
.notification-content > ul > li{
list-style: none;
border-bottom:1px solid #A3DCF7;
font-size:11px;
}
.notification-content > ul > li.unreaded{
background-color:#D9EFFA;
}
.notification-content > ul > li.readed{
background-color:#fff;
}
.notification-content > ul > li > a{
color:#333;
text-decoration: none;
display: block;
padding:5px 10px;
}
.notification-content > ul > li > a:hover{
color:#333;
text-decoration: none;
background-color: #0AA699;
color:#fff;
}
.notif-date{
color:#A9A9A9;
font-size:10px;
}
.notification-content .notif-footer{
padding:5px 10px;
text-align: center;
border-top:1px solid #A3DCF7;
}
.notification-content .notif-footer a{
display: block;
}
.notification-detail-content{
padding:20px;
}
.notification-item .view-item{
border-bottom:1px solid #f1f1f1;
margin:0;
}
.notification-item .unreaded{
background-color:#D9EFFA;
}
.notification-item .readed{
background-color:#fff;
}
.notification-item a{
display: block;
text-decoration: none;
padding:5px 10px;
}
.notification-item a:hover{
background-color:#0AA699;
text-decoration: none;
color:#fff;
}
.notification-item.odd{
background-color:#F5F5F5;
}
.notification-item.even{
background-color:#ffffff;
}
/*end:NOTIFICATION*/
@-moz-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-webkit-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-o-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@-ms-keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
@keyframes load{
0% {
width: 15px;
height: 15px;
background-color: #0090D9;
}
25%{
width: 25px;
height: 25px;
background-color: #F35958;
}
50%{
width: 35px;
height: 35px;
background-color: #736086;
}
75%{
width: 25px;
height: 25px;
background-color: #FBB05E;
}
100% {
width: 15px;
height: 15px;
background-color: #0AA699;
}
}
.table.table-footer-cetak, table.table-footer-cetak tr, table.table-footer-cetak td, table.table-footer-cetak th{
border:none;
}
/*=========================================================
= PENGATURAN HALAMAN CETAK
===========================================================*/
@page a4-potrait{
size:8.5in 11in;
margin:.5in .5in .5in .5in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;
@top-left {
content: "Sistem Informasi Desa";
}
@top-right {
content: "Halaman " counter(page);
}
}
@page a4-potrait:first{margin-top:1in;}
@page a4-landscape{
size:11in 8.5in;
margin:.5in .5in .5in .5in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;
@top-left {
content: "Sistem Informasi Desa";
}
@top-right {
content: "Halaman " counter(page);
}
}
@page a4-landscape:first{margin-top:1in;}
div.a4-potrait {
page:a4-potrait;
}
div.a4-landscape {
page:a4-landscape;
}
/*@page :left {
margin-left: 0.2cm;
margin-right: 0.5cm;
}
@page :right {
margin-left: 0.5cm;
margin-right: 0.2cm;
}*/
.white-box{
background-color: #FFFFFF;
padding-right: 50px;
padding-left: 50px;
padding-top: 15px;
padding-bottom: 15px;
}
/*Dashboard*/ | 0.340485 | 0.079997 |
.ui-tooltip, .qtip{
position: absolute;
left: -28000px;
top: -28000px;
display: none;
max-width: 280px;
min-width: 50px;
font-size: 10.5px;
line-height: 12px;
border-width: 1px;
border-style: solid;
}
/* Fluid class for determining actual width in IE */
.ui-tooltip-fluid{
display: block;
visibility: hidden;
position: static !important;
float: left !important;
}
.ui-tooltip-content{
position: relative;
padding: 5px 9px;
overflow: hidden;
text-align: left;
word-wrap: break-word;
overflow: hidden;
}
.ui-tooltip-titlebar{
position: relative;
min-height: 14px;
padding: 5px 35px 5px 10px;
overflow: hidden;
border-width: 0 0 1px;
font-weight: bold;
}
.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px !important; }
/*! Default close button class */
.ui-tooltip-titlebar .ui-state-default{
position: absolute;
right: 4px;
top: 50%;
margin-top: -9px;
cursor: pointer;
outline: medium none;
border-width: 1px;
border-style: solid;
}
* html .ui-tooltip-titlebar .ui-state-default{ top: 16px; } /* IE fix */
.ui-tooltip-titlebar .ui-icon,
.ui-tooltip-icon .ui-icon{
display: block;
text-indent: -1000em;
}
.ui-tooltip-icon, .ui-tooltip-icon .ui-icon{
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-decoration: none;
}
.ui-tooltip-icon .ui-icon{
width: 18px;
height: 14px;
text-align: center;
text-indent: 0;
font: normal bold 10px/13px Tahoma,sans-serif;
color: inherit;
background: transparent none no-repeat -100em -100em;
}
/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.ui-tooltip-focus{
}
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.ui-tooltip-hover{
}
/*! Default tooltip style */
.ui-tooltip-default{
border-color: #F1D031;
background-color: #FFFFA3;
color: #555;
}
.ui-tooltip-default .ui-tooltip-titlebar{
background-color: #FFEF93;
}
.ui-tooltip-default .ui-tooltip-icon{
border-color: #CCC;
background: #F1F1F1;
color: #777;
}
.ui-tooltip-default .ui-tooltip-titlebar .ui-state-hover{
border-color: #AAA;
color: #111;
}
/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip-shadow{
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
/**
* Twitter Bootstrap style.
*
* Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
* Does not work with IE 7.
*/
.ui-tooltip{
font-size: 13px;
line-height: 18px;
color: #333333;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.ui-tooltip .ui-tooltip-titlebar{
font-size: 18px;
line-height: 22px;
border-bottom: 1px solid #ccc;
background-color: transparent;
}
.ui-tooltip .ui-tooltip-titlebar .ui-state-default{
right: 9px; top: 49%;
border-style: none;
}
.ui-tooltip .ui-tooltip-icon{
background: white;
}
.ui-tooltip .ui-tooltip-icon .ui-icon{
width: auto;
height: auto;
float: right;
font-size: 20px;
font-weight: bold;
line-height: 18px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.ui-tooltip .ui-tooltip-icon .ui-icon:hover{
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
/* IE9 fix - removes all filters */
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-content,
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-titlebar{
filter: none;
-ms-filter: none;
} | UI/assets/css/jquery.qtip.css | .ui-tooltip, .qtip{
position: absolute;
left: -28000px;
top: -28000px;
display: none;
max-width: 280px;
min-width: 50px;
font-size: 10.5px;
line-height: 12px;
border-width: 1px;
border-style: solid;
}
/* Fluid class for determining actual width in IE */
.ui-tooltip-fluid{
display: block;
visibility: hidden;
position: static !important;
float: left !important;
}
.ui-tooltip-content{
position: relative;
padding: 5px 9px;
overflow: hidden;
text-align: left;
word-wrap: break-word;
overflow: hidden;
}
.ui-tooltip-titlebar{
position: relative;
min-height: 14px;
padding: 5px 35px 5px 10px;
overflow: hidden;
border-width: 0 0 1px;
font-weight: bold;
}
.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px !important; }
/*! Default close button class */
.ui-tooltip-titlebar .ui-state-default{
position: absolute;
right: 4px;
top: 50%;
margin-top: -9px;
cursor: pointer;
outline: medium none;
border-width: 1px;
border-style: solid;
}
* html .ui-tooltip-titlebar .ui-state-default{ top: 16px; } /* IE fix */
.ui-tooltip-titlebar .ui-icon,
.ui-tooltip-icon .ui-icon{
display: block;
text-indent: -1000em;
}
.ui-tooltip-icon, .ui-tooltip-icon .ui-icon{
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-decoration: none;
}
.ui-tooltip-icon .ui-icon{
width: 18px;
height: 14px;
text-align: center;
text-indent: 0;
font: normal bold 10px/13px Tahoma,sans-serif;
color: inherit;
background: transparent none no-repeat -100em -100em;
}
/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.ui-tooltip-focus{
}
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.ui-tooltip-hover{
}
/*! Default tooltip style */
.ui-tooltip-default{
border-color: #F1D031;
background-color: #FFFFA3;
color: #555;
}
.ui-tooltip-default .ui-tooltip-titlebar{
background-color: #FFEF93;
}
.ui-tooltip-default .ui-tooltip-icon{
border-color: #CCC;
background: #F1F1F1;
color: #777;
}
.ui-tooltip-default .ui-tooltip-titlebar .ui-state-hover{
border-color: #AAA;
color: #111;
}
/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip-shadow{
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
/**
* Twitter Bootstrap style.
*
* Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
* Does not work with IE 7.
*/
.ui-tooltip{
font-size: 13px;
line-height: 18px;
color: #333333;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.ui-tooltip .ui-tooltip-titlebar{
font-size: 18px;
line-height: 22px;
border-bottom: 1px solid #ccc;
background-color: transparent;
}
.ui-tooltip .ui-tooltip-titlebar .ui-state-default{
right: 9px; top: 49%;
border-style: none;
}
.ui-tooltip .ui-tooltip-icon{
background: white;
}
.ui-tooltip .ui-tooltip-icon .ui-icon{
width: auto;
height: auto;
float: right;
font-size: 20px;
font-weight: bold;
line-height: 18px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.ui-tooltip .ui-tooltip-icon .ui-icon:hover{
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
/* IE9 fix - removes all filters */
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-content,
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-titlebar{
filter: none;
-ms-filter: none;
} | 0.269422 | 0.066387 |
main{
margin-top: 10em;
}
table img{
width: 60%;
height: 20%;
}
#a{
display: none;
background-color: whitesmoke;
}
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=text],[type=mail],[type=number],[type=number], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #2d7adb;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 15em;
height: 4em;
font-weight: bolder;
}
input[type=submit]:hover {
background-color: #67a2eb;
}
.container {
border-radius: 5px;
padding: 20px;
}
.footer {
color: brown;
}
#table{
width: 80%;
border-collapse: collapse;
margin-left: 10%;
}
.remove{
width: 20px;
background-color: red;
}
.header{
/* text-align-last:right ; */
padding: 5px;
color: white;
background-color: navy;
font-weight:normal ;
}
th{
padding: 10px 5px ;
}
.header th {
height: 2.5em;;
}
#total{
display: flex;
justify-content: flex-end;
}
#totalTable{
border-top:3px solid navy ;
width: 100%;
max-width: 400px;
margin-right: 10%;
}
td:last-child , th:last-child{
text-align: right;
}
.NameList{
text-align: center;
padding-right: 20%;
}
.RemoveIcon{
margin-left: 37%;
text-align: center;
background-color: #80808042;
font-weight: bold;
margin-top: 40%;
color: #d71b2c;
font-size: 1.2em;
border-radius: 100%;
width: 35px;
height: 35px;
}
.RemoveIconn{
background-color: gray;
}
text{
text-align: center;
}
footer{
height: 35em;
margin-top: 4em;
}
.checkout {
border: none;
text-align: center;
margin: 3em 12em;
transition-duration: 0.4s;
cursor: pointer;
background-color: #2771d0;
color: black;
width: 15em;
height: 4em;
border-radius: 1.5em;
font-size: 1em;
font-weight: bolder;
}
.logo-img {
height: 85%;
padding-top: 5%;
}
li {
padding-top:4%;
}
#h2{
color: navy;
text-align: center;
margin-left: 20%;
font-size: 130%;
text-decoration: none
}
#gift {
padding-left: 9%;
}
#gift button{
border: none;
color: white;
text-align: center;
margin: 1em;
transition-duration: 0.4s;
cursor: pointer;
background-color: #2771d0;
color: black;
width: 20em;
height: 4em;
border-radius: 1em;
}
#gift a{
font-family: 'Ubuntu', sans-serif;
text-decoration: none;
font-size: 1.5em;
color: white;
} | css/cart.css | main{
margin-top: 10em;
}
table img{
width: 60%;
height: 20%;
}
#a{
display: none;
background-color: whitesmoke;
}
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=text],[type=mail],[type=number],[type=number], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #2d7adb;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 15em;
height: 4em;
font-weight: bolder;
}
input[type=submit]:hover {
background-color: #67a2eb;
}
.container {
border-radius: 5px;
padding: 20px;
}
.footer {
color: brown;
}
#table{
width: 80%;
border-collapse: collapse;
margin-left: 10%;
}
.remove{
width: 20px;
background-color: red;
}
.header{
/* text-align-last:right ; */
padding: 5px;
color: white;
background-color: navy;
font-weight:normal ;
}
th{
padding: 10px 5px ;
}
.header th {
height: 2.5em;;
}
#total{
display: flex;
justify-content: flex-end;
}
#totalTable{
border-top:3px solid navy ;
width: 100%;
max-width: 400px;
margin-right: 10%;
}
td:last-child , th:last-child{
text-align: right;
}
.NameList{
text-align: center;
padding-right: 20%;
}
.RemoveIcon{
margin-left: 37%;
text-align: center;
background-color: #80808042;
font-weight: bold;
margin-top: 40%;
color: #d71b2c;
font-size: 1.2em;
border-radius: 100%;
width: 35px;
height: 35px;
}
.RemoveIconn{
background-color: gray;
}
text{
text-align: center;
}
footer{
height: 35em;
margin-top: 4em;
}
.checkout {
border: none;
text-align: center;
margin: 3em 12em;
transition-duration: 0.4s;
cursor: pointer;
background-color: #2771d0;
color: black;
width: 15em;
height: 4em;
border-radius: 1.5em;
font-size: 1em;
font-weight: bolder;
}
.logo-img {
height: 85%;
padding-top: 5%;
}
li {
padding-top:4%;
}
#h2{
color: navy;
text-align: center;
margin-left: 20%;
font-size: 130%;
text-decoration: none
}
#gift {
padding-left: 9%;
}
#gift button{
border: none;
color: white;
text-align: center;
margin: 1em;
transition-duration: 0.4s;
cursor: pointer;
background-color: #2771d0;
color: black;
width: 20em;
height: 4em;
border-radius: 1em;
}
#gift a{
font-family: 'Ubuntu', sans-serif;
text-decoration: none;
font-size: 1.5em;
color: white;
} | 0.441191 | 0.087058 |
float: left;
width: 100%;
min-height: calc(100% - 50px);
}
#main.largecolumn {
width: 80%;
}
@media (max-width:960px) {
#main.largecolumn {
width: 100%;
}
}
.content {
width: 85%;
margin-bottom: 20px;
}
@media (max-width:1200px) {
.content {
float: none;
width: 90%;
}
}
.panel {
border: 0;
}
::-webkit-scrollbar {
max-width: 10px;
min-width: 4px;
width: 1%;
height: 4px;
transition: all 0.1s linear;
border-radius: 50%;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-thumb {
background: #a5abb1;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
.md-button.md-raised.twitch-button {
background-color: #6441a5;
color: white;
}
.md-button.md-raised:not([disabled]):hover.twitch-button {
background-color: #B9A3E3;
}
.header {
height: 50px;
width: 100%;
background-color: #19191F;
}
.header a, .header a:hover, .header a:visited, .header a:active {
text-decoration: none;
margin: 0 10px;
font-size: 20px;
opacity: 0.7;
color: white;
}
.header a.active {
opacity: 1;
}
.usermenu {
background-color: #19191F;
position: absolute;
top: 50px;
left: 0;
padding: 8px 15px;;
width: 200px;
z-index: 999;
color: white;
}
.fab-nobackground {
background-color: transparent !important;
}
.nobottom .md-errors-spacer, md-autocomplete[md-floating-label] md-input-container .md-errors-spacer {
display: none;
}
md-input-container.nobottom {
margin-bottom: 0;
padding-bottom: 0;
}
md-input-container.notop {
margin-top: 0;
}
.md-button.md-small {
line-height: 20px;
min-height: 0;
min-width: 0;
font-size: 12px;
padding: 5px 10px;
}
md-icon svg {
fill: rgba(0,0,0,0.54);
}
.md-button.md-primary.md-raised md-icon svg {
fill: white;
}
.menu-button md-icon svg {
fill: white;
}
md-checkbox.darkbg .md-icon {
border-color: rgba(255,255,255,0.54);
}
.hide-gt-s {
display: none;
}
@media (max-width:700px) {
.md-button.md-small-xs {
line-height: 20px;
min-height: 0;
min-width: 0;
font-size: 12px;
padding: 5px 10px;
}
.header a, .header a:hover, .header a:visited, .header a:active {
margin: 0 7px;
font-size: 15px;
}
.hide-s {
display: none;
}
.hide-gt-s {
display: inherit;
}
}
div.big-error-icon md-icon {
font-size: 60px;
}
div.big-error-icon md-icon svg {
fill: #c00;
}
div.big-error-icon {
width: 60px;
height: 60px;
margin: 10px;
}
div.big-error-icon md-icon svg {
width: 60px;
height: 60px;
}
/* footer */
div[ng-include] {
width: 100%;
}
.footer {
width: 100%;
background-color: white;
height: 36px;
}
.footer a, .footer a:visited, .footer a:hover, .footer a:active {
text-decoration: none;
color: #66757f;
font-weight: bold;
font-family: 'Open Sans', sans-serif;
}
.donate-btn {
height: 100%;
padding: 0 6px;
}
.donate-btn a {
height: 21px;
}
.donate-btn a img {
height: 100%;
}
.pixel {
display: none;
}
.contacts a, .contacts a:visited, .contacts a:hover, .contacts a:active {
text-decoration: none;
color: #66757f;
font-weight: bold;
font-family: 'Open Sans', sans-serif;
}
.rightbutton {
float: right;
margin: 0;
padding 0;
}
.closedialog {
display: block;
order: 2;
}
div.inline {
display: inline-block;
}
img.logo {
padding: 0;
width: 20px;
vertical-align: middle;
}
#forkongithub a {
background: #000;
color: #fff;
text-decoration: none;
text-align: center;
font-weight: bold;
padding: 5px 40px;
font-size: 1rem;
line-height: 2rem;
position: relative;
transition: 0.5s;
}
#forkongithub a:hover {
background: #c11;
color: #fff;
}
#forkongithub a::before, #forkongithub a::after {
content: "";
width: 100%;
display: block;
position: absolute;
top: 1px;
left: 0;
height: 1px;
background: #fff;
}
#forkongithub a::after {
bottom: 1px;
top: auto;
}
@media screen and (min-width: 700px) {
#forkongithub {
position: absolute;
display: block;
left: 0;
width: 200px;
overflow: hidden;
height: 200px;
}
#forkongithub a {
width: 200px;
position: absolute;
top: 60px;
left: -60px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
box-shadow: 4px 4px 10px rgba(0,0,0,0.8);
}
}
.leftpad {
padding-left: 8px;
} | html/css/base.css | float: left;
width: 100%;
min-height: calc(100% - 50px);
}
#main.largecolumn {
width: 80%;
}
@media (max-width:960px) {
#main.largecolumn {
width: 100%;
}
}
.content {
width: 85%;
margin-bottom: 20px;
}
@media (max-width:1200px) {
.content {
float: none;
width: 90%;
}
}
.panel {
border: 0;
}
::-webkit-scrollbar {
max-width: 10px;
min-width: 4px;
width: 1%;
height: 4px;
transition: all 0.1s linear;
border-radius: 50%;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-thumb {
background: #a5abb1;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
.md-button.md-raised.twitch-button {
background-color: #6441a5;
color: white;
}
.md-button.md-raised:not([disabled]):hover.twitch-button {
background-color: #B9A3E3;
}
.header {
height: 50px;
width: 100%;
background-color: #19191F;
}
.header a, .header a:hover, .header a:visited, .header a:active {
text-decoration: none;
margin: 0 10px;
font-size: 20px;
opacity: 0.7;
color: white;
}
.header a.active {
opacity: 1;
}
.usermenu {
background-color: #19191F;
position: absolute;
top: 50px;
left: 0;
padding: 8px 15px;;
width: 200px;
z-index: 999;
color: white;
}
.fab-nobackground {
background-color: transparent !important;
}
.nobottom .md-errors-spacer, md-autocomplete[md-floating-label] md-input-container .md-errors-spacer {
display: none;
}
md-input-container.nobottom {
margin-bottom: 0;
padding-bottom: 0;
}
md-input-container.notop {
margin-top: 0;
}
.md-button.md-small {
line-height: 20px;
min-height: 0;
min-width: 0;
font-size: 12px;
padding: 5px 10px;
}
md-icon svg {
fill: rgba(0,0,0,0.54);
}
.md-button.md-primary.md-raised md-icon svg {
fill: white;
}
.menu-button md-icon svg {
fill: white;
}
md-checkbox.darkbg .md-icon {
border-color: rgba(255,255,255,0.54);
}
.hide-gt-s {
display: none;
}
@media (max-width:700px) {
.md-button.md-small-xs {
line-height: 20px;
min-height: 0;
min-width: 0;
font-size: 12px;
padding: 5px 10px;
}
.header a, .header a:hover, .header a:visited, .header a:active {
margin: 0 7px;
font-size: 15px;
}
.hide-s {
display: none;
}
.hide-gt-s {
display: inherit;
}
}
div.big-error-icon md-icon {
font-size: 60px;
}
div.big-error-icon md-icon svg {
fill: #c00;
}
div.big-error-icon {
width: 60px;
height: 60px;
margin: 10px;
}
div.big-error-icon md-icon svg {
width: 60px;
height: 60px;
}
/* footer */
div[ng-include] {
width: 100%;
}
.footer {
width: 100%;
background-color: white;
height: 36px;
}
.footer a, .footer a:visited, .footer a:hover, .footer a:active {
text-decoration: none;
color: #66757f;
font-weight: bold;
font-family: 'Open Sans', sans-serif;
}
.donate-btn {
height: 100%;
padding: 0 6px;
}
.donate-btn a {
height: 21px;
}
.donate-btn a img {
height: 100%;
}
.pixel {
display: none;
}
.contacts a, .contacts a:visited, .contacts a:hover, .contacts a:active {
text-decoration: none;
color: #66757f;
font-weight: bold;
font-family: 'Open Sans', sans-serif;
}
.rightbutton {
float: right;
margin: 0;
padding 0;
}
.closedialog {
display: block;
order: 2;
}
div.inline {
display: inline-block;
}
img.logo {
padding: 0;
width: 20px;
vertical-align: middle;
}
#forkongithub a {
background: #000;
color: #fff;
text-decoration: none;
text-align: center;
font-weight: bold;
padding: 5px 40px;
font-size: 1rem;
line-height: 2rem;
position: relative;
transition: 0.5s;
}
#forkongithub a:hover {
background: #c11;
color: #fff;
}
#forkongithub a::before, #forkongithub a::after {
content: "";
width: 100%;
display: block;
position: absolute;
top: 1px;
left: 0;
height: 1px;
background: #fff;
}
#forkongithub a::after {
bottom: 1px;
top: auto;
}
@media screen and (min-width: 700px) {
#forkongithub {
position: absolute;
display: block;
left: 0;
width: 200px;
overflow: hidden;
height: 200px;
}
#forkongithub a {
width: 200px;
position: absolute;
top: 60px;
left: -60px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
box-shadow: 4px 4px 10px rgba(0,0,0,0.8);
}
}
.leftpad {
padding-left: 8px;
} | 0.245899 | 0.090213 |
Scope Class
========================================================================== */
.esdcseniorscampaign {
color: #2D2B2C !important;
}
/* ==========================================================================
Background Image Classes
========================================================================== */
.esdcseniorscampaign .esc-bg {
height: 350px;
width: 100%;
background: linear-gradient(to bottom, transparent 80%, #f9f9f9 100%), url("/images/hero-bg.jpg") no-repeat center;
background-size: cover;
}
/* ==========================================================================
Detail Elements Overide Class
========================================================================== */
.esdcseniorscampaign details summary {
border-radius: 0px !important;
background-color: red !important;
padding: 15px;
color: #fff;
font-weight: 600;
font-size: 100%;
}
.esdcseniorscampaign details[open] {
border-radius: 0px;
border: none;
}
.esdcseniorscampaign details[open] summary {
border-bottom: none;
margin-bottom: 15px;
}
.esdcseniorscampaign details ul {
margin: 0px 0px 0px 15px;
padding: 0px;
list-style: none;
}
.esdcseniorscampaign details ul li {
padding: 10px 0px 10px 0px;
}
.esdcseniorscampaign details ul li a {
color: #f1efef !important;
font-weight: 600 !important;
}
/* ==========================================================================
Detail Elements Color Classes
========================================================================== */
.esdcseniorscampaign details.esc-blue-0 {
background-color: rgba( 0, 33, 87, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-blue-0 summary {
background-color: rgb( 0, 33, 87 ) !important;
}
.esdcseniorscampaign details.esc-blue-1 {
background-color: rgba( 0, 91, 127, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-blue-1 summary {
background-color: rgb( 0, 91, 127 ) !important;
}
.esdcseniorscampaign details.esc-dark-0 {
background-color: rgba( 54, 54, 54, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-dark-0 summary {
background-color: rgb( 54, 54, 54 ) !important;
}
.esdcseniorscampaign details.esc-pink-0 {
background-color: rgba( 158, 0, 93, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-pink-0 summary {
background-color: rgb( 158, 0, 93 ) !important;
}
.esdcseniorscampaign details.esc-teal-0 {
background-color: rgba( 0, 116, 107, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-teal-0 summary {
background-color: rgb( 0, 116, 107 ) !important;
}
.esdcseniorscampaign details.esc-orange-0 {
background-color: rgba( 160, 65, 13, 0.8);
}
.esdcseniorscampaign details.esc-orange-0 summary {
background-color: rgb( 160, 65, 13) !important;
}
.esdcseniorscampaign details.esc-orange-1 {
background-color: rgba( 242, 101, 34, 0.8);
}
.esdcseniorscampaign details.esc-orange-1 summary {
background-color: rgb( 242, 101, 34) !important;
}
.esdcseniorscampaign details.esc-red-0 {
background-color: rgba( 100, 30, 22, 0.8);
}
.esdcseniorscampaign details.esc-red-0 summary {
background-color: rgb( 100, 30, 22) !important;
}
.esdcseniorscampaign details.esc-green-0 {
background-color: rgba( 62, 72, 54, 0.8);
}
.esdcseniorscampaign details.esc-green-0 summary {
background-color: rgb( 62, 72, 54 ) !important;
}
.esdcseniorscampaign details.esc-purple-0 {
background-color: rgba( 46, 49, 146, 0.8);
}
.esdcseniorscampaign details.esc-purple-0 summary {
background-color: rgb( 46, 49, 146 ) !important;
}
.esdcseniorscampaign details.esc-purple-1 {
background-color: rgba( 75, 0, 73, 0.8);
}
.esdcseniorscampaign details.esc-purple-1 summary {
background-color: rgb( 75, 0, 73 ) !important;
} | static/css/seniors-campaign.css | Scope Class
========================================================================== */
.esdcseniorscampaign {
color: #2D2B2C !important;
}
/* ==========================================================================
Background Image Classes
========================================================================== */
.esdcseniorscampaign .esc-bg {
height: 350px;
width: 100%;
background: linear-gradient(to bottom, transparent 80%, #f9f9f9 100%), url("/images/hero-bg.jpg") no-repeat center;
background-size: cover;
}
/* ==========================================================================
Detail Elements Overide Class
========================================================================== */
.esdcseniorscampaign details summary {
border-radius: 0px !important;
background-color: red !important;
padding: 15px;
color: #fff;
font-weight: 600;
font-size: 100%;
}
.esdcseniorscampaign details[open] {
border-radius: 0px;
border: none;
}
.esdcseniorscampaign details[open] summary {
border-bottom: none;
margin-bottom: 15px;
}
.esdcseniorscampaign details ul {
margin: 0px 0px 0px 15px;
padding: 0px;
list-style: none;
}
.esdcseniorscampaign details ul li {
padding: 10px 0px 10px 0px;
}
.esdcseniorscampaign details ul li a {
color: #f1efef !important;
font-weight: 600 !important;
}
/* ==========================================================================
Detail Elements Color Classes
========================================================================== */
.esdcseniorscampaign details.esc-blue-0 {
background-color: rgba( 0, 33, 87, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-blue-0 summary {
background-color: rgb( 0, 33, 87 ) !important;
}
.esdcseniorscampaign details.esc-blue-1 {
background-color: rgba( 0, 91, 127, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-blue-1 summary {
background-color: rgb( 0, 91, 127 ) !important;
}
.esdcseniorscampaign details.esc-dark-0 {
background-color: rgba( 54, 54, 54, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-dark-0 summary {
background-color: rgb( 54, 54, 54 ) !important;
}
.esdcseniorscampaign details.esc-pink-0 {
background-color: rgba( 158, 0, 93, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-pink-0 summary {
background-color: rgb( 158, 0, 93 ) !important;
}
.esdcseniorscampaign details.esc-teal-0 {
background-color: rgba( 0, 116, 107, 0.8 ) !important;
}
.esdcseniorscampaign details.esc-teal-0 summary {
background-color: rgb( 0, 116, 107 ) !important;
}
.esdcseniorscampaign details.esc-orange-0 {
background-color: rgba( 160, 65, 13, 0.8);
}
.esdcseniorscampaign details.esc-orange-0 summary {
background-color: rgb( 160, 65, 13) !important;
}
.esdcseniorscampaign details.esc-orange-1 {
background-color: rgba( 242, 101, 34, 0.8);
}
.esdcseniorscampaign details.esc-orange-1 summary {
background-color: rgb( 242, 101, 34) !important;
}
.esdcseniorscampaign details.esc-red-0 {
background-color: rgba( 100, 30, 22, 0.8);
}
.esdcseniorscampaign details.esc-red-0 summary {
background-color: rgb( 100, 30, 22) !important;
}
.esdcseniorscampaign details.esc-green-0 {
background-color: rgba( 62, 72, 54, 0.8);
}
.esdcseniorscampaign details.esc-green-0 summary {
background-color: rgb( 62, 72, 54 ) !important;
}
.esdcseniorscampaign details.esc-purple-0 {
background-color: rgba( 46, 49, 146, 0.8);
}
.esdcseniorscampaign details.esc-purple-0 summary {
background-color: rgb( 46, 49, 146 ) !important;
}
.esdcseniorscampaign details.esc-purple-1 {
background-color: rgba( 75, 0, 73, 0.8);
}
.esdcseniorscampaign details.esc-purple-1 summary {
background-color: rgb( 75, 0, 73 ) !important;
} | 0.443359 | 0.131145 |
@charset "utf-8";
.yunrong-aside{
position: absolute;
top:0;
bottom:0;
left:0;
width:230px;
z-index:99;
background-color:#12203d;
border-right: 1px solid #e5e5e5;
padding-top:70px;
}
.yunrong-article-box{
position: absolute;
top:0;
right:0;
bottom: 0;
left:0;
overflow:hidden;
z-index:1;
background-color:#fff;
}
.yunrong-article{
position: absolute;
top:35px;
bottom:0;
left:0;
right:0;
overflow:auto;
z-index:1;
}
.yunrong-aside,.yunrong-article-box,.dislpayArrow{
-moz-transition: all 0.2s ease 0s;
-webkit-transition: all 0.2s ease 0s;
-ms-transition: all 0.2s ease 0s;-o-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
@media (max-width: 767px) {
.page-container{ padding:15px}
}
/*导航*/
/*左侧菜单*/
.yunrong-aside .menu_dropdown dl{
margin-bottom:0;
}
.yunrong-aside .menu_dropdown dt{
display:block;
line-height:46px;
color:#fff;
padding:0 30px 0 70px;
cursor:pointer;
position:relative;
font-weight:normal;
}
.yunrong-aside .menu_dropdown dt .menu_dropdown-arrow{
position:absolute;
overflow: hidden;
top:0;
right:15px;
transition-duration:0.3s ;
transition-property:all;
}
.yunrong-aside .menu_dropdown dd{
display:none;
}
.yunrong-aside .menu_dropdown dt.selected .menu_dropdown-arrow{
transform: rotate(180deg);
}
.yunrong-aside .menu_dropdown dd.selected{
display:block;
margin-left:0;
}
.yunrong-aside .menu_dropdown ul{
padding:0;
}
.yunrong-aside .menu_dropdown li{
line-height:35px;
overflow:hidden;
zoom:1;
}
.yunrong-aside .menu_dropdown li a{
padding-left:15px;
display:block;
font-weight: bold;
margin:0;
}
.yunrong-aside .menu_dropdown li a i{
font-weight: normal;
}
.yunrong-aside .menu_dropdown dd ul{
background:#203054;
}
.yunrong-aside .menu_dropdown dd li{
line-height:46px;
}
.yunrong-aside .menu_dropdown dd li:hover{
background:rgba(0,0,0,0.6);
}
.yunrong-aside .menu_dropdown dd li a{
line-height:46px;
padding-left:70px;
border-bottom:none;
font-weight:normal;
color:#7a8bc2;
}
.yunrong-aside .menu_dropdown li a:hover{
text-decoration:none;
}
.yunrong-aside .menu_dropdown li.current a,.menu_dropdown li.current a:hover{
background-color:rgba(255,255,255,0.2);
}
.yunrong-aside .menu_dropdown dt:hover{
background:rgba(0,0,0,0.6);
}
/*菜单收缩切换*/
.dislpayArrow{
position: absolute;
top: 0;
bottom: 0;
left:200px;
width:0;
height:100%;
z-index:10;
}
.dislpayArrow a{
position:absolute;
display:block;
width:17px;
height:61px;
top:50%;
margin-top:-30px;
outline:none;
}
.dislpayArrow a.open{
background-position:0 -61px;
}
.dislpayArrow a:hover{
text-decoration:none;
background-position:right 0;
}
.dislpayArrow a.open:hover{
background-position:right -61px;
}
/*选项卡导航*/
.yunrong-tabNav-wp{
position:relative;
height:35px;
overflow:hidden;
}
.yunrong-tabNav,
.yunrong-tabNav .acrossTab li{
background-image:url(../../images/book/acrossTab-2.png);
}
.yunrong-tabNav{
height:35px;
padding-right:75px;
overflow:hidden;
position:relative;
background-color:#efeef0;
background-repeat: repeat-x;
background-position: 0 -175px;
}
.yunrong-tabNav .acrossTab{
position:absolute;
height:26px;
line-height:26px;
background:none;
top:8px;
left:0;
padding-top:0;
}
.yunrong-tabNav .acrossTab li{
height:26px;
line-height:26px;
}
.yunrong-tabNav .acrossTab li em{
position:absolute;
top:0;
z-index: 50;
right:-16px;
height: 26px;
width: 16px;
background-image:url(../../images/book/acrossTab-2.png)
}
.loading {
background:url(../../images/book/loading-s.gif) no-repeat center;
height:100px;
}
.show_iframe{
position:absolute;
top:0;
right:0;
left:0;
bottom:0;
}
.show_iframe iframe {
position: absolute;
bottom: 0;
height: 100%;
width: 100%;
}
.yunrong-tabNav-more {
position: absolute;
right:0;
width:70px;
top:4px;
display: none;
}
/*面包屑导航*/
.breadcrumb{
background-color:#f5f5f5;
padding:0 20px;
position:relative;
z-index:99;
}
@media (max-width: 767px) {
.breadcrumb{ padding:0 15px;}
.show_iframe{-webkit-overflow-scrolling: touch;overflow-y: scroll;}
}
/*横向手机 竖向平板*/
@media (max-width: 767px) {
.yunrong-aside{
float:none;
width:100%;
height:auto;
margin-top:0;
padding-top:0;
bottom:auto;
}
.menu_dropdown dt{
line-height:44px;
}
.menu_dropdown li,.menu_dropdown dd li,.menu_dropdown dd li a{
line-height:44px;
}
.yunrong-tabNav{
position:fixed;
z-index:998;
}
.yunrong-article{
top:44px;
}
.yunrong-article-box{
position:static;
left:0;
}
.yunrong-article-box .pd-20{
padding:15px;
}
.yunrong-article{
left:0;
}
}
.acrossTab{
height:29px;
background-repeat: repeat-x;
background-position: 0 0;
padding-top:1px;
}
.acrossTab li,.acrossTab li em{
background-repeat:no-repeat;
background-position:0 0;
}
.acrossTab li{
position:relative;
float:left;
display:inline-block;
height:29px;
line-height:29px;
font-size:12px;
cursor:pointer;
padding:0 30px;
white-space:nowrap;
color:#282828;
background-position:0 0;
}
.acrossTab li em{
position:absolute;
width:23px;
height:29px;
right:-20px;
top:0;
z-index:50;
background-position:right -30px;
}
.acrossTab li:hover{
background-position:0 -60px;
}
.acrossTab li:hover em{
background-position:right -90px;
}
.acrossTab li.active{
background-position:0 -120px;
z-index:99;
}
.acrossTab li.active em{
background-position:right -150px;
}
.acrossTab li i:hover{
background-position:0 bottom;
}
.acrossTab li i {
position: absolute;
display: block;
width: 13px;
height: 13px;
top: 50%;
margin-top: -7px;
right: 5px;
font-size: 0;
line-height: 0;
cursor: pointer;
background-image: url(../../images/book/acrossTab-close.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.yunrong-tabNav-more>a{
background:#eee;
}
/*-----aside---slider---*/
.sliderTitle{
height:50px;
line-height:50px;
color:#fff;
}
.sliderTitle .icon{
margin:0 30px 0 20px;
} | public/agent/css/book/H-ui.admin.css | @charset "utf-8";
.yunrong-aside{
position: absolute;
top:0;
bottom:0;
left:0;
width:230px;
z-index:99;
background-color:#12203d;
border-right: 1px solid #e5e5e5;
padding-top:70px;
}
.yunrong-article-box{
position: absolute;
top:0;
right:0;
bottom: 0;
left:0;
overflow:hidden;
z-index:1;
background-color:#fff;
}
.yunrong-article{
position: absolute;
top:35px;
bottom:0;
left:0;
right:0;
overflow:auto;
z-index:1;
}
.yunrong-aside,.yunrong-article-box,.dislpayArrow{
-moz-transition: all 0.2s ease 0s;
-webkit-transition: all 0.2s ease 0s;
-ms-transition: all 0.2s ease 0s;-o-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
@media (max-width: 767px) {
.page-container{ padding:15px}
}
/*导航*/
/*左侧菜单*/
.yunrong-aside .menu_dropdown dl{
margin-bottom:0;
}
.yunrong-aside .menu_dropdown dt{
display:block;
line-height:46px;
color:#fff;
padding:0 30px 0 70px;
cursor:pointer;
position:relative;
font-weight:normal;
}
.yunrong-aside .menu_dropdown dt .menu_dropdown-arrow{
position:absolute;
overflow: hidden;
top:0;
right:15px;
transition-duration:0.3s ;
transition-property:all;
}
.yunrong-aside .menu_dropdown dd{
display:none;
}
.yunrong-aside .menu_dropdown dt.selected .menu_dropdown-arrow{
transform: rotate(180deg);
}
.yunrong-aside .menu_dropdown dd.selected{
display:block;
margin-left:0;
}
.yunrong-aside .menu_dropdown ul{
padding:0;
}
.yunrong-aside .menu_dropdown li{
line-height:35px;
overflow:hidden;
zoom:1;
}
.yunrong-aside .menu_dropdown li a{
padding-left:15px;
display:block;
font-weight: bold;
margin:0;
}
.yunrong-aside .menu_dropdown li a i{
font-weight: normal;
}
.yunrong-aside .menu_dropdown dd ul{
background:#203054;
}
.yunrong-aside .menu_dropdown dd li{
line-height:46px;
}
.yunrong-aside .menu_dropdown dd li:hover{
background:rgba(0,0,0,0.6);
}
.yunrong-aside .menu_dropdown dd li a{
line-height:46px;
padding-left:70px;
border-bottom:none;
font-weight:normal;
color:#7a8bc2;
}
.yunrong-aside .menu_dropdown li a:hover{
text-decoration:none;
}
.yunrong-aside .menu_dropdown li.current a,.menu_dropdown li.current a:hover{
background-color:rgba(255,255,255,0.2);
}
.yunrong-aside .menu_dropdown dt:hover{
background:rgba(0,0,0,0.6);
}
/*菜单收缩切换*/
.dislpayArrow{
position: absolute;
top: 0;
bottom: 0;
left:200px;
width:0;
height:100%;
z-index:10;
}
.dislpayArrow a{
position:absolute;
display:block;
width:17px;
height:61px;
top:50%;
margin-top:-30px;
outline:none;
}
.dislpayArrow a.open{
background-position:0 -61px;
}
.dislpayArrow a:hover{
text-decoration:none;
background-position:right 0;
}
.dislpayArrow a.open:hover{
background-position:right -61px;
}
/*选项卡导航*/
.yunrong-tabNav-wp{
position:relative;
height:35px;
overflow:hidden;
}
.yunrong-tabNav,
.yunrong-tabNav .acrossTab li{
background-image:url(../../images/book/acrossTab-2.png);
}
.yunrong-tabNav{
height:35px;
padding-right:75px;
overflow:hidden;
position:relative;
background-color:#efeef0;
background-repeat: repeat-x;
background-position: 0 -175px;
}
.yunrong-tabNav .acrossTab{
position:absolute;
height:26px;
line-height:26px;
background:none;
top:8px;
left:0;
padding-top:0;
}
.yunrong-tabNav .acrossTab li{
height:26px;
line-height:26px;
}
.yunrong-tabNav .acrossTab li em{
position:absolute;
top:0;
z-index: 50;
right:-16px;
height: 26px;
width: 16px;
background-image:url(../../images/book/acrossTab-2.png)
}
.loading {
background:url(../../images/book/loading-s.gif) no-repeat center;
height:100px;
}
.show_iframe{
position:absolute;
top:0;
right:0;
left:0;
bottom:0;
}
.show_iframe iframe {
position: absolute;
bottom: 0;
height: 100%;
width: 100%;
}
.yunrong-tabNav-more {
position: absolute;
right:0;
width:70px;
top:4px;
display: none;
}
/*面包屑导航*/
.breadcrumb{
background-color:#f5f5f5;
padding:0 20px;
position:relative;
z-index:99;
}
@media (max-width: 767px) {
.breadcrumb{ padding:0 15px;}
.show_iframe{-webkit-overflow-scrolling: touch;overflow-y: scroll;}
}
/*横向手机 竖向平板*/
@media (max-width: 767px) {
.yunrong-aside{
float:none;
width:100%;
height:auto;
margin-top:0;
padding-top:0;
bottom:auto;
}
.menu_dropdown dt{
line-height:44px;
}
.menu_dropdown li,.menu_dropdown dd li,.menu_dropdown dd li a{
line-height:44px;
}
.yunrong-tabNav{
position:fixed;
z-index:998;
}
.yunrong-article{
top:44px;
}
.yunrong-article-box{
position:static;
left:0;
}
.yunrong-article-box .pd-20{
padding:15px;
}
.yunrong-article{
left:0;
}
}
.acrossTab{
height:29px;
background-repeat: repeat-x;
background-position: 0 0;
padding-top:1px;
}
.acrossTab li,.acrossTab li em{
background-repeat:no-repeat;
background-position:0 0;
}
.acrossTab li{
position:relative;
float:left;
display:inline-block;
height:29px;
line-height:29px;
font-size:12px;
cursor:pointer;
padding:0 30px;
white-space:nowrap;
color:#282828;
background-position:0 0;
}
.acrossTab li em{
position:absolute;
width:23px;
height:29px;
right:-20px;
top:0;
z-index:50;
background-position:right -30px;
}
.acrossTab li:hover{
background-position:0 -60px;
}
.acrossTab li:hover em{
background-position:right -90px;
}
.acrossTab li.active{
background-position:0 -120px;
z-index:99;
}
.acrossTab li.active em{
background-position:right -150px;
}
.acrossTab li i:hover{
background-position:0 bottom;
}
.acrossTab li i {
position: absolute;
display: block;
width: 13px;
height: 13px;
top: 50%;
margin-top: -7px;
right: 5px;
font-size: 0;
line-height: 0;
cursor: pointer;
background-image: url(../../images/book/acrossTab-close.png);
background-repeat: no-repeat;
background-position: 0 0;
}
.yunrong-tabNav-more>a{
background:#eee;
}
/*-----aside---slider---*/
.sliderTitle{
height:50px;
line-height:50px;
color:#fff;
}
.sliderTitle .icon{
margin:0 30px 0 20px;
} | 0.222531 | 0.043224 |
========================================
01 - Global Style
========================================
*/
html, body {
overflow-x: hidden; }
a {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
a:hover {
text-decoration: none; }
ul {
margin-bottom: 0;
padding: 0;
list-style: none; }
.slick-slide {
outline: 0; }
input, textarea, select {
outline: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
input[type='submit'] {
border: 0; }
button {
border: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
outline: 0; }
button:focus {
outline: 0; }
.slick-slider a {
outline: 0; }
body {
font-weight: 400;
font-size: 16px;
line-height: 1.6;
color: #757c8c;
font-family: 'Raleway', sans-serif; }
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
color: #343851; }
h1 {
font-size: 4.68em;
line-height: 1.33; }
h2 {
font-size: 2.5em;
line-height: 1.4; }
h3 {
font-size: 1.8em;
line-height: 1.3; }
h4 {
font-size: 1.5em;
line-height: 1.4; }
h5 {
font-size: 1.25em;
line-height: 1.5; }
h6 {
font-size: 1.125em;
line-height: 1.6; }
.bold-text {
font-weight: 600; }
.mb-100 {
margin-bottom: 100px; }
.mb-70 {
margin-bottom: 70px; }
.mb-60 {
margin-bottom: 60px !important; }
.mb-50 {
margin-bottom: 50px !important; }
.mb-40 {
margin-bottom: 40px !important; }
.mb-30 {
margin-bottom: 30px !important; }
.pa-100 {
padding-top: 100px;
padding-bottom: 100px; }
.pa-80 {
padding-top: 80px;
padding-bottom: 80px; }
.pa-50 {
padding-top: 50px;
padding-bottom: 50px; }
.pt-100 {
padding-top: 100px; }
.pb-100 {
padding-bottom: 100px; }
.pt-86 {
padding-top: 86px; }
.pt-60 {
padding-top: 60px; }
.hide-normal {
display: none; }
.primary-color {
color: #fb5252; }
.heading-primary {
color: #343851; }
.color-white {
color: #fff; }
.primary-bg {
background: #fb5252; }
.dark-bg {
background: #1a2d39; }
.extra-dark-bg {
background: #172833; }
.black-bg {
background: #24262d; }
.extra-black {
background: #202229; }
.blue-bg {
background: #0075ff; }
.view-mobile {
display: none; }
/* Back to Top */
#top-button {
display: inline-block;
background-color: #fb5252;
width: 35px;
height: 35px;
text-align: center;
border-radius: 3px;
position: fixed;
bottom: 30px;
right: 30px;
-webkit-transition: background-color .4s, opacity .5s, visibility .5s;
-o-transition: background-color .4s, opacity .5s, visibility .5s;
transition: background-color .4s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 998;
-webkit-box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3);
box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3); }
#top-button i {
font-size: 1.1em;
line-height: 35px;
color: #fff; }
#top-button:hover {
cursor: pointer;
background-color: #000; }
#top-button:active {
background-color: #000; }
#top-button.show {
opacity: 1;
visibility: visible; }
.button {
font-weight: 600;
text-transform: uppercase;
padding: 12px 40px;
display: inline-block;
border: 1px solid #fb5252;
color: #fb5252;
border-radius: 5px; }
.button:hover {
color: #fff;
background: #fb5252;
-webkit-transform: translateY(-4px);
-ms-transform: translateY(-4px);
transform: translateY(-4px); }
.button-primary {
padding: 14px 50px;
background: #fb5252;
border: 0;
color: #fff;
text-transform: unset; }
.button-primary:hover {
background: #fa3939; }
.button-white {
border: 1px solid #ddd;
color: #343851;
background: #fff; }
.button-white:hover {
background: #fb5252;
color: #fff;
border-color: #fb5252; }
.button-slides {
padding: 8px 40px;
border-radius: 40px;
background: #fff;
border: 0; }
.button-slides:hover {
background: #fb5252;
color: #fff; }
.button-transparent {
background: transparent;
border-color: #fb5252;
color: #fb5252; }
.button.button-icon {
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fff;
color: #fb5252;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-blue-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-blue-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #0075ff;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-blue-icon:hover {
color: #343851; }
.button.button-primary-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-primary-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fb5252;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-primary-icon:hover {
color: #343851; }
.button.button-white.button-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-transform: unset;
color: #fb5252; }
.button.button-white.button-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fb5252;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-white.button-icon:hover {
color: #fb5252; }
.button-blue {
border: 0;
background: #0075ff;
color: #fff; }
.button-blue.button-icon i {
color: #0075ff; }
.button-blue:hover {
background: #3391ff; }
.button-blog:hover {
background: #fff;
color: #fb5252 !important;
border-color: #fff; }
.view-more {
color: #fb5252;
font-weight: 500;
font-size: 17px;
display: inline-block;
line-height: 1;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.view-more:after {
content: "\f110";
font-family: 'Flaticon';
position: absolute;
right: -10px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
-webkit-transition: right .3s ease-in-out, opacity .3s ease-in-out;
-o-transition: right .3s ease-in-out, opacity .3s ease-in-out;
transition: right .3s ease-in-out, opacity .3s ease-in-out; }
.view-more:hover {
color: #fb5252;
padding-right: 10px; }
.view-more:hover:after {
opacity: 1; }
.button-small {
padding: 10px 25px;
font-weight: 400;
border-radius: 3px; }
.button-flat {
border-radius: 0; }
.playbutton {
display: inline-block;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease; }
.playbutton .triangle {
-webkit-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
stroke-dasharray: 240;
stroke-dashoffset: 480;
stroke: #fb5252;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
.playbutton:hover .triangle {
stroke-dashoffset: 0;
opacity: 1;
stroke: #fb5252; }
.section-head h2 {
position: relative;
margin-bottom: 18px; }
.section-head h2::before {
content: attr(data-title);
position: absolute;
left: -7px;
font-weight: bolder;
text-transform: uppercase;
font-size: 120px;
top: -70px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 1px rgba(228, 195, 195, 0.5);
-webkit-text-fill-color: transparent; }
.section-head-two p {
font-weight: 600;
position: relative;
padding-left: 10px;
margin-bottom: 5px; }
.section-head-two p:before {
content: "";
width: 2px;
height: 90%;
background-color: #fb5252;
position: absolute;
left: 0;
top: 5%; }
.section-head-three p {
text-transform: uppercase;
margin-bottom: 0; }
.section-head-three h2 {
font-weight: 500; }
.section-head-four p {
text-transform: uppercase;
margin-bottom: 0; }
.section-head-five h2 {
position: relative;
line-height: 55px; }
.section-head-five h2:before {
content: "&";
font-size: 115px;
color: #fb5252;
font-weight: 400;
position: absolute;
z-index: -1;
top: 30px;
opacity: .3; }
.section-head-five h2 span {
display: block;
text-transform: uppercase; }
/*
========================================
02 - Header & Footer
========================================
*/
#header {
position: relative;
z-index: 99; }
#header-bottom, #header-bottom-two {
position: absolute;
width: 100%;
left: 0;
top: 0;
z-index: 99;
padding: 20px; }
#header-bottom.sticky, #header-bottom-two.sticky {
position: fixed;
top: 0;
bottom: auto;
z-index: 999;
width: 100%;
background: #fff;
-webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
padding: 0;
border-bottom: 0; }
.menuzord {
background: transparent;
padding: 0; }
.top-bar {
padding: 15px 0; }
.menuzord-menu ul.dropdown, .menuzord-menu ul.dropdown li ul.dropdown {
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05); }
.menuzord-menu ul.dropdown {
border-radius: 0 0 5px 5px;
border-top: 3px solid #fb5252; }
.menuzord-menu ul.dropdown li:hover > a {
color: #343851;
background: #fafafa; }
.menuzord-menu ul.dropdown li a {
border-bottom: 1px solid #ededed; }
.menuzord-menu ul.dropdown li:last-child a {
border-bottom: 0;
border-radius: 0 0 5px 5px; }
.menuzord-brand img {
max-width: 160px;
height: auto; }
.menuzord-menu ul.dropdown li:hover > a {
color: #fb5252; }
.menuzord-menu li .indicator, .menuzord-menu li ul.dropdown li .indicator {
font-size: 16px;
font-family: serif; }
.menuzord-menu li .indicator {
margin-left: 4px; }
.menuzord-menu > li > a > i {
top: 4px; }
.header-layout-one#header {
position: absolute;
left: 0;
top: 0;
width: 100%; }
.header-layout-one .menuzord {
background: transparent; }
.header-layout-one .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-one .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-one .top-bar li {
color: #fff; }
.header-layout-one .top-bar li > i {
color: #fb5252;
padding-right: 4px; }
.header-layout-one .top-bar a {
color: #fff; }
.header-layout-one .top-bar a:hover {
color: #fb5252; }
.header-layout-one .top-bar .top-social li:not(:last-child) {
padding-right: 8px; }
.header-layout-one .header-middle {
margin-top: 65px;
position: relative; }
.header-layout-one .header-middle:before {
content: "RealEstate";
font-weight: 800;
text-transform: uppercase;
font-size: 150px;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -75px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
-webkit-text-fill-color: transparent; }
.header-layout-one .text-hidden {
position: relative;
margin-left: -10px;
opacity: 0; }
.header-layout-one #header-bottom-two {
top: 145px; }
.header-layout-one #header-bottom-two .menuzord {
padding: 0; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a {
color: #fff;
padding: 26px 15px;
font-weight: 500; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a i {
color: #fb5252;
padding-right: 5px; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a:hover {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right {
float: none;
text-align: center; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right > li {
float: none; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right .dropdown {
text-align: left; }
.header-layout-one #header-bottom-two.sticky {
background: #141635;
top: 0; }
.header-layout-one #header-bottom-two.sticky .hide-normal {
display: inline-block; }
.header-layout-one #header-bottom-two.sticky .col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.header-layout-one #header-bottom-two.sticky .menuzord-menu.menuzord-right {
float: right;
text-align: center; }
.header-layout-one #header-bottom-two.sticky .menuzord-menu.menuzord-right > li {
float: left; }
.header-layout-two .container {
max-width: 1600px; }
.header-layout-two .menuzord {
padding: 0; }
.header-layout-two .menuzord-menu > li > a {
color: #fff;
padding: 26px 15px;
font-weight: 600; }
.header-layout-two .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-two .list-inline li:not(:last-child) {
margin-right: 20px; }
.header-layout-two .list-inline li a {
color: #757c8c;
font-weight: 600; }
.header-layout-two .list-inline li a i {
color: #fb5252;
padding-right: 4px; }
.header-layout-two .list-inline li a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 10px 30px;
border-radius: 5px; }
.header-layout-two .list-inline li a.cta-button:hover {
color: #fff; }
.header-layout-two #header-bottom.sticky {
background: #141635; }
.header-layout-two #header-bottom.sticky .list-inline li a {
color: #fff; }
.header-layout-three .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-three .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-three .top-bar li {
color: #fff; }
.header-layout-three .top-bar a {
color: #fff; }
.header-layout-three .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-three .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-three .top-bar .dropdown a.btn:hover, .header-layout-three .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-three .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-three .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-three .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-three .menuzord-menu > li > a {
color: #343851;
padding: 26px 15px;
font-weight: 500; }
.header-layout-three .menuzord-menu > li > a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
margin-top: 13px; }
.header-layout-three .menuzord-menu > li > a.cta-button:hover {
color: #fff; }
.header-layout-three .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-three .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-three #header-bottom {
top: 50px; }
.header-layout-three #header-bottom.sticky {
top: 0; }
.header-layout-three .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-three .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-three .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-four .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-four .menu-middle {
display: inline-block;
margin: 26px 0;
position: relative;
left: 150px;
font-weight: 600; }
.header-layout-four .menu-middle .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-four .menu-middle .dropdown a.btn:hover, .header-layout-four .menu-middle .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-four .menu-middle .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-four .menu-middle .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-four .menu-middle .dropdown-toggle::after {
display: none; }
.header-layout-four .menu-middle .dropdown-menu {
background: #f9f9f9; }
.header-layout-four .menu-middle .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-four .menu-middle .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-four .menuzord-menu > li > a {
color: #fff;
padding: 28px 15px;
font-weight: 600; }
.header-layout-four .menuzord-menu > li > a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
margin-top: 13px; }
.header-layout-four .menuzord-menu > li > a.cta-button:hover {
color: #fff; }
.header-layout-four .header-left {
background: #151926;
position: absolute;
left: -400px;
top: 0;
min-height: 1020px;
padding-top: 180px;
width: 285px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.header-layout-four .header-left .button-sidebar {
position: absolute;
bottom: 60px;
left: 35px;
border: 2px solid rgba(255, 255, 255, 0.3);
text-transform: uppercase;
color: #fff;
padding: 14px 40px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
border-radius: 5px; }
.header-layout-four .header-left .button-sidebar:hover {
background: #fb5252;
border-color: #fb5252; }
.header-layout-four .header-left .close-button {
width: 25px;
height: 25px;
background: #fb5252;
color: #fff;
position: absolute;
right: 0;
bottom: 0; }
.header-layout-four .header-left .close-button:before {
content: "";
width: 12px;
height: 2px;
background: #fff;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.header-layout-four #header-bottom.sticky {
top: 0;
background: #151926; }
.header-layout-four .social-links {
text-align: center; }
.header-layout-four .social-links li a {
color: #fff;
text-transform: uppercase;
display: inline-block; }
.header-layout-four .social-links li a:hover i {
background: #fb5252;
border-color: #fb5252; }
.header-layout-four .social-links li i {
display: block;
width: 55px;
height: 55px;
text-align: center;
line-height: 55px;
margin: 0 auto 10px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.header-layout-four .social-links li:not(:last-child) {
padding-bottom: 70px; }
.header-layout-five .top-bar {
padding: 0; }
.header-layout-five .top-bar .cta-button {
background: rgba(0, 0, 0, 0.1);
padding: 15px 40px;
display: inline-block; }
.header-layout-five .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-five .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-five .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-five .menuzord-brand {
margin-top: 16px; }
.header-layout-five #header-bottom {
background: #fff;
padding: 0;
top: 56px; }
.header-layout-six .container-fluid {
max-width: 1650px; }
.header-layout-six .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-six .top-bar {
border-bottom: 1px solid rgba(234, 234, 234, 0.5); }
.header-layout-six .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-six .top-bar .list-inline a {
color: #757c8c; }
.header-layout-six .top-bar .list-inline i {
color: #fb5252; }
.header-layout-six .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0;
color: #757c8c; }
.header-layout-six .top-bar .dropdown a.btn:hover, .header-layout-six .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-six .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-six .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-six .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-six .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-six .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-six .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-six .menu-middle {
display: inline-block;
margin: 20px 0;
position: relative;
left: 70px;
max-width: 480px;
width: 30%; }
.header-layout-six .menu-middle form {
position: relative; }
.header-layout-six .menu-middle input {
width: 100%;
border: 1px solid #eaeaea;
padding: 11px 25px;
border-radius: 5px; }
.header-layout-six .menu-middle button {
position: absolute;
right: 15px;
top: 11px;
background: transparent;
color: #fb5252; }
.header-layout-six .menuzord {
padding: 0; }
.header-layout-six .menuzord-menu > li > a {
padding-top: 34px;
padding-bottom: 44px;
color: #343851;
font-weight: 500; }
.header-layout-six .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 30px;
padding-right: 0; }
.header-layout-six .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-six .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-six #header-bottom {
background: #fff;
padding: 10px 0 0;
top: 57px; }
.header-layout-six #header-bottom.sticky {
top: 0; }
.header-layout-seven .container-fluid {
max-width: 1650px; }
.header-layout-seven .menuzord {
padding: 0; }
.header-layout-seven .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-seven .menuzord-menu > li > a {
padding-top: 34px;
padding-bottom: 34px;
color: #fff;
font-weight: 600; }
.header-layout-seven .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 30px; }
.header-layout-seven .menu-middle {
display: inline-block;
margin: 20px 0;
position: relative;
left: 70px;
max-width: 480px;
width: 30%; }
.header-layout-seven .menu-middle form {
position: relative; }
.header-layout-seven .menu-middle input {
width: 100%;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 11px 25px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.05); }
.header-layout-seven .menu-middle button {
position: absolute;
right: 15px;
top: 11px;
background: transparent;
color: #fff; }
.header-layout-seven #header-bottom.sticky {
background: #24262d; }
.header-layout-eight .menuzord-brand, .header-layout-nine .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-eight .top-bar, .header-layout-nine .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-eight .top-bar li, .header-layout-nine .top-bar li {
color: #fff; }
.header-layout-eight .top-bar a, .header-layout-nine .top-bar a {
color: #fff; }
.header-layout-eight .top-bar .list-inline li:not(:last-child), .header-layout-nine .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-eight .top-bar .dropdown a.btn, .header-layout-nine .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-eight .top-bar .dropdown a.btn:hover, .header-layout-eight .top-bar .dropdown a.btn:focus, .header-layout-nine .top-bar .dropdown a.btn:hover, .header-layout-nine .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-eight .top-bar .dropdown .dropdown-toggle:before, .header-layout-nine .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-eight .top-bar .dropdown .dropdown-menu a, .header-layout-nine .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-eight .top-bar .dropdown-toggle::after, .header-layout-nine .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-eight .top-bar .dropdown-menu, .header-layout-nine .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-eight .top-bar .dropdown img, .header-layout-nine .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-eight .top-bar .dropdown .dropdown-menu img, .header-layout-nine .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-eight .menuzord-menu > li > a, .header-layout-nine .menuzord-menu > li > a {
color: #343851;
padding: 34px 15px;
font-weight: 600; }
.header-layout-eight .menuzord-menu > li > a.open-canvas, .header-layout-nine .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 20px; }
.header-layout-eight .menuzord-menu > li.active > a, .header-layout-nine .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-eight .menuzord-menu > li:hover > a, .header-layout-nine .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-eight #header-bottom, .header-layout-nine #header-bottom {
background: #fff;
padding: 0;
border-bottom: 1px solid #ededed;
top: 56px; }
.header-layout-eight #header-bottom.sticky, .header-layout-nine #header-bottom.sticky {
top: 0; }
.header-layout-nine .menuzord-menu > li > a {
font-weight: 500;
border-bottom: 0; }
.header-layout-nine #header-bottom {
border-bottom: 0;
-webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.05);
box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.05); }
.search-overlay {
width: 100%;
height: 100%;
position: fixed;
background: #fff;
left: 0;
top: 0;
display: none;
z-index: 999; }
.overlay-innar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
width: 100%;
height: 100%; }
.search-overlay .search-social {
position: absolute;
bottom: 50px; }
.search-overlay .search-social li {
display: inline-block;
padding: 0 10px; }
.search-overlay .search-social li a {
font-size: 18px;
color: #4969a8; }
.search-overlay .search-social li a.color-twitter {
color: #2aa3ef; }
.search-overlay .search-social li a.color-dribbble {
color: #ea4c89; }
.search-overlay .search-social li a.color-youtube {
color: #ff0000; }
.search-overlay .search-social li a.color-pinterest {
color: #d73532; }
.search-overlay .search-social li a:hover {
color: #fb5252; }
.search-overlay .search-form-overlay {
width: 50%; }
.search-overlay .search-form-overlay input {
width: 100%;
border: 0;
border-bottom: 2px solid rgba(0, 0, 0, 0.08);
font-size: 24px;
padding: 20px;
text-align: center;
color: #343851; }
.search-overlay .search-form-overlay input:focus {
border-color: #343851; }
.search-overlay .search-form-overlay input::-webkit-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input:-ms-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input::-ms-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input::placeholder {
color: #343851; }
.search-overlay .close-overlay {
float: right;
margin-bottom: 50px;
font-size: 40px;
border: 0;
background: transparent;
outline: 0; }
.sidenav {
min-height: 100vh;
height: 100%;
width: 100%;
position: fixed;
z-index: 1000;
top: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
overflow: hidden;
display: none; }
.sidenav-menu {
padding: 130px 30px 0 !important;
width: 350px;
right: -350px;
position: relative;
height: 100%;
float: right;
background: #fff;
text-align: left;
overflow: hidden;
-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out; }
.sidenav-menu .social li {
display: inline-block;
padding: 0 5px; }
.sidenav-menu li {
padding: 5px 0; }
.sidenav-menu li a {
width: 40px;
height: 40px;
border-radius: 50%;
background: #fff;
color: #4969a8;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07);
box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07); }
.sidenav-menu li a:hover {
color: #fff !important;
background: #4969a8; }
.sidenav-menu li a.color-twitter {
color: #2aa3ef; }
.sidenav-menu li a.color-twitter:hover {
background: #2aa3ef; }
.sidenav-menu li a.color-dribbble {
color: #ea4c89; }
.sidenav-menu li a.color-dribbble:hover {
background: #ea4c89; }
.sidenav-menu li a.color-youtube {
color: #ff0000; }
.sidenav-menu li a.color-youtube:hover {
background: #ff0000; }
.sidenav-menu li a:hover {
color: #fb5252; }
.sidenav .closebtn {
position: absolute;
top: 25px;
left: 25px;
font-size: 18px;
z-index: 1;
width: 50px;
height: 50px;
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: #fb5252;
color: #fff;
border-radius: 50%; }
.sidenav h5 {
font-weight: 600; }
.sidenav-list .info-list {
color: #757c8c; }
.sidenav-list .info-list .icon {
margin-right: 15px;
color: #343851; }
.sidenav-list .info-list p {
margin-bottom: 10px;
line-height: 1.4; }
.sidenav-list .social {
padding-top: 30px; }
.footer-layout-one {
padding: 100px 0 0;
background: url("../img/footer-bg.png") no-repeat;
background-size: cover;
background-position: center bottom; }
.footer-layout-one .footer-widget h4 {
margin-bottom: 30px; }
.footer-layout-one .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-one .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-one .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-one .footer-widget .list-footer a {
color: #757c8c;
position: relative; }
.footer-layout-one .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-one .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-one .footer-widget .list-footer a:hover::before {
opacity: 1; }
.footer-layout-one .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2); }
.footer-layout-one .footer-top .container {
padding-bottom: 100px;
border-bottom: 1px solid rgba(52, 56, 81, 0.15); }
.footer-layout-one .footer-bottom {
padding: 20px 0; }
.footer-layout-one .footer-bottom .container {
padding: 0; }
.footer-layout-one .footer-bottom li:not(:last-child) {
padding-right: 8px; }
.footer-layout-one .footer-bottom li a {
color: #757c8c;
position: relative; }
.footer-layout-one .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-one .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-one .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-one .footer-bottom a {
color: #fb5252; }
.footer-layout-two {
padding-top: 80px;
background: #1a2d39; }
.footer-layout-two .footer-top {
padding: 100px 0; }
.footer-layout-two .footer-top h4, .footer-layout-two .footer-top h6, .footer-layout-two .footer-top p {
color: #fff; }
.footer-layout-two .footer-top .international-sites {
padding-top: 10px; }
.footer-layout-two .footer-top .footer-widget h4 {
margin-bottom: 30px; }
.footer-layout-two .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-two .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-two .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-two .footer-top .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-two .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-two .footer-top .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-two .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-two .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2); }
.footer-layout-two .footer-bottom {
background: #172833;
padding: 20px 0; }
.footer-layout-two .footer-bottom p {
color: #fff; }
.footer-layout-two .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-two .footer-bottom li a {
color: #fff; }
.footer-layout-two .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-two .footer-bottom a {
color: #fb5252; }
.footer-layout-two .footer-form input {
width: 60%;
border: 0;
background: #fff;
border-radius: 5px;
padding: 16px 25px; }
.footer-layout-two .footer-form button {
width: 35%;
float: right;
background: #fb5252;
border: 0;
padding: 16px 10px;
text-align: center;
color: #fff;
border-radius: 5px;
font-weight: 600; }
.footer-layout-two .international-sites {
margin-top: 20px; }
.footer-layout-two .international-sites li {
color: #fff; }
.footer-layout-two .international-sites li a {
color: #fff;
position: relative; }
.footer-layout-two .international-sites li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-two .international-sites li a:hover {
color: #fb5252; }
.footer-layout-two .international-sites li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-top {
padding: 120px 0 100px; }
.footer-layout-three .footer-top .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-three .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-three .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-three .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-three .footer-top .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-three .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-top .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-three .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-three .footer-top .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-three .footer-top .footer-widget .list-address li {
color: #fff; }
.footer-layout-three .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
max-width: 100%; }
.footer-layout-three .footer-top .list-inline a {
color: #ffff; }
.footer-layout-three .footer-top .list-inline a:hover {
color: #fb5252; }
.footer-layout-three .footer-top .footer-social li:not(:last-child) {
padding-right: 8px; }
.footer-layout-three .footer-top .footer-form input, .footer-layout-three .footer-top .footer-form textarea {
border: 1px solid rgba(221, 221, 221, 0.1);
background: transparent;
color: #fff;
padding: 12px 20px;
margin-bottom: 8px;
width: 100%; }
.footer-layout-three .footer-top .footer-form input::-webkit-input-placeholder, .footer-layout-three .footer-top .footer-form textarea::-webkit-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input:-ms-input-placeholder, .footer-layout-three .footer-top .footer-form textarea:-ms-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input::-ms-input-placeholder, .footer-layout-three .footer-top .footer-form textarea::-ms-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input::placeholder, .footer-layout-three .footer-top .footer-form textarea::placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input:focus, .footer-layout-three .footer-top .footer-form textarea:focus {
border-color: #fff; }
.footer-layout-three .footer-top .footer-form textarea {
min-height: 100px;
margin-bottom: 4px; }
.footer-layout-three .footer-top .footer-form button {
background: #fb5252;
padding: 14px 20px;
text-align: center;
font-weight: 600;
color: #fff;
width: 100%; }
.footer-layout-three .footer-top .international-sites {
margin-top: 20px; }
.footer-layout-three .footer-top .international-sites li {
color: #fff; }
.footer-layout-three .footer-top .international-sites li a {
position: relative; }
.footer-layout-three .footer-top .international-sites li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-top .international-sites li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-bottom {
padding: 20px 0; }
.footer-layout-three .footer-bottom p {
color: #fff; }
.footer-layout-three .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-three .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-three .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-three .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-bottom a {
color: #fb5252; }
.footer-layout-four {
padding-top: 100px; }
.footer-layout-four .footer-top {
padding-bottom: 100px; }
.footer-layout-four .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-four .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-four .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-four .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-four .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-four .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-four .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-four .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-four .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-four .footer-widget .list-address li {
color: #fff; }
.footer-layout-four .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
max-width: 100%; }
.footer-layout-four .footer-widget .author .img {
margin-right: 20px; }
.footer-layout-four .footer-widget .author .img img {
border: 3px solid #fff; }
.footer-layout-four .footer-widget .author h6 {
padding-bottom: 4px; }
.footer-layout-four .col-md-6.dark-bg {
-webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.22);
box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.22); }
.footer-layout-four .footer-subscribe {
padding: 35px; }
.footer-layout-four .footer-subscribe h4 {
margin-bottom: 10px;
font-size: 22px; }
.footer-layout-four .footer-subscribe p {
margin-bottom: 50px; }
.footer-layout-four .footer-subscribe form {
position: relative; }
.footer-layout-four .footer-subscribe input {
background: transparent;
border: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
padding: 15px 0;
width: 100%; }
.footer-layout-four .footer-subscribe input::-webkit-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input:-ms-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input::-ms-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input::placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe button {
color: #fb5252;
background: transparent;
border: 0;
position: absolute;
right: 0;
bottom: 10px; }
.footer-layout-four .footer-bottom {
padding: 20px 0; }
.footer-layout-four .footer-bottom p {
color: #fff; }
.footer-layout-four .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-four .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-four .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-four .footer-bottom a {
color: #fb5252; }
.footer-layout-five {
padding-top: 120px;
background: #14232c; }
.footer-layout-five .footer-top {
padding-bottom: 100px; }
.footer-layout-five .footer-widget h4 {
margin-bottom: 30px;
font-weight: 500;
color: #fff; }
.footer-layout-five .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-five .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-five .footer-widget .list-footer a {
color: #a6adbc;
position: relative; }
.footer-layout-five .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fff;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-five .footer-widget .list-footer a:hover {
color: #fff; }
.footer-layout-five .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-five .footer-widget .footer-logo {
margin-bottom: 40px;
display: inline-block; }
.footer-layout-five .footer-widget .footer-social a {
margin-bottom: 20px;
display: inline-block;
color: #a6adbc; }
.footer-layout-five .footer-widget .footer-social a:hover {
color: #fff; }
.footer-layout-five .footer-form input, .footer-layout-five .footer-form textarea {
border: 1px solid rgba(221, 221, 221, 0.1);
background: transparent;
color: #fff;
padding: 12px 20px;
margin-bottom: 8px;
width: 100%; }
.footer-layout-five .footer-form input::-webkit-input-placeholder, .footer-layout-five .footer-form textarea::-webkit-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input:-ms-input-placeholder, .footer-layout-five .footer-form textarea:-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input::-ms-input-placeholder, .footer-layout-five .footer-form textarea::-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input::placeholder, .footer-layout-five .footer-form textarea::placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input:focus, .footer-layout-five .footer-form textarea:focus {
border-color: #fff; }
.footer-layout-five .footer-form textarea {
min-height: 100px;
margin-bottom: 4px; }
.footer-layout-five .footer-form button {
background: #fb5252;
padding: 14px 20px;
text-align: center;
font-weight: 600;
color: #fff;
width: 100%; }
.footer-layout-five .footer-bottom {
background: #142129;
padding: 20px 0; }
.footer-layout-five .footer-bottom p {
color: #fff; }
.footer-layout-five .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-five .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-five .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-five .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-five .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-five .footer-bottom a {
color: #fb5252; }
.footer-layout-five .footer-bottom .bottom-social li a:before {
display: none; }
.footer-layout-eight {
background: #1a191e;
padding: 120px 0 0; }
.footer-layout-eight .footer-top {
padding-bottom: 100px; }
.footer-layout-eight .footer-top .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-eight .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-eight .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-eight .footer-top .footer-widget .list-footer a {
color: #a6adbc;
position: relative; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fff;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:hover {
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-eight .footer-top .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-eight .footer-top .footer-widget .list-address li {
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
width: 100%; }
.footer-layout-eight .footer-top .footer-widget .footer-form p {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form form {
position: relative;
margin-bottom: 25px; }
.footer-layout-eight .footer-top .footer-widget .footer-form input {
border: 0;
background: transparent;
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
width: 100%;
padding: 12px;
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::-webkit-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input:-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input:focus {
border-color: #fff; }
.footer-layout-eight .footer-top .footer-widget .footer-form button {
position: absolute;
right: 5px;
top: 12px;
background: transparent;
font-weight: 600;
color: #fff; }
.footer-layout-eight .footer-bottom .container {
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.2); }
.footer-layout-eight .footer-bottom p {
color: #fff; }
.footer-layout-eight .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-eight .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-eight .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-eight .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-eight .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-eight .footer-bottom a {
color: #fb5252; }
/*
========================================
03 - Hero & Slider Style
========================================
*/
.hero-layout-one {
position: relative;
padding-top: 150px;
padding-bottom: 100px;
height: 1250px;
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; }
.hero-layout-one:before {
content: "";
background: url("../img/header-1.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1270px;
z-index: -1;
position: absolute;
left: 0;
top: 0; }
.hero-layout-one h1 {
color: #fff; }
.hero-layout-two {
margin-top: 90px; }
.hero-layout-two .animated {
position: relative;
-webkit-transition: all 1s ease-in-out 0s;
-o-transition: all 1s ease-in-out 0s;
transition: all 1s ease-in-out 0s;
-webkit-transform: translateY(25px);
-ms-transform: translateY(25px);
transform: translateY(25px); }
.hero-layout-two .col-md-8 {
padding-right: 80px; }
.hero-layout-two .col-md-8 h1, .hero-layout-two .col-md-8 p {
color: #fff; }
.hero-layout-two .col-md-8 p {
padding: 10px 0; }
.hero-layout-two h1 {
font-size: 4em; }
.hero-layout-two .slider-item.slick-active .animated {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
.hero-layout-two .slider-item {
position: relative; }
.hero-layout-two .slider-item .slider-content {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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: rgba(0, 0, 0, 0.4); }
.hero-layout-two .property-item {
position: relative;
background: #fff; }
.hero-layout-two .property-item .feature-tag {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 4px 20px;
border-radius: 3px; }
.hero-layout-two .property-item .content-top {
padding: 25px 30px; }
.hero-layout-two .property-item .content-top h4 {
font-size: 20px;
margin-bottom: 15px;
padding-top: 10px; }
.hero-layout-two .property-item .content-top h4 a {
color: #343851; }
.hero-layout-two .property-item .content-top i {
padding-right: 5px; }
.hero-layout-two .property-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.hero-layout-two .property-item .content-middle i {
color: #fb5252; }
.hero-layout-two .property-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.hero-layout-two .property-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.hero-layout-two .property-item .content-middle .favorite-feature i {
line-height: 31px; }
.hero-layout-two .property-item .content-middle strong {
font-weight: 500; }
.hero-layout-two .property-item .footer-content {
padding: 25px 30px;
overflow: hidden; }
.hero-layout-two .property-item .footer-content .img {
margin-right: 8px; }
.hero-layout-two .property-item .footer-content .author {
float: left; }
.hero-layout-two .property-item .footer-content .right-content {
float: right; }
.hero-layout-two .property-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 16px; }
.hero-layout-two .property-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
text-indent: -9999px;
display: inline-block; }
.hero-layout-two .property-item .footer-content .right-content a span::before, .hero-layout-two .property-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.hero-layout-two .property-item .footer-content .right-content a span:before {
top: -10px; }
.hero-layout-two .property-item .footer-content .right-content a span:after {
bottom: -10px; }
.hero-layout-two .property-item .footer-content .right-content a.active span, .hero-layout-two .property-item .footer-content .right-content a.active span:before, .hero-layout-two .property-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.hero-layout-two .property-item .icon-group {
position: absolute;
right: 20px;
top: -2px; }
.hero-layout-two .property-item .icon-group li a {
width: 20px;
color: #fff;
font-size: 12px;
height: 30px;
background: #fb5252;
color: #fff;
line-height: 25px;
display: inline-block;
text-align: center;
position: relative; }
.hero-layout-two .property-item .icon-group li a:before {
content: "";
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #fff;
position: absolute;
left: 5px;
bottom: -5px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.hero-layout-two .property-item .icon-group li a.blue-bolt {
background: #0075ff; }
.hero-layout-two .property-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.hero-layout-two .property-item .house-feature li {
position: relative;
padding-left: 12px; }
.hero-layout-two .property-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.hero-layout-two .property-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.hero-layout-two .slick-arrow {
background: rgba(0, 0, 0, 0.5);
color: #fff;
width: 60px;
height: 70px;
border-radius: 3px;
line-height: 70px;
text-align: center;
font-size: 28px;
display: inline-block !important;
position: absolute;
top: 50%;
margin-top: -35px;
z-index: 9;
font-weight: bold;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.hero-layout-two .slick-arrow.flaticon-left {
left: 0; }
.hero-layout-two .slick-arrow.flaticon-right {
right: 0; }
.hero-layout-two .slick-arrow:hover {
background: #fb5252;
color: #fff; }
.hero-layout-three {
padding-top: 50px;
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-repeat: no-repeat;
background-size: cover;
overflow: hidden; }
.hero-layout-three .container {
position: relative; }
.hero-layout-three .container .row {
min-height: 950px; }
.hero-layout-three p {
font-size: 18px;
margin-bottom: 50px;
color: #343851; }
.hero-layout-three h4 {
text-transform: uppercase; }
.hero-layout-three h1 {
font-size: 4.1em;
margin-bottom: 30px; }
.hero-layout-three .button-group a:first-child {
margin-right: 25px; }
.hero-layout-three .img-hero {
position: absolute;
right: -100px;
bottom: -50px; }
.hero-layout-four {
position: relative; }
.hero-layout-four .hero-slider {
position: relative; }
.hero-layout-four .hero-slider img {
min-height: 1020px; }
.hero-layout-four .hero-content {
position: absolute;
height: 100%;
width: 100%;
z-index: 10;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.5); }
.hero-layout-four .hero-content h1, .hero-layout-four .hero-content p, .hero-layout-four .hero-content h6, .hero-layout-four .hero-content i {
color: #fff; }
.hero-layout-four .hero-content h1 {
font-size: 5.8em;
text-transform: uppercase;
margin-bottom: 40px; }
.hero-layout-four .hero-content .container {
position: relative;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.hero-layout-four .hero-content .container > p {
font-size: 22px;
font-weight: 600;
text-transform: uppercase; }
.hero-layout-four .hero-content .content-flexible {
position: absolute;
bottom: 50px;
left: 30px; }
.hero-layout-four .hero-content .content-flexible .icon {
font-size: 45px;
line-height: 1;
margin-right: 20px; }
.hero-layout-four .hero-content .content-flexible h6 {
line-height: 1; }
.hero-layout-four .slick-dots {
bottom: 55px;
text-align: right;
max-width: 1260px;
z-index: 15;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.hero-layout-four .slick-dots li {
width: 20px;
height: 20px; }
.hero-layout-four .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.hero-layout-four .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.hero-layout-four .slick-dots li button:before {
display: none; }
.hero-layout-four .open-button {
width: 25px;
height: 25px;
background: #fb5252;
color: #fff;
position: absolute;
left: 0;
bottom: 0; }
.hero-layout-four .open-button:before {
content: "";
width: 12px;
height: 2px;
background: #fff;
position: absolute;
left: 49%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.hero-layout-four .open-button:after {
content: "";
width: 2px;
height: 12px;
background: #fff;
position: absolute;
left: 49%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.hero-layout-five {
position: relative; }
.hero-layout-five .hero-content {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding-top: 70px;
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; }
.hero-layout-five .hero-left h4 {
text-transform: uppercase;
margin-bottom: 20px;
font-weight: bold; }
.hero-layout-five .hero-left h4 i {
padding-right: 10px; }
.hero-layout-five .hero-left h1 {
margin-bottom: 30px; }
.hero-layout-five .hero-left p.lead {
font-weight: 500;
margin-bottom: 60px; }
.hero-layout-five .hero-form {
background: #fff;
margin-left: 60px;
padding: 30px 30px 40px;
border-radius: 5px; }
.hero-layout-five .hero-form h3 {
margin-bottom: 20px; }
.hero-layout-five .hero-form input, .hero-layout-five .hero-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #ddd;
margin-bottom: 20px; }
.hero-layout-five .hero-form input:focus, .hero-layout-five .hero-form textarea:focus {
border-color: #fb5252; }
.hero-layout-five .hero-form textarea {
min-height: 100px;
margin-bottom: 15px; }
.hero-layout-five .hero-form button {
padding: 14px 15px;
text-align: center;
background: #fb5252;
color: #fff;
width: 100%;
border-radius: 3px; }
.hero-layout-six {
position: relative;
padding-top: 220px;
background: url("https://via.placeholder.com/1920x1060/eee/999") no-repeat;
background-size: cover;
min-height: 1060px; }
.hero-layout-six .search-layout-two .search-layout {
-webkit-box-shadow: unset;
box-shadow: unset; }
.hero-layout-six h1 {
font-size: 50px;
font-weight: 500; }
.hero-layout-seven {
position: relative;
padding-top: 220px;
background: url("../img/header-5.png") no-repeat;
background-size: cover;
min-height: 1100px; }
.hero-layout-seven .container-fluid {
max-width: 1500px;
position: relative;
min-height: 750px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.hero-layout-seven .container-fluid > .row {
width: 100%; }
.hero-layout-seven .background-shape-two {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.hero-layout-seven .background-shape-two .bg-shape {
position: absolute; }
.hero-layout-seven .background-shape-two .bg-shape:nth-child(1) {
left: 150px;
top: 350px; }
.hero-layout-seven .background-shape-two .bg-shape:nth-child(2) {
right: 520px;
bottom: 110px; }
.hero-layout-seven .hero-social {
position: absolute;
bottom: 0;
left: 0;
width: 100%; }
.hero-layout-seven .hero-social li:not(:last-child) {
padding-right: 10px; }
.hero-layout-seven .hero-social a {
color: #fff; }
.hero-layout-seven h1 {
font-size: 4.1em;
margin-bottom: 45px; }
.hero-layout-seven p {
margin-bottom: 50px; }
.hero-layout-seven .hero-slider-two {
position: absolute;
right: 0;
top: 0;
width: 950px;
width: 825px;
border-radius: 50%; }
.hero-layout-seven .hero-slider-two .hover {
position: absolute;
left: 52%;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%); }
.hero-layout-seven .hero-slider-two .hover .play-button {
background: #fb5252;
color: #fff;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 34px;
display: block;
border-radius: 50%;
position: relative; }
.hero-layout-seven .hero-slider-two .hover .play-button i {
position: relative;
z-index: 2; }
.hero-layout-seven .hero-slider-two .hover .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
opacity: .4;
position: absolute;
left: -12px;
top: -12px;
border-radius: 50%; }
.hero-layout-seven .hero-navigation {
max-width: 525px;
position: absolute;
right: 30px;
bottom: 30px; }
.hero-layout-seven .hero-navigation .hero-nav-item {
margin: 0 5px; }
.hero-layout-seven .hero-navigation .hero-nav-item img {
width: 100%;
border: 4px solid #29374f;
border-radius: 10px;
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
cursor: pointer; }
.hero-layout-seven .hero-navigation .hero-nav-item.slick-current img {
border-color: #fff; }
.innar-hero .list-inline a {
color: #757c8c; }
.innar-hero .list-inline a:hover {
color: #fb5252; }
.innar-hero .list-inline li {
margin-right: 2px;
color: #aaa; }
.innar-hero .list-inline i {
font-size: 10px; }
/*
========================================
04 - Featured Section
========================================
*/
.feature-layout-one {
position: relative;
overflow: hidden; }
.feature-layout-one:before {
content: "";
width: 100%;
height: 80%;
background: #f2f6f9;
z-index: -1;
position: absolute;
left: 0;
bottom: 0;
-webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%); }
.feature-layout-one .featured-tt {
padding: 0 15px 15px; }
.feature-layout-one .sale-carousel, .feature-layout-one .rent-carousel {
margin: 0 -15px;
position: relative; }
.feature-layout-one .featured-item {
border-radius: 5px;
background: #fff;
-webkit-box-shadow: 0px 6px 15px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 6px 15px 0px rgba(111, 120, 142, 0.1);
overflow: hidden; }
.feature-layout-one .featured-item img {
width: 100%; }
.feature-layout-one .featured-item .img {
position: relative; }
.feature-layout-one .featured-item .img .hover {
position: absolute;
padding: 25px 30px;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-one .featured-item .img .hover .features-icon {
position: absolute;
bottom: 0;
left: 0;
padding: 0 30px 25px;
width: 100%; }
.feature-layout-one .featured-item .img .hover .features-icon a {
font-size: 24px;
color: #fff;
line-height: 1; }
.feature-layout-one .featured-item .img .hover .features-icon a:hover {
color: #fb5252; }
.feature-layout-one .featured-item .img .hover .features-icon a:last-child {
float: right; }
.feature-layout-one .featured-item .content {
margin: 20px 25px 0;
padding-bottom: 30px;
border-bottom: 1px solid #ededed;
position: relative; }
.feature-layout-one .featured-item .map-featured {
-webkit-box-shadow: 0px 0px 43px 0px rgba(210, 210, 210, 0.21);
box-shadow: 0px 0px 43px 0px rgba(210, 210, 210, 0.21);
border: 8px solid #fff;
border-radius: 5px;
overflow: hidden;
position: absolute;
bottom: 60px;
left: 0;
display: none; }
.feature-layout-one .featured-item .map-featured img {
max-width: 100%; }
.feature-layout-one .featured-item h4 a {
color: #343851; }
.feature-layout-one .featured-item p {
cursor: pointer; }
.feature-layout-one .featured-item .post-footer {
padding: 20px 25px 15px;
overflow: hidden; }
.feature-layout-one .featured-item .post-footer > div {
float: left; }
.feature-layout-one .featured-item .post-footer > div:last-child {
float: right; }
.feature-layout-one .featured-item .post-footer .author .img {
margin-right: 10px; }
.feature-layout-one .featured-item .post-footer .post-icons i {
font-size: 24px; }
.feature-layout-one .featured-item .post-footer .post-icons i:last-child {
margin-left: 12px; }
.feature-layout-one .featured-item .button-amount {
background: #fff;
padding: 5px 25px;
border-radius: 5px;
color: #fb5252;
display: inline-block;
font-weight: 600;
font-size: 18px; }
.feature-layout-one .featured-item .post-icons li {
position: relative;
padding: 6px;
border-radius: 4px;
line-height: 1;
color: #343851; }
.feature-layout-one .featured-item .post-icons li span {
width: 20px;
height: 20px;
font-size: 14px;
background: #fb5252;
position: absolute;
right: -10px;
top: -10px;
border-radius: 50%;
text-align: center;
line-height: 16px;
color: #fff;
font-weight: 500; }
.feature-layout-one .featured-item:hover .button-amount {
background: #fb5252;
color: #fff; }
.feature-layout-one .featured-item:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.feature-layout-one .col-md-6 {
position: relative; }
.feature-layout-one .latest-sale-dots, .feature-layout-one .latest-rent-dots {
position: relative;
z-index: 1; }
.feature-layout-one .latest-sale-dots .slick-dots, .feature-layout-one .latest-rent-dots .slick-dots {
position: relative;
bottom: 0; }
.feature-layout-one .rent-tab {
display: none; }
.feature-layout-one .latest-rent-tab {
opacity: 0;
position: relative;
height: 0; }
.feature-layout-one .latest-sale-tab, .feature-layout-one .latest-rent-tab {
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out; }
.feature-layout-one .button-group {
float: right; }
.feature-layout-one .button-group a {
text-transform: unset; }
.feature-layout-one .button-group a:hover {
-webkit-transform: unset;
-ms-transform: unset;
transform: unset; }
.feature-layout-one .button-group a:last-child {
margin-left: 15px; }
.feature-layout-one .button-group a.active {
background: #fb5252;
color: #fff; }
.feature-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.feature-layout-one .slick-dots li.slick-active button {
background: #fb5252; }
.feature-layout-one .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.feature-layout-one .slick-dots li button:before {
display: none; }
.latest-property-layout:before {
width: 100%;
height: 100%;
-webkit-clip-path: unset;
clip-path: unset; }
.latest-property-layout .container-fluid {
max-width: 1450px; }
.feature-layout-two .feature-item {
position: relative;
padding: 60px 40px;
background: #fff;
border-radius: 5px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
overflow: hidden; }
.feature-layout-two .feature-item:before, .feature-layout-two .feature-item:after {
content: "";
width: 274px;
height: 274px;
background: rgba(255, 255, 255, 0.07);
border-radius: 50%;
position: absolute;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
opacity: 0; }
.feature-layout-two .feature-item:before {
right: -90px;
top: -90px;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear; }
.feature-layout-two .feature-item:after {
right: -70px;
top: -70px;
-webkit-transition: all .6s linear;
-o-transition: all .6s linear;
transition: all .6s linear; }
.feature-layout-two .feature-item i, .feature-layout-two .feature-item h4, .feature-layout-two .feature-item p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-two .feature-item i {
font-size: 60px;
color: #fb5252;
line-height: 1; }
.feature-layout-two .feature-item h4 {
padding: 35px 0 20px; }
.feature-layout-two .feature-item:hover {
background: #fb5252; }
.feature-layout-two .feature-item:hover i, .feature-layout-two .feature-item:hover h4, .feature-layout-two .feature-item:hover p {
color: #fff; }
.feature-layout-two .feature-item:hover:before, .feature-layout-two .feature-item:hover:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1; }
.feature-layout-three {
position: relative;
overflow: hidden; }
.feature-layout-three:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -550px;
left: 0; }
.feature-layout-three .feature-item {
background: #fff;
border: 1px solid #ededed;
border-radius: 5px;
padding: 60px 25px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
-webkit-box-shadow: unset;
box-shadow: unset; }
.feature-layout-three .feature-item .icon {
position: relative;
font-size: 85px;
color: #fb5252;
line-height: 1;
height: 100px; }
.feature-layout-three .feature-item .icon i {
position: relative;
z-index: 2; }
.feature-layout-three .feature-item .icon:before {
content: "";
width: 112px;
height: 112px;
background: rgba(251, 82, 82, 0.1);
border-radius: 50%;
position: absolute;
right: 70px;
top: -10px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.feature-layout-three .feature-item h4 {
padding: 15px 0 10px; }
.feature-layout-three .feature-item:hover {
border-color: #fff;
-webkit-box-shadow: 0px 16px 35px 0px rgba(111, 120, 142, 0.11);
box-shadow: 0px 16px 35px 0px rgba(111, 120, 142, 0.11); }
.feature-layout-three .feature-item:hover .icon:before {
opacity: 1; }
.feature-layout-four {
position: relative; }
.feature-layout-four:before {
content: "";
width: 525px;
height: 525px;
background: url("../img/feature/shape.png") no-repeat;
background-size: contain;
position: absolute;
left: 25px;
bottom: 30px; }
.feature-layout-four:after {
content: "";
width: 525px;
height: 525px;
background: url("../img/feature/shape-2.png") no-repeat;
background-size: contain;
position: absolute;
right: 25px;
top: 30px; }
.feature-layout-four .container {
position: relative;
z-index: 2; }
.feature-layout-four .feature-item {
-webkit-box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.15);
background: #fff;
position: relative; }
.feature-layout-four .feature-item .img {
position: relative; }
.feature-layout-four .feature-item .img img {
width: 100%; }
.feature-layout-four .feature-item .img:hover .slick-arrow {
opacity: 1; }
.feature-layout-four .feature-item .img:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.feature-layout-four .feature-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-four .feature-item .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.feature-layout-four .feature-item .rent-tag {
background: #ff9c00;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.feature-layout-four .feature-item .feature-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.feature-layout-four .feature-item .img-footer {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px; }
.feature-layout-four .feature-item .img-footer h4 {
float: left;
color: #fff;
line-height: 1; }
.feature-layout-four .feature-item .img-footer h4 span {
font-size: 16px;
font-weight: 400; }
.feature-layout-four .feature-item .img-footer .list-inline {
float: right; }
.feature-layout-four .feature-item .img-footer .list-inline a {
font-size: 24px;
color: #fff;
line-height: 1; }
.feature-layout-four .feature-item .img-footer .list-inline a:hover {
color: #fb5252; }
.feature-layout-four .feature-item .slick-arrow {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 2;
color: #fff;
font-size: 32px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer;
font-weight: 500; }
.feature-layout-four .feature-item .slick-arrow.flaticon-right {
right: 20px; }
.feature-layout-four .feature-item .slick-arrow.flaticon-left {
left: 20px; }
.feature-layout-four .feature-item .content {
padding: 30px 30px 15px; }
.feature-layout-four .feature-item .content h4 {
padding-bottom: 2px; }
.feature-layout-four .feature-item .content .row i, .feature-layout-four .feature-item .content p i {
padding-right: 5px; }
.feature-layout-four .feature-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px;
margin-top: 15px; }
.feature-layout-four .feature-item .footer-content > div {
float: left; }
.feature-layout-four .feature-item .footer-content > div:last-child {
float: right; }
.feature-layout-four .feature-item .footer-content .author .img {
margin-right: 10px; }
.feature-layout-four .feature-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.feature-layout-four .feature-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.feature-layout-four .feature-item .footer-content a.active {
color: #fb5252; }
.feature-layout-four .feature-item .footer-content a.active > i:before {
content: "\f106"; }
.feature-layout-four .feature-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: -150px;
bottom: 40px;
z-index: 4; }
.feature-layout-four .feature-item .house-feature li {
position: relative;
padding-left: 12px; }
.feature-layout-four .feature-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.feature-layout-four .feature-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.feature-background {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x910/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-repeat: no-repeat;
background-size: cover; }
.feature-background:before {
background: url("../img/feature/shape-3.png") no-repeat;
background-size: contain; }
.feature-background:after {
background: url("../img/feature/shape-4.png") no-repeat;
background-size: contain;
top: 70px; }
.hover-layout .feature-item:before, .hover-layout .feature-item:after {
display: none; }
.hover-layout .feature-item .before {
width: 100%;
height: 100%;
position: absolute;
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/370/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-repeat: no-repeat;
background-size: cover;
left: 0;
top: 0;
z-index: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.hover-layout .feature-item .before:before, .hover-layout .feature-item .before:after {
content: "";
width: 274px;
height: 274px;
background: rgba(251, 82, 82, 0.07);
border-radius: 50%;
position: absolute;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
opacity: 1; }
.hover-layout .feature-item .before:before {
right: -90px;
top: -90px;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear; }
.hover-layout .feature-item .before:after {
right: -70px;
top: -70px;
-webkit-transition: all .6s linear;
-o-transition: all .6s linear;
transition: all .6s linear; }
.hover-layout .feature-item i, .hover-layout .feature-item h4, .hover-layout .feature-item p {
position: relative;
z-index: 2; }
.hover-layout .feature-item:hover {
background: #fff; }
.hover-layout .feature-item:hover i {
color: #fb5252; }
.hover-layout .feature-item:hover h4 {
color: #343851; }
.hover-layout .feature-item:hover p {
color: #757c8c; }
.hover-layout .feature-item:hover .before {
opacity: 1; }
.hover-layout .feature-item:hover .before:before, .hover-layout .feature-item:hover .before:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
.feature-layout-five .feature-left {
padding-right: 60px; }
.feature-layout-five .feature-left p.lead {
font-size: 2.3em;
color: #343851;
margin-bottom: 30px; }
.feature-layout-five .feature-left p {
margin-bottom: 50px; }
.feature-layout-five .feature-left .button {
text-transform: uppercase; }
.feature-layout-five .feature-right {
padding-left: 40px; }
.feature-layout-five .feature-right img {
width: 100%;
border: 10px solid #fff;
-webkit-box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09);
box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09); }
.feature-layout-six {
padding-bottom: 55px; }
.feature-layout-six .feature-carousel-two {
margin: 0 -15px; }
.feature-layout-six .feature-carousel-two:hover .slick-arrow {
opacity: 1; }
.feature-layout-six .bottom-position {
margin-top: -45px; }
.feature-layout-six .feature-tt {
padding: 0 15px 45px; }
.feature-layout-six .col-md-4 {
position: relative; }
.feature-layout-six .feature-item {
position: relative;
background: #fff;
height: 100%;
-webkit-box-shadow: 0px 20px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 20px 25px 0px rgba(111, 120, 142, 0.15); }
.feature-layout-six .feature-item .img {
position: relative; }
.feature-layout-six .feature-item .img img {
width: 100%; }
.feature-layout-six .feature-item .img:hover .hover {
background: rgba(0, 0, 0, 0.3); }
.feature-layout-six .feature-item .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 15px 15px 0;
background: rgba(0, 0, 0, 0.2);
border-bottom: 3px solid transparent;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-six .feature-item .hover .button-group a {
border-radius: 3px;
color: #fff;
padding: 6px 20px;
display: inline-block;
text-transform: uppercase;
font-weight: 600;
font-size: 14px; }
.feature-layout-six .feature-item .hover .button-group a:last-child {
margin-left: 5px; }
.feature-layout-six .feature-item .hover .button-group .button-blue {
background: #0075ff; }
.feature-layout-six .feature-item .hover .button-group .tag-primary {
background: #fb5252; }
.feature-layout-six .feature-item .hover .button-group .button-yellow {
background: #ff9c00; }
.feature-layout-six .feature-item .hover .pricing {
position: absolute;
bottom: 10px;
left: 0;
padding: 0 10px;
width: 100%; }
.feature-layout-six .feature-item .hover .pricing h5 {
float: left; }
.feature-layout-six .feature-item .hover .pricing span {
font-size: 16px;
font-weight: 400; }
.feature-layout-six .feature-item .hover .pricing a {
color: #fff;
float: right;
font-size: 16px;
line-height: 1;
background-color: rgba(0, 0, 0, 0.4);
padding: 8px 10px;
border-radius: 3px; }
.feature-layout-six .feature-item .hover .pricing a:hover {
background-color: #fb5252; }
.feature-layout-six .feature-item .content-title {
padding: 30px; }
.feature-layout-six .feature-item .content-title h4 {
font-weight: 500;
margin-bottom: 15px; }
.feature-layout-six .feature-item .content-title h4 a {
color: #343851; }
.feature-layout-six .feature-item .content-title h4 a:hover {
color: #fb5252; }
.feature-layout-six .feature-item .content-title i {
padding-right: 5px; }
.feature-layout-six .feature-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.feature-layout-six .feature-item .content-middle i {
color: #fb5252; }
.feature-layout-six .feature-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.feature-layout-six .feature-item .content-middle strong {
font-weight: 500; }
.feature-layout-six .feature-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-six .feature-item .content-middle .favorite-feature i {
line-height: 31px; }
.feature-layout-six .feature-item .footer-content {
padding: 30px;
overflow: hidden; }
.feature-layout-six .feature-item .footer-content .img {
margin-right: 8px; }
.feature-layout-six .feature-item .footer-content .author {
float: left; }
.feature-layout-six .feature-item .footer-content .right-content {
float: right;
margin-top: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 0;
right: -10px;
text-align: center;
font-size: 0;
width: 30px;
height: 30px; }
.feature-layout-six .feature-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
top: 10px;
display: inline-block; }
.feature-layout-six .feature-item .footer-content .right-content a span::before, .feature-layout-six .feature-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.feature-layout-six .feature-item .footer-content .right-content a span:before {
top: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a span:after {
bottom: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a.active span, .feature-layout-six .feature-item .footer-content .right-content a.active span:before, .feature-layout-six .feature-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.feature-layout-six .feature-item:hover .hover {
border-color: #fb5252; }
.feature-layout-six .feature-item:hover .content-middle .favorite-feature {
background: #fb5252; }
.feature-layout-six .feature-item:hover .content-middle .favorite-feature i {
color: #fff; }
.feature-layout-six .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.feature-layout-six .house-feature li {
position: relative;
padding-left: 12px; }
.feature-layout-six .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.feature-layout-six .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.feature-layout-six .slick-arrow {
border-radius: 50%;
background-color: #fff;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
width: 70px;
height: 70px;
position: absolute;
top: 115px;
text-align: center;
line-height: 70px;
color: #fb5252;
z-index: 3;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: bold;
cursor: pointer; }
.feature-layout-six .slick-arrow.flaticon-right-chevron {
right: -20px; }
.feature-layout-six .slick-arrow.flaticon-left-chevron {
left: -20px; }
.feature-layout-seven .feature-item {
padding: 60px 40px 40px;
border-radius: 5px; }
.feature-layout-seven .feature-item .icon {
font-size: 70px;
line-height: 1;
margin-right: 25px; }
.feature-layout-seven .feature-item h4 {
margin-bottom: 20px; }
.feature-layout-seven .feature-item p {
margin-bottom: 30px; }
.feature-layout-eight .feature-tab-control {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
overflow: hidden;
text-align: center; }
.feature-layout-eight .feature-tab-control .tab-item {
float: left;
width: 33.33%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
text-transform: uppercase;
font-weight: 600;
font-size: 18px;
padding: 45px 30px;
cursor: pointer;
color: #343851; }
.feature-layout-eight .feature-tab-control .tab-item.active {
background: #fb5252;
color: #fff; }
.feature-layout-eight .rent-lists, .feature-layout-eight .buy-lists, .feature-layout-eight .sale-lists {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .rent-lists .container-fluid, .feature-layout-eight .buy-lists .container-fluid, .feature-layout-eight .sale-lists .container-fluid {
max-width: 1550px; }
.feature-layout-eight .rent-lists, .feature-layout-eight .buy-lists {
display: none; }
.feature-layout-eight .feature-item {
position: relative;
background: #fff;
-webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
overflow: hidden; }
.feature-layout-eight .feature-item img {
width: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .compare {
position: absolute;
top: 20px;
right: 20px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.feature-layout-eight .feature-item .compare a {
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 8px 10px;
border-radius: 3px; }
.feature-layout-eight .feature-item .compare a:hover {
background: #fb5252; }
.feature-layout-eight .feature-item .content {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content h4 a, .feature-layout-eight .feature-item .content p {
color: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content p {
font-weight: 600; }
.feature-layout-eight .feature-item .content .content-top {
padding: 35px 30px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .content-middle {
padding: 20px 30px; }
.feature-layout-eight .feature-item .content .tag-group {
position: absolute;
top: -15px;
left: 30px; }
.feature-layout-eight .feature-item .content .tag-group a {
font-size: 14px; }
.feature-layout-eight .feature-item .content .tag-group a:first-child {
margin-right: 10px; }
.feature-layout-eight .feature-item .content h4 {
margin-bottom: 3px; }
.feature-layout-eight .feature-item .content .feature-tag {
background: #fb5252;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .blue-tag {
background: #0075ff;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .yellow-tag {
background: #ff9c00;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .flaticon-building {
font-size: 20px;
margin-right: 5px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: rgba(255, 255, 255, 0.3);
color: #fff;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .favorite-feature i {
line-height: 31px; }
.feature-layout-eight .feature-item:hover img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.feature-layout-eight .feature-item:hover .content {
background: #fff; }
.feature-layout-eight .feature-item:hover .content .content-top {
border-color: #eaeaea; }
.feature-layout-eight .feature-item:hover .content h4 a, .feature-layout-eight .feature-item:hover .content .content-middle p {
color: #343851; }
.feature-layout-eight .feature-item:hover .content p {
color: #757c8c; }
.feature-layout-eight .feature-item:hover .content .favorite-feature {
background: #fb5252; }
.feature-layout-eight .feature-item:hover .content .flaticon-building {
color: #fb5252; }
.feature-layout-eight .feature-item:hover .compare {
opacity: 1; }
.feature-layout-nine .feature-item {
padding: 0 40px; }
.feature-layout-nine .feature-item i {
color: #fb5252;
font-size: 80px;
margin-bottom: 30px;
display: inline-block;
line-height: 1; }
.feature-layout-nine .feature-item h4 {
margin-bottom: 20px; }
.feature-pb {
padding-bottom: 100px; }
.no-background:before {
display: none; }
/*
========================================
05 - About Section
========================================
*/
.about-layout-one .section-head h2::before {
left: 2px; }
.about-layout-one .about-left {
position: relative;
left: -70px; }
.about-layout-one .about-left .about-slide {
border-radius: 10px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
overflow: hidden;
position: relative; }
.about-layout-one .about-left .about-slide img {
width: 100%; }
.about-layout-one .about-left .about-slide h2 {
position: absolute;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-size: 70px;
width: 565px;
top: 270px;
left: -230px;
text-transform: uppercase;
-webkit-text-stroke: 2px #fff;
-webkit-text-fill-color: transparent;
text-shadow: 0px 8px 5px rgba(0, 0, 0, 0.21); }
.about-layout-one .about-left .about-navigation {
position: absolute;
bottom: 40px;
right: -60px;
width: 90%; }
.about-layout-one .about-left .about-navigation .about-tt {
padding: 5px; }
.about-layout-one .about-left .about-navigation .about-nav {
cursor: pointer; }
.about-layout-one .about-left .about-navigation .about-nav img {
max-width: 100%;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
border: 4px solid #fff;
border-radius: 10px; }
.about-layout-one .about-list li {
padding: 0 0 12px 15px;
position: relative; }
.about-layout-one .about-list li:before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: #fb5252;
position: absolute;
left: 0;
top: 10px; }
.about-layout-one .about-list li:last-child {
padding-bottom: 0; }
.about-layout-two {
padding-top: 120px;
padding-bottom: 200px;
position: relative; }
.about-layout-two:before {
content: "";
width: 680px;
height: 747px;
background: url("../img/about/shape.png") no-repeat;
position: absolute;
left: 15px;
top: 20px;
z-index: -1; }
.about-layout-two .about-left {
position: relative;
width: calc(100% + 180px);
left: -250px; }
.about-layout-two .about-left:before {
content: "";
width: 292px;
height: 302px;
background: url("../img/about/shape-2.png") no-repeat;
position: absolute;
right: -85px;
bottom: -95px;
z-index: -1; }
.about-layout-two .about-slide img {
border: 10px solid #fff;
max-width: 100%; }
.about-layout-two .about-navigation {
max-width: 540px;
position: absolute;
left: -70px;
bottom: 20px; }
.about-layout-two .about-navigation .about-nav {
margin: 15px 5px; }
.about-layout-two .about-navigation img {
border: 4px solid #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 6px 13px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 13px 0px rgba(111, 120, 142, 0.05);
max-width: 100%; }
.about-layout-two .about-feature {
border-top: 1px solid #ededed;
padding-top: 30px; }
.about-layout-two .about-feature .about-flex {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.about-layout-two .about-feature .about-flex i {
padding-right: 8px; }
.about-layout-three .about-left {
position: relative; }
.about-layout-three .about-left img {
border: 10px solid #fff;
width: 98%;
-webkit-box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08); }
.about-layout-three .about-left .button-about {
position: absolute;
background: url("../img/about/shape-3.png") no-repeat;
width: 153px;
height: 150px;
top: 30px;
right: 30px;
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; }
.about-layout-three .about-left .button-about a {
color: #fff;
font-size: 20px;
text-transform: uppercase;
font-weight: 600;
display: inline-block;
line-height: 1;
margin-top: 10px; }
.about-layout-three .list-inline li:not(:last-child) {
padding-right: 20px; }
.about-layout-three .list-inline a {
color: #757c8c;
font-size: 20px;
display: inline-block; }
.about-layout-three .list-inline a:hover {
color: #fb5252; }
.about-layout-four {
position: relative;
padding: 100px 0 320px; }
.about-layout-four:before {
content: "";
background: url("../img/property-bg.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -2;
top: -450px;
left: 0; }
.about-layout-four:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -400px;
left: 0; }
.about-layout-four p.primary-color {
font-weight: 600;
text-transform: uppercase;
margin-bottom: 0; }
.about-layout-four .about-item {
margin: 30px 0 60px; }
.about-layout-four .about-item .icon {
font-size: 55px;
line-height: 1;
margin-right: 15px; }
.about-layout-four .about-item h6 {
font-size: 22px;
line-height: 1; }
.about-layout-four h2 {
margin-bottom: 55px;
text-transform: uppercase;
padding-top: 5px; }
.about-layout-four .about-left {
padding-right: 40px; }
.about-layout-four .about-right {
position: relative; }
.about-layout-four .about-right:before, .about-layout-four .about-right:after {
content: "";
width: 50px;
height: 50px;
border-style: solid;
border-width: 3px 0 0 3px;
border-color: #fb5252 transparent transparent #fb5252;
position: absolute;
left: -20px;
top: -20px; }
.about-layout-four .about-right:after {
left: auto;
top: auto;
border-width: 0 3px 3px 0;
border-color: transparent #fb5252 #fb5252 transparent;
right: -20px;
bottom: -20px; }
.about-layout-four .about-right img {
border: 10px solid #fff;
width: 100%; }
.about-layout-four .about-right .about-hover {
position: absolute;
right: -20%;
bottom: 50px; }
.about-layout-four .about-right .about-hover img {
border: 8px solid #fff; }
.about-layout-five {
position: relative; }
.about-layout-five:before {
content: "";
width: 675px;
height: 610px;
background: url("../img/about/shape-4.png") no-repeat;
position: absolute;
left: 50px;
top: 150px;
z-index: -1; }
.about-layout-five:after {
content: "";
width: 431px;
height: 640px;
background: url("../img/about/shape-5.png") no-repeat;
position: absolute;
right: 0px;
bottom: -280px;
z-index: -1; }
.about-layout-five .about-left {
position: relative;
left: -50px; }
.about-layout-five .about-list {
margin-bottom: 55px; }
.about-layout-five .about-list li {
position: relative;
padding-left: 15px; }
.about-layout-five .about-list li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.about-layout-five .about-list li:not(:last-child) {
margin-bottom: 15px; }
.about-layout-six {
background: url("../img/about-bg.png") no-repeat;
background-position: center; }
.about-layout-six img {
width: 100%; }
.about-layout-six .col-md-6 {
padding: 0; }
.about-layout-six .about-top .about-content {
padding: 0 60px 0 15px; }
.about-layout-six .about-bottom .about-content {
padding: 0 15px 0 60px; }
.about-layout-six p i {
padding-right: 10px; }
.about-layout-six p {
font-size: 17px; }
.about-innar {
background: #f9f9f9;
position: relative; }
.about-innar:before {
content: "";
width: 48.5%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: url("https://via.placeholder.com/935x660/ededed/999") no-repeat;
background-size: cover;
background-position: right center; }
.about-innar .container {
position: relative;
z-index: 2; }
.about-innar .play-button {
background: #fb5252;
color: #fff;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 34px;
display: block;
border-radius: 50%;
position: relative; }
.about-innar .play-button i {
position: relative;
z-index: 2; }
.about-innar .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
opacity: .4;
position: absolute;
left: -12px;
top: -12px;
border-radius: 50%; }
.about-innar .about-list {
margin-bottom: 55px; }
.about-innar .about-list li {
position: relative;
padding-left: 15px; }
.about-innar .about-list li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.about-innar .about-list li:not(:last-child) {
margin-bottom: 15px; }
/*
========================================
06 - Service Section
========================================
*/
.service-layout-one .service-left {
position: relative;
width: calc(100% + 65px);
left: -90px; }
.service-layout-one .service-left .img-one {
float: left;
margin-top: 80px; }
.service-layout-one .service-left .img-two {
float: right; }
.service-layout-one h6 {
text-transform: uppercase; }
.service-layout-one .list-service li {
display: inline-block;
width: 49%;
padding: 12px 0;
text-transform: uppercase;
font-weight: 600;
font-size: 16px;
color: #343851; }
.service-layout-one .list-service li i {
font-size: 24px;
padding-right: 12px;
position: relative;
top: 2px; }
.service-layout-two .service-item {
position: relative;
overflow: hidden;
border-radius: 5px;
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.service-layout-two .service-item img {
width: 100%; }
.service-layout-two .service-item .hover {
position: absolute;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
width: 100%;
padding: 20px 25px 25px; }
.service-layout-two .service-item .hover h4 {
margin-bottom: 0;
line-height: 1.3; }
.service-layout-two .service-item .hover a {
color: #fff; }
.service-layout-two .service-item:hover {
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
cursor: pointer; }
.service-layout-two .service-item:hover .hover {
background: #fff; }
.service-layout-two .service-item:hover .hover a {
color: #343851; }
.service-layout-two .service-item:hover .hover a:hover {
color: #fb5252; }
.single-service-layout .service-content .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 20px 0 45px; }
.single-service-layout .service-content img {
border-radius: 5px;
width: 100%; }
.single-service-layout .service-content h2 {
padding: 25px 0 15px; }
.single-service-layout .service-content .list-service {
padding: 15px 0; }
.single-service-layout .service-content .list-service li {
position: relative;
padding-left: 15px; }
.single-service-layout .service-content .list-service li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.single-service-layout .service-content .list-service li:not(:last-child) {
margin-bottom: 15px; }
.single-service-layout .service-content .service-row img {
-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .service-content .service-skill {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .service-content .service-skill h4 {
padding-bottom: 15px; }
.single-service-layout .service-content .skill-bar {
position: relative; }
.single-service-layout .service-content .skill-bar:before {
content: "";
width: calc(100% - 38px);
height: 1px;
background: #eee;
position: absolute;
top: 0px;
left: 24px; }
.single-service-layout .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .sidebar-item h4 {
padding-bottom: 15px; }
.single-service-layout .sidebar-item .recent-item .img {
padding-right: 20px; }
.single-service-layout .sidebar-item .recent-item .img img {
border-radius: 5px; }
.single-service-layout .sidebar-item .recent-item h6 a {
color: #343851; }
.single-service-layout .sidebar-item .service-lists li {
margin-bottom: 3px; }
.single-service-layout .sidebar-item .service-lists li:last-child {
margin-bottom: 0; }
.single-service-layout .sidebar-item .service-lists a {
display: block;
padding: 12px 25px;
background: #f9f9f9;
color: #343851;
font-weight: 500; }
.single-service-layout .sidebar-item .service-lists a:hover {
background: #fb5252;
color: #fff;
border-left: 2px solid #343851; }
.single-service-layout .item-two {
padding: 0; }
.single-service-layout .item-two .sidebar-author {
position: relative; }
.single-service-layout .item-two .sidebar-author img {
width: 100%;
border-radius: 5px; }
.single-service-layout .item-two .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.single-service-layout .item-two .contact {
padding: 30px 25px; }
.single-service-layout .item-two .contact input, .single-service-layout .item-two .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.single-service-layout .item-two .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.single-service-layout .item-two .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
/*
========================================
07 - App Section
========================================
*/
.app-layout-one .container {
position: relative; }
.app-layout-one .container .app-image {
position: absolute;
right: -240px;
bottom: -101px; }
.app-layout-one .button-group a:first-child {
margin-right: 25px; }
/*
========================================
08 - Portfolio Section
========================================
*/
.portfolio-layout-one .container-fluid {
padding: 0 30px; }
.portfolio-layout-one .container-fluid .mix {
margin-bottom: 30px; }
.portfolio-layout-one .filters-button-group .nav-item {
padding: 14px 40px;
background: transparent;
border: 2px solid #ddd;
color: #757c8c;
font-weight: 600;
text-transform: uppercase; }
.portfolio-layout-one .filters-button-group .nav-item:not(:last-child) {
margin-right: 20px; }
.portfolio-layout-one .filters-button-group .nav-item.is-checked {
border-color: #fb5252;
color: #fb5252; }
.portfolio-layout-one .portfolio-item {
position: relative; }
.portfolio-layout-one .portfolio-item .content {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
padding: 30px 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0;
left: -10px; }
.portfolio-layout-one .portfolio-item .content a {
color: #343851;
text-transform: uppercase; }
.portfolio-layout-one .portfolio-item .content .list-inline {
padding-bottom: 10px; }
.portfolio-layout-one .portfolio-item .content .list-inline a {
width: 40px;
height: 40px;
border: 1px solid #343851;
border-radius: 50%;
display: inline-block;
text-align: center;
line-height: 40px; }
.portfolio-layout-one .portfolio-item .content .list-inline a:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff; }
.portfolio-layout-one .portfolio-item:hover .content {
opacity: 1;
left: 0; }
.portfolio-layout-two {
background: #eff2f7; }
.portfolio-layout-two .container-fluid {
max-width: 1600px; }
.portfolio-layout-two .container-fluid .portfolio-carousel {
margin: 0 -15px;
margin-bottom: 80px; }
.portfolio-layout-two .container-fluid .portfolio-tt {
padding: 0 15px; }
.portfolio-layout-two .portfolio-item {
position: relative; }
.portfolio-layout-two .portfolio-item .hover {
position: absolute;
left: 30px;
bottom: 30px;
width: calc(100% - 60px);
background: #fff;
padding: 15px 30px;
border-radius: 3px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.portfolio-layout-two .portfolio-item h4 {
font-weight: 500;
margin-bottom: 0; }
.portfolio-layout-two .portfolio-item h4 a {
color: #343851; }
.portfolio-layout-two .portfolio-item .button-arrow {
width: 40px;
height: 40px;
text-align: center;
background: #f7f7f7;
border-radius: 50%;
line-height: 40px;
color: #fb5252;
position: absolute;
right: 30px;
top: 25px; }
.portfolio-layout-two .portfolio-item:hover .hover {
opacity: 1; }
.portfolio-layout-two .slick-dots {
bottom: -80px;
z-index: 15; }
.portfolio-layout-two .slick-dots li {
width: 24px;
height: 24px; }
.portfolio-layout-two .slick-dots li.slick-active button {
border: 7px solid #fb5252; }
.portfolio-layout-two .slick-dots li button {
background: #f7f6f1;
border: 5px solid rgba(251, 82, 82, 0.2);
width: 24px;
height: 24px;
padding: 0;
border-radius: 3px; }
.portfolio-layout-two .slick-dots li button:before {
display: none; }
/*
========================================
09 - Portfolio Section
========================================
*/
.team-layout-one {
position: relative; }
.team-layout-one:before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(42, 55, 76, 0.97)), to(rgba(42, 55, 76, 0.97))), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: -o-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: linear-gradient(to left, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.team-layout-one:after {
content: "Our Re";
position: absolute;
right: -130px;
font-weight: 600;
text-transform: uppercase;
font-size: 150px;
line-height: 1;
bottom: 15px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
-webkit-text-fill-color: transparent; }
.team-layout-one .section-head h2, .team-layout-one .section-head p {
color: #fff; }
.team-layout-one .team-carousel {
margin: 0 -15px; }
.team-layout-one .team-tt {
padding: 15px; }
.team-layout-one .team-item {
padding: 80px 80px 30px;
background: #fff;
border-radius: 5px;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.team-layout-one .team-item .img {
position: relative; }
.team-layout-one .team-item .img img {
border-radius: 10px;
width: 100%; }
.team-layout-one .team-item .img .icon {
position: absolute;
top: 17px;
right: -17px;
width: 34px;
height: 34px;
background: #fb5252;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 34px; }
.team-layout-one .team-item .tag {
position: absolute;
left: 30px;
top: 25px;
font-size: 15px;
background: #fb5252;
padding: 2px 20px;
border-radius: 30px;
color: #fff; }
.team-layout-one .team-item .designation {
padding: 20px 0; }
.team-layout-one .team-item .designation h4 {
margin-bottom: 2px; }
.team-layout-one .team-item .designation a {
color: #343851; }
.team-layout-one .team-item .info li {
padding-bottom: 6px; }
.team-layout-one .team-item .info li:last-child {
padding-bottom: 0; }
.team-layout-one .team-item .info li i {
padding-right: 10px; }
.team-layout-one .team-item:hover {
-webkit-box-shadow: 0px 0px 15px 0px rgba(210, 210, 210, 0.51);
box-shadow: 0px 0px 15px 0px rgba(210, 210, 210, 0.51);
cursor: pointer; }
.team-layout-one .team-dots {
float: right; }
.team-layout-one .team-dots .slick-dots {
position: relative; }
.team-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.team-layout-one .slick-dots li.slick-active button {
background: #fff; }
.team-layout-one .slick-dots li button {
background: rgba(255, 255, 255, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.team-layout-one .slick-dots li button:before {
display: none; }
.team-layout-two .team-item {
padding: 80px 30px 40px;
background: #fff;
border-radius: 5px;
position: relative;
-webkit-box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
text-align: center; }
.team-layout-two .team-item .img {
position: relative; }
.team-layout-two .team-item .img img {
border-radius: 50%;
max-width: 100%; }
.team-layout-two .team-item .img .icon {
position: absolute;
top: 17px;
right: -17px;
width: 34px;
height: 34px;
background: #fb5252;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 34px; }
.team-layout-two .team-item .tag {
position: absolute;
left: 30px;
top: 25px;
font-size: 15px;
background: rgba(251, 82, 82, 0.15);
padding: 2px 20px;
border-radius: 30px;
color: #fb5252; }
.team-layout-two .team-item .share {
width: 35px;
height: 35px;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 50%;
color: #fb5252;
line-height: 35px;
position: absolute;
right: 30px;
top: 25px; }
.team-layout-two .team-item .designation {
padding: 20px 0; }
.team-layout-two .team-item .designation h4 {
margin-bottom: 2px; }
.team-layout-two .team-item .designation a {
color: #343851; }
.team-layout-two .team-item .info li {
font-size: 18px;
padding-bottom: 6px; }
.team-layout-two .team-item .info li:last-child {
padding-bottom: 0; }
.team-layout-two .team-item:hover .tag, .team-layout-two .team-item:hover .share {
background: #fb5252;
color: #fff; }
.team-layout-three p.primary-color {
font-weight: 600;
text-transform: uppercase; }
.team-layout-three h2 {
text-transform: uppercase;
padding-top: 5px; }
.team-layout-three .team-item {
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.team-layout-three .team-item img {
width: 100%; }
.team-layout-three .team-item .content {
padding: 30px; }
.team-layout-three .team-item .content h4 {
text-transform: uppercase; }
.team-layout-three .team-item .content h4 a {
color: #343851; }
.team-layout-three .team-item .content p {
text-transform: uppercase;
margin-bottom: 20px; }
.team-layout-three .team-item .content .team-social li:not(:last-child) {
padding-right: 10px; }
.team-layout-three .team-item .content .team-social a {
background: #f5f5f5;
width: 43px;
height: 43px;
display: inline-block;
text-align: center;
line-height: 43px;
color: #757c8c; }
.team-layout-three .team-item .content .team-social a:hover {
background: #fb5252;
color: #fff; }
.team-layout-three .team-item:hover, .team-layout-three .team-item.active {
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08); }
.team-single-short .team-contact {
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.team-single-short .team-contact input, .team-single-short .team-contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.team-single-short .team-contact textarea {
margin-bottom: 20px;
min-height: 150px; }
.team-single-short .team-contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.team-single-short .team-map {
background: #fff;
padding: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 65px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 0px 65px 0px rgba(111, 120, 142, 0.09); }
.team-single-detail .nav-tabs {
border: 0; }
.team-single-detail .nav-tabs .nav-link {
border: 0;
border-radius: 0;
color: #343851;
padding: 14px 35px; }
.team-single-detail .nav-tabs .nav-item.show .nav-link, .team-single-detail .nav-tabs .nav-link.active {
color: #fff;
background-color: #fb5252;
border: 0; }
.team-single-detail .tab-content {
padding-top: 50px; }
.team-overview-layout img {
border-radius: 10px; }
.team-overview-layout h3 {
padding: 30px 0 15px; }
.team-overview-layout .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 25px 0 25px; }
/*
========================================
10 - Category Section
========================================
*/
.category-layout-one {
position: relative;
margin-top: -120px;
padding-bottom: 110px; }
.category-layout-one .category-item {
position: relative;
border-radius: 5px;
overflow: hidden; }
.category-layout-one .category-item img {
width: 100%;
-webkit-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease; }
.category-layout-one .category-item .hover {
position: absolute;
background: rgba(0, 0, 0, 0.16);
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease; }
.category-layout-one .category-item .hover h4, .category-layout-one .category-item .hover p, .category-layout-one .category-item .hover a {
color: #fff; }
.category-layout-one .category-item .hover h4 {
line-height: 1;
margin-bottom: 15px; }
.category-layout-one .category-item .hover p {
position: relative;
font-weight: 600;
display: inline-block;
padding-left: 22px; }
.category-layout-one .category-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 6px; }
.category-layout-one .category-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 10px; }
.category-layout-one .category-item .hover .content {
position: absolute;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
top: calc(50% - 32.5px);
width: 100%;
opacity: 1; }
.category-layout-one .category-item .hover .button-hover {
position: absolute;
top: calc(50% - 26.5px);
width: 100%;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
opacity: 0; }
.category-layout-one .category-item .hover .button-category {
font-weight: 600;
background: #fb5252;
border-radius: 5px;
border: 2px solid #fff;
padding: 12px 35px;
display: inline-block; }
.category-layout-one .category-item:hover .hover .content {
opacity: 0; }
.category-layout-one .category-item:hover .button-hover {
opacity: 1; }
.category-layout-one .category-item:hover img {
-webkit-transform: scale(1.1) rotate(2deg);
-ms-transform: scale(1.1) rotate(2deg);
transform: scale(1.1) rotate(2deg); }
/*
========================================
11 - Property Section
========================================
*/
.property-layout-one {
position: relative;
overflow: hidden; }
.property-layout-one:before {
content: "";
background: url("../img/property-bg.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -2;
top: -350px;
left: 0; }
.property-layout-one:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -400px;
left: 0; }
.property-layout-one .property-list-one, .property-layout-one .property-list-two, .property-layout-one .property-list-three {
position: relative;
min-height: 765px; }
.property-layout-one .property-list-one .container, .property-layout-one .property-list-two .container, .property-layout-one .property-list-three .container {
position: relative; }
.property-layout-one .property-list-one .container > .row > .col-md-6, .property-layout-one .property-list-two .container > .row > .col-md-6, .property-layout-one .property-list-three .container > .row > .col-md-6 {
padding-top: 100px;
position: relative;
z-index: 2; }
.property-layout-one .property-item .icon {
font-size: 50px;
line-height: 1;
margin-right: 20px; }
.property-layout-one .property-item h6 {
text-transform: uppercase;
margin-bottom: 0; }
.property-layout-one .property-sliding-section {
width: 600px;
position: absolute;
right: -20px;
top: 0; }
.property-layout-one .property-sliding-section .property-tt {
float: left; }
.property-layout-one .property-sliding-section .property-tt:first-child {
margin-right: 30px; }
.property-layout-one .property-slide {
position: relative; }
.property-layout-one .property-slide img {
border-radius: 10px;
width: 100%; }
.property-layout-one .property-slide .hover {
position: absolute;
left: 30px;
top: 30px; }
.property-layout-one .property-slide .hover a:last-child {
margin-left: 15px; }
.property-layout-one .property-navigation {
width: 450px;
position: absolute;
bottom: 30px;
left: 30px; }
.property-layout-one .property-navigation img {
max-width: calc(100% - 8px);
margin: 4px;
border: 4px solid #fff;
border-radius: 10px;
cursor: pointer; }
.property-layout-one .property-list-two {
min-height: 865px; }
.property-layout-one .property-list-two:after {
content: "";
width: 75%;
height: 100%;
background-color: #f2f6f9;
position: absolute;
right: 0;
top: 0;
z-index: -1;
border-radius: 5px;
-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%); }
.property-layout-one .property-list-two .property-sliding-section {
right: auto;
left: -40px;
top: 0; }
.property-layout-one .property-list-two .property-navigation {
left: auto;
right: 60px; }
.property-layout-one .property-list-three .property-sliding-section {
top: 0;
right: -10px; }
.property-area-layout .container-fluid {
max-width: 1700px; }
.property-area-layout .property-tt {
padding: 15px 15px 40px; }
.property-area-layout .property-item {
position: relative; }
.property-area-layout .property-item img {
width: 100%; }
.property-area-layout .property-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.property-area-layout .property-item .hover h4, .property-area-layout .property-item .hover p, .property-area-layout .property-item .hover a {
color: #fff; }
.property-area-layout .property-item .hover .info {
position: absolute;
left: 30px;
top: 18px; }
.property-area-layout .property-item .hover .author {
position: absolute;
left: 30px;
bottom: 20px;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.property-area-layout .property-item .hover .author img {
border: 2px solid #fff;
border-radius: 50%; }
.property-area-layout .property-item .hover .author .content h4 {
color: #fff;
font-size: 1.3em;
margin-left: 15px; }
.property-area-layout .property-item .hover .author .content span {
display: block;
font-weight: 400; }
.property-area-layout .property-item .hover p {
position: relative;
font-weight: 600;
display: inline-block;
padding-left: 22px; }
.property-area-layout .property-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 6px; }
.property-area-layout .property-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 10px; }
.property-area-layout .property-item:hover .author {
opacity: 1; }
.property-area-layout .slick-dots li {
width: 33px;
height: 10px; }
.property-area-layout .slick-dots li.slick-active {
width: 60px; }
.property-area-layout .slick-dots li.slick-active button {
background: #fb5252;
width: 60px; }
.property-area-layout .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 33px;
height: 10px;
border-radius: 5px; }
.property-area-layout .slick-dots li button:before {
display: none; }
.property-layout-two .filter-property li {
cursor: pointer;
font-size: 24px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-two .filter-property li.active {
color: #fb5252; }
.property-layout-two .filter-property li:not(:last-child) {
margin-right: 10px; }
.property-layout-two .property-listwise {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-two .property-listwise .feature-item {
height: auto; }
.property-layout-two .property-listwise .feature-item .col-md-6:first-child {
padding-right: 0; }
.property-layout-two .property-listwise .feature-item .col-md-6:last-child {
padding-left: 0; }
.property-layout-two .property-listwise .feature-item .hover {
border-bottom: 0;
border-right: 3px solid transparent; }
.property-layout-two .property-listwise .feature-item .content-title {
padding: 30px 30px 15px; }
.property-layout-two .property-listwise .feature-item .content-title h4 {
font-weight: 600; }
.property-layout-two .property-listwise .feature-item .footer-content {
padding: 23px 30px; }
.property-layout-two .property-listwise .feature-item .house-feature {
right: 60px;
bottom: 25px; }
.property-layout-two .property-listwise .feature-item:hover .hover {
border-color: #fb5252; }
.property-layout-two .property-gridwise {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
display: none; }
.property-layout-two .property-item {
background: #fff; }
.property-layout-two .property-item .img {
-webkit-box-flex: 0;
-ms-flex: 0 0 31.6%;
flex: 0 0 31.6%;
max-width: 31.6%; }
.property-layout-two .property-item .img img {
width: 100%; }
.property-layout-two .property-item .content {
-webkit-box-flex: 0;
-ms-flex: 0 0 68.4%;
flex: 0 0 68.4%;
max-width: 68.4%;
padding: 40px 25px 0;
position: relative; }
.property-layout-two .property-item .content .button-view a {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
text-align: center;
border-top: 1px solid #eaeaea;
display: inline-block;
padding: 11px 0;
font-weight: 500;
color: #757c8c; }
.property-layout-two .property-item .content .button-view a:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff; }
.property-layout-two .property-item .content h6 {
font-weight: 500; }
.property-layout-three {
background: url("https://via.placeholder.com/1920x880/eee/999") no-repeat;
background-size: cover; }
.property-layout-three .container {
height: 700px;
position: relative; }
.property-layout-three .property-video .property-item {
position: relative;
background: #fff;
margin-left: 30px;
margin-bottom: 15px;
margin-top: 15px; }
.property-layout-three .property-video .property-item .feature-tag {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 4px 20px;
border-radius: 3px; }
.property-layout-three .property-video .property-item .content-top {
padding: 25px 30px; }
.property-layout-three .property-video .property-item .content-top h4 {
font-size: 20px;
margin-bottom: 15px;
padding-top: 10px; }
.property-layout-three .property-video .property-item .content-top h4 a {
color: #343851; }
.property-layout-three .property-video .property-item .content-top i {
padding-right: 5px; }
.property-layout-three .property-video .property-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.property-layout-three .property-video .property-item .content-middle i {
color: #fb5252; }
.property-layout-three .property-video .property-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.property-layout-three .property-video .property-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-three .property-video .property-item .content-middle .favorite-feature i {
line-height: 31px; }
.property-layout-three .property-video .property-item .footer-content {
padding: 25px 30px;
overflow: hidden; }
.property-layout-three .property-video .property-item .footer-content .img {
margin-right: 8px; }
.property-layout-three .property-video .property-item .footer-content .author {
float: left; }
.property-layout-three .property-video .property-item .footer-content .right-content {
float: right; }
.property-layout-three .property-video .property-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 16px; }
.property-layout-three .property-video .property-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
text-indent: -9999px;
display: inline-block; }
.property-layout-three .property-video .property-item .footer-content .right-content a span::before, .property-layout-three .property-video .property-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.property-layout-three .property-video .property-item .footer-content .right-content a span:before {
top: -10px; }
.property-layout-three .property-video .property-item .footer-content .right-content a span:after {
bottom: -10px; }
.property-layout-three .property-video .property-item .footer-content .right-content a.active span, .property-layout-three .property-video .property-item .footer-content .right-content a.active span:before, .property-layout-three .property-video .property-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.property-layout-three .property-video .property-item .icon-group {
position: absolute;
right: 20px;
top: -2px; }
.property-layout-three .property-video .property-item .icon-group li a {
width: 20px;
color: #fff;
font-size: 12px;
height: 30px;
background: #fb5252;
color: #fff;
line-height: 25px;
display: inline-block;
text-align: center;
position: relative; }
.property-layout-three .property-video .property-item .icon-group li a:before {
content: "";
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #fff;
position: absolute;
left: 5px;
bottom: -5px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.property-layout-three .property-video .property-item .icon-group li a.blue-bolt {
background: #0075ff; }
.property-layout-three .property-video .property-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.property-layout-three .property-video .property-item .house-feature li {
position: relative;
padding-left: 12px; }
.property-layout-three .property-video .property-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.property-layout-three .property-video .property-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.property-layout-three .property-video .property-item.slick-current:before {
content: "";
width: 0;
height: 0;
border-top: 25px solid transparent;
border-right: 25px solid #fff;
border-bottom: 25px solid transparent;
position: absolute;
left: -25px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.property-layout-three .property-video .col-md-8 {
position: relative; }
.property-layout-three .property-video .property-video-carousel-two {
height: 100%;
position: relative; }
.property-layout-three .property-video .video-tt {
position: absolute !important;
top: 0 !important;
left: 0 !important;
min-height: 1440px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start; }
.property-layout-three .property-video .video-tt.video-tt-two {
top: 200px !important;
height: 1240px; }
.property-layout-three .property-video .video-tt.video-tt-three {
top: 400px !important;
height: 1040px; }
.property-layout-three .property-video .video-tt.video-tt-four {
top: 650px !important;
height: 790px; }
.property-layout-three .property-video .video-option {
position: -webkit-sticky;
position: sticky;
top: 10px;
left: 0;
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;
opacity: 1;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
height: 790px; }
.property-layout-three .property-video .video-option .play-button {
position: relative;
width: 100px;
height: 100px;
background: #fb5252;
color: #fff;
font-size: 35px;
text-align: center;
line-height: 100px;
border-radius: 50%; }
.property-layout-three .property-video .video-option .play-button::before {
content: "";
width: 120px;
height: 120px;
background: #fb5252;
position: absolute;
left: -10px;
top: -10px;
border-radius: 50%;
opacity: .4; }
.property-layout-three .property-video .video-option .play-button i {
position: relative;
z-index: 2; }
.property-layout-four .tab-titles .tab-item {
display: inline-block;
text-transform: uppercase;
font-weight: 600;
color: #343851;
font-size: 17px;
cursor: pointer; }
.property-layout-four .tab-titles .tab-item.active span {
color: #fb5252; }
/********* Property Single Page ********/
.property-header-content .container > .row:first-child {
border-bottom: 1px solid #eaeaea;
padding-bottom: 30px;
margin-bottom: 30px; }
.property-header-content .container > .row {
margin: 0; }
.property-header-content .content-middle .list-inline {
float: right; }
.property-header-content .content-middle .list-inline li:last-child a {
margin-left: 0; }
.property-header-content .tag-group {
position: relative;
top: 15px; }
.property-header-content .tag-group a {
border-radius: 3px;
color: #fff;
padding: 6px 20px;
display: inline-block;
text-transform: uppercase;
font-weight: 600;
font-size: 14px; }
.property-header-content .tag-group a:last-child {
margin-left: 10px; }
.property-header-content .tag-group .tag-blue {
background: #0075ff; }
.property-header-content .tag-group .tag-primary {
background: #fb5252; }
.property-header-content .tag-group .tag-yellow {
background: #ff9c00; }
.property-header-content .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: rgba(251, 82, 82, 0.1);
color: #fb5252;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
margin-left: 20px;
position: relative;
top: -2px; }
.property-header-content .favorite-feature i {
line-height: 31px; }
.property-header-content .favorite-feature:hover {
background: #fb5252;
color: #fff; }
.property-header-content .heading-flex li i {
padding-right: 7px; }
.property-header-content .property-list-images {
position: relative; }
.property-header-content .property-list-carousel img {
width: 100%;
border-radius: 10px; }
.property-header-content .property-list-navigation {
position: absolute;
width: 82%;
bottom: 50px;
left: 10%; }
.property-header-content .property-list-navigation img {
width: 100%;
border-radius: 5px;
height: 103px; }
.property-header-content .property-list-navigation .property-nav {
margin: 12px; }
.property-header-content .property-list-navigation .slick-current {
position: relative; }
.property-header-content .property-list-navigation .slick-current:before {
content: "";
width: 100%;
height: 100%;
background: #fff;
opacity: 0.4;
position: absolute;
left: 0;
top: 0;
border-radius: 5px; }
.property-header-content .property-list-navigation .slick-current img {
border: 2px solid #fff; }
.property-main-content .single-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-main-content .intro-content .heading {
overflow: hidden;
padding-bottom: 10px; }
.property-main-content .intro-content h4 {
float: left; }
.property-main-content .intro-content ul {
float: right; }
.property-main-content .intro-content ul li i {
color: #343851;
padding-right: 5px; }
.property-main-content .intro-content p {
padding-bottom: 15px; }
.property-main-content .intro-content a {
font-weight: 600; }
.property-main-content .intro-content a:hover {
color: #fb5252; }
.property-main-content .intro-content a i {
font-size: 24px;
padding-right: 5px;
position: relative;
top: 2px; }
.property-main-content .lists {
overflow: hidden; }
.property-main-content .lists > ul {
width: 50%;
float: left; }
.property-main-content .detail-feature h4 {
padding-bottom: 15px; }
.property-main-content .detail-list li {
padding-bottom: 20px; }
.property-main-content .detail-list li:last-child {
padding-bottom: 0; }
.property-main-content .detail-video h4 {
padding-bottom: 15px; }
.property-main-content .detail-video .video-item {
position: relative; }
.property-main-content .detail-video .video-item img {
width: 100%;
border-radius: 10px; }
.property-main-content .detail-video .video-item .youtube-icon {
position: absolute;
left: 50%;
top: 50%;
color: #fb5252;
font-size: 65px;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.property-main-content .virtual-tour h4 {
padding-bottom: 15px; }
.property-main-content .virtual-tour img {
width: 100%;
border-radius: 10px; }
.property-main-content .map-canvas {
border-radius: 5px; }
.property-main-content .thumbnail-items {
padding: 45px 0; }
.property-main-content .thumbnail-items h4 {
padding: 0 25px 25px;
margin-bottom: 35px;
border-bottom: 1px solid #eaeaea; }
.property-main-content .thumbnail-items .thumb-items {
padding: 0 25px; }
.property-main-content .thumbnail-items .thumb-item img {
border-radius: 5px; }
.property-main-content .thumbnail-items .thumb-item .content {
padding-left: 20px; }
.property-main-content .thumbnail-items .thumb-item .list-inline li {
font-size: 13px;
margin-right: 2px; }
.property-main-content .thumbnail-items h6 a {
color: #343851; }
.property-main-content .property-collapse .collapse-item {
background: #f9f9f9;
padding: 30px 25px;
margin-bottom: 10px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-main-content .property-collapse .collapse-item .head {
overflow: hidden; }
.property-main-content .property-collapse .collapse-item .head h5 {
line-height: 1.2; }
.property-main-content .property-collapse .collapse-item .head .left-head {
float: left; }
.property-main-content .property-collapse .collapse-item .head .right-head {
float: right;
padding-right: 10px;
padding-top: 15px; }
.property-main-content .property-collapse .collapse-item .view-more {
color: #757c8c; }
.property-main-content .property-collapse .collapse-item .view-more:hover, .property-main-content .property-collapse .collapse-item .view-more.active {
color: #fb5252; }
.property-main-content .property-collapse .collapse-item .content {
text-align: center;
position: relative;
height: 0;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
padding: 0; }
.property-main-content .property-collapse .collapse-item:last-child {
margin-bottom: 0; }
.property-main-content .property-collapse .collapse-item.show .content {
height: auto;
opacity: 1;
padding: 30px 0 20px; }
.property-main-content .property-form h4 {
padding-bottom: 15px; }
.property-main-content .property-form .list-inline {
padding-bottom: 20px; }
.property-main-content .property-form .list-inline .heading-primary {
font-weight: 600; }
.property-main-content .property-form .list-inline li {
margin-right: 2px; }
.property-main-content .property-form .list-inline li i {
font-size: 12px; }
.property-main-content .property-form .input-full {
width: 100%;
margin-bottom: 25px; }
.property-main-content .property-form .input-half {
width: 50%;
float: left;
margin-bottom: 30px; }
.property-main-content .property-form .input-half:nth-child(3) {
padding-right: 15px; }
.property-main-content .property-form .input-half:nth-child(4) {
padding-left: 15px; }
.property-main-content .property-form input, .property-main-content .property-form textarea {
width: 100%;
padding: 13px 20px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.property-main-content .property-form textarea {
min-height: 150px; }
.property-sidebar .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-sidebar .sidebar-item h4 {
padding-bottom: 15px; }
.property-sidebar .sidebar-item .recent-item .img {
padding-right: 20px; }
.property-sidebar .sidebar-item .recent-item .img img {
border-radius: 5px; }
.property-sidebar .sidebar-item h6 a {
color: #343851; }
.property-sidebar .item-one {
padding: 0; }
.property-sidebar .item-one .sidebar-author {
position: relative; }
.property-sidebar .item-one .sidebar-author img {
width: 100%;
border-radius: 5px; }
.property-sidebar .item-one .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.property-sidebar .item-one .contact {
padding: 30px 25px; }
.property-sidebar .item-one .contact input, .property-sidebar .item-one .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.property-sidebar .item-one .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.property-sidebar .item-one .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.property-grid .sidebar-search {
padding: 45px 25px; }
.property-grid .sidebar-search h4 {
padding-bottom: 10px; }
.property-grid .sidebar-search .input-full {
margin-bottom: 20px;
position: relative; }
.property-grid .sidebar-search .input-full input {
width: 100%;
padding: 12px 25px;
color: #757c8c;
border: 1px solid #ddd;
border-radius: 5px;
background: #fff; }
.property-grid .sidebar-search .input-full input::-webkit-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input:-ms-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input::-ms-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input::placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full .form-icon {
position: absolute;
right: 15px;
top: 14px;
cursor: pointer; }
.property-grid .sidebar-search .select-option {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd;
width: 100%;
margin-bottom: 20px; }
.property-grid .sidebar-search .select-option:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.property-grid .sidebar-search .select-option select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #757c8c; }
.property-grid .sidebar-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.property-grid .sidebar-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.property-grid .sidebar-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.property-grid .sidebar-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 7px;
left: 3px;
color: #fff; }
.property-grid .sidebar-search .checkbox input:checked + label:before {
background: #fb5252; }
.property-grid .sidebar-search .checkbox-lists {
width: 50%;
float: left;
padding: 0 0 20px; }
.property-grid .sidebar-search .range-slider {
margin-bottom: 20px; }
.property-grid .sidebar-search .range-slider .ui-widget.ui-widget-content {
border: 0;
background: #fb5252;
border-radius: 0;
height: 7px; }
.property-grid .sidebar-search .range-slider .ui-slider-horizontal .ui-slider-range-max {
border-radius: 0;
background: #ededed; }
.property-grid .sidebar-search .range-slider input {
border: 0;
color: #fb5252;
width: 100px; }
.property-grid .sidebar-search .range-slider .ui-state-default, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-default, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-hover, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-focus {
border: 1px solid #aaa;
border-radius: 50%;
background: #fff;
width: 15px;
height: 15px;
top: -4px;
outline: 0;
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05); }
.property-grid .sidebar-search .range-slider-two {
margin-bottom: 20px; }
.property-grid .sidebar-search .range-slider-two .ui-widget.ui-widget-content {
border: 0;
background: #ededed;
border-radius: 0;
height: 7px; }
.property-grid .sidebar-search .range-slider-two .ui-slider .ui-slider-range {
border-radius: 0;
background: #fb5252; }
.property-grid .sidebar-search .range-slider-two input {
border: 0;
color: #fb5252;
width: 100%;
text-align: center; }
.property-grid .sidebar-search .range-slider-two .ui-state-default, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-default, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-hover, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-focus {
border: 1px solid #aaa;
border-radius: 50%;
background: #fff;
width: 15px;
height: 15px;
top: -4px;
outline: 0;
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05); }
.property-grid .sidebar-search .view-advance-search {
display: inline-block;
color: #fb5252;
margin-bottom: 20px;
margin-top: 10px; }
.property-grid .sidebar-search .view-advance-search i {
padding-left: 10px;
position: relative;
top: 2px; }
.property-grid .sidebar-search .property-advance {
display: none; }
.property-grid .sidebar-search .input-submit input {
background: #fb5252;
color: #fff;
width: 100%;
text-align: center;
padding: 13px 10px;
border-radius: 5px;
font-weight: 600; }
.property-grid .sidebar-search .input-submit input:hover {
background: #fc6b6b; }
.property-grid .property-filter {
background: #fff;
padding: 15px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-grid .property-filter .dropdown a.btn {
background: transparent;
margin-left: 20px;
border: 0;
padding: 0;
color: #757c8c; }
.property-grid .property-filter .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.property-grid .property-filter .list-inline li:first-child {
padding-right: 15px; }
.property-grid .property-filter .list-inline a {
color: #343851;
padding: 5px 10px;
border-radius: 3px; }
.property-grid .property-filter .list-inline a.active {
background: #ededed;
color: #fb5252; }
.property-grid .property-filter .list-inline a:hover {
color: #fb5252; }
.property-grid .property-filter .list-inline a.show-filter {
background: #fff;
border: 1px solid #fb5252;
color: #fb5252; }
.property-grid .property-filter .list-inline a.show-filter i {
padding-right: 10px; }
.property-grid .property-filter .list-inline a.show-filter:hover {
background: #fb5252;
color: #fff; }
.property-grid .property-layout-two .property-gridwise {
display: block; }
.property-grid .property-layout-two .property-listwise {
display: none; }
.property-grid.advance-search-offcanvas {
width: 320px;
position: fixed;
left: -0;
top: 0;
z-index: 1000;
background: #fff;
display: none;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-grid.advance-search-offcanvas .sidebar-search {
height: 100vh; }
.property-grid.advance-search-offcanvas .close-search {
position: absolute;
right: 0;
top: 5px;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
color: #343851;
font-size: 12px;
font-weight: bold;
border-radius: 3px; }
.property-grid.advance-search-offcanvas .close-search:hover {
background: #fb5252;
color: #fff; }
.property-list .property-layout-two .property-gridwise {
display: none; }
.property-list .property-layout-two .property-listwise {
display: block; }
.property-gallery-layout img {
width: 100%;
border: 1px solid #fff; }
.property-gallery-layout .slick-arrow {
background: rgba(255, 255, 255, 0.5);
color: #343851;
width: 60px;
height: 60px;
border-radius: 3px;
line-height: 60px;
text-align: center;
font-size: 28px;
display: inline-block !important;
position: absolute;
top: 50%;
margin-top: -25px;
z-index: 9;
font-weight: bold;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-gallery-layout .slick-arrow.flaticon-left-chevron {
left: 0; }
.property-gallery-layout .slick-arrow.flaticon-right-chevron {
right: 0; }
.property-gallery-layout .slick-arrow:hover {
background: #fb5252;
color: #fff; }
/*
========================================
12 - Testimonial Section
========================================
*/
.testimonial-layout-one {
position: relative; }
.testimonial-layout-one:before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.77)), to(rgba(0, 0, 0, 0.77))), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.testimonial-layout-one .section-head h2, .testimonial-layout-one .section-head p {
color: #fff; }
.testimonial-layout-one .testimonial-dots {
float: right; }
.testimonial-layout-one .testimonial-dots .slick-dots {
position: relative; }
.testimonial-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.testimonial-layout-one .slick-dots li.slick-active button {
background: #fff; }
.testimonial-layout-one .slick-dots li button {
background: rgba(255, 255, 255, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.testimonial-layout-one .slick-dots li button:before {
display: none; }
.testimonial-layout-one .testimonial-slider {
width: 100%;
margin-bottom: 0; }
.testimonial-layout-one .testimonial-slider p, .testimonial-layout-one .testimonial-slider i, .testimonial-layout-one .testimonial-slider h4 {
color: #fff; }
.testimonial-layout-one .testimonial-slider .lead {
font-size: 24px;
line-height: 1.5;
padding: 20px 0 15px;
font-weight: 500; }
.testimonial-layout-one .testimonial-slider img {
border: 4px solid #fff;
border-radius: 50%; }
.testimonial-layout-one .testimonial-slider h4 {
padding: 20px 0 0;
margin-bottom: 0; }
.testimonial-layout-one .testimonial-tt {
padding: 0 40px 0 0;
opacity: 0.5; }
.testimonial-layout-one .testimonial-tt.slick-current {
opacity: 1; }
.testimonial-layout-two .testimonial-carousel {
position: relative;
left: 50px;
background: url("../img/testimonial/testimonial-bg-2.png") no-repeat;
background-size: contain;
height: 590px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0 70px 0 120px; }
.testimonial-layout-two .testimonial-carousel .lead {
font-weight: 600; }
.testimonial-layout-two .testimonial-carousel p, .testimonial-layout-two .testimonial-carousel h4, .testimonial-layout-two .testimonial-carousel i {
color: #fff; }
.testimonial-layout-two .testimonial-carousel .lead {
padding: 20px 0 10px; }
.testimonial-layout-two .testimonial-carousel img {
border: 2px solid #fff;
border-radius: 50%;
margin-bottom: 5px; }
.testimonial-layout-two .testimonial-arrow .slick-arrow {
background: #0ad00a;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 24px;
text-align: center;
display: inline-block;
color: #fff;
border-radius: 5px;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.testimonial-layout-two .testimonial-arrow .slick-arrow:hover {
background: #fb5252; }
.testimonial-layout-two .testimonial-arrow .slick-arrow:first-child {
margin-right: 10px; }
.admin-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url("../img/property-bg-2.png");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-repeat: no-repeat;
background-position: center -50px;
overflow: hidden; }
.admin-layout-one .admin-right {
position: relative;
right: -30px; }
.admin-layout-one .admin-left .quote {
font-size: 24px;
font-style: italic;
font-weight: 500;
padding-bottom: 30px; }
.testimonial-layout-three {
background: url("../img/testimonial-bg-2.png") no-repeat;
background-size: cover; }
.testimonial-layout-three .feature-carousel-two {
margin: 0 -15px; }
.testimonial-layout-three .testimonial-tt {
padding: 0 15px; }
.testimonial-layout-three .view-more {
color: #fff; }
.testimonial-layout-three .testimonial-item {
background: #fff;
padding: 60px 35px 50px;
border-radius: 5px;
position: relative;
overflow: hidden; }
.testimonial-layout-three .testimonial-item .tag-line {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 10px 10px 12px;
width: 150px;
text-align: center;
text-transform: uppercase;
font-weight: 600;
line-height: 1;
position: absolute;
right: -40px;
top: 20px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.testimonial-layout-three .testimonial-item img {
display: inline-block;
margin-bottom: 25px;
margin-top: 10px;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.27);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.27);
border-radius: 50%;
border: 3px solid #fff; }
.testimonial-layout-three .testimonial-item h4 {
font-weight: 500; }
.testimonial-layout-three .testimonial-item .list-inline {
margin-bottom: 15px; }
.testimonial-layout-three .slick-arrow {
border-radius: 50%;
background-color: #fff;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
width: 70px;
height: 70px;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
line-height: 70px;
color: #fb5252;
z-index: 3;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: bold;
cursor: pointer; }
.testimonial-layout-three .slick-arrow.flaticon-right-chevron {
right: -20px; }
.testimonial-layout-three .slick-arrow.flaticon-left-chevron {
left: -20px; }
.testimonial-layout-four {
padding-bottom: 250px; }
.testimonial-layout-four .testimonial-item {
background: #fff;
border-radius: 5px;
-webkit-box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.15);
padding: 40px 35px; }
.testimonial-layout-four .testimonial-item .list-inline-item {
margin-right: 2px; }
.testimonial-layout-four .testimonial-item p.lead {
padding: 25px 0 10px; }
.testimonial-layout-four .testimonial-item .img {
margin-right: 15px; }
.testimonial-layout-four .testimonial-item .img img {
border: 2px solid #fff;
-webkit-box-shadow: 0px 12px 43px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 12px 43px 0px rgba(111, 120, 142, 0.1);
border-radius: 50%; }
.testimonial-layout-four .testimonial-item .author h6 {
text-transform: uppercase;
font-size: 17px; }
.testimonial-innar {
padding-bottom: 0; }
/*
========================================
13 - Client Section
========================================
*/
.client-layout-one .client-item {
text-align: center;
padding: 25px 15px; }
.client-layout-one .client-item img {
max-width: 100%; }
.client-layout-one .client-item .normal {
display: inline-block; }
.client-layout-one .client-item .active {
display: none; }
.client-layout-one .client-item.slick-current {
background: #fff; }
.client-layout-one .client-item.slick-current .normal {
display: none; }
.client-layout-one .client-item.slick-current .active {
display: inline-block; }
/*
========================================
14 - Blog Section
========================================
*/
.blog-layout-one {
position: relative; }
.blog-layout-one:before {
content: "";
background-image: url("../img/blog-bg.png");
background-repeat: no-repeat;
background-size: contain;
background-position: center 40px;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.blog-layout-one .blog-carousel {
margin: 0 -15px; }
.blog-layout-one .blog-tt {
padding: 0 15px; }
.blog-layout-one .blog-item {
background: #fff;
border: 1px solid #ededed;
border-radius: 5px;
padding: 30px;
position: relative; }
.blog-layout-one .blog-item::before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(251, 82, 82, 0.9)), to(rgba(251, 82, 82, 0.9))), url("https://via.placeholder.com/370x400/eee/999");
background-image: -webkit-linear-gradient(right, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-image: -o-linear-gradient(right, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-image: linear-gradient(to left, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
border-radius: 5px;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-one .blog-item h5, .blog-layout-one .blog-item h4, .blog-layout-one .blog-item p, .blog-layout-one .blog-item a {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
position: relative;
z-index: 2; }
.blog-layout-one .blog-item p {
opacity: 0; }
.blog-layout-one .blog-item h5 {
position: relative;
line-height: 1.2;
font-size: 1.4em;
text-transform: uppercase;
padding-left: 15px; }
.blog-layout-one .blog-item h5:before {
content: "";
height: 100%;
width: 3px;
background: #343851;
position: absolute;
left: 0;
top: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-one .blog-item h5 span {
display: block;
font-size: .8em; }
.blog-layout-one .blog-item h4 {
padding: 20px 0 15px;
font-size: 1.4em; }
.blog-layout-one .blog-item a {
color: #343851; }
.blog-layout-one .blog-item:hover:before, .blog-layout-one .blog-item.active:before {
opacity: 1; }
.blog-layout-one .blog-item:hover p, .blog-layout-one .blog-item.active p {
opacity: 1; }
.blog-layout-one .blog-item:hover h5:before, .blog-layout-one .blog-item.active h5:before {
background: #fff; }
.blog-layout-one .blog-item:hover h5, .blog-layout-one .blog-item:hover p, .blog-layout-one .blog-item:hover h4 a, .blog-layout-one .blog-item.active h5, .blog-layout-one .blog-item.active p, .blog-layout-one .blog-item.active h4 a {
color: #fff; }
.blog-layout-one .blog-item:hover .button-blog, .blog-layout-one .blog-item.active .button-blog {
border-color: #fff;
background: #fff;
color: #fb5252; }
.blog-layout-one .blog-dots {
float: right; }
.blog-layout-one .blog-dots .slick-dots {
position: relative; }
.blog-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.blog-layout-one .slick-dots li.slick-active button {
background: #fb5252; }
.blog-layout-one .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.blog-layout-one .slick-dots li button:before {
display: none; }
.blog-layout-two .blog-item {
background: #fff; }
.blog-layout-two .blog-item .img {
position: relative; }
.blog-layout-two .blog-item img {
width: 100%; }
.blog-layout-two .blog-item .hover {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end; }
.blog-layout-two .blog-item .hover h4 {
margin: 0 30px 22px; }
.blog-layout-two .blog-item .hover a {
color: #fff; }
.blog-layout-two .blog-item .content {
padding: 30px; }
.blog-layout-two .blog-item .content p {
padding: 20px 0 10px; }
.blog-layout-two .blog-item .content .blog-links li {
position: relative;
padding-left: 15px; }
.blog-layout-two .blog-item .content .blog-links li:before {
content: "";
width: 5px;
height: 5px;
background: #757c8c;
border-radius: 50%;
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-two .blog-item .content .blog-links li:not(:last-child) {
padding-right: 15px; }
.blog-layout-two .blog-item .content .blog-links li:hover:before {
background: #fb5252; }
.blog-layout-two .blog-item .content .blog-links li:hover a {
color: #fb5252; }
.blog-layout-two .blog-item .content .blog-links a {
color: #757c8c; }
.blog-layout-two .blog-item:hover .hover {
background: rgba(251, 82, 82, 0.65); }
.blog-layout-three {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-repeat: no-repeat;
background-size: cover; }
.blog-layout-three .blog-item {
background: #fff; }
.blog-layout-three .blog-item img {
width: 100%; }
.blog-layout-three .blog-item .content {
padding: 30px;
border-bottom: 1px solid #ededed; }
.blog-layout-three .blog-item .content .list-inline li:not(:last-child) {
margin-right: 2px; }
.blog-layout-three .blog-item .content .list-inline a {
color: #fb5252; }
.blog-layout-three .blog-item .content h4 {
padding: 20px 0; }
.blog-layout-three .blog-item .content h4 a {
color: #343851; }
.blog-layout-three .blog-item .blog-footer {
padding: 25px 30px; }
.blog-layout-three .blog-item .blog-footer .list-inline a {
color: #757c8c; }
.blog-layout-three .blog-item .blog-footer .list-inline a:hover {
color: #fb5252; }
.blog-layout-three .blog-item .button {
padding: 6px 20px;
text-transform: unset;
border-radius: 3px; }
.blog-layout-four {
background: #f9f9f9; }
.blog-layout-four .section-heading p.primary-color {
text-transform: uppercase;
font-weight: 600; }
.blog-layout-four .section-heading h2 {
text-transform: uppercase;
padding-top: 5px; }
.blog-layout-four .blog-item {
background: #fff;
-webkit-box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09);
box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09); }
.blog-layout-four .blog-item .img {
position: relative; }
.blog-layout-four .blog-item .img img {
width: 100%; }
.blog-layout-four .blog-item .hover {
position: absolute;
width: 55px;
height: 55px;
background: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
top: 30px;
left: 30px; }
.blog-layout-four .blog-item .hover h4 {
margin-bottom: 0;
line-height: 1; }
.blog-layout-four .blog-item .hover p {
line-height: 1;
text-transform: uppercase;
padding-top: 5px;
color: #343851; }
.blog-layout-four .blog-item .content {
padding: 25px 30px; }
.blog-layout-four .blog-item .content h4 {
text-transform: uppercase;
padding-bottom: 5px; }
.blog-layout-four .blog-item .content h4 a {
color: #343851; }
.blog-layout-four .blog-item .content .list-inline {
padding-bottom: 15px; }
.blog-layout-four .blog-item .content a {
color: #757c8c; }
.blog-layout-four .blog-item .content a:hover {
color: #fb5252; }
.blog-layout-five .blog-item {
background: #fff;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer; }
.blog-layout-five .blog-item img {
width: 100%; }
.blog-layout-five .blog-item .content {
position: absolute;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.47);
padding: 30px 0 20px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content li, .blog-layout-five .blog-item .content p, .blog-layout-five .blog-item .content a {
color: #fff; }
.blog-layout-five .blog-item .content li, .blog-layout-five .blog-item .content p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content h4 {
padding: 15px 0 0;
font-weight: 500;
margin-bottom: 0; }
.blog-layout-five .blog-item .content .blog-top {
padding: 0 30px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content .blog-footer {
padding: 20px 30px 0;
overflow: hidden; }
.blog-layout-five .blog-item .content .blog-footer .author {
float: left; }
.blog-layout-five .blog-item .content .blog-footer .author .img {
margin-right: 8px; }
.blog-layout-five .blog-item .content .blog-footer .comment {
float: right;
margin-top: 8px; }
.blog-layout-five .blog-item:hover {
-webkit-box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.1); }
.blog-layout-five .blog-item:hover .content {
background: #fff; }
.blog-layout-five .blog-item:hover li > a, .blog-layout-five .blog-item:hover li, .blog-layout-five .blog-item:hover p {
color: #757c8c; }
.blog-layout-five .blog-item:hover li > a:hover {
color: #fb5252; }
.blog-layout-five .blog-item:hover h4 a {
color: #343851; }
.blog-layout-five .blog-item:hover .blog-top {
border-color: rgba(0, 0, 0, 0.1); }
.blog-layout-six .blog-item {
background: #fff;
border: 1px solid #eaeaea; }
.blog-layout-six .blog-item img {
width: 100%; }
.blog-layout-six .blog-item .content {
padding: 30px; }
.blog-layout-six .blog-item p a {
color: #757c8c; }
.blog-layout-six .blog-item p a:hover {
color: #fb5252; }
.blog-layout-six .blog-item h4 {
padding: 10px 0 20px; }
.blog-layout-six .blog-item h4 a {
color: #343851; }
.blog-layout-six .button-blog {
padding: 10px 10px 10px 30px;
border: 1px solid rgba(251, 82, 82, 0.15);
border-radius: 5px;
color: #fb5252;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-weight: 600; }
.blog-layout-six .button-blog i {
width: 30px;
height: 30px;
margin-left: 20px;
background: rgba(251, 82, 82, 0.1);
color: #fb5252;
display: inline-block;
border-radius: 3px;
text-align: center;
line-height: 30px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-six .button-blog:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff !important; }
.blog-layout-six .button-blog:hover i {
color: #fb5252;
background: #fff; }
.blog-transparent:before {
display: none; }
.single-blog-layout .blog-content-wrap .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 20px 0 45px; }
.single-blog-layout .blog-content-wrap img {
border-radius: 5px;
width: 100%; }
.single-blog-layout .blog-content-wrap h2 {
padding: 25px 0 5px; }
.single-blog-layout .blog-content-wrap .list-blog {
padding: 15px 0; }
.single-blog-layout .blog-content-wrap .list-blog li {
position: relative;
padding-left: 15px; }
.single-blog-layout .blog-content-wrap .list-blog li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.single-blog-layout .blog-content-wrap .list-blog li:not(:last-child) {
margin-bottom: 15px; }
.single-blog-layout .blog-content-wrap .blog-row img {
-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-content-wrap .post-hierarchy {
padding: 5px 0 15px; }
.single-blog-layout .blog-content-wrap .post-hierarchy i {
padding-right: 5px; }
.single-blog-layout .blog-content-wrap .post-hierarchy li:not(:last-child) {
padding-right: 10px; }
.single-blog-layout .blog-content-wrap .post-hierarchy a {
color: #343851; }
.single-blog-layout .blog-content-wrap .post-hierarchy a:hover {
color: #fb5252; }
.single-blog-layout .blog-content-wrap .blog-tag {
border-top: 1px solid #eaeaea;
padding-top: 30px;
margin-top: 40px; }
.single-blog-layout .blog-content-wrap .blog-tag a {
padding: 6px 20px;
display: inline-block;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 3px; }
.single-blog-layout .blog-content-wrap .blog-tag a:hover {
background: #fb5252;
color: #fff; }
.single-blog-layout .blog-author-layout {
background: #fff;
padding: 45px 40px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-author-layout .img {
padding-right: 20px; }
.single-blog-layout .blog-author-layout h4 a {
color: #343851; }
.single-blog-layout .comment-layout {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .comment-layout h4 {
padding-bottom: 15px; }
.single-blog-layout .comment-layout .list-inline {
padding-bottom: 20px; }
.single-blog-layout .comment-layout .list-inline .heading-primary {
font-weight: 600; }
.single-blog-layout .comment-layout .list-inline li {
margin-right: 2px; }
.single-blog-layout .comment-layout .list-inline li i {
font-size: 12px; }
.single-blog-layout .comment-layout .input-full {
width: 100%;
margin-bottom: 25px; }
.single-blog-layout .comment-layout .input-half {
width: 50%;
float: left;
margin-bottom: 30px; }
.single-blog-layout .comment-layout .input-half:nth-child(2) {
padding-right: 15px; }
.single-blog-layout .comment-layout .input-half:nth-child(3) {
padding-left: 15px; }
.single-blog-layout .comment-layout input, .single-blog-layout .comment-layout textarea {
width: 100%;
padding: 13px 20px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.single-blog-layout .comment-layout textarea {
min-height: 150px; }
.single-blog-layout .blog-sidebar .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-sidebar .sidebar-item h4 {
padding-bottom: 15px; }
.single-blog-layout .blog-sidebar .sidebar-item .recent-item .img {
padding-right: 20px; }
.single-blog-layout .blog-sidebar .sidebar-item .recent-item .img img {
border-radius: 5px; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists li {
margin-bottom: 3px; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists li:last-child {
margin-bottom: 0; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists a {
display: block;
padding: 12px 25px;
background: #f9f9f9;
color: #343851;
font-weight: 500; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists a:hover {
background: #fb5252;
color: #fff;
border-left: 2px solid #343851; }
.single-blog-layout .blog-sidebar .sidebar-contact {
padding: 0; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author {
position: relative; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author img {
width: 100%;
border-radius: 5px; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact {
padding: 30px 25px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact input, .single-blog-layout .blog-sidebar .sidebar-contact .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.single-blog-layout .item-tag li {
display: inline-block;
padding: 4px 2px; }
.single-blog-layout .item-tag a {
padding: 6px 20px;
display: inline-block;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 3px; }
.single-blog-layout .item-tag a:hover {
background: #fb5252;
color: #fff; }
/*
========================================
15 - Sale Section
========================================
*/
.sale-layout-one .sale-item {
-webkit-box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
background: #fff; }
.sale-layout-one .sale-item .img {
position: relative; }
.sale-layout-one .sale-item .img img {
width: 100%; }
.sale-layout-one .sale-item .img:hover .slick-arrow {
opacity: 1; }
.sale-layout-one .sale-item .img:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.sale-layout-one .sale-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.sale-layout-one .sale-item .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.sale-layout-one .sale-item .rent-tag {
background: #ff9c00;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.sale-layout-one .sale-item .feature-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.sale-layout-one .sale-item .img-footer {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px; }
.sale-layout-one .sale-item .img-footer h4 {
float: left;
color: #fff;
line-height: 1; }
.sale-layout-one .sale-item .img-footer h4 span {
font-size: 16px;
font-weight: 400; }
.sale-layout-one .sale-item .img-footer .list-inline {
float: right; }
.sale-layout-one .sale-item .img-footer .list-inline a {
font-size: 24px;
color: #fff;
line-height: 1; }
.sale-layout-one .sale-item .img-footer .list-inline a:hover {
color: #fb5252; }
.sale-layout-one .sale-item .slick-arrow {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 2;
color: #fff;
font-size: 32px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer;
font-weight: 500; }
.sale-layout-one .sale-item .slick-arrow.flaticon-right {
right: 20px; }
.sale-layout-one .sale-item .slick-arrow.flaticon-left {
left: 20px; }
.sale-layout-one .sale-item .content {
padding: 30px 30px 15px; }
.sale-layout-one .sale-item .content h4 {
padding-bottom: 2px; }
.sale-layout-one .sale-item .content h4 a {
color: #343851; }
.sale-layout-one .sale-item .content h4 a:hover {
color: #fb5252; }
.sale-layout-one .sale-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px; }
.sale-layout-one .sale-item .footer-content > div {
float: left; }
.sale-layout-one .sale-item .footer-content > div:last-child {
float: right; }
.sale-layout-one .sale-item .footer-content .author .img {
margin-right: 10px; }
.sale-layout-one .sale-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.sale-layout-one .sale-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.sale-layout-one .sale-item .footer-content a.active {
color: #fb5252; }
.sale-layout-one .sale-item .footer-content a.active > i:before {
content: "\f106"; }
.sale-layout-one .sale-item .house-feature {
border-top: 1px solid #ededed;
padding-top: 25px;
margin-top: 15px;
display: none; }
.sale-layout-one .sale-item .house-feature i {
padding-right: 5px; }
.ls-layout-one .container {
position: relative; }
.ls-layout-one .sale-wrap {
position: relative;
z-index: 2; }
.ls-layout-one .sale-wrap:before {
content: "";
width: 518px;
height: 584px;
background: url("../img/latest-sale/shape.png") no-repeat;
position: absolute;
right: -250px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1; }
.ls-layout-one .sale-wrap > .row {
position: relative;
z-index: 3;
margin: 0;
background-color: #fff;
border-radius: 20px; }
.ls-layout-one .sale-wrap > .row .col-md-6:first-child {
padding-left: 0; }
.ls-layout-one .sale-left {
position: relative;
border-radius: 20px 0 0 20px;
overflow: hidden; }
.ls-layout-one .sale-left > img {
width: 100%; }
.ls-layout-one .sale-left .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.ls-layout-one .sale-left .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.ls-layout-one .sale-left .author {
position: absolute;
left: 30px;
bottom: 30px; }
.ls-layout-one .sale-left .author img {
border: 2px solid #fff;
border-radius: 50%; }
.ls-layout-one .sale-left .author .content h4 {
color: #fff;
font-size: 1.3em;
margin-left: 15px; }
.ls-layout-one .sale-left .author .content span {
display: block;
font-weight: 400; }
.ls-layout-one .sale-feature {
border-top: 1px solid #ededed;
padding-top: 30px; }
.ls-layout-one .sale-feature .sale-flex {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.ls-layout-one .sale-feature .sale-flex i {
padding-right: 8px; }
.ls-layout-one .sale-right {
padding-right: 30px; }
.ls-layout-one .sale-right h4 {
margin-bottom: 25px; }
.ls-layout-one .sale-right h3 {
margin-bottom: 25px; }
.ls-layout-one .sale-right p i {
padding-right: 8px; }
.ls-layout-one.background-sale .bg-shape:nth-child(4) {
opacity: 0; }
/*
========================================
16 - FAQ Section
========================================
*/
.faq-layout-one .nav-tabs {
display: block;
border: 0;
text-align: center;
margin-bottom: 45px; }
.faq-layout-one .nav-tabs .nav-item {
margin-bottom: 0;
border: 0;
display: inline-block;
background: rgba(251, 82, 82, 0.2);
font-weight: 600;
font-size: 17px;
text-transform: uppercase;
color: #fb5252;
border-radius: 5px;
padding: 12px 25px;
margin: 0 10px; }
.faq-layout-one .nav-tabs .nav-item.active {
background: #fb5252;
color: #fff; }
.faq-layout-one .tab-content {
background: #fff;
-webkit-box-shadow: 0px 0px 43px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 0px 43px 0px rgba(111, 120, 142, 0.09);
padding: 90px 75px; }
.faq-layout-one .tab-content .tab-pane .admin-image {
position: relative; }
.faq-layout-one .tab-content .tab-pane .admin-image:before {
content: "";
width: 320px;
height: 320px;
background: #fb5252;
-webkit-clip-path: ellipse(28% 50% at 50% 50%);
clip-path: ellipse(28% 50% at 50% 50%);
position: absolute;
left: -30px;
top: -30px;
-webkit-transform: rotate(-35deg);
-ms-transform: rotate(-35deg);
transform: rotate(-35deg); }
.faq-layout-one .tab-content .tab-pane .admin-image img {
border: 10px solid #fff;
-webkit-box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
border-radius: 50%;
position: relative;
z-index: 2; }
.faq-layout-one .accordion .card {
background: #fff;
border-radius: 5px;
overflow: hidden;
border: 0;
-webkit-box-shadow: 0px 0px 37px 0px rgba(0, 85, 149, 0.08);
box-shadow: 0px 0px 37px 0px rgba(0, 85, 149, 0.08);
padding: 15px 20px;
overflow: hidden; }
.faq-layout-one .accordion .card .card-header {
background: transparent;
border: 0;
padding: 0; }
.faq-layout-one .accordion .card .card-header h2 {
line-height: 0; }
.faq-layout-one .accordion .card .card-header button {
text-align: left;
padding: 0;
color: #343851;
font-weight: 600;
font-size: 18px;
width: 100%;
text-decoration: none; }
.faq-layout-one .accordion .card .card-header button i {
float: right;
font-weight: bold; }
.faq-layout-one .accordion .card .card-header button:hover, .faq-layout-one .accordion .card .card-header button:focus, .faq-layout-one .accordion .card .card-header button:visited {
text-decoration: none; }
.faq-layout-one .accordion .card .card-header button[aria-expanded='true'] i {
color: #fb5252; }
.faq-layout-one .accordion .card .card-body {
padding: 20px 0 0; }
.faq-layout-one .accordion .card:not(:last-child) {
margin-bottom: 20px; }
/*
========================================
17 - Event Section
========================================
*/
/*
========================================
18 - Listing Section
========================================
*/
.listing-layout-one .listing-item {
padding: 60px 40px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
background: #fff;
-webkit-box-shadow: unset;
box-shadow: unset; }
.listing-layout-one .listing-item .icon {
width: 150px;
height: 150px;
border-radius: 50%;
background: rgba(251, 82, 82, 0.2);
margin: 0 auto;
color: #fb5252;
font-size: 80px;
line-height: 150px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.listing-layout-one .listing-item h4 {
padding: 30px 0 15px; }
.listing-layout-one .listing-item:hover, .listing-layout-one .listing-item.active {
-webkit-box-shadow: 0px 32px 43px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 32px 43px 0px rgba(111, 120, 142, 0.09); }
.listing-layout-one .listing-item:hover .icon, .listing-layout-one .listing-item.active .icon {
background: #fb5252;
color: #fff; }
/*
========================================
19 - Gallery Section
========================================
*/
.gallery-layout-one {
position: relative;
margin-top: -230px;
margin-bottom: -330px; }
.gallery-layout-one p.primary-color {
font-weight: 600;
text-transform: uppercase; }
.gallery-layout-one h2 {
text-transform: uppercase;
padding-top: 5px; }
.gallery-layout-one .slider-item {
position: relative; }
.gallery-layout-one .slider-item img {
width: 100%; }
.gallery-layout-one .slider-item:before {
content: "";
width: calc(100% - 30px);
height: calc(100% - 30px);
left: 15px;
top: 15px;
position: absolute;
background: rgba(0, 0, 0, 0.5); }
.gallery-layout-one .slick-dots {
bottom: 50px;
z-index: 15; }
.gallery-layout-one .slick-dots li {
width: 20px;
height: 20px; }
.gallery-layout-one .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.gallery-layout-one .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.gallery-layout-one .slick-dots li button:before {
display: none; }
/*
========================================
20 - Fun Facts Section
========================================
*/
.skill-layout-one .ldBar {
width: 160px !important;
height: 160px !important;
margin: 0 auto; }
.skill-layout-one .ldBar .mainline {
stroke-width: 4px;
stroke: #fb5252; }
.skill-layout-one .ldBar .baseline {
stroke-width: 4px; }
.skill-layout-one .ldBar .ldBar-label {
color: #fb5252;
font-size: 23px;
font-weight: 600; }
.skill-layout-one .skill-item {
padding: 0 30px; }
.skill-layout-one .skill-item h4 {
text-transform: uppercase;
padding: 20px 0 5px; }
/*
========================================
21 - Instagram Section
========================================
*/
.instagram-layout-one {
clear: both;
overflow: hidden;
position: relative;
margin: 0 -4px; }
.instagram-layout-one .instagram-item {
float: left;
width: 20%;
padding: 0 4px; }
.instagram-layout-two .container-fluid {
max-width: 1600px; }
.instagram-layout-two .container-fluid img {
width: 100%; }
.follow-layout-one .follow-item {
background: #fff;
-webkit-box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.1); }
.follow-layout-one .follow-item img {
width: 100%; }
.follow-layout-one .follow-item .content {
padding: 25px 30px; }
/*
========================================
22 - Map Section
========================================
*/
.map-layout-one .map-wrap {
position: relative; }
.map-layout-one .map-wrap .map-items {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%; }
.map-layout-one .map-wrap .map-item {
position: absolute;
width: 300px;
min-height: 10px; }
.map-layout-one .map-wrap .map-item .item-dot {
width: 8px;
height: 8px;
background: #fff;
position: absolute;
left: 20px;
bottom: 0;
cursor: pointer;
z-index: 3; }
.map-layout-one .map-wrap .map-item .item-dot:before {
content: "";
width: 12px;
height: 12px;
background: #fff;
opacity: .5;
position: absolute;
left: -2px;
top: -2px;
cursor: pointer; }
.map-layout-one .map-wrap .map-item .item-dot.item-dot-active {
background: #fb5252; }
.map-layout-one .map-wrap .map-item .item-dot.item-dot-active:before {
background: #fb5252; }
.map-layout-one .map-wrap .map-item .item-details {
position: absolute;
bottom: 20px;
width: 300px;
background: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.map-layout-one .map-wrap .map-item .item-details .content {
padding: 20px 25px; }
.map-layout-one .map-wrap .map-item .item-details.show {
opacity: 1; }
.map-layout-one .map-wrap .map-item:nth-child(1) {
left: 100px;
top: 400px; }
.map-layout-one .map-wrap .map-item:nth-child(2) {
right: 50px;
top: 450px; }
.map-layout-one .map-wrap .map-item:nth-child(3) {
left: 150px;
bottom: 100px; }
.map-layout-one .map-wrap .map-item:nth-child(4) {
right: 150px;
bottom: 70px; }
.map-layout-one .map-video {
position: relative; }
.map-layout-one .map-video img {
min-height: 750px;
max-width: 110%; }
.map-layout-one .map-video .play-button {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
width: 100px;
height: 100px;
background: #fb5252;
color: #fff;
text-align: center;
line-height: 100px;
font-size: 30px;
border-radius: 50%; }
.map-layout-one .map-video .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
position: absolute;
left: -12px;
top: -12px;
opacity: .5;
border-radius: 50%; }
.map-layout-one .map-video .play-button i {
position: relative;
z-index: 2; }
.halfmap-fixed {
position: fixed;
top: 147px;
left: 0;
height: calc( 100vh - 147px);
width: 40%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.halfmap-fixed #map-canvas {
height: calc(100vh - 147px); }
.halfmap-fixed.top-bigger {
top: 90px;
height: calc( 100vh - 90px); }
.halfmap-fixed.top-bigger #map-canvas {
height: calc(100vh - 90px); }
/*
========================================
23 - Newsletter Section
========================================
*/
.newsletter-layout-one {
background: -webkit-gradient(linear, left top, right top, from(#fb5252), color-stop(50%, #fb5252), color-stop(50%, #151926), to(#151926));
background: -webkit-linear-gradient(left, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
background: -o-linear-gradient(left, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
background: linear-gradient(to right, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
padding: 400px 0 100px; }
.newsletter-layout-one .container-fluid {
max-width: 1700px; }
.newsletter-layout-one .container-fluid .col-md-6:first-child {
padding-right: 60px; }
.newsletter-layout-one .container-fluid .col-md-6:last-child {
padding-left: 60px; }
.newsletter-layout-one .newsletter-title {
float: left;
padding-right: 30px;
width: 32%; }
.newsletter-layout-one .newsletter-title h2 {
line-height: 1;
text-transform: uppercase;
font-size: 2.3em;
padding-top: 5px; }
.newsletter-layout-one .newsletter-title p {
font-weight: 600;
text-transform: uppercase;
line-height: 1; }
.newsletter-layout-one .newsletter-form {
float: right;
width: 68%; }
.newsletter-layout-one .newsletter-form input {
width: 68%;
margin-right: 2%;
float: left;
padding: 19px 20px;
border: 0;
background: #fff;
text-transform: uppercase; }
.newsletter-layout-one .newsletter-form button {
float: right;
width: 30%;
padding: 20px;
text-transform: uppercase;
background: #151926;
text-transform: uppercase;
color: #fff; }
.newsletter-layout-one .newsletter-item .icon {
font-size: 65px;
line-height: 1.1em;
margin-right: 20px; }
.newsletter-layout-one .newsletter-item h2 {
line-height: 1.2; }
.newsletter-layout-two .subscribe-form {
margin-bottom: 90px; }
.newsletter-layout-two .subscribe-form form {
position: relative; }
.newsletter-layout-two .subscribe-form input {
width: 100%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 22px 40px;
color: #fff;
border-radius: 5px; }
.newsletter-layout-two .subscribe-form input::-webkit-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input:-ms-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input::-ms-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input::placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input:focus {
border-color: #fb5252; }
.newsletter-layout-two .subscribe-form button {
padding: 15px 40px;
background: #fb5252;
color: #fff;
text-transform: uppercase;
position: absolute;
right: 8px;
top: 8px;
border-radius: 5px; }
/*
========================================
24 - Search Section
========================================
*/
.search-layout-one {
position: relative;
padding: 60px 40px 0; }
.search-layout-one .short-version {
background: #fff;
border-radius: 50px;
overflow: hidden;
position: relative;
z-index: 2;
width: 730px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.search-layout-one .short-version > div {
float: left; }
.search-layout-one .short-version .select {
background: #f8f8f8;
border-radius: 50px;
position: relative;
color: #343851; }
.search-layout-one .short-version .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg); }
.search-layout-one .short-version .select select {
padding: 25px 50px 25px 30px;
font-weight: 500;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-one .short-version .input input {
border: 0;
padding: 25px 20px;
min-width: 350px;
background: #fff; }
.search-layout-one .short-version .view-button {
padding: 25px 20px; }
.search-layout-one .short-version .view-button a {
color: #fb5252; }
.search-layout-one .short-version .submit-form {
float: right;
margin-right: 11px; }
.search-layout-one .short-version .submit-form input {
background: #fb5252;
padding: 14px 38px;
border-radius: 50px;
margin-top: 11px;
font-weight: 600;
color: #fff; }
.search-layout-one .advance-search {
background: #fff;
border-radius: 10px;
padding: 20px 30px 30px;
-webkit-box-shadow: 0px 0px 139px 0px rgba(111, 120, 142, 0.06);
box-shadow: 0px 0px 139px 0px rgba(111, 120, 142, 0.06);
display: none;
position: absolute;
left: 40px;
width: calc(100% - 80px);
z-index: 1;
margin-top: 10px; }
.search-layout-one .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-one .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-one .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-one .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 5px;
left: 3px;
color: #fff; }
.search-layout-one .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-one .advance-search .select-two {
background: #fff;
border-radius: 3px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-one .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-one .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-one .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-one .advance-search .select-two select {
padding: 12px 10px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-one .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-one .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 3px; }
.search-layout-two {
padding-top: 100px; }
.search-layout-two h2 {
margin-bottom: 45px; }
.search-layout-two .search-layout {
position: relative;
background: #fff;
padding: 50px 40px;
-webkit-box-shadow: 0px 0 39px 0px rgba(111, 120, 142, 0.07);
box-shadow: 0px 0 39px 0px rgba(111, 120, 142, 0.07); }
.search-layout-two .short-form .select {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd;
width: 100%; }
.search-layout-two .short-form .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-two .short-form .select select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #757c8c; }
.search-layout-two .short-form .input-text input {
width: 100%;
padding: 12px 25px;
color: #757c8c;
border: 1px solid #ddd;
border-radius: 5px;
background: #fff; }
.search-layout-two .short-form .input-text input::-webkit-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input:-ms-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input::-ms-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input::placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-submit input {
background: #fb5252;
color: #fff;
width: 100%;
text-align: center;
padding: 13px 10px;
border-radius: 5px;
font-weight: 600; }
.search-layout-two .show-advance {
display: inline-block;
margin-top: 40px;
color: #fb5252;
font-size: 17px;
font-weight: 500; }
.search-layout-two .show-advance i {
position: relative;
font-size: 15px;
padding-left: 5px;
top: 1px; }
.search-layout-two .advance-search {
padding: 50px 40px;
display: none;
-webkit-box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.07);
box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.07);
position: absolute;
background: #fff;
left: 0;
width: 100%;
z-index: 1; }
.search-layout-two .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-two .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-two .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-two .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 5px;
left: 3px;
color: #fff; }
.search-layout-two .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-two .advance-search .select-two {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-two .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-two .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-two .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-two .advance-search .select-two select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
color: #757c8c;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-two .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-two .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 5px; }
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
border-radius: 3px;
margin: 3px auto 0; }
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #eeeeee;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
border-radius: 3px; }
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
border-radius: 3px;
background-color: #757c8c;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s; }
.active .slider:before {
background-color: #fb5252; }
.active .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px); }
.search-layout-three {
background: #fff;
position: relative;
padding-top: 86px; }
.search-layout-three form > .container > .row {
margin: 0; }
.search-layout-three .short-version {
background: #fff;
overflow: hidden;
position: relative;
z-index: 2;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.search-layout-three .short-version > div {
float: left; }
.search-layout-three .short-version .select {
background: #fff;
border: 1px solid #eaeaea;
border-top: 0;
border-bottom: 0;
position: relative;
height: 100%;
color: #343851; }
.search-layout-three .short-version .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg); }
.search-layout-three .short-version .select select {
padding: 25px 60px 25px 30px;
font-weight: 600;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 100%;
position: relative; }
.search-layout-three .short-version .input {
width: 60%; }
.search-layout-three .short-version .input input {
border: 0;
padding: 25px 20px;
width: 100%;
background: #fff;
font-weight: 600; }
.search-layout-three .short-version .view-button {
padding: 29px 30px 28px;
line-height: 0; }
.search-layout-three .short-version .view-button a {
color: #fb5252; }
.search-layout-three .short-version .view-button .switch {
width: 42px;
height: 15px; }
.search-layout-three .short-version .view-button .switch .slider {
border-radius: 30px; }
.search-layout-three .short-version .view-button .switch .slider:before {
width: 22px;
height: 15px;
top: 0;
left: 0;
border-radius: 30px; }
.search-layout-three .short-version .submit-form {
float: right; }
.search-layout-three .short-version .submit-form input {
background: #fb5252;
padding: 25px 50px;
font-weight: 600;
color: #fff; }
.search-layout-three .advance-search {
padding: 50px 40px;
display: none;
-webkit-box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.03);
box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.03);
position: absolute;
background: #fff;
border-top: 1px solid #eaeaea;
left: 0;
width: 100%;
z-index: 1; }
.search-layout-three .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-three .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-three .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-three .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 4px;
left: 3px;
color: #fff; }
.search-layout-three .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-three .advance-search .select-two {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-three .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-three .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-three .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-three .advance-search .select-two select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
color: #757c8c;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-three .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-three .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 5px; }
.search-layout-four {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-four .short-version .input input {
font-weight: 400; }
.search-layout-five {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-five .short-version .input {
width: 55%; }
.search-layout-five .short-version .input input {
font-weight: 400; }
.search-layout-six {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-six .short-version .input {
width: 42%; }
.search-layout-six .short-version .input input {
font-weight: 400; }
/*
========================================
25 - Video Section
========================================
*/
.video-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(42, 55, 76, 0.97)), to(rgba(42, 55, 76, 0.97))), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: -webkit-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: -o-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: linear-gradient(to left, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-size: cover;
background-repeat: no-repeat;
position: relative; }
.video-layout-one .video-carousel {
width: 130%;
left: -15%; }
.video-layout-one .video-tt {
padding: 0 15px; }
.video-layout-one .video-item {
position: relative; }
.video-layout-one .video-item:before {
content: "";
width: 100%;
height: 100%;
background: #2a374c;
opacity: 0.8;
position: absolute;
left: 0;
top: 0; }
.video-layout-one .video-item img {
width: 100%; }
.video-layout-one .video-item .icons {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 0;
z-index: 99; }
.video-layout-one .video-item .icons a {
background-color: #fff;
width: 108px;
height: 108px;
border-radius: 50%;
text-align: center;
line-height: 108px; }
.video-layout-one .video-item .icons a svg {
width: 80px;
height: 80px; }
.video-layout-one .video-tt.slick-center .video-item:before {
display: none; }
.video-layout-one .video-tt.slick-center .video-item .icons {
opacity: 1;
z-index: 11;
-webkit-transition: all .7s ease-in;
-o-transition: all .7s ease-in;
transition: all .7s ease-in; }
.video-layout-one .video-arrow {
width: 36%;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 0;
color: #fff;
font-size: 40px;
line-height: 0; }
.video-layout-one .video-arrow i {
cursor: pointer; }
.video-layout-one .video-arrow .flaticon-right {
float: right; }
.video-layout-two {
position: relative; }
.video-layout-two img {
width: 100%; }
.video-layout-two .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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: rgba(0, 0, 0, 0.2); }
.video-layout-two .playbutton {
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
position: relative;
width: 172px;
height: 172px;
display: inline-block;
text-align: center;
line-height: 172px; }
.video-layout-two .playbutton:before {
content: "";
width: 172px;
height: 172px;
border-right: 3px solid #fff;
border-radius: 50%;
position: absolute;
right: -3px;
top: -3px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
-webkit-animation: rotate-center 4s infinite linear;
animation: rotate-center 4s infinite linear;
-webkit-animation-play-state: paused;
animation-play-state: paused; }
.video-layout-two .playbutton svg {
width: 80px;
height: 80px; }
.video-layout-two .playbutton .triangle {
stroke: #fff; }
.video-layout-two .playbutton:hover:before {
-webkit-animation-play-state: running;
animation-play-state: running; }
@-webkit-keyframes rotate-center {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
100% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg); } }
@keyframes rotate-center {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
100% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg); } }
.video-layout-three {
position: relative;
overflow: hidden; }
.video-layout-three:before {
content: "";
width: 100%;
height: 100%;
background: url("../img/property-bg-2.png") no-repeat;
background-position: center -200px;
position: absolute;
left: 0;
top: 0; }
.video-layout-three .video-slider {
margin-bottom: 40px; }
.video-layout-three .slider-item {
background: #fff;
-webkit-box-shadow: 0px 0px 30px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 0px 30px 0px rgba(111, 120, 142, 0.1);
margin: 30px; }
.video-layout-three .video-left {
position: relative; }
.video-layout-three .video-left img {
width: 100%; }
.video-layout-three .video-left .playbutton {
width: 80px;
height: 80px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
border-radius: 50%;
background: #fff;
line-height: 80px;
text-align: center; }
.video-layout-three .video-left .playbutton:before {
content: "";
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.4);
position: absolute;
left: -10px;
top: -10px;
border-radius: 50%; }
.video-layout-three .video-left .playbutton svg {
width: 70px;
height: 70px;
position: relative;
z-index: 2; }
.video-layout-three .video-right {
padding: 0 30px 0 0; }
.video-layout-three .video-right p:first-child {
text-transform: uppercase; }
.video-layout-three .video-right h3 {
margin-bottom: 20px; }
.video-layout-three .video-right p i {
margin-right: 8px; }
.video-layout-three .slick-dots {
bottom: -40px; }
.video-layout-three .slick-dots li {
width: 15px;
height: 15px; }
.video-layout-three .slick-dots li.slick-active button {
background: #fb5252; }
.video-layout-three .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.video-layout-three .slick-dots li button:before {
display: none; }
/*
========================================
26 - Contact Section
========================================
*/
.contact-innar .contact-item {
padding-right: 100px; }
.contact-innar .contact-item .contact-lists {
padding-top: 25px; }
.contact-innar .contact-item .contact-list {
padding-bottom: 10px; }
.contact-innar .contact-item .contact-list .icon {
padding-right: 20px; }
.contact-innar .contact-item .contact-list:last-child {
padding-bottom: 0; }
.contact-innar .contact-form .input-full {
margin-bottom: 25px; }
.contact-innar .contact-form .textarea-full {
margin-bottom: 20px; }
.contact-innar .contact-form label {
padding-bottom: 1px;
color: #343851; }
.contact-innar .contact-form input, .contact-innar .contact-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.contact-innar .contact-form input:focus, .contact-innar .contact-form textarea:focus {
border-color: #fb5252; }
.contact-innar .contact-form textarea {
height: 100px; }
.contact-innar .contact-form .button {
font-weight: 400;
padding-left: 60px;
padding-right: 60px;
border-radius: 3px; }
/*
========================================
27 - Other's Section
========================================
*/
.plan-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-repeat: no-repeat;
background-size: cover; }
.plan-layout-one .plan-item {
padding: 0 30px; }
.plan-layout-one .plan-item img {
width: 100%; }
.plan-layout-one .plan-item .img {
position: relative; }
.plan-layout-one .plan-item .hover {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
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;
opacity: 0;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out; }
.plan-layout-one .plan-item .content {
padding-top: 25px; }
.plan-layout-one .plan-item .content h4, .plan-layout-one .plan-item .content h6 i {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.plan-layout-one .plan-item .content h6 {
padding: 5px 0 10px; }
.plan-layout-one .plan-item .content h6 i {
font-size: 24px;
padding-left: 20px; }
.plan-layout-one .plan-item:hover .content h4 a, .plan-layout-one .plan-item:hover .content h6 i {
color: #fb5252; }
.plan-layout-one .plan-item:hover .hover {
opacity: 1; }
.plan-layout-two {
position: relative; }
.plan-layout-two .slick-slide img {
min-height: 700px;
max-width: 150%; }
.plan-layout-two .plan-content {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
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: rgba(0, 0, 0, 0.85);
padding-bottom: 50px; }
.plan-layout-two .section-heading p {
text-transform: uppercase;
font-weight: 600;
padding-bottom: 5px; }
.plan-layout-two .section-heading h2 {
color: #fff;
text-transform: uppercase; }
.plan-layout-two .nav-pills .nav-link {
border: 2px solid rgba(255, 255, 255, 0.2);
color: #fff;
font-weight: 600;
text-align: center;
padding: 14px 15px; }
.plan-layout-two .nav-pills .nav-link:not(:last-child) {
margin-bottom: 20px; }
.plan-layout-two .nav-pills .nav-link.active, .plan-layout-two .nav-pills .show > .nav-link {
background: #fb5252;
border-color: #fb5252; }
.plan-layout-two .tab-content {
padding-left: 70px; }
.plan-layout-two .tab-content h4 {
text-transform: uppercase;
line-height: 1;
margin-bottom: 20px; }
.plan-layout-two .tab-content .col-md-7 {
padding-right: 50px; }
.plan-layout-two .tab-content .col-md-7 > p {
font-size: 17px;
margin-bottom: 30px; }
.plan-layout-two .tab-content .floor-list li {
color: #fff;
font-size: 17px; }
.plan-layout-two .tab-content .floor-list li i {
margin-right: 8px; }
.plan-layout-two .tab-content .floor-list li:not(:last-child) {
padding-bottom: 10px; }
.plan-layout-two .slick-dots {
bottom: 50px;
z-index: 15; }
.plan-layout-two .slick-dots li {
width: 20px;
height: 20px; }
.plan-layout-two .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.plan-layout-two .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.plan-layout-two .slick-dots li button:before {
display: none; }
.location-layout-one .map-locations {
min-height: 575px;
background: url("../img/location-bg.png") no-repeat;
background-size: contain;
background-position: center;
position: relative; }
.location-layout-one .map-pin {
position: absolute;
left: 130px;
top: 160px; }
.location-layout-one .map-pin .show-location {
width: 16px;
height: 16px;
background: #fb5252;
border-radius: 50%;
cursor: pointer; }
.location-layout-one .map-pin .show-location:before {
content: "";
width: 24px;
height: 24px;
background: rgba(251, 82, 82, 0.5);
border-radius: 50%;
position: absolute;
top: -4px;
left: -4px; }
.location-layout-one .map-pin:nth-child(2) {
right: 330px;
top: 200px;
left: auto; }
.location-layout-one .map-pin:nth-child(3) {
left: 50%;
top: 50%; }
.location-layout-one .map-pin:nth-child(4) {
left: 20%;
top: 55%; }
.location-layout-one .map-pin:nth-child(5) {
left: auto;
top: auto;
right: 20%;
bottom: 22%; }
.location-layout-one .location-item {
max-width: 370px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0;
position: absolute;
bottom: 30px;
left: -10px;
z-index: -1; }
.location-layout-one .location-item .content {
padding: 30px 30px 15px; }
.location-layout-one .location-item .content h4 {
padding-bottom: 2px; }
.location-layout-one .location-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px; }
.location-layout-one .location-item .footer-content > div {
float: left; }
.location-layout-one .location-item .footer-content > div:last-child {
float: right; }
.location-layout-one .location-item .footer-content .author .img {
margin-right: 10px; }
.location-layout-one .location-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.location-layout-one .location-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.location-layout-one .location-item .footer-content a.active {
color: #fb5252; }
.location-layout-one .location-item .footer-content a.active > i:before {
content: "\f106"; }
.location-layout-one .location-item .house-feature {
border-top: 1px solid #ededed;
padding-top: 25px;
margin-top: 15px;
display: none; }
.location-layout-one .location-item .house-feature i {
padding-right: 5px; }
.location-layout-one .location-item.show {
opacity: 1;
z-index: 1; }
.explore-layout-one {
padding: 80px 0 100px; }
.explore-layout-one .tab-content {
margin-top: 60px; }
.explore-layout-one .nav-tabs .nav-item {
padding: 0 14px; }
.explore-layout-one .nav-tabs .nav-item:first-child {
padding-left: 0; }
.explore-layout-one .nav-tabs .nav-item .nav-link {
color: #757c8c;
padding: 8px 0;
border: 0;
border-bottom: 2px solid transparent; }
.explore-layout-one .nav-tabs .nav-item.show .nav-link, .explore-layout-one .nav-tabs .nav-link.active {
border: 0;
border-bottom: 2px solid #fb5252;
color: #fb5252; }
.explore-layout-one .explore-list li:not(:last-child) {
padding-bottom: 12px; }
.explore-layout-one .explore-list a {
color: #757c8c;
font-size: 17px;
position: relative; }
.explore-layout-one .explore-list a:before {
content: "\f110";
font-family: 'Flaticon';
position: absolute;
left: -10px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
-webkit-transition: left .3s ease-in-out, opacity .3s ease-in-out;
-o-transition: left .3s ease-in-out, opacity .3s ease-in-out;
transition: left .3s ease-in-out, opacity .3s ease-in-out; }
.explore-layout-one .explore-list a:hover {
color: #fb5252;
padding-left: 25px; }
.explore-layout-one .explore-list a:hover:before {
opacity: 1;
left: 0; }
.explore-layout-two {
background: #eff2f7; }
.explore-layout-two .container-fluid {
max-width: 1450px; }
.explore-layout-two .container-fluid .explore-carousel {
margin: 0 -15px;
margin-bottom: 80px; }
.explore-layout-two .container-fluid .explore-tt {
padding: 0 15px; }
.explore-layout-two .explore-item {
position: relative; }
.explore-layout-two .explore-item img {
width: 100%; }
.explore-layout-two .explore-item .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 25px 30px; }
.explore-layout-two .explore-item .hover h4 {
font-weight: 500;
color: #fff; }
.explore-layout-two .explore-item .hover p {
position: relative;
display: inline-block;
padding-left: 22px;
color: #fff; }
.explore-layout-two .explore-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 5px; }
.explore-layout-two .explore-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 9px; }
.explore-layout-two .slick-dots {
bottom: -80px;
z-index: 15; }
.explore-layout-two .slick-dots li {
width: 24px;
height: 24px; }
.explore-layout-two .slick-dots li.slick-active button {
border: 7px solid #fb5252; }
.explore-layout-two .slick-dots li button {
background: #f7f6f1;
border: 5px solid rgba(251, 82, 82, 0.2);
width: 24px;
height: 24px;
padding: 0;
border-radius: 3px; }
.explore-layout-two .slick-dots li button:before {
display: none; }
.explore-layout-three .explore-item {
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.explore-layout-three .explore-item img {
width: 100%; }
.explore-layout-three .explore-item .content {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.7);
padding: 25px 30px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.explore-layout-three .explore-item .content a {
color: #fff; }
.explore-layout-three .explore-item .content p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: 600; }
.explore-layout-three .explore-item:hover {
-webkit-box-shadow: 0px 19px 25px 0px rgba(0, 0, 0, 0.13);
box-shadow: 0px 19px 25px 0px rgba(0, 0, 0, 0.13); }
.explore-layout-three .explore-item:hover .content {
background: #fff; }
.explore-layout-three .explore-item:hover .content a {
color: #343851; }
.explore-layout-three .explore-item:hover .content p {
color: #757c8c; }
/*
========================================
26 - Contact Section
========================================
*/
.contact-innar .contact-item {
padding-right: 100px; }
.contact-innar .contact-item .contact-lists {
padding-top: 25px; }
.contact-innar .contact-item .contact-list {
padding-bottom: 10px; }
.contact-innar .contact-item .contact-list .icon {
padding-right: 20px; }
.contact-innar .contact-item .contact-list:last-child {
padding-bottom: 0; }
.contact-innar .contact-form .input-full {
margin-bottom: 25px; }
.contact-innar .contact-form .textarea-full {
margin-bottom: 20px; }
.contact-innar .contact-form label {
padding-bottom: 1px;
color: #343851; }
.contact-innar .contact-form input, .contact-innar .contact-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.contact-innar .contact-form input:focus, .contact-innar .contact-form textarea:focus {
border-color: #fb5252; }
.contact-innar .contact-form textarea {
height: 100px; }
.contact-innar .contact-form .button {
font-weight: 400;
padding-left: 60px;
padding-right: 60px;
border-radius: 3px; }
/*
========================================
28 - Homepages
========================================
*/
.background-sale {
position: relative;
overflow: hidden; }
.background-sale .background-shapes {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 0; }
.background-sale .background-shapes .bg-shape {
position: absolute;
background: #f2f1f4;
width: 360px;
height: 360px;
border-radius: 50%; }
.background-sale .background-shapes .bg-shape:nth-child(1) {
width: 250px;
height: 600px;
border-radius: 100px;
-webkit-transform: rotate(-40deg);
-ms-transform: rotate(-40deg);
transform: rotate(-40deg);
left: 130px;
top: -100px; }
.background-sale .background-shapes .bg-shape:nth-child(2) {
left: -50px;
bottom: -20px; }
.background-sale .background-shapes .bg-shape:nth-child(3) {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -200px; }
.background-sale .background-shapes .bg-shape:nth-child(4) {
right: -50px;
bottom: 100px; }
.background-sale .container {
position: relative;
z-index: 3; }
.background-testimonial .testimonial-carousel {
background: url("../img/testimonial/testimonial-bg-2.png") no-repeat;
background-size: contain; }
.page-content-layout {
border-top: 1px solid #eaeaea;
background: #f7f7f7;
margin-top: 90px; }
.filter-layout .filter-menu li:not(:last-child) {
padding-right: 10px; }
.filter-layout .filter-menu a {
color: #757c8c; }
.filter-layout .filter-menu a i {
padding-right: 5px; }
.filter-layout .filter-property li:not(:last-child) {
padding-right: 2px; }
.filter-layout .filter-property li {
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.filter-layout .filter-property li.active {
color: #fb5252; }
.infoBox {
overflow: hidden; }
.infoBox img {
position: absolute !important;
top: 70px;
right: 20px;
bottom: auto;
left: auto;
z-index: 9;
background-color: rgba(20, 20, 20, 0.6); }
.property-maps {
margin: 60px 0 10px 0;
width: 320px;
height: 300px;
background-color: #FFF;
overflow: hidden;
-webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
/* .img-container */ }
.property-maps .img-container {
position: relative !important;
height: 260px;
width: 320px;
display: block;
background-size: cover;
/* .title */ }
.property-maps .img-container .title {
color: #343851;
background: #fff;
display: block;
font-size: 20px;
text-transform: uppercase;
height: 55px;
padding: 16px 10px 0 20px;
line-height: 1.7;
overflow: hidden;
font-weight: 200;
position: absolute !important;
font-weight: 600;
top: auto;
right: 0;
bottom: 0;
left: 0;
z-index: 8;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out; }
.property-maps .img-container .title:hover {
color: #fb5252; }
.property-maps .details {
background-color: #FFF;
position: relative;
list-style: none;
height: 40px;
z-index: 5;
padding: 0 20px;
margin: 0;
font-weight: 400;
font-size: 16px; }
.property-maps .details i {
padding-right: 10px; }
#maps .control-left-wrapper,
#maps .control-right-wrapper {
cursor: pointer;
margin: 14px 10px 0;
position: relative; }
#maps .control-left-wrapper .zoom-in,
#maps .control-right-wrapper .zoom-in,
#maps .control-left-wrapper .zoom-out,
#maps .control-right-wrapper .zoom-out,
#maps .control-left-wrapper .set-position,
#maps .control-right-wrapper .set-position,
#maps .control-left-wrapper .next-ads,
#maps .control-right-wrapper .next-ads,
#maps .control-left-wrapper .prev-ads,
#maps .control-right-wrapper .prev-ads {
height: 42px;
width: 42px;
opacity: 0.7;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out; }
#maps .control-left-wrapper .zoom-in:hover,
#maps .control-right-wrapper .zoom-in:hover,
#maps .control-left-wrapper .zoom-out:hover,
#maps .control-right-wrapper .zoom-out:hover,
#maps .control-left-wrapper .set-position:hover,
#maps .control-right-wrapper .set-position:hover,
#maps .control-left-wrapper .next-ads:hover,
#maps .control-right-wrapper .next-ads:hover,
#maps .control-left-wrapper .prev-ads:hover,
#maps .control-right-wrapper .prev-ads:hover {
opacity: 1; }
#maps .control-left-wrapper .zoom-in:after,
#maps .control-right-wrapper .zoom-in:after {
content: '\f067'; }
#maps .control-left-wrapper .zoom-out:after,
#maps .control-right-wrapper .zoom-out:after {
content: '\f068';
margin-top: 5px; }
#maps .control-left-wrapper .set-position:after,
#maps .control-right-wrapper .set-position:after {
content: '\f124';
margin-top: 5px; }
#maps .control-left-wrapper .next-ads:after,
#maps .control-right-wrapper .next-ads:after {
content: '\f053';
margin-top: 5px;
float: left; }
#maps .control-left-wrapper .prev-ads:after,
#maps .control-right-wrapper .prev-ads:after {
content: '\f054';
margin-top: 5px;
float: left; }
#maps .control-left-wrapper div:after,
#maps .control-right-wrapper div:after {
padding-top: 0px;
background-color: #fb5252;
border: 1px solid #fb5252;
font-family: 'Font Awesome 5 Free';
display: block;
width: 42px;
height: 42px;
text-align: center;
font-size: 18px;
bottom: 0;
left: 0;
color: #ffffff;
border-radius: 3px;
font-weight: 900;
line-height: 42px; }
.preloader-layout {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background: #fb5252;
z-index: 999; }
.cube-folding {
width: 50px;
height: 50px;
display: inline-block;
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
font-size: 0; }
.cube-folding span {
position: relative;
width: 25px;
height: 25px;
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
display: inline-block; }
.cube-folding span::before {
content: '';
background-color: white;
position: absolute;
left: 0;
top: 0;
display: block;
width: 25px;
height: 25px;
-moz-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%;
-moz-animation: folding 2.5s infinite linear both;
-webkit-animation: folding 2.5s infinite linear both;
animation: folding 2.5s infinite linear both; }
.cube-folding .leaf2 {
-moz-transform: rotateZ(90deg) scale(1.1);
-ms-transform: rotateZ(90deg) scale(1.1);
-webkit-transform: rotateZ(90deg) scale(1.1);
transform: rotateZ(90deg) scale(1.1); }
.cube-folding .leaf2::before {
-moz-animation-delay: 0.3s;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
background-color: #f2f2f2; }
.cube-folding .leaf3 {
-moz-transform: rotateZ(270deg) scale(1.1);
-ms-transform: rotateZ(270deg) scale(1.1);
-webkit-transform: rotateZ(270deg) scale(1.1);
transform: rotateZ(270deg) scale(1.1); }
.cube-folding .leaf3::before {
-moz-animation-delay: 0.9s;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
background-color: #f2f2f2; }
.cube-folding .leaf4 {
-moz-transform: rotateZ(180deg) scale(1.1);
-ms-transform: rotateZ(180deg) scale(1.1);
-webkit-transform: rotateZ(180deg) scale(1.1);
transform: rotateZ(180deg) scale(1.1); }
.cube-folding .leaf4::before {
-moz-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
background-color: #e6e6e6; }
@-moz-keyframes folding {
0%,
10% {
-moz-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-moz-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-moz-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
@-webkit-keyframes folding {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
@keyframes folding {
0%,
10% {
-moz-transform: perspective(140px) rotateX(-180deg);
-ms-transform: perspective(140px) rotateX(-180deg);
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-moz-transform: perspective(140px) rotateX(0deg);
-ms-transform: perspective(140px) rotateX(0deg);
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-moz-transform: perspective(140px) rotateY(180deg);
-ms-transform: perspective(140px) rotateY(180deg);
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
.cube-wrapper {
position: fixed;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
width: 100px;
height: 100px;
text-align: center; }
.cube-wrapper:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -20px;
margin: auto;
width: 90px;
height: 6px;
background-color: rgba(0, 0, 0, 0.1);
-webkit-filter: blur(2px);
filter: blur(2px);
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
border-radius: 100%;
z-index: 1;
-webkit-animation: shadow 0.5s ease infinite alternate;
animation: shadow 0.5s ease infinite alternate; }
.cube-wrapper .loading {
font-size: 12px;
letter-spacing: 0.1em;
display: block;
color: white;
position: relative;
top: 25px;
z-index: 2;
-webkit-animation: text 0.5s ease infinite alternate;
animation: text 0.5s ease infinite alternate; }
@-moz-keyframes text {
100% {
top: 35px; } }
@-webkit-keyframes text {
100% {
top: 35px; } }
@keyframes text {
100% {
top: 35px; } }
@-moz-keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
@-webkit-keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
@keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
/*
========================================
29 - Other's Pages
========================================
*/
.error-layout-one {
min-height: 1024px;
margin-top: 90px;
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;
position: relative; }
.error-layout-one:before {
content: "";
border-left: 700px solid #fb5252;
border-top: 535px solid transparent;
border-bottom: 535px solid transparent;
position: absolute;
left: 0;
top: -0;
opacity: 0.03;
z-index: -1; }
.error-layout-one h2 {
color: #343851; }
.error-layout-one h1 {
font-size: 100px;
color: #fb5252; }
.error-layout-one p {
margin-bottom: 30px; } | public/be_home_template/Upload/css/style.css | ========================================
01 - Global Style
========================================
*/
html, body {
overflow-x: hidden; }
a {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
a:hover {
text-decoration: none; }
ul {
margin-bottom: 0;
padding: 0;
list-style: none; }
.slick-slide {
outline: 0; }
input, textarea, select {
outline: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
input[type='submit'] {
border: 0; }
button {
border: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
outline: 0; }
button:focus {
outline: 0; }
.slick-slider a {
outline: 0; }
body {
font-weight: 400;
font-size: 16px;
line-height: 1.6;
color: #757c8c;
font-family: 'Raleway', sans-serif; }
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
color: #343851; }
h1 {
font-size: 4.68em;
line-height: 1.33; }
h2 {
font-size: 2.5em;
line-height: 1.4; }
h3 {
font-size: 1.8em;
line-height: 1.3; }
h4 {
font-size: 1.5em;
line-height: 1.4; }
h5 {
font-size: 1.25em;
line-height: 1.5; }
h6 {
font-size: 1.125em;
line-height: 1.6; }
.bold-text {
font-weight: 600; }
.mb-100 {
margin-bottom: 100px; }
.mb-70 {
margin-bottom: 70px; }
.mb-60 {
margin-bottom: 60px !important; }
.mb-50 {
margin-bottom: 50px !important; }
.mb-40 {
margin-bottom: 40px !important; }
.mb-30 {
margin-bottom: 30px !important; }
.pa-100 {
padding-top: 100px;
padding-bottom: 100px; }
.pa-80 {
padding-top: 80px;
padding-bottom: 80px; }
.pa-50 {
padding-top: 50px;
padding-bottom: 50px; }
.pt-100 {
padding-top: 100px; }
.pb-100 {
padding-bottom: 100px; }
.pt-86 {
padding-top: 86px; }
.pt-60 {
padding-top: 60px; }
.hide-normal {
display: none; }
.primary-color {
color: #fb5252; }
.heading-primary {
color: #343851; }
.color-white {
color: #fff; }
.primary-bg {
background: #fb5252; }
.dark-bg {
background: #1a2d39; }
.extra-dark-bg {
background: #172833; }
.black-bg {
background: #24262d; }
.extra-black {
background: #202229; }
.blue-bg {
background: #0075ff; }
.view-mobile {
display: none; }
/* Back to Top */
#top-button {
display: inline-block;
background-color: #fb5252;
width: 35px;
height: 35px;
text-align: center;
border-radius: 3px;
position: fixed;
bottom: 30px;
right: 30px;
-webkit-transition: background-color .4s, opacity .5s, visibility .5s;
-o-transition: background-color .4s, opacity .5s, visibility .5s;
transition: background-color .4s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 998;
-webkit-box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3);
box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3); }
#top-button i {
font-size: 1.1em;
line-height: 35px;
color: #fff; }
#top-button:hover {
cursor: pointer;
background-color: #000; }
#top-button:active {
background-color: #000; }
#top-button.show {
opacity: 1;
visibility: visible; }
.button {
font-weight: 600;
text-transform: uppercase;
padding: 12px 40px;
display: inline-block;
border: 1px solid #fb5252;
color: #fb5252;
border-radius: 5px; }
.button:hover {
color: #fff;
background: #fb5252;
-webkit-transform: translateY(-4px);
-ms-transform: translateY(-4px);
transform: translateY(-4px); }
.button-primary {
padding: 14px 50px;
background: #fb5252;
border: 0;
color: #fff;
text-transform: unset; }
.button-primary:hover {
background: #fa3939; }
.button-white {
border: 1px solid #ddd;
color: #343851;
background: #fff; }
.button-white:hover {
background: #fb5252;
color: #fff;
border-color: #fb5252; }
.button-slides {
padding: 8px 40px;
border-radius: 40px;
background: #fff;
border: 0; }
.button-slides:hover {
background: #fb5252;
color: #fff; }
.button-transparent {
background: transparent;
border-color: #fb5252;
color: #fb5252; }
.button.button-icon {
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fff;
color: #fb5252;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-blue-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-blue-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #0075ff;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-blue-icon:hover {
color: #343851; }
.button.button-primary-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.button.button-primary-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fb5252;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-primary-icon:hover {
color: #343851; }
.button.button-white.button-icon {
background: #fff;
border: 0;
padding: 10px 10px 10px 25px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-transform: unset;
color: #fb5252; }
.button.button-white.button-icon i {
width: 40px;
height: 40px;
margin-left: 20px;
background: #fb5252;
color: #fff;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 40px; }
.button.button-white.button-icon:hover {
color: #fb5252; }
.button-blue {
border: 0;
background: #0075ff;
color: #fff; }
.button-blue.button-icon i {
color: #0075ff; }
.button-blue:hover {
background: #3391ff; }
.button-blog:hover {
background: #fff;
color: #fb5252 !important;
border-color: #fff; }
.view-more {
color: #fb5252;
font-weight: 500;
font-size: 17px;
display: inline-block;
line-height: 1;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.view-more:after {
content: "\f110";
font-family: 'Flaticon';
position: absolute;
right: -10px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
-webkit-transition: right .3s ease-in-out, opacity .3s ease-in-out;
-o-transition: right .3s ease-in-out, opacity .3s ease-in-out;
transition: right .3s ease-in-out, opacity .3s ease-in-out; }
.view-more:hover {
color: #fb5252;
padding-right: 10px; }
.view-more:hover:after {
opacity: 1; }
.button-small {
padding: 10px 25px;
font-weight: 400;
border-radius: 3px; }
.button-flat {
border-radius: 0; }
.playbutton {
display: inline-block;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease; }
.playbutton .triangle {
-webkit-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
stroke-dasharray: 240;
stroke-dashoffset: 480;
stroke: #fb5252;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
.playbutton:hover .triangle {
stroke-dashoffset: 0;
opacity: 1;
stroke: #fb5252; }
.section-head h2 {
position: relative;
margin-bottom: 18px; }
.section-head h2::before {
content: attr(data-title);
position: absolute;
left: -7px;
font-weight: bolder;
text-transform: uppercase;
font-size: 120px;
top: -70px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 1px rgba(228, 195, 195, 0.5);
-webkit-text-fill-color: transparent; }
.section-head-two p {
font-weight: 600;
position: relative;
padding-left: 10px;
margin-bottom: 5px; }
.section-head-two p:before {
content: "";
width: 2px;
height: 90%;
background-color: #fb5252;
position: absolute;
left: 0;
top: 5%; }
.section-head-three p {
text-transform: uppercase;
margin-bottom: 0; }
.section-head-three h2 {
font-weight: 500; }
.section-head-four p {
text-transform: uppercase;
margin-bottom: 0; }
.section-head-five h2 {
position: relative;
line-height: 55px; }
.section-head-five h2:before {
content: "&";
font-size: 115px;
color: #fb5252;
font-weight: 400;
position: absolute;
z-index: -1;
top: 30px;
opacity: .3; }
.section-head-five h2 span {
display: block;
text-transform: uppercase; }
/*
========================================
02 - Header & Footer
========================================
*/
#header {
position: relative;
z-index: 99; }
#header-bottom, #header-bottom-two {
position: absolute;
width: 100%;
left: 0;
top: 0;
z-index: 99;
padding: 20px; }
#header-bottom.sticky, #header-bottom-two.sticky {
position: fixed;
top: 0;
bottom: auto;
z-index: 999;
width: 100%;
background: #fff;
-webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.22);
padding: 0;
border-bottom: 0; }
.menuzord {
background: transparent;
padding: 0; }
.top-bar {
padding: 15px 0; }
.menuzord-menu ul.dropdown, .menuzord-menu ul.dropdown li ul.dropdown {
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05); }
.menuzord-menu ul.dropdown {
border-radius: 0 0 5px 5px;
border-top: 3px solid #fb5252; }
.menuzord-menu ul.dropdown li:hover > a {
color: #343851;
background: #fafafa; }
.menuzord-menu ul.dropdown li a {
border-bottom: 1px solid #ededed; }
.menuzord-menu ul.dropdown li:last-child a {
border-bottom: 0;
border-radius: 0 0 5px 5px; }
.menuzord-brand img {
max-width: 160px;
height: auto; }
.menuzord-menu ul.dropdown li:hover > a {
color: #fb5252; }
.menuzord-menu li .indicator, .menuzord-menu li ul.dropdown li .indicator {
font-size: 16px;
font-family: serif; }
.menuzord-menu li .indicator {
margin-left: 4px; }
.menuzord-menu > li > a > i {
top: 4px; }
.header-layout-one#header {
position: absolute;
left: 0;
top: 0;
width: 100%; }
.header-layout-one .menuzord {
background: transparent; }
.header-layout-one .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-one .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-one .top-bar li {
color: #fff; }
.header-layout-one .top-bar li > i {
color: #fb5252;
padding-right: 4px; }
.header-layout-one .top-bar a {
color: #fff; }
.header-layout-one .top-bar a:hover {
color: #fb5252; }
.header-layout-one .top-bar .top-social li:not(:last-child) {
padding-right: 8px; }
.header-layout-one .header-middle {
margin-top: 65px;
position: relative; }
.header-layout-one .header-middle:before {
content: "RealEstate";
font-weight: 800;
text-transform: uppercase;
font-size: 150px;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -75px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
-webkit-text-fill-color: transparent; }
.header-layout-one .text-hidden {
position: relative;
margin-left: -10px;
opacity: 0; }
.header-layout-one #header-bottom-two {
top: 145px; }
.header-layout-one #header-bottom-two .menuzord {
padding: 0; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a {
color: #fff;
padding: 26px 15px;
font-weight: 500; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a i {
color: #fb5252;
padding-right: 5px; }
.header-layout-one #header-bottom-two .menuzord-menu > li > a:hover {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right {
float: none;
text-align: center; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right > li {
float: none; }
.header-layout-one #header-bottom-two .menuzord-menu.menuzord-right .dropdown {
text-align: left; }
.header-layout-one #header-bottom-two.sticky {
background: #141635;
top: 0; }
.header-layout-one #header-bottom-two.sticky .hide-normal {
display: inline-block; }
.header-layout-one #header-bottom-two.sticky .col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.header-layout-one #header-bottom-two.sticky .menuzord-menu.menuzord-right {
float: right;
text-align: center; }
.header-layout-one #header-bottom-two.sticky .menuzord-menu.menuzord-right > li {
float: left; }
.header-layout-two .container {
max-width: 1600px; }
.header-layout-two .menuzord {
padding: 0; }
.header-layout-two .menuzord-menu > li > a {
color: #fff;
padding: 26px 15px;
font-weight: 600; }
.header-layout-two .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-two .list-inline li:not(:last-child) {
margin-right: 20px; }
.header-layout-two .list-inline li a {
color: #757c8c;
font-weight: 600; }
.header-layout-two .list-inline li a i {
color: #fb5252;
padding-right: 4px; }
.header-layout-two .list-inline li a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 10px 30px;
border-radius: 5px; }
.header-layout-two .list-inline li a.cta-button:hover {
color: #fff; }
.header-layout-two #header-bottom.sticky {
background: #141635; }
.header-layout-two #header-bottom.sticky .list-inline li a {
color: #fff; }
.header-layout-three .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-three .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-three .top-bar li {
color: #fff; }
.header-layout-three .top-bar a {
color: #fff; }
.header-layout-three .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-three .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-three .top-bar .dropdown a.btn:hover, .header-layout-three .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-three .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-three .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-three .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-three .menuzord-menu > li > a {
color: #343851;
padding: 26px 15px;
font-weight: 500; }
.header-layout-three .menuzord-menu > li > a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
margin-top: 13px; }
.header-layout-three .menuzord-menu > li > a.cta-button:hover {
color: #fff; }
.header-layout-three .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-three .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-three #header-bottom {
top: 50px; }
.header-layout-three #header-bottom.sticky {
top: 0; }
.header-layout-three .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-three .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-three .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-four .menuzord-brand {
margin: 18px 10px 0 0; }
.header-layout-four .menu-middle {
display: inline-block;
margin: 26px 0;
position: relative;
left: 150px;
font-weight: 600; }
.header-layout-four .menu-middle .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-four .menu-middle .dropdown a.btn:hover, .header-layout-four .menu-middle .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-four .menu-middle .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-four .menu-middle .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-four .menu-middle .dropdown-toggle::after {
display: none; }
.header-layout-four .menu-middle .dropdown-menu {
background: #f9f9f9; }
.header-layout-four .menu-middle .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-four .menu-middle .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-four .menuzord-menu > li > a {
color: #fff;
padding: 28px 15px;
font-weight: 600; }
.header-layout-four .menuzord-menu > li > a.cta-button {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
margin-top: 13px; }
.header-layout-four .menuzord-menu > li > a.cta-button:hover {
color: #fff; }
.header-layout-four .header-left {
background: #151926;
position: absolute;
left: -400px;
top: 0;
min-height: 1020px;
padding-top: 180px;
width: 285px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.header-layout-four .header-left .button-sidebar {
position: absolute;
bottom: 60px;
left: 35px;
border: 2px solid rgba(255, 255, 255, 0.3);
text-transform: uppercase;
color: #fff;
padding: 14px 40px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
border-radius: 5px; }
.header-layout-four .header-left .button-sidebar:hover {
background: #fb5252;
border-color: #fb5252; }
.header-layout-four .header-left .close-button {
width: 25px;
height: 25px;
background: #fb5252;
color: #fff;
position: absolute;
right: 0;
bottom: 0; }
.header-layout-four .header-left .close-button:before {
content: "";
width: 12px;
height: 2px;
background: #fff;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.header-layout-four #header-bottom.sticky {
top: 0;
background: #151926; }
.header-layout-four .social-links {
text-align: center; }
.header-layout-four .social-links li a {
color: #fff;
text-transform: uppercase;
display: inline-block; }
.header-layout-four .social-links li a:hover i {
background: #fb5252;
border-color: #fb5252; }
.header-layout-four .social-links li i {
display: block;
width: 55px;
height: 55px;
text-align: center;
line-height: 55px;
margin: 0 auto 10px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.header-layout-four .social-links li:not(:last-child) {
padding-bottom: 70px; }
.header-layout-five .top-bar {
padding: 0; }
.header-layout-five .top-bar .cta-button {
background: rgba(0, 0, 0, 0.1);
padding: 15px 40px;
display: inline-block; }
.header-layout-five .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-five .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-five .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-five .menuzord-brand {
margin-top: 16px; }
.header-layout-five #header-bottom {
background: #fff;
padding: 0;
top: 56px; }
.header-layout-six .container-fluid {
max-width: 1650px; }
.header-layout-six .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-six .top-bar {
border-bottom: 1px solid rgba(234, 234, 234, 0.5); }
.header-layout-six .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-six .top-bar .list-inline a {
color: #757c8c; }
.header-layout-six .top-bar .list-inline i {
color: #fb5252; }
.header-layout-six .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0;
color: #757c8c; }
.header-layout-six .top-bar .dropdown a.btn:hover, .header-layout-six .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-six .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-six .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-six .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-six .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-six .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-six .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-six .menu-middle {
display: inline-block;
margin: 20px 0;
position: relative;
left: 70px;
max-width: 480px;
width: 30%; }
.header-layout-six .menu-middle form {
position: relative; }
.header-layout-six .menu-middle input {
width: 100%;
border: 1px solid #eaeaea;
padding: 11px 25px;
border-radius: 5px; }
.header-layout-six .menu-middle button {
position: absolute;
right: 15px;
top: 11px;
background: transparent;
color: #fb5252; }
.header-layout-six .menuzord {
padding: 0; }
.header-layout-six .menuzord-menu > li > a {
padding-top: 34px;
padding-bottom: 44px;
color: #343851;
font-weight: 500; }
.header-layout-six .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 30px;
padding-right: 0; }
.header-layout-six .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-six .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-six #header-bottom {
background: #fff;
padding: 10px 0 0;
top: 57px; }
.header-layout-six #header-bottom.sticky {
top: 0; }
.header-layout-seven .container-fluid {
max-width: 1650px; }
.header-layout-seven .menuzord {
padding: 0; }
.header-layout-seven .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-seven .menuzord-menu > li > a {
padding-top: 34px;
padding-bottom: 34px;
color: #fff;
font-weight: 600; }
.header-layout-seven .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 30px; }
.header-layout-seven .menu-middle {
display: inline-block;
margin: 20px 0;
position: relative;
left: 70px;
max-width: 480px;
width: 30%; }
.header-layout-seven .menu-middle form {
position: relative; }
.header-layout-seven .menu-middle input {
width: 100%;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 11px 25px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.05); }
.header-layout-seven .menu-middle button {
position: absolute;
right: 15px;
top: 11px;
background: transparent;
color: #fff; }
.header-layout-seven #header-bottom.sticky {
background: #24262d; }
.header-layout-eight .menuzord-brand, .header-layout-nine .menuzord-brand {
margin: 22px 10px 0 0; }
.header-layout-eight .top-bar, .header-layout-nine .top-bar {
border-bottom: 1px solid rgba(227, 227, 227, 0.1); }
.header-layout-eight .top-bar li, .header-layout-nine .top-bar li {
color: #fff; }
.header-layout-eight .top-bar a, .header-layout-nine .top-bar a {
color: #fff; }
.header-layout-eight .top-bar .list-inline li:not(:last-child), .header-layout-nine .top-bar .list-inline li:not(:last-child) {
padding-right: 8px; }
.header-layout-eight .top-bar .dropdown a.btn, .header-layout-nine .top-bar .dropdown a.btn {
background: transparent;
border: 0;
padding: 0; }
.header-layout-eight .top-bar .dropdown a.btn:hover, .header-layout-eight .top-bar .dropdown a.btn:focus, .header-layout-nine .top-bar .dropdown a.btn:hover, .header-layout-nine .top-bar .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.header-layout-eight .top-bar .dropdown .dropdown-toggle:before, .header-layout-nine .top-bar .dropdown .dropdown-toggle:before {
display: inline-block;
margin-right: .255em;
vertical-align: .155em;
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fff #fff transparent;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.header-layout-eight .top-bar .dropdown .dropdown-menu a, .header-layout-nine .top-bar .dropdown .dropdown-menu a {
color: #757c8c; }
.header-layout-eight .top-bar .dropdown-toggle::after, .header-layout-nine .top-bar .dropdown-toggle::after {
display: none; }
.header-layout-eight .top-bar .dropdown-menu, .header-layout-nine .top-bar .dropdown-menu {
background: #f9f9f9; }
.header-layout-eight .top-bar .dropdown img, .header-layout-nine .top-bar .dropdown img {
width: 20px;
margin-left: 10px;
margin-right: 0; }
.header-layout-eight .top-bar .dropdown .dropdown-menu img, .header-layout-nine .top-bar .dropdown .dropdown-menu img {
margin-right: 10px;
margin-left: 0;
position: relative;
top: -1px; }
.header-layout-eight .menuzord-menu > li > a, .header-layout-nine .menuzord-menu > li > a {
color: #343851;
padding: 34px 15px;
font-weight: 600; }
.header-layout-eight .menuzord-menu > li > a.open-canvas, .header-layout-nine .menuzord-menu > li > a.open-canvas {
padding-top: 30px;
padding-bottom: 20px; }
.header-layout-eight .menuzord-menu > li.active > a, .header-layout-nine .menuzord-menu > li.active > a {
color: #fb5252; }
.header-layout-eight .menuzord-menu > li:hover > a, .header-layout-nine .menuzord-menu > li:hover > a {
color: #fb5252; }
.header-layout-eight #header-bottom, .header-layout-nine #header-bottom {
background: #fff;
padding: 0;
border-bottom: 1px solid #ededed;
top: 56px; }
.header-layout-eight #header-bottom.sticky, .header-layout-nine #header-bottom.sticky {
top: 0; }
.header-layout-nine .menuzord-menu > li > a {
font-weight: 500;
border-bottom: 0; }
.header-layout-nine #header-bottom {
border-bottom: 0;
-webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.05);
box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.05); }
.search-overlay {
width: 100%;
height: 100%;
position: fixed;
background: #fff;
left: 0;
top: 0;
display: none;
z-index: 999; }
.overlay-innar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
width: 100%;
height: 100%; }
.search-overlay .search-social {
position: absolute;
bottom: 50px; }
.search-overlay .search-social li {
display: inline-block;
padding: 0 10px; }
.search-overlay .search-social li a {
font-size: 18px;
color: #4969a8; }
.search-overlay .search-social li a.color-twitter {
color: #2aa3ef; }
.search-overlay .search-social li a.color-dribbble {
color: #ea4c89; }
.search-overlay .search-social li a.color-youtube {
color: #ff0000; }
.search-overlay .search-social li a.color-pinterest {
color: #d73532; }
.search-overlay .search-social li a:hover {
color: #fb5252; }
.search-overlay .search-form-overlay {
width: 50%; }
.search-overlay .search-form-overlay input {
width: 100%;
border: 0;
border-bottom: 2px solid rgba(0, 0, 0, 0.08);
font-size: 24px;
padding: 20px;
text-align: center;
color: #343851; }
.search-overlay .search-form-overlay input:focus {
border-color: #343851; }
.search-overlay .search-form-overlay input::-webkit-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input:-ms-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input::-ms-input-placeholder {
color: #343851; }
.search-overlay .search-form-overlay input::placeholder {
color: #343851; }
.search-overlay .close-overlay {
float: right;
margin-bottom: 50px;
font-size: 40px;
border: 0;
background: transparent;
outline: 0; }
.sidenav {
min-height: 100vh;
height: 100%;
width: 100%;
position: fixed;
z-index: 1000;
top: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
overflow: hidden;
display: none; }
.sidenav-menu {
padding: 130px 30px 0 !important;
width: 350px;
right: -350px;
position: relative;
height: 100%;
float: right;
background: #fff;
text-align: left;
overflow: hidden;
-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out; }
.sidenav-menu .social li {
display: inline-block;
padding: 0 5px; }
.sidenav-menu li {
padding: 5px 0; }
.sidenav-menu li a {
width: 40px;
height: 40px;
border-radius: 50%;
background: #fff;
color: #4969a8;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07);
box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07); }
.sidenav-menu li a:hover {
color: #fff !important;
background: #4969a8; }
.sidenav-menu li a.color-twitter {
color: #2aa3ef; }
.sidenav-menu li a.color-twitter:hover {
background: #2aa3ef; }
.sidenav-menu li a.color-dribbble {
color: #ea4c89; }
.sidenav-menu li a.color-dribbble:hover {
background: #ea4c89; }
.sidenav-menu li a.color-youtube {
color: #ff0000; }
.sidenav-menu li a.color-youtube:hover {
background: #ff0000; }
.sidenav-menu li a:hover {
color: #fb5252; }
.sidenav .closebtn {
position: absolute;
top: 25px;
left: 25px;
font-size: 18px;
z-index: 1;
width: 50px;
height: 50px;
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: #fb5252;
color: #fff;
border-radius: 50%; }
.sidenav h5 {
font-weight: 600; }
.sidenav-list .info-list {
color: #757c8c; }
.sidenav-list .info-list .icon {
margin-right: 15px;
color: #343851; }
.sidenav-list .info-list p {
margin-bottom: 10px;
line-height: 1.4; }
.sidenav-list .social {
padding-top: 30px; }
.footer-layout-one {
padding: 100px 0 0;
background: url("../img/footer-bg.png") no-repeat;
background-size: cover;
background-position: center bottom; }
.footer-layout-one .footer-widget h4 {
margin-bottom: 30px; }
.footer-layout-one .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-one .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-one .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-one .footer-widget .list-footer a {
color: #757c8c;
position: relative; }
.footer-layout-one .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-one .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-one .footer-widget .list-footer a:hover::before {
opacity: 1; }
.footer-layout-one .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2); }
.footer-layout-one .footer-top .container {
padding-bottom: 100px;
border-bottom: 1px solid rgba(52, 56, 81, 0.15); }
.footer-layout-one .footer-bottom {
padding: 20px 0; }
.footer-layout-one .footer-bottom .container {
padding: 0; }
.footer-layout-one .footer-bottom li:not(:last-child) {
padding-right: 8px; }
.footer-layout-one .footer-bottom li a {
color: #757c8c;
position: relative; }
.footer-layout-one .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-one .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-one .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-one .footer-bottom a {
color: #fb5252; }
.footer-layout-two {
padding-top: 80px;
background: #1a2d39; }
.footer-layout-two .footer-top {
padding: 100px 0; }
.footer-layout-two .footer-top h4, .footer-layout-two .footer-top h6, .footer-layout-two .footer-top p {
color: #fff; }
.footer-layout-two .footer-top .international-sites {
padding-top: 10px; }
.footer-layout-two .footer-top .footer-widget h4 {
margin-bottom: 30px; }
.footer-layout-two .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-two .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-two .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-two .footer-top .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-two .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-two .footer-top .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-two .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-two .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2); }
.footer-layout-two .footer-bottom {
background: #172833;
padding: 20px 0; }
.footer-layout-two .footer-bottom p {
color: #fff; }
.footer-layout-two .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-two .footer-bottom li a {
color: #fff; }
.footer-layout-two .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-two .footer-bottom a {
color: #fb5252; }
.footer-layout-two .footer-form input {
width: 60%;
border: 0;
background: #fff;
border-radius: 5px;
padding: 16px 25px; }
.footer-layout-two .footer-form button {
width: 35%;
float: right;
background: #fb5252;
border: 0;
padding: 16px 10px;
text-align: center;
color: #fff;
border-radius: 5px;
font-weight: 600; }
.footer-layout-two .international-sites {
margin-top: 20px; }
.footer-layout-two .international-sites li {
color: #fff; }
.footer-layout-two .international-sites li a {
color: #fff;
position: relative; }
.footer-layout-two .international-sites li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-two .international-sites li a:hover {
color: #fb5252; }
.footer-layout-two .international-sites li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-top {
padding: 120px 0 100px; }
.footer-layout-three .footer-top .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-three .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-three .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-three .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-three .footer-top .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-three .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-top .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-three .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-three .footer-top .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-three .footer-top .footer-widget .list-address li {
color: #fff; }
.footer-layout-three .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
max-width: 100%; }
.footer-layout-three .footer-top .list-inline a {
color: #ffff; }
.footer-layout-three .footer-top .list-inline a:hover {
color: #fb5252; }
.footer-layout-three .footer-top .footer-social li:not(:last-child) {
padding-right: 8px; }
.footer-layout-three .footer-top .footer-form input, .footer-layout-three .footer-top .footer-form textarea {
border: 1px solid rgba(221, 221, 221, 0.1);
background: transparent;
color: #fff;
padding: 12px 20px;
margin-bottom: 8px;
width: 100%; }
.footer-layout-three .footer-top .footer-form input::-webkit-input-placeholder, .footer-layout-three .footer-top .footer-form textarea::-webkit-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input:-ms-input-placeholder, .footer-layout-three .footer-top .footer-form textarea:-ms-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input::-ms-input-placeholder, .footer-layout-three .footer-top .footer-form textarea::-ms-input-placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input::placeholder, .footer-layout-three .footer-top .footer-form textarea::placeholder {
color: #fff; }
.footer-layout-three .footer-top .footer-form input:focus, .footer-layout-three .footer-top .footer-form textarea:focus {
border-color: #fff; }
.footer-layout-three .footer-top .footer-form textarea {
min-height: 100px;
margin-bottom: 4px; }
.footer-layout-three .footer-top .footer-form button {
background: #fb5252;
padding: 14px 20px;
text-align: center;
font-weight: 600;
color: #fff;
width: 100%; }
.footer-layout-three .footer-top .international-sites {
margin-top: 20px; }
.footer-layout-three .footer-top .international-sites li {
color: #fff; }
.footer-layout-three .footer-top .international-sites li a {
position: relative; }
.footer-layout-three .footer-top .international-sites li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-top .international-sites li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-bottom {
padding: 20px 0; }
.footer-layout-three .footer-bottom p {
color: #fff; }
.footer-layout-three .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-three .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-three .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-three .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-three .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-three .footer-bottom a {
color: #fb5252; }
.footer-layout-four {
padding-top: 100px; }
.footer-layout-four .footer-top {
padding-bottom: 100px; }
.footer-layout-four .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-four .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-four .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-four .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-four .footer-widget .list-footer a {
color: #fff;
position: relative; }
.footer-layout-four .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-four .footer-widget .list-footer a:hover {
color: #fb5252; }
.footer-layout-four .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-four .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-four .footer-widget .list-address li {
color: #fff; }
.footer-layout-four .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
max-width: 100%; }
.footer-layout-four .footer-widget .author .img {
margin-right: 20px; }
.footer-layout-four .footer-widget .author .img img {
border: 3px solid #fff; }
.footer-layout-four .footer-widget .author h6 {
padding-bottom: 4px; }
.footer-layout-four .col-md-6.dark-bg {
-webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.22);
box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.22); }
.footer-layout-four .footer-subscribe {
padding: 35px; }
.footer-layout-four .footer-subscribe h4 {
margin-bottom: 10px;
font-size: 22px; }
.footer-layout-four .footer-subscribe p {
margin-bottom: 50px; }
.footer-layout-four .footer-subscribe form {
position: relative; }
.footer-layout-four .footer-subscribe input {
background: transparent;
border: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
padding: 15px 0;
width: 100%; }
.footer-layout-four .footer-subscribe input::-webkit-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input:-ms-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input::-ms-input-placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe input::placeholder {
color: #fff; }
.footer-layout-four .footer-subscribe button {
color: #fb5252;
background: transparent;
border: 0;
position: absolute;
right: 0;
bottom: 10px; }
.footer-layout-four .footer-bottom {
padding: 20px 0; }
.footer-layout-four .footer-bottom p {
color: #fff; }
.footer-layout-four .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-four .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-four .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-four .footer-bottom a {
color: #fb5252; }
.footer-layout-five {
padding-top: 120px;
background: #14232c; }
.footer-layout-five .footer-top {
padding-bottom: 100px; }
.footer-layout-five .footer-widget h4 {
margin-bottom: 30px;
font-weight: 500;
color: #fff; }
.footer-layout-five .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-five .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-five .footer-widget .list-footer a {
color: #a6adbc;
position: relative; }
.footer-layout-five .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fff;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-five .footer-widget .list-footer a:hover {
color: #fff; }
.footer-layout-five .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-five .footer-widget .footer-logo {
margin-bottom: 40px;
display: inline-block; }
.footer-layout-five .footer-widget .footer-social a {
margin-bottom: 20px;
display: inline-block;
color: #a6adbc; }
.footer-layout-five .footer-widget .footer-social a:hover {
color: #fff; }
.footer-layout-five .footer-form input, .footer-layout-five .footer-form textarea {
border: 1px solid rgba(221, 221, 221, 0.1);
background: transparent;
color: #fff;
padding: 12px 20px;
margin-bottom: 8px;
width: 100%; }
.footer-layout-five .footer-form input::-webkit-input-placeholder, .footer-layout-five .footer-form textarea::-webkit-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input:-ms-input-placeholder, .footer-layout-five .footer-form textarea:-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input::-ms-input-placeholder, .footer-layout-five .footer-form textarea::-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input::placeholder, .footer-layout-five .footer-form textarea::placeholder {
color: #a6adbc; }
.footer-layout-five .footer-form input:focus, .footer-layout-five .footer-form textarea:focus {
border-color: #fff; }
.footer-layout-five .footer-form textarea {
min-height: 100px;
margin-bottom: 4px; }
.footer-layout-five .footer-form button {
background: #fb5252;
padding: 14px 20px;
text-align: center;
font-weight: 600;
color: #fff;
width: 100%; }
.footer-layout-five .footer-bottom {
background: #142129;
padding: 20px 0; }
.footer-layout-five .footer-bottom p {
color: #fff; }
.footer-layout-five .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-five .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-five .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-five .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-five .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-five .footer-bottom a {
color: #fb5252; }
.footer-layout-five .footer-bottom .bottom-social li a:before {
display: none; }
.footer-layout-eight {
background: #1a191e;
padding: 120px 0 0; }
.footer-layout-eight .footer-top {
padding-bottom: 100px; }
.footer-layout-eight .footer-top .footer-widget h4 {
margin-bottom: 30px;
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .lists > ul {
width: 50%;
float: left; }
.footer-layout-eight .footer-top .footer-widget .list-footer li {
padding-bottom: 14px; }
.footer-layout-eight .footer-top .footer-widget .list-footer li:last-child {
padding-bottom: 0; }
.footer-layout-eight .footer-top .footer-widget .list-footer a {
color: #a6adbc;
position: relative; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:before {
content: "";
width: 100%;
height: 1px;
background: #fff;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:hover {
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .list-footer a:hover:before {
opacity: 1; }
.footer-layout-eight .footer-top .footer-widget .list-address {
padding: 20px 0; }
.footer-layout-eight .footer-top .footer-widget .list-address li {
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .map-image #map-footer {
border: 7px solid #fff;
-webkit-box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
box-shadow: 0px 0px 90px 0px rgba(111, 120, 142, 0.2);
width: 100%; }
.footer-layout-eight .footer-top .footer-widget .footer-form p {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form form {
position: relative;
margin-bottom: 25px; }
.footer-layout-eight .footer-top .footer-widget .footer-form input {
border: 0;
background: transparent;
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
width: 100%;
padding: 12px;
color: #fff; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::-webkit-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input:-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::-ms-input-placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input::placeholder {
color: #a6adbc; }
.footer-layout-eight .footer-top .footer-widget .footer-form input:focus {
border-color: #fff; }
.footer-layout-eight .footer-top .footer-widget .footer-form button {
position: absolute;
right: 5px;
top: 12px;
background: transparent;
font-weight: 600;
color: #fff; }
.footer-layout-eight .footer-bottom .container {
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.2); }
.footer-layout-eight .footer-bottom p {
color: #fff; }
.footer-layout-eight .footer-bottom li:not(:last-child) {
padding-right: 10px; }
.footer-layout-eight .footer-bottom li a {
color: #fff;
position: relative; }
.footer-layout-eight .footer-bottom li a:before {
content: "";
width: 100%;
height: 1px;
background: #fb5252;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.footer-layout-eight .footer-bottom li a:hover {
color: #fb5252; }
.footer-layout-eight .footer-bottom li a:hover:before {
opacity: 1; }
.footer-layout-eight .footer-bottom a {
color: #fb5252; }
/*
========================================
03 - Hero & Slider Style
========================================
*/
.hero-layout-one {
position: relative;
padding-top: 150px;
padding-bottom: 100px;
height: 1250px;
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; }
.hero-layout-one:before {
content: "";
background: url("../img/header-1.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1270px;
z-index: -1;
position: absolute;
left: 0;
top: 0; }
.hero-layout-one h1 {
color: #fff; }
.hero-layout-two {
margin-top: 90px; }
.hero-layout-two .animated {
position: relative;
-webkit-transition: all 1s ease-in-out 0s;
-o-transition: all 1s ease-in-out 0s;
transition: all 1s ease-in-out 0s;
-webkit-transform: translateY(25px);
-ms-transform: translateY(25px);
transform: translateY(25px); }
.hero-layout-two .col-md-8 {
padding-right: 80px; }
.hero-layout-two .col-md-8 h1, .hero-layout-two .col-md-8 p {
color: #fff; }
.hero-layout-two .col-md-8 p {
padding: 10px 0; }
.hero-layout-two h1 {
font-size: 4em; }
.hero-layout-two .slider-item.slick-active .animated {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
.hero-layout-two .slider-item {
position: relative; }
.hero-layout-two .slider-item .slider-content {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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: rgba(0, 0, 0, 0.4); }
.hero-layout-two .property-item {
position: relative;
background: #fff; }
.hero-layout-two .property-item .feature-tag {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 4px 20px;
border-radius: 3px; }
.hero-layout-two .property-item .content-top {
padding: 25px 30px; }
.hero-layout-two .property-item .content-top h4 {
font-size: 20px;
margin-bottom: 15px;
padding-top: 10px; }
.hero-layout-two .property-item .content-top h4 a {
color: #343851; }
.hero-layout-two .property-item .content-top i {
padding-right: 5px; }
.hero-layout-two .property-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.hero-layout-two .property-item .content-middle i {
color: #fb5252; }
.hero-layout-two .property-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.hero-layout-two .property-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.hero-layout-two .property-item .content-middle .favorite-feature i {
line-height: 31px; }
.hero-layout-two .property-item .content-middle strong {
font-weight: 500; }
.hero-layout-two .property-item .footer-content {
padding: 25px 30px;
overflow: hidden; }
.hero-layout-two .property-item .footer-content .img {
margin-right: 8px; }
.hero-layout-two .property-item .footer-content .author {
float: left; }
.hero-layout-two .property-item .footer-content .right-content {
float: right; }
.hero-layout-two .property-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 16px; }
.hero-layout-two .property-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
text-indent: -9999px;
display: inline-block; }
.hero-layout-two .property-item .footer-content .right-content a span::before, .hero-layout-two .property-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.hero-layout-two .property-item .footer-content .right-content a span:before {
top: -10px; }
.hero-layout-two .property-item .footer-content .right-content a span:after {
bottom: -10px; }
.hero-layout-two .property-item .footer-content .right-content a.active span, .hero-layout-two .property-item .footer-content .right-content a.active span:before, .hero-layout-two .property-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.hero-layout-two .property-item .icon-group {
position: absolute;
right: 20px;
top: -2px; }
.hero-layout-two .property-item .icon-group li a {
width: 20px;
color: #fff;
font-size: 12px;
height: 30px;
background: #fb5252;
color: #fff;
line-height: 25px;
display: inline-block;
text-align: center;
position: relative; }
.hero-layout-two .property-item .icon-group li a:before {
content: "";
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #fff;
position: absolute;
left: 5px;
bottom: -5px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.hero-layout-two .property-item .icon-group li a.blue-bolt {
background: #0075ff; }
.hero-layout-two .property-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.hero-layout-two .property-item .house-feature li {
position: relative;
padding-left: 12px; }
.hero-layout-two .property-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.hero-layout-two .property-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.hero-layout-two .slick-arrow {
background: rgba(0, 0, 0, 0.5);
color: #fff;
width: 60px;
height: 70px;
border-radius: 3px;
line-height: 70px;
text-align: center;
font-size: 28px;
display: inline-block !important;
position: absolute;
top: 50%;
margin-top: -35px;
z-index: 9;
font-weight: bold;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.hero-layout-two .slick-arrow.flaticon-left {
left: 0; }
.hero-layout-two .slick-arrow.flaticon-right {
right: 0; }
.hero-layout-two .slick-arrow:hover {
background: #fb5252;
color: #fff; }
.hero-layout-three {
padding-top: 50px;
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x1030/eee/000");
background-repeat: no-repeat;
background-size: cover;
overflow: hidden; }
.hero-layout-three .container {
position: relative; }
.hero-layout-three .container .row {
min-height: 950px; }
.hero-layout-three p {
font-size: 18px;
margin-bottom: 50px;
color: #343851; }
.hero-layout-three h4 {
text-transform: uppercase; }
.hero-layout-three h1 {
font-size: 4.1em;
margin-bottom: 30px; }
.hero-layout-three .button-group a:first-child {
margin-right: 25px; }
.hero-layout-three .img-hero {
position: absolute;
right: -100px;
bottom: -50px; }
.hero-layout-four {
position: relative; }
.hero-layout-four .hero-slider {
position: relative; }
.hero-layout-four .hero-slider img {
min-height: 1020px; }
.hero-layout-four .hero-content {
position: absolute;
height: 100%;
width: 100%;
z-index: 10;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.5); }
.hero-layout-four .hero-content h1, .hero-layout-four .hero-content p, .hero-layout-four .hero-content h6, .hero-layout-four .hero-content i {
color: #fff; }
.hero-layout-four .hero-content h1 {
font-size: 5.8em;
text-transform: uppercase;
margin-bottom: 40px; }
.hero-layout-four .hero-content .container {
position: relative;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.hero-layout-four .hero-content .container > p {
font-size: 22px;
font-weight: 600;
text-transform: uppercase; }
.hero-layout-four .hero-content .content-flexible {
position: absolute;
bottom: 50px;
left: 30px; }
.hero-layout-four .hero-content .content-flexible .icon {
font-size: 45px;
line-height: 1;
margin-right: 20px; }
.hero-layout-four .hero-content .content-flexible h6 {
line-height: 1; }
.hero-layout-four .slick-dots {
bottom: 55px;
text-align: right;
max-width: 1260px;
z-index: 15;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.hero-layout-four .slick-dots li {
width: 20px;
height: 20px; }
.hero-layout-four .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.hero-layout-four .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.hero-layout-four .slick-dots li button:before {
display: none; }
.hero-layout-four .open-button {
width: 25px;
height: 25px;
background: #fb5252;
color: #fff;
position: absolute;
left: 0;
bottom: 0; }
.hero-layout-four .open-button:before {
content: "";
width: 12px;
height: 2px;
background: #fff;
position: absolute;
left: 49%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.hero-layout-four .open-button:after {
content: "";
width: 2px;
height: 12px;
background: #fff;
position: absolute;
left: 49%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.hero-layout-five {
position: relative; }
.hero-layout-five .hero-content {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding-top: 70px;
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; }
.hero-layout-five .hero-left h4 {
text-transform: uppercase;
margin-bottom: 20px;
font-weight: bold; }
.hero-layout-five .hero-left h4 i {
padding-right: 10px; }
.hero-layout-five .hero-left h1 {
margin-bottom: 30px; }
.hero-layout-five .hero-left p.lead {
font-weight: 500;
margin-bottom: 60px; }
.hero-layout-five .hero-form {
background: #fff;
margin-left: 60px;
padding: 30px 30px 40px;
border-radius: 5px; }
.hero-layout-five .hero-form h3 {
margin-bottom: 20px; }
.hero-layout-five .hero-form input, .hero-layout-five .hero-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #ddd;
margin-bottom: 20px; }
.hero-layout-five .hero-form input:focus, .hero-layout-five .hero-form textarea:focus {
border-color: #fb5252; }
.hero-layout-five .hero-form textarea {
min-height: 100px;
margin-bottom: 15px; }
.hero-layout-five .hero-form button {
padding: 14px 15px;
text-align: center;
background: #fb5252;
color: #fff;
width: 100%;
border-radius: 3px; }
.hero-layout-six {
position: relative;
padding-top: 220px;
background: url("https://via.placeholder.com/1920x1060/eee/999") no-repeat;
background-size: cover;
min-height: 1060px; }
.hero-layout-six .search-layout-two .search-layout {
-webkit-box-shadow: unset;
box-shadow: unset; }
.hero-layout-six h1 {
font-size: 50px;
font-weight: 500; }
.hero-layout-seven {
position: relative;
padding-top: 220px;
background: url("../img/header-5.png") no-repeat;
background-size: cover;
min-height: 1100px; }
.hero-layout-seven .container-fluid {
max-width: 1500px;
position: relative;
min-height: 750px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.hero-layout-seven .container-fluid > .row {
width: 100%; }
.hero-layout-seven .background-shape-two {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.hero-layout-seven .background-shape-two .bg-shape {
position: absolute; }
.hero-layout-seven .background-shape-two .bg-shape:nth-child(1) {
left: 150px;
top: 350px; }
.hero-layout-seven .background-shape-two .bg-shape:nth-child(2) {
right: 520px;
bottom: 110px; }
.hero-layout-seven .hero-social {
position: absolute;
bottom: 0;
left: 0;
width: 100%; }
.hero-layout-seven .hero-social li:not(:last-child) {
padding-right: 10px; }
.hero-layout-seven .hero-social a {
color: #fff; }
.hero-layout-seven h1 {
font-size: 4.1em;
margin-bottom: 45px; }
.hero-layout-seven p {
margin-bottom: 50px; }
.hero-layout-seven .hero-slider-two {
position: absolute;
right: 0;
top: 0;
width: 950px;
width: 825px;
border-radius: 50%; }
.hero-layout-seven .hero-slider-two .hover {
position: absolute;
left: 52%;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%); }
.hero-layout-seven .hero-slider-two .hover .play-button {
background: #fb5252;
color: #fff;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 34px;
display: block;
border-radius: 50%;
position: relative; }
.hero-layout-seven .hero-slider-two .hover .play-button i {
position: relative;
z-index: 2; }
.hero-layout-seven .hero-slider-two .hover .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
opacity: .4;
position: absolute;
left: -12px;
top: -12px;
border-radius: 50%; }
.hero-layout-seven .hero-navigation {
max-width: 525px;
position: absolute;
right: 30px;
bottom: 30px; }
.hero-layout-seven .hero-navigation .hero-nav-item {
margin: 0 5px; }
.hero-layout-seven .hero-navigation .hero-nav-item img {
width: 100%;
border: 4px solid #29374f;
border-radius: 10px;
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
cursor: pointer; }
.hero-layout-seven .hero-navigation .hero-nav-item.slick-current img {
border-color: #fff; }
.innar-hero .list-inline a {
color: #757c8c; }
.innar-hero .list-inline a:hover {
color: #fb5252; }
.innar-hero .list-inline li {
margin-right: 2px;
color: #aaa; }
.innar-hero .list-inline i {
font-size: 10px; }
/*
========================================
04 - Featured Section
========================================
*/
.feature-layout-one {
position: relative;
overflow: hidden; }
.feature-layout-one:before {
content: "";
width: 100%;
height: 80%;
background: #f2f6f9;
z-index: -1;
position: absolute;
left: 0;
bottom: 0;
-webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%); }
.feature-layout-one .featured-tt {
padding: 0 15px 15px; }
.feature-layout-one .sale-carousel, .feature-layout-one .rent-carousel {
margin: 0 -15px;
position: relative; }
.feature-layout-one .featured-item {
border-radius: 5px;
background: #fff;
-webkit-box-shadow: 0px 6px 15px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 6px 15px 0px rgba(111, 120, 142, 0.1);
overflow: hidden; }
.feature-layout-one .featured-item img {
width: 100%; }
.feature-layout-one .featured-item .img {
position: relative; }
.feature-layout-one .featured-item .img .hover {
position: absolute;
padding: 25px 30px;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-one .featured-item .img .hover .features-icon {
position: absolute;
bottom: 0;
left: 0;
padding: 0 30px 25px;
width: 100%; }
.feature-layout-one .featured-item .img .hover .features-icon a {
font-size: 24px;
color: #fff;
line-height: 1; }
.feature-layout-one .featured-item .img .hover .features-icon a:hover {
color: #fb5252; }
.feature-layout-one .featured-item .img .hover .features-icon a:last-child {
float: right; }
.feature-layout-one .featured-item .content {
margin: 20px 25px 0;
padding-bottom: 30px;
border-bottom: 1px solid #ededed;
position: relative; }
.feature-layout-one .featured-item .map-featured {
-webkit-box-shadow: 0px 0px 43px 0px rgba(210, 210, 210, 0.21);
box-shadow: 0px 0px 43px 0px rgba(210, 210, 210, 0.21);
border: 8px solid #fff;
border-radius: 5px;
overflow: hidden;
position: absolute;
bottom: 60px;
left: 0;
display: none; }
.feature-layout-one .featured-item .map-featured img {
max-width: 100%; }
.feature-layout-one .featured-item h4 a {
color: #343851; }
.feature-layout-one .featured-item p {
cursor: pointer; }
.feature-layout-one .featured-item .post-footer {
padding: 20px 25px 15px;
overflow: hidden; }
.feature-layout-one .featured-item .post-footer > div {
float: left; }
.feature-layout-one .featured-item .post-footer > div:last-child {
float: right; }
.feature-layout-one .featured-item .post-footer .author .img {
margin-right: 10px; }
.feature-layout-one .featured-item .post-footer .post-icons i {
font-size: 24px; }
.feature-layout-one .featured-item .post-footer .post-icons i:last-child {
margin-left: 12px; }
.feature-layout-one .featured-item .button-amount {
background: #fff;
padding: 5px 25px;
border-radius: 5px;
color: #fb5252;
display: inline-block;
font-weight: 600;
font-size: 18px; }
.feature-layout-one .featured-item .post-icons li {
position: relative;
padding: 6px;
border-radius: 4px;
line-height: 1;
color: #343851; }
.feature-layout-one .featured-item .post-icons li span {
width: 20px;
height: 20px;
font-size: 14px;
background: #fb5252;
position: absolute;
right: -10px;
top: -10px;
border-radius: 50%;
text-align: center;
line-height: 16px;
color: #fff;
font-weight: 500; }
.feature-layout-one .featured-item:hover .button-amount {
background: #fb5252;
color: #fff; }
.feature-layout-one .featured-item:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.feature-layout-one .col-md-6 {
position: relative; }
.feature-layout-one .latest-sale-dots, .feature-layout-one .latest-rent-dots {
position: relative;
z-index: 1; }
.feature-layout-one .latest-sale-dots .slick-dots, .feature-layout-one .latest-rent-dots .slick-dots {
position: relative;
bottom: 0; }
.feature-layout-one .rent-tab {
display: none; }
.feature-layout-one .latest-rent-tab {
opacity: 0;
position: relative;
height: 0; }
.feature-layout-one .latest-sale-tab, .feature-layout-one .latest-rent-tab {
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out; }
.feature-layout-one .button-group {
float: right; }
.feature-layout-one .button-group a {
text-transform: unset; }
.feature-layout-one .button-group a:hover {
-webkit-transform: unset;
-ms-transform: unset;
transform: unset; }
.feature-layout-one .button-group a:last-child {
margin-left: 15px; }
.feature-layout-one .button-group a.active {
background: #fb5252;
color: #fff; }
.feature-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.feature-layout-one .slick-dots li.slick-active button {
background: #fb5252; }
.feature-layout-one .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.feature-layout-one .slick-dots li button:before {
display: none; }
.latest-property-layout:before {
width: 100%;
height: 100%;
-webkit-clip-path: unset;
clip-path: unset; }
.latest-property-layout .container-fluid {
max-width: 1450px; }
.feature-layout-two .feature-item {
position: relative;
padding: 60px 40px;
background: #fff;
border-radius: 5px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
overflow: hidden; }
.feature-layout-two .feature-item:before, .feature-layout-two .feature-item:after {
content: "";
width: 274px;
height: 274px;
background: rgba(255, 255, 255, 0.07);
border-radius: 50%;
position: absolute;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
opacity: 0; }
.feature-layout-two .feature-item:before {
right: -90px;
top: -90px;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear; }
.feature-layout-two .feature-item:after {
right: -70px;
top: -70px;
-webkit-transition: all .6s linear;
-o-transition: all .6s linear;
transition: all .6s linear; }
.feature-layout-two .feature-item i, .feature-layout-two .feature-item h4, .feature-layout-two .feature-item p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-two .feature-item i {
font-size: 60px;
color: #fb5252;
line-height: 1; }
.feature-layout-two .feature-item h4 {
padding: 35px 0 20px; }
.feature-layout-two .feature-item:hover {
background: #fb5252; }
.feature-layout-two .feature-item:hover i, .feature-layout-two .feature-item:hover h4, .feature-layout-two .feature-item:hover p {
color: #fff; }
.feature-layout-two .feature-item:hover:before, .feature-layout-two .feature-item:hover:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1; }
.feature-layout-three {
position: relative;
overflow: hidden; }
.feature-layout-three:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -550px;
left: 0; }
.feature-layout-three .feature-item {
background: #fff;
border: 1px solid #ededed;
border-radius: 5px;
padding: 60px 25px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
-webkit-box-shadow: unset;
box-shadow: unset; }
.feature-layout-three .feature-item .icon {
position: relative;
font-size: 85px;
color: #fb5252;
line-height: 1;
height: 100px; }
.feature-layout-three .feature-item .icon i {
position: relative;
z-index: 2; }
.feature-layout-three .feature-item .icon:before {
content: "";
width: 112px;
height: 112px;
background: rgba(251, 82, 82, 0.1);
border-radius: 50%;
position: absolute;
right: 70px;
top: -10px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.feature-layout-three .feature-item h4 {
padding: 15px 0 10px; }
.feature-layout-three .feature-item:hover {
border-color: #fff;
-webkit-box-shadow: 0px 16px 35px 0px rgba(111, 120, 142, 0.11);
box-shadow: 0px 16px 35px 0px rgba(111, 120, 142, 0.11); }
.feature-layout-three .feature-item:hover .icon:before {
opacity: 1; }
.feature-layout-four {
position: relative; }
.feature-layout-four:before {
content: "";
width: 525px;
height: 525px;
background: url("../img/feature/shape.png") no-repeat;
background-size: contain;
position: absolute;
left: 25px;
bottom: 30px; }
.feature-layout-four:after {
content: "";
width: 525px;
height: 525px;
background: url("../img/feature/shape-2.png") no-repeat;
background-size: contain;
position: absolute;
right: 25px;
top: 30px; }
.feature-layout-four .container {
position: relative;
z-index: 2; }
.feature-layout-four .feature-item {
-webkit-box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.15);
background: #fff;
position: relative; }
.feature-layout-four .feature-item .img {
position: relative; }
.feature-layout-four .feature-item .img img {
width: 100%; }
.feature-layout-four .feature-item .img:hover .slick-arrow {
opacity: 1; }
.feature-layout-four .feature-item .img:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.feature-layout-four .feature-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-four .feature-item .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.feature-layout-four .feature-item .rent-tag {
background: #ff9c00;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.feature-layout-four .feature-item .feature-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.feature-layout-four .feature-item .img-footer {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px; }
.feature-layout-four .feature-item .img-footer h4 {
float: left;
color: #fff;
line-height: 1; }
.feature-layout-four .feature-item .img-footer h4 span {
font-size: 16px;
font-weight: 400; }
.feature-layout-four .feature-item .img-footer .list-inline {
float: right; }
.feature-layout-four .feature-item .img-footer .list-inline a {
font-size: 24px;
color: #fff;
line-height: 1; }
.feature-layout-four .feature-item .img-footer .list-inline a:hover {
color: #fb5252; }
.feature-layout-four .feature-item .slick-arrow {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 2;
color: #fff;
font-size: 32px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer;
font-weight: 500; }
.feature-layout-four .feature-item .slick-arrow.flaticon-right {
right: 20px; }
.feature-layout-four .feature-item .slick-arrow.flaticon-left {
left: 20px; }
.feature-layout-four .feature-item .content {
padding: 30px 30px 15px; }
.feature-layout-four .feature-item .content h4 {
padding-bottom: 2px; }
.feature-layout-four .feature-item .content .row i, .feature-layout-four .feature-item .content p i {
padding-right: 5px; }
.feature-layout-four .feature-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px;
margin-top: 15px; }
.feature-layout-four .feature-item .footer-content > div {
float: left; }
.feature-layout-four .feature-item .footer-content > div:last-child {
float: right; }
.feature-layout-four .feature-item .footer-content .author .img {
margin-right: 10px; }
.feature-layout-four .feature-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.feature-layout-four .feature-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.feature-layout-four .feature-item .footer-content a.active {
color: #fb5252; }
.feature-layout-four .feature-item .footer-content a.active > i:before {
content: "\f106"; }
.feature-layout-four .feature-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: -150px;
bottom: 40px;
z-index: 4; }
.feature-layout-four .feature-item .house-feature li {
position: relative;
padding-left: 12px; }
.feature-layout-four .feature-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.feature-layout-four .feature-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.feature-background {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x910/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x910/eee/000");
background-repeat: no-repeat;
background-size: cover; }
.feature-background:before {
background: url("../img/feature/shape-3.png") no-repeat;
background-size: contain; }
.feature-background:after {
background: url("../img/feature/shape-4.png") no-repeat;
background-size: contain;
top: 70px; }
.hover-layout .feature-item:before, .hover-layout .feature-item:after {
display: none; }
.hover-layout .feature-item .before {
width: 100%;
height: 100%;
position: absolute;
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/370/eee/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/370/eee/000");
background-repeat: no-repeat;
background-size: cover;
left: 0;
top: 0;
z-index: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.hover-layout .feature-item .before:before, .hover-layout .feature-item .before:after {
content: "";
width: 274px;
height: 274px;
background: rgba(251, 82, 82, 0.07);
border-radius: 50%;
position: absolute;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
opacity: 1; }
.hover-layout .feature-item .before:before {
right: -90px;
top: -90px;
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear; }
.hover-layout .feature-item .before:after {
right: -70px;
top: -70px;
-webkit-transition: all .6s linear;
-o-transition: all .6s linear;
transition: all .6s linear; }
.hover-layout .feature-item i, .hover-layout .feature-item h4, .hover-layout .feature-item p {
position: relative;
z-index: 2; }
.hover-layout .feature-item:hover {
background: #fff; }
.hover-layout .feature-item:hover i {
color: #fb5252; }
.hover-layout .feature-item:hover h4 {
color: #343851; }
.hover-layout .feature-item:hover p {
color: #757c8c; }
.hover-layout .feature-item:hover .before {
opacity: 1; }
.hover-layout .feature-item:hover .before:before, .hover-layout .feature-item:hover .before:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
.feature-layout-five .feature-left {
padding-right: 60px; }
.feature-layout-five .feature-left p.lead {
font-size: 2.3em;
color: #343851;
margin-bottom: 30px; }
.feature-layout-five .feature-left p {
margin-bottom: 50px; }
.feature-layout-five .feature-left .button {
text-transform: uppercase; }
.feature-layout-five .feature-right {
padding-left: 40px; }
.feature-layout-five .feature-right img {
width: 100%;
border: 10px solid #fff;
-webkit-box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09);
box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09); }
.feature-layout-six {
padding-bottom: 55px; }
.feature-layout-six .feature-carousel-two {
margin: 0 -15px; }
.feature-layout-six .feature-carousel-two:hover .slick-arrow {
opacity: 1; }
.feature-layout-six .bottom-position {
margin-top: -45px; }
.feature-layout-six .feature-tt {
padding: 0 15px 45px; }
.feature-layout-six .col-md-4 {
position: relative; }
.feature-layout-six .feature-item {
position: relative;
background: #fff;
height: 100%;
-webkit-box-shadow: 0px 20px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 20px 25px 0px rgba(111, 120, 142, 0.15); }
.feature-layout-six .feature-item .img {
position: relative; }
.feature-layout-six .feature-item .img img {
width: 100%; }
.feature-layout-six .feature-item .img:hover .hover {
background: rgba(0, 0, 0, 0.3); }
.feature-layout-six .feature-item .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 15px 15px 0;
background: rgba(0, 0, 0, 0.2);
border-bottom: 3px solid transparent;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-six .feature-item .hover .button-group a {
border-radius: 3px;
color: #fff;
padding: 6px 20px;
display: inline-block;
text-transform: uppercase;
font-weight: 600;
font-size: 14px; }
.feature-layout-six .feature-item .hover .button-group a:last-child {
margin-left: 5px; }
.feature-layout-six .feature-item .hover .button-group .button-blue {
background: #0075ff; }
.feature-layout-six .feature-item .hover .button-group .tag-primary {
background: #fb5252; }
.feature-layout-six .feature-item .hover .button-group .button-yellow {
background: #ff9c00; }
.feature-layout-six .feature-item .hover .pricing {
position: absolute;
bottom: 10px;
left: 0;
padding: 0 10px;
width: 100%; }
.feature-layout-six .feature-item .hover .pricing h5 {
float: left; }
.feature-layout-six .feature-item .hover .pricing span {
font-size: 16px;
font-weight: 400; }
.feature-layout-six .feature-item .hover .pricing a {
color: #fff;
float: right;
font-size: 16px;
line-height: 1;
background-color: rgba(0, 0, 0, 0.4);
padding: 8px 10px;
border-radius: 3px; }
.feature-layout-six .feature-item .hover .pricing a:hover {
background-color: #fb5252; }
.feature-layout-six .feature-item .content-title {
padding: 30px; }
.feature-layout-six .feature-item .content-title h4 {
font-weight: 500;
margin-bottom: 15px; }
.feature-layout-six .feature-item .content-title h4 a {
color: #343851; }
.feature-layout-six .feature-item .content-title h4 a:hover {
color: #fb5252; }
.feature-layout-six .feature-item .content-title i {
padding-right: 5px; }
.feature-layout-six .feature-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.feature-layout-six .feature-item .content-middle i {
color: #fb5252; }
.feature-layout-six .feature-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.feature-layout-six .feature-item .content-middle strong {
font-weight: 500; }
.feature-layout-six .feature-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-six .feature-item .content-middle .favorite-feature i {
line-height: 31px; }
.feature-layout-six .feature-item .footer-content {
padding: 30px;
overflow: hidden; }
.feature-layout-six .feature-item .footer-content .img {
margin-right: 8px; }
.feature-layout-six .feature-item .footer-content .author {
float: left; }
.feature-layout-six .feature-item .footer-content .right-content {
float: right;
margin-top: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 0;
right: -10px;
text-align: center;
font-size: 0;
width: 30px;
height: 30px; }
.feature-layout-six .feature-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
top: 10px;
display: inline-block; }
.feature-layout-six .feature-item .footer-content .right-content a span::before, .feature-layout-six .feature-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.feature-layout-six .feature-item .footer-content .right-content a span:before {
top: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a span:after {
bottom: -10px; }
.feature-layout-six .feature-item .footer-content .right-content a.active span, .feature-layout-six .feature-item .footer-content .right-content a.active span:before, .feature-layout-six .feature-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.feature-layout-six .feature-item:hover .hover {
border-color: #fb5252; }
.feature-layout-six .feature-item:hover .content-middle .favorite-feature {
background: #fb5252; }
.feature-layout-six .feature-item:hover .content-middle .favorite-feature i {
color: #fff; }
.feature-layout-six .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.feature-layout-six .house-feature li {
position: relative;
padding-left: 12px; }
.feature-layout-six .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.feature-layout-six .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.feature-layout-six .slick-arrow {
border-radius: 50%;
background-color: #fff;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
width: 70px;
height: 70px;
position: absolute;
top: 115px;
text-align: center;
line-height: 70px;
color: #fb5252;
z-index: 3;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: bold;
cursor: pointer; }
.feature-layout-six .slick-arrow.flaticon-right-chevron {
right: -20px; }
.feature-layout-six .slick-arrow.flaticon-left-chevron {
left: -20px; }
.feature-layout-seven .feature-item {
padding: 60px 40px 40px;
border-radius: 5px; }
.feature-layout-seven .feature-item .icon {
font-size: 70px;
line-height: 1;
margin-right: 25px; }
.feature-layout-seven .feature-item h4 {
margin-bottom: 20px; }
.feature-layout-seven .feature-item p {
margin-bottom: 30px; }
.feature-layout-eight .feature-tab-control {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
overflow: hidden;
text-align: center; }
.feature-layout-eight .feature-tab-control .tab-item {
float: left;
width: 33.33%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
text-transform: uppercase;
font-weight: 600;
font-size: 18px;
padding: 45px 30px;
cursor: pointer;
color: #343851; }
.feature-layout-eight .feature-tab-control .tab-item.active {
background: #fb5252;
color: #fff; }
.feature-layout-eight .rent-lists, .feature-layout-eight .buy-lists, .feature-layout-eight .sale-lists {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .rent-lists .container-fluid, .feature-layout-eight .buy-lists .container-fluid, .feature-layout-eight .sale-lists .container-fluid {
max-width: 1550px; }
.feature-layout-eight .rent-lists, .feature-layout-eight .buy-lists {
display: none; }
.feature-layout-eight .feature-item {
position: relative;
background: #fff;
-webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
overflow: hidden; }
.feature-layout-eight .feature-item img {
width: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .compare {
position: absolute;
top: 20px;
right: 20px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.feature-layout-eight .feature-item .compare a {
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 8px 10px;
border-radius: 3px; }
.feature-layout-eight .feature-item .compare a:hover {
background: #fb5252; }
.feature-layout-eight .feature-item .content {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content h4 a, .feature-layout-eight .feature-item .content p {
color: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content p {
font-weight: 600; }
.feature-layout-eight .feature-item .content .content-top {
padding: 35px 30px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .content-middle {
padding: 20px 30px; }
.feature-layout-eight .feature-item .content .tag-group {
position: absolute;
top: -15px;
left: 30px; }
.feature-layout-eight .feature-item .content .tag-group a {
font-size: 14px; }
.feature-layout-eight .feature-item .content .tag-group a:first-child {
margin-right: 10px; }
.feature-layout-eight .feature-item .content h4 {
margin-bottom: 3px; }
.feature-layout-eight .feature-item .content .feature-tag {
background: #fb5252;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .blue-tag {
background: #0075ff;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .yellow-tag {
background: #ff9c00;
color: #fff;
padding: 4px 20px;
display: inline-block;
border-radius: 3px; }
.feature-layout-eight .feature-item .content .flaticon-building {
font-size: 20px;
margin-right: 5px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: rgba(255, 255, 255, 0.3);
color: #fff;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.feature-layout-eight .feature-item .content .favorite-feature i {
line-height: 31px; }
.feature-layout-eight .feature-item:hover img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.feature-layout-eight .feature-item:hover .content {
background: #fff; }
.feature-layout-eight .feature-item:hover .content .content-top {
border-color: #eaeaea; }
.feature-layout-eight .feature-item:hover .content h4 a, .feature-layout-eight .feature-item:hover .content .content-middle p {
color: #343851; }
.feature-layout-eight .feature-item:hover .content p {
color: #757c8c; }
.feature-layout-eight .feature-item:hover .content .favorite-feature {
background: #fb5252; }
.feature-layout-eight .feature-item:hover .content .flaticon-building {
color: #fb5252; }
.feature-layout-eight .feature-item:hover .compare {
opacity: 1; }
.feature-layout-nine .feature-item {
padding: 0 40px; }
.feature-layout-nine .feature-item i {
color: #fb5252;
font-size: 80px;
margin-bottom: 30px;
display: inline-block;
line-height: 1; }
.feature-layout-nine .feature-item h4 {
margin-bottom: 20px; }
.feature-pb {
padding-bottom: 100px; }
.no-background:before {
display: none; }
/*
========================================
05 - About Section
========================================
*/
.about-layout-one .section-head h2::before {
left: 2px; }
.about-layout-one .about-left {
position: relative;
left: -70px; }
.about-layout-one .about-left .about-slide {
border-radius: 10px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
overflow: hidden;
position: relative; }
.about-layout-one .about-left .about-slide img {
width: 100%; }
.about-layout-one .about-left .about-slide h2 {
position: absolute;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-size: 70px;
width: 565px;
top: 270px;
left: -230px;
text-transform: uppercase;
-webkit-text-stroke: 2px #fff;
-webkit-text-fill-color: transparent;
text-shadow: 0px 8px 5px rgba(0, 0, 0, 0.21); }
.about-layout-one .about-left .about-navigation {
position: absolute;
bottom: 40px;
right: -60px;
width: 90%; }
.about-layout-one .about-left .about-navigation .about-tt {
padding: 5px; }
.about-layout-one .about-left .about-navigation .about-nav {
cursor: pointer; }
.about-layout-one .about-left .about-navigation .about-nav img {
max-width: 100%;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
border: 4px solid #fff;
border-radius: 10px; }
.about-layout-one .about-list li {
padding: 0 0 12px 15px;
position: relative; }
.about-layout-one .about-list li:before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: #fb5252;
position: absolute;
left: 0;
top: 10px; }
.about-layout-one .about-list li:last-child {
padding-bottom: 0; }
.about-layout-two {
padding-top: 120px;
padding-bottom: 200px;
position: relative; }
.about-layout-two:before {
content: "";
width: 680px;
height: 747px;
background: url("../img/about/shape.png") no-repeat;
position: absolute;
left: 15px;
top: 20px;
z-index: -1; }
.about-layout-two .about-left {
position: relative;
width: calc(100% + 180px);
left: -250px; }
.about-layout-two .about-left:before {
content: "";
width: 292px;
height: 302px;
background: url("../img/about/shape-2.png") no-repeat;
position: absolute;
right: -85px;
bottom: -95px;
z-index: -1; }
.about-layout-two .about-slide img {
border: 10px solid #fff;
max-width: 100%; }
.about-layout-two .about-navigation {
max-width: 540px;
position: absolute;
left: -70px;
bottom: 20px; }
.about-layout-two .about-navigation .about-nav {
margin: 15px 5px; }
.about-layout-two .about-navigation img {
border: 4px solid #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 6px 13px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 13px 0px rgba(111, 120, 142, 0.05);
max-width: 100%; }
.about-layout-two .about-feature {
border-top: 1px solid #ededed;
padding-top: 30px; }
.about-layout-two .about-feature .about-flex {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.about-layout-two .about-feature .about-flex i {
padding-right: 8px; }
.about-layout-three .about-left {
position: relative; }
.about-layout-three .about-left img {
border: 10px solid #fff;
width: 98%;
-webkit-box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08); }
.about-layout-three .about-left .button-about {
position: absolute;
background: url("../img/about/shape-3.png") no-repeat;
width: 153px;
height: 150px;
top: 30px;
right: 30px;
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; }
.about-layout-three .about-left .button-about a {
color: #fff;
font-size: 20px;
text-transform: uppercase;
font-weight: 600;
display: inline-block;
line-height: 1;
margin-top: 10px; }
.about-layout-three .list-inline li:not(:last-child) {
padding-right: 20px; }
.about-layout-three .list-inline a {
color: #757c8c;
font-size: 20px;
display: inline-block; }
.about-layout-three .list-inline a:hover {
color: #fb5252; }
.about-layout-four {
position: relative;
padding: 100px 0 320px; }
.about-layout-four:before {
content: "";
background: url("../img/property-bg.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -2;
top: -450px;
left: 0; }
.about-layout-four:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -400px;
left: 0; }
.about-layout-four p.primary-color {
font-weight: 600;
text-transform: uppercase;
margin-bottom: 0; }
.about-layout-four .about-item {
margin: 30px 0 60px; }
.about-layout-four .about-item .icon {
font-size: 55px;
line-height: 1;
margin-right: 15px; }
.about-layout-four .about-item h6 {
font-size: 22px;
line-height: 1; }
.about-layout-four h2 {
margin-bottom: 55px;
text-transform: uppercase;
padding-top: 5px; }
.about-layout-four .about-left {
padding-right: 40px; }
.about-layout-four .about-right {
position: relative; }
.about-layout-four .about-right:before, .about-layout-four .about-right:after {
content: "";
width: 50px;
height: 50px;
border-style: solid;
border-width: 3px 0 0 3px;
border-color: #fb5252 transparent transparent #fb5252;
position: absolute;
left: -20px;
top: -20px; }
.about-layout-four .about-right:after {
left: auto;
top: auto;
border-width: 0 3px 3px 0;
border-color: transparent #fb5252 #fb5252 transparent;
right: -20px;
bottom: -20px; }
.about-layout-four .about-right img {
border: 10px solid #fff;
width: 100%; }
.about-layout-four .about-right .about-hover {
position: absolute;
right: -20%;
bottom: 50px; }
.about-layout-four .about-right .about-hover img {
border: 8px solid #fff; }
.about-layout-five {
position: relative; }
.about-layout-five:before {
content: "";
width: 675px;
height: 610px;
background: url("../img/about/shape-4.png") no-repeat;
position: absolute;
left: 50px;
top: 150px;
z-index: -1; }
.about-layout-five:after {
content: "";
width: 431px;
height: 640px;
background: url("../img/about/shape-5.png") no-repeat;
position: absolute;
right: 0px;
bottom: -280px;
z-index: -1; }
.about-layout-five .about-left {
position: relative;
left: -50px; }
.about-layout-five .about-list {
margin-bottom: 55px; }
.about-layout-five .about-list li {
position: relative;
padding-left: 15px; }
.about-layout-five .about-list li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.about-layout-five .about-list li:not(:last-child) {
margin-bottom: 15px; }
.about-layout-six {
background: url("../img/about-bg.png") no-repeat;
background-position: center; }
.about-layout-six img {
width: 100%; }
.about-layout-six .col-md-6 {
padding: 0; }
.about-layout-six .about-top .about-content {
padding: 0 60px 0 15px; }
.about-layout-six .about-bottom .about-content {
padding: 0 15px 0 60px; }
.about-layout-six p i {
padding-right: 10px; }
.about-layout-six p {
font-size: 17px; }
.about-innar {
background: #f9f9f9;
position: relative; }
.about-innar:before {
content: "";
width: 48.5%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: url("https://via.placeholder.com/935x660/ededed/999") no-repeat;
background-size: cover;
background-position: right center; }
.about-innar .container {
position: relative;
z-index: 2; }
.about-innar .play-button {
background: #fb5252;
color: #fff;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 34px;
display: block;
border-radius: 50%;
position: relative; }
.about-innar .play-button i {
position: relative;
z-index: 2; }
.about-innar .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
opacity: .4;
position: absolute;
left: -12px;
top: -12px;
border-radius: 50%; }
.about-innar .about-list {
margin-bottom: 55px; }
.about-innar .about-list li {
position: relative;
padding-left: 15px; }
.about-innar .about-list li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.about-innar .about-list li:not(:last-child) {
margin-bottom: 15px; }
/*
========================================
06 - Service Section
========================================
*/
.service-layout-one .service-left {
position: relative;
width: calc(100% + 65px);
left: -90px; }
.service-layout-one .service-left .img-one {
float: left;
margin-top: 80px; }
.service-layout-one .service-left .img-two {
float: right; }
.service-layout-one h6 {
text-transform: uppercase; }
.service-layout-one .list-service li {
display: inline-block;
width: 49%;
padding: 12px 0;
text-transform: uppercase;
font-weight: 600;
font-size: 16px;
color: #343851; }
.service-layout-one .list-service li i {
font-size: 24px;
padding-right: 12px;
position: relative;
top: 2px; }
.service-layout-two .service-item {
position: relative;
overflow: hidden;
border-radius: 5px;
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.service-layout-two .service-item img {
width: 100%; }
.service-layout-two .service-item .hover {
position: absolute;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
width: 100%;
padding: 20px 25px 25px; }
.service-layout-two .service-item .hover h4 {
margin-bottom: 0;
line-height: 1.3; }
.service-layout-two .service-item .hover a {
color: #fff; }
.service-layout-two .service-item:hover {
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
cursor: pointer; }
.service-layout-two .service-item:hover .hover {
background: #fff; }
.service-layout-two .service-item:hover .hover a {
color: #343851; }
.service-layout-two .service-item:hover .hover a:hover {
color: #fb5252; }
.single-service-layout .service-content .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 20px 0 45px; }
.single-service-layout .service-content img {
border-radius: 5px;
width: 100%; }
.single-service-layout .service-content h2 {
padding: 25px 0 15px; }
.single-service-layout .service-content .list-service {
padding: 15px 0; }
.single-service-layout .service-content .list-service li {
position: relative;
padding-left: 15px; }
.single-service-layout .service-content .list-service li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.single-service-layout .service-content .list-service li:not(:last-child) {
margin-bottom: 15px; }
.single-service-layout .service-content .service-row img {
-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .service-content .service-skill {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .service-content .service-skill h4 {
padding-bottom: 15px; }
.single-service-layout .service-content .skill-bar {
position: relative; }
.single-service-layout .service-content .skill-bar:before {
content: "";
width: calc(100% - 38px);
height: 1px;
background: #eee;
position: absolute;
top: 0px;
left: 24px; }
.single-service-layout .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-service-layout .sidebar-item h4 {
padding-bottom: 15px; }
.single-service-layout .sidebar-item .recent-item .img {
padding-right: 20px; }
.single-service-layout .sidebar-item .recent-item .img img {
border-radius: 5px; }
.single-service-layout .sidebar-item .recent-item h6 a {
color: #343851; }
.single-service-layout .sidebar-item .service-lists li {
margin-bottom: 3px; }
.single-service-layout .sidebar-item .service-lists li:last-child {
margin-bottom: 0; }
.single-service-layout .sidebar-item .service-lists a {
display: block;
padding: 12px 25px;
background: #f9f9f9;
color: #343851;
font-weight: 500; }
.single-service-layout .sidebar-item .service-lists a:hover {
background: #fb5252;
color: #fff;
border-left: 2px solid #343851; }
.single-service-layout .item-two {
padding: 0; }
.single-service-layout .item-two .sidebar-author {
position: relative; }
.single-service-layout .item-two .sidebar-author img {
width: 100%;
border-radius: 5px; }
.single-service-layout .item-two .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.single-service-layout .item-two .contact {
padding: 30px 25px; }
.single-service-layout .item-two .contact input, .single-service-layout .item-two .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.single-service-layout .item-two .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.single-service-layout .item-two .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
/*
========================================
07 - App Section
========================================
*/
.app-layout-one .container {
position: relative; }
.app-layout-one .container .app-image {
position: absolute;
right: -240px;
bottom: -101px; }
.app-layout-one .button-group a:first-child {
margin-right: 25px; }
/*
========================================
08 - Portfolio Section
========================================
*/
.portfolio-layout-one .container-fluid {
padding: 0 30px; }
.portfolio-layout-one .container-fluid .mix {
margin-bottom: 30px; }
.portfolio-layout-one .filters-button-group .nav-item {
padding: 14px 40px;
background: transparent;
border: 2px solid #ddd;
color: #757c8c;
font-weight: 600;
text-transform: uppercase; }
.portfolio-layout-one .filters-button-group .nav-item:not(:last-child) {
margin-right: 20px; }
.portfolio-layout-one .filters-button-group .nav-item.is-checked {
border-color: #fb5252;
color: #fb5252; }
.portfolio-layout-one .portfolio-item {
position: relative; }
.portfolio-layout-one .portfolio-item .content {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
padding: 30px 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0;
left: -10px; }
.portfolio-layout-one .portfolio-item .content a {
color: #343851;
text-transform: uppercase; }
.portfolio-layout-one .portfolio-item .content .list-inline {
padding-bottom: 10px; }
.portfolio-layout-one .portfolio-item .content .list-inline a {
width: 40px;
height: 40px;
border: 1px solid #343851;
border-radius: 50%;
display: inline-block;
text-align: center;
line-height: 40px; }
.portfolio-layout-one .portfolio-item .content .list-inline a:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff; }
.portfolio-layout-one .portfolio-item:hover .content {
opacity: 1;
left: 0; }
.portfolio-layout-two {
background: #eff2f7; }
.portfolio-layout-two .container-fluid {
max-width: 1600px; }
.portfolio-layout-two .container-fluid .portfolio-carousel {
margin: 0 -15px;
margin-bottom: 80px; }
.portfolio-layout-two .container-fluid .portfolio-tt {
padding: 0 15px; }
.portfolio-layout-two .portfolio-item {
position: relative; }
.portfolio-layout-two .portfolio-item .hover {
position: absolute;
left: 30px;
bottom: 30px;
width: calc(100% - 60px);
background: #fff;
padding: 15px 30px;
border-radius: 3px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.portfolio-layout-two .portfolio-item h4 {
font-weight: 500;
margin-bottom: 0; }
.portfolio-layout-two .portfolio-item h4 a {
color: #343851; }
.portfolio-layout-two .portfolio-item .button-arrow {
width: 40px;
height: 40px;
text-align: center;
background: #f7f7f7;
border-radius: 50%;
line-height: 40px;
color: #fb5252;
position: absolute;
right: 30px;
top: 25px; }
.portfolio-layout-two .portfolio-item:hover .hover {
opacity: 1; }
.portfolio-layout-two .slick-dots {
bottom: -80px;
z-index: 15; }
.portfolio-layout-two .slick-dots li {
width: 24px;
height: 24px; }
.portfolio-layout-two .slick-dots li.slick-active button {
border: 7px solid #fb5252; }
.portfolio-layout-two .slick-dots li button {
background: #f7f6f1;
border: 5px solid rgba(251, 82, 82, 0.2);
width: 24px;
height: 24px;
padding: 0;
border-radius: 3px; }
.portfolio-layout-two .slick-dots li button:before {
display: none; }
/*
========================================
09 - Portfolio Section
========================================
*/
.team-layout-one {
position: relative; }
.team-layout-one:before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(42, 55, 76, 0.97)), to(rgba(42, 55, 76, 0.97))), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: -o-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-image: linear-gradient(to left, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x825/aaa/fff");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.team-layout-one:after {
content: "Our Re";
position: absolute;
right: -130px;
font-weight: 600;
text-transform: uppercase;
font-size: 150px;
line-height: 1;
bottom: 15px;
z-index: -1;
pointer-events: none;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
-webkit-text-fill-color: transparent; }
.team-layout-one .section-head h2, .team-layout-one .section-head p {
color: #fff; }
.team-layout-one .team-carousel {
margin: 0 -15px; }
.team-layout-one .team-tt {
padding: 15px; }
.team-layout-one .team-item {
padding: 80px 80px 30px;
background: #fff;
border-radius: 5px;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.team-layout-one .team-item .img {
position: relative; }
.team-layout-one .team-item .img img {
border-radius: 10px;
width: 100%; }
.team-layout-one .team-item .img .icon {
position: absolute;
top: 17px;
right: -17px;
width: 34px;
height: 34px;
background: #fb5252;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 34px; }
.team-layout-one .team-item .tag {
position: absolute;
left: 30px;
top: 25px;
font-size: 15px;
background: #fb5252;
padding: 2px 20px;
border-radius: 30px;
color: #fff; }
.team-layout-one .team-item .designation {
padding: 20px 0; }
.team-layout-one .team-item .designation h4 {
margin-bottom: 2px; }
.team-layout-one .team-item .designation a {
color: #343851; }
.team-layout-one .team-item .info li {
padding-bottom: 6px; }
.team-layout-one .team-item .info li:last-child {
padding-bottom: 0; }
.team-layout-one .team-item .info li i {
padding-right: 10px; }
.team-layout-one .team-item:hover {
-webkit-box-shadow: 0px 0px 15px 0px rgba(210, 210, 210, 0.51);
box-shadow: 0px 0px 15px 0px rgba(210, 210, 210, 0.51);
cursor: pointer; }
.team-layout-one .team-dots {
float: right; }
.team-layout-one .team-dots .slick-dots {
position: relative; }
.team-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.team-layout-one .slick-dots li.slick-active button {
background: #fff; }
.team-layout-one .slick-dots li button {
background: rgba(255, 255, 255, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.team-layout-one .slick-dots li button:before {
display: none; }
.team-layout-two .team-item {
padding: 80px 30px 40px;
background: #fff;
border-radius: 5px;
position: relative;
-webkit-box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
text-align: center; }
.team-layout-two .team-item .img {
position: relative; }
.team-layout-two .team-item .img img {
border-radius: 50%;
max-width: 100%; }
.team-layout-two .team-item .img .icon {
position: absolute;
top: 17px;
right: -17px;
width: 34px;
height: 34px;
background: #fb5252;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 34px; }
.team-layout-two .team-item .tag {
position: absolute;
left: 30px;
top: 25px;
font-size: 15px;
background: rgba(251, 82, 82, 0.15);
padding: 2px 20px;
border-radius: 30px;
color: #fb5252; }
.team-layout-two .team-item .share {
width: 35px;
height: 35px;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 50%;
color: #fb5252;
line-height: 35px;
position: absolute;
right: 30px;
top: 25px; }
.team-layout-two .team-item .designation {
padding: 20px 0; }
.team-layout-two .team-item .designation h4 {
margin-bottom: 2px; }
.team-layout-two .team-item .designation a {
color: #343851; }
.team-layout-two .team-item .info li {
font-size: 18px;
padding-bottom: 6px; }
.team-layout-two .team-item .info li:last-child {
padding-bottom: 0; }
.team-layout-two .team-item:hover .tag, .team-layout-two .team-item:hover .share {
background: #fb5252;
color: #fff; }
.team-layout-three p.primary-color {
font-weight: 600;
text-transform: uppercase; }
.team-layout-three h2 {
text-transform: uppercase;
padding-top: 5px; }
.team-layout-three .team-item {
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.team-layout-three .team-item img {
width: 100%; }
.team-layout-three .team-item .content {
padding: 30px; }
.team-layout-three .team-item .content h4 {
text-transform: uppercase; }
.team-layout-three .team-item .content h4 a {
color: #343851; }
.team-layout-three .team-item .content p {
text-transform: uppercase;
margin-bottom: 20px; }
.team-layout-three .team-item .content .team-social li:not(:last-child) {
padding-right: 10px; }
.team-layout-three .team-item .content .team-social a {
background: #f5f5f5;
width: 43px;
height: 43px;
display: inline-block;
text-align: center;
line-height: 43px;
color: #757c8c; }
.team-layout-three .team-item .content .team-social a:hover {
background: #fb5252;
color: #fff; }
.team-layout-three .team-item:hover, .team-layout-three .team-item.active {
-webkit-box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 22px 32px 0px rgba(111, 120, 142, 0.08); }
.team-single-short .team-contact {
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.team-single-short .team-contact input, .team-single-short .team-contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.team-single-short .team-contact textarea {
margin-bottom: 20px;
min-height: 150px; }
.team-single-short .team-contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.team-single-short .team-map {
background: #fff;
padding: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 65px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 0px 65px 0px rgba(111, 120, 142, 0.09); }
.team-single-detail .nav-tabs {
border: 0; }
.team-single-detail .nav-tabs .nav-link {
border: 0;
border-radius: 0;
color: #343851;
padding: 14px 35px; }
.team-single-detail .nav-tabs .nav-item.show .nav-link, .team-single-detail .nav-tabs .nav-link.active {
color: #fff;
background-color: #fb5252;
border: 0; }
.team-single-detail .tab-content {
padding-top: 50px; }
.team-overview-layout img {
border-radius: 10px; }
.team-overview-layout h3 {
padding: 30px 0 15px; }
.team-overview-layout .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 25px 0 25px; }
/*
========================================
10 - Category Section
========================================
*/
.category-layout-one {
position: relative;
margin-top: -120px;
padding-bottom: 110px; }
.category-layout-one .category-item {
position: relative;
border-radius: 5px;
overflow: hidden; }
.category-layout-one .category-item img {
width: 100%;
-webkit-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease; }
.category-layout-one .category-item .hover {
position: absolute;
background: rgba(0, 0, 0, 0.16);
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease; }
.category-layout-one .category-item .hover h4, .category-layout-one .category-item .hover p, .category-layout-one .category-item .hover a {
color: #fff; }
.category-layout-one .category-item .hover h4 {
line-height: 1;
margin-bottom: 15px; }
.category-layout-one .category-item .hover p {
position: relative;
font-weight: 600;
display: inline-block;
padding-left: 22px; }
.category-layout-one .category-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 6px; }
.category-layout-one .category-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 10px; }
.category-layout-one .category-item .hover .content {
position: absolute;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
top: calc(50% - 32.5px);
width: 100%;
opacity: 1; }
.category-layout-one .category-item .hover .button-hover {
position: absolute;
top: calc(50% - 26.5px);
width: 100%;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
opacity: 0; }
.category-layout-one .category-item .hover .button-category {
font-weight: 600;
background: #fb5252;
border-radius: 5px;
border: 2px solid #fff;
padding: 12px 35px;
display: inline-block; }
.category-layout-one .category-item:hover .hover .content {
opacity: 0; }
.category-layout-one .category-item:hover .button-hover {
opacity: 1; }
.category-layout-one .category-item:hover img {
-webkit-transform: scale(1.1) rotate(2deg);
-ms-transform: scale(1.1) rotate(2deg);
transform: scale(1.1) rotate(2deg); }
/*
========================================
11 - Property Section
========================================
*/
.property-layout-one {
position: relative;
overflow: hidden; }
.property-layout-one:before {
content: "";
background: url("../img/property-bg.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -2;
top: -350px;
left: 0; }
.property-layout-one:after {
content: "";
background: url("../img/property-bg-2.png") no-repeat;
background-size: cover;
background-position: center top;
width: 100%;
height: 1080px;
position: absolute;
z-index: -1;
bottom: -400px;
left: 0; }
.property-layout-one .property-list-one, .property-layout-one .property-list-two, .property-layout-one .property-list-three {
position: relative;
min-height: 765px; }
.property-layout-one .property-list-one .container, .property-layout-one .property-list-two .container, .property-layout-one .property-list-three .container {
position: relative; }
.property-layout-one .property-list-one .container > .row > .col-md-6, .property-layout-one .property-list-two .container > .row > .col-md-6, .property-layout-one .property-list-three .container > .row > .col-md-6 {
padding-top: 100px;
position: relative;
z-index: 2; }
.property-layout-one .property-item .icon {
font-size: 50px;
line-height: 1;
margin-right: 20px; }
.property-layout-one .property-item h6 {
text-transform: uppercase;
margin-bottom: 0; }
.property-layout-one .property-sliding-section {
width: 600px;
position: absolute;
right: -20px;
top: 0; }
.property-layout-one .property-sliding-section .property-tt {
float: left; }
.property-layout-one .property-sliding-section .property-tt:first-child {
margin-right: 30px; }
.property-layout-one .property-slide {
position: relative; }
.property-layout-one .property-slide img {
border-radius: 10px;
width: 100%; }
.property-layout-one .property-slide .hover {
position: absolute;
left: 30px;
top: 30px; }
.property-layout-one .property-slide .hover a:last-child {
margin-left: 15px; }
.property-layout-one .property-navigation {
width: 450px;
position: absolute;
bottom: 30px;
left: 30px; }
.property-layout-one .property-navigation img {
max-width: calc(100% - 8px);
margin: 4px;
border: 4px solid #fff;
border-radius: 10px;
cursor: pointer; }
.property-layout-one .property-list-two {
min-height: 865px; }
.property-layout-one .property-list-two:after {
content: "";
width: 75%;
height: 100%;
background-color: #f2f6f9;
position: absolute;
right: 0;
top: 0;
z-index: -1;
border-radius: 5px;
-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%); }
.property-layout-one .property-list-two .property-sliding-section {
right: auto;
left: -40px;
top: 0; }
.property-layout-one .property-list-two .property-navigation {
left: auto;
right: 60px; }
.property-layout-one .property-list-three .property-sliding-section {
top: 0;
right: -10px; }
.property-area-layout .container-fluid {
max-width: 1700px; }
.property-area-layout .property-tt {
padding: 15px 15px 40px; }
.property-area-layout .property-item {
position: relative; }
.property-area-layout .property-item img {
width: 100%; }
.property-area-layout .property-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.property-area-layout .property-item .hover h4, .property-area-layout .property-item .hover p, .property-area-layout .property-item .hover a {
color: #fff; }
.property-area-layout .property-item .hover .info {
position: absolute;
left: 30px;
top: 18px; }
.property-area-layout .property-item .hover .author {
position: absolute;
left: 30px;
bottom: 20px;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0; }
.property-area-layout .property-item .hover .author img {
border: 2px solid #fff;
border-radius: 50%; }
.property-area-layout .property-item .hover .author .content h4 {
color: #fff;
font-size: 1.3em;
margin-left: 15px; }
.property-area-layout .property-item .hover .author .content span {
display: block;
font-weight: 400; }
.property-area-layout .property-item .hover p {
position: relative;
font-weight: 600;
display: inline-block;
padding-left: 22px; }
.property-area-layout .property-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 6px; }
.property-area-layout .property-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 10px; }
.property-area-layout .property-item:hover .author {
opacity: 1; }
.property-area-layout .slick-dots li {
width: 33px;
height: 10px; }
.property-area-layout .slick-dots li.slick-active {
width: 60px; }
.property-area-layout .slick-dots li.slick-active button {
background: #fb5252;
width: 60px; }
.property-area-layout .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 33px;
height: 10px;
border-radius: 5px; }
.property-area-layout .slick-dots li button:before {
display: none; }
.property-layout-two .filter-property li {
cursor: pointer;
font-size: 24px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-two .filter-property li.active {
color: #fb5252; }
.property-layout-two .filter-property li:not(:last-child) {
margin-right: 10px; }
.property-layout-two .property-listwise {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-two .property-listwise .feature-item {
height: auto; }
.property-layout-two .property-listwise .feature-item .col-md-6:first-child {
padding-right: 0; }
.property-layout-two .property-listwise .feature-item .col-md-6:last-child {
padding-left: 0; }
.property-layout-two .property-listwise .feature-item .hover {
border-bottom: 0;
border-right: 3px solid transparent; }
.property-layout-two .property-listwise .feature-item .content-title {
padding: 30px 30px 15px; }
.property-layout-two .property-listwise .feature-item .content-title h4 {
font-weight: 600; }
.property-layout-two .property-listwise .feature-item .footer-content {
padding: 23px 30px; }
.property-layout-two .property-listwise .feature-item .house-feature {
right: 60px;
bottom: 25px; }
.property-layout-two .property-listwise .feature-item:hover .hover {
border-color: #fb5252; }
.property-layout-two .property-gridwise {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
display: none; }
.property-layout-two .property-item {
background: #fff; }
.property-layout-two .property-item .img {
-webkit-box-flex: 0;
-ms-flex: 0 0 31.6%;
flex: 0 0 31.6%;
max-width: 31.6%; }
.property-layout-two .property-item .img img {
width: 100%; }
.property-layout-two .property-item .content {
-webkit-box-flex: 0;
-ms-flex: 0 0 68.4%;
flex: 0 0 68.4%;
max-width: 68.4%;
padding: 40px 25px 0;
position: relative; }
.property-layout-two .property-item .content .button-view a {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
text-align: center;
border-top: 1px solid #eaeaea;
display: inline-block;
padding: 11px 0;
font-weight: 500;
color: #757c8c; }
.property-layout-two .property-item .content .button-view a:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff; }
.property-layout-two .property-item .content h6 {
font-weight: 500; }
.property-layout-three {
background: url("https://via.placeholder.com/1920x880/eee/999") no-repeat;
background-size: cover; }
.property-layout-three .container {
height: 700px;
position: relative; }
.property-layout-three .property-video .property-item {
position: relative;
background: #fff;
margin-left: 30px;
margin-bottom: 15px;
margin-top: 15px; }
.property-layout-three .property-video .property-item .feature-tag {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 4px 20px;
border-radius: 3px; }
.property-layout-three .property-video .property-item .content-top {
padding: 25px 30px; }
.property-layout-three .property-video .property-item .content-top h4 {
font-size: 20px;
margin-bottom: 15px;
padding-top: 10px; }
.property-layout-three .property-video .property-item .content-top h4 a {
color: #343851; }
.property-layout-three .property-video .property-item .content-top i {
padding-right: 5px; }
.property-layout-three .property-video .property-item .content-middle {
padding: 20px 30px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea; }
.property-layout-three .property-video .property-item .content-middle i {
color: #fb5252; }
.property-layout-three .property-video .property-item .content-middle .flaticon-building {
font-size: 20px;
margin-right: 5px; }
.property-layout-three .property-video .property-item .content-middle .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: #f7f6f1;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-layout-three .property-video .property-item .content-middle .favorite-feature i {
line-height: 31px; }
.property-layout-three .property-video .property-item .footer-content {
padding: 25px 30px;
overflow: hidden; }
.property-layout-three .property-video .property-item .footer-content .img {
margin-right: 8px; }
.property-layout-three .property-video .property-item .footer-content .author {
float: left; }
.property-layout-three .property-video .property-item .footer-content .right-content {
float: right; }
.property-layout-three .property-video .property-item .footer-content .right-content a {
display: inline-block;
position: relative;
top: 16px; }
.property-layout-three .property-video .property-item .footer-content .right-content a span {
position: relative;
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
text-indent: -9999px;
display: inline-block; }
.property-layout-three .property-video .property-item .footer-content .right-content a span::before, .property-layout-three .property-video .property-item .footer-content .right-content a span::after {
content: "";
width: 4px;
height: 4px;
background: #a8adb6;
border-radius: 50%;
position: absolute;
left: 0; }
.property-layout-three .property-video .property-item .footer-content .right-content a span:before {
top: -10px; }
.property-layout-three .property-video .property-item .footer-content .right-content a span:after {
bottom: -10px; }
.property-layout-three .property-video .property-item .footer-content .right-content a.active span, .property-layout-three .property-video .property-item .footer-content .right-content a.active span:before, .property-layout-three .property-video .property-item .footer-content .right-content a.active span:after {
background: #fb5252; }
.property-layout-three .property-video .property-item .icon-group {
position: absolute;
right: 20px;
top: -2px; }
.property-layout-three .property-video .property-item .icon-group li a {
width: 20px;
color: #fff;
font-size: 12px;
height: 30px;
background: #fb5252;
color: #fff;
line-height: 25px;
display: inline-block;
text-align: center;
position: relative; }
.property-layout-three .property-video .property-item .icon-group li a:before {
content: "";
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #fff;
position: absolute;
left: 5px;
bottom: -5px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.property-layout-three .property-video .property-item .icon-group li a.blue-bolt {
background: #0075ff; }
.property-layout-three .property-video .property-item .house-feature {
padding: 20px;
display: none;
background: #fff;
-webkit-box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
box-shadow: 0px 0px 38px 0px rgba(111, 120, 142, 0.12);
position: absolute;
right: 40px;
bottom: 30px;
z-index: 4; }
.property-layout-three .property-video .property-item .house-feature li {
position: relative;
padding-left: 12px; }
.property-layout-three .property-video .property-item .house-feature li:not(:last-child) {
padding-bottom: 15px; }
.property-layout-three .property-video .property-item .house-feature li::before {
width: 5px;
height: 5px;
content: "";
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.property-layout-three .property-video .property-item.slick-current:before {
content: "";
width: 0;
height: 0;
border-top: 25px solid transparent;
border-right: 25px solid #fff;
border-bottom: 25px solid transparent;
position: absolute;
left: -25px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.property-layout-three .property-video .col-md-8 {
position: relative; }
.property-layout-three .property-video .property-video-carousel-two {
height: 100%;
position: relative; }
.property-layout-three .property-video .video-tt {
position: absolute !important;
top: 0 !important;
left: 0 !important;
min-height: 1440px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start; }
.property-layout-three .property-video .video-tt.video-tt-two {
top: 200px !important;
height: 1240px; }
.property-layout-three .property-video .video-tt.video-tt-three {
top: 400px !important;
height: 1040px; }
.property-layout-three .property-video .video-tt.video-tt-four {
top: 650px !important;
height: 790px; }
.property-layout-three .property-video .video-option {
position: -webkit-sticky;
position: sticky;
top: 10px;
left: 0;
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;
opacity: 1;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
height: 790px; }
.property-layout-three .property-video .video-option .play-button {
position: relative;
width: 100px;
height: 100px;
background: #fb5252;
color: #fff;
font-size: 35px;
text-align: center;
line-height: 100px;
border-radius: 50%; }
.property-layout-three .property-video .video-option .play-button::before {
content: "";
width: 120px;
height: 120px;
background: #fb5252;
position: absolute;
left: -10px;
top: -10px;
border-radius: 50%;
opacity: .4; }
.property-layout-three .property-video .video-option .play-button i {
position: relative;
z-index: 2; }
.property-layout-four .tab-titles .tab-item {
display: inline-block;
text-transform: uppercase;
font-weight: 600;
color: #343851;
font-size: 17px;
cursor: pointer; }
.property-layout-four .tab-titles .tab-item.active span {
color: #fb5252; }
/********* Property Single Page ********/
.property-header-content .container > .row:first-child {
border-bottom: 1px solid #eaeaea;
padding-bottom: 30px;
margin-bottom: 30px; }
.property-header-content .container > .row {
margin: 0; }
.property-header-content .content-middle .list-inline {
float: right; }
.property-header-content .content-middle .list-inline li:last-child a {
margin-left: 0; }
.property-header-content .tag-group {
position: relative;
top: 15px; }
.property-header-content .tag-group a {
border-radius: 3px;
color: #fff;
padding: 6px 20px;
display: inline-block;
text-transform: uppercase;
font-weight: 600;
font-size: 14px; }
.property-header-content .tag-group a:last-child {
margin-left: 10px; }
.property-header-content .tag-group .tag-blue {
background: #0075ff; }
.property-header-content .tag-group .tag-primary {
background: #fb5252; }
.property-header-content .tag-group .tag-yellow {
background: #ff9c00; }
.property-header-content .favorite-feature {
float: right;
width: 30px;
height: 30px;
background: rgba(251, 82, 82, 0.1);
color: #fb5252;
border-radius: 50%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
margin-left: 20px;
position: relative;
top: -2px; }
.property-header-content .favorite-feature i {
line-height: 31px; }
.property-header-content .favorite-feature:hover {
background: #fb5252;
color: #fff; }
.property-header-content .heading-flex li i {
padding-right: 7px; }
.property-header-content .property-list-images {
position: relative; }
.property-header-content .property-list-carousel img {
width: 100%;
border-radius: 10px; }
.property-header-content .property-list-navigation {
position: absolute;
width: 82%;
bottom: 50px;
left: 10%; }
.property-header-content .property-list-navigation img {
width: 100%;
border-radius: 5px;
height: 103px; }
.property-header-content .property-list-navigation .property-nav {
margin: 12px; }
.property-header-content .property-list-navigation .slick-current {
position: relative; }
.property-header-content .property-list-navigation .slick-current:before {
content: "";
width: 100%;
height: 100%;
background: #fff;
opacity: 0.4;
position: absolute;
left: 0;
top: 0;
border-radius: 5px; }
.property-header-content .property-list-navigation .slick-current img {
border: 2px solid #fff; }
.property-main-content .single-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-main-content .intro-content .heading {
overflow: hidden;
padding-bottom: 10px; }
.property-main-content .intro-content h4 {
float: left; }
.property-main-content .intro-content ul {
float: right; }
.property-main-content .intro-content ul li i {
color: #343851;
padding-right: 5px; }
.property-main-content .intro-content p {
padding-bottom: 15px; }
.property-main-content .intro-content a {
font-weight: 600; }
.property-main-content .intro-content a:hover {
color: #fb5252; }
.property-main-content .intro-content a i {
font-size: 24px;
padding-right: 5px;
position: relative;
top: 2px; }
.property-main-content .lists {
overflow: hidden; }
.property-main-content .lists > ul {
width: 50%;
float: left; }
.property-main-content .detail-feature h4 {
padding-bottom: 15px; }
.property-main-content .detail-list li {
padding-bottom: 20px; }
.property-main-content .detail-list li:last-child {
padding-bottom: 0; }
.property-main-content .detail-video h4 {
padding-bottom: 15px; }
.property-main-content .detail-video .video-item {
position: relative; }
.property-main-content .detail-video .video-item img {
width: 100%;
border-radius: 10px; }
.property-main-content .detail-video .video-item .youtube-icon {
position: absolute;
left: 50%;
top: 50%;
color: #fb5252;
font-size: 65px;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); }
.property-main-content .virtual-tour h4 {
padding-bottom: 15px; }
.property-main-content .virtual-tour img {
width: 100%;
border-radius: 10px; }
.property-main-content .map-canvas {
border-radius: 5px; }
.property-main-content .thumbnail-items {
padding: 45px 0; }
.property-main-content .thumbnail-items h4 {
padding: 0 25px 25px;
margin-bottom: 35px;
border-bottom: 1px solid #eaeaea; }
.property-main-content .thumbnail-items .thumb-items {
padding: 0 25px; }
.property-main-content .thumbnail-items .thumb-item img {
border-radius: 5px; }
.property-main-content .thumbnail-items .thumb-item .content {
padding-left: 20px; }
.property-main-content .thumbnail-items .thumb-item .list-inline li {
font-size: 13px;
margin-right: 2px; }
.property-main-content .thumbnail-items h6 a {
color: #343851; }
.property-main-content .property-collapse .collapse-item {
background: #f9f9f9;
padding: 30px 25px;
margin-bottom: 10px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-main-content .property-collapse .collapse-item .head {
overflow: hidden; }
.property-main-content .property-collapse .collapse-item .head h5 {
line-height: 1.2; }
.property-main-content .property-collapse .collapse-item .head .left-head {
float: left; }
.property-main-content .property-collapse .collapse-item .head .right-head {
float: right;
padding-right: 10px;
padding-top: 15px; }
.property-main-content .property-collapse .collapse-item .view-more {
color: #757c8c; }
.property-main-content .property-collapse .collapse-item .view-more:hover, .property-main-content .property-collapse .collapse-item .view-more.active {
color: #fb5252; }
.property-main-content .property-collapse .collapse-item .content {
text-align: center;
position: relative;
height: 0;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
padding: 0; }
.property-main-content .property-collapse .collapse-item:last-child {
margin-bottom: 0; }
.property-main-content .property-collapse .collapse-item.show .content {
height: auto;
opacity: 1;
padding: 30px 0 20px; }
.property-main-content .property-form h4 {
padding-bottom: 15px; }
.property-main-content .property-form .list-inline {
padding-bottom: 20px; }
.property-main-content .property-form .list-inline .heading-primary {
font-weight: 600; }
.property-main-content .property-form .list-inline li {
margin-right: 2px; }
.property-main-content .property-form .list-inline li i {
font-size: 12px; }
.property-main-content .property-form .input-full {
width: 100%;
margin-bottom: 25px; }
.property-main-content .property-form .input-half {
width: 50%;
float: left;
margin-bottom: 30px; }
.property-main-content .property-form .input-half:nth-child(3) {
padding-right: 15px; }
.property-main-content .property-form .input-half:nth-child(4) {
padding-left: 15px; }
.property-main-content .property-form input, .property-main-content .property-form textarea {
width: 100%;
padding: 13px 20px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.property-main-content .property-form textarea {
min-height: 150px; }
.property-sidebar .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-sidebar .sidebar-item h4 {
padding-bottom: 15px; }
.property-sidebar .sidebar-item .recent-item .img {
padding-right: 20px; }
.property-sidebar .sidebar-item .recent-item .img img {
border-radius: 5px; }
.property-sidebar .sidebar-item h6 a {
color: #343851; }
.property-sidebar .item-one {
padding: 0; }
.property-sidebar .item-one .sidebar-author {
position: relative; }
.property-sidebar .item-one .sidebar-author img {
width: 100%;
border-radius: 5px; }
.property-sidebar .item-one .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.property-sidebar .item-one .contact {
padding: 30px 25px; }
.property-sidebar .item-one .contact input, .property-sidebar .item-one .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.property-sidebar .item-one .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.property-sidebar .item-one .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.property-grid .sidebar-search {
padding: 45px 25px; }
.property-grid .sidebar-search h4 {
padding-bottom: 10px; }
.property-grid .sidebar-search .input-full {
margin-bottom: 20px;
position: relative; }
.property-grid .sidebar-search .input-full input {
width: 100%;
padding: 12px 25px;
color: #757c8c;
border: 1px solid #ddd;
border-radius: 5px;
background: #fff; }
.property-grid .sidebar-search .input-full input::-webkit-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input:-ms-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input::-ms-input-placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full input::placeholder {
color: #757c8c; }
.property-grid .sidebar-search .input-full .form-icon {
position: absolute;
right: 15px;
top: 14px;
cursor: pointer; }
.property-grid .sidebar-search .select-option {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd;
width: 100%;
margin-bottom: 20px; }
.property-grid .sidebar-search .select-option:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.property-grid .sidebar-search .select-option select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #757c8c; }
.property-grid .sidebar-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.property-grid .sidebar-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.property-grid .sidebar-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.property-grid .sidebar-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 7px;
left: 3px;
color: #fff; }
.property-grid .sidebar-search .checkbox input:checked + label:before {
background: #fb5252; }
.property-grid .sidebar-search .checkbox-lists {
width: 50%;
float: left;
padding: 0 0 20px; }
.property-grid .sidebar-search .range-slider {
margin-bottom: 20px; }
.property-grid .sidebar-search .range-slider .ui-widget.ui-widget-content {
border: 0;
background: #fb5252;
border-radius: 0;
height: 7px; }
.property-grid .sidebar-search .range-slider .ui-slider-horizontal .ui-slider-range-max {
border-radius: 0;
background: #ededed; }
.property-grid .sidebar-search .range-slider input {
border: 0;
color: #fb5252;
width: 100px; }
.property-grid .sidebar-search .range-slider .ui-state-default, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-default, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-hover, .property-grid .sidebar-search .range-slider .ui-widget-content .ui-state-focus {
border: 1px solid #aaa;
border-radius: 50%;
background: #fff;
width: 15px;
height: 15px;
top: -4px;
outline: 0;
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05); }
.property-grid .sidebar-search .range-slider-two {
margin-bottom: 20px; }
.property-grid .sidebar-search .range-slider-two .ui-widget.ui-widget-content {
border: 0;
background: #ededed;
border-radius: 0;
height: 7px; }
.property-grid .sidebar-search .range-slider-two .ui-slider .ui-slider-range {
border-radius: 0;
background: #fb5252; }
.property-grid .sidebar-search .range-slider-two input {
border: 0;
color: #fb5252;
width: 100%;
text-align: center; }
.property-grid .sidebar-search .range-slider-two .ui-state-default, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-default, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-hover, .property-grid .sidebar-search .range-slider-two .ui-widget-content .ui-state-focus {
border: 1px solid #aaa;
border-radius: 50%;
background: #fff;
width: 15px;
height: 15px;
top: -4px;
outline: 0;
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05); }
.property-grid .sidebar-search .view-advance-search {
display: inline-block;
color: #fb5252;
margin-bottom: 20px;
margin-top: 10px; }
.property-grid .sidebar-search .view-advance-search i {
padding-left: 10px;
position: relative;
top: 2px; }
.property-grid .sidebar-search .property-advance {
display: none; }
.property-grid .sidebar-search .input-submit input {
background: #fb5252;
color: #fff;
width: 100%;
text-align: center;
padding: 13px 10px;
border-radius: 5px;
font-weight: 600; }
.property-grid .sidebar-search .input-submit input:hover {
background: #fc6b6b; }
.property-grid .property-filter {
background: #fff;
padding: 15px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-grid .property-filter .dropdown a.btn {
background: transparent;
margin-left: 20px;
border: 0;
padding: 0;
color: #757c8c; }
.property-grid .property-filter .dropdown a.btn:focus {
-webkit-box-shadow: unset;
box-shadow: unset; }
.property-grid .property-filter .list-inline li:first-child {
padding-right: 15px; }
.property-grid .property-filter .list-inline a {
color: #343851;
padding: 5px 10px;
border-radius: 3px; }
.property-grid .property-filter .list-inline a.active {
background: #ededed;
color: #fb5252; }
.property-grid .property-filter .list-inline a:hover {
color: #fb5252; }
.property-grid .property-filter .list-inline a.show-filter {
background: #fff;
border: 1px solid #fb5252;
color: #fb5252; }
.property-grid .property-filter .list-inline a.show-filter i {
padding-right: 10px; }
.property-grid .property-filter .list-inline a.show-filter:hover {
background: #fb5252;
color: #fff; }
.property-grid .property-layout-two .property-gridwise {
display: block; }
.property-grid .property-layout-two .property-listwise {
display: none; }
.property-grid.advance-search-offcanvas {
width: 320px;
position: fixed;
left: -0;
top: 0;
z-index: 1000;
background: #fff;
display: none;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.property-grid.advance-search-offcanvas .sidebar-search {
height: 100vh; }
.property-grid.advance-search-offcanvas .close-search {
position: absolute;
right: 0;
top: 5px;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
color: #343851;
font-size: 12px;
font-weight: bold;
border-radius: 3px; }
.property-grid.advance-search-offcanvas .close-search:hover {
background: #fb5252;
color: #fff; }
.property-list .property-layout-two .property-gridwise {
display: none; }
.property-list .property-layout-two .property-listwise {
display: block; }
.property-gallery-layout img {
width: 100%;
border: 1px solid #fff; }
.property-gallery-layout .slick-arrow {
background: rgba(255, 255, 255, 0.5);
color: #343851;
width: 60px;
height: 60px;
border-radius: 3px;
line-height: 60px;
text-align: center;
font-size: 28px;
display: inline-block !important;
position: absolute;
top: 50%;
margin-top: -25px;
z-index: 9;
font-weight: bold;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.property-gallery-layout .slick-arrow.flaticon-left-chevron {
left: 0; }
.property-gallery-layout .slick-arrow.flaticon-right-chevron {
right: 0; }
.property-gallery-layout .slick-arrow:hover {
background: #fb5252;
color: #fff; }
/*
========================================
12 - Testimonial Section
========================================
*/
.testimonial-layout-one {
position: relative; }
.testimonial-layout-one:before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.77)), to(rgba(0, 0, 0, 0.77))), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("https://via.placeholder.com/1920x700/aaa/fff");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.testimonial-layout-one .section-head h2, .testimonial-layout-one .section-head p {
color: #fff; }
.testimonial-layout-one .testimonial-dots {
float: right; }
.testimonial-layout-one .testimonial-dots .slick-dots {
position: relative; }
.testimonial-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.testimonial-layout-one .slick-dots li.slick-active button {
background: #fff; }
.testimonial-layout-one .slick-dots li button {
background: rgba(255, 255, 255, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.testimonial-layout-one .slick-dots li button:before {
display: none; }
.testimonial-layout-one .testimonial-slider {
width: 100%;
margin-bottom: 0; }
.testimonial-layout-one .testimonial-slider p, .testimonial-layout-one .testimonial-slider i, .testimonial-layout-one .testimonial-slider h4 {
color: #fff; }
.testimonial-layout-one .testimonial-slider .lead {
font-size: 24px;
line-height: 1.5;
padding: 20px 0 15px;
font-weight: 500; }
.testimonial-layout-one .testimonial-slider img {
border: 4px solid #fff;
border-radius: 50%; }
.testimonial-layout-one .testimonial-slider h4 {
padding: 20px 0 0;
margin-bottom: 0; }
.testimonial-layout-one .testimonial-tt {
padding: 0 40px 0 0;
opacity: 0.5; }
.testimonial-layout-one .testimonial-tt.slick-current {
opacity: 1; }
.testimonial-layout-two .testimonial-carousel {
position: relative;
left: 50px;
background: url("../img/testimonial/testimonial-bg-2.png") no-repeat;
background-size: contain;
height: 590px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0 70px 0 120px; }
.testimonial-layout-two .testimonial-carousel .lead {
font-weight: 600; }
.testimonial-layout-two .testimonial-carousel p, .testimonial-layout-two .testimonial-carousel h4, .testimonial-layout-two .testimonial-carousel i {
color: #fff; }
.testimonial-layout-two .testimonial-carousel .lead {
padding: 20px 0 10px; }
.testimonial-layout-two .testimonial-carousel img {
border: 2px solid #fff;
border-radius: 50%;
margin-bottom: 5px; }
.testimonial-layout-two .testimonial-arrow .slick-arrow {
background: #0ad00a;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 24px;
text-align: center;
display: inline-block;
color: #fff;
border-radius: 5px;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.testimonial-layout-two .testimonial-arrow .slick-arrow:hover {
background: #fb5252; }
.testimonial-layout-two .testimonial-arrow .slick-arrow:first-child {
margin-right: 10px; }
.admin-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url("../img/property-bg-2.png");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/property-bg-2.png");
background-repeat: no-repeat;
background-position: center -50px;
overflow: hidden; }
.admin-layout-one .admin-right {
position: relative;
right: -30px; }
.admin-layout-one .admin-left .quote {
font-size: 24px;
font-style: italic;
font-weight: 500;
padding-bottom: 30px; }
.testimonial-layout-three {
background: url("../img/testimonial-bg-2.png") no-repeat;
background-size: cover; }
.testimonial-layout-three .feature-carousel-two {
margin: 0 -15px; }
.testimonial-layout-three .testimonial-tt {
padding: 0 15px; }
.testimonial-layout-three .view-more {
color: #fff; }
.testimonial-layout-three .testimonial-item {
background: #fff;
padding: 60px 35px 50px;
border-radius: 5px;
position: relative;
overflow: hidden; }
.testimonial-layout-three .testimonial-item .tag-line {
background: #fb5252;
color: #fff;
display: inline-block;
padding: 10px 10px 12px;
width: 150px;
text-align: center;
text-transform: uppercase;
font-weight: 600;
line-height: 1;
position: absolute;
right: -40px;
top: 20px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg); }
.testimonial-layout-three .testimonial-item img {
display: inline-block;
margin-bottom: 25px;
margin-top: 10px;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.27);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.27);
border-radius: 50%;
border: 3px solid #fff; }
.testimonial-layout-three .testimonial-item h4 {
font-weight: 500; }
.testimonial-layout-three .testimonial-item .list-inline {
margin-bottom: 15px; }
.testimonial-layout-three .slick-arrow {
border-radius: 50%;
background-color: #fff;
-webkit-box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
box-shadow: 0px 0px 32px 0px rgba(111, 120, 142, 0.18);
width: 70px;
height: 70px;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
line-height: 70px;
color: #fb5252;
z-index: 3;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: bold;
cursor: pointer; }
.testimonial-layout-three .slick-arrow.flaticon-right-chevron {
right: -20px; }
.testimonial-layout-three .slick-arrow.flaticon-left-chevron {
left: -20px; }
.testimonial-layout-four {
padding-bottom: 250px; }
.testimonial-layout-four .testimonial-item {
background: #fff;
border-radius: 5px;
-webkit-box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.15);
padding: 40px 35px; }
.testimonial-layout-four .testimonial-item .list-inline-item {
margin-right: 2px; }
.testimonial-layout-four .testimonial-item p.lead {
padding: 25px 0 10px; }
.testimonial-layout-four .testimonial-item .img {
margin-right: 15px; }
.testimonial-layout-four .testimonial-item .img img {
border: 2px solid #fff;
-webkit-box-shadow: 0px 12px 43px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 12px 43px 0px rgba(111, 120, 142, 0.1);
border-radius: 50%; }
.testimonial-layout-four .testimonial-item .author h6 {
text-transform: uppercase;
font-size: 17px; }
.testimonial-innar {
padding-bottom: 0; }
/*
========================================
13 - Client Section
========================================
*/
.client-layout-one .client-item {
text-align: center;
padding: 25px 15px; }
.client-layout-one .client-item img {
max-width: 100%; }
.client-layout-one .client-item .normal {
display: inline-block; }
.client-layout-one .client-item .active {
display: none; }
.client-layout-one .client-item.slick-current {
background: #fff; }
.client-layout-one .client-item.slick-current .normal {
display: none; }
.client-layout-one .client-item.slick-current .active {
display: inline-block; }
/*
========================================
14 - Blog Section
========================================
*/
.blog-layout-one {
position: relative; }
.blog-layout-one:before {
content: "";
background-image: url("../img/blog-bg.png");
background-repeat: no-repeat;
background-size: contain;
background-position: center 40px;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: -1; }
.blog-layout-one .blog-carousel {
margin: 0 -15px; }
.blog-layout-one .blog-tt {
padding: 0 15px; }
.blog-layout-one .blog-item {
background: #fff;
border: 1px solid #ededed;
border-radius: 5px;
padding: 30px;
position: relative; }
.blog-layout-one .blog-item::before {
content: "";
background-image: -webkit-gradient(linear, right top, left top, from(rgba(251, 82, 82, 0.9)), to(rgba(251, 82, 82, 0.9))), url("https://via.placeholder.com/370x400/eee/999");
background-image: -webkit-linear-gradient(right, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-image: -o-linear-gradient(right, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-image: linear-gradient(to left, rgba(251, 82, 82, 0.9), rgba(251, 82, 82, 0.9)), url("https://via.placeholder.com/370x400/eee/999");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
border-radius: 5px;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-one .blog-item h5, .blog-layout-one .blog-item h4, .blog-layout-one .blog-item p, .blog-layout-one .blog-item a {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
position: relative;
z-index: 2; }
.blog-layout-one .blog-item p {
opacity: 0; }
.blog-layout-one .blog-item h5 {
position: relative;
line-height: 1.2;
font-size: 1.4em;
text-transform: uppercase;
padding-left: 15px; }
.blog-layout-one .blog-item h5:before {
content: "";
height: 100%;
width: 3px;
background: #343851;
position: absolute;
left: 0;
top: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-one .blog-item h5 span {
display: block;
font-size: .8em; }
.blog-layout-one .blog-item h4 {
padding: 20px 0 15px;
font-size: 1.4em; }
.blog-layout-one .blog-item a {
color: #343851; }
.blog-layout-one .blog-item:hover:before, .blog-layout-one .blog-item.active:before {
opacity: 1; }
.blog-layout-one .blog-item:hover p, .blog-layout-one .blog-item.active p {
opacity: 1; }
.blog-layout-one .blog-item:hover h5:before, .blog-layout-one .blog-item.active h5:before {
background: #fff; }
.blog-layout-one .blog-item:hover h5, .blog-layout-one .blog-item:hover p, .blog-layout-one .blog-item:hover h4 a, .blog-layout-one .blog-item.active h5, .blog-layout-one .blog-item.active p, .blog-layout-one .blog-item.active h4 a {
color: #fff; }
.blog-layout-one .blog-item:hover .button-blog, .blog-layout-one .blog-item.active .button-blog {
border-color: #fff;
background: #fff;
color: #fb5252; }
.blog-layout-one .blog-dots {
float: right; }
.blog-layout-one .blog-dots .slick-dots {
position: relative; }
.blog-layout-one .slick-dots li {
width: 15px;
height: 15px; }
.blog-layout-one .slick-dots li.slick-active button {
background: #fb5252; }
.blog-layout-one .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.blog-layout-one .slick-dots li button:before {
display: none; }
.blog-layout-two .blog-item {
background: #fff; }
.blog-layout-two .blog-item .img {
position: relative; }
.blog-layout-two .blog-item img {
width: 100%; }
.blog-layout-two .blog-item .hover {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end; }
.blog-layout-two .blog-item .hover h4 {
margin: 0 30px 22px; }
.blog-layout-two .blog-item .hover a {
color: #fff; }
.blog-layout-two .blog-item .content {
padding: 30px; }
.blog-layout-two .blog-item .content p {
padding: 20px 0 10px; }
.blog-layout-two .blog-item .content .blog-links li {
position: relative;
padding-left: 15px; }
.blog-layout-two .blog-item .content .blog-links li:before {
content: "";
width: 5px;
height: 5px;
background: #757c8c;
border-radius: 50%;
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-two .blog-item .content .blog-links li:not(:last-child) {
padding-right: 15px; }
.blog-layout-two .blog-item .content .blog-links li:hover:before {
background: #fb5252; }
.blog-layout-two .blog-item .content .blog-links li:hover a {
color: #fb5252; }
.blog-layout-two .blog-item .content .blog-links a {
color: #757c8c; }
.blog-layout-two .blog-item:hover .hover {
background: rgba(251, 82, 82, 0.65); }
.blog-layout-three {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("https://via.placeholder.com/1920x900/ccc/000");
background-repeat: no-repeat;
background-size: cover; }
.blog-layout-three .blog-item {
background: #fff; }
.blog-layout-three .blog-item img {
width: 100%; }
.blog-layout-three .blog-item .content {
padding: 30px;
border-bottom: 1px solid #ededed; }
.blog-layout-three .blog-item .content .list-inline li:not(:last-child) {
margin-right: 2px; }
.blog-layout-three .blog-item .content .list-inline a {
color: #fb5252; }
.blog-layout-three .blog-item .content h4 {
padding: 20px 0; }
.blog-layout-three .blog-item .content h4 a {
color: #343851; }
.blog-layout-three .blog-item .blog-footer {
padding: 25px 30px; }
.blog-layout-three .blog-item .blog-footer .list-inline a {
color: #757c8c; }
.blog-layout-three .blog-item .blog-footer .list-inline a:hover {
color: #fb5252; }
.blog-layout-three .blog-item .button {
padding: 6px 20px;
text-transform: unset;
border-radius: 3px; }
.blog-layout-four {
background: #f9f9f9; }
.blog-layout-four .section-heading p.primary-color {
text-transform: uppercase;
font-weight: 600; }
.blog-layout-four .section-heading h2 {
text-transform: uppercase;
padding-top: 5px; }
.blog-layout-four .blog-item {
background: #fff;
-webkit-box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09);
box-shadow: 0px 0px 57px 0px rgba(178, 178, 178, 0.09); }
.blog-layout-four .blog-item .img {
position: relative; }
.blog-layout-four .blog-item .img img {
width: 100%; }
.blog-layout-four .blog-item .hover {
position: absolute;
width: 55px;
height: 55px;
background: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
top: 30px;
left: 30px; }
.blog-layout-four .blog-item .hover h4 {
margin-bottom: 0;
line-height: 1; }
.blog-layout-four .blog-item .hover p {
line-height: 1;
text-transform: uppercase;
padding-top: 5px;
color: #343851; }
.blog-layout-four .blog-item .content {
padding: 25px 30px; }
.blog-layout-four .blog-item .content h4 {
text-transform: uppercase;
padding-bottom: 5px; }
.blog-layout-four .blog-item .content h4 a {
color: #343851; }
.blog-layout-four .blog-item .content .list-inline {
padding-bottom: 15px; }
.blog-layout-four .blog-item .content a {
color: #757c8c; }
.blog-layout-four .blog-item .content a:hover {
color: #fb5252; }
.blog-layout-five .blog-item {
background: #fff;
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer; }
.blog-layout-five .blog-item img {
width: 100%; }
.blog-layout-five .blog-item .content {
position: absolute;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.47);
padding: 30px 0 20px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content li, .blog-layout-five .blog-item .content p, .blog-layout-five .blog-item .content a {
color: #fff; }
.blog-layout-five .blog-item .content li, .blog-layout-five .blog-item .content p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content h4 {
padding: 15px 0 0;
font-weight: 500;
margin-bottom: 0; }
.blog-layout-five .blog-item .content .blog-top {
padding: 0 30px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-five .blog-item .content .blog-footer {
padding: 20px 30px 0;
overflow: hidden; }
.blog-layout-five .blog-item .content .blog-footer .author {
float: left; }
.blog-layout-five .blog-item .content .blog-footer .author .img {
margin-right: 8px; }
.blog-layout-five .blog-item .content .blog-footer .comment {
float: right;
margin-top: 8px; }
.blog-layout-five .blog-item:hover {
-webkit-box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 22px 25px 0px rgba(111, 120, 142, 0.1); }
.blog-layout-five .blog-item:hover .content {
background: #fff; }
.blog-layout-five .blog-item:hover li > a, .blog-layout-five .blog-item:hover li, .blog-layout-five .blog-item:hover p {
color: #757c8c; }
.blog-layout-five .blog-item:hover li > a:hover {
color: #fb5252; }
.blog-layout-five .blog-item:hover h4 a {
color: #343851; }
.blog-layout-five .blog-item:hover .blog-top {
border-color: rgba(0, 0, 0, 0.1); }
.blog-layout-six .blog-item {
background: #fff;
border: 1px solid #eaeaea; }
.blog-layout-six .blog-item img {
width: 100%; }
.blog-layout-six .blog-item .content {
padding: 30px; }
.blog-layout-six .blog-item p a {
color: #757c8c; }
.blog-layout-six .blog-item p a:hover {
color: #fb5252; }
.blog-layout-six .blog-item h4 {
padding: 10px 0 20px; }
.blog-layout-six .blog-item h4 a {
color: #343851; }
.blog-layout-six .button-blog {
padding: 10px 10px 10px 30px;
border: 1px solid rgba(251, 82, 82, 0.15);
border-radius: 5px;
color: #fb5252;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-weight: 600; }
.blog-layout-six .button-blog i {
width: 30px;
height: 30px;
margin-left: 20px;
background: rgba(251, 82, 82, 0.1);
color: #fb5252;
display: inline-block;
border-radius: 3px;
text-align: center;
line-height: 30px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.blog-layout-six .button-blog:hover {
background: #fb5252;
border-color: #fb5252;
color: #fff !important; }
.blog-layout-six .button-blog:hover i {
color: #fb5252;
background: #fff; }
.blog-transparent:before {
display: none; }
.single-blog-layout .blog-content-wrap .quote {
background: #fff;
padding: 35px;
font-style: italic;
border-radius: 5px;
font-size: 20px;
-webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.04);
margin: 20px 0 45px; }
.single-blog-layout .blog-content-wrap img {
border-radius: 5px;
width: 100%; }
.single-blog-layout .blog-content-wrap h2 {
padding: 25px 0 5px; }
.single-blog-layout .blog-content-wrap .list-blog {
padding: 15px 0; }
.single-blog-layout .blog-content-wrap .list-blog li {
position: relative;
padding-left: 15px; }
.single-blog-layout .blog-content-wrap .list-blog li:before {
content: "";
width: 6px;
height: 6px;
background: #fb5252;
border-radius: 50%;
position: absolute;
left: 0;
top: 10px; }
.single-blog-layout .blog-content-wrap .list-blog li:not(:last-child) {
margin-bottom: 15px; }
.single-blog-layout .blog-content-wrap .blog-row img {
-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-content-wrap .post-hierarchy {
padding: 5px 0 15px; }
.single-blog-layout .blog-content-wrap .post-hierarchy i {
padding-right: 5px; }
.single-blog-layout .blog-content-wrap .post-hierarchy li:not(:last-child) {
padding-right: 10px; }
.single-blog-layout .blog-content-wrap .post-hierarchy a {
color: #343851; }
.single-blog-layout .blog-content-wrap .post-hierarchy a:hover {
color: #fb5252; }
.single-blog-layout .blog-content-wrap .blog-tag {
border-top: 1px solid #eaeaea;
padding-top: 30px;
margin-top: 40px; }
.single-blog-layout .blog-content-wrap .blog-tag a {
padding: 6px 20px;
display: inline-block;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 3px; }
.single-blog-layout .blog-content-wrap .blog-tag a:hover {
background: #fb5252;
color: #fff; }
.single-blog-layout .blog-author-layout {
background: #fff;
padding: 45px 40px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-author-layout .img {
padding-right: 20px; }
.single-blog-layout .blog-author-layout h4 a {
color: #343851; }
.single-blog-layout .comment-layout {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .comment-layout h4 {
padding-bottom: 15px; }
.single-blog-layout .comment-layout .list-inline {
padding-bottom: 20px; }
.single-blog-layout .comment-layout .list-inline .heading-primary {
font-weight: 600; }
.single-blog-layout .comment-layout .list-inline li {
margin-right: 2px; }
.single-blog-layout .comment-layout .list-inline li i {
font-size: 12px; }
.single-blog-layout .comment-layout .input-full {
width: 100%;
margin-bottom: 25px; }
.single-blog-layout .comment-layout .input-half {
width: 50%;
float: left;
margin-bottom: 30px; }
.single-blog-layout .comment-layout .input-half:nth-child(2) {
padding-right: 15px; }
.single-blog-layout .comment-layout .input-half:nth-child(3) {
padding-left: 15px; }
.single-blog-layout .comment-layout input, .single-blog-layout .comment-layout textarea {
width: 100%;
padding: 13px 20px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.single-blog-layout .comment-layout textarea {
min-height: 150px; }
.single-blog-layout .blog-sidebar .sidebar-item {
background: #fff;
padding: 45px 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04); }
.single-blog-layout .blog-sidebar .sidebar-item h4 {
padding-bottom: 15px; }
.single-blog-layout .blog-sidebar .sidebar-item .recent-item .img {
padding-right: 20px; }
.single-blog-layout .blog-sidebar .sidebar-item .recent-item .img img {
border-radius: 5px; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists li {
margin-bottom: 3px; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists li:last-child {
margin-bottom: 0; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists a {
display: block;
padding: 12px 25px;
background: #f9f9f9;
color: #343851;
font-weight: 500; }
.single-blog-layout .blog-sidebar .sidebar-item .category-lists a:hover {
background: #fb5252;
color: #fff;
border-left: 2px solid #343851; }
.single-blog-layout .blog-sidebar .sidebar-contact {
padding: 0; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author {
position: relative; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author img {
width: 100%;
border-radius: 5px; }
.single-blog-layout .blog-sidebar .sidebar-contact .sidebar-author .author {
position: absolute;
left: 0;
bottom: -10px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact {
padding: 30px 25px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact input, .single-blog-layout .blog-sidebar .sidebar-contact .contact textarea {
width: 100%;
padding: 12px 20px;
border: 1px solid #eaeaea;
border-radius: 3px;
margin-bottom: 25px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact textarea {
margin-bottom: 20px;
min-height: 80px; }
.single-blog-layout .blog-sidebar .sidebar-contact .contact .button {
font-weight: 400;
width: 100%;
padding: 14px 25px;
border-radius: 3px; }
.single-blog-layout .item-tag li {
display: inline-block;
padding: 4px 2px; }
.single-blog-layout .item-tag a {
padding: 6px 20px;
display: inline-block;
background: rgba(251, 82, 82, 0.15);
color: #fb5252;
border-radius: 3px; }
.single-blog-layout .item-tag a:hover {
background: #fb5252;
color: #fff; }
/*
========================================
15 - Sale Section
========================================
*/
.sale-layout-one .sale-item {
-webkit-box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
box-shadow: 0px 6px 25px 0px rgba(111, 120, 142, 0.15);
background: #fff; }
.sale-layout-one .sale-item .img {
position: relative; }
.sale-layout-one .sale-item .img img {
width: 100%; }
.sale-layout-one .sale-item .img:hover .slick-arrow {
opacity: 1; }
.sale-layout-one .sale-item .img:hover .hover {
background: rgba(0, 0, 0, 0.2); }
.sale-layout-one .sale-item .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.sale-layout-one .sale-item .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.sale-layout-one .sale-item .rent-tag {
background: #ff9c00;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
right: 30px;
top: 30px; }
.sale-layout-one .sale-item .feature-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.sale-layout-one .sale-item .img-footer {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px; }
.sale-layout-one .sale-item .img-footer h4 {
float: left;
color: #fff;
line-height: 1; }
.sale-layout-one .sale-item .img-footer h4 span {
font-size: 16px;
font-weight: 400; }
.sale-layout-one .sale-item .img-footer .list-inline {
float: right; }
.sale-layout-one .sale-item .img-footer .list-inline a {
font-size: 24px;
color: #fff;
line-height: 1; }
.sale-layout-one .sale-item .img-footer .list-inline a:hover {
color: #fb5252; }
.sale-layout-one .sale-item .slick-arrow {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 2;
color: #fff;
font-size: 32px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: pointer;
font-weight: 500; }
.sale-layout-one .sale-item .slick-arrow.flaticon-right {
right: 20px; }
.sale-layout-one .sale-item .slick-arrow.flaticon-left {
left: 20px; }
.sale-layout-one .sale-item .content {
padding: 30px 30px 15px; }
.sale-layout-one .sale-item .content h4 {
padding-bottom: 2px; }
.sale-layout-one .sale-item .content h4 a {
color: #343851; }
.sale-layout-one .sale-item .content h4 a:hover {
color: #fb5252; }
.sale-layout-one .sale-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px; }
.sale-layout-one .sale-item .footer-content > div {
float: left; }
.sale-layout-one .sale-item .footer-content > div:last-child {
float: right; }
.sale-layout-one .sale-item .footer-content .author .img {
margin-right: 10px; }
.sale-layout-one .sale-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.sale-layout-one .sale-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.sale-layout-one .sale-item .footer-content a.active {
color: #fb5252; }
.sale-layout-one .sale-item .footer-content a.active > i:before {
content: "\f106"; }
.sale-layout-one .sale-item .house-feature {
border-top: 1px solid #ededed;
padding-top: 25px;
margin-top: 15px;
display: none; }
.sale-layout-one .sale-item .house-feature i {
padding-right: 5px; }
.ls-layout-one .container {
position: relative; }
.ls-layout-one .sale-wrap {
position: relative;
z-index: 2; }
.ls-layout-one .sale-wrap:before {
content: "";
width: 518px;
height: 584px;
background: url("../img/latest-sale/shape.png") no-repeat;
position: absolute;
right: -250px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1; }
.ls-layout-one .sale-wrap > .row {
position: relative;
z-index: 3;
margin: 0;
background-color: #fff;
border-radius: 20px; }
.ls-layout-one .sale-wrap > .row .col-md-6:first-child {
padding-left: 0; }
.ls-layout-one .sale-left {
position: relative;
border-radius: 20px 0 0 20px;
overflow: hidden; }
.ls-layout-one .sale-left > img {
width: 100%; }
.ls-layout-one .sale-left .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.ls-layout-one .sale-left .sale-tag {
background: #fb5252;
color: #fff;
font-weight: 600;
display: inline-block;
padding: 4px 15px;
border-radius: 5px;
position: absolute;
left: 30px;
top: 30px; }
.ls-layout-one .sale-left .author {
position: absolute;
left: 30px;
bottom: 30px; }
.ls-layout-one .sale-left .author img {
border: 2px solid #fff;
border-radius: 50%; }
.ls-layout-one .sale-left .author .content h4 {
color: #fff;
font-size: 1.3em;
margin-left: 15px; }
.ls-layout-one .sale-left .author .content span {
display: block;
font-weight: 400; }
.ls-layout-one .sale-feature {
border-top: 1px solid #ededed;
padding-top: 30px; }
.ls-layout-one .sale-feature .sale-flex {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.ls-layout-one .sale-feature .sale-flex i {
padding-right: 8px; }
.ls-layout-one .sale-right {
padding-right: 30px; }
.ls-layout-one .sale-right h4 {
margin-bottom: 25px; }
.ls-layout-one .sale-right h3 {
margin-bottom: 25px; }
.ls-layout-one .sale-right p i {
padding-right: 8px; }
.ls-layout-one.background-sale .bg-shape:nth-child(4) {
opacity: 0; }
/*
========================================
16 - FAQ Section
========================================
*/
.faq-layout-one .nav-tabs {
display: block;
border: 0;
text-align: center;
margin-bottom: 45px; }
.faq-layout-one .nav-tabs .nav-item {
margin-bottom: 0;
border: 0;
display: inline-block;
background: rgba(251, 82, 82, 0.2);
font-weight: 600;
font-size: 17px;
text-transform: uppercase;
color: #fb5252;
border-radius: 5px;
padding: 12px 25px;
margin: 0 10px; }
.faq-layout-one .nav-tabs .nav-item.active {
background: #fb5252;
color: #fff; }
.faq-layout-one .tab-content {
background: #fff;
-webkit-box-shadow: 0px 0px 43px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 0px 43px 0px rgba(111, 120, 142, 0.09);
padding: 90px 75px; }
.faq-layout-one .tab-content .tab-pane .admin-image {
position: relative; }
.faq-layout-one .tab-content .tab-pane .admin-image:before {
content: "";
width: 320px;
height: 320px;
background: #fb5252;
-webkit-clip-path: ellipse(28% 50% at 50% 50%);
clip-path: ellipse(28% 50% at 50% 50%);
position: absolute;
left: -30px;
top: -30px;
-webkit-transform: rotate(-35deg);
-ms-transform: rotate(-35deg);
transform: rotate(-35deg); }
.faq-layout-one .tab-content .tab-pane .admin-image img {
border: 10px solid #fff;
-webkit-box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
box-shadow: 0px 0px 51px 0px rgba(111, 120, 142, 0.08);
border-radius: 50%;
position: relative;
z-index: 2; }
.faq-layout-one .accordion .card {
background: #fff;
border-radius: 5px;
overflow: hidden;
border: 0;
-webkit-box-shadow: 0px 0px 37px 0px rgba(0, 85, 149, 0.08);
box-shadow: 0px 0px 37px 0px rgba(0, 85, 149, 0.08);
padding: 15px 20px;
overflow: hidden; }
.faq-layout-one .accordion .card .card-header {
background: transparent;
border: 0;
padding: 0; }
.faq-layout-one .accordion .card .card-header h2 {
line-height: 0; }
.faq-layout-one .accordion .card .card-header button {
text-align: left;
padding: 0;
color: #343851;
font-weight: 600;
font-size: 18px;
width: 100%;
text-decoration: none; }
.faq-layout-one .accordion .card .card-header button i {
float: right;
font-weight: bold; }
.faq-layout-one .accordion .card .card-header button:hover, .faq-layout-one .accordion .card .card-header button:focus, .faq-layout-one .accordion .card .card-header button:visited {
text-decoration: none; }
.faq-layout-one .accordion .card .card-header button[aria-expanded='true'] i {
color: #fb5252; }
.faq-layout-one .accordion .card .card-body {
padding: 20px 0 0; }
.faq-layout-one .accordion .card:not(:last-child) {
margin-bottom: 20px; }
/*
========================================
17 - Event Section
========================================
*/
/*
========================================
18 - Listing Section
========================================
*/
.listing-layout-one .listing-item {
padding: 60px 40px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
background: #fff;
-webkit-box-shadow: unset;
box-shadow: unset; }
.listing-layout-one .listing-item .icon {
width: 150px;
height: 150px;
border-radius: 50%;
background: rgba(251, 82, 82, 0.2);
margin: 0 auto;
color: #fb5252;
font-size: 80px;
line-height: 150px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.listing-layout-one .listing-item h4 {
padding: 30px 0 15px; }
.listing-layout-one .listing-item:hover, .listing-layout-one .listing-item.active {
-webkit-box-shadow: 0px 32px 43px 0px rgba(111, 120, 142, 0.09);
box-shadow: 0px 32px 43px 0px rgba(111, 120, 142, 0.09); }
.listing-layout-one .listing-item:hover .icon, .listing-layout-one .listing-item.active .icon {
background: #fb5252;
color: #fff; }
/*
========================================
19 - Gallery Section
========================================
*/
.gallery-layout-one {
position: relative;
margin-top: -230px;
margin-bottom: -330px; }
.gallery-layout-one p.primary-color {
font-weight: 600;
text-transform: uppercase; }
.gallery-layout-one h2 {
text-transform: uppercase;
padding-top: 5px; }
.gallery-layout-one .slider-item {
position: relative; }
.gallery-layout-one .slider-item img {
width: 100%; }
.gallery-layout-one .slider-item:before {
content: "";
width: calc(100% - 30px);
height: calc(100% - 30px);
left: 15px;
top: 15px;
position: absolute;
background: rgba(0, 0, 0, 0.5); }
.gallery-layout-one .slick-dots {
bottom: 50px;
z-index: 15; }
.gallery-layout-one .slick-dots li {
width: 20px;
height: 20px; }
.gallery-layout-one .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.gallery-layout-one .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.gallery-layout-one .slick-dots li button:before {
display: none; }
/*
========================================
20 - Fun Facts Section
========================================
*/
.skill-layout-one .ldBar {
width: 160px !important;
height: 160px !important;
margin: 0 auto; }
.skill-layout-one .ldBar .mainline {
stroke-width: 4px;
stroke: #fb5252; }
.skill-layout-one .ldBar .baseline {
stroke-width: 4px; }
.skill-layout-one .ldBar .ldBar-label {
color: #fb5252;
font-size: 23px;
font-weight: 600; }
.skill-layout-one .skill-item {
padding: 0 30px; }
.skill-layout-one .skill-item h4 {
text-transform: uppercase;
padding: 20px 0 5px; }
/*
========================================
21 - Instagram Section
========================================
*/
.instagram-layout-one {
clear: both;
overflow: hidden;
position: relative;
margin: 0 -4px; }
.instagram-layout-one .instagram-item {
float: left;
width: 20%;
padding: 0 4px; }
.instagram-layout-two .container-fluid {
max-width: 1600px; }
.instagram-layout-two .container-fluid img {
width: 100%; }
.follow-layout-one .follow-item {
background: #fff;
-webkit-box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 13px 46px 0px rgba(111, 120, 142, 0.1); }
.follow-layout-one .follow-item img {
width: 100%; }
.follow-layout-one .follow-item .content {
padding: 25px 30px; }
/*
========================================
22 - Map Section
========================================
*/
.map-layout-one .map-wrap {
position: relative; }
.map-layout-one .map-wrap .map-items {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%; }
.map-layout-one .map-wrap .map-item {
position: absolute;
width: 300px;
min-height: 10px; }
.map-layout-one .map-wrap .map-item .item-dot {
width: 8px;
height: 8px;
background: #fff;
position: absolute;
left: 20px;
bottom: 0;
cursor: pointer;
z-index: 3; }
.map-layout-one .map-wrap .map-item .item-dot:before {
content: "";
width: 12px;
height: 12px;
background: #fff;
opacity: .5;
position: absolute;
left: -2px;
top: -2px;
cursor: pointer; }
.map-layout-one .map-wrap .map-item .item-dot.item-dot-active {
background: #fb5252; }
.map-layout-one .map-wrap .map-item .item-dot.item-dot-active:before {
background: #fb5252; }
.map-layout-one .map-wrap .map-item .item-details {
position: absolute;
bottom: 20px;
width: 300px;
background: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.map-layout-one .map-wrap .map-item .item-details .content {
padding: 20px 25px; }
.map-layout-one .map-wrap .map-item .item-details.show {
opacity: 1; }
.map-layout-one .map-wrap .map-item:nth-child(1) {
left: 100px;
top: 400px; }
.map-layout-one .map-wrap .map-item:nth-child(2) {
right: 50px;
top: 450px; }
.map-layout-one .map-wrap .map-item:nth-child(3) {
left: 150px;
bottom: 100px; }
.map-layout-one .map-wrap .map-item:nth-child(4) {
right: 150px;
bottom: 70px; }
.map-layout-one .map-video {
position: relative; }
.map-layout-one .map-video img {
min-height: 750px;
max-width: 110%; }
.map-layout-one .map-video .play-button {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
width: 100px;
height: 100px;
background: #fb5252;
color: #fff;
text-align: center;
line-height: 100px;
font-size: 30px;
border-radius: 50%; }
.map-layout-one .map-video .play-button:before {
content: "";
width: 124px;
height: 124px;
background: #fb5252;
position: absolute;
left: -12px;
top: -12px;
opacity: .5;
border-radius: 50%; }
.map-layout-one .map-video .play-button i {
position: relative;
z-index: 2; }
.halfmap-fixed {
position: fixed;
top: 147px;
left: 0;
height: calc( 100vh - 147px);
width: 40%;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.halfmap-fixed #map-canvas {
height: calc(100vh - 147px); }
.halfmap-fixed.top-bigger {
top: 90px;
height: calc( 100vh - 90px); }
.halfmap-fixed.top-bigger #map-canvas {
height: calc(100vh - 90px); }
/*
========================================
23 - Newsletter Section
========================================
*/
.newsletter-layout-one {
background: -webkit-gradient(linear, left top, right top, from(#fb5252), color-stop(50%, #fb5252), color-stop(50%, #151926), to(#151926));
background: -webkit-linear-gradient(left, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
background: -o-linear-gradient(left, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
background: linear-gradient(to right, #fb5252 0%, #fb5252 50%, #151926 50%, #151926 100%);
padding: 400px 0 100px; }
.newsletter-layout-one .container-fluid {
max-width: 1700px; }
.newsletter-layout-one .container-fluid .col-md-6:first-child {
padding-right: 60px; }
.newsletter-layout-one .container-fluid .col-md-6:last-child {
padding-left: 60px; }
.newsletter-layout-one .newsletter-title {
float: left;
padding-right: 30px;
width: 32%; }
.newsletter-layout-one .newsletter-title h2 {
line-height: 1;
text-transform: uppercase;
font-size: 2.3em;
padding-top: 5px; }
.newsletter-layout-one .newsletter-title p {
font-weight: 600;
text-transform: uppercase;
line-height: 1; }
.newsletter-layout-one .newsletter-form {
float: right;
width: 68%; }
.newsletter-layout-one .newsletter-form input {
width: 68%;
margin-right: 2%;
float: left;
padding: 19px 20px;
border: 0;
background: #fff;
text-transform: uppercase; }
.newsletter-layout-one .newsletter-form button {
float: right;
width: 30%;
padding: 20px;
text-transform: uppercase;
background: #151926;
text-transform: uppercase;
color: #fff; }
.newsletter-layout-one .newsletter-item .icon {
font-size: 65px;
line-height: 1.1em;
margin-right: 20px; }
.newsletter-layout-one .newsletter-item h2 {
line-height: 1.2; }
.newsletter-layout-two .subscribe-form {
margin-bottom: 90px; }
.newsletter-layout-two .subscribe-form form {
position: relative; }
.newsletter-layout-two .subscribe-form input {
width: 100%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 22px 40px;
color: #fff;
border-radius: 5px; }
.newsletter-layout-two .subscribe-form input::-webkit-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input:-ms-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input::-ms-input-placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input::placeholder {
color: #fff; }
.newsletter-layout-two .subscribe-form input:focus {
border-color: #fb5252; }
.newsletter-layout-two .subscribe-form button {
padding: 15px 40px;
background: #fb5252;
color: #fff;
text-transform: uppercase;
position: absolute;
right: 8px;
top: 8px;
border-radius: 5px; }
/*
========================================
24 - Search Section
========================================
*/
.search-layout-one {
position: relative;
padding: 60px 40px 0; }
.search-layout-one .short-version {
background: #fff;
border-radius: 50px;
overflow: hidden;
position: relative;
z-index: 2;
width: 730px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.search-layout-one .short-version > div {
float: left; }
.search-layout-one .short-version .select {
background: #f8f8f8;
border-radius: 50px;
position: relative;
color: #343851; }
.search-layout-one .short-version .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg); }
.search-layout-one .short-version .select select {
padding: 25px 50px 25px 30px;
font-weight: 500;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-one .short-version .input input {
border: 0;
padding: 25px 20px;
min-width: 350px;
background: #fff; }
.search-layout-one .short-version .view-button {
padding: 25px 20px; }
.search-layout-one .short-version .view-button a {
color: #fb5252; }
.search-layout-one .short-version .submit-form {
float: right;
margin-right: 11px; }
.search-layout-one .short-version .submit-form input {
background: #fb5252;
padding: 14px 38px;
border-radius: 50px;
margin-top: 11px;
font-weight: 600;
color: #fff; }
.search-layout-one .advance-search {
background: #fff;
border-radius: 10px;
padding: 20px 30px 30px;
-webkit-box-shadow: 0px 0px 139px 0px rgba(111, 120, 142, 0.06);
box-shadow: 0px 0px 139px 0px rgba(111, 120, 142, 0.06);
display: none;
position: absolute;
left: 40px;
width: calc(100% - 80px);
z-index: 1;
margin-top: 10px; }
.search-layout-one .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-one .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-one .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-one .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 5px;
left: 3px;
color: #fff; }
.search-layout-one .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-one .advance-search .select-two {
background: #fff;
border-radius: 3px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-one .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-one .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-one .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-one .advance-search .select-two select {
padding: 12px 10px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-one .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-one .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 3px; }
.search-layout-two {
padding-top: 100px; }
.search-layout-two h2 {
margin-bottom: 45px; }
.search-layout-two .search-layout {
position: relative;
background: #fff;
padding: 50px 40px;
-webkit-box-shadow: 0px 0 39px 0px rgba(111, 120, 142, 0.07);
box-shadow: 0px 0 39px 0px rgba(111, 120, 142, 0.07); }
.search-layout-two .short-form .select {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd;
width: 100%; }
.search-layout-two .short-form .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-two .short-form .select select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #757c8c; }
.search-layout-two .short-form .input-text input {
width: 100%;
padding: 12px 25px;
color: #757c8c;
border: 1px solid #ddd;
border-radius: 5px;
background: #fff; }
.search-layout-two .short-form .input-text input::-webkit-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input:-ms-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input::-ms-input-placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-text input::placeholder {
color: #757c8c; }
.search-layout-two .short-form .input-submit input {
background: #fb5252;
color: #fff;
width: 100%;
text-align: center;
padding: 13px 10px;
border-radius: 5px;
font-weight: 600; }
.search-layout-two .show-advance {
display: inline-block;
margin-top: 40px;
color: #fb5252;
font-size: 17px;
font-weight: 500; }
.search-layout-two .show-advance i {
position: relative;
font-size: 15px;
padding-left: 5px;
top: 1px; }
.search-layout-two .advance-search {
padding: 50px 40px;
display: none;
-webkit-box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.07);
box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.07);
position: absolute;
background: #fff;
left: 0;
width: 100%;
z-index: 1; }
.search-layout-two .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-two .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-two .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-two .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 5px;
left: 3px;
color: #fff; }
.search-layout-two .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-two .advance-search .select-two {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-two .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-two .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-two .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-two .advance-search .select-two select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
color: #757c8c;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-two .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-two .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 5px; }
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
border-radius: 3px;
margin: 3px auto 0; }
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #eeeeee;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
border-radius: 3px; }
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
border-radius: 3px;
background-color: #757c8c;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s; }
.active .slider:before {
background-color: #fb5252; }
.active .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px); }
.search-layout-three {
background: #fff;
position: relative;
padding-top: 86px; }
.search-layout-three form > .container > .row {
margin: 0; }
.search-layout-three .short-version {
background: #fff;
overflow: hidden;
position: relative;
z-index: 2;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.search-layout-three .short-version > div {
float: left; }
.search-layout-three .short-version .select {
background: #fff;
border: 1px solid #eaeaea;
border-top: 0;
border-bottom: 0;
position: relative;
height: 100%;
color: #343851; }
.search-layout-three .short-version .select:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #fb5252 #fb5252 transparent;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg); }
.search-layout-three .short-version .select select {
padding: 25px 60px 25px 30px;
font-weight: 600;
border: 0;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 100%;
position: relative; }
.search-layout-three .short-version .input {
width: 60%; }
.search-layout-three .short-version .input input {
border: 0;
padding: 25px 20px;
width: 100%;
background: #fff;
font-weight: 600; }
.search-layout-three .short-version .view-button {
padding: 29px 30px 28px;
line-height: 0; }
.search-layout-three .short-version .view-button a {
color: #fb5252; }
.search-layout-three .short-version .view-button .switch {
width: 42px;
height: 15px; }
.search-layout-three .short-version .view-button .switch .slider {
border-radius: 30px; }
.search-layout-three .short-version .view-button .switch .slider:before {
width: 22px;
height: 15px;
top: 0;
left: 0;
border-radius: 30px; }
.search-layout-three .short-version .submit-form {
float: right; }
.search-layout-three .short-version .submit-form input {
background: #fb5252;
padding: 25px 50px;
font-weight: 600;
color: #fff; }
.search-layout-three .advance-search {
padding: 50px 40px;
display: none;
-webkit-box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.03);
box-shadow: 0px 40px 39px 0px rgba(111, 120, 142, 0.03);
position: absolute;
background: #fff;
border-top: 1px solid #eaeaea;
left: 0;
width: 100%;
z-index: 1; }
.search-layout-three .advance-search .checkbox input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.search-layout-three .advance-search .checkbox label {
position: relative;
cursor: pointer;
font-size: 15px; }
.search-layout-three .advance-search .checkbox label:before {
content: '';
-webkit-appearance: none;
background: #ddd;
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 7px;
border-radius: 2px; }
.search-layout-three .advance-search .checkbox input:checked + label:after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 10px;
position: absolute;
top: 4px;
left: 3px;
color: #fff; }
.search-layout-three .advance-search .checkbox input:checked + label:before {
background: #fb5252; }
.search-layout-three .advance-search .select-two {
background: #fff;
border-radius: 5px;
position: relative;
color: #757c8c;
border: 1px solid #ddd; }
.search-layout-three .advance-search .select-two.select-half {
width: 47%;
float: left; }
.search-layout-three .advance-search .select-two.select-half:last-child {
float: right; }
.search-layout-three .advance-search .select-two:before {
content: "";
height: 8px;
width: 8px;
display: block;
border-style: solid;
border-width: 0 2px 2px 0;
border-color: transparent #757c8c #757c8c transparent;
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
margin-top: -1px; }
.search-layout-three .advance-search .select-two select {
padding: 12px 25px;
width: 100%;
text-align: center;
border: 0;
color: #757c8c;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.search-layout-three .advance-search .input-half {
width: 48%;
float: right; }
.search-layout-three .advance-search .input-half input {
width: 100%;
padding: 11px 10px;
border: 1px solid #ddd;
border-radius: 5px; }
.search-layout-four {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-four .short-version .input input {
font-weight: 400; }
.search-layout-five {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-five .short-version .input {
width: 55%; }
.search-layout-five .short-version .input input {
font-weight: 400; }
.search-layout-six {
background: #fff;
-webkit-box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 19px 29px 0px rgba(0, 0, 0, 0.03); }
.search-layout-six .short-version .input {
width: 42%; }
.search-layout-six .short-version .input input {
font-weight: 400; }
/*
========================================
25 - Video Section
========================================
*/
.video-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(42, 55, 76, 0.97)), to(rgba(42, 55, 76, 0.97))), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: -webkit-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: -o-linear-gradient(right, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-image: linear-gradient(to left, rgba(42, 55, 76, 0.97), rgba(42, 55, 76, 0.97)), url("https://via.placeholder.com/1920x800/eee/fff");
background-size: cover;
background-repeat: no-repeat;
position: relative; }
.video-layout-one .video-carousel {
width: 130%;
left: -15%; }
.video-layout-one .video-tt {
padding: 0 15px; }
.video-layout-one .video-item {
position: relative; }
.video-layout-one .video-item:before {
content: "";
width: 100%;
height: 100%;
background: #2a374c;
opacity: 0.8;
position: absolute;
left: 0;
top: 0; }
.video-layout-one .video-item img {
width: 100%; }
.video-layout-one .video-item .icons {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 0;
z-index: 99; }
.video-layout-one .video-item .icons a {
background-color: #fff;
width: 108px;
height: 108px;
border-radius: 50%;
text-align: center;
line-height: 108px; }
.video-layout-one .video-item .icons a svg {
width: 80px;
height: 80px; }
.video-layout-one .video-tt.slick-center .video-item:before {
display: none; }
.video-layout-one .video-tt.slick-center .video-item .icons {
opacity: 1;
z-index: 11;
-webkit-transition: all .7s ease-in;
-o-transition: all .7s ease-in;
transition: all .7s ease-in; }
.video-layout-one .video-arrow {
width: 36%;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 0;
color: #fff;
font-size: 40px;
line-height: 0; }
.video-layout-one .video-arrow i {
cursor: pointer; }
.video-layout-one .video-arrow .flaticon-right {
float: right; }
.video-layout-two {
position: relative; }
.video-layout-two img {
width: 100%; }
.video-layout-two .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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: rgba(0, 0, 0, 0.2); }
.video-layout-two .playbutton {
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
position: relative;
width: 172px;
height: 172px;
display: inline-block;
text-align: center;
line-height: 172px; }
.video-layout-two .playbutton:before {
content: "";
width: 172px;
height: 172px;
border-right: 3px solid #fff;
border-radius: 50%;
position: absolute;
right: -3px;
top: -3px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
-webkit-animation: rotate-center 4s infinite linear;
animation: rotate-center 4s infinite linear;
-webkit-animation-play-state: paused;
animation-play-state: paused; }
.video-layout-two .playbutton svg {
width: 80px;
height: 80px; }
.video-layout-two .playbutton .triangle {
stroke: #fff; }
.video-layout-two .playbutton:hover:before {
-webkit-animation-play-state: running;
animation-play-state: running; }
@-webkit-keyframes rotate-center {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
100% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg); } }
@keyframes rotate-center {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
100% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg); } }
.video-layout-three {
position: relative;
overflow: hidden; }
.video-layout-three:before {
content: "";
width: 100%;
height: 100%;
background: url("../img/property-bg-2.png") no-repeat;
background-position: center -200px;
position: absolute;
left: 0;
top: 0; }
.video-layout-three .video-slider {
margin-bottom: 40px; }
.video-layout-three .slider-item {
background: #fff;
-webkit-box-shadow: 0px 0px 30px 0px rgba(111, 120, 142, 0.1);
box-shadow: 0px 0px 30px 0px rgba(111, 120, 142, 0.1);
margin: 30px; }
.video-layout-three .video-left {
position: relative; }
.video-layout-three .video-left img {
width: 100%; }
.video-layout-three .video-left .playbutton {
width: 80px;
height: 80px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
border-radius: 50%;
background: #fff;
line-height: 80px;
text-align: center; }
.video-layout-three .video-left .playbutton:before {
content: "";
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.4);
position: absolute;
left: -10px;
top: -10px;
border-radius: 50%; }
.video-layout-three .video-left .playbutton svg {
width: 70px;
height: 70px;
position: relative;
z-index: 2; }
.video-layout-three .video-right {
padding: 0 30px 0 0; }
.video-layout-three .video-right p:first-child {
text-transform: uppercase; }
.video-layout-three .video-right h3 {
margin-bottom: 20px; }
.video-layout-three .video-right p i {
margin-right: 8px; }
.video-layout-three .slick-dots {
bottom: -40px; }
.video-layout-three .slick-dots li {
width: 15px;
height: 15px; }
.video-layout-three .slick-dots li.slick-active button {
background: #fb5252; }
.video-layout-three .slick-dots li button {
background: rgba(251, 82, 82, 0.37);
width: 15px;
height: 15px;
border-radius: 50%; }
.video-layout-three .slick-dots li button:before {
display: none; }
/*
========================================
26 - Contact Section
========================================
*/
.contact-innar .contact-item {
padding-right: 100px; }
.contact-innar .contact-item .contact-lists {
padding-top: 25px; }
.contact-innar .contact-item .contact-list {
padding-bottom: 10px; }
.contact-innar .contact-item .contact-list .icon {
padding-right: 20px; }
.contact-innar .contact-item .contact-list:last-child {
padding-bottom: 0; }
.contact-innar .contact-form .input-full {
margin-bottom: 25px; }
.contact-innar .contact-form .textarea-full {
margin-bottom: 20px; }
.contact-innar .contact-form label {
padding-bottom: 1px;
color: #343851; }
.contact-innar .contact-form input, .contact-innar .contact-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.contact-innar .contact-form input:focus, .contact-innar .contact-form textarea:focus {
border-color: #fb5252; }
.contact-innar .contact-form textarea {
height: 100px; }
.contact-innar .contact-form .button {
font-weight: 400;
padding-left: 60px;
padding-right: 60px;
border-radius: 3px; }
/*
========================================
27 - Other's Section
========================================
*/
.plan-layout-one {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://via.placeholder.com/1920x830/aaa/fff");
background-repeat: no-repeat;
background-size: cover; }
.plan-layout-one .plan-item {
padding: 0 30px; }
.plan-layout-one .plan-item img {
width: 100%; }
.plan-layout-one .plan-item .img {
position: relative; }
.plan-layout-one .plan-item .hover {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
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;
opacity: 0;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out; }
.plan-layout-one .plan-item .content {
padding-top: 25px; }
.plan-layout-one .plan-item .content h4, .plan-layout-one .plan-item .content h6 i {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.plan-layout-one .plan-item .content h6 {
padding: 5px 0 10px; }
.plan-layout-one .plan-item .content h6 i {
font-size: 24px;
padding-left: 20px; }
.plan-layout-one .plan-item:hover .content h4 a, .plan-layout-one .plan-item:hover .content h6 i {
color: #fb5252; }
.plan-layout-one .plan-item:hover .hover {
opacity: 1; }
.plan-layout-two {
position: relative; }
.plan-layout-two .slick-slide img {
min-height: 700px;
max-width: 150%; }
.plan-layout-two .plan-content {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
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: rgba(0, 0, 0, 0.85);
padding-bottom: 50px; }
.plan-layout-two .section-heading p {
text-transform: uppercase;
font-weight: 600;
padding-bottom: 5px; }
.plan-layout-two .section-heading h2 {
color: #fff;
text-transform: uppercase; }
.plan-layout-two .nav-pills .nav-link {
border: 2px solid rgba(255, 255, 255, 0.2);
color: #fff;
font-weight: 600;
text-align: center;
padding: 14px 15px; }
.plan-layout-two .nav-pills .nav-link:not(:last-child) {
margin-bottom: 20px; }
.plan-layout-two .nav-pills .nav-link.active, .plan-layout-two .nav-pills .show > .nav-link {
background: #fb5252;
border-color: #fb5252; }
.plan-layout-two .tab-content {
padding-left: 70px; }
.plan-layout-two .tab-content h4 {
text-transform: uppercase;
line-height: 1;
margin-bottom: 20px; }
.plan-layout-two .tab-content .col-md-7 {
padding-right: 50px; }
.plan-layout-two .tab-content .col-md-7 > p {
font-size: 17px;
margin-bottom: 30px; }
.plan-layout-two .tab-content .floor-list li {
color: #fff;
font-size: 17px; }
.plan-layout-two .tab-content .floor-list li i {
margin-right: 8px; }
.plan-layout-two .tab-content .floor-list li:not(:last-child) {
padding-bottom: 10px; }
.plan-layout-two .slick-dots {
bottom: 50px;
z-index: 15; }
.plan-layout-two .slick-dots li {
width: 20px;
height: 20px; }
.plan-layout-two .slick-dots li.slick-active button {
background: transparent;
border-color: #fff; }
.plan-layout-two .slick-dots li button {
background: transparent;
border: 5px solid rgba(255, 255, 255, 0.5);
width: 20px;
height: 20px; }
.plan-layout-two .slick-dots li button:before {
display: none; }
.location-layout-one .map-locations {
min-height: 575px;
background: url("../img/location-bg.png") no-repeat;
background-size: contain;
background-position: center;
position: relative; }
.location-layout-one .map-pin {
position: absolute;
left: 130px;
top: 160px; }
.location-layout-one .map-pin .show-location {
width: 16px;
height: 16px;
background: #fb5252;
border-radius: 50%;
cursor: pointer; }
.location-layout-one .map-pin .show-location:before {
content: "";
width: 24px;
height: 24px;
background: rgba(251, 82, 82, 0.5);
border-radius: 50%;
position: absolute;
top: -4px;
left: -4px; }
.location-layout-one .map-pin:nth-child(2) {
right: 330px;
top: 200px;
left: auto; }
.location-layout-one .map-pin:nth-child(3) {
left: 50%;
top: 50%; }
.location-layout-one .map-pin:nth-child(4) {
left: 20%;
top: 55%; }
.location-layout-one .map-pin:nth-child(5) {
left: auto;
top: auto;
right: 20%;
bottom: 22%; }
.location-layout-one .location-item {
max-width: 370px;
-webkit-box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
box-shadow: 0px 6px 33px 0px rgba(111, 120, 142, 0.05);
background: #fff;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0;
position: absolute;
bottom: 30px;
left: -10px;
z-index: -1; }
.location-layout-one .location-item .content {
padding: 30px 30px 15px; }
.location-layout-one .location-item .content h4 {
padding-bottom: 2px; }
.location-layout-one .location-item .footer-content {
overflow: hidden;
border-top: 1px solid #ededed;
padding-top: 15px; }
.location-layout-one .location-item .footer-content > div {
float: left; }
.location-layout-one .location-item .footer-content > div:last-child {
float: right; }
.location-layout-one .location-item .footer-content .author .img {
margin-right: 10px; }
.location-layout-one .location-item .footer-content a {
margin-top: 6px;
display: inline-block;
color: #757c8c; }
.location-layout-one .location-item .footer-content a i {
padding-left: 8px;
font-size: 14px;
position: relative;
top: 1px; }
.location-layout-one .location-item .footer-content a.active {
color: #fb5252; }
.location-layout-one .location-item .footer-content a.active > i:before {
content: "\f106"; }
.location-layout-one .location-item .house-feature {
border-top: 1px solid #ededed;
padding-top: 25px;
margin-top: 15px;
display: none; }
.location-layout-one .location-item .house-feature i {
padding-right: 5px; }
.location-layout-one .location-item.show {
opacity: 1;
z-index: 1; }
.explore-layout-one {
padding: 80px 0 100px; }
.explore-layout-one .tab-content {
margin-top: 60px; }
.explore-layout-one .nav-tabs .nav-item {
padding: 0 14px; }
.explore-layout-one .nav-tabs .nav-item:first-child {
padding-left: 0; }
.explore-layout-one .nav-tabs .nav-item .nav-link {
color: #757c8c;
padding: 8px 0;
border: 0;
border-bottom: 2px solid transparent; }
.explore-layout-one .nav-tabs .nav-item.show .nav-link, .explore-layout-one .nav-tabs .nav-link.active {
border: 0;
border-bottom: 2px solid #fb5252;
color: #fb5252; }
.explore-layout-one .explore-list li:not(:last-child) {
padding-bottom: 12px; }
.explore-layout-one .explore-list a {
color: #757c8c;
font-size: 17px;
position: relative; }
.explore-layout-one .explore-list a:before {
content: "\f110";
font-family: 'Flaticon';
position: absolute;
left: -10px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
-webkit-transition: left .3s ease-in-out, opacity .3s ease-in-out;
-o-transition: left .3s ease-in-out, opacity .3s ease-in-out;
transition: left .3s ease-in-out, opacity .3s ease-in-out; }
.explore-layout-one .explore-list a:hover {
color: #fb5252;
padding-left: 25px; }
.explore-layout-one .explore-list a:hover:before {
opacity: 1;
left: 0; }
.explore-layout-two {
background: #eff2f7; }
.explore-layout-two .container-fluid {
max-width: 1450px; }
.explore-layout-two .container-fluid .explore-carousel {
margin: 0 -15px;
margin-bottom: 80px; }
.explore-layout-two .container-fluid .explore-tt {
padding: 0 15px; }
.explore-layout-two .explore-item {
position: relative; }
.explore-layout-two .explore-item img {
width: 100%; }
.explore-layout-two .explore-item .hover {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 25px 30px; }
.explore-layout-two .explore-item .hover h4 {
font-weight: 500;
color: #fff; }
.explore-layout-two .explore-item .hover p {
position: relative;
display: inline-block;
padding-left: 22px;
color: #fff; }
.explore-layout-two .explore-item .hover p:before {
content: "";
width: 16px;
height: 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 50%;
position: absolute;
left: 0;
top: 5px; }
.explore-layout-two .explore-item .hover p:after {
content: "";
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
position: absolute;
left: 4px;
top: 9px; }
.explore-layout-two .slick-dots {
bottom: -80px;
z-index: 15; }
.explore-layout-two .slick-dots li {
width: 24px;
height: 24px; }
.explore-layout-two .slick-dots li.slick-active button {
border: 7px solid #fb5252; }
.explore-layout-two .slick-dots li button {
background: #f7f6f1;
border: 5px solid rgba(251, 82, 82, 0.2);
width: 24px;
height: 24px;
padding: 0;
border-radius: 3px; }
.explore-layout-two .slick-dots li button:before {
display: none; }
.explore-layout-three .explore-item {
position: relative;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.explore-layout-three .explore-item img {
width: 100%; }
.explore-layout-three .explore-item .content {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.7);
padding: 25px 30px;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.explore-layout-three .explore-item .content a {
color: #fff; }
.explore-layout-three .explore-item .content p {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: 600; }
.explore-layout-three .explore-item:hover {
-webkit-box-shadow: 0px 19px 25px 0px rgba(0, 0, 0, 0.13);
box-shadow: 0px 19px 25px 0px rgba(0, 0, 0, 0.13); }
.explore-layout-three .explore-item:hover .content {
background: #fff; }
.explore-layout-three .explore-item:hover .content a {
color: #343851; }
.explore-layout-three .explore-item:hover .content p {
color: #757c8c; }
/*
========================================
26 - Contact Section
========================================
*/
.contact-innar .contact-item {
padding-right: 100px; }
.contact-innar .contact-item .contact-lists {
padding-top: 25px; }
.contact-innar .contact-item .contact-list {
padding-bottom: 10px; }
.contact-innar .contact-item .contact-list .icon {
padding-right: 20px; }
.contact-innar .contact-item .contact-list:last-child {
padding-bottom: 0; }
.contact-innar .contact-form .input-full {
margin-bottom: 25px; }
.contact-innar .contact-form .textarea-full {
margin-bottom: 20px; }
.contact-innar .contact-form label {
padding-bottom: 1px;
color: #343851; }
.contact-innar .contact-form input, .contact-innar .contact-form textarea {
width: 100%;
padding: 12px 25px;
border-radius: 3px;
border: 1px solid #eaeaea; }
.contact-innar .contact-form input:focus, .contact-innar .contact-form textarea:focus {
border-color: #fb5252; }
.contact-innar .contact-form textarea {
height: 100px; }
.contact-innar .contact-form .button {
font-weight: 400;
padding-left: 60px;
padding-right: 60px;
border-radius: 3px; }
/*
========================================
28 - Homepages
========================================
*/
.background-sale {
position: relative;
overflow: hidden; }
.background-sale .background-shapes {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 0; }
.background-sale .background-shapes .bg-shape {
position: absolute;
background: #f2f1f4;
width: 360px;
height: 360px;
border-radius: 50%; }
.background-sale .background-shapes .bg-shape:nth-child(1) {
width: 250px;
height: 600px;
border-radius: 100px;
-webkit-transform: rotate(-40deg);
-ms-transform: rotate(-40deg);
transform: rotate(-40deg);
left: 130px;
top: -100px; }
.background-sale .background-shapes .bg-shape:nth-child(2) {
left: -50px;
bottom: -20px; }
.background-sale .background-shapes .bg-shape:nth-child(3) {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
top: -200px; }
.background-sale .background-shapes .bg-shape:nth-child(4) {
right: -50px;
bottom: 100px; }
.background-sale .container {
position: relative;
z-index: 3; }
.background-testimonial .testimonial-carousel {
background: url("../img/testimonial/testimonial-bg-2.png") no-repeat;
background-size: contain; }
.page-content-layout {
border-top: 1px solid #eaeaea;
background: #f7f7f7;
margin-top: 90px; }
.filter-layout .filter-menu li:not(:last-child) {
padding-right: 10px; }
.filter-layout .filter-menu a {
color: #757c8c; }
.filter-layout .filter-menu a i {
padding-right: 5px; }
.filter-layout .filter-property li:not(:last-child) {
padding-right: 2px; }
.filter-layout .filter-property li {
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
.filter-layout .filter-property li.active {
color: #fb5252; }
.infoBox {
overflow: hidden; }
.infoBox img {
position: absolute !important;
top: 70px;
right: 20px;
bottom: auto;
left: auto;
z-index: 9;
background-color: rgba(20, 20, 20, 0.6); }
.property-maps {
margin: 60px 0 10px 0;
width: 320px;
height: 300px;
background-color: #FFF;
overflow: hidden;
-webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
/* .img-container */ }
.property-maps .img-container {
position: relative !important;
height: 260px;
width: 320px;
display: block;
background-size: cover;
/* .title */ }
.property-maps .img-container .title {
color: #343851;
background: #fff;
display: block;
font-size: 20px;
text-transform: uppercase;
height: 55px;
padding: 16px 10px 0 20px;
line-height: 1.7;
overflow: hidden;
font-weight: 200;
position: absolute !important;
font-weight: 600;
top: auto;
right: 0;
bottom: 0;
left: 0;
z-index: 8;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out; }
.property-maps .img-container .title:hover {
color: #fb5252; }
.property-maps .details {
background-color: #FFF;
position: relative;
list-style: none;
height: 40px;
z-index: 5;
padding: 0 20px;
margin: 0;
font-weight: 400;
font-size: 16px; }
.property-maps .details i {
padding-right: 10px; }
#maps .control-left-wrapper,
#maps .control-right-wrapper {
cursor: pointer;
margin: 14px 10px 0;
position: relative; }
#maps .control-left-wrapper .zoom-in,
#maps .control-right-wrapper .zoom-in,
#maps .control-left-wrapper .zoom-out,
#maps .control-right-wrapper .zoom-out,
#maps .control-left-wrapper .set-position,
#maps .control-right-wrapper .set-position,
#maps .control-left-wrapper .next-ads,
#maps .control-right-wrapper .next-ads,
#maps .control-left-wrapper .prev-ads,
#maps .control-right-wrapper .prev-ads {
height: 42px;
width: 42px;
opacity: 0.7;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out; }
#maps .control-left-wrapper .zoom-in:hover,
#maps .control-right-wrapper .zoom-in:hover,
#maps .control-left-wrapper .zoom-out:hover,
#maps .control-right-wrapper .zoom-out:hover,
#maps .control-left-wrapper .set-position:hover,
#maps .control-right-wrapper .set-position:hover,
#maps .control-left-wrapper .next-ads:hover,
#maps .control-right-wrapper .next-ads:hover,
#maps .control-left-wrapper .prev-ads:hover,
#maps .control-right-wrapper .prev-ads:hover {
opacity: 1; }
#maps .control-left-wrapper .zoom-in:after,
#maps .control-right-wrapper .zoom-in:after {
content: '\f067'; }
#maps .control-left-wrapper .zoom-out:after,
#maps .control-right-wrapper .zoom-out:after {
content: '\f068';
margin-top: 5px; }
#maps .control-left-wrapper .set-position:after,
#maps .control-right-wrapper .set-position:after {
content: '\f124';
margin-top: 5px; }
#maps .control-left-wrapper .next-ads:after,
#maps .control-right-wrapper .next-ads:after {
content: '\f053';
margin-top: 5px;
float: left; }
#maps .control-left-wrapper .prev-ads:after,
#maps .control-right-wrapper .prev-ads:after {
content: '\f054';
margin-top: 5px;
float: left; }
#maps .control-left-wrapper div:after,
#maps .control-right-wrapper div:after {
padding-top: 0px;
background-color: #fb5252;
border: 1px solid #fb5252;
font-family: 'Font Awesome 5 Free';
display: block;
width: 42px;
height: 42px;
text-align: center;
font-size: 18px;
bottom: 0;
left: 0;
color: #ffffff;
border-radius: 3px;
font-weight: 900;
line-height: 42px; }
.preloader-layout {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background: #fb5252;
z-index: 999; }
.cube-folding {
width: 50px;
height: 50px;
display: inline-block;
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
font-size: 0; }
.cube-folding span {
position: relative;
width: 25px;
height: 25px;
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
display: inline-block; }
.cube-folding span::before {
content: '';
background-color: white;
position: absolute;
left: 0;
top: 0;
display: block;
width: 25px;
height: 25px;
-moz-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%;
-moz-animation: folding 2.5s infinite linear both;
-webkit-animation: folding 2.5s infinite linear both;
animation: folding 2.5s infinite linear both; }
.cube-folding .leaf2 {
-moz-transform: rotateZ(90deg) scale(1.1);
-ms-transform: rotateZ(90deg) scale(1.1);
-webkit-transform: rotateZ(90deg) scale(1.1);
transform: rotateZ(90deg) scale(1.1); }
.cube-folding .leaf2::before {
-moz-animation-delay: 0.3s;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
background-color: #f2f2f2; }
.cube-folding .leaf3 {
-moz-transform: rotateZ(270deg) scale(1.1);
-ms-transform: rotateZ(270deg) scale(1.1);
-webkit-transform: rotateZ(270deg) scale(1.1);
transform: rotateZ(270deg) scale(1.1); }
.cube-folding .leaf3::before {
-moz-animation-delay: 0.9s;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
background-color: #f2f2f2; }
.cube-folding .leaf4 {
-moz-transform: rotateZ(180deg) scale(1.1);
-ms-transform: rotateZ(180deg) scale(1.1);
-webkit-transform: rotateZ(180deg) scale(1.1);
transform: rotateZ(180deg) scale(1.1); }
.cube-folding .leaf4::before {
-moz-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
background-color: #e6e6e6; }
@-moz-keyframes folding {
0%,
10% {
-moz-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-moz-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-moz-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
@-webkit-keyframes folding {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
@keyframes folding {
0%,
10% {
-moz-transform: perspective(140px) rotateX(-180deg);
-ms-transform: perspective(140px) rotateX(-180deg);
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0; }
25%,
75% {
-moz-transform: perspective(140px) rotateX(0deg);
-ms-transform: perspective(140px) rotateX(0deg);
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1; }
90%,
100% {
-moz-transform: perspective(140px) rotateY(180deg);
-ms-transform: perspective(140px) rotateY(180deg);
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0; } }
.cube-wrapper {
position: fixed;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
width: 100px;
height: 100px;
text-align: center; }
.cube-wrapper:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -20px;
margin: auto;
width: 90px;
height: 6px;
background-color: rgba(0, 0, 0, 0.1);
-webkit-filter: blur(2px);
filter: blur(2px);
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
border-radius: 100%;
z-index: 1;
-webkit-animation: shadow 0.5s ease infinite alternate;
animation: shadow 0.5s ease infinite alternate; }
.cube-wrapper .loading {
font-size: 12px;
letter-spacing: 0.1em;
display: block;
color: white;
position: relative;
top: 25px;
z-index: 2;
-webkit-animation: text 0.5s ease infinite alternate;
animation: text 0.5s ease infinite alternate; }
@-moz-keyframes text {
100% {
top: 35px; } }
@-webkit-keyframes text {
100% {
top: 35px; } }
@keyframes text {
100% {
top: 35px; } }
@-moz-keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
@-webkit-keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
@keyframes shadow {
100% {
bottom: -18px;
width: 100px; } }
/*
========================================
29 - Other's Pages
========================================
*/
.error-layout-one {
min-height: 1024px;
margin-top: 90px;
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;
position: relative; }
.error-layout-one:before {
content: "";
border-left: 700px solid #fb5252;
border-top: 535px solid transparent;
border-bottom: 535px solid transparent;
position: absolute;
left: 0;
top: -0;
opacity: 0.03;
z-index: -1; }
.error-layout-one h2 {
color: #343851; }
.error-layout-one h1 {
font-size: 100px;
color: #fb5252; }
.error-layout-one p {
margin-bottom: 30px; } | 0.379263 | 0.082365 |
#page-wrapper {
margin: 0px auto;
padding: 0px;
max-width: 100%;
}
/* line 10, ../../bag/sass/partials/_layout.scss */
#page {
padding: 0px;
}
/* line 13, ../../bag/sass/partials/_layout.scss */
#main-wrapper {
width: 100%;
position: relative;
}
/* line 20, ../../bag/sass/partials/_layout.scss */
#content,
#sidebar-first,
#sidebar-second {
display: inline;
float: left;
position: relative;
/*overflow: hidden; Removed for Superfish */
}
/* line 29, ../../bag/sass/partials/_layout.scss */
#footer-columns {
width: 100%;
}
/* line 32, ../../bag/sass/partials/_layout.scss */
#footer-column-wrapper {
float: left;
}
/* line 35, ../../bag/sass/partials/_layout.scss */
#footer-column {
padding: 10px;
margin: 0px 5px 5px 5px;
text-align: left;
}
/* line 41, ../../bag/sass/partials/_layout.scss */
#top-columns,
#bottom-columns {
width: 100%;
overflow: hidden;
}
/* line 46, ../../bag/sass/partials/_layout.scss */
.column-block-wrapper {
float: left;
}
/* line 49, ../../bag/sass/partials/_layout.scss */
.column-block {
padding: 10px;
margin: 0px 5px 5px 5px;
text-align: left;
margin: 0px;
}
/* line 17, ../../bag/sass/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
display: block;
}
/* line 33, ../../bag/sass/partials/_normalize.scss */
audio,
canvas,
video {
display: inline-block;
}
/* line 46, ../../bag/sass/partials/_normalize.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 54, ../../bag/sass/partials/_normalize.scss */
[hidden] {
display: none;
}
/* line 67, ../../bag/sass/partials/_normalize.scss */
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
/* line 77, ../../bag/sass/partials/_normalize.scss */
html,
button,
input,
select,
textarea {
font-family: sans-serif;
}
/* line 87, ../../bag/sass/partials/_normalize.scss */
body {
margin: 0;
}
/* line 98, ../../bag/sass/partials/_normalize.scss */
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* line 103, ../../bag/sass/partials/_normalize.scss */
#header h1 {
margin: 0 0;
}
/* line 107, ../../bag/sass/partials/_normalize.scss */
h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
/* line 112, ../../bag/sass/partials/_normalize.scss */
h3 {
font-size: 1.17em;
margin: 1em 0;
}
/* line 117, ../../bag/sass/partials/_normalize.scss */
h4 {
font-size: 1em;
margin: 1.33em 0;
}
/* line 122, ../../bag/sass/partials/_normalize.scss */
h5 {
font-size: 0.83em;
margin: 1.67em 0;
}
/* line 127, ../../bag/sass/partials/_normalize.scss */
h6 {
font-size: 0.75em;
margin: 2.33em 0;
}
/* line 134, ../../bag/sass/partials/_normalize.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 140, ../../bag/sass/partials/_normalize.scss */
b,
strong {
font-weight: bold;
}
/* line 153, ../../bag/sass/partials/_normalize.scss */
dfn {
font-style: italic;
}
/* line 159, ../../bag/sass/partials/_normalize.scss */
mark {
background: #ff0;
color: #000;
}
/* line 175, ../../bag/sass/partials/_normalize.scss */
pre,
code,
kbd,
samp {
font-family: monospace, serif;
font-size: 1em;
}
/* line 188, ../../bag/sass/partials/_normalize.scss */
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
/* line 206, ../../bag/sass/partials/_normalize.scss */
q:before,
q:after {
content: '';
content: none;
}
/* line 212, ../../bag/sass/partials/_normalize.scss */
small {
font-size: 75%;
}
/* line 219, ../../bag/sass/partials/_normalize.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 227, ../../bag/sass/partials/_normalize.scss */
sup {
top: -0.5em;
}
/* line 231, ../../bag/sass/partials/_normalize.scss */
sub {
bottom: -0.25em;
}
/* line 268, ../../bag/sass/partials/_normalize.scss */
nav ul,
nav ol {
list-style: none;
padding: 0;
}
/* line 286, ../../bag/sass/partials/_normalize.scss */
img {
border: 0;
padding: 0;
margin: 0;
}
/* line 297, ../../bag/sass/partials/_normalize.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 307, ../../bag/sass/partials/_normalize.scss */
figure {
margin: 0;
}
/* line 324, ../../bag/sass/partials/_normalize.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 334, ../../bag/sass/partials/_normalize.scss */
legend {
border: 0;
padding: 0;
white-space: normal;
}
/* line 347, ../../bag/sass/partials/_normalize.scss */
button,
input,
select,
textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
}
/* line 361, ../../bag/sass/partials/_normalize.scss */
button,
input {
line-height: normal;
}
/* line 371, ../../bag/sass/partials/_normalize.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
/* line 384, ../../bag/sass/partials/_normalize.scss */
button[disabled],
input[disabled] {
cursor: default;
}
/* line 394, ../../bag/sass/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 408, ../../bag/sass/partials/_normalize.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 413, ../../bag/sass/partials/_normalize.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/* line 422, ../../bag/sass/partials/_normalize.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 431, ../../bag/sass/partials/_normalize.scss */
textarea {
overflow: auto;
vertical-align: top;
}
/* line 442, ../../bag/sass/partials/_normalize.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/*------- Begin default section --------*/
/* line 2, ../../bag/sass/partials/_base.scss */
* {
margin: 0;
padding: 0;
}
/* line 6, ../../bag/sass/partials/_base.scss */
body {
font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', 'URW Palladio L', Baskerville, serif;
line-height: 1.5em;
font-size: 87.5%;
/* = 14px assuming browser's regular font size is 16px */
}
/* line 11, ../../bag/sass/partials/_base.scss */
ul {
margin: 0;
padding: 0;
list-style-type: disc;
margin-left: 10px;
}
/* line 17, ../../bag/sass/partials/_base.scss */
ol {
margin: 0;
padding: 0;
margin-left: 10px;
}
/* line 22, ../../bag/sass/partials/_base.scss */
a {
text-decoration: none;
}
/* line 25, ../../bag/sass/partials/_base.scss */
a:hover, a:active, a:focus {
text-decoration: none;
}
/* line 28, ../../bag/sass/partials/_base.scss */
em {
font-style: italic;
}
/* p,a,strong,em,li,dl,dt { */
/* line 32, ../../bag/sass/partials/_base.scss */
p, li, dl, dt {
margin: 6px 0;
line-height: 1.5em;
}
/* line 36, ../../bag/sass/partials/_base.scss */
dd {
margin-left: 2.5em;
}
/* line 39, ../../bag/sass/partials/_base.scss */
table {
width: 100%;
margin: 4px 0px;
}
/* line 43, ../../bag/sass/partials/_base.scss */
h1 {
font-size: 1.4em;
}
/* line 46, ../../bag/sass/partials/_base.scss */
h2 {
font-size: 1.3em;
}
/* line 49, ../../bag/sass/partials/_base.scss */
h3 {
font-size: 1.2em;
}
/* line 52, ../../bag/sass/partials/_base.scss */
h4 {
font-size: 1.15em;
}
/* line 55, ../../bag/sass/partials/_base.scss */
h5 {
font-size: 1em;
}
/* line 58, ../../bag/sass/partials/_base.scss */
fieldset {
border-width: 1px;
border-style: solid;
}
/* line 62, ../../bag/sass/partials/_base.scss */
#site-name, #site-slogan {
font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', 'URW Palladio L', Baskerville, serif;
}
/*------- end of default section --------*/
/* line 1, ../../bag/sass/host/base-style.scss */
.blank5 {
height: 5px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 7, ../../bag/sass/host/base-style.scss */
.blank10 {
height: 10px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 13, ../../bag/sass/host/base-style.scss */
.blank12 {
height: 12px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 19, ../../bag/sass/host/base-style.scss */
.blank15 {
height: 15px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 25, ../../bag/sass/host/base-style.scss */
.blank20 {
height: 20px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 31, ../../bag/sass/host/base-style.scss */
.blank30 {
height: 30px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 37, ../../bag/sass/host/base-style.scss */
.blank35 {
height: 35px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 43, ../../bag/sass/host/base-style.scss */
.blank40 {
height: 40px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 49, ../../bag/sass/host/base-style.scss */
.blank50 {
height: 50px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 55, ../../bag/sass/host/base-style.scss */
.blank80 {
height: 80px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 11, ../../bag/sass/host/layout.scss */
[class*="container"] {
margin-left: auto;
margin-right: auto;
width: 1100px;
}
/* line 16, ../../bag/sass/host/layout.scss */
body {
background: url("../../images/beijing.jpg") repeat scroll 0% 0% transparent;
color: #333333;
font-family: "Microsoft YaHei";
font-size: 12px;
font-style: normal;
height: 100%;
margin: 0px auto;
padding: 0px;
width: 100%;
}
/* line 27, ../../bag/sass/host/layout.scss */
header {
margin-top: 0px;
height: 30px;
line-height: 30px;
text-align: right;
}
/* line 33, ../../bag/sass/host/layout.scss */
#nav-wrapper, #main-wrapper {
background: none repeat scroll 0 0 #041e39;
}
/* line 36, ../../bag/sass/host/layout.scss */
#nav-wrapper, #main-wrapper, #footer-wrapper {
width: 100%;
}
/* line 39, ../../bag/sass/host/layout.scss */
#main-wrapper {
background: url("../../images/container_bg.png") repeat-x scroll 0 0 transparent;
}
/* line 42, ../../bag/sass/host/layout.scss */
#main-wrapper .breadcrumb {
background: none repeat scroll 0 0 #f7f7f7;
border-bottom: 1px solid #9ba7b1;
height: 30px;
line-height: 30px;
}
/* line 51, ../../bag/sass/host/layout.scss */
#main-wrapper #main #messages, #main-wrapper #main #help-message, #main-wrapper #main #highlighted {
line-height: 35px;
text-align: center;
min-height: 35px;
}
/* line 57, ../../bag/sass/host/layout.scss */
#main-wrapper #main #banner-top {
min-height: 200px;
}
/* line 61, ../../bag/sass/host/layout.scss */
#main-wrapper #main #top-wrapper #top-columns {
height: 50px;
width: 100%;
}
/* line 66, ../../bag/sass/host/layout.scss */
#main-wrapper #main #top-wrapper #top-columns .column-blocks .column-block-wrapper {
width: 25%;
}
/* line 74, ../../bag/sass/host/layout.scss */
#main-wrapper #main #banner-bottom {
width: 100%;
height: 140px;
}
/* line 80, ../../bag/sass/host/layout.scss */
#menubar, .menubar {
background: none repeat scroll 0 0 #041e39;
}
/* line 83, ../../bag/sass/host/layout.scss */
#menubar {
width: 72%;
float: right;
}
/* line 87, ../../bag/sass/host/layout.scss */
.float-left-fix {
float: left;
}
/* line 91, ../../bag/sass/host/layout.scss */
.column-block-wrapper {
width: 25%;
}
/* line 95, ../../bag/sass/host/layout.scss */
#footer-wrapper {
height: 280px;
}
/* line 99, ../../bag/sass/host/layout.scss */
main, aside {
display: inline;
float: left;
/* LTR */
position: relative;
}
/* line 104, ../../bag/sass/host/layout.scss */
main#content {
min-height: 300px;
}
/* line 112, ../../bag/sass/host/layout.scss */
#main .t-left-sidebars {
width: 30%;
}
/* line 115, ../../bag/sass/host/layout.scss */
#main .t-right-sidebars {
width: 25%;
float: right;
}
/* line 119, ../../bag/sass/host/layout.scss */
#main .t-two-left-sidebars {
width: 30%;
}
/* line 122, ../../bag/sass/host/layout.scss */
#main .t-two-content {
width: 45%;
padding: 20px;
}
/* line 127, ../../bag/sass/host/layout.scss */
#main .t-two-right-sidebars {
width: 20%;
}
/* line 130, ../../bag/sass/host/layout.scss */
#main .t-single-content {
width: 70%;
}
/* line 135, ../../bag/sass/host/layout.scss */
#main .t-no-sidebars {
width: 100%;
padding: 20px;
} | themes/xunyun/css/host/layout.css | #page-wrapper {
margin: 0px auto;
padding: 0px;
max-width: 100%;
}
/* line 10, ../../bag/sass/partials/_layout.scss */
#page {
padding: 0px;
}
/* line 13, ../../bag/sass/partials/_layout.scss */
#main-wrapper {
width: 100%;
position: relative;
}
/* line 20, ../../bag/sass/partials/_layout.scss */
#content,
#sidebar-first,
#sidebar-second {
display: inline;
float: left;
position: relative;
/*overflow: hidden; Removed for Superfish */
}
/* line 29, ../../bag/sass/partials/_layout.scss */
#footer-columns {
width: 100%;
}
/* line 32, ../../bag/sass/partials/_layout.scss */
#footer-column-wrapper {
float: left;
}
/* line 35, ../../bag/sass/partials/_layout.scss */
#footer-column {
padding: 10px;
margin: 0px 5px 5px 5px;
text-align: left;
}
/* line 41, ../../bag/sass/partials/_layout.scss */
#top-columns,
#bottom-columns {
width: 100%;
overflow: hidden;
}
/* line 46, ../../bag/sass/partials/_layout.scss */
.column-block-wrapper {
float: left;
}
/* line 49, ../../bag/sass/partials/_layout.scss */
.column-block {
padding: 10px;
margin: 0px 5px 5px 5px;
text-align: left;
margin: 0px;
}
/* line 17, ../../bag/sass/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
display: block;
}
/* line 33, ../../bag/sass/partials/_normalize.scss */
audio,
canvas,
video {
display: inline-block;
}
/* line 46, ../../bag/sass/partials/_normalize.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 54, ../../bag/sass/partials/_normalize.scss */
[hidden] {
display: none;
}
/* line 67, ../../bag/sass/partials/_normalize.scss */
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
/* line 77, ../../bag/sass/partials/_normalize.scss */
html,
button,
input,
select,
textarea {
font-family: sans-serif;
}
/* line 87, ../../bag/sass/partials/_normalize.scss */
body {
margin: 0;
}
/* line 98, ../../bag/sass/partials/_normalize.scss */
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* line 103, ../../bag/sass/partials/_normalize.scss */
#header h1 {
margin: 0 0;
}
/* line 107, ../../bag/sass/partials/_normalize.scss */
h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
/* line 112, ../../bag/sass/partials/_normalize.scss */
h3 {
font-size: 1.17em;
margin: 1em 0;
}
/* line 117, ../../bag/sass/partials/_normalize.scss */
h4 {
font-size: 1em;
margin: 1.33em 0;
}
/* line 122, ../../bag/sass/partials/_normalize.scss */
h5 {
font-size: 0.83em;
margin: 1.67em 0;
}
/* line 127, ../../bag/sass/partials/_normalize.scss */
h6 {
font-size: 0.75em;
margin: 2.33em 0;
}
/* line 134, ../../bag/sass/partials/_normalize.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 140, ../../bag/sass/partials/_normalize.scss */
b,
strong {
font-weight: bold;
}
/* line 153, ../../bag/sass/partials/_normalize.scss */
dfn {
font-style: italic;
}
/* line 159, ../../bag/sass/partials/_normalize.scss */
mark {
background: #ff0;
color: #000;
}
/* line 175, ../../bag/sass/partials/_normalize.scss */
pre,
code,
kbd,
samp {
font-family: monospace, serif;
font-size: 1em;
}
/* line 188, ../../bag/sass/partials/_normalize.scss */
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
/* line 206, ../../bag/sass/partials/_normalize.scss */
q:before,
q:after {
content: '';
content: none;
}
/* line 212, ../../bag/sass/partials/_normalize.scss */
small {
font-size: 75%;
}
/* line 219, ../../bag/sass/partials/_normalize.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 227, ../../bag/sass/partials/_normalize.scss */
sup {
top: -0.5em;
}
/* line 231, ../../bag/sass/partials/_normalize.scss */
sub {
bottom: -0.25em;
}
/* line 268, ../../bag/sass/partials/_normalize.scss */
nav ul,
nav ol {
list-style: none;
padding: 0;
}
/* line 286, ../../bag/sass/partials/_normalize.scss */
img {
border: 0;
padding: 0;
margin: 0;
}
/* line 297, ../../bag/sass/partials/_normalize.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 307, ../../bag/sass/partials/_normalize.scss */
figure {
margin: 0;
}
/* line 324, ../../bag/sass/partials/_normalize.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 334, ../../bag/sass/partials/_normalize.scss */
legend {
border: 0;
padding: 0;
white-space: normal;
}
/* line 347, ../../bag/sass/partials/_normalize.scss */
button,
input,
select,
textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
}
/* line 361, ../../bag/sass/partials/_normalize.scss */
button,
input {
line-height: normal;
}
/* line 371, ../../bag/sass/partials/_normalize.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
/* line 384, ../../bag/sass/partials/_normalize.scss */
button[disabled],
input[disabled] {
cursor: default;
}
/* line 394, ../../bag/sass/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 408, ../../bag/sass/partials/_normalize.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 413, ../../bag/sass/partials/_normalize.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/* line 422, ../../bag/sass/partials/_normalize.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 431, ../../bag/sass/partials/_normalize.scss */
textarea {
overflow: auto;
vertical-align: top;
}
/* line 442, ../../bag/sass/partials/_normalize.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/*------- Begin default section --------*/
/* line 2, ../../bag/sass/partials/_base.scss */
* {
margin: 0;
padding: 0;
}
/* line 6, ../../bag/sass/partials/_base.scss */
body {
font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', 'URW Palladio L', Baskerville, serif;
line-height: 1.5em;
font-size: 87.5%;
/* = 14px assuming browser's regular font size is 16px */
}
/* line 11, ../../bag/sass/partials/_base.scss */
ul {
margin: 0;
padding: 0;
list-style-type: disc;
margin-left: 10px;
}
/* line 17, ../../bag/sass/partials/_base.scss */
ol {
margin: 0;
padding: 0;
margin-left: 10px;
}
/* line 22, ../../bag/sass/partials/_base.scss */
a {
text-decoration: none;
}
/* line 25, ../../bag/sass/partials/_base.scss */
a:hover, a:active, a:focus {
text-decoration: none;
}
/* line 28, ../../bag/sass/partials/_base.scss */
em {
font-style: italic;
}
/* p,a,strong,em,li,dl,dt { */
/* line 32, ../../bag/sass/partials/_base.scss */
p, li, dl, dt {
margin: 6px 0;
line-height: 1.5em;
}
/* line 36, ../../bag/sass/partials/_base.scss */
dd {
margin-left: 2.5em;
}
/* line 39, ../../bag/sass/partials/_base.scss */
table {
width: 100%;
margin: 4px 0px;
}
/* line 43, ../../bag/sass/partials/_base.scss */
h1 {
font-size: 1.4em;
}
/* line 46, ../../bag/sass/partials/_base.scss */
h2 {
font-size: 1.3em;
}
/* line 49, ../../bag/sass/partials/_base.scss */
h3 {
font-size: 1.2em;
}
/* line 52, ../../bag/sass/partials/_base.scss */
h4 {
font-size: 1.15em;
}
/* line 55, ../../bag/sass/partials/_base.scss */
h5 {
font-size: 1em;
}
/* line 58, ../../bag/sass/partials/_base.scss */
fieldset {
border-width: 1px;
border-style: solid;
}
/* line 62, ../../bag/sass/partials/_base.scss */
#site-name, #site-slogan {
font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', 'URW Palladio L', Baskerville, serif;
}
/*------- end of default section --------*/
/* line 1, ../../bag/sass/host/base-style.scss */
.blank5 {
height: 5px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 7, ../../bag/sass/host/base-style.scss */
.blank10 {
height: 10px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 13, ../../bag/sass/host/base-style.scss */
.blank12 {
height: 12px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 19, ../../bag/sass/host/base-style.scss */
.blank15 {
height: 15px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 25, ../../bag/sass/host/base-style.scss */
.blank20 {
height: 20px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 31, ../../bag/sass/host/base-style.scss */
.blank30 {
height: 30px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 37, ../../bag/sass/host/base-style.scss */
.blank35 {
height: 35px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 43, ../../bag/sass/host/base-style.scss */
.blank40 {
height: 40px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 49, ../../bag/sass/host/base-style.scss */
.blank50 {
height: 50px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 55, ../../bag/sass/host/base-style.scss */
.blank80 {
height: 80px;
width: auto;
clear: both;
overflow: hidden;
}
/* line 11, ../../bag/sass/host/layout.scss */
[class*="container"] {
margin-left: auto;
margin-right: auto;
width: 1100px;
}
/* line 16, ../../bag/sass/host/layout.scss */
body {
background: url("../../images/beijing.jpg") repeat scroll 0% 0% transparent;
color: #333333;
font-family: "Microsoft YaHei";
font-size: 12px;
font-style: normal;
height: 100%;
margin: 0px auto;
padding: 0px;
width: 100%;
}
/* line 27, ../../bag/sass/host/layout.scss */
header {
margin-top: 0px;
height: 30px;
line-height: 30px;
text-align: right;
}
/* line 33, ../../bag/sass/host/layout.scss */
#nav-wrapper, #main-wrapper {
background: none repeat scroll 0 0 #041e39;
}
/* line 36, ../../bag/sass/host/layout.scss */
#nav-wrapper, #main-wrapper, #footer-wrapper {
width: 100%;
}
/* line 39, ../../bag/sass/host/layout.scss */
#main-wrapper {
background: url("../../images/container_bg.png") repeat-x scroll 0 0 transparent;
}
/* line 42, ../../bag/sass/host/layout.scss */
#main-wrapper .breadcrumb {
background: none repeat scroll 0 0 #f7f7f7;
border-bottom: 1px solid #9ba7b1;
height: 30px;
line-height: 30px;
}
/* line 51, ../../bag/sass/host/layout.scss */
#main-wrapper #main #messages, #main-wrapper #main #help-message, #main-wrapper #main #highlighted {
line-height: 35px;
text-align: center;
min-height: 35px;
}
/* line 57, ../../bag/sass/host/layout.scss */
#main-wrapper #main #banner-top {
min-height: 200px;
}
/* line 61, ../../bag/sass/host/layout.scss */
#main-wrapper #main #top-wrapper #top-columns {
height: 50px;
width: 100%;
}
/* line 66, ../../bag/sass/host/layout.scss */
#main-wrapper #main #top-wrapper #top-columns .column-blocks .column-block-wrapper {
width: 25%;
}
/* line 74, ../../bag/sass/host/layout.scss */
#main-wrapper #main #banner-bottom {
width: 100%;
height: 140px;
}
/* line 80, ../../bag/sass/host/layout.scss */
#menubar, .menubar {
background: none repeat scroll 0 0 #041e39;
}
/* line 83, ../../bag/sass/host/layout.scss */
#menubar {
width: 72%;
float: right;
}
/* line 87, ../../bag/sass/host/layout.scss */
.float-left-fix {
float: left;
}
/* line 91, ../../bag/sass/host/layout.scss */
.column-block-wrapper {
width: 25%;
}
/* line 95, ../../bag/sass/host/layout.scss */
#footer-wrapper {
height: 280px;
}
/* line 99, ../../bag/sass/host/layout.scss */
main, aside {
display: inline;
float: left;
/* LTR */
position: relative;
}
/* line 104, ../../bag/sass/host/layout.scss */
main#content {
min-height: 300px;
}
/* line 112, ../../bag/sass/host/layout.scss */
#main .t-left-sidebars {
width: 30%;
}
/* line 115, ../../bag/sass/host/layout.scss */
#main .t-right-sidebars {
width: 25%;
float: right;
}
/* line 119, ../../bag/sass/host/layout.scss */
#main .t-two-left-sidebars {
width: 30%;
}
/* line 122, ../../bag/sass/host/layout.scss */
#main .t-two-content {
width: 45%;
padding: 20px;
}
/* line 127, ../../bag/sass/host/layout.scss */
#main .t-two-right-sidebars {
width: 20%;
}
/* line 130, ../../bag/sass/host/layout.scss */
#main .t-single-content {
width: 70%;
}
/* line 135, ../../bag/sass/host/layout.scss */
#main .t-no-sidebars {
width: 100%;
padding: 20px;
} | 0.189521 | 0.064212 |
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootflat/2.0.4/css/bootflat.min.css');
body {
background-color: #faf3dd;
}
/* ===== ヘッダー ===== */
.navbar {
margin: 2rem 0 2.5rem 0;
}
.my-navbar {
align-items: center;
background: #68b0ab;
display: flex;
height: 7rem;
justify-content: space-between;
padding: 0 2%;
margin-bottom: 3rem;
}
.my-navbar-brand{
font-size: 25px;
color: #0f3057;
font-weight: 900;
}
.my-navbar-item {
font-size: 15px;
color: #0f3057;
font-weight: 900;
}
.my-navbar-brand:hover,
a.my-navbar-item:hover {
color: #fad092;
}
/* ===== タスク一覧 ===== */
.table, th{
text-align: center;
}
.table td:nth-child(1){
vertical-align: middle;
font-size: 15px;
}
.task-title{
color: #800000;
}
.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(4){
white-space: nowrap;
width: 13%;
font-size: 13px;
vertical-align: middle;
}
.table td:nth-child(5),
.table td:nth-child(6){
width: 8%;
vertical-align: middle;
}
.process-img{
width: 45px;
height: 45px;
}
/* ===== パネル表示 ===== */
.panel-title{
font-size: 17px;
font-weight: 900;
margin: 10px 0;
text-align: center;
}
.panel-contents{
font-size: 15px;
text-align: center;
margin: 20px 0;
}
.panel-botton{
display: flex;
justify-content: space-around;
width: 30%;
margin: 0 auto;
}
/* ========== */
.form-control[disabled],
.form-control[readonly] {
background-color: #fff;
}
/* ===== フォルダとタスク一覧表示 ===== */
.list-content{
display: flex;
}
.item1{
width: 70%;
}
.item2{
width: 30%;
margin-right: 3px;
margin-left: auto;
display: flex;
justify-content: flex-end;
align-items: center;
}
/* ===== loginページ ===== */
.content-info{
width: 65%;
display: flex;
justify-content: space-around;
flex-wrap: nowrap;
margin: 10px auto 50px auto;
}
.img-title{
width: 420px;
height: 150px;
}
.img-flower{
width: auto;
height: 150px;
}
.login-panel{
width: 60%;
margin: 0 auto 20px auto;
text-align: center;
padding: 10px;
border: 2px solid #68b0ab;
border-radius: 30px;
position: relative;
}
.img-cat{
position: absolute;
right: 0;
top: -107px;
width: 200px;
height: 210px;
padding: 0 0 20px 20px;
}
.login-heading{
font-size: 20px;
font-weight: 900;
margin-bottom: 20px;
}
.login-form{
width: 200px;
margin-left: 5px;
} | public/css/styles.css | @import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootflat/2.0.4/css/bootflat.min.css');
body {
background-color: #faf3dd;
}
/* ===== ヘッダー ===== */
.navbar {
margin: 2rem 0 2.5rem 0;
}
.my-navbar {
align-items: center;
background: #68b0ab;
display: flex;
height: 7rem;
justify-content: space-between;
padding: 0 2%;
margin-bottom: 3rem;
}
.my-navbar-brand{
font-size: 25px;
color: #0f3057;
font-weight: 900;
}
.my-navbar-item {
font-size: 15px;
color: #0f3057;
font-weight: 900;
}
.my-navbar-brand:hover,
a.my-navbar-item:hover {
color: #fad092;
}
/* ===== タスク一覧 ===== */
.table, th{
text-align: center;
}
.table td:nth-child(1){
vertical-align: middle;
font-size: 15px;
}
.task-title{
color: #800000;
}
.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(4){
white-space: nowrap;
width: 13%;
font-size: 13px;
vertical-align: middle;
}
.table td:nth-child(5),
.table td:nth-child(6){
width: 8%;
vertical-align: middle;
}
.process-img{
width: 45px;
height: 45px;
}
/* ===== パネル表示 ===== */
.panel-title{
font-size: 17px;
font-weight: 900;
margin: 10px 0;
text-align: center;
}
.panel-contents{
font-size: 15px;
text-align: center;
margin: 20px 0;
}
.panel-botton{
display: flex;
justify-content: space-around;
width: 30%;
margin: 0 auto;
}
/* ========== */
.form-control[disabled],
.form-control[readonly] {
background-color: #fff;
}
/* ===== フォルダとタスク一覧表示 ===== */
.list-content{
display: flex;
}
.item1{
width: 70%;
}
.item2{
width: 30%;
margin-right: 3px;
margin-left: auto;
display: flex;
justify-content: flex-end;
align-items: center;
}
/* ===== loginページ ===== */
.content-info{
width: 65%;
display: flex;
justify-content: space-around;
flex-wrap: nowrap;
margin: 10px auto 50px auto;
}
.img-title{
width: 420px;
height: 150px;
}
.img-flower{
width: auto;
height: 150px;
}
.login-panel{
width: 60%;
margin: 0 auto 20px auto;
text-align: center;
padding: 10px;
border: 2px solid #68b0ab;
border-radius: 30px;
position: relative;
}
.img-cat{
position: absolute;
right: 0;
top: -107px;
width: 200px;
height: 210px;
padding: 0 0 20px 20px;
}
.login-heading{
font-size: 20px;
font-weight: 900;
margin-bottom: 20px;
}
.login-form{
width: 200px;
margin-left: 5px;
} | 0.181227 | 0.057229 |
@media only screen and (min-width: 480px) {
/* ====================
INTERMEDIATE: Menu
==================== */
nav a{
float:right;
margin:0 1.7%;
padding:20px 2%;
margin-bottom:0;
}
nav li:first-child a{ margin-left:0; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
}
@media only screen and (min-width: 768px) {
/* ====================
WIDE: CSS3 Effects
==================== */
#header-container,
#main aside{
}
/* ============
WIDE: Menu
============ */
#title{
float:left;
}
/* ============
WIDE: Main
============ */
#main article{
float:left;
width:57%;
}
#main aside{
float:right;
width:28%;
}
}
@media (max-width: 767px) {
#header-container { width:398px; }
#header-container .wrapper { width:398px; }
.phoneOnly {display:block !important;}
.mobileOnly {display:none !important;}
.desktopOnly {display:none !important;}
.desktopAndMobile{display:none !important;}
.phoneAndMobile{display:block !important;}
/* ====================
INTERMEDIATE: Menu
==================== */
#main-menu { clear:both; }
nav { float:left !important; width:398px; }
nav ul {float: left; margin: 0; padding: 0; width: 398px;}
nav ul li { clear: both; width: 100%;}
nav ul li a { background-color: #e7e7e7; float:left; margin:0 0 1px 0; padding:2%;text-align:left; width: 96%; }
nav li:first-child a{ margin-left:0; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
/* interior and page-specific mods */
#icons-fonts .page-header {
max-width:398px;
overflow: hidden;
}
header.page-header h1 {
font-size:40px;
margin: 0px;
text-align:center;
width:100%;
}
main .container {
max-width:398px;
}
section {
padding: 25px 20px;
width: 358px;
}
section h2 {
margin-top:20px !important;
}
.interior.textLeft {
float: left;
height: 100%;
width: 100%;
}
.interior.imgRight {
float: left;
width: 358px;
}
.interior.imgRight img {
max-width:358px;
}
.interior.textLeft.SM {
float: left;
width: 358px;
}
.clearTitle { margin-top:0;}
.interior.imgRight.LG {
float: left;
width: 358px;
}
.caption {text-align: left;}
/* home and general mods */
body {
background-color: #e5e7ea !important;
border-left:2px solid #fff;
border-right:2px solid #fff;
margin: 0 auto;
width: 398px;
}
.colThird.center {
border-bottom:2px solid #fff;
border-left:0px !important;
border-right:0px !important;
border-top:2px solid #fff;
max-width:100%;
width:398px !important;
}
section.thirds {
padding:0 !important;
width:398px !important;
}
.wrapper {
width: 347px;
}
.slider {
width:398px; padding:0;
}
.full {
max-width:100% !important;
}
section img.sectionLogo {
max-width:100%;
}
/* home only version */
.gameplay-controller {
background: transparent url('../img/gp-controller-bg-398x600.jpg') no-repeat 0 0; background-position-x: 0px !important;
}
.gameplay-controller.full .interior {
padding-top:230px !important;
}
.gameplay-controller.full .interior.textLeft {
width:347px !important;
}
.gameplay-controls {
background: transparent url('../img/gp-controls-bg-398x600.jpg') no-repeat 0 0;
}
.gameplay-controls2 {
background: #000 url('../img/gp-controls-bg-398x600.jpg') no-repeat 0 0;
height:670px;
}
.gameplay-controls.full .interior {
padding-top:30px;
}
.gameplay-controls2.full .interior {
padding-top:250px !important;
}
.gameplay-controls.full .interior.textLeft {
width:347px;
}
.gameplay-controls2 img.onSteamBanner {margin-top:30px;}
section.open-exhibits {
background: transparent url('../img/open-exhibits-bg-398x600.jpg') no-repeat 0 0;
}
.open-exhibits.full .interior {
padding-top:230px !important;
}
.open-exhibits.full .interior.textLeft {
width:347px !important;
}
section.gestureworks-core {
background: transparent url('../img/gw-visualizer-398x600.jpg') no-repeat 0 0;
}
.gestureworks-core.full .interior {
padding-top:20px;
}
.gestureworks-core.full .interior.textLeft {
width:347px;
}
#home section h2 {
font-size: 30px !important;
/*text-shadow: 4px 4px 4px black;*/
}
#home section p {
/*text-shadow: 2px 2px 2px black;*/
}
.full .interior.textRight {
float:left !important;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
.full .interior.textLeft {
float:left;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
#footer-container footer section.leftFooter {
padding: 2% 0 0 4% !important;
width: 90%;
}
#footer-container footer section.rightFooter {
padding: 30px 0 0 0 !important;
width: 100%;
}
#footer-container footer section ul.leftFooterNav {
float:left;
margin:0 20% 20px 0;
width:40%;
}
#footer-container footer section ul.rightFooterNav {
float:right;
margin:20px 0 20px 0;
width:35%;
}
#footer-container footer section.rightFooter .branding {
right: 0%;
}
#footer-container footer section.rightFooter .shareWrap {
margin-top:20px;
}
section article .fullWidthImageWithText.workshop p {
color: #fff;
padding-top: 25px;
margin: 0 auto;
width: 90%;
}
section article .threeColumnWrap {
width: 358px;
}
section article .threeColumnWrap .column {
margin: 0 20px 20px 0;
overflow-x: hidden;
width: 358px;
}
section article .threeColumnWrap img {
width:358px;
}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {
position: relative;
}
#main-menu .nav ul ul.sub-menu {
left: 0px;
top: 0;
}
#about .interior.textLeft, #contact .interior.textLeft, #icons-fonts .interior.textLeft { width: 100%; }
/* begin About page */
#about #bg-about-home {
background: url("../img/about-home.jpg") 350px 45px no-repeat; background-size: 70%; }
#about #bg-what-is-gw { background: url("../img/about-gw-atom.png") 380px 70px no-repeat; background-size: 60%; }
#about section { padding-top: 25px; padding-bottom: 25px; }
#about #bg-gestureworks-devices { background: url("../img/about-gw-molecule.png") 452px -6px no-repeat; }
#about #bg-your-language { background: url("../img/about-gw-languages.png") 460px 5px no-repeat; background-size: 40%; }
/* end About page */
/* begin flash and Key pages */
#letterContainer {background-size: 100%; width: 737px; }
#letterContainer #inner {background-size: 100%;}
#letterContainer #bottom {background-size: 100%;}
#letterContainer #logo-flash-to-openexhibits {background-size: 90%; margin-left:-20px;}
/* end flash and Key pages */
/* begin contact page */
#contact form ul li input.submit.btn { right: 55px;width: 95px; }
.interior.textLeft { width: 61%; }
#contact .interior.textLeft {padding-left:0; line-height:35px; margin-bottom: -8px;}
/* end contact page */
/* begin core page */
.core.page-header h1 { margin-left:0; line-height:38px; margin-bottom: -8px;}
.corePage .full .interior {padding-top: 0px !important;}
.corePage .tables-walls.full .interior {padding-top: 19px !important;}
.corePage .colHalf .interior {width: 368px; padding: 7px 0 20px 30px;}
.corePage .colHalf .interior br {display:none;}
.full .interior.textLeft {width: 325px !important;}
.corePage .devices-os.full {height: 625px;}
.corePage .devices-os.full .interior.textRight {display:none;}
.corePage .devices-os.full .interior {padding-top:0;}
.corePage .tables-walls.full .interior.textLeft {width: 330px !important;}
.corePage .tables-walls.full .interior.textRight {background-color:#000;width: 348px !important;border-bottom: 1px solid #fff;margin-top: -25px;padding-top:0px;}
.corePage .tables-walls.full .interior.textLeft h2 br {display:none;}
.corePage section.halfs {padding: 0 0 0 0;width: 398px;}
.colHalf.authoring { margin-top:-25px;}
.colHalf.core {background: #000 url('../img/core-half-bg-559x480.jpg') no-repeat 100px 0; width:100%;}
.colHalf .interior h3 {padding-right:10px}
.colHalf.support {background:none; background-color: #6a8fb9; }
.colHalf.authoring {background: #34465d url('../img/authoring-half-bg-559x480.jpg') no-repeat 0 0px; background-size: auto; width: 100%; }
.colHalf.hci-engine {background: #282828 url('../img/hci-engine-half-bg-559x480.jpg') no-repeat 170px 0; width: 100%; }
/* end core page */
#letterContainer {background:none; width:100%;}
#letterContainer #inner {background: none; padding: 15px 36px 30px 36px;}
#letterContainer #logo-gestureKey, #letterContainer #logo-gameplay{background-size: 90%;}
/* begin legal page */
#terms_of_use header.page-header h1 { line-height:38px; margin-bottom: -8px; }
/* end legal page */
}
@media (max-width: 1200px) and (min-width: 767px) {
#header-container { width:767px; }
#header-container .wrapper { width:767px; }
.phoneOnly {display:none !important;}
.mobileOnly {display:block !important;}
.desktopOnly {display:none !important;}
.desktopAndMobile{display:block !important;}
.phoneAndMobile{display:block !important;}
/* ====================
INTERMEDIATE: Menu
==================== */
#main-menu { clear:both; }
nav { float:left !important; width:768px; }
nav ul {float: left; margin: 0; padding: 0; width: 768px;}
nav ul li { clear: none; width: 100%;}
nav ul li.half { float: left; margin-right: 1px; width:383px; }
nav ul li ul li.half {width:382px;}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {width: 766px;}
nav ul li a { background-color: #e7e7e7; float:left; margin:0 0 1px 0; padding:2%;text-align:left; width: 96%; }
nav li:first-child a{ margin-left:0; }
nav li:last-child a.hasDropDown{ height: 14px; padding-top: 11px; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
/* interior and page-specific mods */
#icons-fonts .page-header {
max-width:767px;
overflow: hidden;
}
header.page-header h1 {
font-size:40px;
margin: 0px;
text-align:center;
width:100%;
}
main .container {
max-width:767px;
}
section {
padding: 25px 20px;
width: 727px;
}
section h2 {
margin-top:20px !important;
}
.interior.textLeft {
float: left;
height: 100%;
width: 70%;
}
.interior.imgRight {
float: right;
width: 28%;
}
.interior.imgRight img {
max-width:100%;
}
.interior.textLeft.SM {
float: left;
width: 70%;
}
.clearTitle { margin-top:0;}
.interior.imgRight.LG {
float: right;
width: 28%;
}
.caption {text-align: left;}
/* home and general mods */
body {
background-color: #e5e7ea !important;
border-left:2px solid #fff;
border-right:2px solid #fff;
margin: 0 auto;
width: 767px;
}
.colThird {
height: 380px !important;
max-width: 100%;
overflow: hidden;
width: 255px;
}
.colThird.center {
border-bottom:2px solid #fff;
border-left:0px !important;
border-right:0px !important;
border-top:2px solid #fff;
height: 380px !important;
margin-top:-2px;
max-width:256px;
width:256px !important;
}
.colThird .interior {
width: 236px;
padding: 144px 10px 0px 10px;
}
.colThird.center .interior {
width: 237px;
}
.colThird h3 {
font-size: 24px;
}
section.thirds {
padding:0 !important;
width:767px !important;
}
.colThird.tumblr-blog {
background: #34465d url('../img/blog-tumbler-bg-399x400.jpg') no-repeat -70px -20px;
}
.wrapper {
width: 767px;
}
section.slider {
padding:0; width:767px;
}
.full {
max-width:100% !important;
}
section img.sectionLogo {
max-width:70%;
}
section img.sectionLogo {
max-width: 100%;
}
section.gameplay-controller {
background-position-x: -200px !important;
}
.gameplay-controller.full .interior {
padding-top:40px !important;
}
.gameplay-controller .steamBannerWrap {
margin-left:-7px;
}
section.gameplay-controls {
background-position-x: -150px !important;
}
.gameplay-controls.full .interior {
padding-top:110px !important;
}
.gameplay-controls.full .interior.textRight {
float:right !important;
}
.gameplay-controls2 img.onSteamBanner {margin-top:30px;}
.gameplay-controls2.full .interior.onSteamMod {margin-top:-30px;}
section.open-exhibits {
background-position-x: -300px !important;
}
.open-exhibits.full .interior {
padding-top:80px !important;
}
section.gestureworks-core {
background-position-x: -240px !important;
background-position-y: 0px !important;
opacity: 1.0;
}
.gestureworks-core.full .interior {
padding-top:100px !important;
}
.gestureworks-core.full .interior.textRight {
float:right !important;
}
#home section h2 {
font-size: 30px !important;
text-shadow: none;;
}
#home section p {
text-shadow: none;
}
.full .interior.textRight {
float:left !important;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
.full .interior.textLeft {
float:left;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
/* begin About page */
#about #bg-about-home {
background: url("../img/about-home.jpg") 350px 45px no-repeat; background-size: 70%; }
#about #bg-what-is-gw { background: url("../img/about-gw-atom.png") 380px 70px no-repeat; background-size: 60%; }
#about section { padding-top: 25px; padding-bottom: 25px; }
#about #bg-gestureworks-devices { background: url("../img/about-gw-molecule.png") 452px -6px no-repeat; }
#about #bg-your-language { background: url("../img/about-gw-languages.png") 460px 5px no-repeat; background-size: 40%; }
/* end About page */
/* begin flash and Key pages */
#letterContainer {background-size: 100%; width: 737px; }
#letterContainer #inner {background-size: 100%;}
#letterContainer #bottom {background-size: 100%;}
#letterContainer #logo-flash-to-openexhibits {background-size: 90%; margin-left:-20px;}
/* end flash and Key pages */
/* begin contact page */
#contact form ul li input.submit.btn { right: 55px;width: 95px; }
.interior.textLeft { width: 61%; }
/* end contact page */
/* begin core page */
.core.page-header h1 {margin-left:0;}
line-height:35px; margin-bottom: -8px;
.corePage .full .interior {padding-top: 0px !important;}
.corePage .devices-os.full .interior {padding-top: 0px !important;}
.corePage .tables-walls.full .interior {padding-top: 25px !important;}
.full .interior.textLeft {width: 325px !important;}
.corePage .tables-walls.full .interior.textLeft {width: 330px !important;}
.corePage .tables-walls.full .interior.textRight {width: 330px !important;}
.corePage .tables-walls.full .interior.textLeft h2 br {display:none;}
.corePage .devices-os.full .interior.textLeft ul li {font-size:14px;}
.corePage section.halfs {padding: 0 0 0 0;width: 767px;}
.colHalf.authoring { margin-top:-25px;}
.colHalf.core {background: #000 url('../img/core-half-bg-559x480.jpg') no-repeat 100px 0; width:100%;}
.colHalf.support {background: #6a8fb9 url('../img/support-half-bg-559x480.jpg') no-repeat 5px -50px; background-size: 100%; width:100%;}
.colHalf.authoring {background: #34465d url('../img/authoring-half-bg-559x480.jpg') no-repeat 0 -125px; background-size: 100%; width: 100%; }
.colHalf.hci-engine {background: #282828 url('../img/hci-engine-half-bg-559x480.jpg') no-repeat 170px 0; width: 100%; }
/* end core page */
#footer-container footer section.leftFooter {
padding: 2% 0 0 4% !important;
width: 90%;
}
#footer-container footer section.rightFooter {
padding: 30px 30px 0 0 !important;
width: 100%;
}
#footer-container footer section ul.leftFooterNav {
float:left;
margin:0 20% 20px 0;
width:40%;
}
#footer-container footer section ul.rightFooterNav {
float:right;
margin:20px 5% 20px 0;
width:30%;
}
#footer-container footer section.rightFooter .branding {
right: 5%;
}
#footer-container footer section.rightFooter .shareWrap {
margin-top:20px;
}
section article .fullWidthImageWithText.workshop p {
color: #fff;
padding-top: 25px;
margin: 0 auto;
width: 90%;
}
section article .threeColumnWrap {
width: 358px;
}
section article .threeColumnWrap .column {
margin: 0 20px 20px 0;
overflow-x: hidden;
width: 358px;
}
section article .threeColumnWrap img {
width:358px;
}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {
position: relative;
}
#main-menu .nav ul ul.sub-menu {
left: 0px;
top: 0;
}
.interior.textLeft.SM {
float: left;
width: 70%;
}
.interior.imgRight.LG {
float: right;
width: 28%;
}
.interior.imgRight img {
max-width: 100%;
}
section article .threeColumnWrap {
width: 727px;
}
section article .threeColumnWrap .column {
width: 228px;
}
} | css/responsive.css |
@media only screen and (min-width: 480px) {
/* ====================
INTERMEDIATE: Menu
==================== */
nav a{
float:right;
margin:0 1.7%;
padding:20px 2%;
margin-bottom:0;
}
nav li:first-child a{ margin-left:0; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
}
@media only screen and (min-width: 768px) {
/* ====================
WIDE: CSS3 Effects
==================== */
#header-container,
#main aside{
}
/* ============
WIDE: Menu
============ */
#title{
float:left;
}
/* ============
WIDE: Main
============ */
#main article{
float:left;
width:57%;
}
#main aside{
float:right;
width:28%;
}
}
@media (max-width: 767px) {
#header-container { width:398px; }
#header-container .wrapper { width:398px; }
.phoneOnly {display:block !important;}
.mobileOnly {display:none !important;}
.desktopOnly {display:none !important;}
.desktopAndMobile{display:none !important;}
.phoneAndMobile{display:block !important;}
/* ====================
INTERMEDIATE: Menu
==================== */
#main-menu { clear:both; }
nav { float:left !important; width:398px; }
nav ul {float: left; margin: 0; padding: 0; width: 398px;}
nav ul li { clear: both; width: 100%;}
nav ul li a { background-color: #e7e7e7; float:left; margin:0 0 1px 0; padding:2%;text-align:left; width: 96%; }
nav li:first-child a{ margin-left:0; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
/* interior and page-specific mods */
#icons-fonts .page-header {
max-width:398px;
overflow: hidden;
}
header.page-header h1 {
font-size:40px;
margin: 0px;
text-align:center;
width:100%;
}
main .container {
max-width:398px;
}
section {
padding: 25px 20px;
width: 358px;
}
section h2 {
margin-top:20px !important;
}
.interior.textLeft {
float: left;
height: 100%;
width: 100%;
}
.interior.imgRight {
float: left;
width: 358px;
}
.interior.imgRight img {
max-width:358px;
}
.interior.textLeft.SM {
float: left;
width: 358px;
}
.clearTitle { margin-top:0;}
.interior.imgRight.LG {
float: left;
width: 358px;
}
.caption {text-align: left;}
/* home and general mods */
body {
background-color: #e5e7ea !important;
border-left:2px solid #fff;
border-right:2px solid #fff;
margin: 0 auto;
width: 398px;
}
.colThird.center {
border-bottom:2px solid #fff;
border-left:0px !important;
border-right:0px !important;
border-top:2px solid #fff;
max-width:100%;
width:398px !important;
}
section.thirds {
padding:0 !important;
width:398px !important;
}
.wrapper {
width: 347px;
}
.slider {
width:398px; padding:0;
}
.full {
max-width:100% !important;
}
section img.sectionLogo {
max-width:100%;
}
/* home only version */
.gameplay-controller {
background: transparent url('../img/gp-controller-bg-398x600.jpg') no-repeat 0 0; background-position-x: 0px !important;
}
.gameplay-controller.full .interior {
padding-top:230px !important;
}
.gameplay-controller.full .interior.textLeft {
width:347px !important;
}
.gameplay-controls {
background: transparent url('../img/gp-controls-bg-398x600.jpg') no-repeat 0 0;
}
.gameplay-controls2 {
background: #000 url('../img/gp-controls-bg-398x600.jpg') no-repeat 0 0;
height:670px;
}
.gameplay-controls.full .interior {
padding-top:30px;
}
.gameplay-controls2.full .interior {
padding-top:250px !important;
}
.gameplay-controls.full .interior.textLeft {
width:347px;
}
.gameplay-controls2 img.onSteamBanner {margin-top:30px;}
section.open-exhibits {
background: transparent url('../img/open-exhibits-bg-398x600.jpg') no-repeat 0 0;
}
.open-exhibits.full .interior {
padding-top:230px !important;
}
.open-exhibits.full .interior.textLeft {
width:347px !important;
}
section.gestureworks-core {
background: transparent url('../img/gw-visualizer-398x600.jpg') no-repeat 0 0;
}
.gestureworks-core.full .interior {
padding-top:20px;
}
.gestureworks-core.full .interior.textLeft {
width:347px;
}
#home section h2 {
font-size: 30px !important;
/*text-shadow: 4px 4px 4px black;*/
}
#home section p {
/*text-shadow: 2px 2px 2px black;*/
}
.full .interior.textRight {
float:left !important;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
.full .interior.textLeft {
float:left;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
#footer-container footer section.leftFooter {
padding: 2% 0 0 4% !important;
width: 90%;
}
#footer-container footer section.rightFooter {
padding: 30px 0 0 0 !important;
width: 100%;
}
#footer-container footer section ul.leftFooterNav {
float:left;
margin:0 20% 20px 0;
width:40%;
}
#footer-container footer section ul.rightFooterNav {
float:right;
margin:20px 0 20px 0;
width:35%;
}
#footer-container footer section.rightFooter .branding {
right: 0%;
}
#footer-container footer section.rightFooter .shareWrap {
margin-top:20px;
}
section article .fullWidthImageWithText.workshop p {
color: #fff;
padding-top: 25px;
margin: 0 auto;
width: 90%;
}
section article .threeColumnWrap {
width: 358px;
}
section article .threeColumnWrap .column {
margin: 0 20px 20px 0;
overflow-x: hidden;
width: 358px;
}
section article .threeColumnWrap img {
width:358px;
}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {
position: relative;
}
#main-menu .nav ul ul.sub-menu {
left: 0px;
top: 0;
}
#about .interior.textLeft, #contact .interior.textLeft, #icons-fonts .interior.textLeft { width: 100%; }
/* begin About page */
#about #bg-about-home {
background: url("../img/about-home.jpg") 350px 45px no-repeat; background-size: 70%; }
#about #bg-what-is-gw { background: url("../img/about-gw-atom.png") 380px 70px no-repeat; background-size: 60%; }
#about section { padding-top: 25px; padding-bottom: 25px; }
#about #bg-gestureworks-devices { background: url("../img/about-gw-molecule.png") 452px -6px no-repeat; }
#about #bg-your-language { background: url("../img/about-gw-languages.png") 460px 5px no-repeat; background-size: 40%; }
/* end About page */
/* begin flash and Key pages */
#letterContainer {background-size: 100%; width: 737px; }
#letterContainer #inner {background-size: 100%;}
#letterContainer #bottom {background-size: 100%;}
#letterContainer #logo-flash-to-openexhibits {background-size: 90%; margin-left:-20px;}
/* end flash and Key pages */
/* begin contact page */
#contact form ul li input.submit.btn { right: 55px;width: 95px; }
.interior.textLeft { width: 61%; }
#contact .interior.textLeft {padding-left:0; line-height:35px; margin-bottom: -8px;}
/* end contact page */
/* begin core page */
.core.page-header h1 { margin-left:0; line-height:38px; margin-bottom: -8px;}
.corePage .full .interior {padding-top: 0px !important;}
.corePage .tables-walls.full .interior {padding-top: 19px !important;}
.corePage .colHalf .interior {width: 368px; padding: 7px 0 20px 30px;}
.corePage .colHalf .interior br {display:none;}
.full .interior.textLeft {width: 325px !important;}
.corePage .devices-os.full {height: 625px;}
.corePage .devices-os.full .interior.textRight {display:none;}
.corePage .devices-os.full .interior {padding-top:0;}
.corePage .tables-walls.full .interior.textLeft {width: 330px !important;}
.corePage .tables-walls.full .interior.textRight {background-color:#000;width: 348px !important;border-bottom: 1px solid #fff;margin-top: -25px;padding-top:0px;}
.corePage .tables-walls.full .interior.textLeft h2 br {display:none;}
.corePage section.halfs {padding: 0 0 0 0;width: 398px;}
.colHalf.authoring { margin-top:-25px;}
.colHalf.core {background: #000 url('../img/core-half-bg-559x480.jpg') no-repeat 100px 0; width:100%;}
.colHalf .interior h3 {padding-right:10px}
.colHalf.support {background:none; background-color: #6a8fb9; }
.colHalf.authoring {background: #34465d url('../img/authoring-half-bg-559x480.jpg') no-repeat 0 0px; background-size: auto; width: 100%; }
.colHalf.hci-engine {background: #282828 url('../img/hci-engine-half-bg-559x480.jpg') no-repeat 170px 0; width: 100%; }
/* end core page */
#letterContainer {background:none; width:100%;}
#letterContainer #inner {background: none; padding: 15px 36px 30px 36px;}
#letterContainer #logo-gestureKey, #letterContainer #logo-gameplay{background-size: 90%;}
/* begin legal page */
#terms_of_use header.page-header h1 { line-height:38px; margin-bottom: -8px; }
/* end legal page */
}
@media (max-width: 1200px) and (min-width: 767px) {
#header-container { width:767px; }
#header-container .wrapper { width:767px; }
.phoneOnly {display:none !important;}
.mobileOnly {display:block !important;}
.desktopOnly {display:none !important;}
.desktopAndMobile{display:block !important;}
.phoneAndMobile{display:block !important;}
/* ====================
INTERMEDIATE: Menu
==================== */
#main-menu { clear:both; }
nav { float:left !important; width:768px; }
nav ul {float: left; margin: 0; padding: 0; width: 768px;}
nav ul li { clear: none; width: 100%;}
nav ul li.half { float: left; margin-right: 1px; width:383px; }
nav ul li ul li.half {width:382px;}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {width: 766px;}
nav ul li a { background-color: #e7e7e7; float:left; margin:0 0 1px 0; padding:2%;text-align:left; width: 96%; }
nav li:first-child a{ margin-left:0; }
nav li:last-child a.hasDropDown{ height: 14px; padding-top: 11px; }
nav li:last-child a{ margin-right:0; }
/* ========================
INTERMEDIATE: IE Fixes
======================== */
nav ul li{
display:block;
}
.oldie nav a{
margin:0 0.7%;
}
/* interior and page-specific mods */
#icons-fonts .page-header {
max-width:767px;
overflow: hidden;
}
header.page-header h1 {
font-size:40px;
margin: 0px;
text-align:center;
width:100%;
}
main .container {
max-width:767px;
}
section {
padding: 25px 20px;
width: 727px;
}
section h2 {
margin-top:20px !important;
}
.interior.textLeft {
float: left;
height: 100%;
width: 70%;
}
.interior.imgRight {
float: right;
width: 28%;
}
.interior.imgRight img {
max-width:100%;
}
.interior.textLeft.SM {
float: left;
width: 70%;
}
.clearTitle { margin-top:0;}
.interior.imgRight.LG {
float: right;
width: 28%;
}
.caption {text-align: left;}
/* home and general mods */
body {
background-color: #e5e7ea !important;
border-left:2px solid #fff;
border-right:2px solid #fff;
margin: 0 auto;
width: 767px;
}
.colThird {
height: 380px !important;
max-width: 100%;
overflow: hidden;
width: 255px;
}
.colThird.center {
border-bottom:2px solid #fff;
border-left:0px !important;
border-right:0px !important;
border-top:2px solid #fff;
height: 380px !important;
margin-top:-2px;
max-width:256px;
width:256px !important;
}
.colThird .interior {
width: 236px;
padding: 144px 10px 0px 10px;
}
.colThird.center .interior {
width: 237px;
}
.colThird h3 {
font-size: 24px;
}
section.thirds {
padding:0 !important;
width:767px !important;
}
.colThird.tumblr-blog {
background: #34465d url('../img/blog-tumbler-bg-399x400.jpg') no-repeat -70px -20px;
}
.wrapper {
width: 767px;
}
section.slider {
padding:0; width:767px;
}
.full {
max-width:100% !important;
}
section img.sectionLogo {
max-width:70%;
}
section img.sectionLogo {
max-width: 100%;
}
section.gameplay-controller {
background-position-x: -200px !important;
}
.gameplay-controller.full .interior {
padding-top:40px !important;
}
.gameplay-controller .steamBannerWrap {
margin-left:-7px;
}
section.gameplay-controls {
background-position-x: -150px !important;
}
.gameplay-controls.full .interior {
padding-top:110px !important;
}
.gameplay-controls.full .interior.textRight {
float:right !important;
}
.gameplay-controls2 img.onSteamBanner {margin-top:30px;}
.gameplay-controls2.full .interior.onSteamMod {margin-top:-30px;}
section.open-exhibits {
background-position-x: -300px !important;
}
.open-exhibits.full .interior {
padding-top:80px !important;
}
section.gestureworks-core {
background-position-x: -240px !important;
background-position-y: 0px !important;
opacity: 1.0;
}
.gestureworks-core.full .interior {
padding-top:100px !important;
}
.gestureworks-core.full .interior.textRight {
float:right !important;
}
#home section h2 {
font-size: 30px !important;
text-shadow: none;;
}
#home section p {
text-shadow: none;
}
.full .interior.textRight {
float:left !important;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
.full .interior.textLeft {
float:left;
padding-left:30px !important;
padding-right: 20px !important;
width:338px !important;
}
/* begin About page */
#about #bg-about-home {
background: url("../img/about-home.jpg") 350px 45px no-repeat; background-size: 70%; }
#about #bg-what-is-gw { background: url("../img/about-gw-atom.png") 380px 70px no-repeat; background-size: 60%; }
#about section { padding-top: 25px; padding-bottom: 25px; }
#about #bg-gestureworks-devices { background: url("../img/about-gw-molecule.png") 452px -6px no-repeat; }
#about #bg-your-language { background: url("../img/about-gw-languages.png") 460px 5px no-repeat; background-size: 40%; }
/* end About page */
/* begin flash and Key pages */
#letterContainer {background-size: 100%; width: 737px; }
#letterContainer #inner {background-size: 100%;}
#letterContainer #bottom {background-size: 100%;}
#letterContainer #logo-flash-to-openexhibits {background-size: 90%; margin-left:-20px;}
/* end flash and Key pages */
/* begin contact page */
#contact form ul li input.submit.btn { right: 55px;width: 95px; }
.interior.textLeft { width: 61%; }
/* end contact page */
/* begin core page */
.core.page-header h1 {margin-left:0;}
line-height:35px; margin-bottom: -8px;
.corePage .full .interior {padding-top: 0px !important;}
.corePage .devices-os.full .interior {padding-top: 0px !important;}
.corePage .tables-walls.full .interior {padding-top: 25px !important;}
.full .interior.textLeft {width: 325px !important;}
.corePage .tables-walls.full .interior.textLeft {width: 330px !important;}
.corePage .tables-walls.full .interior.textRight {width: 330px !important;}
.corePage .tables-walls.full .interior.textLeft h2 br {display:none;}
.corePage .devices-os.full .interior.textLeft ul li {font-size:14px;}
.corePage section.halfs {padding: 0 0 0 0;width: 767px;}
.colHalf.authoring { margin-top:-25px;}
.colHalf.core {background: #000 url('../img/core-half-bg-559x480.jpg') no-repeat 100px 0; width:100%;}
.colHalf.support {background: #6a8fb9 url('../img/support-half-bg-559x480.jpg') no-repeat 5px -50px; background-size: 100%; width:100%;}
.colHalf.authoring {background: #34465d url('../img/authoring-half-bg-559x480.jpg') no-repeat 0 -125px; background-size: 100%; width: 100%; }
.colHalf.hci-engine {background: #282828 url('../img/hci-engine-half-bg-559x480.jpg') no-repeat 170px 0; width: 100%; }
/* end core page */
#footer-container footer section.leftFooter {
padding: 2% 0 0 4% !important;
width: 90%;
}
#footer-container footer section.rightFooter {
padding: 30px 30px 0 0 !important;
width: 100%;
}
#footer-container footer section ul.leftFooterNav {
float:left;
margin:0 20% 20px 0;
width:40%;
}
#footer-container footer section ul.rightFooterNav {
float:right;
margin:20px 5% 20px 0;
width:30%;
}
#footer-container footer section.rightFooter .branding {
right: 5%;
}
#footer-container footer section.rightFooter .shareWrap {
margin-top:20px;
}
section article .fullWidthImageWithText.workshop p {
color: #fff;
padding-top: 25px;
margin: 0 auto;
width: 90%;
}
section article .threeColumnWrap {
width: 358px;
}
section article .threeColumnWrap .column {
margin: 0 20px 20px 0;
overflow-x: hidden;
width: 358px;
}
section article .threeColumnWrap img {
width:358px;
}
#main-menu .nav ul li:hover ul.sub-menu, #main-menu .nav ul li:focus ul.sub-menu {
position: relative;
}
#main-menu .nav ul ul.sub-menu {
left: 0px;
top: 0;
}
.interior.textLeft.SM {
float: left;
width: 70%;
}
.interior.imgRight.LG {
float: right;
width: 28%;
}
.interior.imgRight img {
max-width: 100%;
}
section article .threeColumnWrap {
width: 727px;
}
section article .threeColumnWrap .column {
width: 228px;
}
} | 0.204779 | 0.074198 |
background-color: white;
}
*/
.pro-pic {
width: 90px;
height: 90px;
border-radius: 50%;
position: relative;
top: -50px;
}
p {
font-family: sans-serif;
}
.footer {
position: relative;
top:10px;
margin-left: 30%;
}
.button {
height: 30px;
width: 30px;
border-radius: 100%;
}
/*blog 1 git html css below
//////////////////////////*/
.top-div {
position: fixed;
width: 100%;
height: 50px;
left: 0;
top: 0;
background: #000f13;
z-index: 1
}
.top-div nav {
position: absolute;
color: white;
top: 10px;
left: 20px;
font-size: 25px;
font-family: copperplate;
}
.top-div a:link {
color: white;
text-decoration: none;
}
.top-div a:visited {
color: white;
}
.top-div a:hover {
color: #8ee0ff;
}
.top-div img {
position: relative;
left: 90%;
top: 15px;
width: 20px;
height: 15px;
}
.header1 {
font-family: copperplate;
text-align: center;
}
.home2 {
height: 25px;
width: 25px;
margin-left: 30%;
position: absolute;
margin-top: -21px;
}
.div-term {
float: right;
margin-right: 400px;
}
.cap {
margin-left: 210px;
font-family: "Comic Sans MS";
margin: auto;
}
.git {
width: 80px;
height: 80px;
margin-left: 25%;
position: absolute;
margin-top: 70px;
}
#menu {
position: relative;
top: 200px;
text-align: center;
width: 400px;
margin: auto;
}
#menu h1 {
position: relative;
}
#menu div {
position: relative;
}
/*blog 2 css-concepts css below
//////////////////////////////*/
.header-2 {
font-family: georgia;
}
.un {
position: relative;
height: 300px;
width: 400px;
display: block;
/* left: 40px;*/
margin: auto;
padding-bottom: 20px;
}
h1 {
position: relative;
top: 100px;
}
/*blog 3 arrays-hashes css below
////////////////////////////////*/
.header-3 {
font-family: georgia;
}
/*blog 4 group by css below
////////////////////*/
.gr {
position: relative;
width: 700px;
height: 130px;
display: block;
margin: auto;
}
/*blog 5 Ruby classes css below
///////////////////////////////*/
.home3 {
height: 25px;
width: 25px;
margin-left: 30%;
position: absolute;
margin-top: -20px;
}
pre {
position: relative;
font-size: 15px;
background: #dddddd;
padding-top: 30px;
padding-left: 20px;
border-radius: 5px;
overflow: scroll;
height: 100px;
}
/*blog 6 css below
//////////*/
.content6 {
position: relative;
height: auto;
width: 40%;
background: #ffffff;
margin: auto;
padding: 20px;
top: 120px;
}
.content6 p {
font-family: "Comic Sans MS";
}
.term-f {
display: block;
position: relative;
top: 5px;
}
.terminal {
position: relative;
display: block;
margin: auto;
height: 500px;
}
img {
max-width: 100%;
}
@media only screen and (max-width: 1200px) {
.un {
position: relative;
display: block;
left: 0;
margin: auto;
padding-bottom: 15px;
}
.content6 {
width: 70%;
}
.terminal {
height: 300px;
}
.top-div {
height: 60px;
}
} | stylesheets/blog.css | background-color: white;
}
*/
.pro-pic {
width: 90px;
height: 90px;
border-radius: 50%;
position: relative;
top: -50px;
}
p {
font-family: sans-serif;
}
.footer {
position: relative;
top:10px;
margin-left: 30%;
}
.button {
height: 30px;
width: 30px;
border-radius: 100%;
}
/*blog 1 git html css below
//////////////////////////*/
.top-div {
position: fixed;
width: 100%;
height: 50px;
left: 0;
top: 0;
background: #000f13;
z-index: 1
}
.top-div nav {
position: absolute;
color: white;
top: 10px;
left: 20px;
font-size: 25px;
font-family: copperplate;
}
.top-div a:link {
color: white;
text-decoration: none;
}
.top-div a:visited {
color: white;
}
.top-div a:hover {
color: #8ee0ff;
}
.top-div img {
position: relative;
left: 90%;
top: 15px;
width: 20px;
height: 15px;
}
.header1 {
font-family: copperplate;
text-align: center;
}
.home2 {
height: 25px;
width: 25px;
margin-left: 30%;
position: absolute;
margin-top: -21px;
}
.div-term {
float: right;
margin-right: 400px;
}
.cap {
margin-left: 210px;
font-family: "Comic Sans MS";
margin: auto;
}
.git {
width: 80px;
height: 80px;
margin-left: 25%;
position: absolute;
margin-top: 70px;
}
#menu {
position: relative;
top: 200px;
text-align: center;
width: 400px;
margin: auto;
}
#menu h1 {
position: relative;
}
#menu div {
position: relative;
}
/*blog 2 css-concepts css below
//////////////////////////////*/
.header-2 {
font-family: georgia;
}
.un {
position: relative;
height: 300px;
width: 400px;
display: block;
/* left: 40px;*/
margin: auto;
padding-bottom: 20px;
}
h1 {
position: relative;
top: 100px;
}
/*blog 3 arrays-hashes css below
////////////////////////////////*/
.header-3 {
font-family: georgia;
}
/*blog 4 group by css below
////////////////////*/
.gr {
position: relative;
width: 700px;
height: 130px;
display: block;
margin: auto;
}
/*blog 5 Ruby classes css below
///////////////////////////////*/
.home3 {
height: 25px;
width: 25px;
margin-left: 30%;
position: absolute;
margin-top: -20px;
}
pre {
position: relative;
font-size: 15px;
background: #dddddd;
padding-top: 30px;
padding-left: 20px;
border-radius: 5px;
overflow: scroll;
height: 100px;
}
/*blog 6 css below
//////////*/
.content6 {
position: relative;
height: auto;
width: 40%;
background: #ffffff;
margin: auto;
padding: 20px;
top: 120px;
}
.content6 p {
font-family: "Comic Sans MS";
}
.term-f {
display: block;
position: relative;
top: 5px;
}
.terminal {
position: relative;
display: block;
margin: auto;
height: 500px;
}
img {
max-width: 100%;
}
@media only screen and (max-width: 1200px) {
.un {
position: relative;
display: block;
left: 0;
margin: auto;
padding-bottom: 15px;
}
.content6 {
width: 70%;
}
.terminal {
height: 300px;
}
.top-div {
height: 60px;
}
} | 0.358353 | 0.070049 |
html, body {
margin: 0;
padding: 0;
background: rgb(251, 251, 251);
}
.post-num {
margin-bottom: 30px;
text-align: end;
font-weight: 400;
color: #666666;
}
.post-index {
display: flex;
color: #666666;
margin-bottom: 10px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
letter-spacing: 0.8pt;
}
.index-title {
max-width: 1000px;
border-bottom: 1px solid #eee;
}
.index-date {
font-weight: 200;
color: #bbb;
}
.index-h3 {
margin: 0;
padding: 30px 30px;
}
.index-ellipsis {
padding: 10px 30px;
line-height: 1.4em;
letter-spacing: 0.6pt;
}
.about {
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 20px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15)
}
.about-ul {
list-style: none;
}
.about-ul > li {
padding: 5px 0;
}
.post-container {
padding: 80px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
}
.post-content {
line-height: 1.8em;
letter-spacing: 0.8pt;
}
.post-h1 {
color: rgb(91, 91, 91);
letter-spacing: 0.8pt;
}
.post-content > h2, h3 {
padding-top: 45px;
color: rgb(91, 91, 91);
letter-spacing: 0.8pt;
}
.post-content > p{
color: rgb(121, 121, 121);
}
.post-content:last-child {
margin-bottom: 100px;
}
.post-container > ul, li {
color: rgb(121, 121, 121);
}
blockquote {
margin-left: 1em;
border-left: 0.25em solid #dfe2e5;
padding: 0 1em;
color: rgb(121, 121, 121);
}
/* Media Query */
@media(orientation: portrait) {
html, body {
margin: 0;
padding: 0;
background: rgb(251, 251, 251);
}
.post-num {
padding-left: 5vw;
font-size: 3vw;
}
.post-index {
display: flex;
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 5vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
letter-spacing: 0.8pt;
line-height: 2vw;
font-size: 3vw;
}
.index-date {
display: block;
}
.index-h3 {
padding: 0;
font-size: 4vw;
line-height: 7vw;
}
.index-ellipsis {
line-height: 5vw;
letter-spacing: 0.6pt;
}
.about {
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 5vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
line-height: 7vw;
}
.about-ul {
list-style: none;
}
.about-ul > li {
padding: 5px 0;
}
.post-container {
border-radius: 5px;
padding: 7vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
}
.post-content {
line-height: 6vw;
letter-spacing: 0.3vw;
font-size: 3.8vw;
}
.post-h1 {
color: rgb(91, 91, 91);
letter-spacing: 0.3vw;
font-size: 5vw;
}
.post-content > h2 {
font-size: 4.4vw;
}
.post-content > h3 {
font-size: 4vw;
}
.post-content:last-child {
margin-bottom: 10vw;
}
blockquote {
margin-left: 3vw;
border-left: 0.25em solid #dfe2e5;
padding: 0 1em;
color: rgb(121, 121, 121);
}
} | src/static/style.css | html, body {
margin: 0;
padding: 0;
background: rgb(251, 251, 251);
}
.post-num {
margin-bottom: 30px;
text-align: end;
font-weight: 400;
color: #666666;
}
.post-index {
display: flex;
color: #666666;
margin-bottom: 10px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
letter-spacing: 0.8pt;
}
.index-title {
max-width: 1000px;
border-bottom: 1px solid #eee;
}
.index-date {
font-weight: 200;
color: #bbb;
}
.index-h3 {
margin: 0;
padding: 30px 30px;
}
.index-ellipsis {
padding: 10px 30px;
line-height: 1.4em;
letter-spacing: 0.6pt;
}
.about {
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 20px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15)
}
.about-ul {
list-style: none;
}
.about-ul > li {
padding: 5px 0;
}
.post-container {
padding: 80px;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
}
.post-content {
line-height: 1.8em;
letter-spacing: 0.8pt;
}
.post-h1 {
color: rgb(91, 91, 91);
letter-spacing: 0.8pt;
}
.post-content > h2, h3 {
padding-top: 45px;
color: rgb(91, 91, 91);
letter-spacing: 0.8pt;
}
.post-content > p{
color: rgb(121, 121, 121);
}
.post-content:last-child {
margin-bottom: 100px;
}
.post-container > ul, li {
color: rgb(121, 121, 121);
}
blockquote {
margin-left: 1em;
border-left: 0.25em solid #dfe2e5;
padding: 0 1em;
color: rgb(121, 121, 121);
}
/* Media Query */
@media(orientation: portrait) {
html, body {
margin: 0;
padding: 0;
background: rgb(251, 251, 251);
}
.post-num {
padding-left: 5vw;
font-size: 3vw;
}
.post-index {
display: flex;
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 5vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
letter-spacing: 0.8pt;
line-height: 2vw;
font-size: 3vw;
}
.index-date {
display: block;
}
.index-h3 {
padding: 0;
font-size: 4vw;
line-height: 7vw;
}
.index-ellipsis {
line-height: 5vw;
letter-spacing: 0.6pt;
}
.about {
color: black;
margin-bottom: 10px;
border-radius: 5px;
padding: 5vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
line-height: 7vw;
}
.about-ul {
list-style: none;
}
.about-ul > li {
padding: 5px 0;
}
.post-container {
border-radius: 5px;
padding: 7vw;
background: white;
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
}
.post-content {
line-height: 6vw;
letter-spacing: 0.3vw;
font-size: 3.8vw;
}
.post-h1 {
color: rgb(91, 91, 91);
letter-spacing: 0.3vw;
font-size: 5vw;
}
.post-content > h2 {
font-size: 4.4vw;
}
.post-content > h3 {
font-size: 4vw;
}
.post-content:last-child {
margin-bottom: 10vw;
}
blockquote {
margin-left: 3vw;
border-left: 0.25em solid #dfe2e5;
padding: 0 1em;
color: rgb(121, 121, 121);
}
} | 0.488527 | 0.145358 |
body {
height: 100%;
}
body {
font-family: 'roboto-slab-regular';
background-color: #eaeaea;
color: #222;
}
.container-fluid {
min-height: 100% !important;
}
.seccion {
margin-right: 14px !important;
}
.btn-extenso {
width: 100% !important;
}
.btn {
overflow: hidden !important;
text-overflow: ellipsis !important;
}
.navbar-fija {
position: fixed;
left: 0;
width: 100%;
}
.contenedor-menu, .contenedor-menu > div, .contenedor-menu > div > div {
height: 100% !important;
}
.contenedor-menu .menu .expandir {
color: white;
font-size: 26px;
}
div.menu {
background-color: #222;
}
.menu .titulo {
font-size: 30px;
background-color: #222 !important;
text-align: center;
padding: 14px !important;
}
.menu .opcion-row, .menu .titulo {
background-color: #337ab7;
color: white;
padding: 5px;
padding-top: 8px;
padding-bottom: 8px;
}
.menu .opcion-row {
border-bottom-style: solid;
border-bottom-width: 3px;
border-bottom-color: #2e6593;
}
.menu .opcion-row:hover {
background-color: #2e6593;
}
.menu .opcion-row span {
margin-right: 8px;
}
.menu .opcion-row.active {
background-color: #255176;
}
.menu .opcion-row.salir {
background-color: #d9534f;
border-color: #d43f3a;
}
.menu .opcion-row.salir:hover {
background-color: #d43f3a;
}
.contenedor-menu-contenido {
margin-top: 12px;
}
@media (max-width: 1200px) {
.menu .titulo {
font-size: 24px;
}
}
@media (max-width: 991px) {
.contenedor-menu, .contenedor-menu > div, .contenedor-menu > div > div {
height: auto !important;
}
.navbar-fija {
position: relative;
left: auto;
width: auto;
}
.menu {
padding-bottom: 5px !important;
}
.modulo {
margin-right: 0px !important;
}
.seccion {
margin-right: 0px !important;
}
}
/* Modulos */
.modulo {
border-style: solid;
border-color: #2e6593;
border-width: 4px;
padding-bottom: 8px;
background-color: #337ab7;
color: white;
margin-right: 12px;
margin-bottom: 10px;
}
.modulo .contenido {
background-color: white !important;
padding-top: 15px;
padding-bottom: 15px;
color: black;
}
.modulo .titulo-cabecera {
margin: 0px !important;
padding-bottom: 15px !important;
}
.modulo-tamano .contenido {
height: 500px;
overflow-y: scroll;
} | backend/web/css/site/site.css | body {
height: 100%;
}
body {
font-family: 'roboto-slab-regular';
background-color: #eaeaea;
color: #222;
}
.container-fluid {
min-height: 100% !important;
}
.seccion {
margin-right: 14px !important;
}
.btn-extenso {
width: 100% !important;
}
.btn {
overflow: hidden !important;
text-overflow: ellipsis !important;
}
.navbar-fija {
position: fixed;
left: 0;
width: 100%;
}
.contenedor-menu, .contenedor-menu > div, .contenedor-menu > div > div {
height: 100% !important;
}
.contenedor-menu .menu .expandir {
color: white;
font-size: 26px;
}
div.menu {
background-color: #222;
}
.menu .titulo {
font-size: 30px;
background-color: #222 !important;
text-align: center;
padding: 14px !important;
}
.menu .opcion-row, .menu .titulo {
background-color: #337ab7;
color: white;
padding: 5px;
padding-top: 8px;
padding-bottom: 8px;
}
.menu .opcion-row {
border-bottom-style: solid;
border-bottom-width: 3px;
border-bottom-color: #2e6593;
}
.menu .opcion-row:hover {
background-color: #2e6593;
}
.menu .opcion-row span {
margin-right: 8px;
}
.menu .opcion-row.active {
background-color: #255176;
}
.menu .opcion-row.salir {
background-color: #d9534f;
border-color: #d43f3a;
}
.menu .opcion-row.salir:hover {
background-color: #d43f3a;
}
.contenedor-menu-contenido {
margin-top: 12px;
}
@media (max-width: 1200px) {
.menu .titulo {
font-size: 24px;
}
}
@media (max-width: 991px) {
.contenedor-menu, .contenedor-menu > div, .contenedor-menu > div > div {
height: auto !important;
}
.navbar-fija {
position: relative;
left: auto;
width: auto;
}
.menu {
padding-bottom: 5px !important;
}
.modulo {
margin-right: 0px !important;
}
.seccion {
margin-right: 0px !important;
}
}
/* Modulos */
.modulo {
border-style: solid;
border-color: #2e6593;
border-width: 4px;
padding-bottom: 8px;
background-color: #337ab7;
color: white;
margin-right: 12px;
margin-bottom: 10px;
}
.modulo .contenido {
background-color: white !important;
padding-top: 15px;
padding-bottom: 15px;
color: black;
}
.modulo .titulo-cabecera {
margin: 0px !important;
padding-bottom: 15px !important;
}
.modulo-tamano .contenido {
height: 500px;
overflow-y: scroll;
} | 0.384334 | 0.092401 |
body{background-image:url("Images/cloudsSolid.png");background-size:100% 100%;background-color:black;background-repeat:repeat-y;background-position:center;}
#shuffle{border:2px solid groove;background-color:red;margin-top:10px;}
#gameOverBack{background-image:url("Images/Hud/gameOver.png");margin-left:auto;margin-right:auto;position:absolute;top:69px;width:390px;height:650px;background-size:contain;background-repeat:no-repeat;display:none;}
#newFromOver{background-image:url("Images/Hud/newGame.png");position:absolute;left:52%;top:500px;width:120px;height:65px;z-index:400;background-size:contain;background-repeat:no-repeat;display:none;}
#buyIt{background-image:url("Images/Hud/buyNow.png");position:absolute;left:17%;top:500px;width:120px;height:70px;z-index:200;background-size:contain;background-repeat:no-repeat;}
#starCashOnOver{position:absolute;left:43%;top:460px;width:100px;height:35px;z-index:200;font-size:20px;background-size:contain;background-repeat:no-repeat;display:none;}
#canvasWrap{position:relative;margin-left:auto;margin-right:auto;display:block;border:2px groove black;}
#wrap2{background-color:black;transform:translate(-0px, 0px);background-image:url("Images/cloudsSolid.png");background-position:center;background-repeat:no-repeat;width:390px;height:650px;margin-left:auto;margin-right:auto;}
#viewport1{margin-left:5px;}
#landingCover{position:absolute;width:100%;height:100%;top:0px;left:0px;text-align:center;padding-top:200px;background-color:lightseagreen;display:block;z-index:2000;align-content:center;background-image:url('Images/HUD/coverBack.png');background-position:top;background-repeat:no-repeat;}
#playMatch{background-image:url('Images/HUD/newGame.png');background-position:center;background-repeat:no-repeat;width:110px;height:45px;text-align:center;margin-left:50%;transform:translate(-62px, 0px);top:40%;font-family:'Comic Sans MS';z-index:2000;}
#logoGG{background-image:url('Images/footerImg.png');background-position:center;background-repeat:no-repeat;z-index:2020;width:360px;height:145px;margin-left:50%;transform:translate(-170px, 70px);top:70%;}
.pBars{border:2px groove black;border-radius:25px;width:350px;min-height:20px;position:absolute;left:15px;}
#progressBar{width:350px;background-color:azure;top:442px;z-index:950;}
#myBar{width:5%;background-color:#66ff66;z-index:1050;min-height:18px;left:10px;transform:translate(-10px, 0px);}
#leftAdBar { position: absolute; left: 0px; top: 10%; width: 160px; height: 99%;}
#rightAdBar { position: absolute; right: 0px; top: 10%; width: 160px; height: 99%;}
@media (max-width: 60em) { #rightAdBar { display: none; } #leftAdBar { display: none; }}
@media (device-width:1024px){#progressBar{width:350px;transform:translate(-5px, 0px);}
#viewport1{width:98%;top:100px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:412px){#progressBar{width:340px;transform:translate(1px, 3px);}
#viewport1{width:98% top 30px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:375px){#progressBar{width:310px;transform:translate(-5px, -29px);}
#viewport1{width:98% top 30px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:360px){#progressBar{width:310px;transform:translate(-5px, -49px);}
#viewport1{width:97%}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:320px){#progressBar{width:275px;transform:translate(-5px, -99px);}
#viewport1{width:97%}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:300px;height:550px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
} | GuiMatch/GuiMatchMin.css | body{background-image:url("Images/cloudsSolid.png");background-size:100% 100%;background-color:black;background-repeat:repeat-y;background-position:center;}
#shuffle{border:2px solid groove;background-color:red;margin-top:10px;}
#gameOverBack{background-image:url("Images/Hud/gameOver.png");margin-left:auto;margin-right:auto;position:absolute;top:69px;width:390px;height:650px;background-size:contain;background-repeat:no-repeat;display:none;}
#newFromOver{background-image:url("Images/Hud/newGame.png");position:absolute;left:52%;top:500px;width:120px;height:65px;z-index:400;background-size:contain;background-repeat:no-repeat;display:none;}
#buyIt{background-image:url("Images/Hud/buyNow.png");position:absolute;left:17%;top:500px;width:120px;height:70px;z-index:200;background-size:contain;background-repeat:no-repeat;}
#starCashOnOver{position:absolute;left:43%;top:460px;width:100px;height:35px;z-index:200;font-size:20px;background-size:contain;background-repeat:no-repeat;display:none;}
#canvasWrap{position:relative;margin-left:auto;margin-right:auto;display:block;border:2px groove black;}
#wrap2{background-color:black;transform:translate(-0px, 0px);background-image:url("Images/cloudsSolid.png");background-position:center;background-repeat:no-repeat;width:390px;height:650px;margin-left:auto;margin-right:auto;}
#viewport1{margin-left:5px;}
#landingCover{position:absolute;width:100%;height:100%;top:0px;left:0px;text-align:center;padding-top:200px;background-color:lightseagreen;display:block;z-index:2000;align-content:center;background-image:url('Images/HUD/coverBack.png');background-position:top;background-repeat:no-repeat;}
#playMatch{background-image:url('Images/HUD/newGame.png');background-position:center;background-repeat:no-repeat;width:110px;height:45px;text-align:center;margin-left:50%;transform:translate(-62px, 0px);top:40%;font-family:'Comic Sans MS';z-index:2000;}
#logoGG{background-image:url('Images/footerImg.png');background-position:center;background-repeat:no-repeat;z-index:2020;width:360px;height:145px;margin-left:50%;transform:translate(-170px, 70px);top:70%;}
.pBars{border:2px groove black;border-radius:25px;width:350px;min-height:20px;position:absolute;left:15px;}
#progressBar{width:350px;background-color:azure;top:442px;z-index:950;}
#myBar{width:5%;background-color:#66ff66;z-index:1050;min-height:18px;left:10px;transform:translate(-10px, 0px);}
#leftAdBar { position: absolute; left: 0px; top: 10%; width: 160px; height: 99%;}
#rightAdBar { position: absolute; right: 0px; top: 10%; width: 160px; height: 99%;}
@media (max-width: 60em) { #rightAdBar { display: none; } #leftAdBar { display: none; }}
@media (device-width:1024px){#progressBar{width:350px;transform:translate(-5px, 0px);}
#viewport1{width:98%;top:100px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:412px){#progressBar{width:340px;transform:translate(1px, 3px);}
#viewport1{width:98% top 30px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:375px){#progressBar{width:310px;transform:translate(-5px, -29px);}
#viewport1{width:98% top 30px;}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:360px){#progressBar{width:310px;transform:translate(-5px, -49px);}
#viewport1{width:97%}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:330px;height:540px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
}
@media (device-width:320px){#progressBar{width:275px;transform:translate(-5px, -99px);}
#viewport1{width:97%}
#wrap2{height:550px;max-width:100%;}
#gameOverBack{width:300px;height:550px;left:0px;}
#newFromOver, #buyIt{top:385px;width:95px;}
#starCashOnOver{top:337px;}
} | 0.263694 | 0.052158 |
COLORS
*************/
.next-appointment {
padding: 9px 8px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
@media (max-width: 61.24em) {
.next-appointment {
border-radius: 7px;
}
}
@media (min-width: 61.25em) {
.next-appointment {
padding: 30px 23px;
}
}
@media (max-width: 78.125em) {
.next-appointment__icon {
display: none;
}
}
.next-appointment__icon-icon {
font-size: 78px;
color: #5E728A;
}
@media (min-width: 61.25em) {
.next-appointment__icon-icon {
font-size: 55px;
padding-right: 15px;
}
}
@media (min-width: 81.25em) {
.next-appointment__icon-icon {
font-size: 78px;
}
}
.next-appointment__title {
margin-bottom: 5px;
}
@media (min-width: 46.25em) {
.next-appointment__title {
margin-bottom: 15px;
}
}
.next-appointment-info {
display: flex;
list-style: none;
}
@media (max-width: 46.24em) {
.next-appointment-info {
flex-direction: column-reverse;
flex-wrap: wrap;
}
}
@media (max-width: 46.24em) {
.next-appointment-info__item {
line-height: 1.8;
}
}
.next-appointment-info__item:first-child {
display: flex;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 20px;
position: relative;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 12px;
}
@media (min-width: 46.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 40px;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 16px;
}
}
@media (min-width: 61.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 72px;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time:before,
.next-appointment-info__item:first-child .next-appointment-info__item--modality:before {
position: absolute;
content: "";
width: 50px;
height: 0;
border: 1px dashed rgba(0, 0, 0, 0.2);
right: -60px;
top: 10px;
}
}
@media (min-width: 81.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 20px;
}
}
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
text-align: center;
}
.next-appointment-info__item span {
display: block;
font-size: 16px;
}
@media (min-width: 81.25em) {
.next-appointment-info__item span {
font-size: 20px;
}
}
.next-appointment-info__item span:last-of-type {
text-align: center;
color: rgba(94, 114, 138, 0.5);
font-family: "poppinsextrabold";
padding-top: 10px;
font-size: 14px;
}
@media (max-width: 46.24em) {
.next-appointment-info__item span:last-of-type {
display: none;
}
}
.next-appointment-info__item:last-of-type {
margin-right: 0;
}
.next-appointment-info__item:last-of-type:before {
display: none;
}
@media (max-width: 46.24em) {
.next-appointment-info__item--name span {
color: #5E728A;
font-size: 14px;
font-weight: 600;
text-align: left;
}
}
.next-appointment__controls {
display: none;
}
@media (min-width: 61.25em) {
.next-appointment__controls {
display: block;
width: 169px;
text-align: right;
}
.next-appointment__controls .button:first-child {
margin-right: 0;
margin-bottom: 6px;
}
}
@media (min-width: 78.125em) {
.next-appointment__controls {
width: auto;
text-align: initial;
}
.next-appointment__controls .button:first-child {
margin-right: 23px;
}
}
@media (min-width: 78.125em) and (max-width: 61.24em) {
.next-appointment__controls .button {
display: none;
}
}
@media (min-width: 61.25em) {
.next-appointment .dropdwn {
display: none;
}
}
.next-appointment .dropdwn a {
color: #00588E;
}
.last-patients {
padding: 8px 6px 8px 10px;
width: 100%;
}
@media (min-width: 20em) {
.last-patients {
max-width: 161px;
width: auto;
}
}
@media (min-width: 25em) {
.last-patients {
max-width: 200px;
}
}
@media (min-width: 46.25em) {
.last-patients {
padding: 18px 26px 18px 58px;
width: 100%;
max-width: 352px;
}
}
@media (min-width: 61.25em) {
.last-patients {
max-width: 502px;
}
}
@media (min-width: 78.125em) {
.last-patients {
max-width: 730px;
}
}
@media (min-width: 81.25em) {
.last-patients {
padding: 18px 26px 18px 58px;
max-width: 817px;
}
}
@media (max-width: 46.24em) {
.last-patients__icon {
display: none;
}
}
@media (max-width: 46.24em) {
.last-patients__title--desktop {
display: none;
}
}
.last-patients__title--mobile {
text-align: center;
margin-bottom: 10px;
}
@media (min-width: 27.5em) {
.last-patients__title--mobile {
padding: 0 10px;
}
}
@media (min-width: 46.25em) {
.last-patients__title--mobile {
display: none;
}
}
.last-patients-list {
list-style: none;
overflow: auto;
max-height: 127px;
padding-right: 2px;
}
@media (min-width: 61.25em) {
.last-patients-list {
max-height: 168px;
padding-right: 30px;
}
}
.last-patients-list::-webkit-scrollbar {
-webkit-appearance: none;
}
.last-patients-list::-webkit-scrollbar:vertical {
width: 2px;
}
.last-patients-list::-webkit-scrollbar-thumb {
background: rgba(196, 196, 196, 0.5);
}
.last-patients-list__item {
display: flex;
align-items: center;
justify-content: space-between;
margin: 10px 0;
}
@media (min-width: 61.25em) {
.last-patients-list__item {
margin: 4px 0;
}
}
.last-patients-list__name {
font-size: 11px;
width: 69px;
}
@media (min-width: 61.25em) {
.last-patients-list__name {
width: 180px;
font-size: 14px;
}
}
.last-patients-list__line {
display: none;
}
@media (min-width: 46.25em) {
.last-patients-list__line {
display: block;
width: calc(100% - 178px);
border: 1px dashed rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 61.25em) {
.last-patients-list__line {
width: calc(100% - 275px);
}
}
@media (min-width: 78.125em) {
.last-patients-list__line {
width: calc(100% - 300px);
}
}
.diary-table {
padding: 17px 16px;
width: 100%;
}
@media (min-width: 61.25em) {
.diary-table {
padding: 17px 29px;
}
}
@media (max-width: 46.24em) {
.diary-table__title--desktop {
display: none;
}
}
.diary-table__title--mobile {
text-align: center;
margin-bottom: 10px;
}
@media (min-width: 46.25em) {
.diary-table__title--mobile {
display: none;
}
}
.diary-table__table {
width: 100%;
border-spacing: 0;
margin-top: 24px;
}
.diary-table__table tr th {
color: #7D8FA3;
font-size: 20px;
font-weight: 500;
height: 45px;
}
.diary-table__table tr td {
text-align: center;
font-family: "poppinslight";
font-size: 12px;
width: 200px;
height: 39px;
border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
border-right: 1px dashed rgba(0, 0, 0, 0.2);
}
.diary-table__table tr td:first-of-type {
font-family: "poppinsregular";
font-size: 20px;
color: #7D8FA3;
text-align: left;
font-weight: 500;
border-right: 0;
width: 100px;
}
.diary-table__table tr td:last-of-type {
border-right: 0;
}
.diary-table__table tr:last-of-type td {
border-bottom: 0;
}
@media (max-width: 61.24em) {
.diary-table__table {
display: none;
}
}
@media (min-width: 61.25em) {
.diary-table-list {
display: none;
}
}
.diary-table-list-content {
display: flex;
flex-wrap: wrap;
}
.diary-table-list__item {
width: 50%;
line-height: 1.7;
}
.diary-table-list__item span {
font-size: 11px;
}
.diary-table-list__time {
font-weight: 600;
}
@media (max-width: 61.24em) {
.diary-table__controls {
display: none;
}
}
.diary-table__controls .button {
font-size: 14px;
}
.diary-table__controls .button:last-child {
margin-left: 15px;
} | public/css/summary.css | COLORS
*************/
.next-appointment {
padding: 9px 8px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
@media (max-width: 61.24em) {
.next-appointment {
border-radius: 7px;
}
}
@media (min-width: 61.25em) {
.next-appointment {
padding: 30px 23px;
}
}
@media (max-width: 78.125em) {
.next-appointment__icon {
display: none;
}
}
.next-appointment__icon-icon {
font-size: 78px;
color: #5E728A;
}
@media (min-width: 61.25em) {
.next-appointment__icon-icon {
font-size: 55px;
padding-right: 15px;
}
}
@media (min-width: 81.25em) {
.next-appointment__icon-icon {
font-size: 78px;
}
}
.next-appointment__title {
margin-bottom: 5px;
}
@media (min-width: 46.25em) {
.next-appointment__title {
margin-bottom: 15px;
}
}
.next-appointment-info {
display: flex;
list-style: none;
}
@media (max-width: 46.24em) {
.next-appointment-info {
flex-direction: column-reverse;
flex-wrap: wrap;
}
}
@media (max-width: 46.24em) {
.next-appointment-info__item {
line-height: 1.8;
}
}
.next-appointment-info__item:first-child {
display: flex;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 20px;
position: relative;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 12px;
}
@media (min-width: 46.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 40px;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 16px;
}
}
@media (min-width: 61.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time,
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
margin-right: 72px;
}
.next-appointment-info__item:first-child .next-appointment-info__item--time:before,
.next-appointment-info__item:first-child .next-appointment-info__item--modality:before {
position: absolute;
content: "";
width: 50px;
height: 0;
border: 1px dashed rgba(0, 0, 0, 0.2);
right: -60px;
top: 10px;
}
}
@media (min-width: 81.25em) {
.next-appointment-info__item:first-child .next-appointment-info__item--time span:first-child,
.next-appointment-info__item:first-child .next-appointment-info__item--modality span:first-child {
font-size: 20px;
}
}
.next-appointment-info__item:first-child .next-appointment-info__item--modality {
text-align: center;
}
.next-appointment-info__item span {
display: block;
font-size: 16px;
}
@media (min-width: 81.25em) {
.next-appointment-info__item span {
font-size: 20px;
}
}
.next-appointment-info__item span:last-of-type {
text-align: center;
color: rgba(94, 114, 138, 0.5);
font-family: "poppinsextrabold";
padding-top: 10px;
font-size: 14px;
}
@media (max-width: 46.24em) {
.next-appointment-info__item span:last-of-type {
display: none;
}
}
.next-appointment-info__item:last-of-type {
margin-right: 0;
}
.next-appointment-info__item:last-of-type:before {
display: none;
}
@media (max-width: 46.24em) {
.next-appointment-info__item--name span {
color: #5E728A;
font-size: 14px;
font-weight: 600;
text-align: left;
}
}
.next-appointment__controls {
display: none;
}
@media (min-width: 61.25em) {
.next-appointment__controls {
display: block;
width: 169px;
text-align: right;
}
.next-appointment__controls .button:first-child {
margin-right: 0;
margin-bottom: 6px;
}
}
@media (min-width: 78.125em) {
.next-appointment__controls {
width: auto;
text-align: initial;
}
.next-appointment__controls .button:first-child {
margin-right: 23px;
}
}
@media (min-width: 78.125em) and (max-width: 61.24em) {
.next-appointment__controls .button {
display: none;
}
}
@media (min-width: 61.25em) {
.next-appointment .dropdwn {
display: none;
}
}
.next-appointment .dropdwn a {
color: #00588E;
}
.last-patients {
padding: 8px 6px 8px 10px;
width: 100%;
}
@media (min-width: 20em) {
.last-patients {
max-width: 161px;
width: auto;
}
}
@media (min-width: 25em) {
.last-patients {
max-width: 200px;
}
}
@media (min-width: 46.25em) {
.last-patients {
padding: 18px 26px 18px 58px;
width: 100%;
max-width: 352px;
}
}
@media (min-width: 61.25em) {
.last-patients {
max-width: 502px;
}
}
@media (min-width: 78.125em) {
.last-patients {
max-width: 730px;
}
}
@media (min-width: 81.25em) {
.last-patients {
padding: 18px 26px 18px 58px;
max-width: 817px;
}
}
@media (max-width: 46.24em) {
.last-patients__icon {
display: none;
}
}
@media (max-width: 46.24em) {
.last-patients__title--desktop {
display: none;
}
}
.last-patients__title--mobile {
text-align: center;
margin-bottom: 10px;
}
@media (min-width: 27.5em) {
.last-patients__title--mobile {
padding: 0 10px;
}
}
@media (min-width: 46.25em) {
.last-patients__title--mobile {
display: none;
}
}
.last-patients-list {
list-style: none;
overflow: auto;
max-height: 127px;
padding-right: 2px;
}
@media (min-width: 61.25em) {
.last-patients-list {
max-height: 168px;
padding-right: 30px;
}
}
.last-patients-list::-webkit-scrollbar {
-webkit-appearance: none;
}
.last-patients-list::-webkit-scrollbar:vertical {
width: 2px;
}
.last-patients-list::-webkit-scrollbar-thumb {
background: rgba(196, 196, 196, 0.5);
}
.last-patients-list__item {
display: flex;
align-items: center;
justify-content: space-between;
margin: 10px 0;
}
@media (min-width: 61.25em) {
.last-patients-list__item {
margin: 4px 0;
}
}
.last-patients-list__name {
font-size: 11px;
width: 69px;
}
@media (min-width: 61.25em) {
.last-patients-list__name {
width: 180px;
font-size: 14px;
}
}
.last-patients-list__line {
display: none;
}
@media (min-width: 46.25em) {
.last-patients-list__line {
display: block;
width: calc(100% - 178px);
border: 1px dashed rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 61.25em) {
.last-patients-list__line {
width: calc(100% - 275px);
}
}
@media (min-width: 78.125em) {
.last-patients-list__line {
width: calc(100% - 300px);
}
}
.diary-table {
padding: 17px 16px;
width: 100%;
}
@media (min-width: 61.25em) {
.diary-table {
padding: 17px 29px;
}
}
@media (max-width: 46.24em) {
.diary-table__title--desktop {
display: none;
}
}
.diary-table__title--mobile {
text-align: center;
margin-bottom: 10px;
}
@media (min-width: 46.25em) {
.diary-table__title--mobile {
display: none;
}
}
.diary-table__table {
width: 100%;
border-spacing: 0;
margin-top: 24px;
}
.diary-table__table tr th {
color: #7D8FA3;
font-size: 20px;
font-weight: 500;
height: 45px;
}
.diary-table__table tr td {
text-align: center;
font-family: "poppinslight";
font-size: 12px;
width: 200px;
height: 39px;
border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
border-right: 1px dashed rgba(0, 0, 0, 0.2);
}
.diary-table__table tr td:first-of-type {
font-family: "poppinsregular";
font-size: 20px;
color: #7D8FA3;
text-align: left;
font-weight: 500;
border-right: 0;
width: 100px;
}
.diary-table__table tr td:last-of-type {
border-right: 0;
}
.diary-table__table tr:last-of-type td {
border-bottom: 0;
}
@media (max-width: 61.24em) {
.diary-table__table {
display: none;
}
}
@media (min-width: 61.25em) {
.diary-table-list {
display: none;
}
}
.diary-table-list-content {
display: flex;
flex-wrap: wrap;
}
.diary-table-list__item {
width: 50%;
line-height: 1.7;
}
.diary-table-list__item span {
font-size: 11px;
}
.diary-table-list__time {
font-weight: 600;
}
@media (max-width: 61.24em) {
.diary-table__controls {
display: none;
}
}
.diary-table__controls .button {
font-size: 14px;
}
.diary-table__controls .button:last-child {
margin-left: 15px;
} | 0.483161 | 0.074332 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); /* font */
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
/* colors */
:root {
--primary: #3EBCF9;
--orange: #FF9B05;
}
body {
transition: all ease 0.3s;
background-color: #F2F9FF;
background-size: cover;
background-repeat: no-repeat;
background-image: url('images/bg.svg');
}
/* ===================================================== default ===================================================== */
.container {
width: 1060px;
display: flex;
justify-content: space-between;
}
.column {
flex-direction: column;
}
button {
border: 0px;
cursor: pointer;
}
/* ===================================================== main ===================================================== */
main {
height: 536px;
display: flex;
justify-content: center;
margin-top: 116px;
}
main .container {
border-radius: 30px;
justify-content: center;
background-color: #FFF;
padding: 0px 30px 0px 30px;
box-shadow: 0px 40px 40px #88888840;
}
.generator-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.result-body {
display: flex;
align-items: center;
}
#result {
width: 634px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
font-weight: 26px;
color: var(--primary);
border-radius: 30px;
background-color: #D7F2FF;
}
#result label {
font-size: 18px;
font-weight: 26px;
color: var(--black);
margin-bottom: 10px;
}
.btn-copy {
width: 160px;
height: 60px;
border-radius: 30px;
background-color: var(--primary);
}
#password-copied {
margin-top: 10px;
color: var(--orange);
}
.result-body button {
margin-top: 30px;
color: #FFF;
font-size: 20px;
font-weight: 700;
}
.options {
width: 346px;
height: 496px;
display: flex;
padding: 0px 10px 0px 10px;
border-radius: 30px;
padding-top: 63px;
background-color: var(--primary);
}
.option {
display: flex;
align-items: flex-start;
justify-content: space-between;
color: #FFF;
font-size: 20px;
font-weight: 700;
margin-bottom: 37px;
}
.option input {
width: 45px;
font-size: 20px;
font-weight: 700;
color: #FFF;
border: 0px;
background-color: transparent;
border-bottom: 2px solid #FFF;
}
#generate {
height: 60px;
margin-top: 12px;
border-radius: 30px;
font-size: 20px;
font-weight: 700;
color: #FFF;
background-color: var(--orange);
}
/* ===================================================== responsive ===================================================== */
@media (max-width:1060px) {
main {
height: auto;
margin-bottom: 30px;
}
.container {
margin: 0px 10px 30px 10px;
}
.generator-container {
padding: 30px 0px 30px 0px;
flex-direction: column;
}
#password-copied {
margin: 10px 0px 10px 0px;
}
.options {
width: 100%;
}
}
@media (max-width: 760px) {
#result {
width: 400px;
font-size: 18px;
}
}
@media (max-width: 470px) {
#result {
width: 100%;
font-size: 15px;
padding: 0px 10px 0px 10px;
}
.option {
font-size: 18px;
margin-bottom: 30px;
}
}
@media (max-width: 374px) {
.container {
margin: 0;
max-width: 315px;
}
.option {
font-size: 16px;
margin-bottom: 30px;
}
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); /* font */
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
/* colors */
:root {
--primary: #3EBCF9;
--orange: #FF9B05;
}
body {
transition: all ease 0.3s;
background-color: #F2F9FF;
background-size: cover;
background-repeat: no-repeat;
background-image: url('images/bg.svg');
}
/* ===================================================== default ===================================================== */
.container {
width: 1060px;
display: flex;
justify-content: space-between;
}
.column {
flex-direction: column;
}
button {
border: 0px;
cursor: pointer;
}
/* ===================================================== main ===================================================== */
main {
height: 536px;
display: flex;
justify-content: center;
margin-top: 116px;
}
main .container {
border-radius: 30px;
justify-content: center;
background-color: #FFF;
padding: 0px 30px 0px 30px;
box-shadow: 0px 40px 40px #88888840;
}
.generator-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.result-body {
display: flex;
align-items: center;
}
#result {
width: 634px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
font-weight: 26px;
color: var(--primary);
border-radius: 30px;
background-color: #D7F2FF;
}
#result label {
font-size: 18px;
font-weight: 26px;
color: var(--black);
margin-bottom: 10px;
}
.btn-copy {
width: 160px;
height: 60px;
border-radius: 30px;
background-color: var(--primary);
}
#password-copied {
margin-top: 10px;
color: var(--orange);
}
.result-body button {
margin-top: 30px;
color: #FFF;
font-size: 20px;
font-weight: 700;
}
.options {
width: 346px;
height: 496px;
display: flex;
padding: 0px 10px 0px 10px;
border-radius: 30px;
padding-top: 63px;
background-color: var(--primary);
}
.option {
display: flex;
align-items: flex-start;
justify-content: space-between;
color: #FFF;
font-size: 20px;
font-weight: 700;
margin-bottom: 37px;
}
.option input {
width: 45px;
font-size: 20px;
font-weight: 700;
color: #FFF;
border: 0px;
background-color: transparent;
border-bottom: 2px solid #FFF;
}
#generate {
height: 60px;
margin-top: 12px;
border-radius: 30px;
font-size: 20px;
font-weight: 700;
color: #FFF;
background-color: var(--orange);
}
/* ===================================================== responsive ===================================================== */
@media (max-width:1060px) {
main {
height: auto;
margin-bottom: 30px;
}
.container {
margin: 0px 10px 30px 10px;
}
.generator-container {
padding: 30px 0px 30px 0px;
flex-direction: column;
}
#password-copied {
margin: 10px 0px 10px 0px;
}
.options {
width: 100%;
}
}
@media (max-width: 760px) {
#result {
width: 400px;
font-size: 18px;
}
}
@media (max-width: 470px) {
#result {
width: 100%;
font-size: 15px;
padding: 0px 10px 0px 10px;
}
.option {
font-size: 18px;
margin-bottom: 30px;
}
}
@media (max-width: 374px) {
.container {
margin: 0;
max-width: 315px;
}
.option {
font-size: 16px;
margin-bottom: 30px;
}
} | 0.289673 | 0.077938 |
@media screen and (max-height: 500px) {
html,
#main,
html body,
#container,
#main {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
height: calc(100% + 60px);
border:none !important;
width: 100%;
margin: 0;
bottom: 0;
left: 0;
top: 0;
}
#toggle,
.expand .des,
.btn .flip-front,
#main #xml .content,
#main #xml .center #quick,
#main #visit #page #quick .left,
#main #visit #page #quick .right,
#main #visit #page #options .fa-sun,
#main #visit #page #options .fa-heart,
#main #visit #page #front .focus .button {
display: none !important;
}
#under {
top: 240px !important;
left: -5px !important;
}
#feed {
height: 250px !important;
width: 375px !important;
left: -15px !important;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 210px !important;
padding: 0;
top: -40px;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px !important;
width: 210px !important;
top: 0px;
}
.flexbox .item {
width: 100% !important;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
.item {
width: 100% !important;
}
#main #option {
margin-top: 10px !important;
}
.content {
margin-left: 15px;
top: 0;
}
#feed {
width: 640px;
}
.info {
display: none;
}
#page,
#visit {
background-color: transparent !important;
height: 100%;
width: 100%;
}
#quick {
width: 680px;
left: 40px;
}
#xml {
width: 320px;
}
.sideChannel {
height: fit-content !important;
margin-top: 50px !important;
top: 0 !important;
}
.sideItem {
height: 260px !important;
width: 320px !important;
display: inline-table;
margin-right: 50px;
}
}
@media screen and (max-width: 425px) {
.center #bottom {
position: relative !important;
margin: 0 auto !important;
}
.flexbox .yt .image {
height: 80px !important;
}
.flexbox .item {
margin: 0 2px 2px 0 !important;
height: fit-content !important;
position: relative;
width: 140px !important;
left: -150px !important;
}
.flexbox .item .header {
display: none !important;
}
.flexbox .item .wrap {
display: none !important;
}
.sideChannel {
height: fit-content !important;
margin-top: 60px !important;
width: 100vw !important;
}
.sideItem {
display: inline-table;
margin-right: 50px !important;
height: 380px !important;
width: 320px !important;
}
.sideItem .image {
width: 320px !important;
}
.item {
margin-bottom: 70px !important;
}
.sb {
top: 7px !important;
}
#toggle,
.expand .des,
.btn .flip-front,
#main #xml .content,
#main #top #arm #option,
#main #xml .center #quick,
#main #visit #page #quick .left,
#main #visit #page #quick .right,
#main #visit #page #options .fa-sun,
#main #visit #page #options .fa-heart,
#main #visit #page #front .focus .button {
display: none !important;
}
.dots {
animation: dots 3s infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(2){
animation: dots 3s 150ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(3) {
animation: dots 3s 300ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(4) {
animation: dots 3s 450ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(5) {
animation: dots 3s 600ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
#under {
top: 250px;
}
#main,
#xml {
width: 100% !important
right: 0 !important;
}
#options {
display: inline-block;
position: absolute;
margin-right: auto;
margin-left: auto;
top: 115px;
left: 0;
right: 0;
}
.btn .flip-back {
transform: rotateX(0deg) translateZ(25px) !important;
}
.center {
position: relative !important;
margin: 0 auto !important;
width: 100% !important;
}
.expand {
margin-left: 0 !important;
}
.expand .display {
width: 100% !important;
}
.expand .title {
flex-basis: 60% !important;
}
.flexbox {
width: 100% !important;
}
.img,
.image,
.pending {
width: 100% !important;
margin: 0 !important;
}
.listing {
height: 264px !important;
width: 280px !important;
top: 0 !important;
}
.populate {
width: 130px;
margin: 1em;
}
.populate:hover {
background-color: none !important;
}
.item {
margin-bottom: 55px !important;
box-shadow: none !important;
border: none;
width: 100%;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
#bottom {
margin-bottom: 25px !important;
margin-top: 25px !important;
}
#feed {
justify-content: center;
display: inline-flex;
position: absolute;
margin-right: 0%;
flex-wrap: wrap;
margin-left: 0%;
height: 500px;
top: -100px;
right: 0;
left: 0;
}
#label {
position: absolute;
margin-right: auto;
margin-left: auto;
margin: auto;
top: 10px;
right: 0;
left: 0;
}
#link {
top: -22px;
}
#show {
top: 12px;
}
#group {
position: absolute !important;
margin-right: auto !important;
margin-left: auto !important;
width: 95vw !important;
right: 0 !important;
left: 0 !important;
}
#page,
#visit {
background-color: transparent !important;
height: 100%;
width: 100%;
}
#main #top,
#main #top #arm,
#main #top #arm #search {
background: transparent !important;
width: 100vw !important;
}
#match {
height: 264px;
width: 280px;
top: 25px;
}
#option {
width: calc(100% - 10px);
top: calc(100% - 40px);
position: fixed;
height: 40px;
right: 11px;
}
#quick {
background-color: transparent !important;
position: absolute;
height: 400px;
width: 100%;
top: 62px;
}
#first {
background-color: transparent !important;
height: 264px;
width: 280px;
top: 2px;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 280px;
padding: 0;
top: -40px;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px;
width: 280px;
top: 0px;
}
#guide .sticky {
max-width: 100vw !important;
border-top: none !important;
}
#guide .sticky #yt .wrap .ago {
display: none !important;
}
#guide .sticky .header {
border-right: var(--border-color) !important;
border-left: var(--border-color) !important;
border-top: var(--border-color) !important;
}
#guide .sticky .img
#guide .sticky .image {
max-width: 100vw !important;
width: 100% !important;
margin: 0 !important;
}
#guide .sticky .src {
width: 100vw !important;
display: block;
}
#yt .wrap {
display: none !important;
width: 100% !important;
}
#yt .wrap .header {
display: none !important;
}
#yt .wrap .pub {
display: none !important;
}
.yt {
height: fit-content !important;
display: block !important;
width: 100% !important;
}
.yt .src {
height: 22vh !important;
}
#xml {
background-color: transparent !important;
}
}
@media (min-width: 426px) and (max-width: 767px) {
.sideChannel {
height: fit-content !important;
margin-top: 60px !important;
top: 0 !important;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
#options {
display: inline-block;
position: absolute;
margin-right: auto;
margin-left: auto;
top: 115px;
right: 0;
left: 0;
}
.content {
display: none;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 400px;
padding: 0;
top: -25px;
right: 0;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px;
width: 340px;
top: -2px;
}
.focus .button {
top: -1px;
}
.listing {
height: 264px !important;
width: 405px !important;
top: 0 !important;
}
#feed {
width: 480px;
}
#first {
background-color: transparent !important;
height: 264px;
width: 405px;
top: 35px;
}
#match {
height: 264px;
width: 415px;
top: 25px;
}
#option {
width: calc(100% - 20px);
top: calc(100% - 50px);
position: fixed;
display: flex;
height: 50px;
right: 11px;
}
#xml {
height: fit-content;
position: absolute;
min-height: 100%;
display: block;
margin-right: auto;
margin-left: auto;
width: 75%;
z-index: 1;
top: 60px;
right: 0;
left: 0;
}
.yt .image {
padding-bottom: 16.25% !important;
}
}
@media screen and (min-width: 768px) {
.sideChannel {
top: 60px !important;
}
#main .option {
display: none;
}
.content {
display: none;
right: 20px;
}
.dots {
animation: dots 3s infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(2){
animation: dots 3s 150ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(3) {
animation: dots 3s 300ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(4) {
animation: dots 3s 450ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(5) {
animation: dots 3s 600ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.expand {
margin: 0 auto !important;
width: 720px !important;
}
.header {
position: relative !important;
top: 0 !important;
}
.minimum {
margin: 0 auto !important;
width: 760px !important;
}
#arm {
width: 100%;
}
#page {
top: 0;
}
#main #top #arm #option {
display: inline-block;
position: absolute;
right: -75px;
}
#main #visit #page #quick {
width: 720px;
top: 15px;
right: 0;
}
}
@media screen and (min-width: 769px) {
.center {
width: 420px;
}
.content {
display: none;
}
#arm {
width: 100%;
}
#just {
left: 290px !important;
}
#main #option {
display: none;
}
#main #top #arm #option {
position: absolute;
display: block;
right: 0px;
}
#show {
left: 7px;
}
#quick {
width: 715px;
left: -15px;
}
}
@media screen and (min-width: 1024px) {
.air,
.result {
position: relative;
display: block;
margin: 0 auto;
width: 90%;
}
.expand {
margin: 0 auto !important;
width: 990px !important;
}
.minimum {
margin: 0 auto !important;
width: 990px !important;
}
.populate {
height: 140px;
width: 180px;
margin: 2em;
}
#arm {
width: 670px;
}
#front {
width: 940px;
}
#input {
margin: 0 auto;
}
#options {
position: absolute;
right: 145px;
}
#main #top #arm #option {
right: -30px;
}
#quick {
position: relative;
width: 848px;
top: 15px;
left: 0;
}
}
@media screen and (min-width: 1440px) {
.air,
.result {
width: 1080px;
}
.center {
width: 100%;
}
.expand {
width: 100% !important;
}
.minimum {
width: 100% !important;
}
#arm {
width: 940px;
}
.yt .image img {
height: 460px;
top: -22.75%
}
} | site/css/Custom.css | @media screen and (max-height: 500px) {
html,
#main,
html body,
#container,
#main {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
height: calc(100% + 60px);
border:none !important;
width: 100%;
margin: 0;
bottom: 0;
left: 0;
top: 0;
}
#toggle,
.expand .des,
.btn .flip-front,
#main #xml .content,
#main #xml .center #quick,
#main #visit #page #quick .left,
#main #visit #page #quick .right,
#main #visit #page #options .fa-sun,
#main #visit #page #options .fa-heart,
#main #visit #page #front .focus .button {
display: none !important;
}
#under {
top: 240px !important;
left: -5px !important;
}
#feed {
height: 250px !important;
width: 375px !important;
left: -15px !important;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 210px !important;
padding: 0;
top: -40px;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px !important;
width: 210px !important;
top: 0px;
}
.flexbox .item {
width: 100% !important;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
.item {
width: 100% !important;
}
#main #option {
margin-top: 10px !important;
}
.content {
margin-left: 15px;
top: 0;
}
#feed {
width: 640px;
}
.info {
display: none;
}
#page,
#visit {
background-color: transparent !important;
height: 100%;
width: 100%;
}
#quick {
width: 680px;
left: 40px;
}
#xml {
width: 320px;
}
.sideChannel {
height: fit-content !important;
margin-top: 50px !important;
top: 0 !important;
}
.sideItem {
height: 260px !important;
width: 320px !important;
display: inline-table;
margin-right: 50px;
}
}
@media screen and (max-width: 425px) {
.center #bottom {
position: relative !important;
margin: 0 auto !important;
}
.flexbox .yt .image {
height: 80px !important;
}
.flexbox .item {
margin: 0 2px 2px 0 !important;
height: fit-content !important;
position: relative;
width: 140px !important;
left: -150px !important;
}
.flexbox .item .header {
display: none !important;
}
.flexbox .item .wrap {
display: none !important;
}
.sideChannel {
height: fit-content !important;
margin-top: 60px !important;
width: 100vw !important;
}
.sideItem {
display: inline-table;
margin-right: 50px !important;
height: 380px !important;
width: 320px !important;
}
.sideItem .image {
width: 320px !important;
}
.item {
margin-bottom: 70px !important;
}
.sb {
top: 7px !important;
}
#toggle,
.expand .des,
.btn .flip-front,
#main #xml .content,
#main #top #arm #option,
#main #xml .center #quick,
#main #visit #page #quick .left,
#main #visit #page #quick .right,
#main #visit #page #options .fa-sun,
#main #visit #page #options .fa-heart,
#main #visit #page #front .focus .button {
display: none !important;
}
.dots {
animation: dots 3s infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(2){
animation: dots 3s 150ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(3) {
animation: dots 3s 300ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(4) {
animation: dots 3s 450ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
.dots:nth-of-type(5) {
animation: dots 3s 600ms infinite cubic-bezier(.1,.75,1,.3) !important;
}
#under {
top: 250px;
}
#main,
#xml {
width: 100% !important
right: 0 !important;
}
#options {
display: inline-block;
position: absolute;
margin-right: auto;
margin-left: auto;
top: 115px;
left: 0;
right: 0;
}
.btn .flip-back {
transform: rotateX(0deg) translateZ(25px) !important;
}
.center {
position: relative !important;
margin: 0 auto !important;
width: 100% !important;
}
.expand {
margin-left: 0 !important;
}
.expand .display {
width: 100% !important;
}
.expand .title {
flex-basis: 60% !important;
}
.flexbox {
width: 100% !important;
}
.img,
.image,
.pending {
width: 100% !important;
margin: 0 !important;
}
.listing {
height: 264px !important;
width: 280px !important;
top: 0 !important;
}
.populate {
width: 130px;
margin: 1em;
}
.populate:hover {
background-color: none !important;
}
.item {
margin-bottom: 55px !important;
box-shadow: none !important;
border: none;
width: 100%;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
#bottom {
margin-bottom: 25px !important;
margin-top: 25px !important;
}
#feed {
justify-content: center;
display: inline-flex;
position: absolute;
margin-right: 0%;
flex-wrap: wrap;
margin-left: 0%;
height: 500px;
top: -100px;
right: 0;
left: 0;
}
#label {
position: absolute;
margin-right: auto;
margin-left: auto;
margin: auto;
top: 10px;
right: 0;
left: 0;
}
#link {
top: -22px;
}
#show {
top: 12px;
}
#group {
position: absolute !important;
margin-right: auto !important;
margin-left: auto !important;
width: 95vw !important;
right: 0 !important;
left: 0 !important;
}
#page,
#visit {
background-color: transparent !important;
height: 100%;
width: 100%;
}
#main #top,
#main #top #arm,
#main #top #arm #search {
background: transparent !important;
width: 100vw !important;
}
#match {
height: 264px;
width: 280px;
top: 25px;
}
#option {
width: calc(100% - 10px);
top: calc(100% - 40px);
position: fixed;
height: 40px;
right: 11px;
}
#quick {
background-color: transparent !important;
position: absolute;
height: 400px;
width: 100%;
top: 62px;
}
#first {
background-color: transparent !important;
height: 264px;
width: 280px;
top: 2px;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 280px;
padding: 0;
top: -40px;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px;
width: 280px;
top: 0px;
}
#guide .sticky {
max-width: 100vw !important;
border-top: none !important;
}
#guide .sticky #yt .wrap .ago {
display: none !important;
}
#guide .sticky .header {
border-right: var(--border-color) !important;
border-left: var(--border-color) !important;
border-top: var(--border-color) !important;
}
#guide .sticky .img
#guide .sticky .image {
max-width: 100vw !important;
width: 100% !important;
margin: 0 !important;
}
#guide .sticky .src {
width: 100vw !important;
display: block;
}
#yt .wrap {
display: none !important;
width: 100% !important;
}
#yt .wrap .header {
display: none !important;
}
#yt .wrap .pub {
display: none !important;
}
.yt {
height: fit-content !important;
display: block !important;
width: 100% !important;
}
.yt .src {
height: 22vh !important;
}
#xml {
background-color: transparent !important;
}
}
@media (min-width: 426px) and (max-width: 767px) {
.sideChannel {
height: fit-content !important;
margin-top: 60px !important;
top: 0 !important;
}
.sideItem {
width: 320px !important;
display: inline-table;
margin-right: 50px;
height: 380px;
}
#options {
display: inline-block;
position: absolute;
margin-right: auto;
margin-left: auto;
top: 115px;
right: 0;
left: 0;
}
.content {
display: none;
}
.focus {
border-radius: 8px;
margin: 0 auto;
width: 400px;
padding: 0;
top: -25px;
right: 0;
}
.focus input[type=text] {
border-radius: 8px;
padding-left: 35px;
width: 340px;
top: -2px;
}
.focus .button {
top: -1px;
}
.listing {
height: 264px !important;
width: 405px !important;
top: 0 !important;
}
#feed {
width: 480px;
}
#first {
background-color: transparent !important;
height: 264px;
width: 405px;
top: 35px;
}
#match {
height: 264px;
width: 415px;
top: 25px;
}
#option {
width: calc(100% - 20px);
top: calc(100% - 50px);
position: fixed;
display: flex;
height: 50px;
right: 11px;
}
#xml {
height: fit-content;
position: absolute;
min-height: 100%;
display: block;
margin-right: auto;
margin-left: auto;
width: 75%;
z-index: 1;
top: 60px;
right: 0;
left: 0;
}
.yt .image {
padding-bottom: 16.25% !important;
}
}
@media screen and (min-width: 768px) {
.sideChannel {
top: 60px !important;
}
#main .option {
display: none;
}
.content {
display: none;
right: 20px;
}
.dots {
animation: dots 3s infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(2){
animation: dots 3s 150ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(3) {
animation: dots 3s 300ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(4) {
animation: dots 3s 450ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.dots:nth-of-type(5) {
animation: dots 3s 600ms infinite cubic-bezier(.1,.9,1,.1) !important;
}
.expand {
margin: 0 auto !important;
width: 720px !important;
}
.header {
position: relative !important;
top: 0 !important;
}
.minimum {
margin: 0 auto !important;
width: 760px !important;
}
#arm {
width: 100%;
}
#page {
top: 0;
}
#main #top #arm #option {
display: inline-block;
position: absolute;
right: -75px;
}
#main #visit #page #quick {
width: 720px;
top: 15px;
right: 0;
}
}
@media screen and (min-width: 769px) {
.center {
width: 420px;
}
.content {
display: none;
}
#arm {
width: 100%;
}
#just {
left: 290px !important;
}
#main #option {
display: none;
}
#main #top #arm #option {
position: absolute;
display: block;
right: 0px;
}
#show {
left: 7px;
}
#quick {
width: 715px;
left: -15px;
}
}
@media screen and (min-width: 1024px) {
.air,
.result {
position: relative;
display: block;
margin: 0 auto;
width: 90%;
}
.expand {
margin: 0 auto !important;
width: 990px !important;
}
.minimum {
margin: 0 auto !important;
width: 990px !important;
}
.populate {
height: 140px;
width: 180px;
margin: 2em;
}
#arm {
width: 670px;
}
#front {
width: 940px;
}
#input {
margin: 0 auto;
}
#options {
position: absolute;
right: 145px;
}
#main #top #arm #option {
right: -30px;
}
#quick {
position: relative;
width: 848px;
top: 15px;
left: 0;
}
}
@media screen and (min-width: 1440px) {
.air,
.result {
width: 1080px;
}
.center {
width: 100%;
}
.expand {
width: 100% !important;
}
.minimum {
width: 100% !important;
}
#arm {
width: 940px;
}
.yt .image img {
height: 460px;
top: -22.75%
}
} | 0.362179 | 0.056705 |
:root {
--base-font-weight: normal;
--base-font-style: normal;
--font-size: 1rem;
--font-size-small: 80%;
--font-weight-thin: 100;
--font-weight-light: 300;
--font-weight: 400;
--font-weight-medium: 500;
--font-weight-bold: 700;
--line-height: 1.5;
--font-family: var(--font-system);
--font-family-base:'Roboto', sans-serif;
--font-family-condensed: 'Roboto Condensed', sans-serif;
--font-sans-serif: sans-serif;
--font-serif: serif;
--font-system: system-ui;
--font-monospace: Menlo, Consolas, "DejaVu Sans Mono", monospace;
--code-font-size: 90%;
--code-color: var(--color-black);
--code-border-radius: var(--border-radius);
--code-bg-color: var(--component-bg-color);
--code-padding-x: calc(var(--font-size) * .4);
--code-padding-y: calc(var(--font-size) * .2);
--hr-border-width: 1px;
--hr-border-color: var(--component-border-color);
--hr-margin-x: 0;
--hr-margin-y: 2rem;
--kbd-font-size: 90%;
--kbd-color: var(--color-white);
--kbd-border-radius: var(--border-radius);
--kbd-bg-color: var(--color-black);
--kbd-padding-x: calc(var(--font-size) * .4);
--kbd-padding-y: calc(var(--font-size) * .2);
--mark-color: inherit;
--mark-bg-color: var(--color-yellow);
--mark-padding-x: calc(var(--font-size) * .4);
--mark-padding-y: calc(var(--font-size) * .2);
--pre-color: var(--code-color);
--pre-border-radius: var(--component-border-radius);
--pre-bg-color: var(--code-bg-color);
--pre-max-height: none;
--selection-color: var(--color-white);
--selection-bg-color: var(--state-secondary);
}
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
color: var(--color-text);
-webkit-overflow-scrolling: touch;
}
body {
margin: 0;
font-size: var(--font-size);
font-family: var(--font-family);
line-height: var(--line-height);
background-color: var(--body-bg-color);
color: var(--color-text);
-webkit-font-smoothing: antialiased;
moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
body * {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-webkit-focus-ring-color: rgba(255, 255, 255, 0);
outline: none;
-webkit-text-size-adjust: none;
}
article,
aside,
footer,
header,
nav,
section {
display: block;
}
figcaption,
figure,
main {
display: block;
}
figure {
margin-top: 0;
margin-bottom: 1.5rem;
}
img {
border-style: none;
height: auto;
max-width: 100%;
vertical-align: middle;
}
audio,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
svg:not(:root) {
overflow: hidden;
}
details,
menu {
display: block;
}
summary {
display: list-item;
}
canvas {
display: inline-block;
}
template {
display: none;
}
[hidden] {
display: none;
} | resources/css/typography/base.css | :root {
--base-font-weight: normal;
--base-font-style: normal;
--font-size: 1rem;
--font-size-small: 80%;
--font-weight-thin: 100;
--font-weight-light: 300;
--font-weight: 400;
--font-weight-medium: 500;
--font-weight-bold: 700;
--line-height: 1.5;
--font-family: var(--font-system);
--font-family-base:'Roboto', sans-serif;
--font-family-condensed: 'Roboto Condensed', sans-serif;
--font-sans-serif: sans-serif;
--font-serif: serif;
--font-system: system-ui;
--font-monospace: Menlo, Consolas, "DejaVu Sans Mono", monospace;
--code-font-size: 90%;
--code-color: var(--color-black);
--code-border-radius: var(--border-radius);
--code-bg-color: var(--component-bg-color);
--code-padding-x: calc(var(--font-size) * .4);
--code-padding-y: calc(var(--font-size) * .2);
--hr-border-width: 1px;
--hr-border-color: var(--component-border-color);
--hr-margin-x: 0;
--hr-margin-y: 2rem;
--kbd-font-size: 90%;
--kbd-color: var(--color-white);
--kbd-border-radius: var(--border-radius);
--kbd-bg-color: var(--color-black);
--kbd-padding-x: calc(var(--font-size) * .4);
--kbd-padding-y: calc(var(--font-size) * .2);
--mark-color: inherit;
--mark-bg-color: var(--color-yellow);
--mark-padding-x: calc(var(--font-size) * .4);
--mark-padding-y: calc(var(--font-size) * .2);
--pre-color: var(--code-color);
--pre-border-radius: var(--component-border-radius);
--pre-bg-color: var(--code-bg-color);
--pre-max-height: none;
--selection-color: var(--color-white);
--selection-bg-color: var(--state-secondary);
}
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
color: var(--color-text);
-webkit-overflow-scrolling: touch;
}
body {
margin: 0;
font-size: var(--font-size);
font-family: var(--font-family);
line-height: var(--line-height);
background-color: var(--body-bg-color);
color: var(--color-text);
-webkit-font-smoothing: antialiased;
moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
body * {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-webkit-focus-ring-color: rgba(255, 255, 255, 0);
outline: none;
-webkit-text-size-adjust: none;
}
article,
aside,
footer,
header,
nav,
section {
display: block;
}
figcaption,
figure,
main {
display: block;
}
figure {
margin-top: 0;
margin-bottom: 1.5rem;
}
img {
border-style: none;
height: auto;
max-width: 100%;
vertical-align: middle;
}
audio,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
svg:not(:root) {
overflow: hidden;
}
details,
menu {
display: block;
}
summary {
display: list-item;
}
canvas {
display: inline-block;
}
template {
display: none;
}
[hidden] {
display: none;
} | 0.362066 | 0.123709 |
html,
body {
margin: 0;
height: 100%;
text-rendering: optimizeLegibility;
font-size-adjust: none;
}
body {
font: 17px 'PT Serif', serif;
color: #777;
font-weight: 100;
counter-reset: figure;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
@media screen and (max-width: 960px) {
body {
font-size: 15px;
}
}
h1,
h2,
h3,
h4 {
font-family: "Helvetica Neue", sans-serif;
color: #777;
}
h1 {
font-weight: 100;
font-size: 60px;
margin: 1.4em 0 1em;
}
h1 span {
border-bottom: 2px solid #445de9;
}
header a {
text-decoration: none;
}
h2 {
font-weight: 100;
font-size: 50px;
margin: 1em 0 .3em 0;
color: #445de9;
}
.copyright {
text-align: center;
}
#glossary h1 {
font-size: 40px;
margin: 1em 0 0.5em;
}
#glossary h2 {
font-size: 20px;
font-weight: normal;
margin: 2em 0 0 0;
}
#glossary h2 .link-icon {
margin-left: -20px;
padding-right: 4px;
}
#glossary h2 .link-icon img {
width: 16px;
height: 16px;
opacity: 0.46667;
filter: alpha(opacity=47);
}
#glossary h2 .link-icon img:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
#glossary h2 + p {
margin-top: 0;
}
#glossary strong {
font-weight: 700;
color: #000;
}
.btt {
text-decoration: none;
font-size: 12px;
color: white;
background: #445de9;
padding: 5px 10px;
font-weight: normal;
font-family: "Helvetica Neue", sans-serif;
}
.btt:hover {
color: white;
text-decoration: underline;
}
@media screen and (max-width: 960px) {
h2 {
font-size: 2em;
}
}
h3 {
font-size: 24px;
margin: 2em 0 0;
font-weight: 100;
}
p {
line-height: 1.4em;
}
a {
color: #445de9;
text-decoration: underline;
}
a:hover {
color: #3049d5;
text-decoration: none;
}
.trait h2 {
font-weight: 100;
font-size: 30px;
margin: 1em 0 .1em 0;
}
.trait {
margin: 0 40px 0 40px;
padding-top: 10px;
}
.trait p {
margin-bottom: 5px;
}
.trait img {
max-width: 100%;
margin: 20px 0;
}
.trait strong {
color: #445de9;
}
main {
-moz-transition: opacity 400ms linear 400ms, -moz-filter 400ms linear 400ms;
transition: opacity 400ms linear 400ms, filter 400ms linear 400ms;
-webkit-transition: opacity 400ms linear 400ms, -webkit-filter 400ms linear 400ms;
}
.opened main,
.signing main {
opacity: .4;
-webkit-filter: blur(1px);
-moz-filter: blur(1px);
filter: blur(1px);
-moz-transition: opacity 400ms linear, -moz-filter 200ms linear 800ms;
transition: opacity 400ms linear, filter 200ms linear 800ms;
-webkit-transition: opacity 400ms linear, -webkit-filter 200ms linear 800ms;
}
header,
article {
width: 600px;
margin: 0 auto;
}
article.admin {
width: 1024px;
}
@media screen and (max-width: 960px) {
header,
article {
width: auto;
max-width: 600px;
padding: 0 1em;
}
}
header {
padding: 1px 0;
}
@media screen and (max-width: 960px) {
header {
height: auto;
text-align: center;
}
header h1 {
font-size: 45px;
}
header nav {
display: none;
}
}
@media screen and (max-width: 600px) {
.ribbon {
display: none;
}
header h1 {
font-size: 30px;
}
}
@media print {
header {
height: auto;
}
}
section {
padding-top: 20px;
}
aside,
nav {
width: 50%;
float: left;
}
@media screen and (max-width: 960px) {
aside,
nav {
width: auto;
float: none;
}
}
@media print {
nav {
width: auto;
float: none;
margin: 0 4em;
}
}
aside {
text-align: center;
width: 100%;
}
aside p {
color: #999;
font-style: italic;
margin: 0;
}
.social {
overflow: hidden;
text-align: center;
}
.social section div > iframe,
.social section div > div,
.social section div > span {
display: inline-block;
width: auto;
min-width: 130px;
text-align: center
}
.twitter-share-button {
margin-right: 0
}
aside .pdf {
font-size: .8em;
color: #999;
}
nav {
counter-reset: section;
}
nav:before {
color: #999;
font-style: italic;
margin: 0;
display: block;
content: "Table of Contents";
margin-bottom: .5em;
}
nav a {
font-size: 1.2em;
display: block;
padding: .3em;
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
text-decoration: none;
border-radius: 3px;
}
nav a:before {
float: left;
padding: .4em .5em 0 0;
font-size: .7em;
counter-increment: section;
content: counter(section) ". ";
color: #999;
font-style: italic;
margin: 0;
}
nav a:hover {
background: #445de9;
color: white;
}
nav a:hover:before {
color: rgba(255, 255, 255, 0.5);
}
blockquote {
margin: 2em -160px;
color: #445de9;
font-size: 24px;
text-align: center;
}
q {
display: block;
float: right;
width: 300px;
margin: 0.5em -160px 0.5em 0.5em;
text-align: right;
}
@media print {
q {
margin-right: 0;
}
}
blockquote,
q {
color: #445de9;
font-size: 1.5em;
font-style: italic;
line-height: 1.5em;
}
@media screen and (max-width: 960px) {
blockquote,
q {
display: block;
margin: 2em 1em;
text-align: center;
padding: 0;
width: auto;
float: none;
}
}
@media print {
blockquote,
q {
font-size: 1.2em;
}
}
footer {
background: #445de9;
color: white;
padding: 3em;
margin-top: 3em;
text-align: center;
}
footer a {
color: inherit !important;
padding-bottom: 5px;
display: inline-block;
}
#headerMinimized {
position: absolute;
top: -800px;
}
#headerMinimized h1 {
cursor: pointer;
position: fixed;
top: 0;
left: 0;
right: 0;
margin: 0 ;
background: #ffffff url("../images/table.png") right top no-repeat;
z-index: 15;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
font: 16px "Helvetica Neue", sans-serif;
text-transform: uppercase;
font-weight: 200;
color: #374045;
margin: 0;
line-height: 40px;
-webkit-transform: translate3d(0, -110%, 0);
-moz-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition: -webkit-transform 200ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 200ms cubic-bezier(1, 0, 0.5, 1);
padding: 0 1em;
height: 40px;
}
.display #headerMinimized h1 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.opened #headerMinimized h1,
#headerMinimized h1:hover {
background-position: right bottom;
}
@media screen and (max-width: 960px) {
#headerMinimized h1 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#headerMinimized nav {
bottom: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
}
@media print {
#headerMinimized {
display: none;
}
}
#headerMinimized nav {
position: fixed;
top: 40px;
left: 0;
right: 0;
width: auto;
background: #fff;
z-index: 10;
padding: 2em;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
-webkit-transform: translate3d(0, -112%, 0);
-moz-transform: translate3d(0, -112%, 0);
transform: translate3d(0, -112%, 0);
-webkit-transition: -webkit-transform 400ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 400ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 400ms cubic-bezier(1, 0, 0.5, 1);
}
.opened #headerMinimized nav {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
figure {
margin: 3em 0;
overflow: hidden;
text-align: center;
}
figure img {
margin: 10px 0;
max-width: 100%;
}
figure figcaption {
color: #999;
font-style: italic;
margin: 0;
border-top: 1px solid #eee;
margin: 2em 0 0;
padding-top: 1em;
text-align: center;
}
figure figcaption:before {
counter-increment: figure;
content: "fig. " counter(figure);
padding-right: 8px;
}
@media screen and (max-width: 960px) {
figure {
margin: 3em 0 !important;
}
}
@media print {
figure {
margin: 3em 0 !important;
}
}
.cloud {
height: 122px;
margin: 1px 0;
background: url("../images/cloud.png");
}
@media print {
.cloud {
display: none;
}
}
#reactive-applications .focus {
margin: 3em -160px;
padding: 0;
overflow: hidden;
text-align: center;
}
#reactive-applications .focus li {
display: block;
box-sizing: border-box;
width: 25%;
padding: 0 1em;
float: left;
}
#reactive-applications .focus h4 {
color: #445de9;
}
@media screen and (max-width: 960px) {
#reactive-applications .focus {
margin: 3em 0;
}
#reactive-applications .focus li {
display: inline-block;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 180px;
padding: 0 1em;
float: none;
}
}
@media print {
#reactive-applications .focus {
margin: 3em 0;
}
#reactive-applications .focus li {
width: 50%;
}
}
#reactive-applications .stack {
margin: 3em -50px;
}
#event-driven .amdahl {
margin: 3em -160px;
}
#event-driven .amdahl img {
float: right;
}
#event-driven .amdahl blockquote {
margin: 0 450px 0 0;
text-align: left;
}
@media screen and (max-width: 960px) {
#event-driven .amdahl img {
float: none;
}
#event-driven .amdahl blockquote {
margin: 10px;
text-align: center;
}
}
@media print {
#event-driven .amdahl img {
float: none;
}
#event-driven .amdahl blockquote {
margin: 10px;
text-align: center;
}
}
#resilient .tank {
height: 280px;
}
#resilient .tank div {
position: absolute;
left: 0;
right: 0;
height: inherit;
background: #445de9;
}
#resilient .tank figcaption {
color: white;
border-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 860px) {
#resilient .tank {
height: 250px;
}
}
@media screen and (max-width: 650px) {
#resilient .tank {
height: 220px;
}
}
@media screen and (max-width: 550px) {
#resilient .tank {
height: 200px;
}
}
@media screen and (max-width: 400px) {
#resilient .tank {
height: 170px;
}
}
#interactive .stack {
margin: 3em -80px;
}
.sign {
clear: both;
padding: 4em 0 .5em;
text-align: center;
}
.sign p {
color: #999;
font-style: italic;
margin: 0;
}
.sign button {
background: #445de9;
border: none;
color: white;
font-size: 20px;
font-weight: bold;
display: inline-block;
padding: .7em 2em;
border-radius: 3px;
-webkit-transition: -webkit-transform 200ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 200ms cubic-bezier(1, 0, 0.5, 1);
}
.sign button:hover {
background: #3049d5;
}
@media print {
.sign {
display: none;
}
}
#sign {
z-index: 2;
position: fixed;
top: -50%;
left: 50%;
width: 400px;
padding: 1em 2em 2em;
background: #445de9;
color: white;
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
border-radius: 3px;
opacity: 0;
transform: translate(calc(-49%), calc(-99%));
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-webkit-calc(-49%), -webkit-calc(-99%));
-webkit-transition: -webkit-transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
}
.signing #sign {
top: 50%;
opacity: 1;
transform: translate(calc(-49%), calc(-49%));
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-webkit-calc(-49%), -webkit-calc(-49%));
-webkit-transition: -webkit-transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
-moz-transition: -moz-transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
transition: transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
}
@media screen and (max-width: 500px) {
#sign {
width: auto;
left: 0;
right: 0;
bottom: 0;
transform: translate(0,-100%);
-moz-transform: translate(0,-100%);
-webkit-transform: translate(0,-100%);
}
.signing #sign {
top: 0px;
transform: translate(0,0);
-moz-transform: translate(0,0);
-webkit-transform: translate(0,0);
}
#sign {
opacity: 1;
}
}
#sign .close {
display: block;
border: 2px solid white;
border-radius: 13px;
width: 20px;
height: 20px;
line-height: 17px;
padding: 0;
text-align: center;
position: absolute;
top: 2em;
right: 2em;
cursor: pointer;
}
#sign .inner {
text-align: center;
}
#sign hr {
border: 0;
border-top: 1px solid rgba(255, 255, 255, 0.4);
margin: 1em 0;
}
#sign .logout,
#sign button {
display: block;
color: white;
background: #445de9;
border: 2px solid white;
border-radius: 2px;
padding: .3em 1em;
font-size: 11px;
text-transform: uppercase;
text-decoration: none;
}
#sign .logout:hover,
#sign .close:hover,
#sign button:hover {
background: white;
color: #445de9;
}
#sign .logout {
float: right;
margin-right: 30px;
}
#sign button {
width: 200px;
margin: .5em auto;
}
#sign .vote {
border: none;
background: white;
color: #445de9;
border-radius: 3px;
padding: .6em 1.4em;
font-size: 14px;
width: 250px;
}
.signatures {
margin: 0;
padding: .5em 1em 2em;
text-align: center;
}
@media print {
.signatures {
display: none;
}
}
.signatures ul {
padding: 0;
margin: 0;
}
.signatures li {
display: inline-block;
padding: .2em;
position: relative;
}
.signatures li img {
background: #eee;
}
.signatures li cite {
display: none;
position: absolute;
top: -10px;
left: 50%;
-webkit-transform: translate(-50%,-100%);
-moz-transform: translate(-50%,-100%);
transform: translate(-50%,-100%);
background: #444;
color: #fff;
padding: .3em 1em;
white-space: nowrap;
}
.signatures li cite:before {
display: block;
content: " ";
position: absolute;
bottom: -10px;
left: 50%;
-webkit-transform: translate(-50%,0);
-moz-transform: translate(-50%,0);
transform: translate(-50%,0);
width: 0px;
height: 0px;
border-style: solid;
border-width: 10px 10px 0 10px;
border-color: #444 transparent transparent transparent;
}
.signatures li:hover cite {
display: block;
}
.signatures .version {
color: #999;
font-style: italic;
font-size: 11px;
}
.full {
padding: 2em;
line-height: 1.4em;
}
.ribbons li {
padding: 20px;
list-style-type: none;
text-align: center;
}
.ribbons code {
font-size: 12px;
display: block;
}
.searching {
position: absolute;
}
@media print {
body {
color: #444;
font-size: 14px;
}
.ribbon, .social, footer {
display: none;
}
header h1 {
margin-top: 10px;
}
aside {
text-align: left;
}
h3 {
color: #444;
}
.trait {
padding-top: 5px;
}
}
.toc ul {
padding: 0;
list-style-type: none;
width: 50%;
margin: 0;
float: left;
}
.toc li {
padding: 3px 0;
}
.toc a {
font-size: 0.8em;
}
#glossary .toc h2 {
color: #777;
margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
.toc ul {
width: 100%;
float: none;
}
.toc li {
padding: 6px 0;
}
.toc a {
font-size: 1em;
}
}
body .optanon-alert-box-wrapper .optanon-alert-box-bottom-top {
height: 20px
}
body .optanon-alert-box-wrapper .optanon-alert-box-bottom-padding {
padding-bottom: 20px
}
.optanon-cookie-policy-group-name {
font-weight: 700
}
.optanon-toggle-display {
cursor: pointer;
}
.legal-links a {
font-size: .75rem;
text-transform: uppercase;
opacity: .7
} | public/stylesheets/main.css | html,
body {
margin: 0;
height: 100%;
text-rendering: optimizeLegibility;
font-size-adjust: none;
}
body {
font: 17px 'PT Serif', serif;
color: #777;
font-weight: 100;
counter-reset: figure;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
@media screen and (max-width: 960px) {
body {
font-size: 15px;
}
}
h1,
h2,
h3,
h4 {
font-family: "Helvetica Neue", sans-serif;
color: #777;
}
h1 {
font-weight: 100;
font-size: 60px;
margin: 1.4em 0 1em;
}
h1 span {
border-bottom: 2px solid #445de9;
}
header a {
text-decoration: none;
}
h2 {
font-weight: 100;
font-size: 50px;
margin: 1em 0 .3em 0;
color: #445de9;
}
.copyright {
text-align: center;
}
#glossary h1 {
font-size: 40px;
margin: 1em 0 0.5em;
}
#glossary h2 {
font-size: 20px;
font-weight: normal;
margin: 2em 0 0 0;
}
#glossary h2 .link-icon {
margin-left: -20px;
padding-right: 4px;
}
#glossary h2 .link-icon img {
width: 16px;
height: 16px;
opacity: 0.46667;
filter: alpha(opacity=47);
}
#glossary h2 .link-icon img:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
#glossary h2 + p {
margin-top: 0;
}
#glossary strong {
font-weight: 700;
color: #000;
}
.btt {
text-decoration: none;
font-size: 12px;
color: white;
background: #445de9;
padding: 5px 10px;
font-weight: normal;
font-family: "Helvetica Neue", sans-serif;
}
.btt:hover {
color: white;
text-decoration: underline;
}
@media screen and (max-width: 960px) {
h2 {
font-size: 2em;
}
}
h3 {
font-size: 24px;
margin: 2em 0 0;
font-weight: 100;
}
p {
line-height: 1.4em;
}
a {
color: #445de9;
text-decoration: underline;
}
a:hover {
color: #3049d5;
text-decoration: none;
}
.trait h2 {
font-weight: 100;
font-size: 30px;
margin: 1em 0 .1em 0;
}
.trait {
margin: 0 40px 0 40px;
padding-top: 10px;
}
.trait p {
margin-bottom: 5px;
}
.trait img {
max-width: 100%;
margin: 20px 0;
}
.trait strong {
color: #445de9;
}
main {
-moz-transition: opacity 400ms linear 400ms, -moz-filter 400ms linear 400ms;
transition: opacity 400ms linear 400ms, filter 400ms linear 400ms;
-webkit-transition: opacity 400ms linear 400ms, -webkit-filter 400ms linear 400ms;
}
.opened main,
.signing main {
opacity: .4;
-webkit-filter: blur(1px);
-moz-filter: blur(1px);
filter: blur(1px);
-moz-transition: opacity 400ms linear, -moz-filter 200ms linear 800ms;
transition: opacity 400ms linear, filter 200ms linear 800ms;
-webkit-transition: opacity 400ms linear, -webkit-filter 200ms linear 800ms;
}
header,
article {
width: 600px;
margin: 0 auto;
}
article.admin {
width: 1024px;
}
@media screen and (max-width: 960px) {
header,
article {
width: auto;
max-width: 600px;
padding: 0 1em;
}
}
header {
padding: 1px 0;
}
@media screen and (max-width: 960px) {
header {
height: auto;
text-align: center;
}
header h1 {
font-size: 45px;
}
header nav {
display: none;
}
}
@media screen and (max-width: 600px) {
.ribbon {
display: none;
}
header h1 {
font-size: 30px;
}
}
@media print {
header {
height: auto;
}
}
section {
padding-top: 20px;
}
aside,
nav {
width: 50%;
float: left;
}
@media screen and (max-width: 960px) {
aside,
nav {
width: auto;
float: none;
}
}
@media print {
nav {
width: auto;
float: none;
margin: 0 4em;
}
}
aside {
text-align: center;
width: 100%;
}
aside p {
color: #999;
font-style: italic;
margin: 0;
}
.social {
overflow: hidden;
text-align: center;
}
.social section div > iframe,
.social section div > div,
.social section div > span {
display: inline-block;
width: auto;
min-width: 130px;
text-align: center
}
.twitter-share-button {
margin-right: 0
}
aside .pdf {
font-size: .8em;
color: #999;
}
nav {
counter-reset: section;
}
nav:before {
color: #999;
font-style: italic;
margin: 0;
display: block;
content: "Table of Contents";
margin-bottom: .5em;
}
nav a {
font-size: 1.2em;
display: block;
padding: .3em;
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
text-decoration: none;
border-radius: 3px;
}
nav a:before {
float: left;
padding: .4em .5em 0 0;
font-size: .7em;
counter-increment: section;
content: counter(section) ". ";
color: #999;
font-style: italic;
margin: 0;
}
nav a:hover {
background: #445de9;
color: white;
}
nav a:hover:before {
color: rgba(255, 255, 255, 0.5);
}
blockquote {
margin: 2em -160px;
color: #445de9;
font-size: 24px;
text-align: center;
}
q {
display: block;
float: right;
width: 300px;
margin: 0.5em -160px 0.5em 0.5em;
text-align: right;
}
@media print {
q {
margin-right: 0;
}
}
blockquote,
q {
color: #445de9;
font-size: 1.5em;
font-style: italic;
line-height: 1.5em;
}
@media screen and (max-width: 960px) {
blockquote,
q {
display: block;
margin: 2em 1em;
text-align: center;
padding: 0;
width: auto;
float: none;
}
}
@media print {
blockquote,
q {
font-size: 1.2em;
}
}
footer {
background: #445de9;
color: white;
padding: 3em;
margin-top: 3em;
text-align: center;
}
footer a {
color: inherit !important;
padding-bottom: 5px;
display: inline-block;
}
#headerMinimized {
position: absolute;
top: -800px;
}
#headerMinimized h1 {
cursor: pointer;
position: fixed;
top: 0;
left: 0;
right: 0;
margin: 0 ;
background: #ffffff url("../images/table.png") right top no-repeat;
z-index: 15;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
font: 16px "Helvetica Neue", sans-serif;
text-transform: uppercase;
font-weight: 200;
color: #374045;
margin: 0;
line-height: 40px;
-webkit-transform: translate3d(0, -110%, 0);
-moz-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition: -webkit-transform 200ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 200ms cubic-bezier(1, 0, 0.5, 1);
padding: 0 1em;
height: 40px;
}
.display #headerMinimized h1 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.opened #headerMinimized h1,
#headerMinimized h1:hover {
background-position: right bottom;
}
@media screen and (max-width: 960px) {
#headerMinimized h1 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#headerMinimized nav {
bottom: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
}
@media print {
#headerMinimized {
display: none;
}
}
#headerMinimized nav {
position: fixed;
top: 40px;
left: 0;
right: 0;
width: auto;
background: #fff;
z-index: 10;
padding: 2em;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
-webkit-transform: translate3d(0, -112%, 0);
-moz-transform: translate3d(0, -112%, 0);
transform: translate3d(0, -112%, 0);
-webkit-transition: -webkit-transform 400ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 400ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 400ms cubic-bezier(1, 0, 0.5, 1);
}
.opened #headerMinimized nav {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
figure {
margin: 3em 0;
overflow: hidden;
text-align: center;
}
figure img {
margin: 10px 0;
max-width: 100%;
}
figure figcaption {
color: #999;
font-style: italic;
margin: 0;
border-top: 1px solid #eee;
margin: 2em 0 0;
padding-top: 1em;
text-align: center;
}
figure figcaption:before {
counter-increment: figure;
content: "fig. " counter(figure);
padding-right: 8px;
}
@media screen and (max-width: 960px) {
figure {
margin: 3em 0 !important;
}
}
@media print {
figure {
margin: 3em 0 !important;
}
}
.cloud {
height: 122px;
margin: 1px 0;
background: url("../images/cloud.png");
}
@media print {
.cloud {
display: none;
}
}
#reactive-applications .focus {
margin: 3em -160px;
padding: 0;
overflow: hidden;
text-align: center;
}
#reactive-applications .focus li {
display: block;
box-sizing: border-box;
width: 25%;
padding: 0 1em;
float: left;
}
#reactive-applications .focus h4 {
color: #445de9;
}
@media screen and (max-width: 960px) {
#reactive-applications .focus {
margin: 3em 0;
}
#reactive-applications .focus li {
display: inline-block;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 180px;
padding: 0 1em;
float: none;
}
}
@media print {
#reactive-applications .focus {
margin: 3em 0;
}
#reactive-applications .focus li {
width: 50%;
}
}
#reactive-applications .stack {
margin: 3em -50px;
}
#event-driven .amdahl {
margin: 3em -160px;
}
#event-driven .amdahl img {
float: right;
}
#event-driven .amdahl blockquote {
margin: 0 450px 0 0;
text-align: left;
}
@media screen and (max-width: 960px) {
#event-driven .amdahl img {
float: none;
}
#event-driven .amdahl blockquote {
margin: 10px;
text-align: center;
}
}
@media print {
#event-driven .amdahl img {
float: none;
}
#event-driven .amdahl blockquote {
margin: 10px;
text-align: center;
}
}
#resilient .tank {
height: 280px;
}
#resilient .tank div {
position: absolute;
left: 0;
right: 0;
height: inherit;
background: #445de9;
}
#resilient .tank figcaption {
color: white;
border-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 860px) {
#resilient .tank {
height: 250px;
}
}
@media screen and (max-width: 650px) {
#resilient .tank {
height: 220px;
}
}
@media screen and (max-width: 550px) {
#resilient .tank {
height: 200px;
}
}
@media screen and (max-width: 400px) {
#resilient .tank {
height: 170px;
}
}
#interactive .stack {
margin: 3em -80px;
}
.sign {
clear: both;
padding: 4em 0 .5em;
text-align: center;
}
.sign p {
color: #999;
font-style: italic;
margin: 0;
}
.sign button {
background: #445de9;
border: none;
color: white;
font-size: 20px;
font-weight: bold;
display: inline-block;
padding: .7em 2em;
border-radius: 3px;
-webkit-transition: -webkit-transform 200ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 200ms cubic-bezier(1, 0, 0.5, 1);
}
.sign button:hover {
background: #3049d5;
}
@media print {
.sign {
display: none;
}
}
#sign {
z-index: 2;
position: fixed;
top: -50%;
left: 50%;
width: 400px;
padding: 1em 2em 2em;
background: #445de9;
color: white;
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
border-radius: 3px;
opacity: 0;
transform: translate(calc(-49%), calc(-99%));
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-webkit-calc(-49%), -webkit-calc(-99%));
-webkit-transition: -webkit-transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
-moz-transition: -moz-transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
transition: transform 400ms cubic-bezier(1, 0, 0.5, 1), top 1ms linear 1000ms, opacity 400ms cubic-bezier(1, 0, 0.5, 1);
}
.signing #sign {
top: 50%;
opacity: 1;
transform: translate(calc(-49%), calc(-49%));
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-webkit-calc(-49%), -webkit-calc(-49%));
-webkit-transition: -webkit-transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
-moz-transition: -moz-transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
transition: transform 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms, top 1ms linear, opacity 400ms cubic-bezier(0, 0.5, 0.5, 1) 400ms;
}
@media screen and (max-width: 500px) {
#sign {
width: auto;
left: 0;
right: 0;
bottom: 0;
transform: translate(0,-100%);
-moz-transform: translate(0,-100%);
-webkit-transform: translate(0,-100%);
}
.signing #sign {
top: 0px;
transform: translate(0,0);
-moz-transform: translate(0,0);
-webkit-transform: translate(0,0);
}
#sign {
opacity: 1;
}
}
#sign .close {
display: block;
border: 2px solid white;
border-radius: 13px;
width: 20px;
height: 20px;
line-height: 17px;
padding: 0;
text-align: center;
position: absolute;
top: 2em;
right: 2em;
cursor: pointer;
}
#sign .inner {
text-align: center;
}
#sign hr {
border: 0;
border-top: 1px solid rgba(255, 255, 255, 0.4);
margin: 1em 0;
}
#sign .logout,
#sign button {
display: block;
color: white;
background: #445de9;
border: 2px solid white;
border-radius: 2px;
padding: .3em 1em;
font-size: 11px;
text-transform: uppercase;
text-decoration: none;
}
#sign .logout:hover,
#sign .close:hover,
#sign button:hover {
background: white;
color: #445de9;
}
#sign .logout {
float: right;
margin-right: 30px;
}
#sign button {
width: 200px;
margin: .5em auto;
}
#sign .vote {
border: none;
background: white;
color: #445de9;
border-radius: 3px;
padding: .6em 1.4em;
font-size: 14px;
width: 250px;
}
.signatures {
margin: 0;
padding: .5em 1em 2em;
text-align: center;
}
@media print {
.signatures {
display: none;
}
}
.signatures ul {
padding: 0;
margin: 0;
}
.signatures li {
display: inline-block;
padding: .2em;
position: relative;
}
.signatures li img {
background: #eee;
}
.signatures li cite {
display: none;
position: absolute;
top: -10px;
left: 50%;
-webkit-transform: translate(-50%,-100%);
-moz-transform: translate(-50%,-100%);
transform: translate(-50%,-100%);
background: #444;
color: #fff;
padding: .3em 1em;
white-space: nowrap;
}
.signatures li cite:before {
display: block;
content: " ";
position: absolute;
bottom: -10px;
left: 50%;
-webkit-transform: translate(-50%,0);
-moz-transform: translate(-50%,0);
transform: translate(-50%,0);
width: 0px;
height: 0px;
border-style: solid;
border-width: 10px 10px 0 10px;
border-color: #444 transparent transparent transparent;
}
.signatures li:hover cite {
display: block;
}
.signatures .version {
color: #999;
font-style: italic;
font-size: 11px;
}
.full {
padding: 2em;
line-height: 1.4em;
}
.ribbons li {
padding: 20px;
list-style-type: none;
text-align: center;
}
.ribbons code {
font-size: 12px;
display: block;
}
.searching {
position: absolute;
}
@media print {
body {
color: #444;
font-size: 14px;
}
.ribbon, .social, footer {
display: none;
}
header h1 {
margin-top: 10px;
}
aside {
text-align: left;
}
h3 {
color: #444;
}
.trait {
padding-top: 5px;
}
}
.toc ul {
padding: 0;
list-style-type: none;
width: 50%;
margin: 0;
float: left;
}
.toc li {
padding: 3px 0;
}
.toc a {
font-size: 0.8em;
}
#glossary .toc h2 {
color: #777;
margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
.toc ul {
width: 100%;
float: none;
}
.toc li {
padding: 6px 0;
}
.toc a {
font-size: 1em;
}
}
body .optanon-alert-box-wrapper .optanon-alert-box-bottom-top {
height: 20px
}
body .optanon-alert-box-wrapper .optanon-alert-box-bottom-padding {
padding-bottom: 20px
}
.optanon-cookie-policy-group-name {
font-weight: 700
}
.optanon-toggle-display {
cursor: pointer;
}
.legal-links a {
font-size: .75rem;
text-transform: uppercase;
opacity: .7
} | 0.471953 | 0.104158 |
width: 1100px;
margin: 0 auto;
}
#external-events {
float: left;
width: 100%;
padding: 0 10px;
border: 1px solid #ccc;
background: #eee;
text-align: left;
}
#external-events h4 {
font-size: 16px;
margin-top: 0;
padding-top: 1em;
}
#external-events .fc-event {
margin: 10px 0 0 0;
cursor: pointer;
}
#external-events p {
margin: 1.5em 0;
font-size: 11px;
color: #666;
}
#external-events p input {
margin: 0;
vertical-align: middle;
}
#calendar {
max-width: 900px;
margin: 0 auto;
}
.progress {
display: block;
text-align: center;
width: 0;
height: 20px;
background: red;
transition: width .3s;
}
.progress.hide {
opacity: 0;
transition: opacity 1.3s;
}
.navbar-toggle{
background-color: #1DA59B;
}
.navbar-toggle .icon-bar{
background-color: #fff;
}
.navigation ul li{
background-color: #fff;
}
.padding30{
padding:30px;
margin:0px 0px 30px 0px;
}
/*.styled-select {
width: 240px;
height: 34px;
overflow: hidden;
background: url(chevrondowncircle_33.png) no-repeat right #ddd;
border: 1px solid #00A49B;
}*/
.styled-select{
/*background: transparent url(chevrondowncircle_20.png) no-repeat right center;*/
background-image: url('chevrondowncircle_20.png');
background-repeat: no-repeat;
background-color: #fff;
background-position: 95% 50%;
padding:6px 20px;
color: #333;
font-size: 14px;
font-weight: bold;
line-height: 1;
border: 1px solid #00A49B;
border-radius: 30px;
height: 40px;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
}
.styled-select option{
background-color: #fff;
padding: 3px 0 0 20px;
border-right: 1px solid #00A49B;
}
.student-form .header p{
color: #FFFFFF;
}
.home-btn-search{
width:100%;
text-transform:uppercase;
font-weight: bold;
}
.language{
float:right;
margin-top: 15px;
}
.language ul{
list-style: none;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
background-color: #00A49B;
padding: 7px;
}
.language ul li{
display:inline;
font-size: 12px;
font-family: "LatoMedium";
color: #fff;
}
.language ul li a{
color: #fff;
}
/* UI tabs vertical */
.ui-tabs.ui-tabs-vertical {
padding: 0;
width: 42em;
}
.ui-tabs.ui-tabs-vertical .ui-widget-header {
border: none;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav {
float: left;
width: 10em;
background: #CCC;
border-radius: 4px 0 0 4px;
border-right: 1px solid gray;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li {
clear: left;
width: 100%;
margin: 0.2em 0;
border: 1px solid gray;
border-width: 1px 0 1px 1px;
border-radius: 4px 0 0 4px;
overflow: hidden;
position: relative;
right: -2px;
z-index: 2;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li a {
display: block;
width: 100%;
padding: 0.6em 1em;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li a:hover {
cursor: pointer;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
margin-bottom: 0.2em;
padding-bottom: 0;
border-right: 1px solid white;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li:last-child {
margin-bottom: 10px;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-panel {
float: left;
width: 28em;
border-left: 1px solid gray;
border-radius: 0;
position: relative;
left: -1px;
}
/*.tutor-list{
background-color:transparent;
border-style: solid;
border-width:5px 1px 1px 1px;
border-color: #333333 #00A49B #00A49B #00A49B;
padding:10px 0px;
margin-bottom: 15px
}
@media (min-width: 992px) {
.tutor-list{
background-color:transparent;
border-style: solid;
border-width:5px 1px 1px 1px;
border-color: #333333 #00A49B #00A49B #00A49B;
padding:10px 0px;
min-height: 290px;
margin-bottom: 15px
}
}
.tutor-list .row{
margin: 15px;
}
.tutor-list .row .list{
padding-bottom: 15px;
}*/
.newsletter-contant .input-group-addon{
background-color: transparent;
}
.newsletter-contant .input-group-addon a{
color:#fff;
}
.newsletter-contant .input-group-addon a:hover, .newsletter-contant .input-group-addon a:focus{
text-decoration: none;
}
.widget-newsletter img{
margin-top: 90px;
}
.owl-carousel .item {
background: #4dc7a0 none repeat scroll 0 0;
height: 10rem;
padding: 1rem;
}
.find-tutor-now{
margin-top: 70px;
color: #fff;
text-align: left;
}
.find-tutor-now h3{
font-size: 44px;
font-family: "LatoBold";
letter-spacing: 4px;
text-transform: uppercase;
line-height: 60px;
}
.find-tutor-now h4{
margin-top: 20px;
font-size: 20px;
font-family: "LatoHeavy";
letter-spacing: 2px;
}
.profile .title{
background-color: #E6E7E8;
padding: 0 2px;
}
.profile .footer{
background-color: #00A49B;
color: #fff;
}
.profile .footer p:first-child{
padding-top: 10px
}
.fa-root-menu-title{
color: #00A49B;
float: left;
margin-left: 10px;
}
.menu-title{
letter-spacing: 2px;
margin-top: 20px;
}
.menu-title-fix{
font-size: 16px;
color: #5C595B;
float: left;
margin: 10px 0 0 10px;
}
#btn-search-from-left-sidebar, #btn-search-from-right-sidebar{
background-color: #00A49B;
color: #fff;
border-radius: 5px;
border: medium none;
}
#btn-filter-from-right-sidebar{
background-color: #00A49B;
color: #fff;
border-radius: 5px;
border: medium none;
margin-top: 20px;
padding: 5px 0;
}
.profile .thumb img{
width: 100%;
height: 179px;
}
.btn-ibanking{
padding: 8px;
background-color: #0D4E96;
border-radius: 15px;
}
.label-required{
color: #ff0000;
font-style: italic;
} | assets/themes/iknow/css/mystyle.css | width: 1100px;
margin: 0 auto;
}
#external-events {
float: left;
width: 100%;
padding: 0 10px;
border: 1px solid #ccc;
background: #eee;
text-align: left;
}
#external-events h4 {
font-size: 16px;
margin-top: 0;
padding-top: 1em;
}
#external-events .fc-event {
margin: 10px 0 0 0;
cursor: pointer;
}
#external-events p {
margin: 1.5em 0;
font-size: 11px;
color: #666;
}
#external-events p input {
margin: 0;
vertical-align: middle;
}
#calendar {
max-width: 900px;
margin: 0 auto;
}
.progress {
display: block;
text-align: center;
width: 0;
height: 20px;
background: red;
transition: width .3s;
}
.progress.hide {
opacity: 0;
transition: opacity 1.3s;
}
.navbar-toggle{
background-color: #1DA59B;
}
.navbar-toggle .icon-bar{
background-color: #fff;
}
.navigation ul li{
background-color: #fff;
}
.padding30{
padding:30px;
margin:0px 0px 30px 0px;
}
/*.styled-select {
width: 240px;
height: 34px;
overflow: hidden;
background: url(chevrondowncircle_33.png) no-repeat right #ddd;
border: 1px solid #00A49B;
}*/
.styled-select{
/*background: transparent url(chevrondowncircle_20.png) no-repeat right center;*/
background-image: url('chevrondowncircle_20.png');
background-repeat: no-repeat;
background-color: #fff;
background-position: 95% 50%;
padding:6px 20px;
color: #333;
font-size: 14px;
font-weight: bold;
line-height: 1;
border: 1px solid #00A49B;
border-radius: 30px;
height: 40px;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
}
.styled-select option{
background-color: #fff;
padding: 3px 0 0 20px;
border-right: 1px solid #00A49B;
}
.student-form .header p{
color: #FFFFFF;
}
.home-btn-search{
width:100%;
text-transform:uppercase;
font-weight: bold;
}
.language{
float:right;
margin-top: 15px;
}
.language ul{
list-style: none;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
background-color: #00A49B;
padding: 7px;
}
.language ul li{
display:inline;
font-size: 12px;
font-family: "LatoMedium";
color: #fff;
}
.language ul li a{
color: #fff;
}
/* UI tabs vertical */
.ui-tabs.ui-tabs-vertical {
padding: 0;
width: 42em;
}
.ui-tabs.ui-tabs-vertical .ui-widget-header {
border: none;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav {
float: left;
width: 10em;
background: #CCC;
border-radius: 4px 0 0 4px;
border-right: 1px solid gray;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li {
clear: left;
width: 100%;
margin: 0.2em 0;
border: 1px solid gray;
border-width: 1px 0 1px 1px;
border-radius: 4px 0 0 4px;
overflow: hidden;
position: relative;
right: -2px;
z-index: 2;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li a {
display: block;
width: 100%;
padding: 0.6em 1em;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li a:hover {
cursor: pointer;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
margin-bottom: 0.2em;
padding-bottom: 0;
border-right: 1px solid white;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li:last-child {
margin-bottom: 10px;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-panel {
float: left;
width: 28em;
border-left: 1px solid gray;
border-radius: 0;
position: relative;
left: -1px;
}
/*.tutor-list{
background-color:transparent;
border-style: solid;
border-width:5px 1px 1px 1px;
border-color: #333333 #00A49B #00A49B #00A49B;
padding:10px 0px;
margin-bottom: 15px
}
@media (min-width: 992px) {
.tutor-list{
background-color:transparent;
border-style: solid;
border-width:5px 1px 1px 1px;
border-color: #333333 #00A49B #00A49B #00A49B;
padding:10px 0px;
min-height: 290px;
margin-bottom: 15px
}
}
.tutor-list .row{
margin: 15px;
}
.tutor-list .row .list{
padding-bottom: 15px;
}*/
.newsletter-contant .input-group-addon{
background-color: transparent;
}
.newsletter-contant .input-group-addon a{
color:#fff;
}
.newsletter-contant .input-group-addon a:hover, .newsletter-contant .input-group-addon a:focus{
text-decoration: none;
}
.widget-newsletter img{
margin-top: 90px;
}
.owl-carousel .item {
background: #4dc7a0 none repeat scroll 0 0;
height: 10rem;
padding: 1rem;
}
.find-tutor-now{
margin-top: 70px;
color: #fff;
text-align: left;
}
.find-tutor-now h3{
font-size: 44px;
font-family: "LatoBold";
letter-spacing: 4px;
text-transform: uppercase;
line-height: 60px;
}
.find-tutor-now h4{
margin-top: 20px;
font-size: 20px;
font-family: "LatoHeavy";
letter-spacing: 2px;
}
.profile .title{
background-color: #E6E7E8;
padding: 0 2px;
}
.profile .footer{
background-color: #00A49B;
color: #fff;
}
.profile .footer p:first-child{
padding-top: 10px
}
.fa-root-menu-title{
color: #00A49B;
float: left;
margin-left: 10px;
}
.menu-title{
letter-spacing: 2px;
margin-top: 20px;
}
.menu-title-fix{
font-size: 16px;
color: #5C595B;
float: left;
margin: 10px 0 0 10px;
}
#btn-search-from-left-sidebar, #btn-search-from-right-sidebar{
background-color: #00A49B;
color: #fff;
border-radius: 5px;
border: medium none;
}
#btn-filter-from-right-sidebar{
background-color: #00A49B;
color: #fff;
border-radius: 5px;
border: medium none;
margin-top: 20px;
padding: 5px 0;
}
.profile .thumb img{
width: 100%;
height: 179px;
}
.btn-ibanking{
padding: 8px;
background-color: #0D4E96;
border-radius: 15px;
}
.label-required{
color: #ff0000;
font-style: italic;
} | 0.334807 | 0.082883 |
width:800px;
height:480px;
left: 0px;
top: 0px;
position:absolute;
border:none
}
#front {
z-index: 1;
width:800px;
height:480px;
left: 0px;
top: 0px;
position:absolute;
border:none
}
#menubar {
width: 291px;
height: 437px;
left: 15px;
top: 21px;
background: #EFEFEF;
box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
border-radius: 35px;
margin-right: 20px;
}
#menubarspacer {
width: 40px;
height: 437px;
left: 15px;
top: 21px;
background: rgba(0,0,0,0);
border-radius: 35px;
margin-right: 20px;
}
#h3 {
position: absolute;
left: 20px;
top: 35px;
font-family: Roboto;
font-weight: 700;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#iframe {
position: absolute;
width: 275px;
height: 357px;
left: 8px;
top: 74px;
overflow:hidden;
overflow-x: hidden;
scrollbar-width: none;
border-radius: 25px;
}
#iframe::-webkit-scrollbar {
display: none;
}
#shortcuts {
position: absolute;
width: 800px;
height: 200px;
left: 0px;
top: 0px;
background: #222222;
box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
border-radius: 0px 0px 35px 35px;
}
#name {
position: absolute;
width: 324px;
height: 50px;
left: 15px;
top: 11px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 34px;
line-height: 40px;
color: #808080;
}
#settings {
position: absolute;
width: 119px;
height: 40px;
left: 269px;
top: 15px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#ambient {
position: absolute;
width: 204px;
height: 40px;
left: 459px;
top: 16px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#apps {
position: absolute;
width: 86px;
height: 40px;
left: 15px;
top: 74px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#homeassistant {
position: absolute;
width: 65px;
height: 65px;
left: 17px;
top: 114px;
border-radius: 10px;
}
#youtube {
position: absolute;
width: 65px;
height: 65px;
left: 92px;
top: 114px;
border-radius: 10px;
}
#clock {
position: absolute;
height: 65px;
left: 167px;
top: 114px;
border-radius: 10px;
}
#tasty {
position: absolute;
width: 65px;
height: 65px;
left: 242px;
top: 114px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}
#music {
position: absolute;
width: 444px;
height: 74px;
left: 339px;
top: 109px;
border-radius: 31px;
}
#homebutton {
position: absolute;
width: 54px;
height: 54px;
left: 736px;
top: 10px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.25);
}
#homesquare {
position: absolute;
width: 30px;
height: 30px;
left: 748px;
top: 22px;
border: 4px solid #FFFFFF;
box-sizing: border-box;
border-radius: 7px;
background: rgba(0,0,0,0);
}
i {
border: solid white;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 10px;
}
.left {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
#arrow {
position: absolute;
left: 10px;
top: 390px;
}
#assistant {
position: absolute
left: 0px;
top: 0px;
width: 800px;
height: 480px;
border:none
} | extension/styles.css | width:800px;
height:480px;
left: 0px;
top: 0px;
position:absolute;
border:none
}
#front {
z-index: 1;
width:800px;
height:480px;
left: 0px;
top: 0px;
position:absolute;
border:none
}
#menubar {
width: 291px;
height: 437px;
left: 15px;
top: 21px;
background: #EFEFEF;
box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
border-radius: 35px;
margin-right: 20px;
}
#menubarspacer {
width: 40px;
height: 437px;
left: 15px;
top: 21px;
background: rgba(0,0,0,0);
border-radius: 35px;
margin-right: 20px;
}
#h3 {
position: absolute;
left: 20px;
top: 35px;
font-family: Roboto;
font-weight: 700;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#iframe {
position: absolute;
width: 275px;
height: 357px;
left: 8px;
top: 74px;
overflow:hidden;
overflow-x: hidden;
scrollbar-width: none;
border-radius: 25px;
}
#iframe::-webkit-scrollbar {
display: none;
}
#shortcuts {
position: absolute;
width: 800px;
height: 200px;
left: 0px;
top: 0px;
background: #222222;
box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
border-radius: 0px 0px 35px 35px;
}
#name {
position: absolute;
width: 324px;
height: 50px;
left: 15px;
top: 11px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 34px;
line-height: 40px;
color: #808080;
}
#settings {
position: absolute;
width: 119px;
height: 40px;
left: 269px;
top: 15px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#ambient {
position: absolute;
width: 204px;
height: 40px;
left: 459px;
top: 16px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#apps {
position: absolute;
width: 86px;
height: 40px;
left: 15px;
top: 74px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 35px;
color: #808080;
}
#homeassistant {
position: absolute;
width: 65px;
height: 65px;
left: 17px;
top: 114px;
border-radius: 10px;
}
#youtube {
position: absolute;
width: 65px;
height: 65px;
left: 92px;
top: 114px;
border-radius: 10px;
}
#clock {
position: absolute;
height: 65px;
left: 167px;
top: 114px;
border-radius: 10px;
}
#tasty {
position: absolute;
width: 65px;
height: 65px;
left: 242px;
top: 114px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}
#music {
position: absolute;
width: 444px;
height: 74px;
left: 339px;
top: 109px;
border-radius: 31px;
}
#homebutton {
position: absolute;
width: 54px;
height: 54px;
left: 736px;
top: 10px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.25);
}
#homesquare {
position: absolute;
width: 30px;
height: 30px;
left: 748px;
top: 22px;
border: 4px solid #FFFFFF;
box-sizing: border-box;
border-radius: 7px;
background: rgba(0,0,0,0);
}
i {
border: solid white;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 10px;
}
.left {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
#arrow {
position: absolute;
left: 10px;
top: 390px;
}
#assistant {
position: absolute
left: 0px;
top: 0px;
width: 800px;
height: 480px;
border:none
} | 0.350866 | 0.076201 |
.jumbotron {
/* background-image: url("https://i.giphy.com/media/l0IyeG4i4L6f9Jk5O/giphy.webp"); */
height: 100vh;
padding: 0;
margin: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.game_content {
margin: auto;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.game_title_section {
margin: 0 auto;
padding-top: 2vh;
}
.game_intro {
margin: 2vh auto;
font-size: 1.75rem;
}
#guess_input {
margin: 3vh auto;
max-width: 300px;
text-align: center;
border: 3px solid #ced4da;
height: 60px;
font-size: 26px;
}
#guess_input::-webkit-inner-spin-button,
#guess_input::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
#submitButton {
width: 250px;
border: none;
}
.game_title {
font-size: 1rem;
margin: auto 10%;
}
#responsive_div {
font-size: 0.8rem;
margin: 2vh 10%;
}
.press_enter_p {
margin-top: -20px;
}
.game_spots {
position: relative;
margin: 5vh auto;
height: 20px;
width: 20px;
/* background-color: rgb(0, 153, 255);
border-radius: 50%;
border: solid 3px black; */
}
.game_spots img {
position: absolute;
max-height: 100px;
top: 0;
right: 0;
}
.game_won {
position: relative;
}
.game_won img {
margin-bottom: -35px;
margin-right: 5px;
position: absolute;
max-width: 100px;
bottom: 0;
right: 0;
z-index: 1;
}
/* FOR LATER JQUERY OPTIMIZATION */
/* .hot {
background-color: #ba0000;
}
.warm {
background-color: #e84700;
}
.luke_warm {
background-color: #e88800;
}
.cold {
background-color: #3bcde7;
}
.freezing {
background-color: #a3effd;
} */
#waves {
margin:0;
width: 100%;
height: 50px;
background-color: deepskyblue;
}
#restart_button {
display: block;
margin: 40px auto;
width: 250px;
}
#happy_pirates {
width: 100%;
}
/* BOAT ANIMATION */
@keyframes swing {
0%, 100% { transform: rotate(-10deg); }
20% {transform:scale(.95);}
50% { transform: rotate(10deg); }
80% {transform:scale(.95);}
}
.game_spots {
animation: swing 5s infinite ease-in-out;
}
#music {
position: absolute;
top: 10px;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
/* MEDIA QUERY SECTION */
/* .game_title */
@media (min-width: 320px) {
.game_title { font-size: 1.5rem; }
}
@media (min-width: 768px) {
.game_title { font-size: 2.0rem; }
}
@media (min-width: 992px) {
.game_title { font-size: 2.5rem; }
}
@media (min-width: 1200px) {
.game_title { font-size: 2.75rem; }
}
/* #responsive_div */
@media (min-width: 320px) {
#responsive_div { font-size: 0.75rem; }
}
@media (min-width: 768px) {
#responsive_div { font-size: 1.0rem; }
}
@media (min-width: 992px) {
#responsive_div { font-size: 1.5rem; }
}
@media (min-width: 1200px) {
#responsive_div { font-size: 1.75rem; }
} | JavaScript Library/Guess Number Game/style.css | .jumbotron {
/* background-image: url("https://i.giphy.com/media/l0IyeG4i4L6f9Jk5O/giphy.webp"); */
height: 100vh;
padding: 0;
margin: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.game_content {
margin: auto;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.game_title_section {
margin: 0 auto;
padding-top: 2vh;
}
.game_intro {
margin: 2vh auto;
font-size: 1.75rem;
}
#guess_input {
margin: 3vh auto;
max-width: 300px;
text-align: center;
border: 3px solid #ced4da;
height: 60px;
font-size: 26px;
}
#guess_input::-webkit-inner-spin-button,
#guess_input::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
#submitButton {
width: 250px;
border: none;
}
.game_title {
font-size: 1rem;
margin: auto 10%;
}
#responsive_div {
font-size: 0.8rem;
margin: 2vh 10%;
}
.press_enter_p {
margin-top: -20px;
}
.game_spots {
position: relative;
margin: 5vh auto;
height: 20px;
width: 20px;
/* background-color: rgb(0, 153, 255);
border-radius: 50%;
border: solid 3px black; */
}
.game_spots img {
position: absolute;
max-height: 100px;
top: 0;
right: 0;
}
.game_won {
position: relative;
}
.game_won img {
margin-bottom: -35px;
margin-right: 5px;
position: absolute;
max-width: 100px;
bottom: 0;
right: 0;
z-index: 1;
}
/* FOR LATER JQUERY OPTIMIZATION */
/* .hot {
background-color: #ba0000;
}
.warm {
background-color: #e84700;
}
.luke_warm {
background-color: #e88800;
}
.cold {
background-color: #3bcde7;
}
.freezing {
background-color: #a3effd;
} */
#waves {
margin:0;
width: 100%;
height: 50px;
background-color: deepskyblue;
}
#restart_button {
display: block;
margin: 40px auto;
width: 250px;
}
#happy_pirates {
width: 100%;
}
/* BOAT ANIMATION */
@keyframes swing {
0%, 100% { transform: rotate(-10deg); }
20% {transform:scale(.95);}
50% { transform: rotate(10deg); }
80% {transform:scale(.95);}
}
.game_spots {
animation: swing 5s infinite ease-in-out;
}
#music {
position: absolute;
top: 10px;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
/* MEDIA QUERY SECTION */
/* .game_title */
@media (min-width: 320px) {
.game_title { font-size: 1.5rem; }
}
@media (min-width: 768px) {
.game_title { font-size: 2.0rem; }
}
@media (min-width: 992px) {
.game_title { font-size: 2.5rem; }
}
@media (min-width: 1200px) {
.game_title { font-size: 2.75rem; }
}
/* #responsive_div */
@media (min-width: 320px) {
#responsive_div { font-size: 0.75rem; }
}
@media (min-width: 768px) {
#responsive_div { font-size: 1.0rem; }
}
@media (min-width: 992px) {
#responsive_div { font-size: 1.5rem; }
}
@media (min-width: 1200px) {
#responsive_div { font-size: 1.75rem; }
} | 0.392104 | 0.116462 |
header {
width: 100%;
height: 50px;
line-height: 50px;
background-color: #00acc1;
position: fixed;
top: 0;
}
header .header-wrapper{
position: relative;
display: block;
height: 100%;
}
/*header .header-wrapper .brand-logo{*/
/*position: absolute;*/
/*left: 50%;*/
/*transform: translateX(-50%);*/
/*text-decoration: none;*/
/*text-align: center;*/
/*color: rgba(255,255,255, .9);*/
/*font-size: 1.6rem;*/
/*display: inline-block;*/
/*white-space: nowrap;*/
/*font-family: '60sSTRIPE';*/
/*font-weight: lighter;*/
/*}*/
header .header-wrapper ul {
float: right;
margin: 0;
padding: 0;
height: 100%;
}
header .header-wrapper li {
list-style-type: none;
float: right;
padding: 0;
box-sizing: border-box;
}
header .header-wrapper li a{
font-size: 1rem;
display: inline-block;
text-decoration: none;
text-align: center;
vertical-align: middle;
width: 75px;
height: 50px;
line-height: 50px;
color: rgba(255,255,255,0.9);
font-family: 'Noto Sans Light',sans-serif;
font-weight: 100;
transition: all .5s ease 0s;
}
header .header-wrapper li a:hover{
background-color: rgba(0,0,0,0.1);
color: white;
}
.title{
width: 85%;
height: 50px;
line-height: 40px;
color: #4d4d4d;
font-size: 2rem;
margin: 100px auto 0px auto;
padding-bottom: 30px;
text-align: center;
border-bottom: 1px solid #00b8d4;
}
.board-list{
width: 100%;
height: 70%;
margin: 20px 0 20px 0px;
}
.board-list .board{
width: 280px;
height: 95px;
color: rgba(0,0,0,0.7);
float:left;
list-style: none;
line-height: 85px;
background-color: white;
margin: 0 0 30px 30px;
text-transform: none;
font-size: 1.1rem;
border-top: 10px solid #4dd0e1;
}
.add-board-btn{
bottom: 30px;
right: 30px;
float: right;
position: fixed;
}
.modal {
width: 400px;
height: 250px;
margin: 130px auto 0 auto;
}
.modal .close-moadl {
width: 25px;
height: 25px;
float: right;
background-image: url("/image/icon-x.png");
background-size: 15px 15px;
background-repeat: no-repeat;
margin-top: 10px;
cursor: pointer;
}
.modal .add-board-form {
width: 300px;
margin: 0 auto;
}
.modal .add-board-form h5{
text-align: center;
margin-top: 35px;
margin-bottom: 30px;
}
.modal .add-board-form .input-field{
width: 200px;
display: block;
margin: 0 auto;
}
.modal .add-board-form p {
display: none;
color: red;
margin: 0 auto;
text-align: center;
}
.modal .add-board-form .btn-area {
margin: 0 auto;
width: 200px;
}
.modal .add-board-form .btn-area .save {
width: 100px;
height: 35px;
line-height: 35px;
font-size: 1rem;
text-align: center;
text-transform: none;
padding: 0;
display: block;
margin: 10px auto 0 auto;
color: white;
}
.modal .add-board-form .input-field input:focus{
border-bottom: 1px solid #4dd0e1;
box-shadow: 0 1px 0 0 #4dd0e1;
} | src/main/resources/static/css/boards.css |
header {
width: 100%;
height: 50px;
line-height: 50px;
background-color: #00acc1;
position: fixed;
top: 0;
}
header .header-wrapper{
position: relative;
display: block;
height: 100%;
}
/*header .header-wrapper .brand-logo{*/
/*position: absolute;*/
/*left: 50%;*/
/*transform: translateX(-50%);*/
/*text-decoration: none;*/
/*text-align: center;*/
/*color: rgba(255,255,255, .9);*/
/*font-size: 1.6rem;*/
/*display: inline-block;*/
/*white-space: nowrap;*/
/*font-family: '60sSTRIPE';*/
/*font-weight: lighter;*/
/*}*/
header .header-wrapper ul {
float: right;
margin: 0;
padding: 0;
height: 100%;
}
header .header-wrapper li {
list-style-type: none;
float: right;
padding: 0;
box-sizing: border-box;
}
header .header-wrapper li a{
font-size: 1rem;
display: inline-block;
text-decoration: none;
text-align: center;
vertical-align: middle;
width: 75px;
height: 50px;
line-height: 50px;
color: rgba(255,255,255,0.9);
font-family: 'Noto Sans Light',sans-serif;
font-weight: 100;
transition: all .5s ease 0s;
}
header .header-wrapper li a:hover{
background-color: rgba(0,0,0,0.1);
color: white;
}
.title{
width: 85%;
height: 50px;
line-height: 40px;
color: #4d4d4d;
font-size: 2rem;
margin: 100px auto 0px auto;
padding-bottom: 30px;
text-align: center;
border-bottom: 1px solid #00b8d4;
}
.board-list{
width: 100%;
height: 70%;
margin: 20px 0 20px 0px;
}
.board-list .board{
width: 280px;
height: 95px;
color: rgba(0,0,0,0.7);
float:left;
list-style: none;
line-height: 85px;
background-color: white;
margin: 0 0 30px 30px;
text-transform: none;
font-size: 1.1rem;
border-top: 10px solid #4dd0e1;
}
.add-board-btn{
bottom: 30px;
right: 30px;
float: right;
position: fixed;
}
.modal {
width: 400px;
height: 250px;
margin: 130px auto 0 auto;
}
.modal .close-moadl {
width: 25px;
height: 25px;
float: right;
background-image: url("/image/icon-x.png");
background-size: 15px 15px;
background-repeat: no-repeat;
margin-top: 10px;
cursor: pointer;
}
.modal .add-board-form {
width: 300px;
margin: 0 auto;
}
.modal .add-board-form h5{
text-align: center;
margin-top: 35px;
margin-bottom: 30px;
}
.modal .add-board-form .input-field{
width: 200px;
display: block;
margin: 0 auto;
}
.modal .add-board-form p {
display: none;
color: red;
margin: 0 auto;
text-align: center;
}
.modal .add-board-form .btn-area {
margin: 0 auto;
width: 200px;
}
.modal .add-board-form .btn-area .save {
width: 100px;
height: 35px;
line-height: 35px;
font-size: 1rem;
text-align: center;
text-transform: none;
padding: 0;
display: block;
margin: 10px auto 0 auto;
color: white;
}
.modal .add-board-form .input-field input:focus{
border-bottom: 1px solid #4dd0e1;
box-shadow: 0 1px 0 0 #4dd0e1;
} | 0.399577 | 0.061961 |
html, body, app {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: auto;
background-image: linear-gradient(180deg, rgba(75,12,12,1) 0%, rgba(92,8,8,1) 70%, rgba(255,0,0,1) 100%);
}
app {
height: 100vh;
width: 100vw;
}
.inline {
display: flex !important;
align-items: center;
}
.center {
height: 100%;
width: 100%;
flex-grow: 1;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
video {
object-fit: contain;
width: auto !important;
height: 100vh !important;
overflow: hidden !important;
border: 6px solid red;
border-top: none;
border-bottom: none;
}
.grid-rooms {
grid-row: 1;
grid-column: 1;
height: auto;
}
.grid-controls {
grid-row: 2;
grid-column: 1;
height: auto;
}
.grid-video {
grid-column: 2;
grid-row: 1 / span 2;
height: auto;
align-content: center
}
input {
font-size: 2em;
padding: .5rem 2rem;
width: 9em;
border-style: none;
transition: .5s;
transition-timing-function: ease-in-out;
}
input:hover:not(:disabled) {
cursor: pointer;
box-shadow: 0 -6px red;
border-style: none;
}
input:focus {
outline: none;
}
button {
background-color: rgba(0,0,0,.7);
color: rgba(255,255,255,.7);
font-size: 2em;
padding: 10px 2rem;
border: none;
transition: .5s;
transition-timing-function: ease-in-out;
}
button:hover:not(:disabled) {
cursor: pointer;
box-shadow: 0 -6px red;
background-color: rgba(0,0,0,.9);
color: white;
}
button:disabled {
cursor: not-allowed;
}
#add-room {
width: 220px;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
} | Blazing.Twilio.Video/wwwroot/css/site.css | html, body, app {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: auto;
background-image: linear-gradient(180deg, rgba(75,12,12,1) 0%, rgba(92,8,8,1) 70%, rgba(255,0,0,1) 100%);
}
app {
height: 100vh;
width: 100vw;
}
.inline {
display: flex !important;
align-items: center;
}
.center {
height: 100%;
width: 100%;
flex-grow: 1;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
video {
object-fit: contain;
width: auto !important;
height: 100vh !important;
overflow: hidden !important;
border: 6px solid red;
border-top: none;
border-bottom: none;
}
.grid-rooms {
grid-row: 1;
grid-column: 1;
height: auto;
}
.grid-controls {
grid-row: 2;
grid-column: 1;
height: auto;
}
.grid-video {
grid-column: 2;
grid-row: 1 / span 2;
height: auto;
align-content: center
}
input {
font-size: 2em;
padding: .5rem 2rem;
width: 9em;
border-style: none;
transition: .5s;
transition-timing-function: ease-in-out;
}
input:hover:not(:disabled) {
cursor: pointer;
box-shadow: 0 -6px red;
border-style: none;
}
input:focus {
outline: none;
}
button {
background-color: rgba(0,0,0,.7);
color: rgba(255,255,255,.7);
font-size: 2em;
padding: 10px 2rem;
border: none;
transition: .5s;
transition-timing-function: ease-in-out;
}
button:hover:not(:disabled) {
cursor: pointer;
box-shadow: 0 -6px red;
background-color: rgba(0,0,0,.9);
color: white;
}
button:disabled {
cursor: not-allowed;
}
#add-room {
width: 220px;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
} | 0.719285 | 0.080033 |
body {
background-color: rgb(9, 49, 94);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: white;
}
h{
color: white;
font-size: 20pt;
font-weight: bold;
text-align: center;
}
.header {
padding-left: 40pt;
font-size: 20pt;
display: inline-block;
padding-bottom: 10pt;
font-weight:bold;
}
.header-flex {
padding-top: 7pt;
padding-right: 30pt;
float: right;
display: inline-block;
font-size: 12pt;
}
#picture{
background-color: rgb(248, 222, 226);
display: block;
position: relative;
}
#footerContainer {
background-color: rgb(248, 222, 226);
padding: 5%;
font-family: Arial, sans-serif;
color: rgb(77, 77, 74);
font-weight: bold;
font-size: 15pt;
text-align: center
}
#bottom {
background-color: white;
color: rgb(77, 77, 74);
padding-top: 30pt;
padding-bottom: 30pt;
text-align: center;
}
.link{
color: white;
font-size:13pt;
text-decoration:none;
}
a{
color: rgb(77, 77, 74);
text-decoration: none;
}
#ansel{
font-size: 10pt;
}
#boton{
display:block;
border-style: solid;
padding-top: 10pt;
padding-bottom: 10pt;
padding-left: 50pt;
padding-right: 50pt;
background-color: white;
border-color: rgb(9, 49, 94);
border-radius: 20pt;
margin-left: auto;
margin-right: auto;
}
#reviews{
color: rgb(201, 144, 23);
}
#comments{
font-size: 10pt;
font-style: italic;
padding-left: 160pt;
padding-right:160pt;
}
#rev {
display: block;
width: 50%;
height: 100pt;
margin-left: auto;
margin-right: auto;
border-style: sold;
border-color:rgb(201, 144, 23);
}
hr{
width: 50%;
margin-left:auto;
margin-right:auto;
}
.post{
display:block;
border-style: solid;
padding-top: 10pt;
padding-bottom: 10pt;
padding-left: 50pt;
padding-right: 50pt;
background-color: white;
border-color: rgb(9, 49, 94);
border-radius: 20pt;
margin-left: auto;
margin-right: auto;
}
.is-active{
color:rgb(9, 49, 94);
background-color: rgb(9, 49, 94);
} | client/css/landing.css | body {
background-color: rgb(9, 49, 94);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: white;
}
h{
color: white;
font-size: 20pt;
font-weight: bold;
text-align: center;
}
.header {
padding-left: 40pt;
font-size: 20pt;
display: inline-block;
padding-bottom: 10pt;
font-weight:bold;
}
.header-flex {
padding-top: 7pt;
padding-right: 30pt;
float: right;
display: inline-block;
font-size: 12pt;
}
#picture{
background-color: rgb(248, 222, 226);
display: block;
position: relative;
}
#footerContainer {
background-color: rgb(248, 222, 226);
padding: 5%;
font-family: Arial, sans-serif;
color: rgb(77, 77, 74);
font-weight: bold;
font-size: 15pt;
text-align: center
}
#bottom {
background-color: white;
color: rgb(77, 77, 74);
padding-top: 30pt;
padding-bottom: 30pt;
text-align: center;
}
.link{
color: white;
font-size:13pt;
text-decoration:none;
}
a{
color: rgb(77, 77, 74);
text-decoration: none;
}
#ansel{
font-size: 10pt;
}
#boton{
display:block;
border-style: solid;
padding-top: 10pt;
padding-bottom: 10pt;
padding-left: 50pt;
padding-right: 50pt;
background-color: white;
border-color: rgb(9, 49, 94);
border-radius: 20pt;
margin-left: auto;
margin-right: auto;
}
#reviews{
color: rgb(201, 144, 23);
}
#comments{
font-size: 10pt;
font-style: italic;
padding-left: 160pt;
padding-right:160pt;
}
#rev {
display: block;
width: 50%;
height: 100pt;
margin-left: auto;
margin-right: auto;
border-style: sold;
border-color:rgb(201, 144, 23);
}
hr{
width: 50%;
margin-left:auto;
margin-right:auto;
}
.post{
display:block;
border-style: solid;
padding-top: 10pt;
padding-bottom: 10pt;
padding-left: 50pt;
padding-right: 50pt;
background-color: white;
border-color: rgb(9, 49, 94);
border-radius: 20pt;
margin-left: auto;
margin-right: auto;
}
.is-active{
color:rgb(9, 49, 94);
background-color: rgb(9, 49, 94);
} | 0.578448 | 0.105441 |
@font-face {
font-family: 'SF Mono Regular';
font-style: normal;
font-weight: normal;
src: local('SF Mono Regular'), url('SFMonoRegular.woff') format('woff');
}
* {
font-family: 'SF Mono Regular', 'Roboto Mono', sans-serif;
}
html {
height: 100%;
}
body {
height: 100%;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
padding-top: 3rem;
color: #5a5a5a;
background-color: #f0f0f2;
}
.carousel-caption {
bottom: 3rem;
z-index: 10;
}
.carousel-item {
height: 32rem;
background-color: #777;
}
.carousel-item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 32rem;
}
.jumbotron {
margin-bottom: 4rem;
}
.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}
.marketing h2 {
font-weight: 400;
}
.marketing .col-lg-4 p {
margin-right: 0.75rem;
margin-left: 0.75rem;
}
.picture {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 10px;
}
.featurette-divider {
margin: 3rem 0;
}
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -0.05rem;
}
.experience .card-text,
.experience .card-text p {
color: #000 !important;
font-size: 0.75rem !important;
}
.dark .experience .text-muted {
color: rgba(255, 255, 255, 0.8) !important;
}
.dark .experience .card-text,
.dark .experience .card-text p {
color: #f8f8f2 !important;
}
.card .card-text ul {
margin-top: -1rem;
margin-bottom: 0rem;
}
.experience .m-2 .border,
.experience .col.border-right {
border-color: #2962ff !important;
}
.experience .m-2 .border.exp-fill {
background-color: #2962ff !important;
}
.footer {
bottom: 0;
padding: 2.5rem 0;
color: #999;
width: 100%;
text-align: center;
background-color: #f9f9f9;
border-top: 0.05rem solid #e5e5e5;
}
.footer p:last-child {
margin-bottom: 0;
}
.footer p a br {
display: none;
}
.scroll-to-top {
z-index: 1042;
right: 1rem;
bottom: 1rem;
display: none;
}
.scroll-to-top a {
width: 3.5rem;
height: 3.5rem;
background-color: rgba(33, 37, 41, 0.5);
line-height: 3.1rem;
}
.dark-mode {
background-color: rgb(15, 15, 15);
color: white;
}
.white-mode {
background-color: red;
color: white;
}
.dark-button-color {
color: #f8f9fa;
}
@media (min-width: 40em) {
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}
.featurette-heading {
font-size: 50px;
}
}
@media (min-width: 62em) {
.featurette-heading {
margin-top: 7rem;
}
} | css/styles.css | @font-face {
font-family: 'SF Mono Regular';
font-style: normal;
font-weight: normal;
src: local('SF Mono Regular'), url('SFMonoRegular.woff') format('woff');
}
* {
font-family: 'SF Mono Regular', 'Roboto Mono', sans-serif;
}
html {
height: 100%;
}
body {
height: 100%;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
padding-top: 3rem;
color: #5a5a5a;
background-color: #f0f0f2;
}
.carousel-caption {
bottom: 3rem;
z-index: 10;
}
.carousel-item {
height: 32rem;
background-color: #777;
}
.carousel-item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 32rem;
}
.jumbotron {
margin-bottom: 4rem;
}
.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}
.marketing h2 {
font-weight: 400;
}
.marketing .col-lg-4 p {
margin-right: 0.75rem;
margin-left: 0.75rem;
}
.picture {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 10px;
}
.featurette-divider {
margin: 3rem 0;
}
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -0.05rem;
}
.experience .card-text,
.experience .card-text p {
color: #000 !important;
font-size: 0.75rem !important;
}
.dark .experience .text-muted {
color: rgba(255, 255, 255, 0.8) !important;
}
.dark .experience .card-text,
.dark .experience .card-text p {
color: #f8f8f2 !important;
}
.card .card-text ul {
margin-top: -1rem;
margin-bottom: 0rem;
}
.experience .m-2 .border,
.experience .col.border-right {
border-color: #2962ff !important;
}
.experience .m-2 .border.exp-fill {
background-color: #2962ff !important;
}
.footer {
bottom: 0;
padding: 2.5rem 0;
color: #999;
width: 100%;
text-align: center;
background-color: #f9f9f9;
border-top: 0.05rem solid #e5e5e5;
}
.footer p:last-child {
margin-bottom: 0;
}
.footer p a br {
display: none;
}
.scroll-to-top {
z-index: 1042;
right: 1rem;
bottom: 1rem;
display: none;
}
.scroll-to-top a {
width: 3.5rem;
height: 3.5rem;
background-color: rgba(33, 37, 41, 0.5);
line-height: 3.1rem;
}
.dark-mode {
background-color: rgb(15, 15, 15);
color: white;
}
.white-mode {
background-color: red;
color: white;
}
.dark-button-color {
color: #f8f9fa;
}
@media (min-width: 40em) {
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}
.featurette-heading {
font-size: 50px;
}
}
@media (min-width: 62em) {
.featurette-heading {
margin-top: 7rem;
}
} | 0.450601 | 0.074568 |
body {
background-color: #efeff4;
}
#search {
margin-bottom: 0px;
}
#mobile_auth_waitting{ float:right;font-size:1em;display:none;margin-top:-40px;}
#mobile_auth{float:right;font-size:1em;margin-top:-40px}
.select_doc{float:right;font-size:1em;margin-top:-30px;}
.itime{text-align:center;border-radius:5px;background: #EFEFF4;color:#808080;margin:0 auto;width:15em;}
.mui-input-row input {margin-top:1px}
.bannerimg {
height: 100px;
width: 100%;
background-image: url(../images/muwu.jpg);
background-position: center center;
}
#loginin{line-height:5px}
.title {
margin: 20px 15px 10px;
color: #6d6d72;
font-size: 15px;
}
.li_list{height:8em;overflow: hidden;}
.oa-contact-cell.mui-table .mui-table-cell {
padding: 11px 0;
vertical-align: middle;
}
.oa-contact-cell {
position: relative;
margin: -11px 0;
}
.oa-contact-avatar {
width: 75px;
}
.oa-contact-avatar img {
border-radius: 50%;
}
.oa-contact-content {
width: 100%;
}
.oa-contact-name {
margin-right: 20px;
}
.oa-contact-name,
oa-contact-position {
float: left;
}
.avatar_name {
width: 40px;
line-height: 10px;
font-size: 0.8em;
word-break: break-all;
text-align: center;
}
.icon_avatar {
width: 50px;
height: 50px;
border-radius: 50%;
}
.icon_avatar2 {
width: 50px;
height: 50px;
border-radius: 5%;
overflow: hidden;
}
.oa-contact-avatarindex {
float: left;
margin-right: 10px;
list-style-type: none;
text-align: center;
}
.doclist {
width: 100%;
height: 100px;
overflow: hidden;
}
.ttlist {
text-align: center;
}
.doclist label {
margin-left: 1.0em;
}
.add-more {
text-align: center;
background: #e5e5e5;
line-height: 40px;
}
.no-more {
background: #e5e5e5;
text-align: center;
color: #ccc;
line-height: 40px;
}
* {
font-family: "microsoft yahei", sans-serif;
font-size: 12px;
}
p {
font-size: 12px;
}
header.mui-bar {
background: #007AFF;
}
header .mui-title,
header a {
color: #FFFFFF;
}
.mui-grid-view.mui-grid-9 .mui-media {
color: #3da9fe;
background: #FFFFFF;
padding: 5px;
}
.mui-grid-view.mui-grid-9 .mui-media .mui-icon {
font-size: 4.4em;
}
/*.mui-grid-view.mui-grid-9 .mui-table-view-cell>a:not(.mui-btn)*/
.mui-grid-view.iconfont-list .mui-table-view-cell>a:not(.mui-btn) {
padding: 5px 0;
}
.mui-fullscreen .mui-slider-item>a {
top: 0;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.list .mui-table-view-cell.mui-media .mui-media-object {
width: 100px;
height: 75px;
max-width: 100px;
}
#index_bar span{
font-size:2.4em;
}
.info {
color: #0062CC;
}
.info .mui-badge {
margin-top: 12px;
color: #FFFFFF;
}
.info .price {
color: #CF2D28;
float: right;
margin-top: 9px;
}
.info .price b {
font-size: 20px;
}
/**icon font*/
@font-face {
font-family: "iconfont";
src: url('../fonts/iconfont.ttf') format('truetype');
/* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}
.fa{float:right;margin-right:1em;color:#FF0000;}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
/*-moz-osx-font-smoothing: grayscale;*/
}
.icon-xianluxuanxiangqiaguonei:before {
content: "\e6b3";
}
.icon-xianluxuanxiangqiaguoji:before {
content: "\e6c9";
}
.icon-gongnengyeshequhaoyouhudong:before {
content: "\e6b3";
}
.icon-xianluxuanxiangqiaziyouxing:before {
content: "\e624";
}
.icon-jipiao:before {
content: "\e69a";
}
.icon-jiudian:before {
content: "\e69f";
}
.icon-near:before {
content: "\e602";
}
.icon-fujinyingyuan:before {
content: "\e618";
}
.icon-xianluxuanxiangqiatejia:before {
content: "\e61e";
}
.icon-icon:before {
content: "\e601";
}
.icon-tuijianxiangao:before {
content: "\e612";
}
.icon-fenleituijian:before {
content: "\e60d";
}
.icon-tuijian02:before {
content: "\e61c";
}
.icon-zhuce:before {
content: "\e60e";
}
.icon-dengluqq:before {
content: "\e602";
}
.icon-dengluweixin:before {
content: "\e601";
}
.icon-shoujizhuce:before {
content: "\e607";
}
.icon-youxiangzhuce:before {
content: "\e609";
}
.icon-dingjiatianxiejiage:before {
content: "\e604";
}
.icon-dengluweibo:before {
content: "\e600";
}
.icon-gouwuche:before {
content: "\3475";
}
.icon-gouwuche1:before {
content: "\e6c9";
}
.icon-1:before {
content: "\e60a";
}
.icon-xingcheng:before {
content: "\e624";
}
.icon-xitongtixing:before {
content: "\e6c7";
}
.icon-icon4:before {
content: "\e604";
}
.icon-remenchanpin:before {
content: "\e72d";
}
.user-info {
text-align: left;
padding: 20px 10px 10px;
text-indent: 6px;
}
.user-info img {
width: 45px;
height: 45px;
border-radius: 50%;
overflow: hidden;
}
a.mui-navigate-right.mui-ellipsis {
color: #CCCCCC;
}
span.left-desc {
padding-left: 5px;
color: #666;
}
#description {
height: 30px;
}
.mui-bar .tit-sort {
left: 0;
right: 0;
margin-top: 40px;
background: #1D85D0;
}
.tit-sort .mui-grid-view.mui-grid-9 .mui-table-view-cell>a:not(.mui-btn) {
padding: 0;
}
li.mui-table-view-cell.mui-media.mui-col-xs-4.active {
border-bottom: 2px solid #3DA9FE;
}
span.detail-title {
font-size: 18px;
color: #29A4E4;
}
.plan-list li {
padding: 10px 15px;
}
#popover {
width: 90%;
top: 5%;
left: 5%;
}
.submit-order .mui-input-row {
margin-bottom: 5px;
;
}
.mui-input-row label {
font-size: 1.2em;
}
.mui-bar-community {
bottom: 0;
display: table;
width: 100%;
height: 50px;
padding: 0;
table-layout: fixed;
border-top: 0;
border-bottom: 0;
-webkit-touch-callout: none;
}
.reply-list {
padding: 10px;
background: #fff;
}
.reply-list .reply-item {
border-bottom: 1px solid #dedede;
display: inline-block;
color: #8F8F94;
width: 100%;
}
.reply-block {
border: 1px solid #DDD;
background: #EEE;
padding: 3px;
margin: 1px;
}
.reply-content {
height: 70%;
background: #DDD;
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
}
.reply-content-tit {
text-align: center;
width: 80%;
position: absolute;
font-size: 14px;
color: #000;
}
.font-face {
/*text-align: center;*/
}
.font-face span {
border: 1px solid #ccc;
padding: 4px;
}
.reply-user-info {
margin-bottom: 10px;
}
h5.show-content {
text-align: center;
background: #007AFF;
padding: 10px;
color: #FFF;
margin-bottom: 0;
}
.content-detail {
/*display: none;*/
background: #FFF;
padding: 10px;
}
.content-detail img {
max-width: 100%;
}
.ditem {
list-style-type: none;
clear: both;
line-height: 10px;
}
#userinfo {
text-align: center;
background: #dedede;
padding: 10px;
color: #FFF;
margin-bottom: 0;
}
.media_img {
width: 60px;
height: 60px;
}
.mui-control-content {
background-color: white;
min-height: 215px;
}
.mui-control-content .mui-loading {
margin-top: 50px;
height: 100px;
}
#hotdoclist {
overflow: hidden;
width: 100%;
margin-left: 10px;
}
#hotdoclist li {
float: left;
list-style-type: none;
text-align: center;
}
.mui-slider-cell {
border-bottom: 1px #C0C0C0 dotted;
}
.notime {
text-align: center;
width: 50%;
background-color: #CCCCCC;
padding: 2px;
border-radius: 5px;
color: #ffffff;
margin: 0 auto;
margin-bottom: 10px;
}
.sms_ask {
text-align: center;
float: right;
margin-right: 1em;
}
.container {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
.content-reply-box {
width: 100%;
overflow: hidden;
}
.content-reply-box li {
width: 100%;
overflow: hidden;
margin-bottom: 2em;
}
.content-reply-box li.odd .user {
float: left;
margin-right: 10px;
}
.content-reply-box li.even .user {
float: right;
margin-left: 10px;
}
.content-reply-box li.odd .reply-content-box {
margin-left: 60px;
}
.content-reply-box li.even .reply-content-box {
margin-right: 60px;
}
.user-name {
color: #999;
display: block;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
overflow: hidden;
text-align: center;
}
.reply-time {
color: #e1912d;
font-size: .85em;
display: inline-block;
width: 100%;
}
.content-reply-box li.odd .reply-time {
text-align: left;
}
.content-reply-box li.even .reply-time {
text-align: right;
}
.reply-content {
border: 1px solid #fcfcfc;
padding: .6em;
background-color: #fcfcfc;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.c_odd {
'background-color: #DBF0FF;
color: #000000;
border: 1px solid #DBF0FF;
padding: .6em;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.m_odd {
float: left;
margin-right: 1em;
text-align: center;
}
.m_even {
float: right;
margin-left: 1em;
text-align: center;
}
.t_even {
float: right;
width: 75%;
background-color: #DBF0FF;
border: 1px solid #DBF0FF;
}
.t_odd {
float: left;
width: 75%;
padding: .6em;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.content-reply-box li.odd .arrow {
width: 0;
height: 0;
line-height: 0;
font-size: 0;
border-color: transparent #fff transparent transparent;
border-width: 6px;
border-style: dashed solid dashed dashed;
display: block;
position: absolute;
top: 8px;
left: -12px;
z-index: 999;
}
.content-reply-box li.even .arrow {
width: 0;
height: 0;
line-height: 0;
font-size: 0;
border-color: transparent transparent transparent #fff;
border-width: 6px;
border-style: dashed dashed dashed solid;
display: block;
position: absolute;
top: 8px;
right: -12px;
z-index: 999;
}
.operating {
border-top: 1px solid #ccc;
}
.operating li {
border-right: 1px solid #ccc;
}
.operating a {
padding: 0.85em 0;
display: inline-block;
width: 100%;
}
.pr {
position: relative;
}
.oh {
overflow: hidden;
}
.mg10 {
margin: 10px 0;
list-style-type: none;
}
.linear-g {
background: -moz-linear-gradient(top, #fdfdfd, #f6f6f6);
background: -webkit-gradient(linear, top, from(#fdfdfd), to(#f6f6f6));
background: -webkit-linear-gradient(top, #fdfdfd, #f6f6f6);
background: -o-linear-gradient(top, #fdfdfd, #f6f6f6);
box-shadow: 0 0 5px #ccc;
}
.fav_btn {
color: red;
font-size: 12px;
float: right;
line-height: 20px;
width: 80px;
text-align: center;
color: #FFFFFF;
margin-top: 10px;
margin-right: 10px;
border-radius: 5px;
background-color: #F14E41;
'display:none;
}
.fav_channel {
background-color: #C7C7CC;
}
.bgimage {
background-image: url(../images/yuantiao.jpg);
background-color: #fff;
list-style: outside none none;
margin-bottom: 0;
margin-top: 0;
padding-left: 0;
position: relative;
height: 110px;
}
.uinfo img {
border-radius: 120px;
margin: 5px;
height: 90px;
width: 90px;
}
.uinfo h4 {
padding-top: 10px;
}
.ubox {
width: 50px;
line-height: 50px;
height: 50px;
border: 1px dashed;
text-align: center;
color: #CCCCCC;
float: left;
margin: 5px;
}
.ubox_img {
width: 40px;
height: 40px;
border: 1px dashed;
text-align: center;
color: #CCCCCC;
}
.dlist {
list-style: none;
}
.oa-contact {
color: red;
}
.oa-time {
float: right;
}
.oauth-area {
position: absolute;
bottom: 20px;
left: 0px;
text-align: center;
width: 100%;
padding: 0px;
margin: 0px;
}
.oauth-area .oauth-btn {
display: inline-block;
width: 50px;
height: 50px;
background-size: 30px 30px;
background-position: center center;
background-repeat: no-repeat;
margin: 0px 20px;
/*-webkit-filter: grayscale(100%); */
border: solid 1px #ddd;
border-radius: 25px;
}
.oauth-area .oauth-btn:active {
border: solid 1px #aaa;
} | zx/css/wap.css | body {
background-color: #efeff4;
}
#search {
margin-bottom: 0px;
}
#mobile_auth_waitting{ float:right;font-size:1em;display:none;margin-top:-40px;}
#mobile_auth{float:right;font-size:1em;margin-top:-40px}
.select_doc{float:right;font-size:1em;margin-top:-30px;}
.itime{text-align:center;border-radius:5px;background: #EFEFF4;color:#808080;margin:0 auto;width:15em;}
.mui-input-row input {margin-top:1px}
.bannerimg {
height: 100px;
width: 100%;
background-image: url(../images/muwu.jpg);
background-position: center center;
}
#loginin{line-height:5px}
.title {
margin: 20px 15px 10px;
color: #6d6d72;
font-size: 15px;
}
.li_list{height:8em;overflow: hidden;}
.oa-contact-cell.mui-table .mui-table-cell {
padding: 11px 0;
vertical-align: middle;
}
.oa-contact-cell {
position: relative;
margin: -11px 0;
}
.oa-contact-avatar {
width: 75px;
}
.oa-contact-avatar img {
border-radius: 50%;
}
.oa-contact-content {
width: 100%;
}
.oa-contact-name {
margin-right: 20px;
}
.oa-contact-name,
oa-contact-position {
float: left;
}
.avatar_name {
width: 40px;
line-height: 10px;
font-size: 0.8em;
word-break: break-all;
text-align: center;
}
.icon_avatar {
width: 50px;
height: 50px;
border-radius: 50%;
}
.icon_avatar2 {
width: 50px;
height: 50px;
border-radius: 5%;
overflow: hidden;
}
.oa-contact-avatarindex {
float: left;
margin-right: 10px;
list-style-type: none;
text-align: center;
}
.doclist {
width: 100%;
height: 100px;
overflow: hidden;
}
.ttlist {
text-align: center;
}
.doclist label {
margin-left: 1.0em;
}
.add-more {
text-align: center;
background: #e5e5e5;
line-height: 40px;
}
.no-more {
background: #e5e5e5;
text-align: center;
color: #ccc;
line-height: 40px;
}
* {
font-family: "microsoft yahei", sans-serif;
font-size: 12px;
}
p {
font-size: 12px;
}
header.mui-bar {
background: #007AFF;
}
header .mui-title,
header a {
color: #FFFFFF;
}
.mui-grid-view.mui-grid-9 .mui-media {
color: #3da9fe;
background: #FFFFFF;
padding: 5px;
}
.mui-grid-view.mui-grid-9 .mui-media .mui-icon {
font-size: 4.4em;
}
/*.mui-grid-view.mui-grid-9 .mui-table-view-cell>a:not(.mui-btn)*/
.mui-grid-view.iconfont-list .mui-table-view-cell>a:not(.mui-btn) {
padding: 5px 0;
}
.mui-fullscreen .mui-slider-item>a {
top: 0;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.list .mui-table-view-cell.mui-media .mui-media-object {
width: 100px;
height: 75px;
max-width: 100px;
}
#index_bar span{
font-size:2.4em;
}
.info {
color: #0062CC;
}
.info .mui-badge {
margin-top: 12px;
color: #FFFFFF;
}
.info .price {
color: #CF2D28;
float: right;
margin-top: 9px;
}
.info .price b {
font-size: 20px;
}
/**icon font*/
@font-face {
font-family: "iconfont";
src: url('../fonts/iconfont.ttf') format('truetype');
/* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}
.fa{float:right;margin-right:1em;color:#FF0000;}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
/*-moz-osx-font-smoothing: grayscale;*/
}
.icon-xianluxuanxiangqiaguonei:before {
content: "\e6b3";
}
.icon-xianluxuanxiangqiaguoji:before {
content: "\e6c9";
}
.icon-gongnengyeshequhaoyouhudong:before {
content: "\e6b3";
}
.icon-xianluxuanxiangqiaziyouxing:before {
content: "\e624";
}
.icon-jipiao:before {
content: "\e69a";
}
.icon-jiudian:before {
content: "\e69f";
}
.icon-near:before {
content: "\e602";
}
.icon-fujinyingyuan:before {
content: "\e618";
}
.icon-xianluxuanxiangqiatejia:before {
content: "\e61e";
}
.icon-icon:before {
content: "\e601";
}
.icon-tuijianxiangao:before {
content: "\e612";
}
.icon-fenleituijian:before {
content: "\e60d";
}
.icon-tuijian02:before {
content: "\e61c";
}
.icon-zhuce:before {
content: "\e60e";
}
.icon-dengluqq:before {
content: "\e602";
}
.icon-dengluweixin:before {
content: "\e601";
}
.icon-shoujizhuce:before {
content: "\e607";
}
.icon-youxiangzhuce:before {
content: "\e609";
}
.icon-dingjiatianxiejiage:before {
content: "\e604";
}
.icon-dengluweibo:before {
content: "\e600";
}
.icon-gouwuche:before {
content: "\3475";
}
.icon-gouwuche1:before {
content: "\e6c9";
}
.icon-1:before {
content: "\e60a";
}
.icon-xingcheng:before {
content: "\e624";
}
.icon-xitongtixing:before {
content: "\e6c7";
}
.icon-icon4:before {
content: "\e604";
}
.icon-remenchanpin:before {
content: "\e72d";
}
.user-info {
text-align: left;
padding: 20px 10px 10px;
text-indent: 6px;
}
.user-info img {
width: 45px;
height: 45px;
border-radius: 50%;
overflow: hidden;
}
a.mui-navigate-right.mui-ellipsis {
color: #CCCCCC;
}
span.left-desc {
padding-left: 5px;
color: #666;
}
#description {
height: 30px;
}
.mui-bar .tit-sort {
left: 0;
right: 0;
margin-top: 40px;
background: #1D85D0;
}
.tit-sort .mui-grid-view.mui-grid-9 .mui-table-view-cell>a:not(.mui-btn) {
padding: 0;
}
li.mui-table-view-cell.mui-media.mui-col-xs-4.active {
border-bottom: 2px solid #3DA9FE;
}
span.detail-title {
font-size: 18px;
color: #29A4E4;
}
.plan-list li {
padding: 10px 15px;
}
#popover {
width: 90%;
top: 5%;
left: 5%;
}
.submit-order .mui-input-row {
margin-bottom: 5px;
;
}
.mui-input-row label {
font-size: 1.2em;
}
.mui-bar-community {
bottom: 0;
display: table;
width: 100%;
height: 50px;
padding: 0;
table-layout: fixed;
border-top: 0;
border-bottom: 0;
-webkit-touch-callout: none;
}
.reply-list {
padding: 10px;
background: #fff;
}
.reply-list .reply-item {
border-bottom: 1px solid #dedede;
display: inline-block;
color: #8F8F94;
width: 100%;
}
.reply-block {
border: 1px solid #DDD;
background: #EEE;
padding: 3px;
margin: 1px;
}
.reply-content {
height: 70%;
background: #DDD;
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
}
.reply-content-tit {
text-align: center;
width: 80%;
position: absolute;
font-size: 14px;
color: #000;
}
.font-face {
/*text-align: center;*/
}
.font-face span {
border: 1px solid #ccc;
padding: 4px;
}
.reply-user-info {
margin-bottom: 10px;
}
h5.show-content {
text-align: center;
background: #007AFF;
padding: 10px;
color: #FFF;
margin-bottom: 0;
}
.content-detail {
/*display: none;*/
background: #FFF;
padding: 10px;
}
.content-detail img {
max-width: 100%;
}
.ditem {
list-style-type: none;
clear: both;
line-height: 10px;
}
#userinfo {
text-align: center;
background: #dedede;
padding: 10px;
color: #FFF;
margin-bottom: 0;
}
.media_img {
width: 60px;
height: 60px;
}
.mui-control-content {
background-color: white;
min-height: 215px;
}
.mui-control-content .mui-loading {
margin-top: 50px;
height: 100px;
}
#hotdoclist {
overflow: hidden;
width: 100%;
margin-left: 10px;
}
#hotdoclist li {
float: left;
list-style-type: none;
text-align: center;
}
.mui-slider-cell {
border-bottom: 1px #C0C0C0 dotted;
}
.notime {
text-align: center;
width: 50%;
background-color: #CCCCCC;
padding: 2px;
border-radius: 5px;
color: #ffffff;
margin: 0 auto;
margin-bottom: 10px;
}
.sms_ask {
text-align: center;
float: right;
margin-right: 1em;
}
.container {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
.content-reply-box {
width: 100%;
overflow: hidden;
}
.content-reply-box li {
width: 100%;
overflow: hidden;
margin-bottom: 2em;
}
.content-reply-box li.odd .user {
float: left;
margin-right: 10px;
}
.content-reply-box li.even .user {
float: right;
margin-left: 10px;
}
.content-reply-box li.odd .reply-content-box {
margin-left: 60px;
}
.content-reply-box li.even .reply-content-box {
margin-right: 60px;
}
.user-name {
color: #999;
display: block;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
overflow: hidden;
text-align: center;
}
.reply-time {
color: #e1912d;
font-size: .85em;
display: inline-block;
width: 100%;
}
.content-reply-box li.odd .reply-time {
text-align: left;
}
.content-reply-box li.even .reply-time {
text-align: right;
}
.reply-content {
border: 1px solid #fcfcfc;
padding: .6em;
background-color: #fcfcfc;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.c_odd {
'background-color: #DBF0FF;
color: #000000;
border: 1px solid #DBF0FF;
padding: .6em;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.m_odd {
float: left;
margin-right: 1em;
text-align: center;
}
.m_even {
float: right;
margin-left: 1em;
text-align: center;
}
.t_even {
float: right;
width: 75%;
background-color: #DBF0FF;
border: 1px solid #DBF0FF;
}
.t_odd {
float: left;
width: 75%;
padding: .6em;
border-radius: 4px;
box-shadow: 0 0 5px #ccc;
}
.content-reply-box li.odd .arrow {
width: 0;
height: 0;
line-height: 0;
font-size: 0;
border-color: transparent #fff transparent transparent;
border-width: 6px;
border-style: dashed solid dashed dashed;
display: block;
position: absolute;
top: 8px;
left: -12px;
z-index: 999;
}
.content-reply-box li.even .arrow {
width: 0;
height: 0;
line-height: 0;
font-size: 0;
border-color: transparent transparent transparent #fff;
border-width: 6px;
border-style: dashed dashed dashed solid;
display: block;
position: absolute;
top: 8px;
right: -12px;
z-index: 999;
}
.operating {
border-top: 1px solid #ccc;
}
.operating li {
border-right: 1px solid #ccc;
}
.operating a {
padding: 0.85em 0;
display: inline-block;
width: 100%;
}
.pr {
position: relative;
}
.oh {
overflow: hidden;
}
.mg10 {
margin: 10px 0;
list-style-type: none;
}
.linear-g {
background: -moz-linear-gradient(top, #fdfdfd, #f6f6f6);
background: -webkit-gradient(linear, top, from(#fdfdfd), to(#f6f6f6));
background: -webkit-linear-gradient(top, #fdfdfd, #f6f6f6);
background: -o-linear-gradient(top, #fdfdfd, #f6f6f6);
box-shadow: 0 0 5px #ccc;
}
.fav_btn {
color: red;
font-size: 12px;
float: right;
line-height: 20px;
width: 80px;
text-align: center;
color: #FFFFFF;
margin-top: 10px;
margin-right: 10px;
border-radius: 5px;
background-color: #F14E41;
'display:none;
}
.fav_channel {
background-color: #C7C7CC;
}
.bgimage {
background-image: url(../images/yuantiao.jpg);
background-color: #fff;
list-style: outside none none;
margin-bottom: 0;
margin-top: 0;
padding-left: 0;
position: relative;
height: 110px;
}
.uinfo img {
border-radius: 120px;
margin: 5px;
height: 90px;
width: 90px;
}
.uinfo h4 {
padding-top: 10px;
}
.ubox {
width: 50px;
line-height: 50px;
height: 50px;
border: 1px dashed;
text-align: center;
color: #CCCCCC;
float: left;
margin: 5px;
}
.ubox_img {
width: 40px;
height: 40px;
border: 1px dashed;
text-align: center;
color: #CCCCCC;
}
.dlist {
list-style: none;
}
.oa-contact {
color: red;
}
.oa-time {
float: right;
}
.oauth-area {
position: absolute;
bottom: 20px;
left: 0px;
text-align: center;
width: 100%;
padding: 0px;
margin: 0px;
}
.oauth-area .oauth-btn {
display: inline-block;
width: 50px;
height: 50px;
background-size: 30px 30px;
background-position: center center;
background-repeat: no-repeat;
margin: 0px 20px;
/*-webkit-filter: grayscale(100%); */
border: solid 1px #ddd;
border-radius: 25px;
}
.oauth-area .oauth-btn:active {
border: solid 1px #aaa;
} | 0.284974 | 0.07117 |
body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.5;
color: #525f7f;
text-align: left;
background-color: #1e1e2f;
}
.navbarpople {
background-color: #FE6048;
}
.container-color {
background-color: #27293D;
}
h1 {
color: aliceblue;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
font-family: inherit;
font-weight: 400;
line-height: 1.2;
}
.row > * {
padding-bottom: 20px;
}
.btn-primary {
color: #ffffff;
background-color: transparent;
border-color: #e14eca;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.btn-primary:hover {
color: #ffffff;
background-color: #db2dc0;
border-color: #d725bb;
}
.btn-primary:focus,
.btn-primary.focus {
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(230, 105, 210, 0.5);
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
color: #ffffff;
background-color: #d725bb;
border-color: #cd23b2;
}
/* INCIO DOS CARDS*/
.card {
background-color: #32325d;
color: #ffffff;
height: 100%;
}
.card-header {
padding: 0.25rem 0.5rem;
margin-bottom: 0;
color: #ffffff;
border-bottom: 0.0625rem solid rgba(34, 42, 66, 0.05);
}
.card .card-header {
padding: 15px 15px 0;
border: 0;
}
.card .card-header .card-title {
text-transform: inherit;
font-weight: 200;
margin-right: 5px;
margin-bottom: 10px;
}
.card .card-header .card-category {
font-size: 0.75rem;
text-transform: capitalize;
font-weight: 400;
color: #ffffff;
margin-bottom: 5px;
}
.form-lanc {
background-color: #32325d;
border-radius: 10px;
}
.form-lanc label {
color: #ffffff;
font-size: 0.75rem;
}
.form-lanc input{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
font-size: 0.85rem;
}
.form-lanc textarea{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
}
.form-lanc select{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
font-size: 0.85rem;
}
.form-lanc select:hover{
color: #0e0d0db2;
}
.form-lanc .card-header .title {
font-size: 1.15rem;
}
@media (min-width: 770px) {
.footer {
position: absolute;
bottom: 0;
width: 100%;
}
.card-header .alert{
width: 50%;
}
}
.form-signin {
width: 100%;
max-width: 430px;
padding: 15px;
margin: auto;
margin-top: 40px;
background-color: #32325d;
border-radius: 10px;
}
.form-signin .checkbox {
font-weight: 400;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: 10px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.form-signin input[type="text"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.form-signin input {
background-color: transparent;
border-color: #1f8ef1;
color: #ffffff;
}
.form-signin label{
color: #ffffff;
}
.form-signin input:hover{
color: #ffffff;
background-color: #32325d;
}
.form-signin input:focus{
color: #ffffff;
background-color: #32325d;
}
.form-signin input:active{
color: #ffffff;
background-color: #32325d;
} | public/assets/css/style.css | body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.5;
color: #525f7f;
text-align: left;
background-color: #1e1e2f;
}
.navbarpople {
background-color: #FE6048;
}
.container-color {
background-color: #27293D;
}
h1 {
color: aliceblue;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
font-family: inherit;
font-weight: 400;
line-height: 1.2;
}
.row > * {
padding-bottom: 20px;
}
.btn-primary {
color: #ffffff;
background-color: transparent;
border-color: #e14eca;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.btn-primary:hover {
color: #ffffff;
background-color: #db2dc0;
border-color: #d725bb;
}
.btn-primary:focus,
.btn-primary.focus {
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(230, 105, 210, 0.5);
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
color: #ffffff;
background-color: #d725bb;
border-color: #cd23b2;
}
/* INCIO DOS CARDS*/
.card {
background-color: #32325d;
color: #ffffff;
height: 100%;
}
.card-header {
padding: 0.25rem 0.5rem;
margin-bottom: 0;
color: #ffffff;
border-bottom: 0.0625rem solid rgba(34, 42, 66, 0.05);
}
.card .card-header {
padding: 15px 15px 0;
border: 0;
}
.card .card-header .card-title {
text-transform: inherit;
font-weight: 200;
margin-right: 5px;
margin-bottom: 10px;
}
.card .card-header .card-category {
font-size: 0.75rem;
text-transform: capitalize;
font-weight: 400;
color: #ffffff;
margin-bottom: 5px;
}
.form-lanc {
background-color: #32325d;
border-radius: 10px;
}
.form-lanc label {
color: #ffffff;
font-size: 0.75rem;
}
.form-lanc input{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
font-size: 0.85rem;
}
.form-lanc textarea{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
}
.form-lanc select{
color: #dbd7d7b2;
background-color: transparent;
border-color: #1f8ef1;
font-size: 0.85rem;
}
.form-lanc select:hover{
color: #0e0d0db2;
}
.form-lanc .card-header .title {
font-size: 1.15rem;
}
@media (min-width: 770px) {
.footer {
position: absolute;
bottom: 0;
width: 100%;
}
.card-header .alert{
width: 50%;
}
}
.form-signin {
width: 100%;
max-width: 430px;
padding: 15px;
margin: auto;
margin-top: 40px;
background-color: #32325d;
border-radius: 10px;
}
.form-signin .checkbox {
font-weight: 400;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: 10px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.form-signin input[type="text"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.form-signin input {
background-color: transparent;
border-color: #1f8ef1;
color: #ffffff;
}
.form-signin label{
color: #ffffff;
}
.form-signin input:hover{
color: #ffffff;
background-color: #32325d;
}
.form-signin input:focus{
color: #ffffff;
background-color: #32325d;
}
.form-signin input:active{
color: #ffffff;
background-color: #32325d;
} | 0.431824 | 0.096025 |
.bgAccueil {
background-image: url(img/fondAccueil.jpg);
background-size: 100% 100vh;
background-size: cover;
}
.accueil {
height: 100vh;
margin-left: 65%;
padding: 82px 0;
}
.accueil button {
border: solid 2px #661600;
color: #661600;
background: #D9AC71;
/*margin : 18% 25%;*/
margin: 2%;
padding: 8px 24px;
font-size: 1.2rem;
transition: background-color 0.5s ease-out;
}
.accueil button:hover {
background: #661600;
color: #ccab74;
}
div .group-btn {
text-align: center;
}
.flexAccueil {
display: flex;
justify-content: flex-start;
align-items: center;
}
.flexAccueil img {
width: 90px;
height: auto;
margin-right: 30px;
}
.accroche {
border-left: solid #661600;
margin: 50px 30px 30px 30px;
padding-left: 30px;
width: 80%;
}
h1 {
font-family: 'Nothing You Could Do', cursive;
font-size: 3rem;
}
.inscriptionAccueil {
margin-left: 38%;
}
/* PAGE CONNEXION */
.fond {
background-image: url(img/fond.jpg);
background-size: 100% 100vh;
background-size: cover;
height: 100vh;
padding-top: 75px;
}
.cadre {
background-color: rgba( 204, 171, 116, 0.5);
border: solid 2px #661600;
padding: 30px;
width: 60%;
margin: 0% auto;
}
.btnConnexion {
background: #661600;
color: #ccab74;
padding: 8px 75px;
font-size: 1.2rem;
margin: 25px 0 20px 0;
}
.btnConnexion:hover {
background: #ccab74;
color: #661600;
border: solid 2px #661600;
}
.flexConnexion {
display: flex;
justify-content: center;
align-items: center;
}
.flexConnexion img {
width: 90px;
height: auto;
margin-right: 30px;
}
.flexForm {
display: flex;
flex-wrap: wrap;
margin: 30px 0;
}
.flexForm label {
width: 100%;
}
.centerForm {
width: 50%;
margin: 0 auto;
}
.rejoindre {
color: #661600;
text-decoration: underline;
}
/* -------------------------------------------- */
.bg-dark {
background-color: #661600!important;
}
.bg-light {
background-color: #ccab74!important;
}
.ft-c-white {
color: #f1f0ee;
}
.ft-c-light {
color: #ccab74;
}
hr {
border-top: 1px solid #ccab74
}
.side-menu {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 1000;
}
@media (min-width:768px) {
.side-menu {
width: 20%;
}
}
.logo {
height: 15%;
background-image: url(../../img/logo.png);
background-size: contain;
background-repeat: no-repeat;
background-position-x: center;
margin-top: 30px;
}
.side-nav {
position: absolute;
bottom: 0;
width: 100%;
height: calc(85% - 60px);
text-align: center;
}
.side-nav>ul>li {
font-size: large;
}
.content {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100vh;
z-index: 100;
}
@media (min-width:768px) {
.side-menu {
width: 20%;
}
.content {
width: 80%;
}
}
.welcome {
position: absolute;
width: 100%;
height: 10vh;
font-size: x-large;
padding: 20px;
font-weight: 600;
}
.content>.container {
position: absolute;
top: 12vh;
}
.card-custom>.card-body {
background-color: #2f3640;
position: absolute;
bottom: 0;
height: 60px;
width: 92%;
overflow: hidden;
transition: height 0.2s;
}
.card-custom>.card-body:hover {
height: 100%;
transform: translate(0px, 0px);
overflow: auto;
transition: height 1s;
} | Maquette/StoryHeroes/Extensions/css/custom.css |
.bgAccueil {
background-image: url(img/fondAccueil.jpg);
background-size: 100% 100vh;
background-size: cover;
}
.accueil {
height: 100vh;
margin-left: 65%;
padding: 82px 0;
}
.accueil button {
border: solid 2px #661600;
color: #661600;
background: #D9AC71;
/*margin : 18% 25%;*/
margin: 2%;
padding: 8px 24px;
font-size: 1.2rem;
transition: background-color 0.5s ease-out;
}
.accueil button:hover {
background: #661600;
color: #ccab74;
}
div .group-btn {
text-align: center;
}
.flexAccueil {
display: flex;
justify-content: flex-start;
align-items: center;
}
.flexAccueil img {
width: 90px;
height: auto;
margin-right: 30px;
}
.accroche {
border-left: solid #661600;
margin: 50px 30px 30px 30px;
padding-left: 30px;
width: 80%;
}
h1 {
font-family: 'Nothing You Could Do', cursive;
font-size: 3rem;
}
.inscriptionAccueil {
margin-left: 38%;
}
/* PAGE CONNEXION */
.fond {
background-image: url(img/fond.jpg);
background-size: 100% 100vh;
background-size: cover;
height: 100vh;
padding-top: 75px;
}
.cadre {
background-color: rgba( 204, 171, 116, 0.5);
border: solid 2px #661600;
padding: 30px;
width: 60%;
margin: 0% auto;
}
.btnConnexion {
background: #661600;
color: #ccab74;
padding: 8px 75px;
font-size: 1.2rem;
margin: 25px 0 20px 0;
}
.btnConnexion:hover {
background: #ccab74;
color: #661600;
border: solid 2px #661600;
}
.flexConnexion {
display: flex;
justify-content: center;
align-items: center;
}
.flexConnexion img {
width: 90px;
height: auto;
margin-right: 30px;
}
.flexForm {
display: flex;
flex-wrap: wrap;
margin: 30px 0;
}
.flexForm label {
width: 100%;
}
.centerForm {
width: 50%;
margin: 0 auto;
}
.rejoindre {
color: #661600;
text-decoration: underline;
}
/* -------------------------------------------- */
.bg-dark {
background-color: #661600!important;
}
.bg-light {
background-color: #ccab74!important;
}
.ft-c-white {
color: #f1f0ee;
}
.ft-c-light {
color: #ccab74;
}
hr {
border-top: 1px solid #ccab74
}
.side-menu {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 1000;
}
@media (min-width:768px) {
.side-menu {
width: 20%;
}
}
.logo {
height: 15%;
background-image: url(../../img/logo.png);
background-size: contain;
background-repeat: no-repeat;
background-position-x: center;
margin-top: 30px;
}
.side-nav {
position: absolute;
bottom: 0;
width: 100%;
height: calc(85% - 60px);
text-align: center;
}
.side-nav>ul>li {
font-size: large;
}
.content {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100vh;
z-index: 100;
}
@media (min-width:768px) {
.side-menu {
width: 20%;
}
.content {
width: 80%;
}
}
.welcome {
position: absolute;
width: 100%;
height: 10vh;
font-size: x-large;
padding: 20px;
font-weight: 600;
}
.content>.container {
position: absolute;
top: 12vh;
}
.card-custom>.card-body {
background-color: #2f3640;
position: absolute;
bottom: 0;
height: 60px;
width: 92%;
overflow: hidden;
transition: height 0.2s;
}
.card-custom>.card-body:hover {
height: 100%;
transform: translate(0px, 0px);
overflow: auto;
transition: height 1s;
} | 0.524638 | 0.114517 |
:root {
--lh-10: 1.3;
--mb-10: 1em;
--fs-50: 0.85rem; /*13.6px*/
--fs-100: 1rem; /*16px*/
--fs-150: 1.1rem; /*18.4px*/
--fs-200: 1.15rem; /*20px*/
--fs-300: 1.1rem; /*24px*/
--fs-400: 1.65rem; /*28px*/
--fs-500: 2rem; /*32px*/
--fs-550: 2.25rem; /*36px*/
--fs-600: 2.5rem; /*40px*/
--fs-700: 3rem; /*48px*/
--fs-800: 4rem; /*64px*/
--fs-900: 8rem; /*128px*/
--ff-main: "IBM Plex Sans Thai Looped", -apple-system, BlinkMacSystemFont,
"Roboto", sans-serif;
--clr-side-white: #fff;
--clr-side-black: #222;
--clr-primary-white: #fefefe;
--clr-primary-black: #100f11;
--clr-primary-purple: #7269f6;
--clr-primary-yellow: #f9f871;
--clr-primary-gray: #ada9bb;
--clr-primary-pink: #efc2b3;
}
@media (max-width: 40em) {
:root {
--lh-10: 1.2;
--mb-10: 0.75em;
--fs-50: 0.75rem; /*13.6px*/
--fs-100: 1rem; /*16px*/
--fs-150: 1.05rem; /*18.4px*/
--fs-200: 1.15rem; /*19.2px*/
--fs-300: 1.1rem; /*20px*/
--fs-400: 1.6rem; /*24px*/
--fs-500: 1.75rem; /*28px*/
--fs-550: 1.9rem; /*30.4px*/
--fs-600: 2.1rem; /*33.6px*/
--fs-700: 2.25rem; /*36px*/
--fs-800: 3rem; /*48px*/
--fs-900: 4rem; /*64px*/
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
html {
scroll-behavior: smooth;
}
#root {
display: flex;
flex-direction: column;
height: 100%;
}
nav {
width: 100%;
z-index: 1000;
}
body {
font-family: var(--ff-main);
color: var(--clr-side-black);
background-color: var(--clr-side-white);
line-height: var(--lh-10);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.stick {
flex: 1;
}
img {
display: block;
max-width: 100%;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.column {
flex-direction: column;
}
.grid {
display: grid;
}
.center {
margin: 0 auto;
}
.center-text {
text-align: center;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.text-hollow {
color: inherit;
text-shadow: 1px 1px black, -1px 1px black, 1px -1px black, -1px -1px black;
}
.btn {
padding: 0.5em 1em;
cursor: pointer;
background-color: var(--clr-side-black);
color: var(--clr-side-white);
}
/*=============
Typography
===============*/
ul,
li,
a {
text-decoration: none;
list-style: none;
color: var(--clr-primary-black);
}
.fs-50 {
font-size: var(--fs-50);
} /*13.6px*/
.fs-100 {
font-size: var(--fs-100);
} /*16px*/
.fs-150 {
font-size: var(--fs-150);
} /*18.4px*/
.fs-200 {
font-size: var(--fs-200);
} /*20px*/
.fs-300 {
font-size: var(--fs-300);
} /*24px*/
.fs-400 {
font-size: var(--fs-400);
} /*28px*/
.fs-500 {
font-size: var(--fs-500);
} /*32px*/
.fs-550 {
font-size: var(--fs-550);
} /*36px*/
.fs-600 {
font-size: var(--fs-600);
} /*40px*/
.fs-700 {
font-size: var(--fs-700);
} /*48px*/
.fs-800 {
font-size: var(--fs-800);
} /*64px*/
.fs-900 {
font-size: var(--fs-900);
} /*128px*/
/*=============
Navbar
===============*/
.nav-container {
margin: 0 auto;
padding: 1.25rem 1rem 1rem;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid var(--clr-primary-purple);
background-color: var(--clr-primary-black);
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
flex-wrap: wrap;
gap: 0.55rem;
}
.nav-container > * {
color: var(--clr-primary-white);
font-weight: 500;
padding: 0.25rem;
border-radius: 5px;
}
.nav-container > *:hover {
background-color: #ada9bb;
transform: scale(1.005);
transition: 0.4s ease-out;
}
.active-nav {
background-color: #ada9bb;
}
.more {
user-select: none;
cursor: pointer;
}
.arrow {
transform: rotate(0deg);
transition: 0.4s ease-out;
}
.arrow-active {
transform: rotate(180deg);
transition: 0.4s ease-out;
}
.drop-down {
position: absolute;
display: flex;
flex-direction: column;
top: 1.23rem;
padding: 0 3rem 1rem 0.5rem;
gap: 0.5rem;
border-bottom: 1px solid var(--clr-primary-purple);
background-color: var(--clr-primary-black);
border-radius: 0 0 8px 8px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.drop-down > * {
color: var(--clr-primary-white);
font-weight: 500;
padding: 0.25rem;
border-radius: 5px;
}
.drop-down > *:hover {
background-color: #ada9bb;
transform: scale(1.005);
transition: 0.4s ease-out;
}
.close {
transform: scale(1, 0);
transition: transform 350ms ease-in-out;
transform-origin: top;
}
.open {
transform: scale(1, 1);
}
/*=============
Body
===============*/
.section-container {
margin: 0 auto;
width: min(90%, 75rem);
padding: 2.5rem 0;
}
.section-margin {
margin-bottom: 5rem;
}
.news-img {
margin-bottom: 1.5rem;
}
.news-img img {
border-radius: 6px 20px 20px;
max-height: 25rem;
width: 100%;
object-fit: cover;
}
.article-container {
background-color: var(--clr-primary-purple);
border-radius: 6px 35px 35px;
padding: 2rem 1.25rem;
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.article-container h2 {
color: var(--clr-side-white);
margin-bottom: 1em;
}
.article-container p {
color: var(--clr-primary-white);
margin-bottom: 1em;
}
.byline {
font-weight: 800;
color: var(--clr-primary-yellow);
margin-bottom: 0.75rem;
}
.text-shadow {
text-shadow: 1px 1px 2px #1f1f1fbe;
}
.whole > a {
display: flex;
align-items: center;
gap: 0.25rem;
color: var(--clr-primary-yellow);
font-weight: 800;
}
.active-story {
color: #c9c957 !important;
transform: scale(1.08);
}
.story:hover {
transform: scale(1.015);
transition: 0.25s ease-out;
color: #c9c957;
}
.pagination {
gap: 0.5rem;
justify-content: center;
}
.pagination * {
background-color: var(--clr-primary-purple);
color: var(--clr-primary-white);
width: 2rem;
height: 2.25rem;
font-weight: 800;
display: grid;
place-items: center;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
/*=============
Footer
===============*/
.footer-container {
margin: 0 auto;
width: 100%;
padding: 1rem 0;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: var(--clr-primary-gray);
gap: 0.25rem;
}
.logo-small {
width: 2.25rem;
}
.footer-text {
display: flex;
align-items: center;
gap: 0.25rem;
}
/*=============
Media Queries
===============*/
@media (min-width: 40em) {
.none {
display: none;
}
.news-img {
max-width: unset;
margin-bottom: 1.5rem;
}
.news-img img {
height: 21.75rem;
}
.news-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 5rem;
}
}
@media (max-width: 40em) {
.none-mobil {
display: none;
}
} | src/index.css | :root {
--lh-10: 1.3;
--mb-10: 1em;
--fs-50: 0.85rem; /*13.6px*/
--fs-100: 1rem; /*16px*/
--fs-150: 1.1rem; /*18.4px*/
--fs-200: 1.15rem; /*20px*/
--fs-300: 1.1rem; /*24px*/
--fs-400: 1.65rem; /*28px*/
--fs-500: 2rem; /*32px*/
--fs-550: 2.25rem; /*36px*/
--fs-600: 2.5rem; /*40px*/
--fs-700: 3rem; /*48px*/
--fs-800: 4rem; /*64px*/
--fs-900: 8rem; /*128px*/
--ff-main: "IBM Plex Sans Thai Looped", -apple-system, BlinkMacSystemFont,
"Roboto", sans-serif;
--clr-side-white: #fff;
--clr-side-black: #222;
--clr-primary-white: #fefefe;
--clr-primary-black: #100f11;
--clr-primary-purple: #7269f6;
--clr-primary-yellow: #f9f871;
--clr-primary-gray: #ada9bb;
--clr-primary-pink: #efc2b3;
}
@media (max-width: 40em) {
:root {
--lh-10: 1.2;
--mb-10: 0.75em;
--fs-50: 0.75rem; /*13.6px*/
--fs-100: 1rem; /*16px*/
--fs-150: 1.05rem; /*18.4px*/
--fs-200: 1.15rem; /*19.2px*/
--fs-300: 1.1rem; /*20px*/
--fs-400: 1.6rem; /*24px*/
--fs-500: 1.75rem; /*28px*/
--fs-550: 1.9rem; /*30.4px*/
--fs-600: 2.1rem; /*33.6px*/
--fs-700: 2.25rem; /*36px*/
--fs-800: 3rem; /*48px*/
--fs-900: 4rem; /*64px*/
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
html {
scroll-behavior: smooth;
}
#root {
display: flex;
flex-direction: column;
height: 100%;
}
nav {
width: 100%;
z-index: 1000;
}
body {
font-family: var(--ff-main);
color: var(--clr-side-black);
background-color: var(--clr-side-white);
line-height: var(--lh-10);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.stick {
flex: 1;
}
img {
display: block;
max-width: 100%;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.column {
flex-direction: column;
}
.grid {
display: grid;
}
.center {
margin: 0 auto;
}
.center-text {
text-align: center;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.text-hollow {
color: inherit;
text-shadow: 1px 1px black, -1px 1px black, 1px -1px black, -1px -1px black;
}
.btn {
padding: 0.5em 1em;
cursor: pointer;
background-color: var(--clr-side-black);
color: var(--clr-side-white);
}
/*=============
Typography
===============*/
ul,
li,
a {
text-decoration: none;
list-style: none;
color: var(--clr-primary-black);
}
.fs-50 {
font-size: var(--fs-50);
} /*13.6px*/
.fs-100 {
font-size: var(--fs-100);
} /*16px*/
.fs-150 {
font-size: var(--fs-150);
} /*18.4px*/
.fs-200 {
font-size: var(--fs-200);
} /*20px*/
.fs-300 {
font-size: var(--fs-300);
} /*24px*/
.fs-400 {
font-size: var(--fs-400);
} /*28px*/
.fs-500 {
font-size: var(--fs-500);
} /*32px*/
.fs-550 {
font-size: var(--fs-550);
} /*36px*/
.fs-600 {
font-size: var(--fs-600);
} /*40px*/
.fs-700 {
font-size: var(--fs-700);
} /*48px*/
.fs-800 {
font-size: var(--fs-800);
} /*64px*/
.fs-900 {
font-size: var(--fs-900);
} /*128px*/
/*=============
Navbar
===============*/
.nav-container {
margin: 0 auto;
padding: 1.25rem 1rem 1rem;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid var(--clr-primary-purple);
background-color: var(--clr-primary-black);
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
flex-wrap: wrap;
gap: 0.55rem;
}
.nav-container > * {
color: var(--clr-primary-white);
font-weight: 500;
padding: 0.25rem;
border-radius: 5px;
}
.nav-container > *:hover {
background-color: #ada9bb;
transform: scale(1.005);
transition: 0.4s ease-out;
}
.active-nav {
background-color: #ada9bb;
}
.more {
user-select: none;
cursor: pointer;
}
.arrow {
transform: rotate(0deg);
transition: 0.4s ease-out;
}
.arrow-active {
transform: rotate(180deg);
transition: 0.4s ease-out;
}
.drop-down {
position: absolute;
display: flex;
flex-direction: column;
top: 1.23rem;
padding: 0 3rem 1rem 0.5rem;
gap: 0.5rem;
border-bottom: 1px solid var(--clr-primary-purple);
background-color: var(--clr-primary-black);
border-radius: 0 0 8px 8px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.drop-down > * {
color: var(--clr-primary-white);
font-weight: 500;
padding: 0.25rem;
border-radius: 5px;
}
.drop-down > *:hover {
background-color: #ada9bb;
transform: scale(1.005);
transition: 0.4s ease-out;
}
.close {
transform: scale(1, 0);
transition: transform 350ms ease-in-out;
transform-origin: top;
}
.open {
transform: scale(1, 1);
}
/*=============
Body
===============*/
.section-container {
margin: 0 auto;
width: min(90%, 75rem);
padding: 2.5rem 0;
}
.section-margin {
margin-bottom: 5rem;
}
.news-img {
margin-bottom: 1.5rem;
}
.news-img img {
border-radius: 6px 20px 20px;
max-height: 25rem;
width: 100%;
object-fit: cover;
}
.article-container {
background-color: var(--clr-primary-purple);
border-radius: 6px 35px 35px;
padding: 2rem 1.25rem;
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.article-container h2 {
color: var(--clr-side-white);
margin-bottom: 1em;
}
.article-container p {
color: var(--clr-primary-white);
margin-bottom: 1em;
}
.byline {
font-weight: 800;
color: var(--clr-primary-yellow);
margin-bottom: 0.75rem;
}
.text-shadow {
text-shadow: 1px 1px 2px #1f1f1fbe;
}
.whole > a {
display: flex;
align-items: center;
gap: 0.25rem;
color: var(--clr-primary-yellow);
font-weight: 800;
}
.active-story {
color: #c9c957 !important;
transform: scale(1.08);
}
.story:hover {
transform: scale(1.015);
transition: 0.25s ease-out;
color: #c9c957;
}
.pagination {
gap: 0.5rem;
justify-content: center;
}
.pagination * {
background-color: var(--clr-primary-purple);
color: var(--clr-primary-white);
width: 2rem;
height: 2.25rem;
font-weight: 800;
display: grid;
place-items: center;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
/*=============
Footer
===============*/
.footer-container {
margin: 0 auto;
width: 100%;
padding: 1rem 0;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: var(--clr-primary-gray);
gap: 0.25rem;
}
.logo-small {
width: 2.25rem;
}
.footer-text {
display: flex;
align-items: center;
gap: 0.25rem;
}
/*=============
Media Queries
===============*/
@media (min-width: 40em) {
.none {
display: none;
}
.news-img {
max-width: unset;
margin-bottom: 1.5rem;
}
.news-img img {
height: 21.75rem;
}
.news-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 5rem;
}
}
@media (max-width: 40em) {
.none-mobil {
display: none;
}
} | 0.349311 | 0.104523 |
body {background: url('../images/bg-patterns/2.png') repeat;}
/* Lnk colors */
a {color: #08C;}
a:hover {color: #005580;}
/* Link colors ends here /*
/* Custom fonts start */
.intro-slogan {font-family: "squada-one", serif; font-weight: normal;}
.main-wrap .section h3 {font-family: "bebas-neue", serif; font-weight: normal; letter-spacing: 2px;}
/* Custom fonts end */
.css3-gradient {
background: #81a694; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,<KEY>
background: -moz-linear-gradient(top, #81a694 0%, #6f8e7e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#81a694), color-stop(100%,#6f8e7e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* IE10+ */
background: linear-gradient(to bottom, #81a694 0%,#6f8e7e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#81a694', endColorstr='#6f8e7e',GradientType=0 ); /* IE6-8 */
}
.intro-slogan:after {border-top: 30px solid #303D36;}
.css3-gradient-2 {
background: #65596f; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,<KEY>
background: -moz-linear-gradient(top, #65596f 0%, #5d5266 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#65596f), color-stop(100%,#5d5266)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #65596f 0%,#5d5266 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #65596f 0%,#5d5266 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #65596f 0%,#5d5266 100%); /* IE10+ */
background: linear-gradient(to bottom, #65596f 0%,#5d5266 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65596f', endColorstr='#5d5266',GradientType=0 ); /* IE6-8 */
}
.main-wrap .section h3:after {border-top: 15px solid #3C3542;}
@media (max-width: 767px) {
.intro-slogan:after {border-top: 10px solid #303D36;}
.main-wrap .section h3:after {border-top: 10px solid #3C3542;}
} | skins/skin-1.css | body {background: url('../images/bg-patterns/2.png') repeat;}
/* Lnk colors */
a {color: #08C;}
a:hover {color: #005580;}
/* Link colors ends here /*
/* Custom fonts start */
.intro-slogan {font-family: "squada-one", serif; font-weight: normal;}
.main-wrap .section h3 {font-family: "bebas-neue", serif; font-weight: normal; letter-spacing: 2px;}
/* Custom fonts end */
.css3-gradient {
background: #81a694; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,<KEY>
background: -moz-linear-gradient(top, #81a694 0%, #6f8e7e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#81a694), color-stop(100%,#6f8e7e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #81a694 0%,#6f8e7e 100%); /* IE10+ */
background: linear-gradient(to bottom, #81a694 0%,#6f8e7e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#81a694', endColorstr='#6f8e7e',GradientType=0 ); /* IE6-8 */
}
.intro-slogan:after {border-top: 30px solid #303D36;}
.css3-gradient-2 {
background: #65596f; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,<KEY>
background: -moz-linear-gradient(top, #65596f 0%, #5d5266 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#65596f), color-stop(100%,#5d5266)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #65596f 0%,#5d5266 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #65596f 0%,#5d5266 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #65596f 0%,#5d5266 100%); /* IE10+ */
background: linear-gradient(to bottom, #65596f 0%,#5d5266 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65596f', endColorstr='#5d5266',GradientType=0 ); /* IE6-8 */
}
.main-wrap .section h3:after {border-top: 15px solid #3C3542;}
@media (max-width: 767px) {
.intro-slogan:after {border-top: 10px solid #303D36;}
.main-wrap .section h3:after {border-top: 10px solid #3C3542;}
} | 0.268174 | 0.062388 |
.lb_trim_upfile_wrap {
background-color: #eee;
border: 1px solid #999;
display: inline-block;
height: 100%;
overflow: hidden;
padding: 0.5em;
position: relative;
width: 95%;
}
.lb_trim_upfile_wrap input {
cursor: pointer;
font-size: 100px;
height: 75px;
margin: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
width: 95%;
}
.lb_trim_area .lb_trim_title{
font-size: 16px;
line-height: 1.1;
font-weight: normal;
padding: 5px 0px 5px 0px;
}
.lb_trim_area div.lb_framearea{
overflow: auto;
margin: 5px auto;
}
.lb_trim_area{
max-width:1000px;
cursor: default;
padding 5px auto;
display:none;
}
.lb_trim_area button{
margin:0 5px 5px 5px;
}
/***
ボタンのデザイン
CSS Button Generator for your pleasure
http://www.dextronet.com/css-buttons-generator/
にて作成。paddingの左右だけ-2pixel調整している。
***/
.lb_trim_area button.shiny-button {
display: inline-block;
text-align: center;
border-width: 1px;
border-style: solid;
text-transform: uppercase;
text-decoration: none;
line-height: 1.1;
font-weight: normal;
font-family: sans-serif;
color: #FFFFFF;
font-size: 12px;
background-color: #73B10E;
background-image: -webkit-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: -moz-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: -o-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
border-color: hsl(83, 29%, 37%);
-webkit-box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-webkit-text-shadow: 1px 1px 1px #365207;
-moz-text-shadow: 1px 1px 1px #365207;
-o-text-shadow: 1px 1px 1px #365207;
text-shadow: 1px 1px 1px #365207;
-webkit-border-radius: 32px;
-moz-border-radius: 32px;
border-radius: 32px;
padding: 10px 30px 10px 30px;
}
.lb_trim_area button.shiny-button strong {
letter-spacing: 1px;
font-size: 22px;
}
.lb_trim_area button.shiny-button:hover {
color: #FFFFFF;
background-color: #7cbf0f;
background-image: -webkit-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: -moz-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: -o-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
border-color: hsl(83, 28%, 36%);
-webkit-box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-webkit-text-shadow: 1px 1px 1px #3f6008;
-moz-text-shadow: 1px 1px 1px #3f6008;
-o-text-shadow: 1px 1px 1px #3f6008;
text-shadow: 1px 1px 1px #3f6008;
}
.lb_trim_area button.shiny-button:active {
color: #FFFFFF;
background-color: #6aa30d;
background-image: -webkit-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: -moz-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: -o-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: linear-gradient(top, #649a0c 0%, #73B10E 100%);
padding: 11px 30px 9px 30px;
} | lbtrim/lbtrim.css | .lb_trim_upfile_wrap {
background-color: #eee;
border: 1px solid #999;
display: inline-block;
height: 100%;
overflow: hidden;
padding: 0.5em;
position: relative;
width: 95%;
}
.lb_trim_upfile_wrap input {
cursor: pointer;
font-size: 100px;
height: 75px;
margin: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
width: 95%;
}
.lb_trim_area .lb_trim_title{
font-size: 16px;
line-height: 1.1;
font-weight: normal;
padding: 5px 0px 5px 0px;
}
.lb_trim_area div.lb_framearea{
overflow: auto;
margin: 5px auto;
}
.lb_trim_area{
max-width:1000px;
cursor: default;
padding 5px auto;
display:none;
}
.lb_trim_area button{
margin:0 5px 5px 5px;
}
/***
ボタンのデザイン
CSS Button Generator for your pleasure
http://www.dextronet.com/css-buttons-generator/
にて作成。paddingの左右だけ-2pixel調整している。
***/
.lb_trim_area button.shiny-button {
display: inline-block;
text-align: center;
border-width: 1px;
border-style: solid;
text-transform: uppercase;
text-decoration: none;
line-height: 1.1;
font-weight: normal;
font-family: sans-serif;
color: #FFFFFF;
font-size: 12px;
background-color: #73B10E;
background-image: -webkit-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: -moz-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: -o-linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
background-image: linear-gradient(top, #76b60e 0%, #86c028 48%, #73B10E 49%, #73B10E 82%, #84cb10 100%);
border-color: hsl(83, 29%, 37%);
-webkit-box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 0 1px 1px #95e512, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-webkit-text-shadow: 1px 1px 1px #365207;
-moz-text-shadow: 1px 1px 1px #365207;
-o-text-shadow: 1px 1px 1px #365207;
text-shadow: 1px 1px 1px #365207;
-webkit-border-radius: 32px;
-moz-border-radius: 32px;
border-radius: 32px;
padding: 10px 30px 10px 30px;
}
.lb_trim_area button.shiny-button strong {
letter-spacing: 1px;
font-size: 22px;
}
.lb_trim_area button.shiny-button:hover {
color: #FFFFFF;
background-color: #7cbf0f;
background-image: -webkit-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: -moz-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: -o-linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
background-image: linear-gradient(top, #7fc40f 0%, #8fcc2b 48%, #7cbf0f 49%, #7cbf0f 82%, #8dd911 100%);
border-color: hsl(83, 28%, 36%);
-webkit-box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 0 1px 1px #9eed1e, 0 0 1px 3px rgba(0, 0, 0, 0.15);
-webkit-text-shadow: 1px 1px 1px #3f6008;
-moz-text-shadow: 1px 1px 1px #3f6008;
-o-text-shadow: 1px 1px 1px #3f6008;
text-shadow: 1px 1px 1px #3f6008;
}
.lb_trim_area button.shiny-button:active {
color: #FFFFFF;
background-color: #6aa30d;
background-image: -webkit-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: -moz-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: -o-linear-gradient(top, #649a0c 0%, #73B10E 100%);
background-image: linear-gradient(top, #649a0c 0%, #73B10E 100%);
padding: 11px 30px 9px 30px;
} | 0.340485 | 0.082883 |
.glitch {
color: #000;
margin: 0 auto;
position: relative;
}
.glitch-left-black:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #000;
clip: rect( 0, 900px, 0, 0 );
color: #fff;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left-black:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #000;
clip: rect( 0, 900px, 0, 0 );
color: #fff;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-left-white:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #fff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left-white:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #fff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-left:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #00ffff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #00ffff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-right:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #ff0dc6;
clip: rect( 0, 900px, 0, 0 );
content: attr( data-text );
right: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-right:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #ff0dc6;
clip: rect( 0, 900px, 0, 0 );
content: attr( data-text );
right: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
/* Expanded Animations */
@keyframes glitch-animation {
0% {
clip: rect(42px, 9999px, 44px, 0);
}
5% {
clip: rect(12px, 9999px, 59px, 0);
}
10% {
clip: rect(48px, 9999px, 29px, 0);
}
15.0% {
clip: rect(42px, 9999px, 73px, 0);
}
20% {
clip: rect(63px, 9999px, 27px, 0);
}
25% {
clip: rect(34px, 9999px, 55px, 0);
}
30.0% {
clip: rect(86px, 9999px, 73px, 0);
}
35% {
clip: rect(20px, 9999px, 20px, 0);
}
40% {
clip: rect(26px, 9999px, 60px, 0);
}
45% {
clip: rect(25px, 9999px, 66px, 0);
}
50% {
clip: rect(57px, 9999px, 98px, 0);
}
55.0% {
clip: rect(5px, 9999px, 46px, 0);
}
60.0% {
clip: rect(82px, 9999px, 31px, 0);
}
65% {
clip: rect(54px, 9999px, 27px, 0);
}
70% {
clip: rect(28px, 9999px, 99px, 0);
}
75% {
clip: rect(45px, 9999px, 69px, 0);
}
80% {
clip: rect(23px, 9999px, 85px, 0);
}
85.0% {
clip: rect(54px, 9999px, 84px, 0);
}
90% {
clip: rect(45px, 9999px, 47px, 0);
}
95% {
clip: rect(37px, 9999px, 20px, 0);
}
100% {
clip: rect(4px, 9999px, 91px, 0);
}
}
@keyframes glitch-animation-2 {
0% {
clip: rect(65px, 9999px, 100px, 0);
}
5% {
clip: rect(52px, 9999px, 74px, 0);
}
10% {
clip: rect(79px, 9999px, 85px, 0);
}
15.0% {
clip: rect(75px, 9999px, 5px, 0);
}
20% {
clip: rect(67px, 9999px, 61px, 0);
}
25% {
clip: rect(14px, 9999px, 79px, 0);
}
30.0% {
clip: rect(1px, 9999px, 66px, 0);
}
35% {
clip: rect(86px, 9999px, 30px, 0);
}
40% {
clip: rect(23px, 9999px, 98px, 0);
}
45% {
clip: rect(85px, 9999px, 72px, 0);
}
50% {
clip: rect(71px, 9999px, 75px, 0);
}
55.0% {
clip: rect(2px, 9999px, 48px, 0);
}
60.0% {
clip: rect(30px, 9999px, 16px, 0);
}
65% {
clip: rect(59px, 9999px, 50px, 0);
}
70% {
clip: rect(41px, 9999px, 62px, 0);
}
75% {
clip: rect(2px, 9999px, 82px, 0);
}
80% {
clip: rect(47px, 9999px, 73px, 0);
}
85.0% {
clip: rect(3px, 9999px, 27px, 0);
}
90% {
clip: rect(26px, 9999px, 55px, 0);
}
95% {
clip: rect(42px, 9999px, 97px, 0);
}
100% {
clip: rect(38px, 9999px, 49px, 0);
}
}
.glitchis {
position: relative;
color: #000;
animation: glitchis-skew 1s infinite linear alternate-reverse;
}
.glitchis::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
left: 2px;
text-shadow: -3px 0 #ff0ed3;
clip: rect(44px, 450px, 56px, 0);
animation: glitchis-anim 5s infinite linear alternate-reverse;
}
.glitchis::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
left: -2px;
text-shadow: -5px 0 #00ffff, 2px 2px #ff0ed3;
animation: glitchis-anim2 1s infinite linear alternate-reverse;
}
@keyframes glitchis-anim {
0% {
clip: rect(75px, 9999px, 94px, 0);
transform: skew(0.98deg);
}
5% {
clip: rect(78px, 9999px, 84px, 0);
transform: skew(0.62deg);
}
10% {
clip: rect(34px, 9999px, 56px, 0);
transform: skew(0.42deg);
}
15% {
clip: rect(92px, 9999px, 17px, 0);
transform: skew(0.95deg);
}
20% {
clip: rect(4px, 9999px, 93px, 0);
transform: skew(0.19deg);
}
25% {
clip: rect(69px, 9999px, 16px, 0);
transform: skew(0.04deg);
}
30% {
clip: rect(84px, 9999px, 21px, 0);
transform: skew(0.97deg);
}
35% {
clip: rect(82px, 9999px, 81px, 0);
transform: skew(0.82deg);
}
40% {
clip: rect(39px, 9999px, 9px, 0);
transform: skew(0.91deg);
}
45% {
clip: rect(79px, 9999px, 61px, 0);
transform: skew(0.93deg);
}
50% {
clip: rect(36px, 9999px, 50px, 0);
transform: skew(0.15deg);
}
55% {
clip: rect(82px, 9999px, 92px, 0);
transform: skew(0.62deg);
}
60% {
clip: rect(40px, 9999px, 75px, 0);
transform: skew(0.59deg);
}
65% {
clip: rect(39px, 9999px, 25px, 0);
transform: skew(0.38deg);
}
70% {
clip: rect(82px, 9999px, 79px, 0);
transform: skew(0.84deg);
}
75% {
clip: rect(24px, 9999px, 20px, 0);
transform: skew(0.55deg);
}
80% {
clip: rect(20px, 9999px, 36px, 0);
transform: skew(0.4deg);
}
85% {
clip: rect(90px, 9999px, 4px, 0);
transform: skew(0.79deg);
}
90% {
clip: rect(10px, 9999px, 78px, 0);
transform: skew(0.21deg);
}
95% {
clip: rect(31px, 9999px, 56px, 0);
transform: skew(0.68deg);
}
100% {
clip: rect(97px, 9999px, 77px, 0);
transform: skew(0.76deg);
}
}
@keyframes glitchis-anim2 {
0% {
clip: rect(39px, 9999px, 49px, 0);
transform: skew(0.28deg);
}
5% {
clip: rect(48px, 9999px, 61px, 0);
transform: skew(0.33deg);
}
10% {
clip: rect(82px, 9999px, 50px, 0);
transform: skew(0.72deg);
}
15% {
clip: rect(22px, 9999px, 6px, 0);
transform: skew(0.71deg);
}
20% {
clip: rect(49px, 9999px, 78px, 0);
transform: skew(0.16deg);
}
25% {
clip: rect(45px, 9999px, 67px, 0);
transform: skew(0.06deg);
}
30% {
clip: rect(94px, 9999px, 95px, 0);
transform: skew(0.03deg);
}
35% {
clip: rect(99px, 9999px, 59px, 0);
transform: skew(0.92deg);
}
40% {
clip: rect(38px, 9999px, 86px, 0);
transform: skew(0.39deg);
}
45% {
clip: rect(38px, 9999px, 68px, 0);
transform: skew(0.82deg);
}
50% {
clip: rect(38px, 9999px, 50px, 0);
transform: skew(0.38deg);
}
55% {
clip: rect(14px, 9999px, 10px, 0);
transform: skew(0.03deg);
}
60% {
clip: rect(26px, 9999px, 94px, 0);
transform: skew(0.54deg);
}
65% {
clip: rect(72px, 9999px, 84px, 0);
transform: skew(0.32deg);
}
70% {
clip: rect(49px, 9999px, 50px, 0);
transform: skew(0.82deg);
}
75% {
clip: rect(93px, 9999px, 29px, 0);
transform: skew(0.77deg);
}
80% {
clip: rect(42px, 9999px, 9px, 0);
transform: skew(0.51deg);
}
85% {
clip: rect(69px, 9999px, 11px, 0);
transform: skew(0.28deg);
}
90% {
clip: rect(3px, 9999px, 75px, 0);
transform: skew(0.01deg);
}
95% {
clip: rect(32px, 9999px, 89px, 0);
transform: skew(0.83deg);
}
100% {
clip: rect(32px, 9999px, 55px, 0);
transform: skew(0.41deg);
}
}
@keyframes glitchis-skew {
0% {
transform: skew(4deg);
}
10% {
transform: skew(2deg);
}
20% {
transform: skew(4deg);
}
30% {
transform: skew(-4deg);
}
40% {
transform: skew(-3deg);
}
50% {
transform: skew(-1deg);
}
60% {
transform: skew(2deg);
}
70% {
transform: skew(3deg);
}
80% {
transform: skew(-4deg);
}
90% {
transform: skew(2deg);
}
100% {
transform: skew(3deg);
}
} | public/layout/assets/css/glitch.css |
.glitch {
color: #000;
margin: 0 auto;
position: relative;
}
.glitch-left-black:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #000;
clip: rect( 0, 900px, 0, 0 );
color: #fff;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left-black:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #000;
clip: rect( 0, 900px, 0, 0 );
color: #fff;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-left-white:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #fff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left-white:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #fff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-left:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #00ffff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-left:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #00ffff;
clip: rect( 0, 900px, 0, 0 );
color: #000;
content: attr( data-text );
left: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
.glitch-right:after {
animation: glitch-animation 2s infinite linear alternate-reverse;
background: #ff0dc6;
clip: rect( 0, 900px, 0, 0 );
content: attr( data-text );
right: 2px;
overflow: hidden;
position: absolute;
text-shadow: -1px 0 red;
top: 0;
}
.glitch-right:before {
animation: glitch-animation-2 3s infinite linear alternate-reverse;
background: #ff0dc6;
clip: rect( 0, 900px, 0, 0 );
content: attr( data-text );
right: -2px;
overflow: hidden;
position: absolute;
text-shadow: 1px 0 blue;
top: 0;
}
/* Expanded Animations */
@keyframes glitch-animation {
0% {
clip: rect(42px, 9999px, 44px, 0);
}
5% {
clip: rect(12px, 9999px, 59px, 0);
}
10% {
clip: rect(48px, 9999px, 29px, 0);
}
15.0% {
clip: rect(42px, 9999px, 73px, 0);
}
20% {
clip: rect(63px, 9999px, 27px, 0);
}
25% {
clip: rect(34px, 9999px, 55px, 0);
}
30.0% {
clip: rect(86px, 9999px, 73px, 0);
}
35% {
clip: rect(20px, 9999px, 20px, 0);
}
40% {
clip: rect(26px, 9999px, 60px, 0);
}
45% {
clip: rect(25px, 9999px, 66px, 0);
}
50% {
clip: rect(57px, 9999px, 98px, 0);
}
55.0% {
clip: rect(5px, 9999px, 46px, 0);
}
60.0% {
clip: rect(82px, 9999px, 31px, 0);
}
65% {
clip: rect(54px, 9999px, 27px, 0);
}
70% {
clip: rect(28px, 9999px, 99px, 0);
}
75% {
clip: rect(45px, 9999px, 69px, 0);
}
80% {
clip: rect(23px, 9999px, 85px, 0);
}
85.0% {
clip: rect(54px, 9999px, 84px, 0);
}
90% {
clip: rect(45px, 9999px, 47px, 0);
}
95% {
clip: rect(37px, 9999px, 20px, 0);
}
100% {
clip: rect(4px, 9999px, 91px, 0);
}
}
@keyframes glitch-animation-2 {
0% {
clip: rect(65px, 9999px, 100px, 0);
}
5% {
clip: rect(52px, 9999px, 74px, 0);
}
10% {
clip: rect(79px, 9999px, 85px, 0);
}
15.0% {
clip: rect(75px, 9999px, 5px, 0);
}
20% {
clip: rect(67px, 9999px, 61px, 0);
}
25% {
clip: rect(14px, 9999px, 79px, 0);
}
30.0% {
clip: rect(1px, 9999px, 66px, 0);
}
35% {
clip: rect(86px, 9999px, 30px, 0);
}
40% {
clip: rect(23px, 9999px, 98px, 0);
}
45% {
clip: rect(85px, 9999px, 72px, 0);
}
50% {
clip: rect(71px, 9999px, 75px, 0);
}
55.0% {
clip: rect(2px, 9999px, 48px, 0);
}
60.0% {
clip: rect(30px, 9999px, 16px, 0);
}
65% {
clip: rect(59px, 9999px, 50px, 0);
}
70% {
clip: rect(41px, 9999px, 62px, 0);
}
75% {
clip: rect(2px, 9999px, 82px, 0);
}
80% {
clip: rect(47px, 9999px, 73px, 0);
}
85.0% {
clip: rect(3px, 9999px, 27px, 0);
}
90% {
clip: rect(26px, 9999px, 55px, 0);
}
95% {
clip: rect(42px, 9999px, 97px, 0);
}
100% {
clip: rect(38px, 9999px, 49px, 0);
}
}
.glitchis {
position: relative;
color: #000;
animation: glitchis-skew 1s infinite linear alternate-reverse;
}
.glitchis::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
left: 2px;
text-shadow: -3px 0 #ff0ed3;
clip: rect(44px, 450px, 56px, 0);
animation: glitchis-anim 5s infinite linear alternate-reverse;
}
.glitchis::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
left: -2px;
text-shadow: -5px 0 #00ffff, 2px 2px #ff0ed3;
animation: glitchis-anim2 1s infinite linear alternate-reverse;
}
@keyframes glitchis-anim {
0% {
clip: rect(75px, 9999px, 94px, 0);
transform: skew(0.98deg);
}
5% {
clip: rect(78px, 9999px, 84px, 0);
transform: skew(0.62deg);
}
10% {
clip: rect(34px, 9999px, 56px, 0);
transform: skew(0.42deg);
}
15% {
clip: rect(92px, 9999px, 17px, 0);
transform: skew(0.95deg);
}
20% {
clip: rect(4px, 9999px, 93px, 0);
transform: skew(0.19deg);
}
25% {
clip: rect(69px, 9999px, 16px, 0);
transform: skew(0.04deg);
}
30% {
clip: rect(84px, 9999px, 21px, 0);
transform: skew(0.97deg);
}
35% {
clip: rect(82px, 9999px, 81px, 0);
transform: skew(0.82deg);
}
40% {
clip: rect(39px, 9999px, 9px, 0);
transform: skew(0.91deg);
}
45% {
clip: rect(79px, 9999px, 61px, 0);
transform: skew(0.93deg);
}
50% {
clip: rect(36px, 9999px, 50px, 0);
transform: skew(0.15deg);
}
55% {
clip: rect(82px, 9999px, 92px, 0);
transform: skew(0.62deg);
}
60% {
clip: rect(40px, 9999px, 75px, 0);
transform: skew(0.59deg);
}
65% {
clip: rect(39px, 9999px, 25px, 0);
transform: skew(0.38deg);
}
70% {
clip: rect(82px, 9999px, 79px, 0);
transform: skew(0.84deg);
}
75% {
clip: rect(24px, 9999px, 20px, 0);
transform: skew(0.55deg);
}
80% {
clip: rect(20px, 9999px, 36px, 0);
transform: skew(0.4deg);
}
85% {
clip: rect(90px, 9999px, 4px, 0);
transform: skew(0.79deg);
}
90% {
clip: rect(10px, 9999px, 78px, 0);
transform: skew(0.21deg);
}
95% {
clip: rect(31px, 9999px, 56px, 0);
transform: skew(0.68deg);
}
100% {
clip: rect(97px, 9999px, 77px, 0);
transform: skew(0.76deg);
}
}
@keyframes glitchis-anim2 {
0% {
clip: rect(39px, 9999px, 49px, 0);
transform: skew(0.28deg);
}
5% {
clip: rect(48px, 9999px, 61px, 0);
transform: skew(0.33deg);
}
10% {
clip: rect(82px, 9999px, 50px, 0);
transform: skew(0.72deg);
}
15% {
clip: rect(22px, 9999px, 6px, 0);
transform: skew(0.71deg);
}
20% {
clip: rect(49px, 9999px, 78px, 0);
transform: skew(0.16deg);
}
25% {
clip: rect(45px, 9999px, 67px, 0);
transform: skew(0.06deg);
}
30% {
clip: rect(94px, 9999px, 95px, 0);
transform: skew(0.03deg);
}
35% {
clip: rect(99px, 9999px, 59px, 0);
transform: skew(0.92deg);
}
40% {
clip: rect(38px, 9999px, 86px, 0);
transform: skew(0.39deg);
}
45% {
clip: rect(38px, 9999px, 68px, 0);
transform: skew(0.82deg);
}
50% {
clip: rect(38px, 9999px, 50px, 0);
transform: skew(0.38deg);
}
55% {
clip: rect(14px, 9999px, 10px, 0);
transform: skew(0.03deg);
}
60% {
clip: rect(26px, 9999px, 94px, 0);
transform: skew(0.54deg);
}
65% {
clip: rect(72px, 9999px, 84px, 0);
transform: skew(0.32deg);
}
70% {
clip: rect(49px, 9999px, 50px, 0);
transform: skew(0.82deg);
}
75% {
clip: rect(93px, 9999px, 29px, 0);
transform: skew(0.77deg);
}
80% {
clip: rect(42px, 9999px, 9px, 0);
transform: skew(0.51deg);
}
85% {
clip: rect(69px, 9999px, 11px, 0);
transform: skew(0.28deg);
}
90% {
clip: rect(3px, 9999px, 75px, 0);
transform: skew(0.01deg);
}
95% {
clip: rect(32px, 9999px, 89px, 0);
transform: skew(0.83deg);
}
100% {
clip: rect(32px, 9999px, 55px, 0);
transform: skew(0.41deg);
}
}
@keyframes glitchis-skew {
0% {
transform: skew(4deg);
}
10% {
transform: skew(2deg);
}
20% {
transform: skew(4deg);
}
30% {
transform: skew(-4deg);
}
40% {
transform: skew(-3deg);
}
50% {
transform: skew(-1deg);
}
60% {
transform: skew(2deg);
}
70% {
transform: skew(3deg);
}
80% {
transform: skew(-4deg);
}
90% {
transform: skew(2deg);
}
100% {
transform: skew(3deg);
}
} | 0.708011 | 0.297984 |
@font-face {
font-family: bnimbus;
src: url(../fonts/NimbusSanL-Bol.otf);
}
@font-face {
font-family: nimbus;
src: url(../fonts/NimbusSanL-Reg.otf);
}
::-moz-selection {
color: #BF616A;
background: #B48EAD;
}
::selection {
color: #BF616A;
background: #B48EAD;
}
body {
margin: auto;
font-size: 1.25rem;
font-family: nimbus;
vertical-align: baseline;
}
#theme {
width: 40px;
position: absolute;
top: 5px;
right: 5px;
}
.color-change-light {
color: #2E3440;
}
.color-change-light #theme {
fill: #2E3440;
}
.color-change-light #theme:hover {
background: #EBCB8B;
}
.color-change-light .btn-outline-primary {
color: #5E81AC;
border-color: #5E81AC;
}
.color-change-light .btn-outline-primary:hover {
color: #fff;
background-color: #5E81AC;
border-color: #5E81AC;
}
.color-change-light .btn-outline-primary:not(:disabled):not(.disabled).active,
.color-change-light .btn-outline-primary:not(:disabled):not(.disabled):active,
.color-change-light .show > .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #A3BE8C;
border-color: #BF616A;
}
.color-change-dark {
color: #D8DEE9;
}
.color-change-dark #theme {
fill: #D8DEE9;
}
.color-change-dark #theme:hover {
background: #5E81AC;
}
.color-change-dark .btn-outline-primary {
color: #A3BE8C;
border-color: #A3BE8C;
}
.color-change-dark .btn-outline-primary:hover {
color: #fff;
background-color: #A3BE8C;
border-color: #A3BE8C;
}
.color-change-dark .btn-outline-primary:not(:disabled):not(.disabled).active,
.color-change-dark .btn-outline-primary:not(:disabled):not(.disabled):active,
.color-change-dark .show > .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #5E81AC;
border-color: #BF616A;
}
.btn {
border-radius: 0;
}
.me h1,
.me h6 {
font-family: bnimbus;
}
.me {
margin-top: 100px;
text-align: center;
}
hr {
width: 85%;
}
.row {
text-align: center;
}
.btn-outline-danger {
color: #BF616A;
border-color: #BF616A;
}
.btn-outline-danger:hover {
color: #fff;
background-color: #BF616A;
border-color: #BF616A;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
color: #fff;
background-color: #BF616A;
border-color: #BF616A;
}
.myimage {
width: 10rem;
height: 0rem;
-o-object-fit: cover;
object-fit: cover;
position: relative;
top: 0;
left: 50%;
border-radius: 50%;
display: block;
-webkit-transition: all 1s ease-out;
transition: all 1s ease-out;
}
.trigger:hover > .myimage {
height: 10rem;
}
.skill label {
float: left;
}
.skill progress {
float: right;
}
/*# sourceMappingURL=styles.css.map */ | assets/css/styles.css | @font-face {
font-family: bnimbus;
src: url(../fonts/NimbusSanL-Bol.otf);
}
@font-face {
font-family: nimbus;
src: url(../fonts/NimbusSanL-Reg.otf);
}
::-moz-selection {
color: #BF616A;
background: #B48EAD;
}
::selection {
color: #BF616A;
background: #B48EAD;
}
body {
margin: auto;
font-size: 1.25rem;
font-family: nimbus;
vertical-align: baseline;
}
#theme {
width: 40px;
position: absolute;
top: 5px;
right: 5px;
}
.color-change-light {
color: #2E3440;
}
.color-change-light #theme {
fill: #2E3440;
}
.color-change-light #theme:hover {
background: #EBCB8B;
}
.color-change-light .btn-outline-primary {
color: #5E81AC;
border-color: #5E81AC;
}
.color-change-light .btn-outline-primary:hover {
color: #fff;
background-color: #5E81AC;
border-color: #5E81AC;
}
.color-change-light .btn-outline-primary:not(:disabled):not(.disabled).active,
.color-change-light .btn-outline-primary:not(:disabled):not(.disabled):active,
.color-change-light .show > .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #A3BE8C;
border-color: #BF616A;
}
.color-change-dark {
color: #D8DEE9;
}
.color-change-dark #theme {
fill: #D8DEE9;
}
.color-change-dark #theme:hover {
background: #5E81AC;
}
.color-change-dark .btn-outline-primary {
color: #A3BE8C;
border-color: #A3BE8C;
}
.color-change-dark .btn-outline-primary:hover {
color: #fff;
background-color: #A3BE8C;
border-color: #A3BE8C;
}
.color-change-dark .btn-outline-primary:not(:disabled):not(.disabled).active,
.color-change-dark .btn-outline-primary:not(:disabled):not(.disabled):active,
.color-change-dark .show > .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #5E81AC;
border-color: #BF616A;
}
.btn {
border-radius: 0;
}
.me h1,
.me h6 {
font-family: bnimbus;
}
.me {
margin-top: 100px;
text-align: center;
}
hr {
width: 85%;
}
.row {
text-align: center;
}
.btn-outline-danger {
color: #BF616A;
border-color: #BF616A;
}
.btn-outline-danger:hover {
color: #fff;
background-color: #BF616A;
border-color: #BF616A;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
color: #fff;
background-color: #BF616A;
border-color: #BF616A;
}
.myimage {
width: 10rem;
height: 0rem;
-o-object-fit: cover;
object-fit: cover;
position: relative;
top: 0;
left: 50%;
border-radius: 50%;
display: block;
-webkit-transition: all 1s ease-out;
transition: all 1s ease-out;
}
.trigger:hover > .myimage {
height: 10rem;
}
.skill label {
float: left;
}
.skill progress {
float: right;
}
/*# sourceMappingURL=styles.css.map */ | 0.36376 | 0.065187 |
@page {
margin-header: 11pt;
margin-footer: 0;
margin-left: 0;
margin-right: 0;
header: page-header;
footer: page-footer;
margin-top: 1.125in;
margin-bottom: 0.625in;
}
@page :first {
header: page-header-first;
/* footer: page-footer-first; */
}
.margin {
height: 100%;
margin-left: 0.77in;
margin-right: 0.77in;
/* border: 1px dashed black; */
}
.page-break {
page-break-after: always;
}
.header {
width: 100%;
}
.header-image {
padding-left: 5.5pt;
padding-bottom: 0;
}
.header-title {
font-family: 'calibri';
font-size: 18pt;
font-weight: bold;
text-align: right;
white-space: nowrap;
color: #44546a;
padding-left: 5.5pt;
padding-right: 5.5pt;
padding-bottom: 0;
vertical-align: bottom;
}
.header-title-lg {
font-size: 1.5em;
text-transform: uppercase;
}
.header-title-sm {
font-size: 0.75em;
}
.header-left-box {
width: 0.68in;
height: 0.65in;
background-color: #44546a;
vertical-align: bottom;
padding: 0;
}
.header-right-box {
width: 0.68in;
height: 0.65in;
background-color: #2e74b6;
vertical-align: bottom;
padding: 0;
}
.table-footer {
width: 100%;
margin-left: 0.25in;
margin-right: 0.25in;
margin-bottom: 1em;
}
.footer-logo {
width: 50%;
}
.footer-page {
width: 50%;
text-align: right;
font-family: 'calibri';
font-size: 11pt;
color: #5b9bd5;
vertical-align: bottom;
}
.footer-link {
text-align: right;
font-family: 'calibri';
font-size: 11pt;
color: #5b9bd5;
text-decoration: none;
}
body {
font-family: 'calibri';
font-size: 11pt;
font-weight: normal;
}
table {
border-collapse: collapse;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
p,
li {
text-align: justify;
}
ol,
ul,
li {
margin-top: 0;
margin-bottom: 0;
}
.section-title {
color: #2e74b6;
font-family: 'calibri';
font-size: 14pt;
font-weight: normal;
border-bottom: 2px solid #2e74b6;
}
.table-striped {
border: 1px solid #f2f2f2;
}
.table-striped tr:nth-child(even) {
background-color: #f2f2f2;
}
.bg-gray {
background-color: #f2f2f2;
}
.inline-block {
display: inline-block;
}
.float-left {
float: left;
}
.font-bold {
font-weight: bold;
}
.text-left {
text-align: left;
}
.text-justify {
text-align: justify;
}
.align-top {
vertical-align: top;
}
.text-sm {
font-size: 0.85em;
}
.text-xs {
font-size: 0.75em;
}
.nowrap {
white-space: nowrap;
}
.w-none {
width: 0;
}
.w-full {
width: 100%;
}
.w-third {
width: 75%;
}
.w-half {
width: 50%;
}
.w-quart {
width: 25%;
}
.w-4 {
width: 1em;
}
.p-1 {
padding: 0.25em;
}
.p-2 {
padding: 0.5em;
}
.pr-2 {
padding-right: 0.5em;
}
.py-2 {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.text-shark {
color: black;
}
.text-red-600 {
color: #dc2626;
}
.text-green-600 {
color: #059669;
} | resources/css/pdf.css | @page {
margin-header: 11pt;
margin-footer: 0;
margin-left: 0;
margin-right: 0;
header: page-header;
footer: page-footer;
margin-top: 1.125in;
margin-bottom: 0.625in;
}
@page :first {
header: page-header-first;
/* footer: page-footer-first; */
}
.margin {
height: 100%;
margin-left: 0.77in;
margin-right: 0.77in;
/* border: 1px dashed black; */
}
.page-break {
page-break-after: always;
}
.header {
width: 100%;
}
.header-image {
padding-left: 5.5pt;
padding-bottom: 0;
}
.header-title {
font-family: 'calibri';
font-size: 18pt;
font-weight: bold;
text-align: right;
white-space: nowrap;
color: #44546a;
padding-left: 5.5pt;
padding-right: 5.5pt;
padding-bottom: 0;
vertical-align: bottom;
}
.header-title-lg {
font-size: 1.5em;
text-transform: uppercase;
}
.header-title-sm {
font-size: 0.75em;
}
.header-left-box {
width: 0.68in;
height: 0.65in;
background-color: #44546a;
vertical-align: bottom;
padding: 0;
}
.header-right-box {
width: 0.68in;
height: 0.65in;
background-color: #2e74b6;
vertical-align: bottom;
padding: 0;
}
.table-footer {
width: 100%;
margin-left: 0.25in;
margin-right: 0.25in;
margin-bottom: 1em;
}
.footer-logo {
width: 50%;
}
.footer-page {
width: 50%;
text-align: right;
font-family: 'calibri';
font-size: 11pt;
color: #5b9bd5;
vertical-align: bottom;
}
.footer-link {
text-align: right;
font-family: 'calibri';
font-size: 11pt;
color: #5b9bd5;
text-decoration: none;
}
body {
font-family: 'calibri';
font-size: 11pt;
font-weight: normal;
}
table {
border-collapse: collapse;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
p,
li {
text-align: justify;
}
ol,
ul,
li {
margin-top: 0;
margin-bottom: 0;
}
.section-title {
color: #2e74b6;
font-family: 'calibri';
font-size: 14pt;
font-weight: normal;
border-bottom: 2px solid #2e74b6;
}
.table-striped {
border: 1px solid #f2f2f2;
}
.table-striped tr:nth-child(even) {
background-color: #f2f2f2;
}
.bg-gray {
background-color: #f2f2f2;
}
.inline-block {
display: inline-block;
}
.float-left {
float: left;
}
.font-bold {
font-weight: bold;
}
.text-left {
text-align: left;
}
.text-justify {
text-align: justify;
}
.align-top {
vertical-align: top;
}
.text-sm {
font-size: 0.85em;
}
.text-xs {
font-size: 0.75em;
}
.nowrap {
white-space: nowrap;
}
.w-none {
width: 0;
}
.w-full {
width: 100%;
}
.w-third {
width: 75%;
}
.w-half {
width: 50%;
}
.w-quart {
width: 25%;
}
.w-4 {
width: 1em;
}
.p-1 {
padding: 0.25em;
}
.p-2 {
padding: 0.5em;
}
.pr-2 {
padding-right: 0.5em;
}
.py-2 {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.text-shark {
color: black;
}
.text-red-600 {
color: #dc2626;
}
.text-green-600 {
color: #059669;
} | 0.504639 | 0.13201 |
@font-face {
font-family: "Lato Black";
src: url("Lato/Lato-Black.ttf"); }
@font-face {
font-family: "Lato Black-Italic";
src: url("Lato/Lato-BlackItalic.ttf"); }
@font-face {
font-family: "Lato Bold";
src: url("Lato/Lato-Bold.ttf"); }
@font-face {
font-family: "Lato Bold-Italic";
src: url("Lato/Lato-BoldItalic.ttf"); }
@font-face {
font-family: "Lato Hairline";
src: url("Lato/Lato-Hairline.ttf"); }
@font-face {
font-family: "Lato Hairline-Italic";
src: url("Lato/Lato-HairlineItalic.ttf"); }
@font-face {
font-family: "Lato Italic";
src: url("Lato/Lato-Italic.ttf"); }
@font-face {
font-family: "Lato Light";
src: url("Lato/Lato-Light.ttf"); }
@font-face {
font-family: "Lato Light-Italic";
src: url("Lato/Lato-LightItalic.ttf"); }
@font-face {
font-family: "Lato";
src: url("Lato/Lato-Regular.ttf"); }
body {
overflow-x: hidden;
margin: 0px;
width: 100%;
height: 100vh; }
body #background_header {
width: 100%;
height: auto;
position: fixed; }
body header {
width: 100%;
height: 13%; }
body header .bloc-logo {
position: relative;
width: 100%;
height: 64px;
float: left; }
body header .bloc-logo canvas,
body header .bloc-logo .logo-mask {
display: block;
width: 100%;
height: 64px; }
body header .bloc-logo .logo-mask {
position: absolute;
top: 0;
left: 0;
background-image: url("../../../_pictures/navpage.png");
text-indent: -9999px; }
body header h1 {
position: absolute;
left: 152px;
top: 5px;
font-family: "Lato Italic";
color: #f9f9f9;
font-size: 23px; }
body header h1 a {
font-family: "Lato Italic";
color: #f9f9f9;
font-size: 23px;
text-decoration: none; }
body header span {
display: flex;
width: 500px;
height: 50px;
position: absolute;
right: 0px;
top: 25px; }
body header span a {
color: #f9f9f9;
font-family: "Lato Light";
text-decoration: none;
margin-left: 30px;
cursor: pointer; }
body header span a:hover {
text-decoration: underline; }
body header span #link_img_account {
margin-left: 7px; }
body header span #link_img_account #img_account {
width: 35px;
height: auto;
margin-top: -8px; }
body header span #link_img_account:hover {
text-decoration: none; }
body section {
width: 86%;
height: 372px;
margin-bottom: 40px;
position: relative;
left: 7%;
border-radius: 4px;
background-color: #f9f9f9; }
body section img {
width: 200px;
height: auto;
border-radius: 50%;
border: 1px solid #f9f9f9;
background-color: #ff4054;
position: relative;
top: 70px;
left: 73px; }
body section #firstlastname {
width: 100px;
position: relative;
top: -108px;
left: 335px;
display: flex;
flex-direction: row; }
body section #firstlastname p {
margin: 0px; }
body section #firstlastname p:first-child {
font-family: "Lato";
font-size: 18px;
color: #404040;
margin-right: 5px; }
body section #firstlastname p:last-child {
margin-top: -2px;
font-family: "Lato Bold";
font-size: 21px;
color: #ff4054; }
body section #email {
position: relative;
top: -93px;
left: 335px;
font-family: "Lato";
font-size: 17px;
color: #008489; }
body section #birth {
position: relative;
top: -83px;
left: 335px;
font-family: "Lato Light";
font-size: 15px;
color: #404040; }
body section #register {
position: relative;
top: -92px;
left: 335px;
font-family: "Lato Light";
font-size: 15px;
color: #404040; }
body section .note_profil {
font-family: "Lato Light-Italic";
font-size: 13px;
color: #008489;
width: 50px;
position: relative;
top: -65px;
left: 129px; }
body section .note_profil span {
font-family: "Lato Light";
font-size: 10px;
position: relative;
top: -17px;
left: 41px; }
body section a {
text-decoration: none;
color: #008489;
font-family: "Lato Light";
font-size: 14px;
position: relative;
top: -383px;
right: -95.7%; }
body section a .fa {
font-size: 12px; }
body section a:hover {
color: #404040; } | assets/styles/css/Website/styles_account.css | @font-face {
font-family: "Lato Black";
src: url("Lato/Lato-Black.ttf"); }
@font-face {
font-family: "Lato Black-Italic";
src: url("Lato/Lato-BlackItalic.ttf"); }
@font-face {
font-family: "Lato Bold";
src: url("Lato/Lato-Bold.ttf"); }
@font-face {
font-family: "Lato Bold-Italic";
src: url("Lato/Lato-BoldItalic.ttf"); }
@font-face {
font-family: "Lato Hairline";
src: url("Lato/Lato-Hairline.ttf"); }
@font-face {
font-family: "Lato Hairline-Italic";
src: url("Lato/Lato-HairlineItalic.ttf"); }
@font-face {
font-family: "Lato Italic";
src: url("Lato/Lato-Italic.ttf"); }
@font-face {
font-family: "Lato Light";
src: url("Lato/Lato-Light.ttf"); }
@font-face {
font-family: "Lato Light-Italic";
src: url("Lato/Lato-LightItalic.ttf"); }
@font-face {
font-family: "Lato";
src: url("Lato/Lato-Regular.ttf"); }
body {
overflow-x: hidden;
margin: 0px;
width: 100%;
height: 100vh; }
body #background_header {
width: 100%;
height: auto;
position: fixed; }
body header {
width: 100%;
height: 13%; }
body header .bloc-logo {
position: relative;
width: 100%;
height: 64px;
float: left; }
body header .bloc-logo canvas,
body header .bloc-logo .logo-mask {
display: block;
width: 100%;
height: 64px; }
body header .bloc-logo .logo-mask {
position: absolute;
top: 0;
left: 0;
background-image: url("../../../_pictures/navpage.png");
text-indent: -9999px; }
body header h1 {
position: absolute;
left: 152px;
top: 5px;
font-family: "Lato Italic";
color: #f9f9f9;
font-size: 23px; }
body header h1 a {
font-family: "Lato Italic";
color: #f9f9f9;
font-size: 23px;
text-decoration: none; }
body header span {
display: flex;
width: 500px;
height: 50px;
position: absolute;
right: 0px;
top: 25px; }
body header span a {
color: #f9f9f9;
font-family: "Lato Light";
text-decoration: none;
margin-left: 30px;
cursor: pointer; }
body header span a:hover {
text-decoration: underline; }
body header span #link_img_account {
margin-left: 7px; }
body header span #link_img_account #img_account {
width: 35px;
height: auto;
margin-top: -8px; }
body header span #link_img_account:hover {
text-decoration: none; }
body section {
width: 86%;
height: 372px;
margin-bottom: 40px;
position: relative;
left: 7%;
border-radius: 4px;
background-color: #f9f9f9; }
body section img {
width: 200px;
height: auto;
border-radius: 50%;
border: 1px solid #f9f9f9;
background-color: #ff4054;
position: relative;
top: 70px;
left: 73px; }
body section #firstlastname {
width: 100px;
position: relative;
top: -108px;
left: 335px;
display: flex;
flex-direction: row; }
body section #firstlastname p {
margin: 0px; }
body section #firstlastname p:first-child {
font-family: "Lato";
font-size: 18px;
color: #404040;
margin-right: 5px; }
body section #firstlastname p:last-child {
margin-top: -2px;
font-family: "Lato Bold";
font-size: 21px;
color: #ff4054; }
body section #email {
position: relative;
top: -93px;
left: 335px;
font-family: "Lato";
font-size: 17px;
color: #008489; }
body section #birth {
position: relative;
top: -83px;
left: 335px;
font-family: "Lato Light";
font-size: 15px;
color: #404040; }
body section #register {
position: relative;
top: -92px;
left: 335px;
font-family: "Lato Light";
font-size: 15px;
color: #404040; }
body section .note_profil {
font-family: "Lato Light-Italic";
font-size: 13px;
color: #008489;
width: 50px;
position: relative;
top: -65px;
left: 129px; }
body section .note_profil span {
font-family: "Lato Light";
font-size: 10px;
position: relative;
top: -17px;
left: 41px; }
body section a {
text-decoration: none;
color: #008489;
font-family: "Lato Light";
font-size: 14px;
position: relative;
top: -383px;
right: -95.7%; }
body section a .fa {
font-size: 12px; }
body section a:hover {
color: #404040; } | 0.379034 | 0.064095 |
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&family=Julius+Sans+One&family=Quicksand&display=swap");
/* font-family: 'Comfortaa', cursive;
font-family: 'Julius Sans One', sans-serif;
font-family: 'Quicksand', sans-serif; */
* {
box-sizing: border-box;
}
html {
background-color: #def;
background-image: radial-gradient(white 15%, transparent 16%),
radial-gradient(white 15%, transparent 16%);
background-size: 60px 60px;
background-position: 0 0, 30px 30px;
}
h1,
button, nav, #daily, #weekly, #ihabitTitle {
font-family: "Comfortaa", cursive;
}
h2,
h3 {
font-family: "Julius Sans One", sans-serif;
}
p,
label,
td {
font-family: "Quicksand", sans-serif;
}
#loginbtn, #registerbtn, #logoutbtn {
text-transform: uppercase;
display: inline-block;
padding: 0.35em 1.2em;
border: 0.17em solid black;
margin: 0 0.3em 0.3em 0;
border-radius: 0.3em;
box-sizing: border-box;
text-decoration: none;
text-align: center;
transition: all 0.2s;
background-color: rgba(127, 255, 212, 0);
cursor: pointer;
}
input {
padding: 0.35em 1.2em;
border: 0.17em solid black;
margin: 0.5rem 0.3em 0.3em 0;
border-radius: 0.3em;
box-sizing: border-box;
background-color: rgba(127, 255, 212, 0);
margin-left: 10px;
}
button:hover, #btn:hover {
border: 0.17em solid white;
background-color: black;
color: white;
}
input:focus {
background-color: white;
}
#content,
#content1 {
display: block;
}
th,
td {
padding: 15px;
}
.loginInput {
width: 100%;
}
#habit {
border: 2px solid white;
margin: 25px;
border-radius: 20px;
display: flex;
width: 88vw;
background-color:#def;
left: 0;
}
.habitItem {
flex-direction: column;
padding: 20px;
}
#countBtn {
border: none;
padding: 20px;
text-align: center;
color: #00BCD4;
background: #ECECEC;
width: 10%;
height: 10vh;
margin-top: 20px;
border-radius: 20px;
margin-right: 20px;
cursor: pointer;
}
.delete-btn {
border: none;
width: 40px;
height: 40px;
border-radius: 20px;
text-align: center;
margin-top: 30px;
cursor: pointer;
}
#habith3 {
font-weight: bold;
} | clients/src/styles/index.css | @import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&family=Julius+Sans+One&family=Quicksand&display=swap");
/* font-family: 'Comfortaa', cursive;
font-family: 'Julius Sans One', sans-serif;
font-family: 'Quicksand', sans-serif; */
* {
box-sizing: border-box;
}
html {
background-color: #def;
background-image: radial-gradient(white 15%, transparent 16%),
radial-gradient(white 15%, transparent 16%);
background-size: 60px 60px;
background-position: 0 0, 30px 30px;
}
h1,
button, nav, #daily, #weekly, #ihabitTitle {
font-family: "Comfortaa", cursive;
}
h2,
h3 {
font-family: "Julius Sans One", sans-serif;
}
p,
label,
td {
font-family: "Quicksand", sans-serif;
}
#loginbtn, #registerbtn, #logoutbtn {
text-transform: uppercase;
display: inline-block;
padding: 0.35em 1.2em;
border: 0.17em solid black;
margin: 0 0.3em 0.3em 0;
border-radius: 0.3em;
box-sizing: border-box;
text-decoration: none;
text-align: center;
transition: all 0.2s;
background-color: rgba(127, 255, 212, 0);
cursor: pointer;
}
input {
padding: 0.35em 1.2em;
border: 0.17em solid black;
margin: 0.5rem 0.3em 0.3em 0;
border-radius: 0.3em;
box-sizing: border-box;
background-color: rgba(127, 255, 212, 0);
margin-left: 10px;
}
button:hover, #btn:hover {
border: 0.17em solid white;
background-color: black;
color: white;
}
input:focus {
background-color: white;
}
#content,
#content1 {
display: block;
}
th,
td {
padding: 15px;
}
.loginInput {
width: 100%;
}
#habit {
border: 2px solid white;
margin: 25px;
border-radius: 20px;
display: flex;
width: 88vw;
background-color:#def;
left: 0;
}
.habitItem {
flex-direction: column;
padding: 20px;
}
#countBtn {
border: none;
padding: 20px;
text-align: center;
color: #00BCD4;
background: #ECECEC;
width: 10%;
height: 10vh;
margin-top: 20px;
border-radius: 20px;
margin-right: 20px;
cursor: pointer;
}
.delete-btn {
border: none;
width: 40px;
height: 40px;
border-radius: 20px;
text-align: center;
margin-top: 30px;
cursor: pointer;
}
#habith3 {
font-weight: bold;
} | 0.328745 | 0.137243 |
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-alien:before { content: "\f100"; }
.flaticon-ambulance:before { content: "\f101"; }
.flaticon-ambulance-1:before { content: "\f102"; }
.flaticon-aries:before { content: "\f103"; }
.flaticon-armchair:before { content: "\f104"; }
.flaticon-baby:before { content: "\f105"; }
.flaticon-baby-1:before { content: "\f106"; }
.flaticon-baby-girl:before { content: "\f107"; }
.flaticon-back:before { content: "\f108"; }
.flaticon-balance:before { content: "\f109"; }
.flaticon-bar-chart:before { content: "\f10a"; }
.flaticon-bar-chart-1:before { content: "\f10b"; }
.flaticon-battery:before { content: "\f10c"; }
.flaticon-battery-1:before { content: "\f10d"; }
.flaticon-battery-2:before { content: "\f10e"; }
.flaticon-battery-3:before { content: "\f10f"; }
.flaticon-battery-4:before { content: "\f110"; }
.flaticon-bedside-table:before { content: "\f111"; }
.flaticon-beer:before { content: "\f112"; }
.flaticon-binoculars:before { content: "\f113"; }
.flaticon-blind:before { content: "\f114"; }
.flaticon-book:before { content: "\f115"; }
.flaticon-cancer:before { content: "\f116"; }
.flaticon-car:before { content: "\f117"; }
.flaticon-car-1:before { content: "\f118"; }
.flaticon-car-2:before { content: "\f119"; }
.flaticon-center-alignment:before { content: "\f11a"; }
.flaticon-center-alignment-1:before { content: "\f11b"; }
.flaticon-chicken:before { content: "\f11c"; }
.flaticon-chicken-1:before { content: "\f11d"; }
.flaticon-chicken-2:before { content: "\f11e"; }
.flaticon-clock:before { content: "\f11f"; }
.flaticon-clock-1:before { content: "\f120"; }
.flaticon-clock-2:before { content: "\f121"; }
.flaticon-clock-3:before { content: "\f122"; }
.flaticon-clock-4:before { content: "\f123"; }
.flaticon-cloud:before { content: "\f124"; }
.flaticon-cloud-1:before { content: "\f125"; }
.flaticon-cloud-2:before { content: "\f126"; }
.flaticon-cloud-computing:before { content: "\f127"; }
.flaticon-cloudy:before { content: "\f128"; }
.flaticon-coins:before { content: "\f129"; }
.flaticon-compass:before { content: "\f12a"; }
.flaticon-conga:before { content: "\f12b"; }
.flaticon-copy:before { content: "\f12c"; }
.flaticon-corndog:before { content: "\f12d"; }
.flaticon-cow:before { content: "\f12e"; }
.flaticon-customer-service:before { content: "\f12f"; }
.flaticon-cutlery:before { content: "\f130"; }
.flaticon-diagonal-arrow:before { content: "\f131"; }
.flaticon-diagonal-arrow-1:before { content: "\f132"; }
.flaticon-diagonal-arrow-2:before { content: "\f133"; }
.flaticon-diagonal-arrow-3:before { content: "\f134"; }
.flaticon-diamond:before { content: "\f135"; }
.flaticon-diaper:before { content: "\f136"; }
.flaticon-download:before { content: "\f137"; }
.flaticon-download-1:before { content: "\f138"; }
.flaticon-electric-guitar:before { content: "\f139"; }
.flaticon-emoticon:before { content: "\f13a"; }
.flaticon-export:before { content: "\f13b"; }
.flaticon-eye:before { content: "\f13c"; }
.flaticon-eye-1:before { content: "\f13d"; }
.flaticon-feeding-bottle:before { content: "\f13e"; }
.flaticon-file:before { content: "\f13f"; }
.flaticon-file-1:before { content: "\f140"; }
.flaticon-file-2:before { content: "\f141"; }
.flaticon-file-3:before { content: "\f142"; }
.flaticon-film-strip:before { content: "\f143"; }
.flaticon-flag:before { content: "\f144"; }
.flaticon-flash:before { content: "\f145"; }
.flaticon-fork:before { content: "\f146"; }
.flaticon-fountain-pen:before { content: "\f147"; }
.flaticon-fountain-pen-1:before { content: "\f148"; }
.flaticon-fountain-pen-2:before { content: "\f149"; }
.flaticon-fountain-pen-3:before { content: "\f14a"; }
.flaticon-fountain-pen-4:before { content: "\f14b"; }
.flaticon-gemini:before { content: "\f14c"; }
.flaticon-glass-of-water:before { content: "\f14d"; }
.flaticon-guitar:before { content: "\f14e"; }
.flaticon-ham:before { content: "\f14f"; }
.flaticon-happy:before { content: "\f150"; }
.flaticon-happy-1:before { content: "\f151"; }
.flaticon-head:before { content: "\f152"; }
.flaticon-heavy-metal:before { content: "\f153"; }
.flaticon-home:before { content: "\f154"; }
.flaticon-home-1:before { content: "\f155"; }
.flaticon-home-2:before { content: "\f156"; }
.flaticon-home-3:before { content: "\f157"; }
.flaticon-home-4:before { content: "\f158"; }
.flaticon-horse:before { content: "\f159"; }
.flaticon-id-card:before { content: "\f15a"; }
.flaticon-jar:before { content: "\f15b"; }
.flaticon-justify:before { content: "\f15c"; }
.flaticon-laundry:before { content: "\f15d"; }
.flaticon-laundry-1:before { content: "\f15e"; }
.flaticon-laundry-2:before { content: "\f15f"; }
.flaticon-laundry-3:before { content: "\f160"; }
.flaticon-laundry-4:before { content: "\f161"; }
.flaticon-laundry-5:before { content: "\f162"; }
.flaticon-left-alignment:before { content: "\f163"; }
.flaticon-left-alignment-1:before { content: "\f164"; }
.flaticon-lemon:before { content: "\f165"; }
.flaticon-lemon-1:before { content: "\f166"; }
.flaticon-lemonade:before { content: "\f167"; }
.flaticon-lemonade-1:before { content: "\f168"; }
.flaticon-leo:before { content: "\f169"; }
.flaticon-light-bulb:before { content: "\f16a"; }
.flaticon-like:before { content: "\f16b"; }
.flaticon-mail:before { content: "\f16c"; }
.flaticon-mail-1:before { content: "\f16d"; }
.flaticon-mail-2:before { content: "\f16e"; }
.flaticon-mail-3:before { content: "\f16f"; }
.flaticon-mail-4:before { content: "\f170"; }
.flaticon-mail-5:before { content: "\f171"; }
.flaticon-man:before { content: "\f172"; }
.flaticon-man-1:before { content: "\f173"; }
.flaticon-map:before { content: "\f174"; }
.flaticon-maths:before { content: "\f175"; }
.flaticon-medical-result:before { content: "\f176"; }
.flaticon-money:before { content: "\f177"; }
.flaticon-monitor:before { content: "\f178"; }
.flaticon-monitor-1:before { content: "\f179"; }
.flaticon-monitor-2:before { content: "\f17a"; }
.flaticon-monitor-3:before { content: "\f17b"; }
.flaticon-monitor-4:before { content: "\f17c"; }
.flaticon-monitor-5:before { content: "\f17d"; }
.flaticon-muted:before { content: "\f17e"; }
.flaticon-next:before { content: "\f17f"; }
.flaticon-ninja:before { content: "\f180"; }
.flaticon-padlock:before { content: "\f181"; }
.flaticon-padlock-1:before { content: "\f182"; }
.flaticon-pear:before { content: "\f183"; }
.flaticon-phone-call:before { content: "\f184"; }
.flaticon-phone-call-1:before { content: "\f185"; }
.flaticon-phone-call-2:before { content: "\f186"; }
.flaticon-phone-call-3:before { content: "\f187"; }
.flaticon-photo-camera:before { content: "\f188"; }
.flaticon-pie-chart:before { content: "\f189"; }
.flaticon-pie-chart-1:before { content: "\f18a"; }
.flaticon-piggy-bank:before { content: "\f18b"; }
.flaticon-pin:before { content: "\f18c"; }
.flaticon-placeholder:before { content: "\f18d"; }
.flaticon-placeholder-1:before { content: "\f18e"; }
.flaticon-placeholder-2:before { content: "\f18f"; }
.flaticon-plug:before { content: "\f190"; }
.flaticon-plug-1:before { content: "\f191"; }
.flaticon-pointing:before { content: "\f192"; }
.flaticon-rain:before { content: "\f193"; }
.flaticon-right-alignment:before { content: "\f194"; }
.flaticon-right-alignment-1:before { content: "\f195"; }
.flaticon-rolling-pin:before { content: "\f196"; }
.flaticon-ruler:before { content: "\f197"; }
.flaticon-ruler-1:before { content: "\f198"; }
.flaticon-sad:before { content: "\f199"; }
.flaticon-saturn:before { content: "\f19a"; }
.flaticon-saturn-1:before { content: "\f19b"; }
.flaticon-sausage:before { content: "\f19c"; }
.flaticon-sheep:before { content: "\f19d"; }
.flaticon-sheep-1:before { content: "\f19e"; }
.flaticon-shield:before { content: "\f19f"; }
.flaticon-shop:before { content: "\f1a0"; }
.flaticon-shopping-bag:before { content: "\f1a1"; }
.flaticon-shopping-basket:before { content: "\f1a2"; }
.flaticon-smartphone:before { content: "\f1a3"; }
.flaticon-smartphone-1:before { content: "\f1a4"; }
.flaticon-smartphone-2:before { content: "\f1a5"; }
.flaticon-smartphone-3:before { content: "\f1a6"; }
.flaticon-smile:before { content: "\f1a7"; }
.flaticon-socket:before { content: "\f1a8"; }
.flaticon-speech-bubble:before { content: "\f1a9"; }
.flaticon-speech-bubble-1:before { content: "\f1aa"; }
.flaticon-speech-bubble-2:before { content: "\f1ab"; }
.flaticon-speech-bubble-3:before { content: "\f1ac"; }
.flaticon-spoon:before { content: "\f1ad"; }
.flaticon-sun:before { content: "\f1ae"; }
.flaticon-surprised:before { content: "\f1af"; }
.flaticon-syringe:before { content: "\f1b0"; }
.flaticon-table:before { content: "\f1b1"; }
.flaticon-tap:before { content: "\f1b2"; }
.flaticon-tap-1:before { content: "\f1b3"; }
.flaticon-tap-2:before { content: "\f1b4"; }
.flaticon-taurus:before { content: "\f1b5"; }
.flaticon-telephone:before { content: "\f1b6"; }
.flaticon-toaster:before { content: "\f1b7"; }
.flaticon-ufo:before { content: "\f1b8"; }
.flaticon-upload:before { content: "\f1b9"; }
.flaticon-upload-1:before { content: "\f1ba"; }
.flaticon-van:before { content: "\f1bb"; }
.flaticon-victory:before { content: "\f1bc"; }
.flaticon-video-camera:before { content: "\f1bd"; }
.flaticon-video-camera-1:before { content: "\f1be"; }
.flaticon-watermelon:before { content: "\f1bf"; }
.flaticon-weight:before { content: "\f1c0"; }
.flaticon-wifi:before { content: "\f1c1"; }
.flaticon-wifi-1:before { content: "\f1c2"; }
.flaticon-wifi-2:before { content: "\f1c3"; }
.flaticon-wifi-3:before { content: "\f1c4"; }
.flaticon-woman:before { content: "\f1c5"; }
.flaticon-woman-1:before { content: "\f1c6"; }
.flaticon-zip:before { content: "\f1c7"; } | public/font/f1/flaticon.css | @font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-alien:before { content: "\f100"; }
.flaticon-ambulance:before { content: "\f101"; }
.flaticon-ambulance-1:before { content: "\f102"; }
.flaticon-aries:before { content: "\f103"; }
.flaticon-armchair:before { content: "\f104"; }
.flaticon-baby:before { content: "\f105"; }
.flaticon-baby-1:before { content: "\f106"; }
.flaticon-baby-girl:before { content: "\f107"; }
.flaticon-back:before { content: "\f108"; }
.flaticon-balance:before { content: "\f109"; }
.flaticon-bar-chart:before { content: "\f10a"; }
.flaticon-bar-chart-1:before { content: "\f10b"; }
.flaticon-battery:before { content: "\f10c"; }
.flaticon-battery-1:before { content: "\f10d"; }
.flaticon-battery-2:before { content: "\f10e"; }
.flaticon-battery-3:before { content: "\f10f"; }
.flaticon-battery-4:before { content: "\f110"; }
.flaticon-bedside-table:before { content: "\f111"; }
.flaticon-beer:before { content: "\f112"; }
.flaticon-binoculars:before { content: "\f113"; }
.flaticon-blind:before { content: "\f114"; }
.flaticon-book:before { content: "\f115"; }
.flaticon-cancer:before { content: "\f116"; }
.flaticon-car:before { content: "\f117"; }
.flaticon-car-1:before { content: "\f118"; }
.flaticon-car-2:before { content: "\f119"; }
.flaticon-center-alignment:before { content: "\f11a"; }
.flaticon-center-alignment-1:before { content: "\f11b"; }
.flaticon-chicken:before { content: "\f11c"; }
.flaticon-chicken-1:before { content: "\f11d"; }
.flaticon-chicken-2:before { content: "\f11e"; }
.flaticon-clock:before { content: "\f11f"; }
.flaticon-clock-1:before { content: "\f120"; }
.flaticon-clock-2:before { content: "\f121"; }
.flaticon-clock-3:before { content: "\f122"; }
.flaticon-clock-4:before { content: "\f123"; }
.flaticon-cloud:before { content: "\f124"; }
.flaticon-cloud-1:before { content: "\f125"; }
.flaticon-cloud-2:before { content: "\f126"; }
.flaticon-cloud-computing:before { content: "\f127"; }
.flaticon-cloudy:before { content: "\f128"; }
.flaticon-coins:before { content: "\f129"; }
.flaticon-compass:before { content: "\f12a"; }
.flaticon-conga:before { content: "\f12b"; }
.flaticon-copy:before { content: "\f12c"; }
.flaticon-corndog:before { content: "\f12d"; }
.flaticon-cow:before { content: "\f12e"; }
.flaticon-customer-service:before { content: "\f12f"; }
.flaticon-cutlery:before { content: "\f130"; }
.flaticon-diagonal-arrow:before { content: "\f131"; }
.flaticon-diagonal-arrow-1:before { content: "\f132"; }
.flaticon-diagonal-arrow-2:before { content: "\f133"; }
.flaticon-diagonal-arrow-3:before { content: "\f134"; }
.flaticon-diamond:before { content: "\f135"; }
.flaticon-diaper:before { content: "\f136"; }
.flaticon-download:before { content: "\f137"; }
.flaticon-download-1:before { content: "\f138"; }
.flaticon-electric-guitar:before { content: "\f139"; }
.flaticon-emoticon:before { content: "\f13a"; }
.flaticon-export:before { content: "\f13b"; }
.flaticon-eye:before { content: "\f13c"; }
.flaticon-eye-1:before { content: "\f13d"; }
.flaticon-feeding-bottle:before { content: "\f13e"; }
.flaticon-file:before { content: "\f13f"; }
.flaticon-file-1:before { content: "\f140"; }
.flaticon-file-2:before { content: "\f141"; }
.flaticon-file-3:before { content: "\f142"; }
.flaticon-film-strip:before { content: "\f143"; }
.flaticon-flag:before { content: "\f144"; }
.flaticon-flash:before { content: "\f145"; }
.flaticon-fork:before { content: "\f146"; }
.flaticon-fountain-pen:before { content: "\f147"; }
.flaticon-fountain-pen-1:before { content: "\f148"; }
.flaticon-fountain-pen-2:before { content: "\f149"; }
.flaticon-fountain-pen-3:before { content: "\f14a"; }
.flaticon-fountain-pen-4:before { content: "\f14b"; }
.flaticon-gemini:before { content: "\f14c"; }
.flaticon-glass-of-water:before { content: "\f14d"; }
.flaticon-guitar:before { content: "\f14e"; }
.flaticon-ham:before { content: "\f14f"; }
.flaticon-happy:before { content: "\f150"; }
.flaticon-happy-1:before { content: "\f151"; }
.flaticon-head:before { content: "\f152"; }
.flaticon-heavy-metal:before { content: "\f153"; }
.flaticon-home:before { content: "\f154"; }
.flaticon-home-1:before { content: "\f155"; }
.flaticon-home-2:before { content: "\f156"; }
.flaticon-home-3:before { content: "\f157"; }
.flaticon-home-4:before { content: "\f158"; }
.flaticon-horse:before { content: "\f159"; }
.flaticon-id-card:before { content: "\f15a"; }
.flaticon-jar:before { content: "\f15b"; }
.flaticon-justify:before { content: "\f15c"; }
.flaticon-laundry:before { content: "\f15d"; }
.flaticon-laundry-1:before { content: "\f15e"; }
.flaticon-laundry-2:before { content: "\f15f"; }
.flaticon-laundry-3:before { content: "\f160"; }
.flaticon-laundry-4:before { content: "\f161"; }
.flaticon-laundry-5:before { content: "\f162"; }
.flaticon-left-alignment:before { content: "\f163"; }
.flaticon-left-alignment-1:before { content: "\f164"; }
.flaticon-lemon:before { content: "\f165"; }
.flaticon-lemon-1:before { content: "\f166"; }
.flaticon-lemonade:before { content: "\f167"; }
.flaticon-lemonade-1:before { content: "\f168"; }
.flaticon-leo:before { content: "\f169"; }
.flaticon-light-bulb:before { content: "\f16a"; }
.flaticon-like:before { content: "\f16b"; }
.flaticon-mail:before { content: "\f16c"; }
.flaticon-mail-1:before { content: "\f16d"; }
.flaticon-mail-2:before { content: "\f16e"; }
.flaticon-mail-3:before { content: "\f16f"; }
.flaticon-mail-4:before { content: "\f170"; }
.flaticon-mail-5:before { content: "\f171"; }
.flaticon-man:before { content: "\f172"; }
.flaticon-man-1:before { content: "\f173"; }
.flaticon-map:before { content: "\f174"; }
.flaticon-maths:before { content: "\f175"; }
.flaticon-medical-result:before { content: "\f176"; }
.flaticon-money:before { content: "\f177"; }
.flaticon-monitor:before { content: "\f178"; }
.flaticon-monitor-1:before { content: "\f179"; }
.flaticon-monitor-2:before { content: "\f17a"; }
.flaticon-monitor-3:before { content: "\f17b"; }
.flaticon-monitor-4:before { content: "\f17c"; }
.flaticon-monitor-5:before { content: "\f17d"; }
.flaticon-muted:before { content: "\f17e"; }
.flaticon-next:before { content: "\f17f"; }
.flaticon-ninja:before { content: "\f180"; }
.flaticon-padlock:before { content: "\f181"; }
.flaticon-padlock-1:before { content: "\f182"; }
.flaticon-pear:before { content: "\f183"; }
.flaticon-phone-call:before { content: "\f184"; }
.flaticon-phone-call-1:before { content: "\f185"; }
.flaticon-phone-call-2:before { content: "\f186"; }
.flaticon-phone-call-3:before { content: "\f187"; }
.flaticon-photo-camera:before { content: "\f188"; }
.flaticon-pie-chart:before { content: "\f189"; }
.flaticon-pie-chart-1:before { content: "\f18a"; }
.flaticon-piggy-bank:before { content: "\f18b"; }
.flaticon-pin:before { content: "\f18c"; }
.flaticon-placeholder:before { content: "\f18d"; }
.flaticon-placeholder-1:before { content: "\f18e"; }
.flaticon-placeholder-2:before { content: "\f18f"; }
.flaticon-plug:before { content: "\f190"; }
.flaticon-plug-1:before { content: "\f191"; }
.flaticon-pointing:before { content: "\f192"; }
.flaticon-rain:before { content: "\f193"; }
.flaticon-right-alignment:before { content: "\f194"; }
.flaticon-right-alignment-1:before { content: "\f195"; }
.flaticon-rolling-pin:before { content: "\f196"; }
.flaticon-ruler:before { content: "\f197"; }
.flaticon-ruler-1:before { content: "\f198"; }
.flaticon-sad:before { content: "\f199"; }
.flaticon-saturn:before { content: "\f19a"; }
.flaticon-saturn-1:before { content: "\f19b"; }
.flaticon-sausage:before { content: "\f19c"; }
.flaticon-sheep:before { content: "\f19d"; }
.flaticon-sheep-1:before { content: "\f19e"; }
.flaticon-shield:before { content: "\f19f"; }
.flaticon-shop:before { content: "\f1a0"; }
.flaticon-shopping-bag:before { content: "\f1a1"; }
.flaticon-shopping-basket:before { content: "\f1a2"; }
.flaticon-smartphone:before { content: "\f1a3"; }
.flaticon-smartphone-1:before { content: "\f1a4"; }
.flaticon-smartphone-2:before { content: "\f1a5"; }
.flaticon-smartphone-3:before { content: "\f1a6"; }
.flaticon-smile:before { content: "\f1a7"; }
.flaticon-socket:before { content: "\f1a8"; }
.flaticon-speech-bubble:before { content: "\f1a9"; }
.flaticon-speech-bubble-1:before { content: "\f1aa"; }
.flaticon-speech-bubble-2:before { content: "\f1ab"; }
.flaticon-speech-bubble-3:before { content: "\f1ac"; }
.flaticon-spoon:before { content: "\f1ad"; }
.flaticon-sun:before { content: "\f1ae"; }
.flaticon-surprised:before { content: "\f1af"; }
.flaticon-syringe:before { content: "\f1b0"; }
.flaticon-table:before { content: "\f1b1"; }
.flaticon-tap:before { content: "\f1b2"; }
.flaticon-tap-1:before { content: "\f1b3"; }
.flaticon-tap-2:before { content: "\f1b4"; }
.flaticon-taurus:before { content: "\f1b5"; }
.flaticon-telephone:before { content: "\f1b6"; }
.flaticon-toaster:before { content: "\f1b7"; }
.flaticon-ufo:before { content: "\f1b8"; }
.flaticon-upload:before { content: "\f1b9"; }
.flaticon-upload-1:before { content: "\f1ba"; }
.flaticon-van:before { content: "\f1bb"; }
.flaticon-victory:before { content: "\f1bc"; }
.flaticon-video-camera:before { content: "\f1bd"; }
.flaticon-video-camera-1:before { content: "\f1be"; }
.flaticon-watermelon:before { content: "\f1bf"; }
.flaticon-weight:before { content: "\f1c0"; }
.flaticon-wifi:before { content: "\f1c1"; }
.flaticon-wifi-1:before { content: "\f1c2"; }
.flaticon-wifi-2:before { content: "\f1c3"; }
.flaticon-wifi-3:before { content: "\f1c4"; }
.flaticon-woman:before { content: "\f1c5"; }
.flaticon-woman-1:before { content: "\f1c6"; }
.flaticon-zip:before { content: "\f1c7"; } | 0.421909 | 0.210421 |
.js-offcanvas {
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10001;
width:100%;
height:100%;
background: rgba(0, 0, 0, 0.1);
}
.js-offcanvas.active{
display:block;
}
.js-offcanvas-body{
width:100%;
-webkit-transition: margin-left 0.3s ease-in-out;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
}
.js-offcanvas-body.js-offcanvas-body-right{
overflow-y: hidden;
margin-left: -210px;
position:fixed;
}
.js-offcanvas-body.js-offcanvas-body-left{
overflow-y: hidden;
margin-left: 210px;
position:fixed;
}
.js-offcanvas-sidebar{
width: 210px;
z-index: 10002;
position: fixed;
top: 0;
bottom: 0;
max-width: 100%;
color: #fff;
background: #333;
padding-right: 10px;
padding-left: 10px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
box-sizing:border-box;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-right {
right: 0;
left:auto;
margin-right:-210px;
-webkit-transition: margin-right 0.3s ease-in-out;
-moz-transition: margin-right 0.3s ease-in-out;
-o-transition: margin-right 0.3s ease-in-out;
-ms-transition: margin-right 0.3s ease-in-out;
transition: margin-right 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-left {
left: 0;
right:auto;
margin-left:-210px;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-right.active{
margin-right:0px;
transition: margin-right 0.3s ease-in-out;
-webkit-transition: margin-right 0.3s ease-in-out;
-moz-transition: margin-right 0.3s ease-in-out;
-o-transition: margin-right 0.3s ease-in-out;
-ms-transition: margin-right 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-left.active {
margin-left:0px;
transition: margin-left 0.3s ease-in-out;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
}
.js-header-fixed {
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
position: fixed;
top:0;
left:0;
width: 100%;
}
.js-offcanvas-body.js-offcanvas-body-right,
.js-offcanvas-body.js-offcanvas-body-left{
overflow:hidden;
}
.js-offcanvas-body.js-offcanvas-body-right .js-header-fixed {
margin-left: -210px;
}
.js-offcanvas-body.js-offcanvas-body-left .js-header-fixed {
margin-left: 210px;
} | hg-offcanvas.css | .js-offcanvas {
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10001;
width:100%;
height:100%;
background: rgba(0, 0, 0, 0.1);
}
.js-offcanvas.active{
display:block;
}
.js-offcanvas-body{
width:100%;
-webkit-transition: margin-left 0.3s ease-in-out;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
}
.js-offcanvas-body.js-offcanvas-body-right{
overflow-y: hidden;
margin-left: -210px;
position:fixed;
}
.js-offcanvas-body.js-offcanvas-body-left{
overflow-y: hidden;
margin-left: 210px;
position:fixed;
}
.js-offcanvas-sidebar{
width: 210px;
z-index: 10002;
position: fixed;
top: 0;
bottom: 0;
max-width: 100%;
color: #fff;
background: #333;
padding-right: 10px;
padding-left: 10px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
box-sizing:border-box;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-right {
right: 0;
left:auto;
margin-right:-210px;
-webkit-transition: margin-right 0.3s ease-in-out;
-moz-transition: margin-right 0.3s ease-in-out;
-o-transition: margin-right 0.3s ease-in-out;
-ms-transition: margin-right 0.3s ease-in-out;
transition: margin-right 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-left {
left: 0;
right:auto;
margin-left:-210px;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-right.active{
margin-right:0px;
transition: margin-right 0.3s ease-in-out;
-webkit-transition: margin-right 0.3s ease-in-out;
-moz-transition: margin-right 0.3s ease-in-out;
-o-transition: margin-right 0.3s ease-in-out;
-ms-transition: margin-right 0.3s ease-in-out;
}
.js-offcanvas-sidebar.js-offcanvas-sidebar-left.active {
margin-left:0px;
transition: margin-left 0.3s ease-in-out;
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
}
.js-header-fixed {
-webkit-transition: margin-left 0.3s ease-in-out;
-moz-transition: margin-left 0.3s ease-in-out;
-o-transition: margin-left 0.3s ease-in-out;
-ms-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
position: fixed;
top:0;
left:0;
width: 100%;
}
.js-offcanvas-body.js-offcanvas-body-right,
.js-offcanvas-body.js-offcanvas-body-left{
overflow:hidden;
}
.js-offcanvas-body.js-offcanvas-body-right .js-header-fixed {
margin-left: -210px;
}
.js-offcanvas-body.js-offcanvas-body-left .js-header-fixed {
margin-left: 210px;
} | 0.572484 | 0.067056 |
*{
margin: 0;
}
body{
position: absolute;
height: auto;
min-height: 100%;
width: 100%;
top: 0;
left: 0;
overflow: auto;
}
@media screen and (max-width: 720px) {
header{
position: relative;
display: flex;
flex-direction: column;
flex-wrap: wrap;
background-color: rgb(47, 106, 158);
justify-content: space-between;
padding: 10px;
height: auto;
}
header h2 a{
color: white;
line-height: 50px;
text-decoration: none;
}
div.nav {
position: relative;
display: flex;
height: 100%;
vertical-align: middle;
width: auto;
}
div.nav a{
display: block;
line-height: 50px;
text-align: center;
text-decoration: none;
/* margin-left: 1px;
margin-right: 1px; */
color: white;
}
.nav a:nth-child(1){
width:60px;
}.nav a:nth-child(2){
width: 75px;
border-left: black 2px solid;
}.nav a:nth-child(3){
width: 75px;
border-left: black 2px solid;
}
.yes{
background-color: rgb(60, 130, 190);
}
.no{
background-color: rgb(67, 114, 155);
}
.no:hover{
transition: 0.5s;
background-color: rgb(99, 136, 168);
}
.footer{
position: relative;
display: flex;
width: 100%;
height: auto;
bottom: 0;
background-color: rgb(47, 106, 158);
flex-wrap: wrap;
flex-direction: column;
}
.contact{
display: flex;
flex-direction: column;
padding: 5px;
border: solid 2px rgb(25, 63, 97);
width: auto;
}.contact input, .contact textarea, .contact button{
margin-top: 5px;
}
.contact textarea{
min-height: 100px;
min-width: 200px;
max-width: 250px;
max-height: 250px;
resize: none;
}.contact input, .contact button{
min-width: 250px;
max-width: 250px;
}
.message{
display: block;
height: auto;
padding: 10px;
width: 300px;
background-color: rgb(197, 196, 196);
margin-left: auto;
margin-right: auto;
margin-top: 15px;
text-align: center;
}
span.info
{
color: red;
}
span.resources, span.services{
color: green;
}
.modlist{
width: 95%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
padding: 10px;
}
.modcontent
{
padding: 0px;
height: auto;
width: 350px;
border: black 2px solid;
text-align: center;
}
.modcontent p.info{
padding: 5px;
}
.link{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(15, 88, 15);
color: white;
line-height: 40px;
}.link:hover{
background-color: rgb(13, 70, 13);
}
.wikibtn{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(128, 14, 6);
color: white;
line-height: 40px;
}.wikibtn:hover{
background-color: rgb(88, 12, 6);
}
.btnbar{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
}
/* ================================================== */
@media screen and (min-width: 721px) {
header{
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: rgb(35, 84, 128);
justify-content: space-between;
padding: 10px;
height: 50px;
}
header h2 a{
color: white;
line-height: 50px;
text-decoration: none;
}
div.nav {
position: relative;
display: flex;
height: 100%;
vertical-align: middle;
width: auto;
}
div.nav a{
display: block;
line-height: 50px;
text-align: center;
text-decoration: none;
/* margin-left: 1px;
margin-right: 1px; */
color: white;
}
.nav a:nth-child(1){
width:60px;
}.nav a:nth-child(2){
width: 75px;
border-left: black 2px solid;
}.nav a:nth-child(3){
width: 75px;
border-left: black 2px solid;
}
.yes{
background-color: rgb(60, 130, 190);
}
.no{
background-color: rgb(67, 114, 155);
}
.no:hover{
transition: 0.5s;
background-color: rgb(99, 136, 168);
}
.footer{
position: relative;
display: flex;
width: 100%;
height: auto;
bottom: 0;
background-color: rgb(47, 106, 158);
flex-wrap: wrap;
flex-direction: row;
/* margin-top: 70vh; */
}
.return{
height: 50px;
width: 150px;
background-color: white;
text-align: center;
line-height: 50px;
border: 2px black solid;
margin-top: 15px;
margin-left: 15px;
}
.return .ra{
color: black;
font-size: 18px;
text-decoration: none;
}
.contact{
display: flex;
flex-direction: column;
padding: 5px;
border: solid 2px rgb(25, 63, 97);
width: auto;
}.contact input, .contact textarea, .contact button{
margin-top: 5px;
}
.contact textarea{
min-height: 100px;
min-width: 200px;
max-width: 250px;
max-height: 250px;
resize: none;
}.contact input, .contact button{
min-width: 250px;
max-width: 250px;
}
.message{
display: block;
height: auto;
padding: 10px;
width: 500px;
background-color: rgb(197, 196, 196);
margin-left: auto;
margin-right: auto;
margin-top: 15px;
text-align: center;
}
span.info
{
color: red;
}
span.resources, span.services{
color: green;
}
.modlist{
width: 95%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
padding: 10px;
}
.modcontent
{
padding: 0px;
height: auto;
width: 350px;
border: black 2px solid;
text-align: center;
}
.modcontent p.info{
padding: 5px;
}
.link{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(15, 88, 15);
color: white;
line-height: 40px;
}.link:hover{
background-color: rgb(13, 70, 13);
}
.wikibtn{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(128, 14, 6);
color: white;
line-height: 40px;
}.wikibtn:hover{
background-color: rgb(88, 12, 6);
}
.btnbar{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
} /* fin */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, red, blue);
/* #888 */
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, red, green, blue);
} | styles/styles.css | *{
margin: 0;
}
body{
position: absolute;
height: auto;
min-height: 100%;
width: 100%;
top: 0;
left: 0;
overflow: auto;
}
@media screen and (max-width: 720px) {
header{
position: relative;
display: flex;
flex-direction: column;
flex-wrap: wrap;
background-color: rgb(47, 106, 158);
justify-content: space-between;
padding: 10px;
height: auto;
}
header h2 a{
color: white;
line-height: 50px;
text-decoration: none;
}
div.nav {
position: relative;
display: flex;
height: 100%;
vertical-align: middle;
width: auto;
}
div.nav a{
display: block;
line-height: 50px;
text-align: center;
text-decoration: none;
/* margin-left: 1px;
margin-right: 1px; */
color: white;
}
.nav a:nth-child(1){
width:60px;
}.nav a:nth-child(2){
width: 75px;
border-left: black 2px solid;
}.nav a:nth-child(3){
width: 75px;
border-left: black 2px solid;
}
.yes{
background-color: rgb(60, 130, 190);
}
.no{
background-color: rgb(67, 114, 155);
}
.no:hover{
transition: 0.5s;
background-color: rgb(99, 136, 168);
}
.footer{
position: relative;
display: flex;
width: 100%;
height: auto;
bottom: 0;
background-color: rgb(47, 106, 158);
flex-wrap: wrap;
flex-direction: column;
}
.contact{
display: flex;
flex-direction: column;
padding: 5px;
border: solid 2px rgb(25, 63, 97);
width: auto;
}.contact input, .contact textarea, .contact button{
margin-top: 5px;
}
.contact textarea{
min-height: 100px;
min-width: 200px;
max-width: 250px;
max-height: 250px;
resize: none;
}.contact input, .contact button{
min-width: 250px;
max-width: 250px;
}
.message{
display: block;
height: auto;
padding: 10px;
width: 300px;
background-color: rgb(197, 196, 196);
margin-left: auto;
margin-right: auto;
margin-top: 15px;
text-align: center;
}
span.info
{
color: red;
}
span.resources, span.services{
color: green;
}
.modlist{
width: 95%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
padding: 10px;
}
.modcontent
{
padding: 0px;
height: auto;
width: 350px;
border: black 2px solid;
text-align: center;
}
.modcontent p.info{
padding: 5px;
}
.link{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(15, 88, 15);
color: white;
line-height: 40px;
}.link:hover{
background-color: rgb(13, 70, 13);
}
.wikibtn{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(128, 14, 6);
color: white;
line-height: 40px;
}.wikibtn:hover{
background-color: rgb(88, 12, 6);
}
.btnbar{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
}
/* ================================================== */
@media screen and (min-width: 721px) {
header{
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: rgb(35, 84, 128);
justify-content: space-between;
padding: 10px;
height: 50px;
}
header h2 a{
color: white;
line-height: 50px;
text-decoration: none;
}
div.nav {
position: relative;
display: flex;
height: 100%;
vertical-align: middle;
width: auto;
}
div.nav a{
display: block;
line-height: 50px;
text-align: center;
text-decoration: none;
/* margin-left: 1px;
margin-right: 1px; */
color: white;
}
.nav a:nth-child(1){
width:60px;
}.nav a:nth-child(2){
width: 75px;
border-left: black 2px solid;
}.nav a:nth-child(3){
width: 75px;
border-left: black 2px solid;
}
.yes{
background-color: rgb(60, 130, 190);
}
.no{
background-color: rgb(67, 114, 155);
}
.no:hover{
transition: 0.5s;
background-color: rgb(99, 136, 168);
}
.footer{
position: relative;
display: flex;
width: 100%;
height: auto;
bottom: 0;
background-color: rgb(47, 106, 158);
flex-wrap: wrap;
flex-direction: row;
/* margin-top: 70vh; */
}
.return{
height: 50px;
width: 150px;
background-color: white;
text-align: center;
line-height: 50px;
border: 2px black solid;
margin-top: 15px;
margin-left: 15px;
}
.return .ra{
color: black;
font-size: 18px;
text-decoration: none;
}
.contact{
display: flex;
flex-direction: column;
padding: 5px;
border: solid 2px rgb(25, 63, 97);
width: auto;
}.contact input, .contact textarea, .contact button{
margin-top: 5px;
}
.contact textarea{
min-height: 100px;
min-width: 200px;
max-width: 250px;
max-height: 250px;
resize: none;
}.contact input, .contact button{
min-width: 250px;
max-width: 250px;
}
.message{
display: block;
height: auto;
padding: 10px;
width: 500px;
background-color: rgb(197, 196, 196);
margin-left: auto;
margin-right: auto;
margin-top: 15px;
text-align: center;
}
span.info
{
color: red;
}
span.resources, span.services{
color: green;
}
.modlist{
width: 95%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
padding: 10px;
}
.modcontent
{
padding: 0px;
height: auto;
width: 350px;
border: black 2px solid;
text-align: center;
}
.modcontent p.info{
padding: 5px;
}
.link{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(15, 88, 15);
color: white;
line-height: 40px;
}.link:hover{
background-color: rgb(13, 70, 13);
}
.wikibtn{
display: block;
height: 40px;
width: 70px;
text-decoration: none;
background-color: rgb(128, 14, 6);
color: white;
line-height: 40px;
}.wikibtn:hover{
background-color: rgb(88, 12, 6);
}
.btnbar{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
} /* fin */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, red, blue);
/* #888 */
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, red, green, blue);
} | 0.650356 | 0.069542 |
* {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, san-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #fafbfc;
overflow-x: hidden;
}
a {
text-decoration: none;
}
a:hover {
opacity: .8;
}
img {
-o-object-fit: cover;
object-fit: cover;
}
a:hover {
text-decoration: none;
}
.logged_in-container {
text-align: right;
}
.logged_in-container .logged_in {
position: relative;
color: white;
}
.logged_in-container .logged_in #user {
position: relative;
}
.logged_in-container .logged_in #user i.fa-caret-up {
display: none;
font-size: 40px;
position: absolute;
top: 120%;
left: 10px;
color: #E9EDF1;
}
.logged_in-container .logged_in aside.user_menu {
display: none;
background-color: #E9EDF1;
color: black;
text-align: left;
padding: 10px 0;
padding-bottom: 0;
width: 250px;
position: absolute;
top: 140%;
color: gray;
}
.logged_in-container .logged_in aside.user_menu .user_details {
border-bottom: 1px solid gray;
padding: 5px 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.logged_in-container .logged_in aside.user_menu .user_details img {
width: 60px;
height: 60px;
}
.logged_in-container .logged_in aside.user_menu .user_details p {
margin: 0;
}
.logged_in-container .logged_in aside.user_menu .user_details button {
border: none;
background-color: #b6b5b5;
padding: 3px 20px;
font-size: 12px;
}
.logged_in-container .logged_in aside.user_menu div.actions {
padding: 10px 0;
}
.logged_in-container .logged_in aside.user_menu div.actions p {
padding: 10px;
margin: 5px 0;
}
.logged_in-container .logged_in aside.user_menu div.actions p a {
color: gray;
}
.logged_in-container .logged_in aside.user_menu div.actions p i {
margin-right: 10px;
}
.logged_in-container .logged_in aside.user_menu div.actions p:first-child a {
color: #004fef;
}
.logged_in-container .logged_in aside.user_menu div.actions p:first-child:hover a {
color: white;
}
.logged_in-container .logged_in aside.user_menu div.logout {
margin-top: -10px;
padding-bottom: 0;
border-top: 1px solid gray;
color: #004fef;
}
.logged_in-container .logged_in aside.user_menu div.logout p {
cursor: pointer;
padding: 10px;
margin: 0;
}
.logged_in-container .logged_in aside.user_menu div.logout p i {
margin-right: 10px;
}
.logged_in-container .logged_in aside.user_menu div.logout p:hover {
color: white;
-webkit-transition: all 1s;
transition: all 1s;
}
.logged_in-container .logged_in aside.user_menu .actions p:hover,
.logged_in-container .logged_in aside.user_menu .logout p:hover {
background-color: #004fef;
-webkit-transition: all 1s;
transition: all 1s;
}
.logged_in-container .logged_in aside.user_menu .actions p:hover a,
.logged_in-container .logged_in aside.user_menu .logout p:hover a {
color: white;
-webkit-transition: all 1s;
transition: all 1s;
opacity: 1;
}
.logged_in-container .logged_in img {
width: 40px;
height: 40px;
margin-top: -5px;
}
.logged_in-container .logged_in span {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: grey;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
}
.logged_in-container .logged_in span i {
font-size: 20px;
}
.logged_in-container .logged_in span .badge {
position: absolute;
top: -5px;
right: -15px;
width: 25px;
height: 25px;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: darkblue;
overflow: hidden;
}
.logged_in-container .logged_in span img {
display: none;
width: 25px;
height: 25px;
border-radius: 50%;
position: absolute;
top: 0;
right: -30px;
}
.logged_in-container .logged_in .cart,
.logged_in-container .logged_in .ribbon {
display: none;
}
.logged_in-container .logged_in img,
.logged_in-container .logged_in span {
margin-right: 15px;
cursor: pointer;
}
.logged_in-container .logged_in .language {
background-color: white !important;
color: grey;
}
.logged_in-container .logged_in .language .badge {
color: white;
}
.logged_in-container .logged_in .language:hover {
background-color: #004fef !important;
color: white;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.logged_in-container .logged_in .language:hover img {
display: block !important;
}
.mobile-login span {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: grey;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
}
.mobile-login span .badge {
position: absolute;
top: -5px;
right: -15px;
width: 25px;
height: 25px;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: darkblue;
}
.mobile-login img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 20px;
margin-top: -5px;
}
@media screen and (min-width: 1280px) {
.logged_in-container .logged_in {
-ms-flex-item-align: right !important;
-ms-grid-row-align: right !important;
align-self: right !important;
position: absolute;
right: 20px;
top: 15px;
}
.logged_in-container .logged_in .cart,
.logged_in-container .logged_in .ribbon {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
}
}
/*# sourceMappingURL=user_home.css.map */ | assets/css/user_home.css | * {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, san-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #fafbfc;
overflow-x: hidden;
}
a {
text-decoration: none;
}
a:hover {
opacity: .8;
}
img {
-o-object-fit: cover;
object-fit: cover;
}
a:hover {
text-decoration: none;
}
.logged_in-container {
text-align: right;
}
.logged_in-container .logged_in {
position: relative;
color: white;
}
.logged_in-container .logged_in #user {
position: relative;
}
.logged_in-container .logged_in #user i.fa-caret-up {
display: none;
font-size: 40px;
position: absolute;
top: 120%;
left: 10px;
color: #E9EDF1;
}
.logged_in-container .logged_in aside.user_menu {
display: none;
background-color: #E9EDF1;
color: black;
text-align: left;
padding: 10px 0;
padding-bottom: 0;
width: 250px;
position: absolute;
top: 140%;
color: gray;
}
.logged_in-container .logged_in aside.user_menu .user_details {
border-bottom: 1px solid gray;
padding: 5px 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.logged_in-container .logged_in aside.user_menu .user_details img {
width: 60px;
height: 60px;
}
.logged_in-container .logged_in aside.user_menu .user_details p {
margin: 0;
}
.logged_in-container .logged_in aside.user_menu .user_details button {
border: none;
background-color: #b6b5b5;
padding: 3px 20px;
font-size: 12px;
}
.logged_in-container .logged_in aside.user_menu div.actions {
padding: 10px 0;
}
.logged_in-container .logged_in aside.user_menu div.actions p {
padding: 10px;
margin: 5px 0;
}
.logged_in-container .logged_in aside.user_menu div.actions p a {
color: gray;
}
.logged_in-container .logged_in aside.user_menu div.actions p i {
margin-right: 10px;
}
.logged_in-container .logged_in aside.user_menu div.actions p:first-child a {
color: #004fef;
}
.logged_in-container .logged_in aside.user_menu div.actions p:first-child:hover a {
color: white;
}
.logged_in-container .logged_in aside.user_menu div.logout {
margin-top: -10px;
padding-bottom: 0;
border-top: 1px solid gray;
color: #004fef;
}
.logged_in-container .logged_in aside.user_menu div.logout p {
cursor: pointer;
padding: 10px;
margin: 0;
}
.logged_in-container .logged_in aside.user_menu div.logout p i {
margin-right: 10px;
}
.logged_in-container .logged_in aside.user_menu div.logout p:hover {
color: white;
-webkit-transition: all 1s;
transition: all 1s;
}
.logged_in-container .logged_in aside.user_menu .actions p:hover,
.logged_in-container .logged_in aside.user_menu .logout p:hover {
background-color: #004fef;
-webkit-transition: all 1s;
transition: all 1s;
}
.logged_in-container .logged_in aside.user_menu .actions p:hover a,
.logged_in-container .logged_in aside.user_menu .logout p:hover a {
color: white;
-webkit-transition: all 1s;
transition: all 1s;
opacity: 1;
}
.logged_in-container .logged_in img {
width: 40px;
height: 40px;
margin-top: -5px;
}
.logged_in-container .logged_in span {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: grey;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
}
.logged_in-container .logged_in span i {
font-size: 20px;
}
.logged_in-container .logged_in span .badge {
position: absolute;
top: -5px;
right: -15px;
width: 25px;
height: 25px;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: darkblue;
overflow: hidden;
}
.logged_in-container .logged_in span img {
display: none;
width: 25px;
height: 25px;
border-radius: 50%;
position: absolute;
top: 0;
right: -30px;
}
.logged_in-container .logged_in .cart,
.logged_in-container .logged_in .ribbon {
display: none;
}
.logged_in-container .logged_in img,
.logged_in-container .logged_in span {
margin-right: 15px;
cursor: pointer;
}
.logged_in-container .logged_in .language {
background-color: white !important;
color: grey;
}
.logged_in-container .logged_in .language .badge {
color: white;
}
.logged_in-container .logged_in .language:hover {
background-color: #004fef !important;
color: white;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.logged_in-container .logged_in .language:hover img {
display: block !important;
}
.mobile-login span {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: grey;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
}
.mobile-login span .badge {
position: absolute;
top: -5px;
right: -15px;
width: 25px;
height: 25px;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: darkblue;
}
.mobile-login img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 20px;
margin-top: -5px;
}
@media screen and (min-width: 1280px) {
.logged_in-container .logged_in {
-ms-flex-item-align: right !important;
-ms-grid-row-align: right !important;
align-self: right !important;
position: absolute;
right: 20px;
top: 15px;
}
.logged_in-container .logged_in .cart,
.logged_in-container .logged_in .ribbon {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
}
}
/*# sourceMappingURL=user_home.css.map */ | 0.337749 | 0.070144 |
@font-face {
font-family: 'Roboto';
src: url('../font/Roboto-Regular-webfont.eot');
src: url('../font/Roboto-Regular-webfont.eot?#iefix') format('eot'),
url('../font/Roboto-Regular-webfont.svg') format('svg'),
url('../font/Roboto-Regular-webfont.woff') format('woff'),
url('../font/Roboto-Regular-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/* chrome font rendering fix */
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.svg') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../font/Roboto-Regular-webfont.svg') format('svg');
}
}
/* css reset */
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,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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}
/* clearfix */
.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; }
html, body { width: 100%; height: 100%; }
body {
background-color: rgb(189, 195, 199);
font-family: 'Roboto', sans-serif;
font-size: 11pt;
}
*::selection {
color: white;
background-color: rgba(0,0,0,0.22);
text-shadow: 0px 0px 6px white;
}
input {
font: inherit;
}
.wrapper {
position: relative;
width: 100%;
height: 100%;
}
/* Header bar */
header {
width: 100%;
height: 40px;
background-color: rgb(127, 140, 141);
color: rgba(255,255,255,0.44);
}
header .title {
display: inline-block;
height: 100%;
width: 200px;
padding-left: 7px;
font-size: 28pt;
line-height: 35pt;
}
header nav {
float: right;
width: auto;
height: 100%;
}
nav > ul {
height: 100%;
text-align: center;
font-size: 0;
}
nav > ul li {
display: inline-block;
height: 100%;
}
nav > ul li:hover {
background-color: rgba(255,255,255,0.11);
}
nav > ul li a {
display: block;
height: 100%;
font-size: 11pt;
line-height: 32pt;
padding-left: 10px;
padding-right: 10px;
}
nav > ul li a, nav > ul li a:visited {
color: rgba(255,255,255,0.44);
text-decoration: none;
}
nav > ul li a:hover {
color: rgba(255,255,255,0.88);
}
.site {
position: absolute;
top: 40px; bottom: 0;
left: 0; right: 0;
}
/* Search */
.search-container {
background-color: rgba(236, 240, 241,1.0);
position: absolute;
top: 0; bottom: 0;
left: 0;
width: 280px;
}
.search-header {
height: 40px;
font-size: 0;
overflow: hidden;
}
.search-header input[type=search] {
width: 100%;
height: 100%;
padding: 0;
padding-left: 10px;
padding-right: 10px;
border: none;
outline: none;
font-size: 10pt;
line-height: 12pt;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
#results {
display: block;
position: absolute;
top: 40px; bottom: 0;
left: 0; right: 0;
font-size: 10pt;
overflow-x: hidden;
}
#results li {
color: #666;
}
#results li:hover {
background-color: rgba(0,0,0,0.06);
}
#results li.server:hover {
background-color: rgba(52, 152, 219,0.11);
}
#results li.shared:hover {
background-color: rgba(191, 34, 230,0.11);
}
#results li.client:hover {
background-color: rgba(230, 126, 34,0.11);
}
#results li.menu:hover {
background-color: rgba(39, 174, 96,0.11);
}
#results li a, #results li a:hover, #results li a:active {
display: block;
padding: 4px 11px 4px 11px;
color: inherit;
text-decoration: none;
}
/* Documents */
.doc-container {
position: absolute;
top: 0; bottom: 0;
left: 280px; right: 0;
}
.doc {
padding: 15px;
color: #444;
}
.doc h1 {
display: inline-block;
font-size: 22pt;
font-weight: bold;
margin-bottom: 15px;
}
.doc h1 > a {
color: inherit;
text-decoration: none;
}
.doc h1 a.extra {
padding-left: 8px;
color: transparent;
transition: color 0.15s;
}
.doc h1:hover a.extra {
color: rgba(0,0,0,0.22);
}
.doc h1:hover a.extra:hover {
color: rgba(0,0,0,1);
}
/* Scrollbar */
.scroll {
overflow: auto;
}
.scroll::-webkit-scrollbar {
width: 10px;
background-color: transparent;
}
.scroll::-webkit-scrollbar-thumb {
overflow: visible;
background-color: rgba(0,0,0,0.11);
}
.scroll::-webkit-scrollbar-button {
height: 0;
display: block;
background-color: transparent;
}
/* Lua states */
.server {
color: rgb(52, 152, 219) !important;
}
.shared {
color: rgb(191, 34, 230) !important;
}
.client {
color: rgb(211, 84, 0) !important;
}
.menu {
color: rgb(39, 174, 96) !important;
}
/* Wiki CSS */
.wiki .toc {
display: none;
}
.wiki h1 {
font-size: 16pt;
}
.wiki p {
padding: 5px;
padding-left: 15px;
line-height: 16pt;
}
.wiki span[id=Example] {
font-size: 14pt;
}
.wiki span[id*=Arguments_] {
display: none;
}
.wiki h1 + p, .wiki .argument, .wiki .return {
margin-bottom: 15px;
}
.wiki pre, .wiki .function_line, .wiki code {
display: block;
color: white;
background-color: #454545;
padding: 10px;
margin: 10px;
border-radius: 4px;
font-size: 10pt;
/*white-space: pre;*/
overflow: auto;
max-width: 900px;
}
.wiki a, .wiki a:visited, .wiki a:hover, .wiki a:active {
color: #3498db;
text-decoration: none;
}
.wiki a:hover {
text-decoration: underline;
}
@media (min-width: 500px) and (max-width: 700px), (min-device-width: 500px) and (max-device-width: 700px) {
.search-container {
width: 40%;
}
.doc-container {
left: 40%;
}
}
@media (max-width: 500px), (max-device-width: 500px) {
.search-container {
width: auto;
top: 0; bottom: auto;
left: 0; right: 0;
height: 200px;
}
.doc-container {
width: 100%;
height: auto;
top: 200px; bottom: auto;
left: 0; right: 0;
}
} | app/styles/style.css | @font-face {
font-family: 'Roboto';
src: url('../font/Roboto-Regular-webfont.eot');
src: url('../font/Roboto-Regular-webfont.eot?#iefix') format('eot'),
url('../font/Roboto-Regular-webfont.svg') format('svg'),
url('../font/Roboto-Regular-webfont.woff') format('woff'),
url('../font/Roboto-Regular-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/* chrome font rendering fix */
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.svg') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../font/Roboto-Regular-webfont.svg') format('svg');
}
}
/* css reset */
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,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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}
/* clearfix */
.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; }
html, body { width: 100%; height: 100%; }
body {
background-color: rgb(189, 195, 199);
font-family: 'Roboto', sans-serif;
font-size: 11pt;
}
*::selection {
color: white;
background-color: rgba(0,0,0,0.22);
text-shadow: 0px 0px 6px white;
}
input {
font: inherit;
}
.wrapper {
position: relative;
width: 100%;
height: 100%;
}
/* Header bar */
header {
width: 100%;
height: 40px;
background-color: rgb(127, 140, 141);
color: rgba(255,255,255,0.44);
}
header .title {
display: inline-block;
height: 100%;
width: 200px;
padding-left: 7px;
font-size: 28pt;
line-height: 35pt;
}
header nav {
float: right;
width: auto;
height: 100%;
}
nav > ul {
height: 100%;
text-align: center;
font-size: 0;
}
nav > ul li {
display: inline-block;
height: 100%;
}
nav > ul li:hover {
background-color: rgba(255,255,255,0.11);
}
nav > ul li a {
display: block;
height: 100%;
font-size: 11pt;
line-height: 32pt;
padding-left: 10px;
padding-right: 10px;
}
nav > ul li a, nav > ul li a:visited {
color: rgba(255,255,255,0.44);
text-decoration: none;
}
nav > ul li a:hover {
color: rgba(255,255,255,0.88);
}
.site {
position: absolute;
top: 40px; bottom: 0;
left: 0; right: 0;
}
/* Search */
.search-container {
background-color: rgba(236, 240, 241,1.0);
position: absolute;
top: 0; bottom: 0;
left: 0;
width: 280px;
}
.search-header {
height: 40px;
font-size: 0;
overflow: hidden;
}
.search-header input[type=search] {
width: 100%;
height: 100%;
padding: 0;
padding-left: 10px;
padding-right: 10px;
border: none;
outline: none;
font-size: 10pt;
line-height: 12pt;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
#results {
display: block;
position: absolute;
top: 40px; bottom: 0;
left: 0; right: 0;
font-size: 10pt;
overflow-x: hidden;
}
#results li {
color: #666;
}
#results li:hover {
background-color: rgba(0,0,0,0.06);
}
#results li.server:hover {
background-color: rgba(52, 152, 219,0.11);
}
#results li.shared:hover {
background-color: rgba(191, 34, 230,0.11);
}
#results li.client:hover {
background-color: rgba(230, 126, 34,0.11);
}
#results li.menu:hover {
background-color: rgba(39, 174, 96,0.11);
}
#results li a, #results li a:hover, #results li a:active {
display: block;
padding: 4px 11px 4px 11px;
color: inherit;
text-decoration: none;
}
/* Documents */
.doc-container {
position: absolute;
top: 0; bottom: 0;
left: 280px; right: 0;
}
.doc {
padding: 15px;
color: #444;
}
.doc h1 {
display: inline-block;
font-size: 22pt;
font-weight: bold;
margin-bottom: 15px;
}
.doc h1 > a {
color: inherit;
text-decoration: none;
}
.doc h1 a.extra {
padding-left: 8px;
color: transparent;
transition: color 0.15s;
}
.doc h1:hover a.extra {
color: rgba(0,0,0,0.22);
}
.doc h1:hover a.extra:hover {
color: rgba(0,0,0,1);
}
/* Scrollbar */
.scroll {
overflow: auto;
}
.scroll::-webkit-scrollbar {
width: 10px;
background-color: transparent;
}
.scroll::-webkit-scrollbar-thumb {
overflow: visible;
background-color: rgba(0,0,0,0.11);
}
.scroll::-webkit-scrollbar-button {
height: 0;
display: block;
background-color: transparent;
}
/* Lua states */
.server {
color: rgb(52, 152, 219) !important;
}
.shared {
color: rgb(191, 34, 230) !important;
}
.client {
color: rgb(211, 84, 0) !important;
}
.menu {
color: rgb(39, 174, 96) !important;
}
/* Wiki CSS */
.wiki .toc {
display: none;
}
.wiki h1 {
font-size: 16pt;
}
.wiki p {
padding: 5px;
padding-left: 15px;
line-height: 16pt;
}
.wiki span[id=Example] {
font-size: 14pt;
}
.wiki span[id*=Arguments_] {
display: none;
}
.wiki h1 + p, .wiki .argument, .wiki .return {
margin-bottom: 15px;
}
.wiki pre, .wiki .function_line, .wiki code {
display: block;
color: white;
background-color: #454545;
padding: 10px;
margin: 10px;
border-radius: 4px;
font-size: 10pt;
/*white-space: pre;*/
overflow: auto;
max-width: 900px;
}
.wiki a, .wiki a:visited, .wiki a:hover, .wiki a:active {
color: #3498db;
text-decoration: none;
}
.wiki a:hover {
text-decoration: underline;
}
@media (min-width: 500px) and (max-width: 700px), (min-device-width: 500px) and (max-device-width: 700px) {
.search-container {
width: 40%;
}
.doc-container {
left: 40%;
}
}
@media (max-width: 500px), (max-device-width: 500px) {
.search-container {
width: auto;
top: 0; bottom: auto;
left: 0; right: 0;
height: 200px;
}
.doc-container {
width: 100%;
height: auto;
top: 200px; bottom: auto;
left: 0; right: 0;
}
} | 0.35768 | 0.057626 |
@-ms-viewport { width: device-width; }
@viewport { width: device-width; }
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */
html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
/* Sections ========================================================================== */
/** Remove the margin in all browsers (opinionated). */
body { margin: 0; }
/** Add the correct display in IE 9-. */
article, aside, footer, header, nav, section { display: block; }
/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 { font-size: 2em; margin: 0.67em 0; }
/* Grouping content ========================================================================== */
/** Add the correct display in IE 9-. 1. Add the correct display in IE. */
figcaption, figure, main { /* 1 */ display: block; }
/** Add the correct margin in IE 8. */
figure { margin: 1em 40px; }
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
/* Text-level semantics ========================================================================== */
/** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ }
/** 1. Remove the bottom border in Chrome 57- and Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }
/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b, strong { font-weight: inherit; }
/** Add the correct font weight in Chrome, Edge, and Safari. */
b, strong { font-weight: bolder; }
/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
/** Add the correct font style in Android 4.3-. */
dfn { font-style: italic; }
/** Add the correct background and color in IE 9-. */
mark { background-color: #ff0; color: #000; }
/** Add the correct font size in all browsers. */
small { font-size: 80%; }
/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
/* Embedded content ========================================================================== */
/** Add the correct display in IE 9-. */
audio, video { display: inline-block; }
/** Add the correct display in iOS 4-7. */
audio:not([controls]) { display: none; height: 0; }
/** Remove the border on images inside links in IE 10-. */
img { border-style: none; }
/** Hide the overflow in IE. */
svg:not(:root) { overflow: hidden; }
/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }
/** Show the overflow in IE. 1. Show the overflow in Edge. */
button, input { /* 1 */ overflow: visible; }
/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button, select { /* 1 */ text-transform: none; }
/** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */
button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ }
/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
/** Correct the padding in Firefox. */
fieldset { padding: 0.35em 0.75em 0.625em; }
/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
/** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ }
/** Remove the default vertical scrollbar in IE. */
textarea { overflow: auto; }
/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }
/** Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }
/* Interactive ========================================================================== */
/* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */
details, menu { display: block; }
/* Add the correct display in all browsers. */
summary { display: list-item; }
/* Scripting ========================================================================== */
/** Add the correct display in IE 9-. */
canvas { display: inline-block; }
/** Add the correct display in IE. */
template { display: none; }
/* Hidden ========================================================================== */
/** Add the correct display in IE 10-. */
[hidden] { display: none; }
#website { margin: 0; }
header { /* background-color: $color-primary-4; { color:#FFF; }*/ }
nav { /*background-color: $color-primary-4;*/ }
nav > ul li { display: inline-block; }
img { max-width: 100%; height: auto; }
.slicknav_menu { display: none; }
@media screen and (max-width: 500px) { /* #menu is the original menu */
#nav-header { display: none; }
.slicknav_menu { display: block; } }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em; }
.slicknav_menu { *zoom: 1; }
.slicknav_menu .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; width: 1.125em; height: 0.875em; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_icon:before { background: transparent; width: 1.125em; height: 0.875em; display: block; content: ""; position: absolute; }
.slicknav_menu .slicknav_no-text { margin: 0; }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_menu:before { content: " "; display: table; }
.slicknav_menu:after { content: " "; display: table; clear: both; }
.slicknav_nav { clear: both; }
.slicknav_nav ul { display: block; }
.slicknav_nav li { display: block; }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_item a { display: inline; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block; }
.slicknav_nav .slicknav_parent-link a { display: inline; }
.slicknav_brand { float: left; }
.slicknav_menu { font-size: 16px; box-sizing: border-box; background: #A30A28; padding: 5px; }
.slicknav_menu * { box-sizing: border-box; }
.slicknav_menu .slicknav_menutxt { color: #fff; font-weight: bold; text-shadow: 0 1px 3px #000; }
.slicknav_menu .slicknav_icon-bar { background-color: #fff; }
.slicknav_btn { margin: 5px 5px 6px; text-decoration: none; text-shadow: 0 1px 1px #a30a28; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; background-color: #640014; }
.slicknav_nav { color: #fff; margin: 0; padding: 0; font-size: 0.875em; list-style: none; overflow: hidden; }
.slicknav_nav ul { list-style: none; overflow: hidden; padding: 0; margin: 0 0 0 20px; }
.slicknav_nav .slicknav_row { padding: 5px 10px; margin: 2px 5px; }
.slicknav_nav .slicknav_row:hover { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; background: #D34360; color: #fff; }
.slicknav_nav a { padding: 5px 10px; margin: 2px 5px; text-decoration: none; color: #fff; }
.slicknav_nav a:hover { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; background: #D34360; color: #fff; }
.slicknav_nav .slicknav_txtnode { margin-left: 15px; }
.slicknav_nav .slicknav_item a { padding: 0; margin: 0; }
.slicknav_nav .slicknav_parent-link a { padding: 0; margin: 0; }
.slicknav_brand { color: #fff; font-size: 18px; line-height: 30px; padding: 7px 12px; height: 44px; }
/*# sourceMappingURL=theme.css.map */ | css/theme.css | @-ms-viewport { width: device-width; }
@viewport { width: device-width; }
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */
html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
/* Sections ========================================================================== */
/** Remove the margin in all browsers (opinionated). */
body { margin: 0; }
/** Add the correct display in IE 9-. */
article, aside, footer, header, nav, section { display: block; }
/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 { font-size: 2em; margin: 0.67em 0; }
/* Grouping content ========================================================================== */
/** Add the correct display in IE 9-. 1. Add the correct display in IE. */
figcaption, figure, main { /* 1 */ display: block; }
/** Add the correct margin in IE 8. */
figure { margin: 1em 40px; }
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
/* Text-level semantics ========================================================================== */
/** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ }
/** 1. Remove the bottom border in Chrome 57- and Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }
/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b, strong { font-weight: inherit; }
/** Add the correct font weight in Chrome, Edge, and Safari. */
b, strong { font-weight: bolder; }
/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
/** Add the correct font style in Android 4.3-. */
dfn { font-style: italic; }
/** Add the correct background and color in IE 9-. */
mark { background-color: #ff0; color: #000; }
/** Add the correct font size in all browsers. */
small { font-size: 80%; }
/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
/* Embedded content ========================================================================== */
/** Add the correct display in IE 9-. */
audio, video { display: inline-block; }
/** Add the correct display in iOS 4-7. */
audio:not([controls]) { display: none; height: 0; }
/** Remove the border on images inside links in IE 10-. */
img { border-style: none; }
/** Hide the overflow in IE. */
svg:not(:root) { overflow: hidden; }
/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }
/** Show the overflow in IE. 1. Show the overflow in Edge. */
button, input { /* 1 */ overflow: visible; }
/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button, select { /* 1 */ text-transform: none; }
/** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */
button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ }
/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
/** Correct the padding in Firefox. */
fieldset { padding: 0.35em 0.75em 0.625em; }
/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
/** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ }
/** Remove the default vertical scrollbar in IE. */
textarea { overflow: auto; }
/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }
/** Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }
/* Interactive ========================================================================== */
/* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */
details, menu { display: block; }
/* Add the correct display in all browsers. */
summary { display: list-item; }
/* Scripting ========================================================================== */
/** Add the correct display in IE 9-. */
canvas { display: inline-block; }
/** Add the correct display in IE. */
template { display: none; }
/* Hidden ========================================================================== */
/** Add the correct display in IE 10-. */
[hidden] { display: none; }
#website { margin: 0; }
header { /* background-color: $color-primary-4; { color:#FFF; }*/ }
nav { /*background-color: $color-primary-4;*/ }
nav > ul li { display: inline-block; }
img { max-width: 100%; height: auto; }
.slicknav_menu { display: none; }
@media screen and (max-width: 500px) { /* #menu is the original menu */
#nav-header { display: none; }
.slicknav_menu { display: block; } }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em; }
.slicknav_menu { *zoom: 1; }
.slicknav_menu .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; width: 1.125em; height: 0.875em; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_icon:before { background: transparent; width: 1.125em; height: 0.875em; display: block; content: ""; position: absolute; }
.slicknav_menu .slicknav_no-text { margin: 0; }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_menu:before { content: " "; display: table; }
.slicknav_menu:after { content: " "; display: table; clear: both; }
.slicknav_nav { clear: both; }
.slicknav_nav ul { display: block; }
.slicknav_nav li { display: block; }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_item a { display: inline; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block; }
.slicknav_nav .slicknav_parent-link a { display: inline; }
.slicknav_brand { float: left; }
.slicknav_menu { font-size: 16px; box-sizing: border-box; background: #A30A28; padding: 5px; }
.slicknav_menu * { box-sizing: border-box; }
.slicknav_menu .slicknav_menutxt { color: #fff; font-weight: bold; text-shadow: 0 1px 3px #000; }
.slicknav_menu .slicknav_icon-bar { background-color: #fff; }
.slicknav_btn { margin: 5px 5px 6px; text-decoration: none; text-shadow: 0 1px 1px #a30a28; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; background-color: #640014; }
.slicknav_nav { color: #fff; margin: 0; padding: 0; font-size: 0.875em; list-style: none; overflow: hidden; }
.slicknav_nav ul { list-style: none; overflow: hidden; padding: 0; margin: 0 0 0 20px; }
.slicknav_nav .slicknav_row { padding: 5px 10px; margin: 2px 5px; }
.slicknav_nav .slicknav_row:hover { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; background: #D34360; color: #fff; }
.slicknav_nav a { padding: 5px 10px; margin: 2px 5px; text-decoration: none; color: #fff; }
.slicknav_nav a:hover { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; background: #D34360; color: #fff; }
.slicknav_nav .slicknav_txtnode { margin-left: 15px; }
.slicknav_nav .slicknav_item a { padding: 0; margin: 0; }
.slicknav_nav .slicknav_parent-link a { padding: 0; margin: 0; }
.slicknav_brand { color: #fff; font-size: 18px; line-height: 30px; padding: 7px 12px; height: 44px; }
/*# sourceMappingURL=theme.css.map */ | 0.693784 | 0.238805 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* navbar */
.my-nav{
background-color: #FFFFFF;
}
.nav-link{
color: #D92027 !important;
border-bottom: 2px solid transparent;
font-size: 16px;
margin: 0 10px;
font-weight: 500;
}
.nav-link:hover{
color: #D92027;
border-bottom: 2px solid #D92027;
}
.nav-item img{
margin-top: 8px;
}
/* banner */
.header_search_area::before {
content: "";
position: absolute;
background: #000;
height: 100%;
width: 100%;
z-index: -1;
opacity: 0.8;
}
.banner-text{
padding-top: 10%;
}
.banner-text h1{
color: #FFFFFF;
font-size: 44px;
text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
line-height: 45px;
}
.banner-text h3{
color: #FFFFFF;
font-size: 20px;
font-weight: 500;
line-height: 30px;
margin-top: 30px;
margin-bottom: 30px;
}
.my-btn{
display: inline-block;
line-height: 1;
background-color: #D92027;
font-size: 15px;
padding: 12px 34px;
outline: none;
border-radius: 3px;
color: #fff;
text-align: center;
font-weight: 500;
border: none;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.my-btn:hover{
background-color: #fff;
border-radius: 3px;
color: #D92027;
transition: 1s;
}
.my-btn-2{
display: inline-block;
line-height: 1;
background-color: #fff;
font-size: 15px;
padding: 12px 34px;
outline: none;
border-radius: 3px;
color: #D92027;
text-align: center;
font-weight: 500;
border: none;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.my-btn-2:hover{
background-color:#D92027;
border-radius: 3px;
color: #fff;
transition: 1s;
}
/* info-get-blood-img */
.info-get-blood-img img{
width: 500px;
}
.getblood-info-text {
margin-top: 10%;
}
.getblood-info-text h3 {
font-size: 30px;
color: #D92027;
font-weight: 700;
margin-bottom: 15px;
}
.getblood-info-text p {
font-size: 18px;
font-weight: 500;
color: black;
}
.getblood-info-text ul li {
font-size: 18px;
font-weight: 500;
margin: 5px 0;
}
/* our network */
.section-heading{
font-size: 30px;
color: #D92027;
font-weight: 700;
}
/* our network */
.our-network{
padding: 50px 0;
}
.our-network-box i{
color: #D92027;
font-size: 40px;
margin: 20px 0;
}
.our-network-box h3{
font-size: 30px;
color: #000;
}
/* faqs */
.faqs{
margin: 20px 0;
}
.faqs p{
font-size: 18px;
}
/* Blood search part*/
.blood-search-container{
background-color: #EB2C2926;
padding: 60px 0;
}
.form-select,.date{
border: 1px solid #333;
}
.form-select:focus{
outline: 0;
box-shadow:none;
}
.search_btn {
margin-top: 32px !important;
border: 0px;
padding: 7px 27px;
font-size: 16px;
font-weight: 500;
background: #D92027;
transition: all linear 0.3s;
color: #fff;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
display: inline-block;
}
.search_btn:hover{
color: #fff;
}
/* footer */
#footer{
padding: 50px 0;
background-color: #333;
}
#footer ul li{
list-style: none;
margin-left: 0;
padding-left: 0;
margin: 7px 0;
}
#footer ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}
#footer a {
text-decoration: none;
color: white;
cursor: pointer;
}
#footer a:hover{
letter-spacing: 2px;
transition: 1s;
}
@media only screen and (max-width: 600px) {
.info-get-blood-img img {
width: 100%;
}
.my-btn{
margin-bottom: 7px;
}
.my-btn-2{
margin-left: 0 !important;
}
} | public/frontend/css/style.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* navbar */
.my-nav{
background-color: #FFFFFF;
}
.nav-link{
color: #D92027 !important;
border-bottom: 2px solid transparent;
font-size: 16px;
margin: 0 10px;
font-weight: 500;
}
.nav-link:hover{
color: #D92027;
border-bottom: 2px solid #D92027;
}
.nav-item img{
margin-top: 8px;
}
/* banner */
.header_search_area::before {
content: "";
position: absolute;
background: #000;
height: 100%;
width: 100%;
z-index: -1;
opacity: 0.8;
}
.banner-text{
padding-top: 10%;
}
.banner-text h1{
color: #FFFFFF;
font-size: 44px;
text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
line-height: 45px;
}
.banner-text h3{
color: #FFFFFF;
font-size: 20px;
font-weight: 500;
line-height: 30px;
margin-top: 30px;
margin-bottom: 30px;
}
.my-btn{
display: inline-block;
line-height: 1;
background-color: #D92027;
font-size: 15px;
padding: 12px 34px;
outline: none;
border-radius: 3px;
color: #fff;
text-align: center;
font-weight: 500;
border: none;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.my-btn:hover{
background-color: #fff;
border-radius: 3px;
color: #D92027;
transition: 1s;
}
.my-btn-2{
display: inline-block;
line-height: 1;
background-color: #fff;
font-size: 15px;
padding: 12px 34px;
outline: none;
border-radius: 3px;
color: #D92027;
text-align: center;
font-weight: 500;
border: none;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.my-btn-2:hover{
background-color:#D92027;
border-radius: 3px;
color: #fff;
transition: 1s;
}
/* info-get-blood-img */
.info-get-blood-img img{
width: 500px;
}
.getblood-info-text {
margin-top: 10%;
}
.getblood-info-text h3 {
font-size: 30px;
color: #D92027;
font-weight: 700;
margin-bottom: 15px;
}
.getblood-info-text p {
font-size: 18px;
font-weight: 500;
color: black;
}
.getblood-info-text ul li {
font-size: 18px;
font-weight: 500;
margin: 5px 0;
}
/* our network */
.section-heading{
font-size: 30px;
color: #D92027;
font-weight: 700;
}
/* our network */
.our-network{
padding: 50px 0;
}
.our-network-box i{
color: #D92027;
font-size: 40px;
margin: 20px 0;
}
.our-network-box h3{
font-size: 30px;
color: #000;
}
/* faqs */
.faqs{
margin: 20px 0;
}
.faqs p{
font-size: 18px;
}
/* Blood search part*/
.blood-search-container{
background-color: #EB2C2926;
padding: 60px 0;
}
.form-select,.date{
border: 1px solid #333;
}
.form-select:focus{
outline: 0;
box-shadow:none;
}
.search_btn {
margin-top: 32px !important;
border: 0px;
padding: 7px 27px;
font-size: 16px;
font-weight: 500;
background: #D92027;
transition: all linear 0.3s;
color: #fff;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
display: inline-block;
}
.search_btn:hover{
color: #fff;
}
/* footer */
#footer{
padding: 50px 0;
background-color: #333;
}
#footer ul li{
list-style: none;
margin-left: 0;
padding-left: 0;
margin: 7px 0;
}
#footer ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}
#footer a {
text-decoration: none;
color: white;
cursor: pointer;
}
#footer a:hover{
letter-spacing: 2px;
transition: 1s;
}
@media only screen and (max-width: 600px) {
.info-get-blood-img img {
width: 100%;
}
.my-btn{
margin-bottom: 7px;
}
.my-btn-2{
margin-left: 0 !important;
}
} | 0.29381 | 0.062818 |
html {
position: relative;
min-height: 100%;
}
body {
height: 100%;
color: #f5f5f5 !important;
}
#wrapper {
display: flex;
}
#wrapper #content-wrapper {
background-color: #28282d;
width: 100%;
overflow-x: hidden;
z-index: 1;
}
#wrapper #content-wrapper #content {
flex: 1 0 auto;
}
.bg-gradient-primary {
background-color: #2fa1db;
}
.bg-gradient-secondary {
background-color: #858796;
background-image: linear-gradient(180deg, #2fa1db 0%, #278dc0 75%);
background-size: cover;
}
@keyframes growIn {
0% {
transform: scale(0.9);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.animated--grow-in,
.sidebar .nav-item .collapse-inner {
animation-name: growIn;
animation-duration: 0.25s;
}
i.fa-fw{
font-size: 1.5rem;
vertical-align: bottom;
}
a{
transition: all 0.25s !important;
}
.fade{
transition: all 0.25s !important;
}
.btn{
transition: all 0.25s !important;
}
.btn-primary,.btn-outline-primary,.btn-warning,.btn:focus{
box-shadow: none !important;
}
.btn-primary{
color:#f5f5f5 !important;
background-color:#2fa1db !important;
border-color:#2fa1db !important;
}
.btn-primary:hover{
background-color:#2a8ec0 !important;
border-color:#2a8ec0 !important;
}
.btn-primary:active{
background-color:#277fac !important;
border-color:#277fac !important;
}
.btn-outline-primary{
color:#2fa1db !important;
border-color:#2fa1db !important;
}
.btn-outline-primary:hover{
color:#f5f5f5 !important;
background-color:#2a8ec0 !important;
border-color:#2a8ec0 !important;
}
.btn-outline-primary:active{
color:#f5f5f5 !important;
background-color:#277fac !important;
border-color:#277fac !important;
}
.btn-link{
color:#f5f5f5 !important;
}
h6.text-primary{
color:#f5f5f5 !important;
}
.topbar .nav-item .nav-link .img-profile {
height: 2rem;
width: 2rem;
object-fit: cover;
}
.topbar {
height: 4.375rem;
}
.topbar #sidebarToggleTop {
height: 2.5rem;
width: 2.5rem;
}
.topbar #sidebarToggleTop:hover {
background-color: #292C2F;
}
.topbar #sidebarToggleTop:active {
background-color: #363C42;
color: #2fa1db !important
}
.topbar .topbar-divider {
width: 0;
border-right: 1px solid rgba(245, 245, 245, 0.15);
height: calc(4.375rem - 2rem);
margin: auto 1rem;
}
.topbar .nav-item .nav-link {
height: 4.375rem;
display: flex;
align-items: center;
padding: 0 0.75rem;
}
.topbar .nav-item .nav-link:focus {
outline: 0;
}
.topbar .nav-item:focus {
outline: 0;
}
.topbar .dropdown {
position: static;
}
.topbar .dropdown .dropdown-menu {
width: calc(100% - 1.5rem);
right: 0.75rem;
}
.topbar .dropdown-list {
padding: 0;
border: none;
overflow: hidden;
}
.topbar .dropdown-list .dropdown-header {
background-color: #2fa1db;
border: 1px solid #2fa1db;
text-align: center;
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #f5f5f5 !important;
}
.topbar .dropdown-list .dropdown-item {
white-space: normal;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
line-height: 1.5rem;
}
.dropdown-item{
color: #f5f5f5 !important;
}
.dropdown-item:hover{
background-color: #eaecf4 !important;
color: #242324 !important;
}
.dropdown-item:active {
background-color: #dddfeb !important;
color: #242324 !important;
}
.dropdown-divider{
border-top: 1px solid rgba(0,0,0,.125) !important;
}
.dropdown .dropdown-menu {
font-size: 0.85rem;
background-color: rgba(36, 35, 36,0.95) !important;
border: 1px solid #3D3D42 !important;
}
.dropdown .dropdown-menu .dropdown-header {
font-weight: 800;
font-size: 0.65rem;
}
.dropdown.no-arrow .dropdown-toggle::after {
display: none;
}
.nav-link.dropdown-toggle{
color: #f5f5f5 !important;
}
.nav-link.dropdown-toggle:hover{
color: rgba(245, 245, 245, 0.5) !important;
}
.nav-link.dropdown-toggle:focus{
color: #2fa1db !important;
}
.topbar .dropdown-list .dropdown-item .dropdown-list-image {
position: relative;
height: 2.5rem;
width: 2.5rem;
}
.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
height: 2.5rem;
width: 2.5rem;
}
.topbar .dropdown-list .dropdown-item .text-truncate {
max-width: 10rem;
}
@media (min-width: 576px) {
.topbar .dropdown {
position: relative;
}
.topbar .dropdown .dropdown-menu {
width: auto;
right: 0;
}
.topbar .dropdown-list {
width: 20rem !important;
}
.topbar .dropdown-list .dropdown-item .text-truncate {
max-width: 13.375rem;
}
}
.sidebar {
width: 6.5rem;
min-height: 100vh;
transition: all 0.25s;
}
.sidebar.toggled {
width: 0 !important;
overflow: hidden;
transition: all 0.25s;
}
.sidebar .sidebar-brand {
height: 4.375rem;
text-decoration: none;
font-size: 1rem;
font-weight: 800;
padding: 1.5rem 1rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.05rem;
color: #f5f5f5;
}
.sidebar .sidebar-brand .sidebar-brand-icon i {
font-size: 2rem;
}
.sidebar hr.sidebar-divider {
margin: 0 1rem 1rem;
border-top: 1px solid rgba(245, 245, 245, 0.15);
}
.sidebar .sidebar-heading {
text-align: center;
padding: 0 1rem;
font-weight: 800;
font-size: 0.65rem;
color: rgba(245, 245, 245, 0.4);
}
.sidebar .nav-item {
position: relative;
}
.sidebar .nav-item:last-child {
margin-bottom: 1rem;
}
.sidebar .nav-item .nav-link {
text-align: center;
padding: 0.75rem 1rem;
width: 6.5rem;
z-index: 0;
color: rgba(245, 245, 245, 0.75);
}
.sidebar .nav-item .nav-link i {
color: rgba(245, 245, 245, 0.25);
transition: all 0.25s;
}
.sidebar .nav-item .nav-link span {
font-size: 0.65rem;
display: block;
}
.sidebar .nav-item .nav-link:active, .sidebar .nav-item .nav-link:focus, .sidebar .nav-item .nav-link:hover{
color: #f5f5f5;
}
.sidebar .nav-item .nav-link:active i, .sidebar .nav-item .nav-link:focus i, .sidebar .nav-item .nav-link:hover i{
color: #f5f5f5;
}
.sidebar .nav-item .collapse {
position: absolute;
left: calc(6.5rem + 1.5rem / 2);
top: 2px;
z-index: 2;
}
.sidebar .nav-item .collapse .collapse-inner {
border-radius: 0.35rem;
box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}
.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
padding: 0.5rem 0;
min-width: 10rem;
font-size: 0.85rem;
margin: 0 0 1rem 0;
background-color:rgba(36, 35, 36,0.95) !important;
border: 1px solid #3D3D42 !important;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
margin: 0;
white-space: nowrap;
padding: 0.5rem 1.5rem;
text-transform: uppercase;
font-weight: 800;
font-size: 0.65rem;
color: rgba(245, 245, 245, 0.5);
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
padding: 0.5rem 1rem;
margin: 0 0.5rem;
display: block;
color: #f5f5f5;
text-decoration: none;
border-radius: 0.35rem;
white-space: nowrap;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
background-color: #eaecf4;
color: #242324;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
background-color: #dddfeb;
color: #242324 !important;
}
/** Active **/
.sidebar .nav-item.active .nav-link {
font-weight: 900;
}
.sidebar .nav-item.active .nav-link {
color: #f5f5f5;
}
.sidebar .nav-item.active .nav-link i {
color: #f5f5f5;
font-weight: 900;
transition: all 0.25s;
}
.sidebar .nav-item.active .nav-link:active, .sidebar .nav-item.active .nav-link:focus, .sidebar .nav-item.active .nav-link:hover{
font-weight: 600;
}
.sidebar .nav-item.active .nav-link:active i, .sidebar .nav-item.active .nav-link:focus i, .sidebar .nav-item.active .nav-link:hover i {
font-weight: 1;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
color: #2fa1db;
font-weight: 500;
}
/** Active **/
nav.bg-dark, footer.bg-dark{
background-color: #1C1E20 !important;
}
footer{
position: absolute;
bottom: 0;
right:0;
width: calc(100% - 6.5rem);
transition: all 0.25s;
}
footer.sticky-footer {
padding: 2rem 0;
}
footer.sticky-footer .copyright {
line-height: 1;
font-size: 0.8rem;
}
body.sidebar-toggled footer.sticky-footer {
width: 100%;
}
.card{
background-color: #242324 !important;
border: 1px solid #3D3D42 !important;
}
.card-header{
background-color: rgba(0,0,0,0.25) !important;
}
.modal-content{
background-color: #242324 !important;
}
.modal-header{
border-bottom: 1px solid rgba(0,0,0,.125) !important;
}
.modal-footer{
border-top: 1px solid rgba(0,0,0,.125) !important;
}
.dismissable{
text-shadow: none !important;
color: #f5f5f5 !important;
}
.bg-login-image,.bg-register-image {
background: url(http://placehold.it/600x800);
background-position: center;
background-size: cover;
}
form.user .form-control-user {
font-size: 0.8rem;
border-radius: 10rem;
padding: 1.5rem 1rem;
}
form.user .btn-user {
font-size: 0.8rem;
border-radius: 10rem;
padding: 0.75rem 1rem;
}
textarea {
border-radius: 25px !important;
padding: 1em !important;
min-height:2em;
resize: none;
overflow-y: hidden;
}
.custom-select{
height: 4.5rem !important;
}
.select-height{
height: 4.5rem !important;
}
pre{
color:#c5c5c5;
}
.description{
word-wrap: break-word;
}
.course-teacher-img{
width: 50%;
display: block;
margin:auto;
}
.course-students-img{
width: 2.5rem;
}
/******************/
/** chat STYLES **/
/******************/
.chat-btn{
background-color: gray;
border: none;
border: 2px solid gray;
transition: all 0.25s;
color: #f5f5f5 !important;
}
.chat-btn::placeholder{
color: #f5f5f583;
}
.chat-btn:focus{
background-color: gray;
border: 2px solid #2fa1db;
box-shadow: none !important;
}
.speech-bubble {
position: relative;
background: #3D3D42;
border-radius: .4em;
}
.speech-bubble:after {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 0;
height: 0;
border: 0.656em solid transparent;
border-right-color: #323237;
border-left: 0;
border-top: 0;
margin-top: -0.328em;
margin-left: -0.656em;
}
.speech-bubble-own {
position: relative;
background: #2fa1db;;
border-radius: .4em;
}
.speech-bubble-own:after {
content: '';
position: absolute;
right: 0;
top: 50%;
width: 0;
height: 0;
border: 0.656em solid transparent;
border-left-color: #265871;;
border-right: 0;
border-top: 0;
margin-top: -0.328em;
margin-right: -0.656em;
}
/******************/
/** ROOM STYLES **/
/******************/
#video-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
video {
width: 50%;
transform: rotateY(180deg);
padding: 8px;
}
.main {
height: 100vh;
display: flex;
}
#left {
display: flex;
flex: 0.8;
flex-direction: column;
}
.videos {
display: flex;
flex-grow: 1;
background-color: #000;
justify-content: center;
align-items: center;
padding: 40px;
}
.controls {
background-color: #1C1E20;
color: #F5F5F5;
display: flex;
justify-content: space-between;
padding: 5px;
}
.controls-block {
display: flex;
}
.controls-button {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 8px 10px;
min-width: 80px;
cursor: pointer;
}
.controls-button:hover {
background-color: #343434;
border-radius: 5px;
}
.controls-button i {
font-size: 24px;
}
.mute, .stop {
color: #dc3545;
}
#right {
display: flex;
flex: 0.2;
background-color: #242324;
border-left: 1px solid #3D3D42;
flex-direction: column;
}
.chat-header {
padding-top: 5px;
color: #F5F5F5;
text-align: center;
}
.chat-window {
flex-grow: 1;
overflow-y: auto;
scrollbar-color: grey transparent;
scrollbar-width: thin;
}
.messages {
color: #F5F5F5;
list-style: none;
padding: 10px;
hyphens: auto;
}
.username {
color: #c8c8c8;
}
.chat-type {
padding: 22px 12px;
display: flex;
} | public/css/main.css | html {
position: relative;
min-height: 100%;
}
body {
height: 100%;
color: #f5f5f5 !important;
}
#wrapper {
display: flex;
}
#wrapper #content-wrapper {
background-color: #28282d;
width: 100%;
overflow-x: hidden;
z-index: 1;
}
#wrapper #content-wrapper #content {
flex: 1 0 auto;
}
.bg-gradient-primary {
background-color: #2fa1db;
}
.bg-gradient-secondary {
background-color: #858796;
background-image: linear-gradient(180deg, #2fa1db 0%, #278dc0 75%);
background-size: cover;
}
@keyframes growIn {
0% {
transform: scale(0.9);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.animated--grow-in,
.sidebar .nav-item .collapse-inner {
animation-name: growIn;
animation-duration: 0.25s;
}
i.fa-fw{
font-size: 1.5rem;
vertical-align: bottom;
}
a{
transition: all 0.25s !important;
}
.fade{
transition: all 0.25s !important;
}
.btn{
transition: all 0.25s !important;
}
.btn-primary,.btn-outline-primary,.btn-warning,.btn:focus{
box-shadow: none !important;
}
.btn-primary{
color:#f5f5f5 !important;
background-color:#2fa1db !important;
border-color:#2fa1db !important;
}
.btn-primary:hover{
background-color:#2a8ec0 !important;
border-color:#2a8ec0 !important;
}
.btn-primary:active{
background-color:#277fac !important;
border-color:#277fac !important;
}
.btn-outline-primary{
color:#2fa1db !important;
border-color:#2fa1db !important;
}
.btn-outline-primary:hover{
color:#f5f5f5 !important;
background-color:#2a8ec0 !important;
border-color:#2a8ec0 !important;
}
.btn-outline-primary:active{
color:#f5f5f5 !important;
background-color:#277fac !important;
border-color:#277fac !important;
}
.btn-link{
color:#f5f5f5 !important;
}
h6.text-primary{
color:#f5f5f5 !important;
}
.topbar .nav-item .nav-link .img-profile {
height: 2rem;
width: 2rem;
object-fit: cover;
}
.topbar {
height: 4.375rem;
}
.topbar #sidebarToggleTop {
height: 2.5rem;
width: 2.5rem;
}
.topbar #sidebarToggleTop:hover {
background-color: #292C2F;
}
.topbar #sidebarToggleTop:active {
background-color: #363C42;
color: #2fa1db !important
}
.topbar .topbar-divider {
width: 0;
border-right: 1px solid rgba(245, 245, 245, 0.15);
height: calc(4.375rem - 2rem);
margin: auto 1rem;
}
.topbar .nav-item .nav-link {
height: 4.375rem;
display: flex;
align-items: center;
padding: 0 0.75rem;
}
.topbar .nav-item .nav-link:focus {
outline: 0;
}
.topbar .nav-item:focus {
outline: 0;
}
.topbar .dropdown {
position: static;
}
.topbar .dropdown .dropdown-menu {
width: calc(100% - 1.5rem);
right: 0.75rem;
}
.topbar .dropdown-list {
padding: 0;
border: none;
overflow: hidden;
}
.topbar .dropdown-list .dropdown-header {
background-color: #2fa1db;
border: 1px solid #2fa1db;
text-align: center;
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #f5f5f5 !important;
}
.topbar .dropdown-list .dropdown-item {
white-space: normal;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
line-height: 1.5rem;
}
.dropdown-item{
color: #f5f5f5 !important;
}
.dropdown-item:hover{
background-color: #eaecf4 !important;
color: #242324 !important;
}
.dropdown-item:active {
background-color: #dddfeb !important;
color: #242324 !important;
}
.dropdown-divider{
border-top: 1px solid rgba(0,0,0,.125) !important;
}
.dropdown .dropdown-menu {
font-size: 0.85rem;
background-color: rgba(36, 35, 36,0.95) !important;
border: 1px solid #3D3D42 !important;
}
.dropdown .dropdown-menu .dropdown-header {
font-weight: 800;
font-size: 0.65rem;
}
.dropdown.no-arrow .dropdown-toggle::after {
display: none;
}
.nav-link.dropdown-toggle{
color: #f5f5f5 !important;
}
.nav-link.dropdown-toggle:hover{
color: rgba(245, 245, 245, 0.5) !important;
}
.nav-link.dropdown-toggle:focus{
color: #2fa1db !important;
}
.topbar .dropdown-list .dropdown-item .dropdown-list-image {
position: relative;
height: 2.5rem;
width: 2.5rem;
}
.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
height: 2.5rem;
width: 2.5rem;
}
.topbar .dropdown-list .dropdown-item .text-truncate {
max-width: 10rem;
}
@media (min-width: 576px) {
.topbar .dropdown {
position: relative;
}
.topbar .dropdown .dropdown-menu {
width: auto;
right: 0;
}
.topbar .dropdown-list {
width: 20rem !important;
}
.topbar .dropdown-list .dropdown-item .text-truncate {
max-width: 13.375rem;
}
}
.sidebar {
width: 6.5rem;
min-height: 100vh;
transition: all 0.25s;
}
.sidebar.toggled {
width: 0 !important;
overflow: hidden;
transition: all 0.25s;
}
.sidebar .sidebar-brand {
height: 4.375rem;
text-decoration: none;
font-size: 1rem;
font-weight: 800;
padding: 1.5rem 1rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.05rem;
color: #f5f5f5;
}
.sidebar .sidebar-brand .sidebar-brand-icon i {
font-size: 2rem;
}
.sidebar hr.sidebar-divider {
margin: 0 1rem 1rem;
border-top: 1px solid rgba(245, 245, 245, 0.15);
}
.sidebar .sidebar-heading {
text-align: center;
padding: 0 1rem;
font-weight: 800;
font-size: 0.65rem;
color: rgba(245, 245, 245, 0.4);
}
.sidebar .nav-item {
position: relative;
}
.sidebar .nav-item:last-child {
margin-bottom: 1rem;
}
.sidebar .nav-item .nav-link {
text-align: center;
padding: 0.75rem 1rem;
width: 6.5rem;
z-index: 0;
color: rgba(245, 245, 245, 0.75);
}
.sidebar .nav-item .nav-link i {
color: rgba(245, 245, 245, 0.25);
transition: all 0.25s;
}
.sidebar .nav-item .nav-link span {
font-size: 0.65rem;
display: block;
}
.sidebar .nav-item .nav-link:active, .sidebar .nav-item .nav-link:focus, .sidebar .nav-item .nav-link:hover{
color: #f5f5f5;
}
.sidebar .nav-item .nav-link:active i, .sidebar .nav-item .nav-link:focus i, .sidebar .nav-item .nav-link:hover i{
color: #f5f5f5;
}
.sidebar .nav-item .collapse {
position: absolute;
left: calc(6.5rem + 1.5rem / 2);
top: 2px;
z-index: 2;
}
.sidebar .nav-item .collapse .collapse-inner {
border-radius: 0.35rem;
box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}
.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
padding: 0.5rem 0;
min-width: 10rem;
font-size: 0.85rem;
margin: 0 0 1rem 0;
background-color:rgba(36, 35, 36,0.95) !important;
border: 1px solid #3D3D42 !important;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
margin: 0;
white-space: nowrap;
padding: 0.5rem 1.5rem;
text-transform: uppercase;
font-weight: 800;
font-size: 0.65rem;
color: rgba(245, 245, 245, 0.5);
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
padding: 0.5rem 1rem;
margin: 0 0.5rem;
display: block;
color: #f5f5f5;
text-decoration: none;
border-radius: 0.35rem;
white-space: nowrap;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
background-color: #eaecf4;
color: #242324;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
background-color: #dddfeb;
color: #242324 !important;
}
/** Active **/
.sidebar .nav-item.active .nav-link {
font-weight: 900;
}
.sidebar .nav-item.active .nav-link {
color: #f5f5f5;
}
.sidebar .nav-item.active .nav-link i {
color: #f5f5f5;
font-weight: 900;
transition: all 0.25s;
}
.sidebar .nav-item.active .nav-link:active, .sidebar .nav-item.active .nav-link:focus, .sidebar .nav-item.active .nav-link:hover{
font-weight: 600;
}
.sidebar .nav-item.active .nav-link:active i, .sidebar .nav-item.active .nav-link:focus i, .sidebar .nav-item.active .nav-link:hover i {
font-weight: 1;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
color: #2fa1db;
font-weight: 500;
}
/** Active **/
nav.bg-dark, footer.bg-dark{
background-color: #1C1E20 !important;
}
footer{
position: absolute;
bottom: 0;
right:0;
width: calc(100% - 6.5rem);
transition: all 0.25s;
}
footer.sticky-footer {
padding: 2rem 0;
}
footer.sticky-footer .copyright {
line-height: 1;
font-size: 0.8rem;
}
body.sidebar-toggled footer.sticky-footer {
width: 100%;
}
.card{
background-color: #242324 !important;
border: 1px solid #3D3D42 !important;
}
.card-header{
background-color: rgba(0,0,0,0.25) !important;
}
.modal-content{
background-color: #242324 !important;
}
.modal-header{
border-bottom: 1px solid rgba(0,0,0,.125) !important;
}
.modal-footer{
border-top: 1px solid rgba(0,0,0,.125) !important;
}
.dismissable{
text-shadow: none !important;
color: #f5f5f5 !important;
}
.bg-login-image,.bg-register-image {
background: url(http://placehold.it/600x800);
background-position: center;
background-size: cover;
}
form.user .form-control-user {
font-size: 0.8rem;
border-radius: 10rem;
padding: 1.5rem 1rem;
}
form.user .btn-user {
font-size: 0.8rem;
border-radius: 10rem;
padding: 0.75rem 1rem;
}
textarea {
border-radius: 25px !important;
padding: 1em !important;
min-height:2em;
resize: none;
overflow-y: hidden;
}
.custom-select{
height: 4.5rem !important;
}
.select-height{
height: 4.5rem !important;
}
pre{
color:#c5c5c5;
}
.description{
word-wrap: break-word;
}
.course-teacher-img{
width: 50%;
display: block;
margin:auto;
}
.course-students-img{
width: 2.5rem;
}
/******************/
/** chat STYLES **/
/******************/
.chat-btn{
background-color: gray;
border: none;
border: 2px solid gray;
transition: all 0.25s;
color: #f5f5f5 !important;
}
.chat-btn::placeholder{
color: #f5f5f583;
}
.chat-btn:focus{
background-color: gray;
border: 2px solid #2fa1db;
box-shadow: none !important;
}
.speech-bubble {
position: relative;
background: #3D3D42;
border-radius: .4em;
}
.speech-bubble:after {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 0;
height: 0;
border: 0.656em solid transparent;
border-right-color: #323237;
border-left: 0;
border-top: 0;
margin-top: -0.328em;
margin-left: -0.656em;
}
.speech-bubble-own {
position: relative;
background: #2fa1db;;
border-radius: .4em;
}
.speech-bubble-own:after {
content: '';
position: absolute;
right: 0;
top: 50%;
width: 0;
height: 0;
border: 0.656em solid transparent;
border-left-color: #265871;;
border-right: 0;
border-top: 0;
margin-top: -0.328em;
margin-right: -0.656em;
}
/******************/
/** ROOM STYLES **/
/******************/
#video-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
video {
width: 50%;
transform: rotateY(180deg);
padding: 8px;
}
.main {
height: 100vh;
display: flex;
}
#left {
display: flex;
flex: 0.8;
flex-direction: column;
}
.videos {
display: flex;
flex-grow: 1;
background-color: #000;
justify-content: center;
align-items: center;
padding: 40px;
}
.controls {
background-color: #1C1E20;
color: #F5F5F5;
display: flex;
justify-content: space-between;
padding: 5px;
}
.controls-block {
display: flex;
}
.controls-button {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 8px 10px;
min-width: 80px;
cursor: pointer;
}
.controls-button:hover {
background-color: #343434;
border-radius: 5px;
}
.controls-button i {
font-size: 24px;
}
.mute, .stop {
color: #dc3545;
}
#right {
display: flex;
flex: 0.2;
background-color: #242324;
border-left: 1px solid #3D3D42;
flex-direction: column;
}
.chat-header {
padding-top: 5px;
color: #F5F5F5;
text-align: center;
}
.chat-window {
flex-grow: 1;
overflow-y: auto;
scrollbar-color: grey transparent;
scrollbar-width: thin;
}
.messages {
color: #F5F5F5;
list-style: none;
padding: 10px;
hyphens: auto;
}
.username {
color: #c8c8c8;
}
.chat-type {
padding: 22px 12px;
display: flex;
} | 0.528047 | 0.063628 |
h4{ margin-top:5px; margin-bottom:2px }
.error{ color:red }
.success{ color:green }
.darkorange{ color:#ff8c00 }
.form-control.addPost{ max-width:400px }
.form-control.inputTitle{ max-width:980px }
.ads{ max-height:160px }
ads-img-container{ width:200px; border:solid }
.ads .title{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis }
.ads-content{ z-index:-1; margin-bottom:-1px; height:65px; overflow:hidden; text-overflow:ellipsis; word-wrap:break-word }
.ads-text{ background-color:rgba(255, 255, 255, 0); margin-left:160px; position:relative; top:-155px }
.ads > img{ max-height:150px; max-width:150px }
@media screen and (max-width:600px){
h4{ font-size:110% }
.ads-text{ font-size:98%; margin-left:130px; top:-130px; line-height:100% }
.ads > img{ max-height:120px; max-width:120px }
}
@media screen and (max-width:400px){
.ads-text{ margin-left:100px; top:-120px }
.ads > img{ max-height:100px; max-width:100px }
}
.ads-price{ font-size:120% }
.ads-type{ font-size:90%; color:#999 }
.catalog-filters{ margin:0 0 10px }
.clearfix::after{ content:'.'; visibility:hidden; font:0/0 a }
.clear, .clearfix::after{ clear:both; height:0; display:block }
.button-group:first-child{ margin-left:0 }
.catalog-filters-type{ float:left }
.button-group{ display:inline-block; white-space:nowrap }
.button, .button-group, .form-select-v2, .i, .icon-photo{ vertical-align:middle }
.button-group .button:first-child{ border-top-right-radius:0; border-bottom-right-radius:0; margin-left:0 }
.button-group .button.is-active, .button-group .button:active, .button-group .button:focus, .button-group .button:hover{ z-index:1 }
.button-origin.is-active{ background-color:#e1e1e1; box-shadow:inset 0 2px 2px 0 #ccc; border-color:#ccc }
.button-group .button{ margin:0 0 0 -1px }
.button-origin{ background-color:#fff; font-size:14px; line-height:16px; color:#000; padding:6px 13px; border:1px solid #ccc; border-radius:3px }
.button{ position:relative; display:inline-block; white-space:nowrap; -ms-user-select:none; -webkit-touch-callout:none; user-select:none; -webkit-appearance:none; appearance:none; cursor:pointer }
.button-azure, .button-milky, .button-origin{ font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif }
.button, .button-group, .form-select-v2, .i, .icon-photo{ vertical-align:middle }
.button, .form-select-v2, .ix-count{ box-sizing:border-box }
.button, .form-select-v2 select{ -moz-appearance:none; outline:0 }
.button, .button-root-1ipaF{ -webkit-user-select:none; -moz-user-select:none; text-decoration:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.catalog-filters-sort{ float:right }
.form-select-v2{ background-color:#fff; font-size:14px; line-height:14px; color:#4a4a4a; position:relative; height:30px; box-shadow:inset 0 1px 1px rgba(142, 142, 142, .2); border:1px solid #d8d8d8; border-radius:2px; display:inline-block; float:none }
.form-select-v2::after{ position:absolute; right:10px; margin-top:-2px; width:8px; height:5px; opacity:.6; pointer-events:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.button-group:last-child{ margin-right:0 }
.catalog-filters-views{ float:right }
.button-group{ display:inline-block; white-space:nowrap }
.form-select-v2::after{ position:absolute; right:10px; margin-top:-2px; width:8px; height:5px; opacity:.6; pointer-events:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.form-select-v2 select, .form-select-v2__inner{ line-height:28px; padding:0 24px 0 8px; width:100%; height:28px }
.button-origin{ background-color:#fff; font-size:14px; line-height:16px; color:#000; padding:6px 13px; border:1px solid #ccc; border-radius:3px }
.button-origin.is-active{ background-color:#e1e1e1; box-shadow:inset 0 2px 2px 0 #ccc; border-color:#ccc }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_gallery{ width:12px; height:12px }
.i, .i-bonus, .i-card, .i-catalog-view, .i-csc, .i-metro, .i-new, .icon-photo, .ix{ display:inline-block }
*{ outline-color:#0091d9 }
.catalog-filters-views .is-active .i-catalog-view{ opacity:1 }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_table{ width:14px; height:12px; background-position:-16px 1px }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_list{ width:14px; height:12px; background-position:-34px 1px }
.radio{ position:absolute; z-index:-1; opacity:0; margin:10px 0 0 7px }
.radio + label{ position:relative; padding:0 0 0 35px; cursor:pointer }
.radio + label:before{ content:''; position:absolute; top:-3px; left:0; width:22px; height:22px; border:1px solid #CDD1DA; border-radius:50%; background:#FFF }
.radio + label:after{ content:''; position:absolute; top:0; left:3px; width:16px; height:16px; border-radius:50%; background:#ff8c00; box-shadow:inset 0 1px 1px rgba(0, 0, 0, .5); opacity:0; transition:.2s }
.radio:checked + label:after{ opacity:1 }
.radio:focus + label:before{ box-shadow:0 0 0 3px #ff8c00 }
.image-slider{ width:100% }
/*.slick-slider{position:relative;}*/
/*.slick-button-left, .slick-button-right{ position:relative; background-color:transparent; border:solid #000 1px }*/
/*.slick-button-left{ top:8px; z-index:999; width:40% }*/
/*.slick-button-right{ top:-55px; z-index:999; left:0; width:40%; }*/
/*.image-sub-slider{ width:20% }*/
/*.slick-list{ margin-top:-40px; margin-bottom:-40px }*/
/*.fa-angle-right{ color:#fff }*/
/*.fa-angle-left{ color:#fff }*/
/*.black{ color:black }*/
#toTop{
border:2px solid #ccc;
background:#9999999c;
text-align:center;
padding:0.5vh;
position:fixed;
bottom:0;
cursor:pointer;
color:#333;
font-size:12px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
width:7vw }
.form-search-post{ padding:2px; margin-bottom: -5px}
.btn-search-post{ margin-top:10px; width:100%}
.table-password{color: black; border:solid #000 1px;margin-left: auto;margin-right:auto; padding:3px;} | public/css/common.css | h4{ margin-top:5px; margin-bottom:2px }
.error{ color:red }
.success{ color:green }
.darkorange{ color:#ff8c00 }
.form-control.addPost{ max-width:400px }
.form-control.inputTitle{ max-width:980px }
.ads{ max-height:160px }
ads-img-container{ width:200px; border:solid }
.ads .title{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis }
.ads-content{ z-index:-1; margin-bottom:-1px; height:65px; overflow:hidden; text-overflow:ellipsis; word-wrap:break-word }
.ads-text{ background-color:rgba(255, 255, 255, 0); margin-left:160px; position:relative; top:-155px }
.ads > img{ max-height:150px; max-width:150px }
@media screen and (max-width:600px){
h4{ font-size:110% }
.ads-text{ font-size:98%; margin-left:130px; top:-130px; line-height:100% }
.ads > img{ max-height:120px; max-width:120px }
}
@media screen and (max-width:400px){
.ads-text{ margin-left:100px; top:-120px }
.ads > img{ max-height:100px; max-width:100px }
}
.ads-price{ font-size:120% }
.ads-type{ font-size:90%; color:#999 }
.catalog-filters{ margin:0 0 10px }
.clearfix::after{ content:'.'; visibility:hidden; font:0/0 a }
.clear, .clearfix::after{ clear:both; height:0; display:block }
.button-group:first-child{ margin-left:0 }
.catalog-filters-type{ float:left }
.button-group{ display:inline-block; white-space:nowrap }
.button, .button-group, .form-select-v2, .i, .icon-photo{ vertical-align:middle }
.button-group .button:first-child{ border-top-right-radius:0; border-bottom-right-radius:0; margin-left:0 }
.button-group .button.is-active, .button-group .button:active, .button-group .button:focus, .button-group .button:hover{ z-index:1 }
.button-origin.is-active{ background-color:#e1e1e1; box-shadow:inset 0 2px 2px 0 #ccc; border-color:#ccc }
.button-group .button{ margin:0 0 0 -1px }
.button-origin{ background-color:#fff; font-size:14px; line-height:16px; color:#000; padding:6px 13px; border:1px solid #ccc; border-radius:3px }
.button{ position:relative; display:inline-block; white-space:nowrap; -ms-user-select:none; -webkit-touch-callout:none; user-select:none; -webkit-appearance:none; appearance:none; cursor:pointer }
.button-azure, .button-milky, .button-origin{ font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif }
.button, .button-group, .form-select-v2, .i, .icon-photo{ vertical-align:middle }
.button, .form-select-v2, .ix-count{ box-sizing:border-box }
.button, .form-select-v2 select{ -moz-appearance:none; outline:0 }
.button, .button-root-1ipaF{ -webkit-user-select:none; -moz-user-select:none; text-decoration:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.catalog-filters-sort{ float:right }
.form-select-v2{ background-color:#fff; font-size:14px; line-height:14px; color:#4a4a4a; position:relative; height:30px; box-shadow:inset 0 1px 1px rgba(142, 142, 142, .2); border:1px solid #d8d8d8; border-radius:2px; display:inline-block; float:none }
.form-select-v2::after{ position:absolute; right:10px; margin-top:-2px; width:8px; height:5px; opacity:.6; pointer-events:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.button-group:last-child{ margin-right:0 }
.catalog-filters-views{ float:right }
.button-group{ display:inline-block; white-space:nowrap }
.form-select-v2::after{ position:absolute; right:10px; margin-top:-2px; width:8px; height:5px; opacity:.6; pointer-events:none }
.button.is-loading:after, .form-select-v2::after{ top:50%; content:'' }
.form-select-v2 select, .form-select-v2__inner{ line-height:28px; padding:0 24px 0 8px; width:100%; height:28px }
.button-origin{ background-color:#fff; font-size:14px; line-height:16px; color:#000; padding:6px 13px; border:1px solid #ccc; border-radius:3px }
.button-origin.is-active{ background-color:#e1e1e1; box-shadow:inset 0 2px 2px 0 #ccc; border-color:#ccc }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_gallery{ width:12px; height:12px }
.i, .i-bonus, .i-card, .i-catalog-view, .i-csc, .i-metro, .i-new, .icon-photo, .ix{ display:inline-block }
*{ outline-color:#0091d9 }
.catalog-filters-views .is-active .i-catalog-view{ opacity:1 }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_table{ width:14px; height:12px; background-position:-16px 1px }
.catalog-filters-views .i-catalog-view{ vertical-align:middle; opacity:.5 }
.i-catalog-view.i-catalog-view_list{ width:14px; height:12px; background-position:-34px 1px }
.radio{ position:absolute; z-index:-1; opacity:0; margin:10px 0 0 7px }
.radio + label{ position:relative; padding:0 0 0 35px; cursor:pointer }
.radio + label:before{ content:''; position:absolute; top:-3px; left:0; width:22px; height:22px; border:1px solid #CDD1DA; border-radius:50%; background:#FFF }
.radio + label:after{ content:''; position:absolute; top:0; left:3px; width:16px; height:16px; border-radius:50%; background:#ff8c00; box-shadow:inset 0 1px 1px rgba(0, 0, 0, .5); opacity:0; transition:.2s }
.radio:checked + label:after{ opacity:1 }
.radio:focus + label:before{ box-shadow:0 0 0 3px #ff8c00 }
.image-slider{ width:100% }
/*.slick-slider{position:relative;}*/
/*.slick-button-left, .slick-button-right{ position:relative; background-color:transparent; border:solid #000 1px }*/
/*.slick-button-left{ top:8px; z-index:999; width:40% }*/
/*.slick-button-right{ top:-55px; z-index:999; left:0; width:40%; }*/
/*.image-sub-slider{ width:20% }*/
/*.slick-list{ margin-top:-40px; margin-bottom:-40px }*/
/*.fa-angle-right{ color:#fff }*/
/*.fa-angle-left{ color:#fff }*/
/*.black{ color:black }*/
#toTop{
border:2px solid #ccc;
background:#9999999c;
text-align:center;
padding:0.5vh;
position:fixed;
bottom:0;
cursor:pointer;
color:#333;
font-size:12px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
width:7vw }
.form-search-post{ padding:2px; margin-bottom: -5px}
.btn-search-post{ margin-top:10px; width:100%}
.table-password{color: black; border:solid #000 1px;margin-left: auto;margin-right:auto; padding:3px;} | 0.388734 | 0.078642 |
.jumbotron {
text-align: center;
text-shadow: 4px 4px 6px #333300;
font-weight: bolder;
font-family: fantasy;
background-image: url(https://c1.staticflickr.com/6/5064/5751846075_198920ba0f_b.jpg);
border-style: groove;
border-color: #000;
}
.title {
color: #99cc00;
}
.col-md-12 {
text-align: center;
}
.col-md-6 {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000
}
.col-md-6 h3 {
font-size: 40px;
}
.col-md-4 {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
text-align: center;
}
.btn-success {
background-color: #331a00;
border-style: groove;
border-width: thick;
border-color: #996600;
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
padding-bottom: 4px;
}
body {
background-image: url(https://images3.alphacoders.com/152/152779.jpg);
}
a {
color: #99cc00;
}
ul {
list-style-type: none;
}
ol {
list-style-type: disc;
}
ol > li {
font-weight: bold;
font-family: monospace;
padding-top: 8px;
padding-bottom: 4px;
}
ul > li {
/*text-align: center;*/
font-weight: bold;
font-family: monospace;
padding-top: 8px;
padding-bottom: 4px;
}
p {
font-family: monospace;
font-weight: bold;
text-align: left;
}
h3 {
text-align: center;
text-shadow: 2px 2px 4px #333300;
font-weight: bolder;
font-family: fantasy;
color: #4d6600;
padding-bottom: 30px;
padding-top: 20px;
}
button {
background-color: #000;
}
img {
}
#me {
width: 62%;
float: left;
padding-left: 4px;
padding-right: 4px;
padding-top: 12px;
padding-bottom: 4px;
}
#contact > li {
display: inline-block;
padding-left: 20px;
padding-right: 20px;
text-shadow: 1px 1px 2px #000;
font-weight: bold;
font-family: fantasy;
text-decoration: underline;
font-size: 20px;
}
#about {
padding-right: 6px;
padding-left: 6px;
padding-top: 6px;
padding-bottom: 6px;
text-align: left;
font-weight: bold;
font-family: monospace;
}
#subheader {
text-align: center;
}
#back {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
text-align: left;
}
#background {
font-size: 40px;
}
#contact {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
}
#contact-p {
text-align: center;
font-size: 60px;
font-weight: bold;
font-family: monospace;
} | css/styles.css | .jumbotron {
text-align: center;
text-shadow: 4px 4px 6px #333300;
font-weight: bolder;
font-family: fantasy;
background-image: url(https://c1.staticflickr.com/6/5064/5751846075_198920ba0f_b.jpg);
border-style: groove;
border-color: #000;
}
.title {
color: #99cc00;
}
.col-md-12 {
text-align: center;
}
.col-md-6 {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000
}
.col-md-6 h3 {
font-size: 40px;
}
.col-md-4 {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
text-align: center;
}
.btn-success {
background-color: #331a00;
border-style: groove;
border-width: thick;
border-color: #996600;
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
padding-bottom: 4px;
}
body {
background-image: url(https://images3.alphacoders.com/152/152779.jpg);
}
a {
color: #99cc00;
}
ul {
list-style-type: none;
}
ol {
list-style-type: disc;
}
ol > li {
font-weight: bold;
font-family: monospace;
padding-top: 8px;
padding-bottom: 4px;
}
ul > li {
/*text-align: center;*/
font-weight: bold;
font-family: monospace;
padding-top: 8px;
padding-bottom: 4px;
}
p {
font-family: monospace;
font-weight: bold;
text-align: left;
}
h3 {
text-align: center;
text-shadow: 2px 2px 4px #333300;
font-weight: bolder;
font-family: fantasy;
color: #4d6600;
padding-bottom: 30px;
padding-top: 20px;
}
button {
background-color: #000;
}
img {
}
#me {
width: 62%;
float: left;
padding-left: 4px;
padding-right: 4px;
padding-top: 12px;
padding-bottom: 4px;
}
#contact > li {
display: inline-block;
padding-left: 20px;
padding-right: 20px;
text-shadow: 1px 1px 2px #000;
font-weight: bold;
font-family: fantasy;
text-decoration: underline;
font-size: 20px;
}
#about {
padding-right: 6px;
padding-left: 6px;
padding-top: 6px;
padding-bottom: 6px;
text-align: left;
font-weight: bold;
font-family: monospace;
}
#subheader {
text-align: center;
}
#back {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
text-align: left;
}
#background {
font-size: 40px;
}
#contact {
background-image: url(https://s-media-cache-ak0.pinimg.com/originals/69/1a/40/691a40dd4c864a2ff3e089ba285f89a3.jpg);
border-style: groove;
border-radius: 6px;
border-color: #000;
}
#contact-p {
text-align: center;
font-size: 60px;
font-weight: bold;
font-family: monospace;
} | 0.403332 | 0.148881 |
@charset "UTF-8";
/* HTML5 display-role reset for older browsers */
*{
box-sizing: border-box !important;
}
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;
}
/* remember to define visible focus styles!
:focus{
outline:?????;
} */
/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*------------------------------------*\
$MAIN
\*------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
body {
font-family: 'Roboto', sans-serif;
}
/* Typography */
h1 {
font-size: 28px;
font-weight: 300;
flex: 1;
}
h5 {
font-weight: 500;
line-height: 1.7em;
}
h6 {
color: #666;
font-size: 14px;
}
/* Product Layout */
.product-filter {
display: flex;
padding: 30px 0;
}
.sort {
display: flex;
align-self: flex-end;
}
.collection-sort {
display: flex;
flex-direction: column;
}
.collection-sort:first-child {
padding-right: 20px;
}
label {
color: #666;
font-size: 10px;
font-weight: 500;
line-height: 2em;
text-transform: uppercase;
}
.products {
display: flex;
flex-wrap: wrap;
}
.product-card {
display: flex;
flex-direction: column;
padding: 2%;
flex: 1 16%;
background-color: #FFF;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
}
.product-image img {
width: 100%;
}
.product-info {
margin-top: auto;
padding-top: 20px;
text-align: center;
}
@media ( max-width : 920px ) {
.product-card {
flex: 1 21%;
}
.products .product-card:first-child, .products .product-card:nth-child(2)
{
flex: 2 46%;
}
}
@media ( max-width : 600px ) {
.product-card {
flex: 1 46%;
}
}
@media ( max-width : 480px ) {
h1 {
margin-bottom: 20px;
}
.product-filter {
flex-direction: column;
}
.sort {
align-self: flex-start;
}
} | src/main/webapp/resources/product/product.css | @charset "UTF-8";
/* HTML5 display-role reset for older browsers */
*{
box-sizing: border-box !important;
}
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;
}
/* remember to define visible focus styles!
:focus{
outline:?????;
} */
/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*------------------------------------*\
$MAIN
\*------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
body {
font-family: 'Roboto', sans-serif;
}
/* Typography */
h1 {
font-size: 28px;
font-weight: 300;
flex: 1;
}
h5 {
font-weight: 500;
line-height: 1.7em;
}
h6 {
color: #666;
font-size: 14px;
}
/* Product Layout */
.product-filter {
display: flex;
padding: 30px 0;
}
.sort {
display: flex;
align-self: flex-end;
}
.collection-sort {
display: flex;
flex-direction: column;
}
.collection-sort:first-child {
padding-right: 20px;
}
label {
color: #666;
font-size: 10px;
font-weight: 500;
line-height: 2em;
text-transform: uppercase;
}
.products {
display: flex;
flex-wrap: wrap;
}
.product-card {
display: flex;
flex-direction: column;
padding: 2%;
flex: 1 16%;
background-color: #FFF;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
}
.product-image img {
width: 100%;
}
.product-info {
margin-top: auto;
padding-top: 20px;
text-align: center;
}
@media ( max-width : 920px ) {
.product-card {
flex: 1 21%;
}
.products .product-card:first-child, .products .product-card:nth-child(2)
{
flex: 2 46%;
}
}
@media ( max-width : 600px ) {
.product-card {
flex: 1 46%;
}
}
@media ( max-width : 480px ) {
h1 {
margin-bottom: 20px;
}
.product-filter {
flex-direction: column;
}
.sort {
align-self: flex-start;
}
} | 0.213541 | 0.059374 |
.btn {
border: none;
background-color: inherit;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
display: inline-block;
}
/* On mouse-over */
.btn:hover {
background: #F5E1EE;
}
.success {
color: #595959;
}
body {
/*background-color: #fff;*/
/*padding: 15vh;*/
font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #595959;
font-weight: 400;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 2.5vh;
background-color: #DCECFE;
background: -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-390deg, #DCECFE 0%, #F5E1EE 100%) no-repeat;
background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(120deg, #DCECFE 0%, #F5E1EE 100%) no-repeat;
background-position: 10%, 30%, 50%, 70%, 90%, 0;
background-size: 2px auto, 2px auto, 2px auto, 2px auto, 2px auto, 100% auto;
background-attachment: fixed;
}
* {
box-sizing: border-box;
}
.left {
float: left;
width: 30%;
padding: 10px;
}
.right {
float: right;
width: 70%;
padding: 10px;
}
input[type=text]:focus {
outline: none;
border: 3px solid #555;
}
/*for word cloud*/
#myChart {
height: 100%;
width: 100%;
min-height: 150px;
}
.zc-ref {
display: none;
}
/*for word cloud*/
/*links */
#related_links {
width: 12em;
border-right: 1px solid #000;
padding: 0 0 1em 0;
margin-bottom: 1em;
font-family: 'Trebuchet MS', 'Lucida Grande',
Verdana, Lucida, Geneva, Helvetica,
Arial, sans-serif;
background-color: #90bade;
color: #333;
}
#related_links ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#related_links li {
border-bottom: 1px solid #90bade;
margin: 0;
}
#related_links li a {
display: block;
padding: 5px 5px 5px 0.5em;
border-left: 10px solid #1958b7;
border-right: 10px solid #508fc4;
background-color: #2175bc;
color: #fff;
text-decoration: none;
width: 100%;
}
html > body #related_links li a {
width: auto;
}
#related_links li a:hover {
border-left: 10px solid #1c64d1;
border-right: 10px solid #5ba3e0;
background-color: #2586d7;
color: #fff;
}
/*links */
.left .percentage h1 b {
text-align: center;
}
/*percentage*/
@keyframes donut-chart-fill {
to {
stroke-dasharray: 100;
/*0 100*/
}
}
body {
font-size: 16px;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #333;
}
.svg-item {
width: 200px;
height: 200px;
font-size: 16px;
}
.donut-ring {
stroke: #EBEBEB;
}
.donut-segment {
animation: donut-chart-fill 1s reverse ease-in;
transform-origin: center;
stroke: #FF6200;
}
.donut-text {
font-family: Arial, Helvetica, sans-serif;
fill: #FF6200;
}
.donut-label {
font-size: 0.28em;
font-weight: 700;
line-height: 1;
fill: #000;
transform: translateY(0.25em);
}
.donut-percent {
font-size: 0.5em;
fill: #FF6200;
line-height: 1;
transform: translateY(0.5em);
} | static/css/styles.css | .btn {
border: none;
background-color: inherit;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
display: inline-block;
}
/* On mouse-over */
.btn:hover {
background: #F5E1EE;
}
.success {
color: #595959;
}
body {
/*background-color: #fff;*/
/*padding: 15vh;*/
font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #595959;
font-weight: 400;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 2.5vh;
background-color: #DCECFE;
background: -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-450deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, -webkit-linear-gradient(-390deg, #DCECFE 0%, #F5E1EE 100%) no-repeat;
background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05)) repeat-y, linear-gradient(120deg, #DCECFE 0%, #F5E1EE 100%) no-repeat;
background-position: 10%, 30%, 50%, 70%, 90%, 0;
background-size: 2px auto, 2px auto, 2px auto, 2px auto, 2px auto, 100% auto;
background-attachment: fixed;
}
* {
box-sizing: border-box;
}
.left {
float: left;
width: 30%;
padding: 10px;
}
.right {
float: right;
width: 70%;
padding: 10px;
}
input[type=text]:focus {
outline: none;
border: 3px solid #555;
}
/*for word cloud*/
#myChart {
height: 100%;
width: 100%;
min-height: 150px;
}
.zc-ref {
display: none;
}
/*for word cloud*/
/*links */
#related_links {
width: 12em;
border-right: 1px solid #000;
padding: 0 0 1em 0;
margin-bottom: 1em;
font-family: 'Trebuchet MS', 'Lucida Grande',
Verdana, Lucida, Geneva, Helvetica,
Arial, sans-serif;
background-color: #90bade;
color: #333;
}
#related_links ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#related_links li {
border-bottom: 1px solid #90bade;
margin: 0;
}
#related_links li a {
display: block;
padding: 5px 5px 5px 0.5em;
border-left: 10px solid #1958b7;
border-right: 10px solid #508fc4;
background-color: #2175bc;
color: #fff;
text-decoration: none;
width: 100%;
}
html > body #related_links li a {
width: auto;
}
#related_links li a:hover {
border-left: 10px solid #1c64d1;
border-right: 10px solid #5ba3e0;
background-color: #2586d7;
color: #fff;
}
/*links */
.left .percentage h1 b {
text-align: center;
}
/*percentage*/
@keyframes donut-chart-fill {
to {
stroke-dasharray: 100;
/*0 100*/
}
}
body {
font-size: 16px;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #333;
}
.svg-item {
width: 200px;
height: 200px;
font-size: 16px;
}
.donut-ring {
stroke: #EBEBEB;
}
.donut-segment {
animation: donut-chart-fill 1s reverse ease-in;
transform-origin: center;
stroke: #FF6200;
}
.donut-text {
font-family: Arial, Helvetica, sans-serif;
fill: #FF6200;
}
.donut-label {
font-size: 0.28em;
font-weight: 700;
line-height: 1;
fill: #000;
transform: translateY(0.25em);
}
.donut-percent {
font-size: 0.5em;
fill: #FF6200;
line-height: 1;
transform: translateY(0.5em);
} | 0.459076 | 0.109897 |
body{
padding: 0;
margin: 0;
}
.top{
background-image: url("./images/IMG-20190913-WA0016.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 500px;
}
nav {
background-color: cadetblue;
text-align: center;
position: fixed;
margin-left:500px;
}
ul{
display: inline-flex;
list-style-type: none;
}
li a{
text-decoration: none;
width:150px;
margin:15px;
padding:15px;
font-size: larger;
font-weight: 300;
font-family: 'Courier New', Courier, monospace;
}
a:hover{
background-color: whitesmoke;
}
.img{
height: 300px;
width:300px;
border-radius: 50%;
float:left;
}
.icon{
height:50px;
width: 50px;
}
.name{
float: left;
margin-top: 100px;
font-size: x-large;
font-weight: 500;
}
.message{
float: right;
font-size: larger;
font-weight: lighter;
background-color: whitesmoke;
opacity: 0.4;
margin-top: 100px;
}
.first{
text-align: center;
margin-top: 100px;
}
.float{
float: left;
font-size: larger;
}
.work{
margin:50px;
}
.academic{
margin: 50px;
}
#projects{
text-align: center;
font-size: larger;
}
.imgo {
margin:50px;
height:200px;
width:300px;
float:left;
}
footer{
height:100%;
background-color: gray;
box-shadow: black 5px 5px 5px 5px;
margin-top:50px;
Padding-top:50px;
}
.bottom{
display:flex;
flex-direction: column;
text-align: center;
}
#social{
text-align: center;
}
.fa {
padding:20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-instagram{
background:#3f729b ;
color:white;
}
.fa-skype{
background:#00aff0;
color:white;
}
@media screen and (max-width: 480px){
body{
background-color: white;
}
.float{
width:220px;
float:left;
padding:15px;
}
} | styles.css | body{
padding: 0;
margin: 0;
}
.top{
background-image: url("./images/IMG-20190913-WA0016.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 500px;
}
nav {
background-color: cadetblue;
text-align: center;
position: fixed;
margin-left:500px;
}
ul{
display: inline-flex;
list-style-type: none;
}
li a{
text-decoration: none;
width:150px;
margin:15px;
padding:15px;
font-size: larger;
font-weight: 300;
font-family: 'Courier New', Courier, monospace;
}
a:hover{
background-color: whitesmoke;
}
.img{
height: 300px;
width:300px;
border-radius: 50%;
float:left;
}
.icon{
height:50px;
width: 50px;
}
.name{
float: left;
margin-top: 100px;
font-size: x-large;
font-weight: 500;
}
.message{
float: right;
font-size: larger;
font-weight: lighter;
background-color: whitesmoke;
opacity: 0.4;
margin-top: 100px;
}
.first{
text-align: center;
margin-top: 100px;
}
.float{
float: left;
font-size: larger;
}
.work{
margin:50px;
}
.academic{
margin: 50px;
}
#projects{
text-align: center;
font-size: larger;
}
.imgo {
margin:50px;
height:200px;
width:300px;
float:left;
}
footer{
height:100%;
background-color: gray;
box-shadow: black 5px 5px 5px 5px;
margin-top:50px;
Padding-top:50px;
}
.bottom{
display:flex;
flex-direction: column;
text-align: center;
}
#social{
text-align: center;
}
.fa {
padding:20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-instagram{
background:#3f729b ;
color:white;
}
.fa-skype{
background:#00aff0;
color:white;
}
@media screen and (max-width: 480px){
body{
background-color: white;
}
.float{
width:220px;
float:left;
padding:15px;
}
} | 0.449634 | 0.096195 |
@import 'https://fonts.googleapis.com/css?family=Courgette';
@import 'https://fonts.googleapis.com/css?family=Merriweather:300i';
* {
padding: 0;
margin: 0;
}
html, body {
width: 100%;
height: 100%;
display: flex;
overflow: hidden;
justify-content: center;
align-items: center;
}
body {
margin: 0;
padding: 0;
background: #555;
background-attachment: fixed;
}
img {
width: 100%;
}
#mainImg ul li .title, #mainImg ul li .subTitle {
text-shadow: 0 0 5px #162029;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 1;
}
#mainImg {
background: transparent;
margin: auto;
width: 600px;
height: 450px;
position: relative;
overflow: hidden;
box-shadow: 5px 5px 18px #162029;
}
#mainImg ul {
list-style-type: none;
position: absolute;
left: 0;
width: 3000px;
}
#mainImg ul li {
width: 600px;
position: relative;
float: left;
}
#mainImg ul li .title {
font-family: "Courgette", cursive;
font-size: 250%;
top: 70%;
}
#mainImg ul li .subTitle {
font-family: "Merriweather", serif;
top: 80%;
}
#pre, #next {
cursor: pointer;
text-shadow: 0 0 5px #162029;
line-height: 460px;
vertical-align: center;
font-size: 400%;
z-index: 1;
position: absolute;
width: 50px;
height: 100%;
padding: 0 10px;
color: white;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#pre:hover, #next:hover {
font-size: 450%;
text-shadow: 0 0 5px white;
}
#next {
right: 0;
}
#next #nextBtn {
float: right;
}
#selector {
position: absolute;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
top: 90%;
}
#selector ol {
list-style-type: none;
}
#selector ol li {
cursor: pointer;
float: left;
border: 1px solid white;
margin: 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background: transparent;
}
.active {
background: white !important;
}
.scale {
-webkit-transition-duration: 8s;
transition-duration: 8s;
transform: scale(1.5);
}
.unScale {
-webkit-transition-duration: 3s;
transition-duration: 3s;
transform: scale(1);
} | css/style.css | @import 'https://fonts.googleapis.com/css?family=Courgette';
@import 'https://fonts.googleapis.com/css?family=Merriweather:300i';
* {
padding: 0;
margin: 0;
}
html, body {
width: 100%;
height: 100%;
display: flex;
overflow: hidden;
justify-content: center;
align-items: center;
}
body {
margin: 0;
padding: 0;
background: #555;
background-attachment: fixed;
}
img {
width: 100%;
}
#mainImg ul li .title, #mainImg ul li .subTitle {
text-shadow: 0 0 5px #162029;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 1;
}
#mainImg {
background: transparent;
margin: auto;
width: 600px;
height: 450px;
position: relative;
overflow: hidden;
box-shadow: 5px 5px 18px #162029;
}
#mainImg ul {
list-style-type: none;
position: absolute;
left: 0;
width: 3000px;
}
#mainImg ul li {
width: 600px;
position: relative;
float: left;
}
#mainImg ul li .title {
font-family: "Courgette", cursive;
font-size: 250%;
top: 70%;
}
#mainImg ul li .subTitle {
font-family: "Merriweather", serif;
top: 80%;
}
#pre, #next {
cursor: pointer;
text-shadow: 0 0 5px #162029;
line-height: 460px;
vertical-align: center;
font-size: 400%;
z-index: 1;
position: absolute;
width: 50px;
height: 100%;
padding: 0 10px;
color: white;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#pre:hover, #next:hover {
font-size: 450%;
text-shadow: 0 0 5px white;
}
#next {
right: 0;
}
#next #nextBtn {
float: right;
}
#selector {
position: absolute;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
top: 90%;
}
#selector ol {
list-style-type: none;
}
#selector ol li {
cursor: pointer;
float: left;
border: 1px solid white;
margin: 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background: transparent;
}
.active {
background: white !important;
}
.scale {
-webkit-transition-duration: 8s;
transition-duration: 8s;
transform: scale(1.5);
}
.unScale {
-webkit-transition-duration: 3s;
transition-duration: 3s;
transform: scale(1);
} | 0.422386 | 0.103477 |
html body {
font-size: 16px;
font-family: Verdana, Helvetica ,sans-serif;
}
h1, h2, h3, h4 {
margin-bottom: 0.5em;
}
#main h2 {
padding: 0.3333em 0.5em 0.3333em 0.25em;
margin: 1.25em 0 0.5em 0;
background-color: rgb(0, 100, 0);
background-color: rgba(0, 100, 0, 0.8);
color: white;
}
#main h3 {
border-bottom: rgb(0, 100, 0) solid 2px;
border-bottom: rgba(0, 100, 0, 0.85) solid 2px;
}
dt {
border-top: 1px solid rgb(192, 192, 192);
font-weight: bold;
}
/* overwriting a bit of pure defaults (i like green better than blue ;) */
#main a, #main a:visited, #main a:active, #main a:link {
text-decoration: none;
color: darkgreen;
font-style: italic;
font-weight: bold;
padding: 0 0.15em;
}
#main a:hover {
font-weight: bold;
background-color: darkgreen;
color: white;
}
#menu .pure-menu-list, #menu .pure-menu-heading {
background-color: rgb(0, 100, 0);
background-color: rgba(0, 100, 0, 0.85);
}
.pure-menu-list .pure-menu-list {
font-size: 0.85em;
}
.pure-menu-list .pure-menu-list > li.pure-menu-item {
padding-left: 0.5em;
}
.pure-menu-list .pure-menu-list .pure-menu-list {
font-size: 0.75em;
}
.pure-menu-list .pure-menu-list .pure-menu-list > li.pure-menu-item {
padding-left: 0.5em;
}
#main {
padding: 2% 2% 2% 8%;
color: rgb(64, 64, 64);
}
/* styling the regex forms */
form.pure-form.pure-form-aligned.regex-test-form {
display: block;
border: 1px solid rgb(0, 100, 0);
padding: 0.5em 0.75em;
margin: 0.75em 0;
border-radius: 0.125em;
}
.re-match {
display: inline-block;
margin: 0 1px;
border-left: 1px solid rgb(0, 100, 0);
border-right: 1px solid rgb(0, 100, 0);
font-weight: bold;
background-color: rgba(255, 124, 124, 0.5);
}
.regex-input {
font-family: "Courier New", Courier, monospace;
color: rgb(32, 32, 32);
background-color: rgba(192, 192, 192, 0.666);
display: table;
padding: 0.25em 0.5em;
}
.regex-test-form textarea.regex-input {
display: block;
overflow: visible;
width: 80%;
height: 17em;
color: rgb(32, 32, 32);
}
.pure-form-aligned .regex-input {
margin-left: 11em;
}
.regex {
font-family: "Courier New", Courier, monospace;
color: rgb(32, 32, 32);
font-weight: bold;
background-color: rgba(192, 192, 192, 0.666);
border: 0;
padding: 0.25em 0.5em;
}
.pure-form-aligned .pure-control-group label.pure-checkbox {
width: auto;
}
code {
color: rgb(32, 32, 32);
background-color: rgba(192, 192, 192, 0.666);
padding: 0.1em 0.25em;
font-size: 0.8em;
border: 1px solid silver;
border-radius: 0.2em;
}
code.shell-pattern {
background:rgb(42,42,42);
color:white;
padding:0.1em 0.25em;
font-size:0.8em
}
.attention {
border-left: 0.5em solid rgba(255, 32, 32, 0.75);
margin-left: 0.25em;
padding-left: 0.5em;
} | css/adaptions.css | html body {
font-size: 16px;
font-family: Verdana, Helvetica ,sans-serif;
}
h1, h2, h3, h4 {
margin-bottom: 0.5em;
}
#main h2 {
padding: 0.3333em 0.5em 0.3333em 0.25em;
margin: 1.25em 0 0.5em 0;
background-color: rgb(0, 100, 0);
background-color: rgba(0, 100, 0, 0.8);
color: white;
}
#main h3 {
border-bottom: rgb(0, 100, 0) solid 2px;
border-bottom: rgba(0, 100, 0, 0.85) solid 2px;
}
dt {
border-top: 1px solid rgb(192, 192, 192);
font-weight: bold;
}
/* overwriting a bit of pure defaults (i like green better than blue ;) */
#main a, #main a:visited, #main a:active, #main a:link {
text-decoration: none;
color: darkgreen;
font-style: italic;
font-weight: bold;
padding: 0 0.15em;
}
#main a:hover {
font-weight: bold;
background-color: darkgreen;
color: white;
}
#menu .pure-menu-list, #menu .pure-menu-heading {
background-color: rgb(0, 100, 0);
background-color: rgba(0, 100, 0, 0.85);
}
.pure-menu-list .pure-menu-list {
font-size: 0.85em;
}
.pure-menu-list .pure-menu-list > li.pure-menu-item {
padding-left: 0.5em;
}
.pure-menu-list .pure-menu-list .pure-menu-list {
font-size: 0.75em;
}
.pure-menu-list .pure-menu-list .pure-menu-list > li.pure-menu-item {
padding-left: 0.5em;
}
#main {
padding: 2% 2% 2% 8%;
color: rgb(64, 64, 64);
}
/* styling the regex forms */
form.pure-form.pure-form-aligned.regex-test-form {
display: block;
border: 1px solid rgb(0, 100, 0);
padding: 0.5em 0.75em;
margin: 0.75em 0;
border-radius: 0.125em;
}
.re-match {
display: inline-block;
margin: 0 1px;
border-left: 1px solid rgb(0, 100, 0);
border-right: 1px solid rgb(0, 100, 0);
font-weight: bold;
background-color: rgba(255, 124, 124, 0.5);
}
.regex-input {
font-family: "Courier New", Courier, monospace;
color: rgb(32, 32, 32);
background-color: rgba(192, 192, 192, 0.666);
display: table;
padding: 0.25em 0.5em;
}
.regex-test-form textarea.regex-input {
display: block;
overflow: visible;
width: 80%;
height: 17em;
color: rgb(32, 32, 32);
}
.pure-form-aligned .regex-input {
margin-left: 11em;
}
.regex {
font-family: "Courier New", Courier, monospace;
color: rgb(32, 32, 32);
font-weight: bold;
background-color: rgba(192, 192, 192, 0.666);
border: 0;
padding: 0.25em 0.5em;
}
.pure-form-aligned .pure-control-group label.pure-checkbox {
width: auto;
}
code {
color: rgb(32, 32, 32);
background-color: rgba(192, 192, 192, 0.666);
padding: 0.1em 0.25em;
font-size: 0.8em;
border: 1px solid silver;
border-radius: 0.2em;
}
code.shell-pattern {
background:rgb(42,42,42);
color:white;
padding:0.1em 0.25em;
font-size:0.8em
}
.attention {
border-left: 0.5em solid rgba(255, 32, 32, 0.75);
margin-left: 0.25em;
padding-left: 0.5em;
} | 0.31059 | 0.160792 |
/* Table Header, Reply Form Header, BBCode Icons Highlighting */
table.forum-table th, div.forum-reply-header,
div.forum-bbcode-line a:hover, div.forum-bbcode-line a:hover img { background-color: #dfe6ed; }
/* Table Cell Border, Forum and Topic Checkbox */
table.forum-table td, div.forum-select-box { border-color: #dde4eb; }
table.forum-table th.forum-column-lastpost,
table.forum-table th.forum-column-title,
table.forum-table th.forum-first-column,
table.forum-table th.forum-last-column { border-left:none; border-right:none;}
/* Table Cell, Info Box, Reply Form */
table.forum-table td, div.forum-info-box, div.forum-reply-form { background:#fbfbfb; }
div.forum-reply-form table.bxlhe-frame-table td.bxlhe-editor-buttons { background-color:#fbfbfb!important; }
div.forum-reply-field td.bxlhe-editor-cell, div.forum-reply-field .feed-add-post-form-but-wrap {border-color: #ced0d1;}
/* Hidden Table Cell and Row */
table.forum-table tr.forum-row-hidden td,
table.forum-table td.forum-cell-hidden,
table.forum-table tr.forum-row-inactive td.forum-column-icon,
table.forum-post-hidden td.forum-cell-post,
table.forum-post-hidden td.forum-cell-actions { background: #ecfaea !important; }
/* Selected (via checkbox) Table Cell and Row */
table.forum-table tr.forum-row-selected td,
table.forum-table td.forum-cell-selected,
table.forum-post-selected td.forum-cell-post,
table.forum-post-selected td.forum-cell-actions { background: #f2f4fa !important; }
/* Table Footer and Alone Footer Box */
table.forum-table td.forum-column-footer, table.forum-post-table td.forum-column-footer, div.forum-footer-box { background: #dde4eb; }
/* Post Table: User Info and User Contacts Cells*/
table.forum-post-table td.forum-cell-user, table.forum-post-table td.forum-cell-contact { background: #edf1f5; }
/* Post Table: Post and Actions Cell */
table.forum-post-table td.forum-cell-post, table.forum-post-table td.forum-cell-actions { background: #f9f9f9; }
div.forum-post-date { background: #e9ebee; border-bottom-color: #dde4eb; }
/* ---------------------------------------------------Borders----------------------------------------------------- */
/* Menu Items, Page Navigation */
span.forum-menu-item, div.forum-page-navigation a, span.forum-page-current, div.forum-page-navigation a.forum-page-previous, span.forum-page-dots { border-color: #dedfdf; }
/* First Row Cell */
table.forum-table tr.forum-row-first td { border-top-color: #cbd1d8;}
/* Last Row Cell */
table.forum-table tr.forum-row-last td { border-bottom-color: #cbd1d8; }
/* Table Footer and Alone Footer Box */
table.forum-table td.forum-column-footer, table.forum-post-table td.forum-column-footer, div.forum-footer-box { border-color: #cbd1d8; }
/* Footer Item Separator */
span.forum-footer-option { border-color: #abafb6; }
/* Topic posts table (separator line) */
table.forum-post-table { border-top-color: #fff; border-bottom-color: #ccc; }
/* Post Table: User Info and User Contacts Cells*/
table.forum-post-table td.forum-cell-user, table.forum-post-table td.forum-cell-contact { border-left-color: #dfe6ed; border-right-color: #dde4eb; }
/* Post Table: Post and Actions Cell */
table.forum-post-table td.forum-cell-post, table.forum-post-table td.forum-cell-actions { border-right-color: #dfe6ed; }
/* Post Table: User Contacts and Actions Cell */
table.forum-post-table td.forum-cell-contact, table.forum-post-table td.forum-cell-actions { border-top-color: #dde4eb; }
/* User Signature*/
div.forum-signature-line { border-top-color: #dde4eb; }
/* ---------------------------------------------------Text Color-------------------------------------------------- */
/* Header Box Right Links*/
div.forum-header-box a:link,
div.forum-header-box a:visited,
div.forum-header-box a:active,
div.forum-header-box a:hover { color: #fff; }
.forum-required-field { color: red; }
/* --------------------------------------------------Special Elements---------------------------------------------- */
div.forum-info-box, div.forum-reply-form {border-color:#dfe6ed #dfe6ed #cbd1d8;}
div.forum-header-box { color: #dddddd; background:#294f6e; border-color: #1f537b;}
div.forum-note-box {border-color: #E6D190; background: #FEFFE6; }
/* Page navigation */
div.forum-navigation-box { background:#ffffff; border-color: #dde4eb; }
/*BBCode: Quote and Code*/
table.forum-quote, table.forum-spoiler, table.forum-code, div.forum-code-box, div.forum-post-attachments { border-color: #ddd; }
table.forum-quote td, table.forum-spoiler td, table.forum-code td, div.forum-code-box ol, div.forum-post-attachments {background:#fff !important; color:#696969;}
table.forum-quote th, table.forum-spoiler th, table.forum-code th, div.forum-code-box {background:#e9ebee !important; color: #606264;}
/* --------------------------------------------------Icons---------------------------------------------- */
div.forum-icon
{
border-style:solid;
border-width:0.5833em;
height:0;
width:0;
margin:0.667em auto;
}
div.forum-icon-default { border-color: #edf1f5 #dde0e4 #c6cbd3 #babfc6;}
div.forum-icon-newposts { border-color:#2b75ad #235e8c #1f537b #266799; }
div.forum-icon-sticky { border-color: #d7e5f3 #c3cfdc #9fb3c7 #90a2b4; }
div.forum-icon-sticky-newposts { border-color: #d7e5f3 #c3cfdc #9fb3c7 #90a2b4; }
div.forum-icon-closed, div.forum-icon-sticky-closed { border-color: #acacac #979797 #898989 #7a7a7a; }
div.forum-icon-closed-newposts, div.forum-icon-sticky-closed-newposts { border-color: #acacac #979797 #898989 #7a7a7a; }
div.forum-icon-moved { border-color:#edf1f5 #dde0e4 #c6cbd3 #babfc6; }
/* --------------------------------------------------Votes---------------------------------------------- */
div.vote-answer-item-bar-inner {background-color:#dde4eb;} | www/html/bitrix/modules/forum/install/components/bitrix/forum/templates/.default/themes/fluxbb/style.css |
/* Table Header, Reply Form Header, BBCode Icons Highlighting */
table.forum-table th, div.forum-reply-header,
div.forum-bbcode-line a:hover, div.forum-bbcode-line a:hover img { background-color: #dfe6ed; }
/* Table Cell Border, Forum and Topic Checkbox */
table.forum-table td, div.forum-select-box { border-color: #dde4eb; }
table.forum-table th.forum-column-lastpost,
table.forum-table th.forum-column-title,
table.forum-table th.forum-first-column,
table.forum-table th.forum-last-column { border-left:none; border-right:none;}
/* Table Cell, Info Box, Reply Form */
table.forum-table td, div.forum-info-box, div.forum-reply-form { background:#fbfbfb; }
div.forum-reply-form table.bxlhe-frame-table td.bxlhe-editor-buttons { background-color:#fbfbfb!important; }
div.forum-reply-field td.bxlhe-editor-cell, div.forum-reply-field .feed-add-post-form-but-wrap {border-color: #ced0d1;}
/* Hidden Table Cell and Row */
table.forum-table tr.forum-row-hidden td,
table.forum-table td.forum-cell-hidden,
table.forum-table tr.forum-row-inactive td.forum-column-icon,
table.forum-post-hidden td.forum-cell-post,
table.forum-post-hidden td.forum-cell-actions { background: #ecfaea !important; }
/* Selected (via checkbox) Table Cell and Row */
table.forum-table tr.forum-row-selected td,
table.forum-table td.forum-cell-selected,
table.forum-post-selected td.forum-cell-post,
table.forum-post-selected td.forum-cell-actions { background: #f2f4fa !important; }
/* Table Footer and Alone Footer Box */
table.forum-table td.forum-column-footer, table.forum-post-table td.forum-column-footer, div.forum-footer-box { background: #dde4eb; }
/* Post Table: User Info and User Contacts Cells*/
table.forum-post-table td.forum-cell-user, table.forum-post-table td.forum-cell-contact { background: #edf1f5; }
/* Post Table: Post and Actions Cell */
table.forum-post-table td.forum-cell-post, table.forum-post-table td.forum-cell-actions { background: #f9f9f9; }
div.forum-post-date { background: #e9ebee; border-bottom-color: #dde4eb; }
/* ---------------------------------------------------Borders----------------------------------------------------- */
/* Menu Items, Page Navigation */
span.forum-menu-item, div.forum-page-navigation a, span.forum-page-current, div.forum-page-navigation a.forum-page-previous, span.forum-page-dots { border-color: #dedfdf; }
/* First Row Cell */
table.forum-table tr.forum-row-first td { border-top-color: #cbd1d8;}
/* Last Row Cell */
table.forum-table tr.forum-row-last td { border-bottom-color: #cbd1d8; }
/* Table Footer and Alone Footer Box */
table.forum-table td.forum-column-footer, table.forum-post-table td.forum-column-footer, div.forum-footer-box { border-color: #cbd1d8; }
/* Footer Item Separator */
span.forum-footer-option { border-color: #abafb6; }
/* Topic posts table (separator line) */
table.forum-post-table { border-top-color: #fff; border-bottom-color: #ccc; }
/* Post Table: User Info and User Contacts Cells*/
table.forum-post-table td.forum-cell-user, table.forum-post-table td.forum-cell-contact { border-left-color: #dfe6ed; border-right-color: #dde4eb; }
/* Post Table: Post and Actions Cell */
table.forum-post-table td.forum-cell-post, table.forum-post-table td.forum-cell-actions { border-right-color: #dfe6ed; }
/* Post Table: User Contacts and Actions Cell */
table.forum-post-table td.forum-cell-contact, table.forum-post-table td.forum-cell-actions { border-top-color: #dde4eb; }
/* User Signature*/
div.forum-signature-line { border-top-color: #dde4eb; }
/* ---------------------------------------------------Text Color-------------------------------------------------- */
/* Header Box Right Links*/
div.forum-header-box a:link,
div.forum-header-box a:visited,
div.forum-header-box a:active,
div.forum-header-box a:hover { color: #fff; }
.forum-required-field { color: red; }
/* --------------------------------------------------Special Elements---------------------------------------------- */
div.forum-info-box, div.forum-reply-form {border-color:#dfe6ed #dfe6ed #cbd1d8;}
div.forum-header-box { color: #dddddd; background:#294f6e; border-color: #1f537b;}
div.forum-note-box {border-color: #E6D190; background: #FEFFE6; }
/* Page navigation */
div.forum-navigation-box { background:#ffffff; border-color: #dde4eb; }
/*BBCode: Quote and Code*/
table.forum-quote, table.forum-spoiler, table.forum-code, div.forum-code-box, div.forum-post-attachments { border-color: #ddd; }
table.forum-quote td, table.forum-spoiler td, table.forum-code td, div.forum-code-box ol, div.forum-post-attachments {background:#fff !important; color:#696969;}
table.forum-quote th, table.forum-spoiler th, table.forum-code th, div.forum-code-box {background:#e9ebee !important; color: #606264;}
/* --------------------------------------------------Icons---------------------------------------------- */
div.forum-icon
{
border-style:solid;
border-width:0.5833em;
height:0;
width:0;
margin:0.667em auto;
}
div.forum-icon-default { border-color: #edf1f5 #dde0e4 #c6cbd3 #babfc6;}
div.forum-icon-newposts { border-color:#2b75ad #235e8c #1f537b #266799; }
div.forum-icon-sticky { border-color: #d7e5f3 #c3cfdc #9fb3c7 #90a2b4; }
div.forum-icon-sticky-newposts { border-color: #d7e5f3 #c3cfdc #9fb3c7 #90a2b4; }
div.forum-icon-closed, div.forum-icon-sticky-closed { border-color: #acacac #979797 #898989 #7a7a7a; }
div.forum-icon-closed-newposts, div.forum-icon-sticky-closed-newposts { border-color: #acacac #979797 #898989 #7a7a7a; }
div.forum-icon-moved { border-color:#edf1f5 #dde0e4 #c6cbd3 #babfc6; }
/* --------------------------------------------------Votes---------------------------------------------- */
div.vote-answer-item-bar-inner {background-color:#dde4eb;} | 0.251556 | 0.090333 |
.clearfix {
clear: both !important;
}
.nav-search {
position: relative;
width: 100%;
padding-top: 15px;
}
.nav-search-label-big,
.nav-search-bar{position: relative;}
.nav-search-label-big{
display: block;
float: left;
outline: none !important;
}
.nav-search-label,
.nav-search-txt,
.nav-search-submit {
display: inline-block;
float: left;
height: 40px !important;
border: 2px solid #09A2E8;
outline: none !important;
}
.nav_right_img{position: absolute;top: 51px;left: 88px;}
.nav-search-label{
width: 110px;
height: 40px !important;
line-height: 40px;
border-right: none;
text-align: center;
color:#777;
font-size: 14px;
}
.nav-search-label:hover {
cursor: pointer;
}
.nav-search-txt {
height: 40px ;
line-height: 40px;
width: 450px;
border: 2px solid #09A2E8;
border-left: 1px solid #09A2E8;
text-indent: 10px;
color:#666;
}
.nav-search-submit {
width: 82px;
height: 44px !important;
background: #09A2E8;
background-image: url(../img/search.png) ;
background-repeat:no-repeat ;
background-position: 20px 5px ;
outline: none !important;
border: none;
}
/*搜索按钮划过样式*/
.nav-search-submit:hover{
cursor:pointer;
}
.nav-search-btn {
margin-bottom: 3px;
}
.nav-search-btn a{
color:#777;
padding: 3px 15px;
}
.nav-search-btn a.active2{
background: #09A2E8;
color:#fff;
}
.nav-search-btn-2{
margin-left: 5px;
}
.nav-dropdown{
position: absolute;
top:43px;
left: 0px;
padding: 0;
min-width: 111px;
min-height: 80px;
border: 1px solid #09A2E8;
background: #fff;
box-shadow: 2px 2px 5px #ddd;
z-index: 9999999999999999999999999;
}
.nav_right ul.nav-dropdown li{
display:block !important;
float: none !important;
font-size: 14px;
min-width: 109px;
text-align: center !important;
color:#777;
}
.nav_right ul li {
float: left;
width: 60px;
height: 40px;
line-height: 40px;
text-align: center;
border: 1px solid #f1f1f1;
}
ul.nav-dropdown li:hover{
background:#09A2E8;
color:#fff;
}
.hide{
display: none;
}
input::-webkit-input-placeholder {
color: #999;
/* height: 40px ;
line-height: 40px;*/
}
/*IE10+*/
input:-ms-input-placeholder {
color: #999;
}
/*Firefox4-18*/
input:-moz-placeholder {
color: #999;
}
/*Firefox19+*/
input::-moz-placeholder {
color: #999;
}
/*导航条列表图标*/
.icon-icon-liebiao{
color:white;
font-size: 18px;
font-weight: bold;
}
/*列表*/
.seach-table {
padding: 10px 0;
}
.seach-table table {
border-collapse: collapse;
}
.seach-table table thead th {
background: #e9e9e9;
font-size: 14px;
height: 44px;
line-height: 44px;
color: #777;
}
.seach-table table tbody tr {
border-bottom: 1px solid #f0f0f0;
text-align: center;
}
.seach-table table tbody tr:hover {
/* background:#fafafa;*/
/* color:#ff6600;*/
position: relative;
}
.seach-table table tr td input,
.table-dropdowm a.xd {
display: block;
width: 70px;
height: 30px;
border: 1px solid #ff6600;
background: none;
border-radius: 4px;
color: #ff6600;
outline: none;
line-height: 30px;
margin: 0px auto;
}
table a.xd {
display: block;
width: 70px;
height: 30px;
border: 1px solid #ff6600;
background: none;
border-radius: 4px;
color: #ff6600;
outline: none;
line-height: 30px;
margin: 0px auto;
}
table a.xd2 {
display: block;
width: 70px;
height: 30px;
background: #f8a23d;
border: none;
color: #fff;
border-radius: 4px;
outline: none;
line-height: 30px;
margin: 0px auto;
}
.seach-table table tr td input:active {
outline: none;
}
.seach-table table tr td input:hover,
.table-dropdowm a.xd:hover {
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
}
table a.xd:hover {
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
}
.seach-table table tr td {
border: none;
padding: 10px 0;
font-size: 14px;
height: 44px;
/*line-height: 44px;*/
}
.table>thead>tr>th {
/* vertical-align: bottom; */
/* border-bottom: 1px solid #ff6600;
border-bottom: 1px solid #ccc; */
}
.hide2 {
display: none;
}
/*下拉列表*/
.dropdown-p {
position: relative;
}
.dropdown-p:hover
{
background-color:#F8FDFF;
}
.table-dropdowm {
width: 1198px;
position: absolute;
right: 0px;
top: 0;
border: 2px solid #00a0e8;
background: #fff;
}
.table-dropdowm .table thead th {
background: #f8fdff;
font-size: 14px;
height: 44px;
line-height: 44px;
color: #333;
font-weight: normal;
}
a.xd2{display: block;width: 70px;height: 30px;
border: 1px solid #09a2e8;
background: none;
border-radius: 4px;
color: #09a2e8;
outline: none;
line-height: 30px;
margin: 0px auto;
}
.table-dropdowm-ttl {
background: #D1F2F8;
}
.table-dropdowm-ttl td a.xd2 {
padding: 5px 15px;
border: 1px solid blue;
background: none;
border-radius: 4px;
color: blue;
outline: none;
}
.table-dropdowm td a.xd3 {
padding: 3px 13px;
border: 1px solid blue;
background: none;
border-radius: 4px;
color: blue;
outline: none;
}
.table-dropdowm td a.xd3:hover {
padding: 3px 13px;
border: 1px solid blue;
background: blue;
border-radius: 4px;
color: #fff;
}
/*
查看更多*/
.table-dropdowm-gd {
padding: 3px 15px;
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
outline: none;
border-radius: 4px;
margin-bottom: 10px !important;
} | Public/New_style/skin/sjzx/css/style.css | .clearfix {
clear: both !important;
}
.nav-search {
position: relative;
width: 100%;
padding-top: 15px;
}
.nav-search-label-big,
.nav-search-bar{position: relative;}
.nav-search-label-big{
display: block;
float: left;
outline: none !important;
}
.nav-search-label,
.nav-search-txt,
.nav-search-submit {
display: inline-block;
float: left;
height: 40px !important;
border: 2px solid #09A2E8;
outline: none !important;
}
.nav_right_img{position: absolute;top: 51px;left: 88px;}
.nav-search-label{
width: 110px;
height: 40px !important;
line-height: 40px;
border-right: none;
text-align: center;
color:#777;
font-size: 14px;
}
.nav-search-label:hover {
cursor: pointer;
}
.nav-search-txt {
height: 40px ;
line-height: 40px;
width: 450px;
border: 2px solid #09A2E8;
border-left: 1px solid #09A2E8;
text-indent: 10px;
color:#666;
}
.nav-search-submit {
width: 82px;
height: 44px !important;
background: #09A2E8;
background-image: url(../img/search.png) ;
background-repeat:no-repeat ;
background-position: 20px 5px ;
outline: none !important;
border: none;
}
/*搜索按钮划过样式*/
.nav-search-submit:hover{
cursor:pointer;
}
.nav-search-btn {
margin-bottom: 3px;
}
.nav-search-btn a{
color:#777;
padding: 3px 15px;
}
.nav-search-btn a.active2{
background: #09A2E8;
color:#fff;
}
.nav-search-btn-2{
margin-left: 5px;
}
.nav-dropdown{
position: absolute;
top:43px;
left: 0px;
padding: 0;
min-width: 111px;
min-height: 80px;
border: 1px solid #09A2E8;
background: #fff;
box-shadow: 2px 2px 5px #ddd;
z-index: 9999999999999999999999999;
}
.nav_right ul.nav-dropdown li{
display:block !important;
float: none !important;
font-size: 14px;
min-width: 109px;
text-align: center !important;
color:#777;
}
.nav_right ul li {
float: left;
width: 60px;
height: 40px;
line-height: 40px;
text-align: center;
border: 1px solid #f1f1f1;
}
ul.nav-dropdown li:hover{
background:#09A2E8;
color:#fff;
}
.hide{
display: none;
}
input::-webkit-input-placeholder {
color: #999;
/* height: 40px ;
line-height: 40px;*/
}
/*IE10+*/
input:-ms-input-placeholder {
color: #999;
}
/*Firefox4-18*/
input:-moz-placeholder {
color: #999;
}
/*Firefox19+*/
input::-moz-placeholder {
color: #999;
}
/*导航条列表图标*/
.icon-icon-liebiao{
color:white;
font-size: 18px;
font-weight: bold;
}
/*列表*/
.seach-table {
padding: 10px 0;
}
.seach-table table {
border-collapse: collapse;
}
.seach-table table thead th {
background: #e9e9e9;
font-size: 14px;
height: 44px;
line-height: 44px;
color: #777;
}
.seach-table table tbody tr {
border-bottom: 1px solid #f0f0f0;
text-align: center;
}
.seach-table table tbody tr:hover {
/* background:#fafafa;*/
/* color:#ff6600;*/
position: relative;
}
.seach-table table tr td input,
.table-dropdowm a.xd {
display: block;
width: 70px;
height: 30px;
border: 1px solid #ff6600;
background: none;
border-radius: 4px;
color: #ff6600;
outline: none;
line-height: 30px;
margin: 0px auto;
}
table a.xd {
display: block;
width: 70px;
height: 30px;
border: 1px solid #ff6600;
background: none;
border-radius: 4px;
color: #ff6600;
outline: none;
line-height: 30px;
margin: 0px auto;
}
table a.xd2 {
display: block;
width: 70px;
height: 30px;
background: #f8a23d;
border: none;
color: #fff;
border-radius: 4px;
outline: none;
line-height: 30px;
margin: 0px auto;
}
.seach-table table tr td input:active {
outline: none;
}
.seach-table table tr td input:hover,
.table-dropdowm a.xd:hover {
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
}
table a.xd:hover {
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
}
.seach-table table tr td {
border: none;
padding: 10px 0;
font-size: 14px;
height: 44px;
/*line-height: 44px;*/
}
.table>thead>tr>th {
/* vertical-align: bottom; */
/* border-bottom: 1px solid #ff6600;
border-bottom: 1px solid #ccc; */
}
.hide2 {
display: none;
}
/*下拉列表*/
.dropdown-p {
position: relative;
}
.dropdown-p:hover
{
background-color:#F8FDFF;
}
.table-dropdowm {
width: 1198px;
position: absolute;
right: 0px;
top: 0;
border: 2px solid #00a0e8;
background: #fff;
}
.table-dropdowm .table thead th {
background: #f8fdff;
font-size: 14px;
height: 44px;
line-height: 44px;
color: #333;
font-weight: normal;
}
a.xd2{display: block;width: 70px;height: 30px;
border: 1px solid #09a2e8;
background: none;
border-radius: 4px;
color: #09a2e8;
outline: none;
line-height: 30px;
margin: 0px auto;
}
.table-dropdowm-ttl {
background: #D1F2F8;
}
.table-dropdowm-ttl td a.xd2 {
padding: 5px 15px;
border: 1px solid blue;
background: none;
border-radius: 4px;
color: blue;
outline: none;
}
.table-dropdowm td a.xd3 {
padding: 3px 13px;
border: 1px solid blue;
background: none;
border-radius: 4px;
color: blue;
outline: none;
}
.table-dropdowm td a.xd3:hover {
padding: 3px 13px;
border: 1px solid blue;
background: blue;
border-radius: 4px;
color: #fff;
}
/*
查看更多*/
.table-dropdowm-gd {
padding: 3px 15px;
border: 1px solid #FF8000;
color: white;
cursor: pointer;
background: #FF8000;
outline: none;
border-radius: 4px;
margin-bottom: 10px !important;
} | 0.236252 | 0.081703 |
@charset "UTF-8";
/* Java SpringBoot and MariaDB Blog Example @developer by <NAME> */
/* scss style v1 */
@font-face {
font-family: "lato";
src: url("/fonts/Lato-Light.ttf");
}
@font-face {
font-family: "lato-italic";
src: url("/fonts/Lato-LightItalic.ttf");
}
* {
/* font-family: lato!important; */
font-style: normal !important;
font-size: 16px;
}
h2 {
color: #6cb44a;
font-weight: 500;
line-height: 1.2em;
font-style: italic;
}
.anasayfa {
margin-top: -20px;
}
.anasayfa .swiper {
width: 100%;
height: 500px;
}
.anasayfa .swiper img {
object-fit: cover;
width: 100%;
height: 100%;
}
.anasayfa .swiper .swiper-pagination-bullet-active {
background: #6cb44a !important;
color: #6cb44a !important;
}
.anasayfa .list-baslik {
margin-top: 50px;
}
.anasayfa .list {
width: 100%;
background: white;
border: 2px solid lightsteelblue;
padding: 20px;
margin-top: 50px;
}
.anasayfa .list .list-img {
object-fit: contain;
width: 100%;
height: 100%;
max-height: 170px;
max-width: 335px;
}
.anasayfa .list .aciklama {
width: 100%;
padding: 20px;
}
.anasayfa .list a:hover {
text-decoration: none;
}
.anasayfa .list .date {
top: 0;
right: 0;
float: right;
font-size: 12px;
}
.anasayfa .list .categorie {
float: right;
right: 0;
margin-right: 10px;
text-align: center;
font-size: 12px;
}
.anasayfa .list .categorie p {
font-size: 12px;
}
.sayfalar .one-cikan-resim {
width: 100%;
height: 300px;
margin-bottom: 50px;
}
.sayfalar .one-cikan-resim img {
object-fit: contain;
width: 100%;
height: 100%;
}
header nav {
top: 0;
width: 100%;
background: white;
border: 1px solid lightsteelblue !important;
border-radius: 0 !important;
}
header nav .brand-logo {
width: 32px;
height: 32px;
}
header nav .navbar-header {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
gap: 20px;
color: #616161;
}
header nav .arama {
border: 1px solid lightsteelblue;
height: 35px;
width: 210px;
padding-left: 10px;
font-size: 14px;
right: 0;
float: right;
margin-top: 7px;
}
header nav .arama-sonuc {
background: white;
border: 1px solid lightsteelblue;
position: absolute;
display: none;
right: 0;
margin-right: 15px;
width: 210px;
margin-top: 40px;
z-index: 9999;
}
header nav .arama-sonuc ul {
list-style: none;
padding: 0;
padding-left: 10px;
font-size: 14px;
}
header nav .arama-sonuc ul li {
margin-top: 15px;
font-size: 13px;
color: #337ab7;
cursor: pointer;
}
header nav .arama-sonuc ul li a {
font-size: 13px;
color: #337ab7;
cursor: pointer;
}
.kategoriler .list-baslik {
margin-top: 50px;
}
.kategoriler .list {
width: 100%;
background: white;
border: 2px solid lightsteelblue;
padding: 20px;
margin-top: 50px;
}
.kategoriler .list .list-img {
object-fit: contain;
width: 100%;
height: 100%;
max-height: 170px;
max-width: 335px;
}
.kategoriler .list .aciklama {
width: 100%;
padding: 20px;
}
.kategoriler .list a:hover {
text-decoration: none;
}
.kategoriler .list .date {
top: 0;
right: 0;
float: right;
font-size: 12px;
}
footer .footer {
width: 100%;
height: auto;
padding: 10px;
border: 1px solid lightsteelblue !important;
/* background: rgb(51,51,51); */
background: white;
color: #337ab7;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
margin-top: 50px;
}
footer .footer a {
color: #337ab7;
}
/* mobil için */
@media (max-width: 499px) {
header nav .arama {
width: 100%;
margin-bottom: 20px;
margin-top: 20px;
}
.anasayfa .list .date {
display: none;
}
.anasayfa .list .aciklama {
padding: 0;
}
.anasayfa .list .aciklama h2 {
font-size: 18px;
font-weight: 500;
}
footer .footer a {
font-size: 12px;
}
} | src/main/resources/static/css/style.css | @charset "UTF-8";
/* Java SpringBoot and MariaDB Blog Example @developer by <NAME> */
/* scss style v1 */
@font-face {
font-family: "lato";
src: url("/fonts/Lato-Light.ttf");
}
@font-face {
font-family: "lato-italic";
src: url("/fonts/Lato-LightItalic.ttf");
}
* {
/* font-family: lato!important; */
font-style: normal !important;
font-size: 16px;
}
h2 {
color: #6cb44a;
font-weight: 500;
line-height: 1.2em;
font-style: italic;
}
.anasayfa {
margin-top: -20px;
}
.anasayfa .swiper {
width: 100%;
height: 500px;
}
.anasayfa .swiper img {
object-fit: cover;
width: 100%;
height: 100%;
}
.anasayfa .swiper .swiper-pagination-bullet-active {
background: #6cb44a !important;
color: #6cb44a !important;
}
.anasayfa .list-baslik {
margin-top: 50px;
}
.anasayfa .list {
width: 100%;
background: white;
border: 2px solid lightsteelblue;
padding: 20px;
margin-top: 50px;
}
.anasayfa .list .list-img {
object-fit: contain;
width: 100%;
height: 100%;
max-height: 170px;
max-width: 335px;
}
.anasayfa .list .aciklama {
width: 100%;
padding: 20px;
}
.anasayfa .list a:hover {
text-decoration: none;
}
.anasayfa .list .date {
top: 0;
right: 0;
float: right;
font-size: 12px;
}
.anasayfa .list .categorie {
float: right;
right: 0;
margin-right: 10px;
text-align: center;
font-size: 12px;
}
.anasayfa .list .categorie p {
font-size: 12px;
}
.sayfalar .one-cikan-resim {
width: 100%;
height: 300px;
margin-bottom: 50px;
}
.sayfalar .one-cikan-resim img {
object-fit: contain;
width: 100%;
height: 100%;
}
header nav {
top: 0;
width: 100%;
background: white;
border: 1px solid lightsteelblue !important;
border-radius: 0 !important;
}
header nav .brand-logo {
width: 32px;
height: 32px;
}
header nav .navbar-header {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
gap: 20px;
color: #616161;
}
header nav .arama {
border: 1px solid lightsteelblue;
height: 35px;
width: 210px;
padding-left: 10px;
font-size: 14px;
right: 0;
float: right;
margin-top: 7px;
}
header nav .arama-sonuc {
background: white;
border: 1px solid lightsteelblue;
position: absolute;
display: none;
right: 0;
margin-right: 15px;
width: 210px;
margin-top: 40px;
z-index: 9999;
}
header nav .arama-sonuc ul {
list-style: none;
padding: 0;
padding-left: 10px;
font-size: 14px;
}
header nav .arama-sonuc ul li {
margin-top: 15px;
font-size: 13px;
color: #337ab7;
cursor: pointer;
}
header nav .arama-sonuc ul li a {
font-size: 13px;
color: #337ab7;
cursor: pointer;
}
.kategoriler .list-baslik {
margin-top: 50px;
}
.kategoriler .list {
width: 100%;
background: white;
border: 2px solid lightsteelblue;
padding: 20px;
margin-top: 50px;
}
.kategoriler .list .list-img {
object-fit: contain;
width: 100%;
height: 100%;
max-height: 170px;
max-width: 335px;
}
.kategoriler .list .aciklama {
width: 100%;
padding: 20px;
}
.kategoriler .list a:hover {
text-decoration: none;
}
.kategoriler .list .date {
top: 0;
right: 0;
float: right;
font-size: 12px;
}
footer .footer {
width: 100%;
height: auto;
padding: 10px;
border: 1px solid lightsteelblue !important;
/* background: rgb(51,51,51); */
background: white;
color: #337ab7;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
margin-top: 50px;
}
footer .footer a {
color: #337ab7;
}
/* mobil için */
@media (max-width: 499px) {
header nav .arama {
width: 100%;
margin-bottom: 20px;
margin-top: 20px;
}
.anasayfa .list .date {
display: none;
}
.anasayfa .list .aciklama {
padding: 0;
}
.anasayfa .list .aciklama h2 {
font-size: 18px;
font-weight: 500;
}
footer .footer a {
font-size: 12px;
}
} | 0.386532 | 0.059565 |
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&family=Open+Sans+Condensed:ital,wght@1,300&family=Source+Sans+Pro:wght@600&display=swap');
html,body
{
background: rgb(62,16,97);
background: linear-gradient(90deg, rgba(62,16,97,1) 0%, rgba(176,106,230,1) 100%);
overflow-x: hidden;
}
#navbar
{
width: 100%;
background:#CE96E6;
padding: 20px;
}
#navbar li
{
display: inline-block;
margin-left: 40px;
font-family: 'Source Sans Pro', sans-serif;
font-size: 20px;
}
#navbar li:first-child i
{
font-size: 60px;
color: #481061;
}
#navbar li a
{
text-decoration: none;
text-shadow: 0 0 4px white;
padding: 10px;
}
#navbar li a:hover
{
background-color: #A824E0;
border-radius: 20px;
color: white;
text-shadow:none;
}
#imageContianer
{
background-color: #512D61;
padding: 15px;
width: 100%;
text-align: center;
}
#imageContianer img
{
width: 250px;
height: 250px;
margin: 0 40px;
border-radius: 20px;
}
#imageContianer img:hover
{
cursor: pointer;
box-shadow: 0 0 10px #EB96E6;
}
#imageContianer img:active
{
width: 240px;
height: 240px;
}
#instruction ,#FormContainer
{
text-align: center;
color: white;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: bold;
font-size: 20px;
}
#FormContainer
{
margin-bottom: 20px;
}
#FormContainer input[type=number]
{
padding: 6px;
font-size: 13px;
border-width: 4px;
border-color: #d9a7fa;
background-color: #FFFFFF;
color: #000000;
border-style: solid;
border-radius: 11px;
box-shadow: -1px 0px 8px rgba(66,66,66,.75);
text-shadow: 0px 0px 5px rgba(66,66,66,.75);
}
#FormContainer input[type=number]:focus
{
outline: none;
}
#FormContainer input[type=submit]
{
background: #70d934;
background-image: linear-gradient(to bottom, #70d934, #20663e);
border-radius: 6px;
font-family: Arial;
color: #ffffff;
font-size: 10px;
padding: 10px 20px 10px 20px;
text-decoration: none;
font-weight: bolder;
}
#FormContainer input[type=submit]:hover
{
background: #0c6e13;
background-image: linear-gradient(to bottom, #0c6e13, #84ad4e);
text-decoration: none;
}
footer
{
width: 100%;
height: 100px;
background-color: #ce96e6a1;
padding: 15px;
}
#resultContianer
{
padding: 20px;
}
#resultContianer #resultReport ,#resultReport1
#resultContianer #resultReport ,#resultReport1
{
color: white;
font-size: 20px;
text-align: center;
}
#resultReport1 ul li
{
color: rgb(175, 185, 238);
text-align: left;
}
#resultReport1 ul li
{
color: rgb(175, 185, 238);
text-align: left;
}
.btn {
box-shadow: 0px 10px 14px -7px #276873;
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
background-color:#599bb3;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:20px;
font-weight:bold;
padding:13px 32px;
text-decoration:none;
text-shadow:0px 1px 0px #3d768a;
margin-top: 20px;
visibility: hidden;
}
.btn:hover {
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
background-color:#408c99;
}
.btn:active {
position:relative;
top:1px;
}
footer span
{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#chartContainer
{
padding: 50px;
background: rgb(222,180,255);
background: linear-gradient(90deg, rgba(222,180,255,1) 0%, rgba(250,217,217,1) 100%);
height: 400px;
}
#myChart
{
width: 0px;
height: 0px;
box-shadow: 0 0 8px black;
border-radius: 20px;
}
#imgBar
{
text-align: center;
}
.imgbar
{
width: 30px;
height: 30px;
margin-left: 15px;
border-radius: 20px;
border: 2px solid rgb(186, 114, 235);
} | css/style.css | @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&family=Open+Sans+Condensed:ital,wght@1,300&family=Source+Sans+Pro:wght@600&display=swap');
html,body
{
background: rgb(62,16,97);
background: linear-gradient(90deg, rgba(62,16,97,1) 0%, rgba(176,106,230,1) 100%);
overflow-x: hidden;
}
#navbar
{
width: 100%;
background:#CE96E6;
padding: 20px;
}
#navbar li
{
display: inline-block;
margin-left: 40px;
font-family: 'Source Sans Pro', sans-serif;
font-size: 20px;
}
#navbar li:first-child i
{
font-size: 60px;
color: #481061;
}
#navbar li a
{
text-decoration: none;
text-shadow: 0 0 4px white;
padding: 10px;
}
#navbar li a:hover
{
background-color: #A824E0;
border-radius: 20px;
color: white;
text-shadow:none;
}
#imageContianer
{
background-color: #512D61;
padding: 15px;
width: 100%;
text-align: center;
}
#imageContianer img
{
width: 250px;
height: 250px;
margin: 0 40px;
border-radius: 20px;
}
#imageContianer img:hover
{
cursor: pointer;
box-shadow: 0 0 10px #EB96E6;
}
#imageContianer img:active
{
width: 240px;
height: 240px;
}
#instruction ,#FormContainer
{
text-align: center;
color: white;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: bold;
font-size: 20px;
}
#FormContainer
{
margin-bottom: 20px;
}
#FormContainer input[type=number]
{
padding: 6px;
font-size: 13px;
border-width: 4px;
border-color: #d9a7fa;
background-color: #FFFFFF;
color: #000000;
border-style: solid;
border-radius: 11px;
box-shadow: -1px 0px 8px rgba(66,66,66,.75);
text-shadow: 0px 0px 5px rgba(66,66,66,.75);
}
#FormContainer input[type=number]:focus
{
outline: none;
}
#FormContainer input[type=submit]
{
background: #70d934;
background-image: linear-gradient(to bottom, #70d934, #20663e);
border-radius: 6px;
font-family: Arial;
color: #ffffff;
font-size: 10px;
padding: 10px 20px 10px 20px;
text-decoration: none;
font-weight: bolder;
}
#FormContainer input[type=submit]:hover
{
background: #0c6e13;
background-image: linear-gradient(to bottom, #0c6e13, #84ad4e);
text-decoration: none;
}
footer
{
width: 100%;
height: 100px;
background-color: #ce96e6a1;
padding: 15px;
}
#resultContianer
{
padding: 20px;
}
#resultContianer #resultReport ,#resultReport1
#resultContianer #resultReport ,#resultReport1
{
color: white;
font-size: 20px;
text-align: center;
}
#resultReport1 ul li
{
color: rgb(175, 185, 238);
text-align: left;
}
#resultReport1 ul li
{
color: rgb(175, 185, 238);
text-align: left;
}
.btn {
box-shadow: 0px 10px 14px -7px #276873;
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
background-color:#599bb3;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:20px;
font-weight:bold;
padding:13px 32px;
text-decoration:none;
text-shadow:0px 1px 0px #3d768a;
margin-top: 20px;
visibility: hidden;
}
.btn:hover {
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
background-color:#408c99;
}
.btn:active {
position:relative;
top:1px;
}
footer span
{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#chartContainer
{
padding: 50px;
background: rgb(222,180,255);
background: linear-gradient(90deg, rgba(222,180,255,1) 0%, rgba(250,217,217,1) 100%);
height: 400px;
}
#myChart
{
width: 0px;
height: 0px;
box-shadow: 0 0 8px black;
border-radius: 20px;
}
#imgBar
{
text-align: center;
}
.imgbar
{
width: 30px;
height: 30px;
margin-left: 15px;
border-radius: 20px;
border: 2px solid rgb(186, 114, 235);
} | 0.378919 | 0.114369 |
* {
font-family: 'Roboto Slab', serif;
color: #111;
font-weight:400;
}
.logoTitle {
display:none;
}
.bold {
font-weight:700;
}
body {
margin:0;
padding:0;
background-color:#FFF;
padding-top:100px;
}
.cover-image{
width:100%;
}
.logo {
margin-top:10px;
position:relative;
}
.shadow {
-webkit-box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
-moz-box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
}
.shadow-inset {
-webkit-box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
-moz-box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
}
.googleMap{
width:100%;
height:580px;
}
h1,h2{
margin: 0;
line-height: 0px;
display: block;
visibility: hidden;
width: 0px;
height: 0px;
padding: 0;
}
h3 {
text-align:center;
font-size:1.7em;
color:#035285;
margin:10px 0;
padding:0;
}
h4 {
font-size:1.5em;
color:#035285;
margin:10px 0;
padding:0;
}
nav {
position:fixed;
top:0px;
width:100%;
height:100px;
background:rgb(95, 96, 100);
text-align:center;
color:white;
z-index:45;
}
.videoPreview {
min-height:150px;
background-size:cover;
background-position:50% 50%;
min-height:150px;
}
.videoButtons {
position:absolute;
bottom:15px;
left:0;
right:0;
}
nav .icon{
display:inline-block;
height:16px;
}
nav a {
vertical-align: top;
display:inline-block;
line-height:100px;
color:white;
text-decoration: none;
font-size:1.1em;
width:11.5%;
position:relative;
}
nav a.doublewide {
width:17.25%;
}
nav a span {
color:#FFF;
}
nav a:hover {
color:#EEE!important;
}
nav .border {
position: fixed;
border-top: 2px solid white;
border-bottom: 2px solid white;
width: 100%;
top: 4px;
height: 88px;
}
.transition {
transition:All 1s ease;
-webkit-transition:All 1s ease;
-moz-transition:All 1s ease;
-o-transition:All 1s ease;
}
.fullscreen{
opacity:0;
background:black;
z-index:100000;
text-align:center;
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
}
.fullscreenVideoContainer {
background:black;
position:absolute;
top:40px;
left:0px;
bottom:0px;
right:0px;
}
.closeIcon {
position:absolute;
top:0px;
right:0px;
width:40px;
height:40px;
cursor:pointer;
}
.fullscreenVideo {
width:100%;
height:100%;
}
.photos-container {
position: relative;
overflow: auto;
z-index:1;
text-align:center;
margin:auto;
}
.photos-container li {
list-style: none;
}
.photos-container ul li {
float: left;
margin:0;
padding:0;
}
.photos-container ul {
margin:0;
padding:0;
}
.photos-container .dots {
padding:0;
position: absolute;
left: 0;
right: 0;
bottom: 20px;
}
.photos-container .dots li {
display: inline-block;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 6px;
cursor: pointer;
opacity: .4;
-webkit-transition: background .5s, opacity .5s;
-moz-transition: background .5s, opacity .5s;
transition: background .5s, opacity .5s;
}
.photos-container .dots li.active {
background: #fff;
opacity: 1;
}
.photos-container ul {
height:580px;
}
.cover-image {
width:100%;
height:580px;
background-size:cover;
background-position:50% 50%;
}
.seperator {
height:10px;
background:#fff;
position:relative;
z-index:40;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
}
.videos {
width:100%;
background:white;
background-image:url('../images/swirl_pattern2.png');
}
.videoSelection {
width:100%;
display:table;
border-collapse: separate;
border-spacing: 60px 60px;
}
.row {
width:100%;
display:table-row;
text-align:center;
vertical-align: middle;
}
.videoInfo{
padding:20px;
text-align:center;
margin-bottom: 75px;
}
.videoThumb .button {
font-size:0.8em!important;
}
.videoThumb {
position:relative;
text-align:center;
margin:20px;
width:25%;
background:white;
display:table-cell;
vertical-align: top;
}
.pagination {
width:50px!important;
cursor:pointer;
}
.pagination-title{
width:auto!important;
}
.videoSelection a {
color:#222;
}
.location{
position:relative;
}
.address {
position:absolute;
left:0;
top:160px;
z-index:1;
color:white;
background:#035285;
padding:20px 40px 20px 120px;
}
.words {
position:relative;
background:#111;
background-image:url('../images/swirl_pattern2.png');
padding: 50px 0;
}
.button {
padding:10px 15px;
margin: 10px 5px;
background:#035285;
color:white!important;
text-transform: uppercase;
text-decoration:none!important;
display:inline-block;
font-size:1.2em;
border:0;
}
.button.disabled{
background:#aeaeae;
cursor:default;
}
input {
padding:10px 15px;
margin: 10px 5px;
width:500px;
font-size:1.1em;
}
form{
margin: auto;
margin-top: 40px;
width: 540px;
}
form button {
text-align:center;
}
.about h3{
text-align:center;
margin:3px 0;
}
.nextEvent {
text-align:center;
}
.nextEvent p {
font-size:1.3em;
padding:0;
margin:0;
}
.about.words,.events {
background-image: url('../images/swirl_pattern2.png');
padding:80px 0;
}
.words .box {
position:relative;
margin:auto;
z-index:1;
color:#111;
background:#FFF;
padding:20px 40px 20px 40px;
width:60%;
max-width:600px;
}
.spacer {
margin-top:50px!important;
}
.words .box p {
color:#222;
}
.words .box a{
color:#035285;
}
.words .box .border{
position:absolute;
border: 2px solid #111;
top:3px;
right:3px;
bottom:3px;
left:3px;
}
.address .border {
position:absolute;
border: 2px solid white;
border-left:0;
top:3px;
right:3px;
bottom:3px;
left:0px;
}
.address p {
color:white;
}
.signup {
background-image: url('http://images.amplience.com/i/playground/IMG_20140713_163353762/nedev-tech-meetup.jpg')!important;
background-size: cover;
background-position: 50% 50%;
}
.center{
text-align:center;
}
.clear {
clear:both;
}
@media (min-width : 1024px) {
.googleMap{
height:700px;
}
.cover-image {
width:100%;
height:700px;
}
.photos-container ul {
height:700px;
}
.about.words,.events {
padding: 130px 0!important;
}
.videos{
/*padding: 100px 0!important;*/
}
.address{
top: 220px;
}
}
@media (min-width : 1400px) {
.googleMap{
height:800px;
}
.cover-image {
width:100%;
height:800px;
}
.photos-container ul {
height:800px;
}
.about.words, .events{
padding: 160px 0!important;
}
.videos{
/*padding: 130px 0!important;*/
}
.videoThumb .button {
font-size:1.2em!important;
}
.address{
top: 280px;
}
.videoPreview{
min-height:250px;
}
}
@media (max-width : 1124px) {
.videoSelection{
border-spacing: 10px 30px;
}
.videoInfo{
padding:5px;
}
.videoInfo h3{
font-size:1.3em;
}
.videos{
/*padding: 100px 0;*/
}
}
@media (max-width : 900px) {
.icon{
display:none!important;
}
input {
width:250px!important;
}
form {
width: 300px!important;
}
}
@media (max-width : 800px) {
nav{
height:50px;
}
nav .border{
height:38px
}
body {
padding-top:50px;
}
.icon{
display:none!important;
}
nav a {
font-size:0.9em;
line-height: 50px;
}
.logo {
width:100px;
margin-top: 22px;
}
.address {
padding:10px!important;
}
.row{
display: inline;
}
.videoThumb{
display:block;
width:80%;
margin: 30px auto;
}
.videoInfo {
margin-bottom:0;
}
.videoButtons {
position: relative;
}
}
@media (max-width: 400px) {
nav a {
width: 20%!important;
/* font-size: 0.4em; */
line-height: 50px;
float:left;
}
nav a .icon {
display:inline!important;
}
nav a span {
display:none!important;
}
.logo {
display:none!important;
}
.box {
padding: 10px 20px!important;
width: 80%!important;
}
.logoTitle {
display:block;
margin:0px auto 50px auto;
}
}
hr {
width:80%;
border:0;
margin:30px auto;
height:1px;
background:#aeaeae;
} | css/main.css | * {
font-family: 'Roboto Slab', serif;
color: #111;
font-weight:400;
}
.logoTitle {
display:none;
}
.bold {
font-weight:700;
}
body {
margin:0;
padding:0;
background-color:#FFF;
padding-top:100px;
}
.cover-image{
width:100%;
}
.logo {
margin-top:10px;
position:relative;
}
.shadow {
-webkit-box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
-moz-box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
box-shadow: 0px 4px 18px -1px rgba(0,0,0,0.72);
}
.shadow-inset {
-webkit-box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
-moz-box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
box-shadow: inset 1px -6px 6px -4px rgba(0,0,0,0.50);
}
.googleMap{
width:100%;
height:580px;
}
h1,h2{
margin: 0;
line-height: 0px;
display: block;
visibility: hidden;
width: 0px;
height: 0px;
padding: 0;
}
h3 {
text-align:center;
font-size:1.7em;
color:#035285;
margin:10px 0;
padding:0;
}
h4 {
font-size:1.5em;
color:#035285;
margin:10px 0;
padding:0;
}
nav {
position:fixed;
top:0px;
width:100%;
height:100px;
background:rgb(95, 96, 100);
text-align:center;
color:white;
z-index:45;
}
.videoPreview {
min-height:150px;
background-size:cover;
background-position:50% 50%;
min-height:150px;
}
.videoButtons {
position:absolute;
bottom:15px;
left:0;
right:0;
}
nav .icon{
display:inline-block;
height:16px;
}
nav a {
vertical-align: top;
display:inline-block;
line-height:100px;
color:white;
text-decoration: none;
font-size:1.1em;
width:11.5%;
position:relative;
}
nav a.doublewide {
width:17.25%;
}
nav a span {
color:#FFF;
}
nav a:hover {
color:#EEE!important;
}
nav .border {
position: fixed;
border-top: 2px solid white;
border-bottom: 2px solid white;
width: 100%;
top: 4px;
height: 88px;
}
.transition {
transition:All 1s ease;
-webkit-transition:All 1s ease;
-moz-transition:All 1s ease;
-o-transition:All 1s ease;
}
.fullscreen{
opacity:0;
background:black;
z-index:100000;
text-align:center;
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
}
.fullscreenVideoContainer {
background:black;
position:absolute;
top:40px;
left:0px;
bottom:0px;
right:0px;
}
.closeIcon {
position:absolute;
top:0px;
right:0px;
width:40px;
height:40px;
cursor:pointer;
}
.fullscreenVideo {
width:100%;
height:100%;
}
.photos-container {
position: relative;
overflow: auto;
z-index:1;
text-align:center;
margin:auto;
}
.photos-container li {
list-style: none;
}
.photos-container ul li {
float: left;
margin:0;
padding:0;
}
.photos-container ul {
margin:0;
padding:0;
}
.photos-container .dots {
padding:0;
position: absolute;
left: 0;
right: 0;
bottom: 20px;
}
.photos-container .dots li {
display: inline-block;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 6px;
cursor: pointer;
opacity: .4;
-webkit-transition: background .5s, opacity .5s;
-moz-transition: background .5s, opacity .5s;
transition: background .5s, opacity .5s;
}
.photos-container .dots li.active {
background: #fff;
opacity: 1;
}
.photos-container ul {
height:580px;
}
.cover-image {
width:100%;
height:580px;
background-size:cover;
background-position:50% 50%;
}
.seperator {
height:10px;
background:#fff;
position:relative;
z-index:40;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
}
.videos {
width:100%;
background:white;
background-image:url('../images/swirl_pattern2.png');
}
.videoSelection {
width:100%;
display:table;
border-collapse: separate;
border-spacing: 60px 60px;
}
.row {
width:100%;
display:table-row;
text-align:center;
vertical-align: middle;
}
.videoInfo{
padding:20px;
text-align:center;
margin-bottom: 75px;
}
.videoThumb .button {
font-size:0.8em!important;
}
.videoThumb {
position:relative;
text-align:center;
margin:20px;
width:25%;
background:white;
display:table-cell;
vertical-align: top;
}
.pagination {
width:50px!important;
cursor:pointer;
}
.pagination-title{
width:auto!important;
}
.videoSelection a {
color:#222;
}
.location{
position:relative;
}
.address {
position:absolute;
left:0;
top:160px;
z-index:1;
color:white;
background:#035285;
padding:20px 40px 20px 120px;
}
.words {
position:relative;
background:#111;
background-image:url('../images/swirl_pattern2.png');
padding: 50px 0;
}
.button {
padding:10px 15px;
margin: 10px 5px;
background:#035285;
color:white!important;
text-transform: uppercase;
text-decoration:none!important;
display:inline-block;
font-size:1.2em;
border:0;
}
.button.disabled{
background:#aeaeae;
cursor:default;
}
input {
padding:10px 15px;
margin: 10px 5px;
width:500px;
font-size:1.1em;
}
form{
margin: auto;
margin-top: 40px;
width: 540px;
}
form button {
text-align:center;
}
.about h3{
text-align:center;
margin:3px 0;
}
.nextEvent {
text-align:center;
}
.nextEvent p {
font-size:1.3em;
padding:0;
margin:0;
}
.about.words,.events {
background-image: url('../images/swirl_pattern2.png');
padding:80px 0;
}
.words .box {
position:relative;
margin:auto;
z-index:1;
color:#111;
background:#FFF;
padding:20px 40px 20px 40px;
width:60%;
max-width:600px;
}
.spacer {
margin-top:50px!important;
}
.words .box p {
color:#222;
}
.words .box a{
color:#035285;
}
.words .box .border{
position:absolute;
border: 2px solid #111;
top:3px;
right:3px;
bottom:3px;
left:3px;
}
.address .border {
position:absolute;
border: 2px solid white;
border-left:0;
top:3px;
right:3px;
bottom:3px;
left:0px;
}
.address p {
color:white;
}
.signup {
background-image: url('http://images.amplience.com/i/playground/IMG_20140713_163353762/nedev-tech-meetup.jpg')!important;
background-size: cover;
background-position: 50% 50%;
}
.center{
text-align:center;
}
.clear {
clear:both;
}
@media (min-width : 1024px) {
.googleMap{
height:700px;
}
.cover-image {
width:100%;
height:700px;
}
.photos-container ul {
height:700px;
}
.about.words,.events {
padding: 130px 0!important;
}
.videos{
/*padding: 100px 0!important;*/
}
.address{
top: 220px;
}
}
@media (min-width : 1400px) {
.googleMap{
height:800px;
}
.cover-image {
width:100%;
height:800px;
}
.photos-container ul {
height:800px;
}
.about.words, .events{
padding: 160px 0!important;
}
.videos{
/*padding: 130px 0!important;*/
}
.videoThumb .button {
font-size:1.2em!important;
}
.address{
top: 280px;
}
.videoPreview{
min-height:250px;
}
}
@media (max-width : 1124px) {
.videoSelection{
border-spacing: 10px 30px;
}
.videoInfo{
padding:5px;
}
.videoInfo h3{
font-size:1.3em;
}
.videos{
/*padding: 100px 0;*/
}
}
@media (max-width : 900px) {
.icon{
display:none!important;
}
input {
width:250px!important;
}
form {
width: 300px!important;
}
}
@media (max-width : 800px) {
nav{
height:50px;
}
nav .border{
height:38px
}
body {
padding-top:50px;
}
.icon{
display:none!important;
}
nav a {
font-size:0.9em;
line-height: 50px;
}
.logo {
width:100px;
margin-top: 22px;
}
.address {
padding:10px!important;
}
.row{
display: inline;
}
.videoThumb{
display:block;
width:80%;
margin: 30px auto;
}
.videoInfo {
margin-bottom:0;
}
.videoButtons {
position: relative;
}
}
@media (max-width: 400px) {
nav a {
width: 20%!important;
/* font-size: 0.4em; */
line-height: 50px;
float:left;
}
nav a .icon {
display:inline!important;
}
nav a span {
display:none!important;
}
.logo {
display:none!important;
}
.box {
padding: 10px 20px!important;
width: 80%!important;
}
.logoTitle {
display:block;
margin:0px auto 50px auto;
}
}
hr {
width:80%;
border:0;
margin:30px auto;
height:1px;
background:#aeaeae;
} | 0.29209 | 0.086555 |
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
/* Body */
/* Family: [Open Sans](https://fonts.google.com/specimen/Open+Sans)
Weights: 400 */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
:root {
/* Primary */
--color-very-dark-blue: hsl(243, 87%, 12%);
--color-desaturated-blue: hsl(238, 22%, 44%);
/* Accent */
--color-bright-blue: hsl(224, 93%, 58%);
--color-moderate-cyan: hsl(170, 45%, 43%);
/* Neutral */
--color-light-grayish-blue: hsl(240, 80%, 98%);
--color-light-gray: hsl(0, 0%, 75%);
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Raleway', sans-serif;
font-weight: 700;
}
img {
height: auto;
max-width: 100%;
}
a:link,
a:visited {
text-decoration: none;
color: #000;
cursor: pointer;
outline: none;
}
.btn {
font-family: inherit;
font-weight: bold;
}
.btn:focus {
outline: none;
}
.d-flex {
display: flex;
}
.d-flex.d-flex-column {
flex-direction: column;
}
.align-items-center {
align-items: center;
}
.justify-content-center {
justify-content: center;
}
.form__email {
height: 45px;
border-radius: 5px;
border: 1px solid var(--color-light-gray);
padding: 0 25px;
width: 55%;
margin-right: 15px;
}
.btn {
height: 45px;
background-color: var(--color-bright-blue);
color: white;
padding: 0px 45px;
border: none;
border-radius: 5px;
box-shadow: 4px 4px rgba(0, 0, 0, 0.12);
}
.wrapper {
margin: 0 auto;
max-width:1320px;
}
header {
padding: 60px 0;
}
header .nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header .nav .nav__list .nav__item {
display: inline-block;
list-style-type: none;
}
header .nav .nav__list .nav__item:not(:last-child) {
margin-right: 60px;
}
header .banner {
margin-top: 100px;
}
header .banner .left {
padding-top: 40px;
}
header .banner .banner__title {
font-size: 30px;
color: var(--color-very-dark-blue);
line-height: 1.5;
}
header .banner .banner__desc {
margin: 30px 0;
}
header .banner .right img {
max-width: 100%;
}
main {
background-color: var(--color-light-grayish-blue);
/* background-color: orangered; */
padding: 100px 0 0 0;
margin-top: -45px;
}
main section.subscription {
background-color: var(--color-desaturated-blue);
color: #fff;
}
main section.feature {
padding-bottom: 100px;
}
main section.feature .left .feature__title {
font-size: 30px;
color: var(--color-very-dark-blue);
margin-bottom: 45px;
}
main section.feature .left p:not(:last-child) {
margin-bottom: 20px;
}
main section.feature .left .feature__cta {
color: var(--color-moderate-cyan);
padding-bottom: 2px;
border-bottom: 1px solid var(--color-moderate-cyan);
}
main section.feature .left .card {
margin-top: 45px;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
max-width: 350px;
padding: 20px 30px;
font-size: 14px;
line-height: 1.8;
border-radius: 5px;
}
main section.feature .left .card img {
margin-bottom: 2px;
}
main section.feature .left .card .card__author .card__author-image {
height: 42px;
width: 42px;
border-radius: 50%;
margin-right: 10px;
}
main section.feature .right .feature__image {
max-height: 90%;
max-width: 90%;
}
main .subscription {
padding: 100px 0 80px 0;
}
main .subscription .subscription__title {
margin-bottom: 30px;
}
main .subscription .d-flex > div {
flex-basis: 50%;
}
main .subscription .feature__email {
display: block;
width: 80%;
margin-bottom: 15px;
}
footer {
background-color: var(--color-very-dark-blue);
color: #fff;
padding: 100px 0 70px 0;
}
footer a {
color: #fff !important;
}
footer ul {
list-style: none;
}
footer .footer__logo {
margin-bottom: 15px;
}
footer .d-flex > div {
flex: 1;
}
.contact-list li {
display: flex;
align-items: center;
text-align: justify;
}
.contact-list li img {
display: inline-block;
height: 100%;
margin-right: 20px;
}
.contact-list li:not(:last-child) {
margin-bottom: 20px;
}
.footer__nav div {
margin: 0 10px;
}
.footer__nav div li:not(:last-child) {
margin-bottom: 30px;
}
.social-icons div a {
margin: 0 8px;
border: 1px solid #fff;
height: 40px;
width: 40px;
border-radius: 50%;
text-decoration: none;
transition: all 0.2s linear;
display: flex;
justify-content: center;
align-items: center;
}
.social-icons div a .fab {
color: #fff;
}
.social-icons div a:hover {
background-color: #fff;
border: none;
}
.social-icons a:hover .fab {
color: var(--color-very-dark-blue);
}
@media only screen and (max-width: 1330px) {
.wrapper {
padding: 0 50px;
}
}
@media only screen and (max-width: 1050px) {
main {
background-color: var(--color-light-grayish-blue);
padding: 100px 0 0 0;
margin-top: -10px;
}
main section.feature .right .feature__image {
max-height: auto;
max-width: 90%;
}
}
@media only screen and (max-width: 900px) {
.d-flex {
flex-wrap: wrap;
}
header .banner.d-flex,
main section.feature.d-flex {
flex-wrap: wrap-reverse;
}
header .banner .right .banner__image,
main section.feature .right .feature__image {
max-width: 60%;
}
}
@media only screen and (max-width: 768px) {
body {
font-size: 16px;
}
header .banner .banner__title {
font-size: 25px;
line-height: 1.3;
}
main section.feature .left .feature__title {
font-size: 25px;
margin-bottom: 35px;
}
main .subscription .d-flex > div {
flex-basis: 100%;
}
main .subscription .feature__email {
margin-bottom: 15px;
margin-top: 20px;
width: 100%;
}
footer .d-flex > div {
flex: 1;
}
}
@media only screen and (max-width: 600px) {
body {
font-size: 14px;
}
header {
padding: 40px 0;
}
header .nav .nav__logo {
width: 30%;
}
.form__email {
width: 100%;
margin-right: 0px;
margin-bottom: 15px;
}
.btn {
padding: 0px 0px;
width: 100%;
}
main .subscription .subscription__title {
margin-bottom: 20px;
text-align: center;
}
footer .footer__nav div {
margin: 25px 0;
}
footer .d-flex > div {
flex: 0 0 100%;
}
}
@media only screen and (max-width: 460px) {
header .nav .nav__list .nav__item:not(:last-child) {
margin-right: 20px;
}
header .banner .banner__title {
font-size: 18px;
text-align: center;
}
header .banner {
margin-top: 50px;
}
main section.feature .left .feature__title {
font-size: 18px;
margin-bottom: 30px;
}
main section.feature .left .card {
margin: 35px auto 0 auto;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
max-width: 350px;
padding: 20px 30px;
font-size: 14px;
line-height: 1.8;
border-radius: 5px;
}
main .subscription {
padding: 60px 0 40px 0;
}
main section.feature {
padding-bottom: 40px;
}
main {
padding: 10px 0 0 0;
}
main section.feature .left .feature__title {
text-align: center;
margin-bottom: 35px;
}
}
@media only screen and (max-width: 374px) {
header {
padding: 30px 0;
}
header .nav {
flex-direction: column;
align-items: flex-start;
}
header .nav .nav__logo {
width: 40%;
margin-bottom: 20px;
}
} | fylo-landing-page-with-two-column-layout/style.css | @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
/* Body */
/* Family: [Open Sans](https://fonts.google.com/specimen/Open+Sans)
Weights: 400 */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
:root {
/* Primary */
--color-very-dark-blue: hsl(243, 87%, 12%);
--color-desaturated-blue: hsl(238, 22%, 44%);
/* Accent */
--color-bright-blue: hsl(224, 93%, 58%);
--color-moderate-cyan: hsl(170, 45%, 43%);
/* Neutral */
--color-light-grayish-blue: hsl(240, 80%, 98%);
--color-light-gray: hsl(0, 0%, 75%);
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Raleway', sans-serif;
font-weight: 700;
}
img {
height: auto;
max-width: 100%;
}
a:link,
a:visited {
text-decoration: none;
color: #000;
cursor: pointer;
outline: none;
}
.btn {
font-family: inherit;
font-weight: bold;
}
.btn:focus {
outline: none;
}
.d-flex {
display: flex;
}
.d-flex.d-flex-column {
flex-direction: column;
}
.align-items-center {
align-items: center;
}
.justify-content-center {
justify-content: center;
}
.form__email {
height: 45px;
border-radius: 5px;
border: 1px solid var(--color-light-gray);
padding: 0 25px;
width: 55%;
margin-right: 15px;
}
.btn {
height: 45px;
background-color: var(--color-bright-blue);
color: white;
padding: 0px 45px;
border: none;
border-radius: 5px;
box-shadow: 4px 4px rgba(0, 0, 0, 0.12);
}
.wrapper {
margin: 0 auto;
max-width:1320px;
}
header {
padding: 60px 0;
}
header .nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header .nav .nav__list .nav__item {
display: inline-block;
list-style-type: none;
}
header .nav .nav__list .nav__item:not(:last-child) {
margin-right: 60px;
}
header .banner {
margin-top: 100px;
}
header .banner .left {
padding-top: 40px;
}
header .banner .banner__title {
font-size: 30px;
color: var(--color-very-dark-blue);
line-height: 1.5;
}
header .banner .banner__desc {
margin: 30px 0;
}
header .banner .right img {
max-width: 100%;
}
main {
background-color: var(--color-light-grayish-blue);
/* background-color: orangered; */
padding: 100px 0 0 0;
margin-top: -45px;
}
main section.subscription {
background-color: var(--color-desaturated-blue);
color: #fff;
}
main section.feature {
padding-bottom: 100px;
}
main section.feature .left .feature__title {
font-size: 30px;
color: var(--color-very-dark-blue);
margin-bottom: 45px;
}
main section.feature .left p:not(:last-child) {
margin-bottom: 20px;
}
main section.feature .left .feature__cta {
color: var(--color-moderate-cyan);
padding-bottom: 2px;
border-bottom: 1px solid var(--color-moderate-cyan);
}
main section.feature .left .card {
margin-top: 45px;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
max-width: 350px;
padding: 20px 30px;
font-size: 14px;
line-height: 1.8;
border-radius: 5px;
}
main section.feature .left .card img {
margin-bottom: 2px;
}
main section.feature .left .card .card__author .card__author-image {
height: 42px;
width: 42px;
border-radius: 50%;
margin-right: 10px;
}
main section.feature .right .feature__image {
max-height: 90%;
max-width: 90%;
}
main .subscription {
padding: 100px 0 80px 0;
}
main .subscription .subscription__title {
margin-bottom: 30px;
}
main .subscription .d-flex > div {
flex-basis: 50%;
}
main .subscription .feature__email {
display: block;
width: 80%;
margin-bottom: 15px;
}
footer {
background-color: var(--color-very-dark-blue);
color: #fff;
padding: 100px 0 70px 0;
}
footer a {
color: #fff !important;
}
footer ul {
list-style: none;
}
footer .footer__logo {
margin-bottom: 15px;
}
footer .d-flex > div {
flex: 1;
}
.contact-list li {
display: flex;
align-items: center;
text-align: justify;
}
.contact-list li img {
display: inline-block;
height: 100%;
margin-right: 20px;
}
.contact-list li:not(:last-child) {
margin-bottom: 20px;
}
.footer__nav div {
margin: 0 10px;
}
.footer__nav div li:not(:last-child) {
margin-bottom: 30px;
}
.social-icons div a {
margin: 0 8px;
border: 1px solid #fff;
height: 40px;
width: 40px;
border-radius: 50%;
text-decoration: none;
transition: all 0.2s linear;
display: flex;
justify-content: center;
align-items: center;
}
.social-icons div a .fab {
color: #fff;
}
.social-icons div a:hover {
background-color: #fff;
border: none;
}
.social-icons a:hover .fab {
color: var(--color-very-dark-blue);
}
@media only screen and (max-width: 1330px) {
.wrapper {
padding: 0 50px;
}
}
@media only screen and (max-width: 1050px) {
main {
background-color: var(--color-light-grayish-blue);
padding: 100px 0 0 0;
margin-top: -10px;
}
main section.feature .right .feature__image {
max-height: auto;
max-width: 90%;
}
}
@media only screen and (max-width: 900px) {
.d-flex {
flex-wrap: wrap;
}
header .banner.d-flex,
main section.feature.d-flex {
flex-wrap: wrap-reverse;
}
header .banner .right .banner__image,
main section.feature .right .feature__image {
max-width: 60%;
}
}
@media only screen and (max-width: 768px) {
body {
font-size: 16px;
}
header .banner .banner__title {
font-size: 25px;
line-height: 1.3;
}
main section.feature .left .feature__title {
font-size: 25px;
margin-bottom: 35px;
}
main .subscription .d-flex > div {
flex-basis: 100%;
}
main .subscription .feature__email {
margin-bottom: 15px;
margin-top: 20px;
width: 100%;
}
footer .d-flex > div {
flex: 1;
}
}
@media only screen and (max-width: 600px) {
body {
font-size: 14px;
}
header {
padding: 40px 0;
}
header .nav .nav__logo {
width: 30%;
}
.form__email {
width: 100%;
margin-right: 0px;
margin-bottom: 15px;
}
.btn {
padding: 0px 0px;
width: 100%;
}
main .subscription .subscription__title {
margin-bottom: 20px;
text-align: center;
}
footer .footer__nav div {
margin: 25px 0;
}
footer .d-flex > div {
flex: 0 0 100%;
}
}
@media only screen and (max-width: 460px) {
header .nav .nav__list .nav__item:not(:last-child) {
margin-right: 20px;
}
header .banner .banner__title {
font-size: 18px;
text-align: center;
}
header .banner {
margin-top: 50px;
}
main section.feature .left .feature__title {
font-size: 18px;
margin-bottom: 30px;
}
main section.feature .left .card {
margin: 35px auto 0 auto;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
max-width: 350px;
padding: 20px 30px;
font-size: 14px;
line-height: 1.8;
border-radius: 5px;
}
main .subscription {
padding: 60px 0 40px 0;
}
main section.feature {
padding-bottom: 40px;
}
main {
padding: 10px 0 0 0;
}
main section.feature .left .feature__title {
text-align: center;
margin-bottom: 35px;
}
}
@media only screen and (max-width: 374px) {
header {
padding: 30px 0;
}
header .nav {
flex-direction: column;
align-items: flex-start;
}
header .nav .nav__logo {
width: 40%;
margin-bottom: 20px;
}
} | 0.464416 | 0.090897 |
body {
padding-bottom: 40px;
}
.custom-font {
font-family: 'Khand', sans-serif;
}
h2 {
font-family: 'Khand', sans-serif;
}
.btn-success {
background-color: #57a900;
background-image: -moz-linear-gradient(top, #70d900, #57a900);
background-image: -ms-linear-gradient(top, #70d900, #57a900);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900));
background-image: -webkit-linear-gradient(top, #70d900, #57a900);
background-image: -o-linear-gradient(top, #70d900, #57a900);
background-image: linear-gradient(top, #70d900, #57a900);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
background-color: #57a900;
}
.btn-success:active, .btn-success.active {
background-color: #57a900;
}
div.container a.navbar-brand > img {
display: inline;
margin-right: 4px;
}
div.app-caption {
padding: 25px 0px;
font-size:3.0em;
font-weight: bold;
color:#6aacaf
}
form ul {
list-style-type: none;
padding: 0px;
margin: 0px 5px;
}
form ul li {
color: red;
}
.alert ul {
list-style-type: none;
padding: 0px;
margin: 0px 5px;
}
ol.breadcrumb {
margin-bottom:0;
}
#carousel {
max-height:300px;
}
.carousel-item {
height:300px;
max-height:300px;
}
/*
* Checkboxes
*/
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 22px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 15px;
width: 15px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.card-header {
font-family: 'Khand', sans-serif;
font-size: 16pt;
}
table th {
font-family: 'Khand', sans-serif;
font-size: 14pt;
}
/* Game input fields */
form#Game input {
text-align:center;
}
/* Result page */
.clickableRowResult {
cursor: pointer;
}
/* Tooltips */
.custom-tooltip + .tooltip > .tooltip-inner {background-color: #f00; !important}
.custom-tooltip + .tooltip > .arrow { border-bottom-color:#f00; !important} | public/css/style.css | body {
padding-bottom: 40px;
}
.custom-font {
font-family: 'Khand', sans-serif;
}
h2 {
font-family: 'Khand', sans-serif;
}
.btn-success {
background-color: #57a900;
background-image: -moz-linear-gradient(top, #70d900, #57a900);
background-image: -ms-linear-gradient(top, #70d900, #57a900);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900));
background-image: -webkit-linear-gradient(top, #70d900, #57a900);
background-image: -o-linear-gradient(top, #70d900, #57a900);
background-image: linear-gradient(top, #70d900, #57a900);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
background-color: #57a900;
}
.btn-success:active, .btn-success.active {
background-color: #57a900;
}
div.container a.navbar-brand > img {
display: inline;
margin-right: 4px;
}
div.app-caption {
padding: 25px 0px;
font-size:3.0em;
font-weight: bold;
color:#6aacaf
}
form ul {
list-style-type: none;
padding: 0px;
margin: 0px 5px;
}
form ul li {
color: red;
}
.alert ul {
list-style-type: none;
padding: 0px;
margin: 0px 5px;
}
ol.breadcrumb {
margin-bottom:0;
}
#carousel {
max-height:300px;
}
.carousel-item {
height:300px;
max-height:300px;
}
/*
* Checkboxes
*/
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 22px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 15px;
width: 15px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.card-header {
font-family: 'Khand', sans-serif;
font-size: 16pt;
}
table th {
font-family: 'Khand', sans-serif;
font-size: 14pt;
}
/* Game input fields */
form#Game input {
text-align:center;
}
/* Result page */
.clickableRowResult {
cursor: pointer;
}
/* Tooltips */
.custom-tooltip + .tooltip > .tooltip-inner {background-color: #f00; !important}
.custom-tooltip + .tooltip > .arrow { border-bottom-color:#f00; !important} | 0.379608 | 0.087525 |
.swiper-button-next,
.swiper-button-prev {
border-radius: 2px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
font-size: 20px;
font-weight: 700;
}
.swiper-pagination-bullet {
opacity: 1;
border: 1px solid rgba(255, 255, 255, .7);
background: rgba(0, 0, 0, .3);
}
.swiper-pagination-bullet-active {
background: var(--swiper-theme-color);
border-color: white;
}
.swiper-container-vertical .swiper-button-next, .swiper-container-vertical .swiper-button-prev {
left: 50%;
transform: rotate(90deg);
transform-origin: left center;
}
.swiper-container-vertical .swiper-button-prev {
top: 10px;
}
.swiper-container-vertical .swiper-button-next {
top: auto;
bottom: 10px;
}
.swiper-button-hidden, .swiper-pagination-hidden {
display: none;
}
.swiper-slide {
background-repeat: no-repeat;
background-position: center;
}
.fos-image-slider-container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.fos-image-slider-gallery {
width: 100%;
flex: 4;
}
.fos-image-slider-thumbnails {
flex: 1;
width: 100%;
padding: 6px 0 0;
}
.fos-image-slider-fullscreen-btn {
cursor: pointer;
position: absolute;
z-index: 200;
top: 10px;
right: 10px;
color: white;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
}
.fos-image-slider-fullscreen-btn .fa {
font-size: 25px;
}
.fos-image-slider-thumbnail-slide {
background-size: cover;
background-position: center;
}
.fos-image-slider-box {
backface-visibility: hidden;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 100px;
max-height: 260px;
width: 400px;
background-color: white;
padding: 15px;
display: flex;
flex-flow: column;
border-radius: 2px;
box-shadow: 0 0 16px -2px rgb(9 30 66 / 25%);
color: #262626;
}
.fos-image-slider-box-header {
flex: 0 1 auto;
}
.fos-image-slider-box-text {
flex: 1 1 auto;
overflow-y: auto;
}
/* if there is a header, offset the text */
.fos-image-slider-box-header ~ .fos-image-slider-box-text {
margin-top: 10px;
}
.fos-image-slider-box-footer {
margin-top: 10px;
}
.fos-image-slider-box-title {
font-size: 22px;
font-weight: 700;
}
.fos-image-slider-box-subtitle {
font-size: 18px;
font-weight: 700;
color: #666;
margin-top: 10px;
}
/* if there is title, offset the subtitle */
.fos-image-slider-box-title ~ .fos-image-slider-box-subtitle {
margin-top: 10px;
}
.fos-image-slider-box-button {
display: inline-block;
background-color: #006ed0;
padding: 5px 15px;
user-select: none;
border-radius: 2px;
}
.fos-image-slider-box-button-title {
color: white;
} | files/css/style.css | .swiper-button-next,
.swiper-button-prev {
border-radius: 2px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
font-size: 20px;
font-weight: 700;
}
.swiper-pagination-bullet {
opacity: 1;
border: 1px solid rgba(255, 255, 255, .7);
background: rgba(0, 0, 0, .3);
}
.swiper-pagination-bullet-active {
background: var(--swiper-theme-color);
border-color: white;
}
.swiper-container-vertical .swiper-button-next, .swiper-container-vertical .swiper-button-prev {
left: 50%;
transform: rotate(90deg);
transform-origin: left center;
}
.swiper-container-vertical .swiper-button-prev {
top: 10px;
}
.swiper-container-vertical .swiper-button-next {
top: auto;
bottom: 10px;
}
.swiper-button-hidden, .swiper-pagination-hidden {
display: none;
}
.swiper-slide {
background-repeat: no-repeat;
background-position: center;
}
.fos-image-slider-container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.fos-image-slider-gallery {
width: 100%;
flex: 4;
}
.fos-image-slider-thumbnails {
flex: 1;
width: 100%;
padding: 6px 0 0;
}
.fos-image-slider-fullscreen-btn {
cursor: pointer;
position: absolute;
z-index: 200;
top: 10px;
right: 10px;
color: white;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
}
.fos-image-slider-fullscreen-btn .fa {
font-size: 25px;
}
.fos-image-slider-thumbnail-slide {
background-size: cover;
background-position: center;
}
.fos-image-slider-box {
backface-visibility: hidden;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 100px;
max-height: 260px;
width: 400px;
background-color: white;
padding: 15px;
display: flex;
flex-flow: column;
border-radius: 2px;
box-shadow: 0 0 16px -2px rgb(9 30 66 / 25%);
color: #262626;
}
.fos-image-slider-box-header {
flex: 0 1 auto;
}
.fos-image-slider-box-text {
flex: 1 1 auto;
overflow-y: auto;
}
/* if there is a header, offset the text */
.fos-image-slider-box-header ~ .fos-image-slider-box-text {
margin-top: 10px;
}
.fos-image-slider-box-footer {
margin-top: 10px;
}
.fos-image-slider-box-title {
font-size: 22px;
font-weight: 700;
}
.fos-image-slider-box-subtitle {
font-size: 18px;
font-weight: 700;
color: #666;
margin-top: 10px;
}
/* if there is title, offset the subtitle */
.fos-image-slider-box-title ~ .fos-image-slider-box-subtitle {
margin-top: 10px;
}
.fos-image-slider-box-button {
display: inline-block;
background-color: #006ed0;
padding: 5px 15px;
user-select: none;
border-radius: 2px;
}
.fos-image-slider-box-button-title {
color: white;
} | 0.553747 | 0.052863 |
@font-face {
font-family: "OpenSans-Regular";
/*src: url("OpenSans-Regular.ttf");*/
src: url("../fonts/OpenSans-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "OpenSans-Semibold";
/*src: url("OpenSans-Semibold.ttf");*/
src: url("../fonts/OpenSans-Semibold.ttf");
font-weight: normal;
font-style: normal;
}
.coloured-A { color: #F08099; }
.coloured-B { color: #00AFD1; }
.coloured-C { color: #00D18F; }
.coloured-D { color: #FBC45B; }
.coloured-E { color: #CEA2FB; }
.coloured-F { color: #d8607b; }
.coloured-G { color: #80a7e0; }
.coloured-H { color: #4bc0c0; }
.coloured-I { color: #faa376; }
.coloured-J { color: #8875b0; }
.coloured-K { color: #f0b1d8; }
html { /* Smoothens edges of fonts */
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
height: 100%;
}
body {
color: #4c4c4c;
margin: 0;
background-color: #EDEDED;
background-color: #f5f5f5;
font-family: "OpenSans-Regular";
height:100%;
}
#app-frame, #app-frame > div {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
}
h1 {
margin-top: 0;
}
.wrapper {
width: 100%;
margin: 5%;
display: flex;
flex-direction: column;
align-items: center;
}
.question-box {
width: 100%;
text-align: center;
flex-grow: 1;
}
.bottom-container {
width: 100%;
align-self: flex-end;
}
.vote-results {
width: 100%;
height: 100%
}
.chart-wrapper {
height: 70%;
}
.voteResults {
height: 100%;
}
ul {
list-style: none;
}
.styled-box {
background-color: white;
border-radius: 3px;
box-shadow: 0px 1px 1px #c0c0c0;
text-align: center;
}
.vote-box {
float: left;
width: 75px;
height: 65px;
padding: 10px;
}
.vote-box > span {
font-size: 30px;
font-weight: bold;
font-family: "OpenSans-Semibold";
}
.vote-box > p {
margin-top: 0;
font-size: 14px;
}
.disabled { /* disabled vote-box */
opacity:0.3;
}
.delete-answer {
width: 30px;
padding:5px;
margin-top:15px;
float: left;
}
.delete-answer:hover .delete-answer-symbol {
background-color: #000;
}
.delete-answer-symbol {
width: 15px;
height: 15px;
background-color: #808080;
mask-image: url('../img/close.svg');
-webkit-mask-image: url('../img/close.svg');
margin-left: -5px;
/*fill: #808080;*/
transition:background-color 0.2s;
}
.delete-answer-symbol:hover {
background-color: #F08099;
transform: scale(0.95);
}
.answer-box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align: center;
justify-content: center;
}
.edit {
display: block;
}
.answer {
display: inline-block;
min-height: 46px;
margin: 8px;
animation:0.3s drop-intro;
}
@keyframes drop-intro {
from {
transform:scale(1.1);
opacity:0;
}
to {
transform:scale(1);
opacity:1;
}
}
.answer-letter {
float:left;
padding: 6px 10px;
margin: 0px 5px;
font-size: 30px;
font-family: "OpenSans-SemiBold";
}
.answer-label {
float:left;
padding: 5px 12px 0px 0;
margin: 8px 15px 0 0;
/*text-align: center;*/
font-size: 20px;
}
input.answer-label:hover {
border-color: grey;
}
.question-title {
width:100%;
text-align:center;
font-size: 52px;
font-weight: normal;
}
.question-title:hover {
border-color: grey;
}
.add-answer {
width: 244px;
height: 55px;
background-color: transparent;
box-shadow: none;
border: dashed 2px lightgrey;
color: lightgrey;
font-weight: normal;
border-radius: 3px;
text-align: center;
}
.add-answer:hover {
border-color: grey;
}
.add-answer:active {
transform: scale(0.97);
}
.add-answer-symbol {
width: 15px;
height: 15px;
background-color: ;
mask-image: url('../img/close.svg');
-webkit-mask-image: url('../img/add.svg');
background-color: #808080;
margin: auto;
margin-top: 19px;
}
.btn {
height: 40px;
border: none !important;
font-size: 14px;
color: grey;
margin: 5px;
font-family: "OpenSans-Semibold";
transition: transform 0.1s;
float: right;
margin: 20px 5px;
cursor: pointer;
}
.btn:hover:not(:disabled) {
transform: scale(1.05);
}
.btn:hover:not(:disabled):not(.start-btn):not(.stop-btn):not(.export-btn) {
color: #636161;
background-color: #f1f1f1;
cursor: pointer;
}
.btn:active:not(:disabled) {
transform: scale(0.95);
}
.btn:disabled {
background-color: #f5f4f4;
color: lightgrey;
box-shadow: 0px 1px 2px 0px;
}
.start-btn {
background-color: #1ACB7C;
color: white;
}
.stop-btn {
background-color: #ff6565;
color: white;
}
.export-btn {
background-color: #03A9F4;
color: white;
}
.fixed-return-btn {
position: fixed;
right: 40px;
bottom: 20px;
float: none;
}
input {
color: #4c4c4c;
border: none;
background: none;
border-bottom: dashed 2px lightgrey;
margin-bottom: 20px;
font: 52px "OpenSans-Regular";
}
input[readonly] {
border: none;
}
.styled-box input {
width: 150px;
}
.animated {
transition: all 0.1s ease;
}
.connection-status {
width: 50px;
height: 18px;
position: absolute;
left: 100%;
margin-left: -70px;
margin-top: 15px;
}
.connected {
-webkit-mask-image: url('img/connected.svg');
background-color: rgba(0, 209, 143, 0.35);
}
.disconnected {
-webkit-mask-image: url('img/disconnected.svg');
background-color: rgba(142, 45, 45, 0.35);
} | web-app/source/main.css | @font-face {
font-family: "OpenSans-Regular";
/*src: url("OpenSans-Regular.ttf");*/
src: url("../fonts/OpenSans-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "OpenSans-Semibold";
/*src: url("OpenSans-Semibold.ttf");*/
src: url("../fonts/OpenSans-Semibold.ttf");
font-weight: normal;
font-style: normal;
}
.coloured-A { color: #F08099; }
.coloured-B { color: #00AFD1; }
.coloured-C { color: #00D18F; }
.coloured-D { color: #FBC45B; }
.coloured-E { color: #CEA2FB; }
.coloured-F { color: #d8607b; }
.coloured-G { color: #80a7e0; }
.coloured-H { color: #4bc0c0; }
.coloured-I { color: #faa376; }
.coloured-J { color: #8875b0; }
.coloured-K { color: #f0b1d8; }
html { /* Smoothens edges of fonts */
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
height: 100%;
}
body {
color: #4c4c4c;
margin: 0;
background-color: #EDEDED;
background-color: #f5f5f5;
font-family: "OpenSans-Regular";
height:100%;
}
#app-frame, #app-frame > div {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
}
h1 {
margin-top: 0;
}
.wrapper {
width: 100%;
margin: 5%;
display: flex;
flex-direction: column;
align-items: center;
}
.question-box {
width: 100%;
text-align: center;
flex-grow: 1;
}
.bottom-container {
width: 100%;
align-self: flex-end;
}
.vote-results {
width: 100%;
height: 100%
}
.chart-wrapper {
height: 70%;
}
.voteResults {
height: 100%;
}
ul {
list-style: none;
}
.styled-box {
background-color: white;
border-radius: 3px;
box-shadow: 0px 1px 1px #c0c0c0;
text-align: center;
}
.vote-box {
float: left;
width: 75px;
height: 65px;
padding: 10px;
}
.vote-box > span {
font-size: 30px;
font-weight: bold;
font-family: "OpenSans-Semibold";
}
.vote-box > p {
margin-top: 0;
font-size: 14px;
}
.disabled { /* disabled vote-box */
opacity:0.3;
}
.delete-answer {
width: 30px;
padding:5px;
margin-top:15px;
float: left;
}
.delete-answer:hover .delete-answer-symbol {
background-color: #000;
}
.delete-answer-symbol {
width: 15px;
height: 15px;
background-color: #808080;
mask-image: url('../img/close.svg');
-webkit-mask-image: url('../img/close.svg');
margin-left: -5px;
/*fill: #808080;*/
transition:background-color 0.2s;
}
.delete-answer-symbol:hover {
background-color: #F08099;
transform: scale(0.95);
}
.answer-box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align: center;
justify-content: center;
}
.edit {
display: block;
}
.answer {
display: inline-block;
min-height: 46px;
margin: 8px;
animation:0.3s drop-intro;
}
@keyframes drop-intro {
from {
transform:scale(1.1);
opacity:0;
}
to {
transform:scale(1);
opacity:1;
}
}
.answer-letter {
float:left;
padding: 6px 10px;
margin: 0px 5px;
font-size: 30px;
font-family: "OpenSans-SemiBold";
}
.answer-label {
float:left;
padding: 5px 12px 0px 0;
margin: 8px 15px 0 0;
/*text-align: center;*/
font-size: 20px;
}
input.answer-label:hover {
border-color: grey;
}
.question-title {
width:100%;
text-align:center;
font-size: 52px;
font-weight: normal;
}
.question-title:hover {
border-color: grey;
}
.add-answer {
width: 244px;
height: 55px;
background-color: transparent;
box-shadow: none;
border: dashed 2px lightgrey;
color: lightgrey;
font-weight: normal;
border-radius: 3px;
text-align: center;
}
.add-answer:hover {
border-color: grey;
}
.add-answer:active {
transform: scale(0.97);
}
.add-answer-symbol {
width: 15px;
height: 15px;
background-color: ;
mask-image: url('../img/close.svg');
-webkit-mask-image: url('../img/add.svg');
background-color: #808080;
margin: auto;
margin-top: 19px;
}
.btn {
height: 40px;
border: none !important;
font-size: 14px;
color: grey;
margin: 5px;
font-family: "OpenSans-Semibold";
transition: transform 0.1s;
float: right;
margin: 20px 5px;
cursor: pointer;
}
.btn:hover:not(:disabled) {
transform: scale(1.05);
}
.btn:hover:not(:disabled):not(.start-btn):not(.stop-btn):not(.export-btn) {
color: #636161;
background-color: #f1f1f1;
cursor: pointer;
}
.btn:active:not(:disabled) {
transform: scale(0.95);
}
.btn:disabled {
background-color: #f5f4f4;
color: lightgrey;
box-shadow: 0px 1px 2px 0px;
}
.start-btn {
background-color: #1ACB7C;
color: white;
}
.stop-btn {
background-color: #ff6565;
color: white;
}
.export-btn {
background-color: #03A9F4;
color: white;
}
.fixed-return-btn {
position: fixed;
right: 40px;
bottom: 20px;
float: none;
}
input {
color: #4c4c4c;
border: none;
background: none;
border-bottom: dashed 2px lightgrey;
margin-bottom: 20px;
font: 52px "OpenSans-Regular";
}
input[readonly] {
border: none;
}
.styled-box input {
width: 150px;
}
.animated {
transition: all 0.1s ease;
}
.connection-status {
width: 50px;
height: 18px;
position: absolute;
left: 100%;
margin-left: -70px;
margin-top: 15px;
}
.connected {
-webkit-mask-image: url('img/connected.svg');
background-color: rgba(0, 209, 143, 0.35);
}
.disconnected {
-webkit-mask-image: url('img/disconnected.svg');
background-color: rgba(142, 45, 45, 0.35);
} | 0.368974 | 0.065455 |
.container-full {
display: block;
width: 100%;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
.container {
display: block;
width: 100%;
max-width: 1230px;
padding-left: 15px;
padding-right: 15px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.header {
padding: 15px 0;
position: relative;
}
}
@media screen and (max-width: 640px) {
.header {
padding: 8px 0;
position: relative;
}
}
.header .logo {
display: none;
}
@media screen and (max-width: 768px) {
.header .logo {
display: block;
float: left;
}
.header .logo img {
display: block;
height: 60px;
}
}
@media screen and (max-width: 640px) {
.header .logo img {
display: block;
height: 46px;
}
}
.header .nav {
display: block;
float: left;
width: 100%;
padding-right: 180px;
}
@media screen and (max-width: 768px) {
.header .nav {
display: none;
position: absolute;
padding-right: 0;
top: 100%;
left: 0;
background-color: rgba(0,0,0,0.95);
z-index: 10;
}
}
.header .nav li {
position: relative;
display: block;
float: left;
margin-right: 10px;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 1230px) {
.header .nav li {
width: 16%;
margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.header .nav li {
width: 100%;
border-bottom: 1px solid #555;
}
.header .nav li:last-child {
border-bottom: none;
}
}
.header .nav li:last-child {
margin-right: 0;
}
.header .nav li>a {
display: inline-block;
*display: inline;
*zoom:1;
width: 114px;
height: 33px;
line-height: 31px;
border: 1px solid #fff;
border-radius: 15px;
font-size: 16px;
color: #454545;
margin: 35px 0 34px 0;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
.header .nav li>a {
font-size: 15px;
width: 100px;
}
}
@media screen and (max-width: 768px) {
.header .nav li>a {
width: 100%;
margin: 0;
font-size: 14px;
color: #fff;
height: 46px;
line-height: 46px;
border: none;
border-radius: 0;
padding: 0 15px;
text-align: left;
}
}
.header .nav li.active>a {
border: 1px solid #38b549;
color: #38b549;
}
@media screen and (max-width: 768px) {
.header .nav li.active>a {
color: #fff;
border: none;
}
}
.header .nav li:hover>a {
color: #38b549;
}
@media screen and (max-width: 768px) {
.header .nav li:hover>a {
color: #38b549;
}
}
@media screen and (max-width: 1230px) {
.header .nav .nav-logo {
width: 20%;
padding: 0 10px;
}
}
@media screen and (max-width: 768px) {
.header .nav .nav-logo {
display: none;
}
}
.header .nav .nav-logo a {
width: auto;
height: auto;
margin-top: 15px;
margin-bottom: 0;
}
.header .nav .nav-logo a img {
display: block;
max-width: 100%
}
.header .nav li dl {
display: none;
position: absolute;
width: 100%;
background-color: #696969;
background-color: rgba(30,30,30,0.9);
z-index: 10;
}
@media screen and (max-width: 768px) {
.header .nav li dl {
position: static;
}
}
.header .nav li dl dd {
display: block;
height: 40px;
line-height: 40px;
border-bottom: 1px solid #848484;
}
@media screen and (max-width: 768px) {
.header .nav li dl dd {
border-bottom: none;
height: 36px;
line-height: 36px;
}
}
.header .nav li dl dd:last-child {
border-bottom: none;
}
.header .nav li dl dd a {
display: block;
color: #fff;
font-size: 14px;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
.header .nav li dl dd a {
padding: 0 30px;
text-align: left;
font-size: 13px;
}
}
.header .nav li dl dd a:hover {
background-color: #43b952;
}
.header .search {
display: block;
position: relative;
float: right;
margin-right: -163px;
width: 163px;
height: 28px;
margin-top: 37px;
right: 163px;
border: 1px solid #c0c0c0;
border-radius: 15px;
overflow: hidden;
}
@media screen and (max-width: 768px) {
.header .search {
display: none;
}
}
.header .search input {
display: block;
float: left;
width: 127px;
padding: 3px 15px;
line-height: 20px;
border: none;
outline: none;
color: #666;
}
.header .search .submit {
display: block;
float: right;
width: 34px;
height: 26px;
border: none;
outline: none;
background: url(../images/search-icon.png) no-repeat center;
cursor: pointer;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
.header .search .submit:hover {
opacity: 0.8;
}
.header .nav-toggle {
display: none;
float: right;
padding: 4px 8px;
border-radius: 4px;
border: none;
outline: none;
background-color: #fff;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.header .nav-toggle {
display: block;
margin-top: 16px;
}
}
@media screen and (max-width: 640px) {
.header .nav-toggle {
display: block;
margin-top: 10px;
}
}
.header .nav-toggle span {
display: block;
margin: 4px 0;
width: 20px;
height: 2px;
background-color: #444;
}
.banner {
display: block;
overflow: hidden;
position: relative;
width: 100%;
margin: 0 auto;
}
.banner img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto;
}
.banner .swiper-button-next, .banner .swiper-button-prev {
display: none;
position: absolute;
z-index: 5;
width: 58px;
height: 58px;
border-radius: 50%;
top: 50%;
margin-top: -29px;
text-align: center;
line-height: 58px;
color: #fff;
font-family: "Simsun";
font-size: 34px;
background-color: #000 !important;
background-color: rgba(0,0,0,0.2) !important;
background-image: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.banner .swiper-button-next, .banner .swiper-button-prev {
display: none;
}
}
.banner:hover .swiper-button-next, .banner:hover .swiper-button-prev {
display: block;
}
@media screen and (max-width: 768px) {
.banner:hover .swiper-button-next, .banner:hover .swiper-button-prev {
display: none;
}
}
.banner .swiper-button-prev {
left: 5%;
}
.banner .swiper-button-next {
right: 5%;
}
.banner:hover .swiper-button-next:hover, .banner:hover .swiper-button-prev:hover {
background-color: rgba(0,0,0,0.6) !important;
}
.swiper-pagination {
font-size: 0;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 20px;
}
@media screen and (max-width: 640px) {
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 10px;
}
}
.banner .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
*display: inline;
*zoom:1;
width: 45px;
height: 2px;
margin: 0px 5px 0 5px;
background-color: #ccc;
background-color: rgba(0,0,0,0.5);
cursor: pointer;
opacity: 1;
border-radius: 0;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.banner .swiper-pagination-bullets .swiper-pagination-bullet {
width: 24px;
height: 2px;
}
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: #fff;
}
.section-header {
position: relative;
display: block;
width: 100%;
max-width: 1200px;
margin: 4.5% auto 3.6%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 640px) {
.section-header {
margin: 8% auto 8%;
}
}
.section-header h3 {
position: relative;
display: block;
line-height: 1;
font-size: 30px;
z-index: 5;
}
.green {
color: #38b549;
}
.black {
color: #000;
}
.section-header p {
display: block;
line-height: 1;
font-size: 18px;
color: #b8b8b8;
margin-top: 15px;
text-transform: uppercase;
}
.section-header .line {
position: absolute;
display: block;
width: 100%;
height: 1px;
background-color: #d6d6d6;
top: 29px;
left: 0;
text-align: center;
z-index: 2;
}
.section-header .line span {
display: inline-block;
width: 240px;
height: 1px;
background-color: #fff;
}
.about-body {
display: block;
}
.about-body .about-us-l {
display: block;
float: left;
width: 50.58%;
padding: 20px;
background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
.about-body .about-us-l {
width: 100%;
float: none;
}
}
.about-body .about-us-l h1 {
display: block;
font-size: 18px;
color: #38b549;
line-height: 1;
padding: 14px 0 0px 0;
}
@media screen and (max-width: 320px) {
.about-body .about-us-l h1 {
font-size: 16px;
}
}
/*.about-body .about-us-l .line{
display: block;
width: 260px;
height: 3px;
background-color: #fff;
border: 1px solid #38b549;
border-width: 1px 0 1px 0;
}*/
.about-body .about-us-l p {
display: block;
line-height: 30px;
color: #828282;
margin-top: 18px;
letter-spacing: 2px;
}
.about-body .about-us-l a {
display: block;
width: 92px;
height: 27px;
border: 1px solid #8f8f8f;
margin-top: 14px;
text-align: center;
line-height: 27px;
color: #5c5c5c;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.about-body .about-us-l a:hover {
color: #fff;
background-color: #7a7a7a;
border: 1px solid #7a7a7a;
}
.about-body .about-us-r {
display: block;
float: right;
width: 48.83%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 768px) {
.about-body .about-us-r {
width: 100%;
float: none;
margin-top: 4%;
}
}
.about-body .about-us-r li {
display: inline-block;
width: 33.33%;
padding-left: 9px;
background-color: #fff;
}
.about-body .about-us-r li:last-child {
margin-right: 0;
}
.about-body .about-us-r li img {
display: block;
width: 100%;
height: auto;
}
.about-body .about-us-r li .content {
display: block;
background-color: #f0f0f0;
padding-bottom: 25px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content {
padding-bottom: 10px;
}
}
.about-body .about-us-r li .content:hover {
background-color: #7a7a7a;
}
.about-body .about-us-r li .content h4 {
display: block;
line-height: 1;
font-size: 18px;
color: #5c5c5c;
margin-top: 20px;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content h4 {
font-size: 14px;
margin-top: 10px;
}
}
.about-body .about-us-r li .content h4 a {
color: #5c5c5c;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.about-body .about-us-r li .content:hover h4 a {
color: #fff;
}
.about-body .about-us-r li .content p {
display: block;
font-size: 13px;
color: #a1a1a1;
line-height: 1;
margin-top: 10px;
text-transform: uppercase;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content p {
display: none;
}
}
.about-body .about-us-r li .content:hover p {
color: #d0d0d0;
}
.brand-type {
display: block;
text-align: center;
font-size: 0;
margin-bottom: 3.6%;
}
.brand-type li {
display: inline-block;
width: 170px;
height: 48px;
margin: 0 25px;
text-align: center;
line-height: 48px;
border-radius: 20px;
font-size: 18px;
color: #8d8d8d;
background-color: #f2f2f2;
cursor: pointer;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.brand-type li a {
color: #8d8d8d;
display: block;
}
@media screen and (max-width: 768px) {
.brand-type li {
width: 20%;
margin: 1%;
height: 40px;
line-height: 40px;
font-size: 16px;
}
}
@media screen and (max-width: 640px) {
.brand-type li {
width: 40%;
}
}
.brand-type li.active {
color: #fff;
background-color: #696969;
}
.brand-type li.active a {
color: #fff;
}
.brand-body {
display: none;
overflow: hidden;
}
.brand-body.on {
display: block;
}
.brand-body .box {
display: block;
overflow: hidden;
}
.brand-body .group {
display: block;
overflow: hidden;
}
.brand-body .list {
display: block;
}
.brand-body ul {
display: block;
overflow: hidden;
margin: -8px -6px;
}
.brand-body li {
display: block;
float: left;
width: 25%;
padding: 8px 6px;
}
@media screen and (max-width: 640px) {
.brand-body li {
width: 50%;
}
}
.brand-body li>a {
display: block;
overflow: hidden;
position: relative;
}
.brand-body li img {
display: block;
width: 100%;
height: auto;
}
.brand-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
padding: 20% 10px;
opacity: 0;
background: rgba(0,0,0,0.6);
top: 0;
text-align: center;
font-size: 0;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.brand-body li .mask {
padding: 30% 10px;
}
}
.brand-body li .mask:hover {
opacity: 1;
}
.brand-body li .mask h4 {
display: inline-block;
max-width: 100%;
line-height: 1;
font-size: 18px;
letter-spacing: 2px;
color: #fff;
padding: 10px;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
.brand-body li .mask h4 {
letter-spacing: 0px;
}
}
.brand-body li .mask p {
display: block;
font-size: 14px;
color: #e1e1e1;
margin-top: 13px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
.brand-body li .mask p {
display: none;
}
}
.brand-body li .mask>span {
display: inline-block;
width: 96px;
height: 28px;
border: 1px solid #fff;
color: #fff;
margin-top: 20%;
text-align: center;
line-height: 28px;
font-size: 14px;
}
@media screen and (max-width: 768px) {
.brand-body li .mask>span {
display: none;
}
}
.agency-brand .action {
display: block;
margin-top: 14px;
}
@media screen and (max-width: 640px) {
.agency-brand .action {
display: none;
}
}
.agency-brand .action .btn {
display: block;
width: 50%;
float: left;
height: 64px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.agency-brand .action .btn:hover {
background-color: #7a7a7a;
}
.agency-brand .action .btn.disabled {
background-color: #e5e5e5;
cursor: default;
pointer-events: none;
}
.agency-brand .action .prev {
background-color: #e5e5e5;
text-align: right;
padding-right: 50px;
}
.agency-brand .action .next {
background-color: #e5e5e5;
text-align: left;
padding-left: 50px;
}
.agency-brand .action i {
display: inline-block;
margin-top: 15px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.agency-brand .action .prev:hover i {
background: url(../images/allbgs.png) no-repeat -169px 0px;
width: 50px;
padding-top: 37px;
}
.agency-brand .action .next:hover i {
background: url(../images/allbgs.png) no-repeat -118px 0px;
width: 51px;
padding-top: 37px;
}
.project {
display: block;
background-color: #e9e9e9;
padding: 3.5% 0 3% 0;
margin-top: 5%;
}
@media screen and (max-width: 640px) {
.project {
padding: 8% 0;
}
}
.project .section-header {
margin-top: 0;
}
.project .section-header .line {
background-color: #c4c4c4;
}
.project .section-header .line span {
background-color: #e9e9e9;
}
.project-body {
display: block;
position: relative;
}
.project-body .btn {
display: block;
position: absolute;
width: 36px;
height: 62px;
top: 36%;
text-align: center;
line-height: 62px;
font-size: 54px;
color: #717171;
font-family: "Simsun";
z-index: 20;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 1230px) {
.project-body .btn {
width: 30px;
height: 52px;
line-height: 52px;
background-color: rgba(0,0,0,0.6);
color: #fff;
font-size: 30px;
}
}
.project-body .btn:hover {
color: #333;
}
@media screen and (max-width: 1230px) {
.project-body .btn:hover {
color: #fff;
}
}
.project-body .prev {
left: -42px;
}
@media screen and (max-width: 1230px) {
.project-body .prev {
left: 15px;
}
}
.project-body .next {
right: -42px;
}
@media screen and (max-width: 1230px) {
.project-body .next {
right: 15px;
}
}
.project-body .box {
display: block;
position: relative;
overflow: hidden;
}
.project-body .box ul {
display: block;
font-size: 0;
overflow: hidden;
margin-right: -24px;
}
.project-body li {
display: block;
float: left;
width: 25%;
padding-right: 24px;
}
@media screen and (max-width: 640px) {
.project-body li {
width: 50%;
}
}
.project-body li .pic {
display: block;
padding: 10px 8px;
border: 1px solid #d5d5d5;
}
.project-body li .pic a {
display: block;
width: 100%;
height: auto;
}
.project-body li .content {
display: block;
position: relative;
overflow: hidden;
}
.project-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 80%;
padding-top: 10%;
top: -100%;
background-color: rgba(0,0,0,0.4);
text-align: center;
z-index: 10;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.project-body li .mask {
height: 100%;
padding-top: 30%;
}
}
.project-body li:hover .mask {
top: 0;
}
.project-body li .mask .fdj {
display: inline-block;
*display: inline;
*zoom:1;
width: 54px;
height: 54px;
background: url(../images/fdj.png) no-repeat center;
}
.project-body li .mask p {
display: block;
font-size: 18px;
line-height: 1;
margin-top: 18px;
color: #fff;
text-transform: uppercase;
}
@media screen and (max-width: 768px) {
.project-body li .mask p {
display: none;
}
}
.project-body li .mask h4 {
display: block;
font-size: 16px;
line-height: 1;
margin-top: 14px;
color: #fff;
}
@media screen and (max-width: 768px) {
.project-body li .mask h4 {
display: none;
}
}
.project-body li .mask .project-arrow {
display: block;
position: absolute;
bottom: -18px;
left: 50%;
margin-left: -20px;
z-index: 10;
}
@media screen and (max-width: 768px) {
.project-body li .mask .project-arrow {
display: none;
}
}
.project-body li img {
display: block;
width: 100%;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.project-body li p {
display: block;
text-align: center;
font-size: 15px;
color: #5c5c5c;
margin-top: 30px;
line-height: 1;
}
.project-body li p a {
color: #5c5c5c;
}
.join {
display: block;
position: relative;
text-align: center;
padding: 130px 20px;
margin-top: 4.5%;
background: url(../images/join-bg.jpg) no-repeat center fixed;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 768px) {
.join {
padding: 100px 20px;
background: url(../images/join-bg.jpg) no-repeat center scroll;
}
}
@media screen and (max-width: 768px) {
.join {
padding: 80px 20px;
}
}
.join .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
top: 0;
left: 0;
}
.join .text {
display: block;
position: relative;
z-index: 5;
}
.join .text h3 {
display: block;
line-height: 1;
font-size: 50px;
color: #fff;
}
@media screen and (max-width: 768px) {
.join .text h3 {
font-size: 38px;
}
}
@media screen and (max-width: 640px) {
.join .text h3 {
font-size: 30px;
}
}
.join .text p {
display: block;
line-height: 1;
font-size: 24px;
color: #b1b1b1;
margin-top: 20px;
}
@media screen and (max-width: 640px) {
.join .text p {
font-size: 20px;
line-height: 1.5;
margin-top: 20px;
}
}
.join .text a {
display: inline-block;
width: 176px;
height: 52px;
border: 1px solid #fff;
text-align: center;
line-height: 52px;
color: #eee;
font-size: 20px;
margin-top: 74px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.join .text a {
font-size: 16px;
height: 40px;
line-height: 40px;
margin-top: 50px;
}
}
@media screen and (max-width: 640px) {
.join .text a {
margin-top: 30px;
}
}
.join .text a:hover {
background-color: rgba(0,0,0,0.5);
}
.news-body .important-news {
display: block;
float: left;
width: 39.83%;
}
@media screen and (max-width: 768px) {
.news-body .important-news {
width: 100%;
float: none;
}
}
.news-body .important-news .pic {
display: block;
position: relative;
}
.news-body .important-news img {
display: block;
width: 100%;
max-height: 194px;
}
.news-body .important-news .date {
display: block;
position: absolute;
width: 67px;
height: 64px;
top: 0;
left: 0;
background-color: #39b549;
text-align: center;
color: #fff;
overflow: hidden;
}
.news-body .important-news .date .day {
display: block;
font-size: 34px;
color: #fff;
line-height: 1;
margin-top: 8px;
}
.news-body .important-news .date .month {
display: block;
line-height: 1;
color: #fff;
font-size: 13px;
margin-top: 3px;
}
.news-body .important-news h4 {
display: block;
margin-top: 22px;
color: #5c5c5c;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
font-size: 16px;
}
@media screen and (max-width: 768px) {
.news-body .important-news h4 {
margin-top: 4%;
}
}
.news-body .important-news h4 a {
color: #5c5c5c;
}
.news-body .important-news h4 a:hover {
color: #38b549;
}
.news-body .important-news p {
display: block;
line-height: 23px;
color: #868686;
margin-top: 8px;
}
.news-body .orther-news {
display: block;
float: right;
width: 56.66%;
}
@media screen and (max-width: 768px) {
.news-body .orther-news {
width: 100%;
float: none;
margin-top: 6%;
}
}
.news-body .orther-news ul {
margin: -18px 0;
}
.news-body .orther-news li {
display: block;
padding: 18px 0;
border-bottom: 1px dashed #d1d1d1;
}
.news-body .orther-news li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.news-body .orther-news li .date {
display: block;
width: 64px;
height: 71px;
float: left;
margin-right: 15px;
overflow: hidden;
border: 1px solid #b2b2b2;
text-align: center;
}
.news-body .orther-news li .date .day {
display: block;
font-size: 40px;
color: #7e7e7e;
line-height: 1;
margin-top: 6px;
}
.news-body .orther-news li .date .month {
display: block;
line-height: 1;
font-size: 13px;
color: #5c5c5c;
margin-top: 4px;
}
.news-body .orther-news li .content {
display: block;
overflow: hidden;
}
.news-body .orther-news li .content h4 {
display: block;
font-size: 16px;
color: #5c5c5c;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.news-body .orther-news li .content h4 a {
color: #5c5c5c;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.news-body .orther-news li .content h4 a:hover {
color: #38b549;
}
.news-body .orther-news li .content p {
display: block;
line-height: 23px;
color: #767676;
margin-top: 6px;
}
.news .more {
display: block;
height: 36px;
line-height: 36px;
background-color: #ebebeb;
color: #666;
text-align: center;
margin-top: 30px;
}
.news .more a {
display: block;
color: #666;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.news .more a:hover {
color: #fff;
background-color: #7a7a7a;
}
.partner-body {
display: block;
overflow: hidden;
}
.partner-body ul {
display: block;
overflow: hidden;
margin: -1% -1.5%;
}
.partner-body li {
display: block;
float: left;
width: 16.666%;
padding: 1% 1.5%;
}
@media screen and (max-width: 768px) {
.partner-body li {
width: 33.333%
}
}
.partner-body li a {
display: block;
position: relative;
}
.partner-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background-color: #000;
top: 0;
left: 0;
z-index: 10;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.partner-body li a:hover .mask {
opacity: 0.3;
}
.partner-body li img {
display: block;
width: 100%;
height: auto;
border: 1px solid #e1e1e1;
}
.footer {
display: block;
width: 100%;
margin-top: 4.5%;
background-color: #525252;
}
.footer .box-l {
display: block;
float: left;
width: 610px;
}
@media screen and (max-width: 1230px) {
.footer .box-l {
width: 100%;
float: none;
}
}
.footer .box-l .contact-way {
display: block;
overflow: hidden;
}
.footer .box-l .ewm {
display: block;
float: left;
}
.footer .box-l .ewm img {
display: block;
float: left;
width: 124px;
height: 124px;
margin-right: 8px;
}
.footer .box-l .contact-way .info {
display: block;
float: left;
margin-left: 7px;
}
@media screen and (max-width: 640px) {
.footer .box-l .contact-way .info {
margin-top: 6%;
}
}
.footer .box-l .contact-way .info h2 {
display: block;
padding-left: 8px;
border-left: 1px solid #38b549;
font-size: 16px;
line-height: 1;
color: #fff;
}
.footer .box-l .contact-way .info ul {
display: block;
margin-top: 16px;
}
@media screen and (max-width: 640px) {
.footer .box-l .contact-way .info ul {
margin-top: 2%;
}
}
.footer .box-l .contact-way .info ul li {
display: block;
height: 33px;
line-height: 33px;
color: #b9b9b9;
}
.footer .box-l .contact-way .info ul li span {
display: block;
float: left;
margin: 9px 10px 0 0;
}
.footer .box-l .contact-way .info ul li i {
display: block;
}
.footer .box-l .phone {
display: block;
height: 39px;
line-height: 39px;
margin-top: 15px;
font-size: 20px;
color: #38b549;
}
@media screen and (max-width: 768px) {
.footer .box-l .phone {
margin-top: 2%;
}
}
@media screen and (max-width: 640px) {
.footer .box-l .phone {
display: none;
}
}
.footer .box-l .phone i {
display: block;
float: left;
margin: 0 10px 0 14px;
}
.footer .box-r {
display: block;
float: right;
width: 550px;
}
@media screen and (max-width: 1230px) {
.footer .box-r {
width: 100%;
float: none;
margin-top: 4%;
}
}
@media screen and (max-width: 768px) {
.footer .box-r {
display: none;
}
}
.footer .box-r .mune {
display: block;
overflow: hidden;
clear: both;
}
.footer .box-r .mune .list {
display: block;
padding: 0 45px;
height: 146px;
float: left;
border-left: 1px solid #b9b9b9;
}
.footer .box-r .mune .list:first-child {
padding-left: 0;
border-left: 0;
}
.footer .box-r .mune .list:last-child {
padding-right: 0;
}
.footer .box-r .mune .list h4 {
display: block;
color: #fff;
font-size: 16px;
}
.footer .box-r .mune .list ul {
display: block;
margin-top: 10px;
}
.footer .box-r .mune .list ul li {
display: block;
height: 28px;
line-height: 28px;
}
.footer .box-r .mune .list ul li a {
color: #b9b9b9;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.footer .box-r .mune .list ul li a:hover {
color: #fff;
}
.footer .box-r .frend-link {
display: block;
margin-top: 24px;
overflow: hidden;
clear: both;
}
.footer .box-r .frend-link h4 {
display: block;
float: left;
font-size: 18px;
color: #38b549;
font-weight: bold;
}
.footer .box-r .frend-link ul {
display: block;
float: left;
}
.footer .box-r .frend-link ul li {
display: block;
width: 109px;
height: 47px;
float: left;
margin-left: 6px;
}
.footer .web-info {
display: block;
height: 60px;
line-height: 60px;
margin-top: 34px;
color: #e4e4e4;
background-color: #393939;
}
.footer .web-info a {
color: #e4e4e4;
}
.footer .web-info a:hover {
text-decoration: underline;
}
@media screen and (max-width: 768px) {
.footer .web-info {
margin-top: 2%;
}
}
@media screen and (max-width: 640px) {
.footer .web-info {
height: 40px;
line-height: 40px;
text-align: center;
}
}
@media screen and (max-width: 640px) {
.footer .web-info .l {
width: 100%;
float: none;
}
.footer .web-info .r {
display: none;
}
.footer .web-info span {
display: none;
}
}
.go-top {
display: none;
position: fixed;
bottom: 50px;
right: 20px;
width: 50px;
height: 50px;
z-index: 9999;
cursor: pointer;
background: rgba(0,0,0,0.6) url(../images/go-top.png) no-repeat center;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 768px) {
.go-top {
width: 30px;
height: 30px;
right: 15px;
bottom: 30px;
-webkit-background-size: auto 10px;
background-size: auto 10px;
}
}
.go-top:hover {
background-color: #38b549;
}
/*图标*/
.search-icon {
background: url(../images/allbgs.png) no-repeat 0px 0px;
width: 14px;
padding-top: 16px;
}
.wz-icon {
background: url(../images/allbgs.png) no-repeat -14px 0px;
width: 16px;
padding-top: 17px;
}
.addr-icon {
background: url(../images/allbgs.png) no-repeat -30px 0px;
width: 20px;
padding-top: 17px;
}
.phone-icon-s {
background: url(../images/allbgs.png) no-repeat -50px 0px;
width: 17px;
padding-top: 18px;
}
.next-icon {
background: url(../images/allbgs.png) no-repeat -67px 0px;
width: 51px;
padding-top: 37px;
}
.prev-icon {
background: url(../images/allbgs.png) no-repeat -219px 0px;
width: 50px;
padding-top: 37px;
}
.phone-icon {
background: url(../images/allbgs.png) no-repeat -269px 0px;
width: 40px;
padding-top: 40px;
}
.project-arrow {
background: url(../images/allbgs.png) no-repeat -309px 0px;
width: 40px;
padding-top: 41px;
}
/*---------------------------------------公司简介-------------------------------------*/
.main-header {
display: block;
height: 51px;
width: 100%;
border-bottom: 1px solid #d6d6d6;
line-height: 50px;
}
@media screen and (max-width: 768px) {
.main-header {
height: auto;
border-bottom: none;
}
}
.main-header .position {
display: block;
float: left;
color: #777;
padding-left: 30px;
background: url(../images/home-icon.png) no-repeat left center;
}
@media screen and (max-width: 768px) {
.main-header .position {
width: 100%;
border-bottom: 1px solid #d6d6d6;
}
}
.main-header .position a {
color: #777;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.main-header .position span {
padding: 0 3px;
}
.main-header .position a:hover {
color: #38b549;
}
.main-header .subnav {
display: block;
float: right;
}
@media screen and (max-width: 768px) {
.main-header .subnav {
display: none;
width: 100%;
text-align: center;
margin-top: 2%;
}
}
@media screen and (max-width: 768px) {
.main-header .subnav.profile-nav {
display: block;
}
}
.main-header .subnav li {
display: inline-block;
margin-left: 60px;
}
@media screen and (max-width: 768px) {
.main-header .subnav li {
margin: 0 5%;
}
}
.main-header .subnav li a {
display: block;
color: #3c3c3c;
height: 50px;
line-height: 49px;
}
@media screen and (max-width: 768px) {
.main-header .subnav li a {
height: 40px;
line-height: 40px;
}
}
.main-header .subnav li:hover a {
color: #38b549;
}
.main-header .subnav li.active a {
color: #38b549;
border-bottom: 2px solid #38b549;
}
.profile {
font-size: 14px;
overflow: hidden;
clear: both;
line-height: 1.7;
color: #777;
}
.profile p {
margin-bottom: 1.2em;
}
.profile img {
max-width: 100%;
}
/*-------------------------------------------代理品牌-------------------------------------------*/
.brand-center-header {
display: block;
margin: 4.5% auto 3.6%;
text-align: center;
}
@media screen and (max-width: 768px) {
.brand-center-header {
margin: 8% 0;
}
}
.brand-center-header h1 {
display: block;
font-size: 30px;
color: #38b549;
}
.brand-center-header p {
display: block;
line-height: 35px;
color: #6b6b6b;
margin-top: 20px;
}
@media screen and (max-width: 768px) {
.brand-center-header p {
line-height: 30px;
margin-top: 2%;
}
}
.brand-center-body {
display: block;
text-align: center;
font-size: 0;
overflow: hidden;
}
.brand-center-body ul {
display: block;
margin: -2% -1%;
}
.brand-center-body li {
display: inline-block;
*display: inline;
*zoom:1;
width: 33.333%;
padding: 2% 1%;
}
@media screen and (max-width: 768px) {
.brand-center-body li {
width: 50%;
}
}
@media screen and (max-width: 640px) {
.brand-center-body li {
width: 100%;
}
}
.brand-center-body li .pic {
display: block;
overflow: hidden;
}
.brand-center-body li img {
display: block;
width: 100%;
height: auto;
transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
-webkit-transition: 0.5s;
}
.brand-center-body li .content:hover img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.brand-center-body li .text {
display: block;
padding: 15px 20px 20px 20px;
background-color: #f5f5f5;
margin-top: 13px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text {
background-color: #969696;
}
.brand-center-body li .text h4 {
display: block;
line-height: 1;
font-size: 16px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.brand-center-body li .text h4 a {
color: #5f5f5f;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text h4 a {
color: #fff;
}
.brand-center-body li .text .more {
display: inline-block;
padding: 1px 16px;
border: 1px solid #c3c3c3;
font-size: 12px;
color: #5f5f5f;
margin-top: 20px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text .more {
color: #fff;
border: 1px solid #fff;
}
.pagenation {
display: block;
text-align: center;
margin-top: 5.2%;
font-size: 0;
}
.pagenation li {
display: inline-block;
*display: inline;
*zoom:1;
color: #777;
margin: 0 3px;
font-size: 14px;
}
@media screen and (max-width: 640px) {
.pagenation li.hide {
display: none;
margin: 0;
}
}
.pagenation li a {
display: block;
padding: 4px 12px;
border: 1px solid #545454;
color: #545454;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.pagenation li a {
padding: 4px 9px;
}
}
.pagenation li a:hover {
border: 1px solid #59be65;
color: #59be65;
}
.pagenation li.active a {
color: #fff;
background-color: #59be65;
border: 1px solid #59be65;
}
.pagenation li span {
display: block;
padding: 4px 3px;
border: 1px solid #fff;
color: #545454;
}
.pagenation li input {
display: block;
border: 1px solid #545454;
outline: none;
}
.pagenation li .input {
width: 37px;
padding: 4px 0;
text-align: center;
color: #545454;
}
.pagenation li .input:focus {
border: 1px solid #59be65;
}
.pagenation li .submit {
padding: 4px 16px;
background-color: #fff;
cursor: pointer;
}
.pagenation li .submit:hover {
color: #fff;
background-color: #59be65;
border: 1px solid #59be65;
}
/*-------------------------------------------代理品牌详情-------------------------------------------*/
.brand-detail {
display: block;
width: 100%;
max-width: 1440px;
padding-top: 2%;
margin: 0 auto;
}
.brand-detail .item {
display: block;
overflow: hidden;
clear: both;
}
.brand-detail .pic {
display: block;
width: 50%;
background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
.brand-detail .pic {
width: 100%;
float: none;
}
}
.brand-detail .pic img {
display: block;
width: 100%;
height: auto;
}
.brand-detail .text {
display: block;
width: 50%;
padding: 0% 3%;
margin-top: 8%;
position: relative;
line-height: 35px;
color: #6b6b6b;
}
@media screen and (max-width: 1230px) {
.brand-detail .text {
margin-top: 4%;
line-height: 30px;
}
}
@media screen and (max-width: 768px) {
.brand-detail .text {
width: 100%;
float: none;
padding: 3%;
margin: 0;
}
}
@media screen and (max-width: 640px) {
.brand-detail .text {
padding: 3% 15px;
}
}
/*--------------------------------------- 新闻中心-------------------------------------*/
.news-center .item {
display: block;
overflow: hidden;
clear: both;
padding: 2.4% 0;
border-bottom: 1px dashed #cdcdcd;
}
.news-center .item .date {
display: block;
float: left;
width: 15%;
padding: 50px 2.5% 50px 2.5%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 768px) {
.news-center .item .date {
display: none;
}
}
.news-center .item .date .day {
display: block;
font-size: 31px;
color: #454545;
font-weight: bold;
line-height: 1;
}
.news-center .item .date .line {
display: inline-block;
*display: inline;
width: 90px;
height: 1px;
background-color: #d9d9d9;
margin: 16px 0;
}
.news-center .item .date .month {
display: block;
font-size: 12px;
color: #838383;
}
.news-center .item .pic {
display: block;
float: left;
margin-right: 3.4%;
}
.news-center .item .pic img {
display: block;
width: 299px;
height: 182px;
}
@media screen and (max-width: 640px) {
.news-center .item .pic img {
width: 131px;
height: 80px;
}
}
.news-center .item .content {
display: block;
overflow: hidden;
}
.news-center .item .content h4 {
display: block;
display: -webkit-box;
-webkit-line-clamp: 1;
overflow: hidden;
-webkit-line-break: auto;
-webkit-box-orient: vertical;
}
@media screen and (max-width: 640px) {
.news-center .item .content h4 {
-webkit-line-clamp: 2;
}
}
.news-center .item .content h4 a {
font-size: 18px;
color: #545454;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.news-center .item .content h4 a {
font-size: 16px;
}
}
.news-center .item .content h4 a:hover {
color: #38b549;
}
.news-center .item .content span {
display: block;
margin-top: 8px;
color: #6e6e6e;
}
.news-center .item .content p {
display: block;
line-height: 22px;
color: #6e6e6e;
font-size: 13px;
margin-top: 8px;
height: 66px;
display: -webkit-box;
-webkit-line-clamp: 3;
overflow: hidden;
-webkit-line-break: auto;
-webkit-box-orient: vertical;
}
@media screen and (max-width: 640px) {
.news-center .item .content p {
display: none;
}
}
.news-center .item .content .more {
display: block;
width: 146px;
height: 40px;
text-align: center;
line-height: 38px;
color: #545454;
border: 1px solid #9b9b9b;
margin-top: 12px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.news-center .item .content .more {
display: none;
}
}
.news-center .item .content .more:hover {
color: #fff;
background-color: #7a7a7a;
}
/*---------------------------------------------------新闻详情---------------------------------------------------------*/
.artical-header {
display: block;
margin: 4.5% auto 3%;
text-align: center;
}
@media screen and (max-width: 768px) {
.artical-header {
margin: 6% auto 5%;
}
}
.artical-header h1 {
display: block;
font-size: 18px;
color: #545454;
}
.artical-header p {
display: block;
line-height: 33px;
margin-top: 1.6%;
color: #777;
font-size: 12px;
background-color: #e9e9e9;
}
.artical-header p span {
display: inline-block;
margin: 0 2%;
}
.artical-body {
display: block;
font-size: 14px;
color: #777;
line-height: 1.7;
}
.artical-body img {
display: block;
max-width: 100%;
}
.artical-body p {
display: block;
margin-bottom: 1.2em;
}
.artical-footer {
display: block;
overflow: hidden;
border-top: 1px solid #717171;
margin-top: 2%;
padding-top: 2%;
}
@media screen and (max-width: 768px) {
.artical-footer {
margin-top: 4%;
padding-top: 4%;
}
}
.artical-footer .choose-artical {
display: block;
float: left;
max-width: 60%;
}
@media screen and (max-width: 640px) {
.artical-footer .choose-artical {
width: 100%;
max-width: 100%;
float: none;
}
}
.artical-footer .choose-artical a {
display: block;
color: #717171;
line-height: 28px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.artical-footer .choose-artical a:hover {
color: #38b549;
}
.artical-footer .share {
display: block;
float: right;
max-width: 40%;
margin-top: 20px;
overflow: hidden;
}
@media screen and (max-width: 640px) {
.artical-footer .share {
width: 100%;
max-width: 100%;
float: none;
margin-top: 4%;
}
}
.share .jiathis_style .jiathis_counter.jiathis_bubble_style {
width: 36px !important;
}
/*---------------------------------------------------人才招聘---------------------------------------------------------*/
.recruitment {
display: block;
margin-top: 3%;
}
.recruitment li {
display: block;
position: relative;
margin: 2.4% 0;
}
@media screen and (max-width:768px) {
.recruitment li {
margin: 4% 0;
}
}
.recruitment li>a {
display: block;
height: 40px;
line-height: 40px;
padding: 0 15px;
background-color: #ebebeb;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.recruitment li:hover>a {
background: #e4e4e4;
}
.recruitment li .zw {
display: block;
float: left;
max-width: 70%;
padding-left: 15px;
font-size: 16px;
color: #777;
background: url(../images/arrow.png) no-repeat left -7px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.recruitment li:hover a .zw {
background: url(../images/arrow.png) no-repeat left 17px;
}
.recruitment li .time {
display: block;
float: right;
color: #777;
}
.recruitment li .recruitment-detail {
display: none;
margin-top: 2.4%;
padding: 0 20px;
}
@media screen and (max-width:768px) {
.recruitment li .recruitment-detail {
margin-top: 4%;
}
}
.recruitment li .recruitment-detail .request {
display: block;
font-size: 15px;
color: #5e5e5e;
line-height: 1.8
}
.recruitment li .recruitment-detail .request span {
display: inline-block;
margin-right: 5%;
}
.recruitment li .recruitment-detail .describe {
display: block;
margin-top: 10px;
}
.recruitment li .recruitment-detail .describe .tit {
display: block;
color: #5e5e5e;
}
.recruitment li .recruitment-detail .txt {
display: block;
font-size: 13px;
line-height: 26px;
color: #777;
margin-top: 8px;
}
.recruitment li .recruitment-detail .send {
display: block;
color: #38b549;
margin-top: 10px;
}
.recruitment li .recruitment-detail .send:hover {
text-decoration: underline;
}
/*---------------------------------------------------联系我们---------------------------------------------------------*/
.iw_poi_title {
color: #CC5522;
font-size: 14px;
font-weight: bold;
overflow: hidden;
padding-right: 13px;
white-space: nowrap
}
.iw_poi_content {
font: 12px arial, sans-serif;
overflow: visible;
padding-top: 4px;
white-space: -moz-pre-wrap;
word-wrap: break-word
}
.contact-us .contact-way {
display: block;
}
.contact-us .contact-way .tit {
display: block;
margin-top: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #e1e1e1;
}
.contact-us .contact-way .tit h1, .contact-way .tit h4 {
display: block;
font-weight: bold;
padding: 0 12px;
border-left: 3px solid #38b549;
font-size: 18px;
color: #676767;
}
.contact-us .contact-way ul {
display: block;
padding: 6px 0;
border-bottom: 1px solid #e1e1e1;
}
.contact-us .contact-way ul li {
display: inline-block;
*display: inline;
padding: 10px 0;
}
.contact-us .contact-way .box1 ul li {
margin-right: 10%;
}
.contact-us .contact-way .box2 ul li {
margin-right: 3%;
}
.contact-us .contact-way ul li:last-child {
margin-right: 0;
}
.contact-us .contact-way ul li span {
display: block;
padding-left: 32px;
line-height: 22px;
font-size: 20px;
color: #656565;
}
@media screen and (max-width:640px) {
.contact-us .contact-way ul li span {
font-size: 18px;
}
}
@media screen and (max-width: 375px) {
.contact-us .contact-way ul li span {
font-size: 16px;
}
}
.contact-us .contact-way ul li .addr {
background: url(../images/addr.png) no-repeat left center;
}
.contact-us .contact-way ul li .phone {
background: url(../images/phone.png) no-repeat left center;
}
.contact-us .contact-way ul li .wz {
background: url(../images/wz.png) no-repeat left center;
}
.contact-us .contact-way ul li span a {
display: block;
float: right;
height: 22px;
width: 57px;
border-radius: 10px;
color: #656565;
background-color: #e6e6e6;
font-size: 13px;
text-align: center;
line-height: 22px;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
@media screen and (max-width: 640px) {
.contact-us .contact-way ul li span a {
display: none;
}
}
.contact-us .contact-way ul li span a:hover {
background-color: #656565;
color: #fff;
}
.contact-us .contact-way ul li p {
display: block;
margin-top: 10px;
font-size: 16px;
color: #8f8f8f;
}
/*---------------------------------------------------资料下载---------------------------------------------------------*/
.data-download {
display: none;
text-align: center;
font-size: 0;
overflow: hidden;
}
.data-download.on {
display: block;
}
.data-download ul {
display: block;
margin: -1.5% -1%;
}
.data-download li {
display: inline-block;
width: 25%;
padding: 1.5% 1%;
}
@media screen and (max-width: 768px) {
.data-download li {
width: 50%;
}
}
.data-download li img {
display: block;
width: 100%;
height: auto;
padding: 2%;
border: 1px solid #b1b1b1;
}
.data-download li p {
display: block;
color: #777;
font-size: 14px;
margin-top: 10px;
}
.data-download li a {
display: inline-block;
margin-top: 10px;
padding: 1px 10px;
color: #777;
font-size: 12px;
border: 1px solid #b1b1b1;
border-radius: 15px;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.data-download li a:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
/*---------------------------------------------------品牌服务---------------------------------------------------------*/
.exhibition-hall {
display: block;
font-size: 0;
padding-top: 1%;
}
.exhibition-hall ul {
overflow: hidden;
display: block;
margin: -1.6% -1%;
}
@media screen and (max-width: 768px) {
.exhibition-hall ul {
margin: -3% -1%;
}
}
.exhibition-hall ul li {
height: 530px;
overflow: hidden;
float: left;
padding: 1.6% 1%;
width: 33.3%
}
.exhibition-hall ul li img {
height: 300px;
width: 100%;
}
.exhibition-hall ul li .zttxt {
margin-top: 10px;
}
@media screen and (max-width: 1230px) {
.exhibition-hall ul li {
width: 50%;
}
}
@media screen and (max-width: 768px) {
.exhibition-hall ul li {
width: 100%;
text-align: center;
padding: 3%
}
}
@media screen and (max-width: 1230px) {
.exhibition-hall ul li:nth-child(3n) {
width: 50%;
}
}
@media screen and (max-width: 768px) {
.exhibition-hall ul li:nth-child(3n) {
width: 100%;
}
}
.exhibition-hall ul li h4 {
font-size: 20px;
color: #8f8f8f;
font-weight: bold;
margin-bottom: 10px;
}
.exhibition-hall ul li p {
display: block;
font-size: 16px;
line-height: 32px;
color: #8f8f8f;
}
.exhibition-hall .more {
display: block;
width: 150px;
height: 46px;
text-align: center;
line-height: 44px;
border: 1px solid #d3d3d3;
margin: 5% auto 0;
font-size: 20px;
color: #8b8b8b;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
@media screen and (max-width: 768px) {
.exhibition-hall .more {
font-size: 16px;
height: 42px;
line-height: 40px;
}
}
.exhibition-hall .more:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
.bussiness-join {
display: block;
margin-top: 4%;
}
@media screen and (max-width: 768px) {
.bussiness-join {
margin-top: 8%;
}
}
.bussiness-join-header {
text-align: center;
padding: 176px 0 190px 0;
background: url(../images/bussiness-join.jpg) no-repeat center fixed;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 768px) {
.bussiness-join-header {
padding: 136px 0 150px 0;
background: url(../images/bussiness-join.jpg) no-repeat center scroll;
}
}
@media screen and (max-width: 640px) {
.bussiness-join-header {
padding: 100px 0 100px 0;
}
}
@media screen and (max-width: 375px) {
.bussiness-join-header {
padding: 60px 0;
}
}
.bussiness-join-header h3 {
display: block;
font-size: 50px;
color: #fff;
line-height: 1;
}
@media screen and (max-width: 768px) {
.bussiness-join-header h3 {
font-size: 38px;
}
}
@media screen and (max-width: 640px) {
.bussiness-join-header h3 {
font-size: 28px;
}
}
@media screen and (max-width: 375px) {
.bussiness-join-header h3 {
font-size: 24px;
}
}
.bussiness-join-header p {
display: block;
color: #c9c8c8;
font-size: 24px;
text-transform: uppercase;
margin-top: 10px;
}
@media screen and (max-width: 768px) {
.bussiness-join-header p {
font-size: 20px;
}
}
.bussiness-join-body {
display: block;
}
.bussiness-join-body h4 {
display: block;
font-size: 28px;
color: #373737;
text-align: center;
}
@media screen and (max-width: 768px) {
.bussiness-join-body h4 {
font-size: 22px;
}
}
.bussiness-join-body .join-request {
display: block;
margin-top: 5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .join-request {
margin-top: 8%;
}
}
.bussiness-join-body .join-request .content {
display: block;
margin-top: 4.5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .join-request .content {
margin-top: 6%;
}
}
.bussiness-join-body .join-request .content h5 {
font-size: 18px;
color: #8b8b8b;
font-weight: bold;
}
.bussiness-join-body .join-request .txt {
display: block;
font-size: 16px;
line-height: 35px;
color: #8b8b8b;
margin-top: 1%;
}
.bussiness-join-body .fill-info {
display: block;
margin-top: 5%;
}
@media screen and (max-width: 1230px) {
.bussiness-join-body .fill-info {
display: none;
}
}
.bussiness-join-body .fill-info .info {
display: block;
margin-top: 4.5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .fill-info .info {
margin-top: 6%;
}
}
.bussiness-join-body .fill-info .info .city {
display: block;
height: 30px;
line-height: 30px;
}
.bussiness-join-body .fill-info .info .city label {
position: relative;
display: block;
float: left;
margin-left: -100%;
left: 0;
font-size: 18px;
color: #8b8b8b;
font-weight: bold;
}
.bussiness-join-body .fill-info .info .city .input-box {
display: block;
float: left;
width: 100%;
padding-left: 64px;
}
.bussiness-join-body .fill-info .info .city .input-box input {
display: block;
width: 100%;
height: 30px;
padding: 0px 10px;
line-height: 30px;
border: none;
outline: none;
color: #666;
font-size: 16px;
}
.table {
display: table;
width: 100%;
min-width: 1200px;
border: 1px solid #ccc;
border-width: 1px 1px 0 0;
margin-top: 14px;
}
.table td {
border: 1px solid #ccc;
border-width: 0px 0px 1px 1px;
padding: 10px 20px;
vertical-align: middle;
color: #8b8b8b;
font-size: 16px;
}
.table td input[type="text"] {
display: block;
width: 100%;
height: 30px;
line-height: 30px;
color: #666;
border: none;
outline: none;
}
.table td textarea {
display: block;
width: 100%;
height: 100px;
border: none;
outline: none;
line-height: 30px;
color: #666;
}
.table td input[type="radio"] {
margin-right: 8px;
margin-left: 60px;
}
.table td.tac {
text-align: center;
}
.table td label {
margin-right: 5%;
}
.bussiness-join-body .fill-info .info .action {
display: block;
margin-top: 5.2%;
text-align: center;
}
.bussiness-join-body .fill-info .info .action input {
display: inline-block;
width: 200px;
height: 46px;
line-height: 44px;
border: 1px solid #d3d3d3;
font-size: 20px;
color: #8b8b8b;
background-color: #fff;
margin: 0 4%;
outline: none;
cursor: pointer;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.bussiness-join-body .fill-info .info .action input:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
.fenye {
overflow: hidden;
text-align: center;
line-height: 24px;
padding: 30px 0 10px 0;
}
.fenye li{
float: left;
}
.fenye .a1 {
font-size: 14px;
padding: 5px 10px;
color: #666666;
border: 1px solid #ccc;
border-radius: 5px;
margin: 0 3px;
}
.fenye a {
font-size: 14px;
padding: 5px 10px;
color: #666666;
border: 1px solid #cdcdcd;
background-color: #ffffff;
border-radius: 5px;
margin: 0 3px;
}
.fenye span {
font-size: 14px;
padding: 5px 10px;
color: #ffffff;
border: 1px solid #69ac0c;
background-color: #38b549;
border-radius: 5px;
margin: 0 3px;
}
.fenye a:hover {
color: #fff;
background: #38b549;
border: 1px solid #69ac0c;
}
.ztfl {
overflow: hidden;
width: 1230px;
margin: 0 auto;
}
.ztfl li {
float: left;
width: 23%;
margin: 0 1%;
}
.ztfl li p {
border: 1px solid #dcdcdc;
}
.ztfl li p img {
width: 100%;
}
.ztfl li span {
height: 40px;
line-height: 40px;
font-size: 18px;
text-align: center;
display: block;
}
.ztfl li span a {
color: #666666;
}
.ztfl li:hover p {
border: 1px solid #38b549;
}
.ztfl li:hover span a {
text-decoration: underline;
color: #38b549;
}
@media screen and (max-width: 768px) {
.ztfl {
width: 100%;
margin: 0 auto;
}
.ztfl li {
width: 90%;
margin: 0 5%;
}
}
@media screen and (max-width: 1230px) {
.ztfl {
width: 100%;
margin: 0 auto;
}
}
.teamlist {
overflow: hidden;
width: 1200px;
margin: 15px auto 0 auto;
padding-top: 35px;
border-top: 1px dashed #dcdcdc;
}
.teamlist li {
width: 220px;
float: left;
margin: 0 10px;
}
.teamlist li p {
height: 250px;
width: 220px;
border: 1px solid #dcdcdc;
}
.teamlist li p img {
height: 248px;
width: 218px;
}
.teamlist li span {
display: block;
width: 220px;
text-align: center;
height: 42px;
line-height: 42px;
font-size: 16px;
color: #666666;
}
@media screen and (max-width: 768px) {
.teamlist {
overflow: hidden;
width: 100%;
margin: 0 auto;
}
.teamlist li {
width: 46%;
float: left;
margin: 2%;
}
.teamlist li p {
width: 100%;
border: 1px solid #dcdcdc;
height: auto;
}
.teamlist li p img {
width: 100%;
height: auto;
}
.teamlist li span {
display: block;
width: 100%;
text-align: center;
height: 42px;
line-height: 42px;
font-size: 16px;
color: #666666;
}
}
.bussiness-join-body .fill-info .info .action .empty {
display: none;
}
.pptxt {
width: 100%;
overflow: hidden;
line-height: 1.8;
font-size: 14px;
color: #666666;
margin-top: 50px;
}
.pptxt p {
margin-bottom: 1em;
} | public/themes/ty001/public/skin/css/common.css |
.container-full {
display: block;
width: 100%;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
.container {
display: block;
width: 100%;
max-width: 1230px;
padding-left: 15px;
padding-right: 15px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.header {
padding: 15px 0;
position: relative;
}
}
@media screen and (max-width: 640px) {
.header {
padding: 8px 0;
position: relative;
}
}
.header .logo {
display: none;
}
@media screen and (max-width: 768px) {
.header .logo {
display: block;
float: left;
}
.header .logo img {
display: block;
height: 60px;
}
}
@media screen and (max-width: 640px) {
.header .logo img {
display: block;
height: 46px;
}
}
.header .nav {
display: block;
float: left;
width: 100%;
padding-right: 180px;
}
@media screen and (max-width: 768px) {
.header .nav {
display: none;
position: absolute;
padding-right: 0;
top: 100%;
left: 0;
background-color: rgba(0,0,0,0.95);
z-index: 10;
}
}
.header .nav li {
position: relative;
display: block;
float: left;
margin-right: 10px;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 1230px) {
.header .nav li {
width: 16%;
margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.header .nav li {
width: 100%;
border-bottom: 1px solid #555;
}
.header .nav li:last-child {
border-bottom: none;
}
}
.header .nav li:last-child {
margin-right: 0;
}
.header .nav li>a {
display: inline-block;
*display: inline;
*zoom:1;
width: 114px;
height: 33px;
line-height: 31px;
border: 1px solid #fff;
border-radius: 15px;
font-size: 16px;
color: #454545;
margin: 35px 0 34px 0;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
.header .nav li>a {
font-size: 15px;
width: 100px;
}
}
@media screen and (max-width: 768px) {
.header .nav li>a {
width: 100%;
margin: 0;
font-size: 14px;
color: #fff;
height: 46px;
line-height: 46px;
border: none;
border-radius: 0;
padding: 0 15px;
text-align: left;
}
}
.header .nav li.active>a {
border: 1px solid #38b549;
color: #38b549;
}
@media screen and (max-width: 768px) {
.header .nav li.active>a {
color: #fff;
border: none;
}
}
.header .nav li:hover>a {
color: #38b549;
}
@media screen and (max-width: 768px) {
.header .nav li:hover>a {
color: #38b549;
}
}
@media screen and (max-width: 1230px) {
.header .nav .nav-logo {
width: 20%;
padding: 0 10px;
}
}
@media screen and (max-width: 768px) {
.header .nav .nav-logo {
display: none;
}
}
.header .nav .nav-logo a {
width: auto;
height: auto;
margin-top: 15px;
margin-bottom: 0;
}
.header .nav .nav-logo a img {
display: block;
max-width: 100%
}
.header .nav li dl {
display: none;
position: absolute;
width: 100%;
background-color: #696969;
background-color: rgba(30,30,30,0.9);
z-index: 10;
}
@media screen and (max-width: 768px) {
.header .nav li dl {
position: static;
}
}
.header .nav li dl dd {
display: block;
height: 40px;
line-height: 40px;
border-bottom: 1px solid #848484;
}
@media screen and (max-width: 768px) {
.header .nav li dl dd {
border-bottom: none;
height: 36px;
line-height: 36px;
}
}
.header .nav li dl dd:last-child {
border-bottom: none;
}
.header .nav li dl dd a {
display: block;
color: #fff;
font-size: 14px;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
.header .nav li dl dd a {
padding: 0 30px;
text-align: left;
font-size: 13px;
}
}
.header .nav li dl dd a:hover {
background-color: #43b952;
}
.header .search {
display: block;
position: relative;
float: right;
margin-right: -163px;
width: 163px;
height: 28px;
margin-top: 37px;
right: 163px;
border: 1px solid #c0c0c0;
border-radius: 15px;
overflow: hidden;
}
@media screen and (max-width: 768px) {
.header .search {
display: none;
}
}
.header .search input {
display: block;
float: left;
width: 127px;
padding: 3px 15px;
line-height: 20px;
border: none;
outline: none;
color: #666;
}
.header .search .submit {
display: block;
float: right;
width: 34px;
height: 26px;
border: none;
outline: none;
background: url(../images/search-icon.png) no-repeat center;
cursor: pointer;
-webkit-transition: 0.3s ease;
-o-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
transition: 0.3s ease;
}
.header .search .submit:hover {
opacity: 0.8;
}
.header .nav-toggle {
display: none;
float: right;
padding: 4px 8px;
border-radius: 4px;
border: none;
outline: none;
background-color: #fff;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.header .nav-toggle {
display: block;
margin-top: 16px;
}
}
@media screen and (max-width: 640px) {
.header .nav-toggle {
display: block;
margin-top: 10px;
}
}
.header .nav-toggle span {
display: block;
margin: 4px 0;
width: 20px;
height: 2px;
background-color: #444;
}
.banner {
display: block;
overflow: hidden;
position: relative;
width: 100%;
margin: 0 auto;
}
.banner img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto;
}
.banner .swiper-button-next, .banner .swiper-button-prev {
display: none;
position: absolute;
z-index: 5;
width: 58px;
height: 58px;
border-radius: 50%;
top: 50%;
margin-top: -29px;
text-align: center;
line-height: 58px;
color: #fff;
font-family: "Simsun";
font-size: 34px;
background-color: #000 !important;
background-color: rgba(0,0,0,0.2) !important;
background-image: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.banner .swiper-button-next, .banner .swiper-button-prev {
display: none;
}
}
.banner:hover .swiper-button-next, .banner:hover .swiper-button-prev {
display: block;
}
@media screen and (max-width: 768px) {
.banner:hover .swiper-button-next, .banner:hover .swiper-button-prev {
display: none;
}
}
.banner .swiper-button-prev {
left: 5%;
}
.banner .swiper-button-next {
right: 5%;
}
.banner:hover .swiper-button-next:hover, .banner:hover .swiper-button-prev:hover {
background-color: rgba(0,0,0,0.6) !important;
}
.swiper-pagination {
font-size: 0;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 20px;
}
@media screen and (max-width: 640px) {
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 10px;
}
}
.banner .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
*display: inline;
*zoom:1;
width: 45px;
height: 2px;
margin: 0px 5px 0 5px;
background-color: #ccc;
background-color: rgba(0,0,0,0.5);
cursor: pointer;
opacity: 1;
border-radius: 0;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.banner .swiper-pagination-bullets .swiper-pagination-bullet {
width: 24px;
height: 2px;
}
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: #fff;
}
.section-header {
position: relative;
display: block;
width: 100%;
max-width: 1200px;
margin: 4.5% auto 3.6%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 640px) {
.section-header {
margin: 8% auto 8%;
}
}
.section-header h3 {
position: relative;
display: block;
line-height: 1;
font-size: 30px;
z-index: 5;
}
.green {
color: #38b549;
}
.black {
color: #000;
}
.section-header p {
display: block;
line-height: 1;
font-size: 18px;
color: #b8b8b8;
margin-top: 15px;
text-transform: uppercase;
}
.section-header .line {
position: absolute;
display: block;
width: 100%;
height: 1px;
background-color: #d6d6d6;
top: 29px;
left: 0;
text-align: center;
z-index: 2;
}
.section-header .line span {
display: inline-block;
width: 240px;
height: 1px;
background-color: #fff;
}
.about-body {
display: block;
}
.about-body .about-us-l {
display: block;
float: left;
width: 50.58%;
padding: 20px;
background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
.about-body .about-us-l {
width: 100%;
float: none;
}
}
.about-body .about-us-l h1 {
display: block;
font-size: 18px;
color: #38b549;
line-height: 1;
padding: 14px 0 0px 0;
}
@media screen and (max-width: 320px) {
.about-body .about-us-l h1 {
font-size: 16px;
}
}
/*.about-body .about-us-l .line{
display: block;
width: 260px;
height: 3px;
background-color: #fff;
border: 1px solid #38b549;
border-width: 1px 0 1px 0;
}*/
.about-body .about-us-l p {
display: block;
line-height: 30px;
color: #828282;
margin-top: 18px;
letter-spacing: 2px;
}
.about-body .about-us-l a {
display: block;
width: 92px;
height: 27px;
border: 1px solid #8f8f8f;
margin-top: 14px;
text-align: center;
line-height: 27px;
color: #5c5c5c;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.about-body .about-us-l a:hover {
color: #fff;
background-color: #7a7a7a;
border: 1px solid #7a7a7a;
}
.about-body .about-us-r {
display: block;
float: right;
width: 48.83%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 768px) {
.about-body .about-us-r {
width: 100%;
float: none;
margin-top: 4%;
}
}
.about-body .about-us-r li {
display: inline-block;
width: 33.33%;
padding-left: 9px;
background-color: #fff;
}
.about-body .about-us-r li:last-child {
margin-right: 0;
}
.about-body .about-us-r li img {
display: block;
width: 100%;
height: auto;
}
.about-body .about-us-r li .content {
display: block;
background-color: #f0f0f0;
padding-bottom: 25px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content {
padding-bottom: 10px;
}
}
.about-body .about-us-r li .content:hover {
background-color: #7a7a7a;
}
.about-body .about-us-r li .content h4 {
display: block;
line-height: 1;
font-size: 18px;
color: #5c5c5c;
margin-top: 20px;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content h4 {
font-size: 14px;
margin-top: 10px;
}
}
.about-body .about-us-r li .content h4 a {
color: #5c5c5c;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.about-body .about-us-r li .content:hover h4 a {
color: #fff;
}
.about-body .about-us-r li .content p {
display: block;
font-size: 13px;
color: #a1a1a1;
line-height: 1;
margin-top: 10px;
text-transform: uppercase;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 640px) {
.about-body .about-us-r li .content p {
display: none;
}
}
.about-body .about-us-r li .content:hover p {
color: #d0d0d0;
}
.brand-type {
display: block;
text-align: center;
font-size: 0;
margin-bottom: 3.6%;
}
.brand-type li {
display: inline-block;
width: 170px;
height: 48px;
margin: 0 25px;
text-align: center;
line-height: 48px;
border-radius: 20px;
font-size: 18px;
color: #8d8d8d;
background-color: #f2f2f2;
cursor: pointer;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.brand-type li a {
color: #8d8d8d;
display: block;
}
@media screen and (max-width: 768px) {
.brand-type li {
width: 20%;
margin: 1%;
height: 40px;
line-height: 40px;
font-size: 16px;
}
}
@media screen and (max-width: 640px) {
.brand-type li {
width: 40%;
}
}
.brand-type li.active {
color: #fff;
background-color: #696969;
}
.brand-type li.active a {
color: #fff;
}
.brand-body {
display: none;
overflow: hidden;
}
.brand-body.on {
display: block;
}
.brand-body .box {
display: block;
overflow: hidden;
}
.brand-body .group {
display: block;
overflow: hidden;
}
.brand-body .list {
display: block;
}
.brand-body ul {
display: block;
overflow: hidden;
margin: -8px -6px;
}
.brand-body li {
display: block;
float: left;
width: 25%;
padding: 8px 6px;
}
@media screen and (max-width: 640px) {
.brand-body li {
width: 50%;
}
}
.brand-body li>a {
display: block;
overflow: hidden;
position: relative;
}
.brand-body li img {
display: block;
width: 100%;
height: auto;
}
.brand-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
padding: 20% 10px;
opacity: 0;
background: rgba(0,0,0,0.6);
top: 0;
text-align: center;
font-size: 0;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.brand-body li .mask {
padding: 30% 10px;
}
}
.brand-body li .mask:hover {
opacity: 1;
}
.brand-body li .mask h4 {
display: inline-block;
max-width: 100%;
line-height: 1;
font-size: 18px;
letter-spacing: 2px;
color: #fff;
padding: 10px;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
.brand-body li .mask h4 {
letter-spacing: 0px;
}
}
.brand-body li .mask p {
display: block;
font-size: 14px;
color: #e1e1e1;
margin-top: 13px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
.brand-body li .mask p {
display: none;
}
}
.brand-body li .mask>span {
display: inline-block;
width: 96px;
height: 28px;
border: 1px solid #fff;
color: #fff;
margin-top: 20%;
text-align: center;
line-height: 28px;
font-size: 14px;
}
@media screen and (max-width: 768px) {
.brand-body li .mask>span {
display: none;
}
}
.agency-brand .action {
display: block;
margin-top: 14px;
}
@media screen and (max-width: 640px) {
.agency-brand .action {
display: none;
}
}
.agency-brand .action .btn {
display: block;
width: 50%;
float: left;
height: 64px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.agency-brand .action .btn:hover {
background-color: #7a7a7a;
}
.agency-brand .action .btn.disabled {
background-color: #e5e5e5;
cursor: default;
pointer-events: none;
}
.agency-brand .action .prev {
background-color: #e5e5e5;
text-align: right;
padding-right: 50px;
}
.agency-brand .action .next {
background-color: #e5e5e5;
text-align: left;
padding-left: 50px;
}
.agency-brand .action i {
display: inline-block;
margin-top: 15px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.agency-brand .action .prev:hover i {
background: url(../images/allbgs.png) no-repeat -169px 0px;
width: 50px;
padding-top: 37px;
}
.agency-brand .action .next:hover i {
background: url(../images/allbgs.png) no-repeat -118px 0px;
width: 51px;
padding-top: 37px;
}
.project {
display: block;
background-color: #e9e9e9;
padding: 3.5% 0 3% 0;
margin-top: 5%;
}
@media screen and (max-width: 640px) {
.project {
padding: 8% 0;
}
}
.project .section-header {
margin-top: 0;
}
.project .section-header .line {
background-color: #c4c4c4;
}
.project .section-header .line span {
background-color: #e9e9e9;
}
.project-body {
display: block;
position: relative;
}
.project-body .btn {
display: block;
position: absolute;
width: 36px;
height: 62px;
top: 36%;
text-align: center;
line-height: 62px;
font-size: 54px;
color: #717171;
font-family: "Simsun";
z-index: 20;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 1230px) {
.project-body .btn {
width: 30px;
height: 52px;
line-height: 52px;
background-color: rgba(0,0,0,0.6);
color: #fff;
font-size: 30px;
}
}
.project-body .btn:hover {
color: #333;
}
@media screen and (max-width: 1230px) {
.project-body .btn:hover {
color: #fff;
}
}
.project-body .prev {
left: -42px;
}
@media screen and (max-width: 1230px) {
.project-body .prev {
left: 15px;
}
}
.project-body .next {
right: -42px;
}
@media screen and (max-width: 1230px) {
.project-body .next {
right: 15px;
}
}
.project-body .box {
display: block;
position: relative;
overflow: hidden;
}
.project-body .box ul {
display: block;
font-size: 0;
overflow: hidden;
margin-right: -24px;
}
.project-body li {
display: block;
float: left;
width: 25%;
padding-right: 24px;
}
@media screen and (max-width: 640px) {
.project-body li {
width: 50%;
}
}
.project-body li .pic {
display: block;
padding: 10px 8px;
border: 1px solid #d5d5d5;
}
.project-body li .pic a {
display: block;
width: 100%;
height: auto;
}
.project-body li .content {
display: block;
position: relative;
overflow: hidden;
}
.project-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 80%;
padding-top: 10%;
top: -100%;
background-color: rgba(0,0,0,0.4);
text-align: center;
z-index: 10;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.project-body li .mask {
height: 100%;
padding-top: 30%;
}
}
.project-body li:hover .mask {
top: 0;
}
.project-body li .mask .fdj {
display: inline-block;
*display: inline;
*zoom:1;
width: 54px;
height: 54px;
background: url(../images/fdj.png) no-repeat center;
}
.project-body li .mask p {
display: block;
font-size: 18px;
line-height: 1;
margin-top: 18px;
color: #fff;
text-transform: uppercase;
}
@media screen and (max-width: 768px) {
.project-body li .mask p {
display: none;
}
}
.project-body li .mask h4 {
display: block;
font-size: 16px;
line-height: 1;
margin-top: 14px;
color: #fff;
}
@media screen and (max-width: 768px) {
.project-body li .mask h4 {
display: none;
}
}
.project-body li .mask .project-arrow {
display: block;
position: absolute;
bottom: -18px;
left: 50%;
margin-left: -20px;
z-index: 10;
}
@media screen and (max-width: 768px) {
.project-body li .mask .project-arrow {
display: none;
}
}
.project-body li img {
display: block;
width: 100%;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
.project-body li p {
display: block;
text-align: center;
font-size: 15px;
color: #5c5c5c;
margin-top: 30px;
line-height: 1;
}
.project-body li p a {
color: #5c5c5c;
}
.join {
display: block;
position: relative;
text-align: center;
padding: 130px 20px;
margin-top: 4.5%;
background: url(../images/join-bg.jpg) no-repeat center fixed;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 768px) {
.join {
padding: 100px 20px;
background: url(../images/join-bg.jpg) no-repeat center scroll;
}
}
@media screen and (max-width: 768px) {
.join {
padding: 80px 20px;
}
}
.join .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
top: 0;
left: 0;
}
.join .text {
display: block;
position: relative;
z-index: 5;
}
.join .text h3 {
display: block;
line-height: 1;
font-size: 50px;
color: #fff;
}
@media screen and (max-width: 768px) {
.join .text h3 {
font-size: 38px;
}
}
@media screen and (max-width: 640px) {
.join .text h3 {
font-size: 30px;
}
}
.join .text p {
display: block;
line-height: 1;
font-size: 24px;
color: #b1b1b1;
margin-top: 20px;
}
@media screen and (max-width: 640px) {
.join .text p {
font-size: 20px;
line-height: 1.5;
margin-top: 20px;
}
}
.join .text a {
display: inline-block;
width: 176px;
height: 52px;
border: 1px solid #fff;
text-align: center;
line-height: 52px;
color: #eee;
font-size: 20px;
margin-top: 74px;
transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
}
@media screen and (max-width: 768px) {
.join .text a {
font-size: 16px;
height: 40px;
line-height: 40px;
margin-top: 50px;
}
}
@media screen and (max-width: 640px) {
.join .text a {
margin-top: 30px;
}
}
.join .text a:hover {
background-color: rgba(0,0,0,0.5);
}
.news-body .important-news {
display: block;
float: left;
width: 39.83%;
}
@media screen and (max-width: 768px) {
.news-body .important-news {
width: 100%;
float: none;
}
}
.news-body .important-news .pic {
display: block;
position: relative;
}
.news-body .important-news img {
display: block;
width: 100%;
max-height: 194px;
}
.news-body .important-news .date {
display: block;
position: absolute;
width: 67px;
height: 64px;
top: 0;
left: 0;
background-color: #39b549;
text-align: center;
color: #fff;
overflow: hidden;
}
.news-body .important-news .date .day {
display: block;
font-size: 34px;
color: #fff;
line-height: 1;
margin-top: 8px;
}
.news-body .important-news .date .month {
display: block;
line-height: 1;
color: #fff;
font-size: 13px;
margin-top: 3px;
}
.news-body .important-news h4 {
display: block;
margin-top: 22px;
color: #5c5c5c;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
font-size: 16px;
}
@media screen and (max-width: 768px) {
.news-body .important-news h4 {
margin-top: 4%;
}
}
.news-body .important-news h4 a {
color: #5c5c5c;
}
.news-body .important-news h4 a:hover {
color: #38b549;
}
.news-body .important-news p {
display: block;
line-height: 23px;
color: #868686;
margin-top: 8px;
}
.news-body .orther-news {
display: block;
float: right;
width: 56.66%;
}
@media screen and (max-width: 768px) {
.news-body .orther-news {
width: 100%;
float: none;
margin-top: 6%;
}
}
.news-body .orther-news ul {
margin: -18px 0;
}
.news-body .orther-news li {
display: block;
padding: 18px 0;
border-bottom: 1px dashed #d1d1d1;
}
.news-body .orther-news li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.news-body .orther-news li .date {
display: block;
width: 64px;
height: 71px;
float: left;
margin-right: 15px;
overflow: hidden;
border: 1px solid #b2b2b2;
text-align: center;
}
.news-body .orther-news li .date .day {
display: block;
font-size: 40px;
color: #7e7e7e;
line-height: 1;
margin-top: 6px;
}
.news-body .orther-news li .date .month {
display: block;
line-height: 1;
font-size: 13px;
color: #5c5c5c;
margin-top: 4px;
}
.news-body .orther-news li .content {
display: block;
overflow: hidden;
}
.news-body .orther-news li .content h4 {
display: block;
font-size: 16px;
color: #5c5c5c;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.news-body .orther-news li .content h4 a {
color: #5c5c5c;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.news-body .orther-news li .content h4 a:hover {
color: #38b549;
}
.news-body .orther-news li .content p {
display: block;
line-height: 23px;
color: #767676;
margin-top: 6px;
}
.news .more {
display: block;
height: 36px;
line-height: 36px;
background-color: #ebebeb;
color: #666;
text-align: center;
margin-top: 30px;
}
.news .more a {
display: block;
color: #666;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.news .more a:hover {
color: #fff;
background-color: #7a7a7a;
}
.partner-body {
display: block;
overflow: hidden;
}
.partner-body ul {
display: block;
overflow: hidden;
margin: -1% -1.5%;
}
.partner-body li {
display: block;
float: left;
width: 16.666%;
padding: 1% 1.5%;
}
@media screen and (max-width: 768px) {
.partner-body li {
width: 33.333%
}
}
.partner-body li a {
display: block;
position: relative;
}
.partner-body li .mask {
display: block;
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background-color: #000;
top: 0;
left: 0;
z-index: 10;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.partner-body li a:hover .mask {
opacity: 0.3;
}
.partner-body li img {
display: block;
width: 100%;
height: auto;
border: 1px solid #e1e1e1;
}
.footer {
display: block;
width: 100%;
margin-top: 4.5%;
background-color: #525252;
}
.footer .box-l {
display: block;
float: left;
width: 610px;
}
@media screen and (max-width: 1230px) {
.footer .box-l {
width: 100%;
float: none;
}
}
.footer .box-l .contact-way {
display: block;
overflow: hidden;
}
.footer .box-l .ewm {
display: block;
float: left;
}
.footer .box-l .ewm img {
display: block;
float: left;
width: 124px;
height: 124px;
margin-right: 8px;
}
.footer .box-l .contact-way .info {
display: block;
float: left;
margin-left: 7px;
}
@media screen and (max-width: 640px) {
.footer .box-l .contact-way .info {
margin-top: 6%;
}
}
.footer .box-l .contact-way .info h2 {
display: block;
padding-left: 8px;
border-left: 1px solid #38b549;
font-size: 16px;
line-height: 1;
color: #fff;
}
.footer .box-l .contact-way .info ul {
display: block;
margin-top: 16px;
}
@media screen and (max-width: 640px) {
.footer .box-l .contact-way .info ul {
margin-top: 2%;
}
}
.footer .box-l .contact-way .info ul li {
display: block;
height: 33px;
line-height: 33px;
color: #b9b9b9;
}
.footer .box-l .contact-way .info ul li span {
display: block;
float: left;
margin: 9px 10px 0 0;
}
.footer .box-l .contact-way .info ul li i {
display: block;
}
.footer .box-l .phone {
display: block;
height: 39px;
line-height: 39px;
margin-top: 15px;
font-size: 20px;
color: #38b549;
}
@media screen and (max-width: 768px) {
.footer .box-l .phone {
margin-top: 2%;
}
}
@media screen and (max-width: 640px) {
.footer .box-l .phone {
display: none;
}
}
.footer .box-l .phone i {
display: block;
float: left;
margin: 0 10px 0 14px;
}
.footer .box-r {
display: block;
float: right;
width: 550px;
}
@media screen and (max-width: 1230px) {
.footer .box-r {
width: 100%;
float: none;
margin-top: 4%;
}
}
@media screen and (max-width: 768px) {
.footer .box-r {
display: none;
}
}
.footer .box-r .mune {
display: block;
overflow: hidden;
clear: both;
}
.footer .box-r .mune .list {
display: block;
padding: 0 45px;
height: 146px;
float: left;
border-left: 1px solid #b9b9b9;
}
.footer .box-r .mune .list:first-child {
padding-left: 0;
border-left: 0;
}
.footer .box-r .mune .list:last-child {
padding-right: 0;
}
.footer .box-r .mune .list h4 {
display: block;
color: #fff;
font-size: 16px;
}
.footer .box-r .mune .list ul {
display: block;
margin-top: 10px;
}
.footer .box-r .mune .list ul li {
display: block;
height: 28px;
line-height: 28px;
}
.footer .box-r .mune .list ul li a {
color: #b9b9b9;
transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
}
.footer .box-r .mune .list ul li a:hover {
color: #fff;
}
.footer .box-r .frend-link {
display: block;
margin-top: 24px;
overflow: hidden;
clear: both;
}
.footer .box-r .frend-link h4 {
display: block;
float: left;
font-size: 18px;
color: #38b549;
font-weight: bold;
}
.footer .box-r .frend-link ul {
display: block;
float: left;
}
.footer .box-r .frend-link ul li {
display: block;
width: 109px;
height: 47px;
float: left;
margin-left: 6px;
}
.footer .web-info {
display: block;
height: 60px;
line-height: 60px;
margin-top: 34px;
color: #e4e4e4;
background-color: #393939;
}
.footer .web-info a {
color: #e4e4e4;
}
.footer .web-info a:hover {
text-decoration: underline;
}
@media screen and (max-width: 768px) {
.footer .web-info {
margin-top: 2%;
}
}
@media screen and (max-width: 640px) {
.footer .web-info {
height: 40px;
line-height: 40px;
text-align: center;
}
}
@media screen and (max-width: 640px) {
.footer .web-info .l {
width: 100%;
float: none;
}
.footer .web-info .r {
display: none;
}
.footer .web-info span {
display: none;
}
}
.go-top {
display: none;
position: fixed;
bottom: 50px;
right: 20px;
width: 50px;
height: 50px;
z-index: 9999;
cursor: pointer;
background: rgba(0,0,0,0.6) url(../images/go-top.png) no-repeat center;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 768px) {
.go-top {
width: 30px;
height: 30px;
right: 15px;
bottom: 30px;
-webkit-background-size: auto 10px;
background-size: auto 10px;
}
}
.go-top:hover {
background-color: #38b549;
}
/*图标*/
.search-icon {
background: url(../images/allbgs.png) no-repeat 0px 0px;
width: 14px;
padding-top: 16px;
}
.wz-icon {
background: url(../images/allbgs.png) no-repeat -14px 0px;
width: 16px;
padding-top: 17px;
}
.addr-icon {
background: url(../images/allbgs.png) no-repeat -30px 0px;
width: 20px;
padding-top: 17px;
}
.phone-icon-s {
background: url(../images/allbgs.png) no-repeat -50px 0px;
width: 17px;
padding-top: 18px;
}
.next-icon {
background: url(../images/allbgs.png) no-repeat -67px 0px;
width: 51px;
padding-top: 37px;
}
.prev-icon {
background: url(../images/allbgs.png) no-repeat -219px 0px;
width: 50px;
padding-top: 37px;
}
.phone-icon {
background: url(../images/allbgs.png) no-repeat -269px 0px;
width: 40px;
padding-top: 40px;
}
.project-arrow {
background: url(../images/allbgs.png) no-repeat -309px 0px;
width: 40px;
padding-top: 41px;
}
/*---------------------------------------公司简介-------------------------------------*/
.main-header {
display: block;
height: 51px;
width: 100%;
border-bottom: 1px solid #d6d6d6;
line-height: 50px;
}
@media screen and (max-width: 768px) {
.main-header {
height: auto;
border-bottom: none;
}
}
.main-header .position {
display: block;
float: left;
color: #777;
padding-left: 30px;
background: url(../images/home-icon.png) no-repeat left center;
}
@media screen and (max-width: 768px) {
.main-header .position {
width: 100%;
border-bottom: 1px solid #d6d6d6;
}
}
.main-header .position a {
color: #777;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.main-header .position span {
padding: 0 3px;
}
.main-header .position a:hover {
color: #38b549;
}
.main-header .subnav {
display: block;
float: right;
}
@media screen and (max-width: 768px) {
.main-header .subnav {
display: none;
width: 100%;
text-align: center;
margin-top: 2%;
}
}
@media screen and (max-width: 768px) {
.main-header .subnav.profile-nav {
display: block;
}
}
.main-header .subnav li {
display: inline-block;
margin-left: 60px;
}
@media screen and (max-width: 768px) {
.main-header .subnav li {
margin: 0 5%;
}
}
.main-header .subnav li a {
display: block;
color: #3c3c3c;
height: 50px;
line-height: 49px;
}
@media screen and (max-width: 768px) {
.main-header .subnav li a {
height: 40px;
line-height: 40px;
}
}
.main-header .subnav li:hover a {
color: #38b549;
}
.main-header .subnav li.active a {
color: #38b549;
border-bottom: 2px solid #38b549;
}
.profile {
font-size: 14px;
overflow: hidden;
clear: both;
line-height: 1.7;
color: #777;
}
.profile p {
margin-bottom: 1.2em;
}
.profile img {
max-width: 100%;
}
/*-------------------------------------------代理品牌-------------------------------------------*/
.brand-center-header {
display: block;
margin: 4.5% auto 3.6%;
text-align: center;
}
@media screen and (max-width: 768px) {
.brand-center-header {
margin: 8% 0;
}
}
.brand-center-header h1 {
display: block;
font-size: 30px;
color: #38b549;
}
.brand-center-header p {
display: block;
line-height: 35px;
color: #6b6b6b;
margin-top: 20px;
}
@media screen and (max-width: 768px) {
.brand-center-header p {
line-height: 30px;
margin-top: 2%;
}
}
.brand-center-body {
display: block;
text-align: center;
font-size: 0;
overflow: hidden;
}
.brand-center-body ul {
display: block;
margin: -2% -1%;
}
.brand-center-body li {
display: inline-block;
*display: inline;
*zoom:1;
width: 33.333%;
padding: 2% 1%;
}
@media screen and (max-width: 768px) {
.brand-center-body li {
width: 50%;
}
}
@media screen and (max-width: 640px) {
.brand-center-body li {
width: 100%;
}
}
.brand-center-body li .pic {
display: block;
overflow: hidden;
}
.brand-center-body li img {
display: block;
width: 100%;
height: auto;
transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
-moz-transition: 0.5s;
-webkit-transition: 0.5s;
}
.brand-center-body li .content:hover img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.brand-center-body li .text {
display: block;
padding: 15px 20px 20px 20px;
background-color: #f5f5f5;
margin-top: 13px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text {
background-color: #969696;
}
.brand-center-body li .text h4 {
display: block;
line-height: 1;
font-size: 16px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.brand-center-body li .text h4 a {
color: #5f5f5f;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text h4 a {
color: #fff;
}
.brand-center-body li .text .more {
display: inline-block;
padding: 1px 16px;
border: 1px solid #c3c3c3;
font-size: 12px;
color: #5f5f5f;
margin-top: 20px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
.brand-center-body li .content:hover .text .more {
color: #fff;
border: 1px solid #fff;
}
.pagenation {
display: block;
text-align: center;
margin-top: 5.2%;
font-size: 0;
}
.pagenation li {
display: inline-block;
*display: inline;
*zoom:1;
color: #777;
margin: 0 3px;
font-size: 14px;
}
@media screen and (max-width: 640px) {
.pagenation li.hide {
display: none;
margin: 0;
}
}
.pagenation li a {
display: block;
padding: 4px 12px;
border: 1px solid #545454;
color: #545454;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.pagenation li a {
padding: 4px 9px;
}
}
.pagenation li a:hover {
border: 1px solid #59be65;
color: #59be65;
}
.pagenation li.active a {
color: #fff;
background-color: #59be65;
border: 1px solid #59be65;
}
.pagenation li span {
display: block;
padding: 4px 3px;
border: 1px solid #fff;
color: #545454;
}
.pagenation li input {
display: block;
border: 1px solid #545454;
outline: none;
}
.pagenation li .input {
width: 37px;
padding: 4px 0;
text-align: center;
color: #545454;
}
.pagenation li .input:focus {
border: 1px solid #59be65;
}
.pagenation li .submit {
padding: 4px 16px;
background-color: #fff;
cursor: pointer;
}
.pagenation li .submit:hover {
color: #fff;
background-color: #59be65;
border: 1px solid #59be65;
}
/*-------------------------------------------代理品牌详情-------------------------------------------*/
.brand-detail {
display: block;
width: 100%;
max-width: 1440px;
padding-top: 2%;
margin: 0 auto;
}
.brand-detail .item {
display: block;
overflow: hidden;
clear: both;
}
.brand-detail .pic {
display: block;
width: 50%;
background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
.brand-detail .pic {
width: 100%;
float: none;
}
}
.brand-detail .pic img {
display: block;
width: 100%;
height: auto;
}
.brand-detail .text {
display: block;
width: 50%;
padding: 0% 3%;
margin-top: 8%;
position: relative;
line-height: 35px;
color: #6b6b6b;
}
@media screen and (max-width: 1230px) {
.brand-detail .text {
margin-top: 4%;
line-height: 30px;
}
}
@media screen and (max-width: 768px) {
.brand-detail .text {
width: 100%;
float: none;
padding: 3%;
margin: 0;
}
}
@media screen and (max-width: 640px) {
.brand-detail .text {
padding: 3% 15px;
}
}
/*--------------------------------------- 新闻中心-------------------------------------*/
.news-center .item {
display: block;
overflow: hidden;
clear: both;
padding: 2.4% 0;
border-bottom: 1px dashed #cdcdcd;
}
.news-center .item .date {
display: block;
float: left;
width: 15%;
padding: 50px 2.5% 50px 2.5%;
text-align: center;
font-size: 0;
}
@media screen and (max-width: 768px) {
.news-center .item .date {
display: none;
}
}
.news-center .item .date .day {
display: block;
font-size: 31px;
color: #454545;
font-weight: bold;
line-height: 1;
}
.news-center .item .date .line {
display: inline-block;
*display: inline;
width: 90px;
height: 1px;
background-color: #d9d9d9;
margin: 16px 0;
}
.news-center .item .date .month {
display: block;
font-size: 12px;
color: #838383;
}
.news-center .item .pic {
display: block;
float: left;
margin-right: 3.4%;
}
.news-center .item .pic img {
display: block;
width: 299px;
height: 182px;
}
@media screen and (max-width: 640px) {
.news-center .item .pic img {
width: 131px;
height: 80px;
}
}
.news-center .item .content {
display: block;
overflow: hidden;
}
.news-center .item .content h4 {
display: block;
display: -webkit-box;
-webkit-line-clamp: 1;
overflow: hidden;
-webkit-line-break: auto;
-webkit-box-orient: vertical;
}
@media screen and (max-width: 640px) {
.news-center .item .content h4 {
-webkit-line-clamp: 2;
}
}
.news-center .item .content h4 a {
font-size: 18px;
color: #545454;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.news-center .item .content h4 a {
font-size: 16px;
}
}
.news-center .item .content h4 a:hover {
color: #38b549;
}
.news-center .item .content span {
display: block;
margin-top: 8px;
color: #6e6e6e;
}
.news-center .item .content p {
display: block;
line-height: 22px;
color: #6e6e6e;
font-size: 13px;
margin-top: 8px;
height: 66px;
display: -webkit-box;
-webkit-line-clamp: 3;
overflow: hidden;
-webkit-line-break: auto;
-webkit-box-orient: vertical;
}
@media screen and (max-width: 640px) {
.news-center .item .content p {
display: none;
}
}
.news-center .item .content .more {
display: block;
width: 146px;
height: 40px;
text-align: center;
line-height: 38px;
color: #545454;
border: 1px solid #9b9b9b;
margin-top: 12px;
transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
}
@media screen and (max-width: 640px) {
.news-center .item .content .more {
display: none;
}
}
.news-center .item .content .more:hover {
color: #fff;
background-color: #7a7a7a;
}
/*---------------------------------------------------新闻详情---------------------------------------------------------*/
.artical-header {
display: block;
margin: 4.5% auto 3%;
text-align: center;
}
@media screen and (max-width: 768px) {
.artical-header {
margin: 6% auto 5%;
}
}
.artical-header h1 {
display: block;
font-size: 18px;
color: #545454;
}
.artical-header p {
display: block;
line-height: 33px;
margin-top: 1.6%;
color: #777;
font-size: 12px;
background-color: #e9e9e9;
}
.artical-header p span {
display: inline-block;
margin: 0 2%;
}
.artical-body {
display: block;
font-size: 14px;
color: #777;
line-height: 1.7;
}
.artical-body img {
display: block;
max-width: 100%;
}
.artical-body p {
display: block;
margin-bottom: 1.2em;
}
.artical-footer {
display: block;
overflow: hidden;
border-top: 1px solid #717171;
margin-top: 2%;
padding-top: 2%;
}
@media screen and (max-width: 768px) {
.artical-footer {
margin-top: 4%;
padding-top: 4%;
}
}
.artical-footer .choose-artical {
display: block;
float: left;
max-width: 60%;
}
@media screen and (max-width: 640px) {
.artical-footer .choose-artical {
width: 100%;
max-width: 100%;
float: none;
}
}
.artical-footer .choose-artical a {
display: block;
color: #717171;
line-height: 28px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.artical-footer .choose-artical a:hover {
color: #38b549;
}
.artical-footer .share {
display: block;
float: right;
max-width: 40%;
margin-top: 20px;
overflow: hidden;
}
@media screen and (max-width: 640px) {
.artical-footer .share {
width: 100%;
max-width: 100%;
float: none;
margin-top: 4%;
}
}
.share .jiathis_style .jiathis_counter.jiathis_bubble_style {
width: 36px !important;
}
/*---------------------------------------------------人才招聘---------------------------------------------------------*/
.recruitment {
display: block;
margin-top: 3%;
}
.recruitment li {
display: block;
position: relative;
margin: 2.4% 0;
}
@media screen and (max-width:768px) {
.recruitment li {
margin: 4% 0;
}
}
.recruitment li>a {
display: block;
height: 40px;
line-height: 40px;
padding: 0 15px;
background-color: #ebebeb;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.recruitment li:hover>a {
background: #e4e4e4;
}
.recruitment li .zw {
display: block;
float: left;
max-width: 70%;
padding-left: 15px;
font-size: 16px;
color: #777;
background: url(../images/arrow.png) no-repeat left -7px;
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.recruitment li:hover a .zw {
background: url(../images/arrow.png) no-repeat left 17px;
}
.recruitment li .time {
display: block;
float: right;
color: #777;
}
.recruitment li .recruitment-detail {
display: none;
margin-top: 2.4%;
padding: 0 20px;
}
@media screen and (max-width:768px) {
.recruitment li .recruitment-detail {
margin-top: 4%;
}
}
.recruitment li .recruitment-detail .request {
display: block;
font-size: 15px;
color: #5e5e5e;
line-height: 1.8
}
.recruitment li .recruitment-detail .request span {
display: inline-block;
margin-right: 5%;
}
.recruitment li .recruitment-detail .describe {
display: block;
margin-top: 10px;
}
.recruitment li .recruitment-detail .describe .tit {
display: block;
color: #5e5e5e;
}
.recruitment li .recruitment-detail .txt {
display: block;
font-size: 13px;
line-height: 26px;
color: #777;
margin-top: 8px;
}
.recruitment li .recruitment-detail .send {
display: block;
color: #38b549;
margin-top: 10px;
}
.recruitment li .recruitment-detail .send:hover {
text-decoration: underline;
}
/*---------------------------------------------------联系我们---------------------------------------------------------*/
.iw_poi_title {
color: #CC5522;
font-size: 14px;
font-weight: bold;
overflow: hidden;
padding-right: 13px;
white-space: nowrap
}
.iw_poi_content {
font: 12px arial, sans-serif;
overflow: visible;
padding-top: 4px;
white-space: -moz-pre-wrap;
word-wrap: break-word
}
.contact-us .contact-way {
display: block;
}
.contact-us .contact-way .tit {
display: block;
margin-top: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #e1e1e1;
}
.contact-us .contact-way .tit h1, .contact-way .tit h4 {
display: block;
font-weight: bold;
padding: 0 12px;
border-left: 3px solid #38b549;
font-size: 18px;
color: #676767;
}
.contact-us .contact-way ul {
display: block;
padding: 6px 0;
border-bottom: 1px solid #e1e1e1;
}
.contact-us .contact-way ul li {
display: inline-block;
*display: inline;
padding: 10px 0;
}
.contact-us .contact-way .box1 ul li {
margin-right: 10%;
}
.contact-us .contact-way .box2 ul li {
margin-right: 3%;
}
.contact-us .contact-way ul li:last-child {
margin-right: 0;
}
.contact-us .contact-way ul li span {
display: block;
padding-left: 32px;
line-height: 22px;
font-size: 20px;
color: #656565;
}
@media screen and (max-width:640px) {
.contact-us .contact-way ul li span {
font-size: 18px;
}
}
@media screen and (max-width: 375px) {
.contact-us .contact-way ul li span {
font-size: 16px;
}
}
.contact-us .contact-way ul li .addr {
background: url(../images/addr.png) no-repeat left center;
}
.contact-us .contact-way ul li .phone {
background: url(../images/phone.png) no-repeat left center;
}
.contact-us .contact-way ul li .wz {
background: url(../images/wz.png) no-repeat left center;
}
.contact-us .contact-way ul li span a {
display: block;
float: right;
height: 22px;
width: 57px;
border-radius: 10px;
color: #656565;
background-color: #e6e6e6;
font-size: 13px;
text-align: center;
line-height: 22px;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
@media screen and (max-width: 640px) {
.contact-us .contact-way ul li span a {
display: none;
}
}
.contact-us .contact-way ul li span a:hover {
background-color: #656565;
color: #fff;
}
.contact-us .contact-way ul li p {
display: block;
margin-top: 10px;
font-size: 16px;
color: #8f8f8f;
}
/*---------------------------------------------------资料下载---------------------------------------------------------*/
.data-download {
display: none;
text-align: center;
font-size: 0;
overflow: hidden;
}
.data-download.on {
display: block;
}
.data-download ul {
display: block;
margin: -1.5% -1%;
}
.data-download li {
display: inline-block;
width: 25%;
padding: 1.5% 1%;
}
@media screen and (max-width: 768px) {
.data-download li {
width: 50%;
}
}
.data-download li img {
display: block;
width: 100%;
height: auto;
padding: 2%;
border: 1px solid #b1b1b1;
}
.data-download li p {
display: block;
color: #777;
font-size: 14px;
margin-top: 10px;
}
.data-download li a {
display: inline-block;
margin-top: 10px;
padding: 1px 10px;
color: #777;
font-size: 12px;
border: 1px solid #b1b1b1;
border-radius: 15px;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.data-download li a:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
/*---------------------------------------------------品牌服务---------------------------------------------------------*/
.exhibition-hall {
display: block;
font-size: 0;
padding-top: 1%;
}
.exhibition-hall ul {
overflow: hidden;
display: block;
margin: -1.6% -1%;
}
@media screen and (max-width: 768px) {
.exhibition-hall ul {
margin: -3% -1%;
}
}
.exhibition-hall ul li {
height: 530px;
overflow: hidden;
float: left;
padding: 1.6% 1%;
width: 33.3%
}
.exhibition-hall ul li img {
height: 300px;
width: 100%;
}
.exhibition-hall ul li .zttxt {
margin-top: 10px;
}
@media screen and (max-width: 1230px) {
.exhibition-hall ul li {
width: 50%;
}
}
@media screen and (max-width: 768px) {
.exhibition-hall ul li {
width: 100%;
text-align: center;
padding: 3%
}
}
@media screen and (max-width: 1230px) {
.exhibition-hall ul li:nth-child(3n) {
width: 50%;
}
}
@media screen and (max-width: 768px) {
.exhibition-hall ul li:nth-child(3n) {
width: 100%;
}
}
.exhibition-hall ul li h4 {
font-size: 20px;
color: #8f8f8f;
font-weight: bold;
margin-bottom: 10px;
}
.exhibition-hall ul li p {
display: block;
font-size: 16px;
line-height: 32px;
color: #8f8f8f;
}
.exhibition-hall .more {
display: block;
width: 150px;
height: 46px;
text-align: center;
line-height: 44px;
border: 1px solid #d3d3d3;
margin: 5% auto 0;
font-size: 20px;
color: #8b8b8b;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
@media screen and (max-width: 768px) {
.exhibition-hall .more {
font-size: 16px;
height: 42px;
line-height: 40px;
}
}
.exhibition-hall .more:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
.bussiness-join {
display: block;
margin-top: 4%;
}
@media screen and (max-width: 768px) {
.bussiness-join {
margin-top: 8%;
}
}
.bussiness-join-header {
text-align: center;
padding: 176px 0 190px 0;
background: url(../images/bussiness-join.jpg) no-repeat center fixed;
-webkit-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 768px) {
.bussiness-join-header {
padding: 136px 0 150px 0;
background: url(../images/bussiness-join.jpg) no-repeat center scroll;
}
}
@media screen and (max-width: 640px) {
.bussiness-join-header {
padding: 100px 0 100px 0;
}
}
@media screen and (max-width: 375px) {
.bussiness-join-header {
padding: 60px 0;
}
}
.bussiness-join-header h3 {
display: block;
font-size: 50px;
color: #fff;
line-height: 1;
}
@media screen and (max-width: 768px) {
.bussiness-join-header h3 {
font-size: 38px;
}
}
@media screen and (max-width: 640px) {
.bussiness-join-header h3 {
font-size: 28px;
}
}
@media screen and (max-width: 375px) {
.bussiness-join-header h3 {
font-size: 24px;
}
}
.bussiness-join-header p {
display: block;
color: #c9c8c8;
font-size: 24px;
text-transform: uppercase;
margin-top: 10px;
}
@media screen and (max-width: 768px) {
.bussiness-join-header p {
font-size: 20px;
}
}
.bussiness-join-body {
display: block;
}
.bussiness-join-body h4 {
display: block;
font-size: 28px;
color: #373737;
text-align: center;
}
@media screen and (max-width: 768px) {
.bussiness-join-body h4 {
font-size: 22px;
}
}
.bussiness-join-body .join-request {
display: block;
margin-top: 5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .join-request {
margin-top: 8%;
}
}
.bussiness-join-body .join-request .content {
display: block;
margin-top: 4.5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .join-request .content {
margin-top: 6%;
}
}
.bussiness-join-body .join-request .content h5 {
font-size: 18px;
color: #8b8b8b;
font-weight: bold;
}
.bussiness-join-body .join-request .txt {
display: block;
font-size: 16px;
line-height: 35px;
color: #8b8b8b;
margin-top: 1%;
}
.bussiness-join-body .fill-info {
display: block;
margin-top: 5%;
}
@media screen and (max-width: 1230px) {
.bussiness-join-body .fill-info {
display: none;
}
}
.bussiness-join-body .fill-info .info {
display: block;
margin-top: 4.5%;
}
@media screen and (max-width: 768px) {
.bussiness-join-body .fill-info .info {
margin-top: 6%;
}
}
.bussiness-join-body .fill-info .info .city {
display: block;
height: 30px;
line-height: 30px;
}
.bussiness-join-body .fill-info .info .city label {
position: relative;
display: block;
float: left;
margin-left: -100%;
left: 0;
font-size: 18px;
color: #8b8b8b;
font-weight: bold;
}
.bussiness-join-body .fill-info .info .city .input-box {
display: block;
float: left;
width: 100%;
padding-left: 64px;
}
.bussiness-join-body .fill-info .info .city .input-box input {
display: block;
width: 100%;
height: 30px;
padding: 0px 10px;
line-height: 30px;
border: none;
outline: none;
color: #666;
font-size: 16px;
}
.table {
display: table;
width: 100%;
min-width: 1200px;
border: 1px solid #ccc;
border-width: 1px 1px 0 0;
margin-top: 14px;
}
.table td {
border: 1px solid #ccc;
border-width: 0px 0px 1px 1px;
padding: 10px 20px;
vertical-align: middle;
color: #8b8b8b;
font-size: 16px;
}
.table td input[type="text"] {
display: block;
width: 100%;
height: 30px;
line-height: 30px;
color: #666;
border: none;
outline: none;
}
.table td textarea {
display: block;
width: 100%;
height: 100px;
border: none;
outline: none;
line-height: 30px;
color: #666;
}
.table td input[type="radio"] {
margin-right: 8px;
margin-left: 60px;
}
.table td.tac {
text-align: center;
}
.table td label {
margin-right: 5%;
}
.bussiness-join-body .fill-info .info .action {
display: block;
margin-top: 5.2%;
text-align: center;
}
.bussiness-join-body .fill-info .info .action input {
display: inline-block;
width: 200px;
height: 46px;
line-height: 44px;
border: 1px solid #d3d3d3;
font-size: 20px;
color: #8b8b8b;
background-color: #fff;
margin: 0 4%;
outline: none;
cursor: pointer;
transition: 0.3s linear;
-webkit-transition: 0.3s linear;
-o-transition: 0.3s linear;
-ms-transition: 0.3s linear;
-moz-transition: 0.3s linear;
}
.bussiness-join-body .fill-info .info .action input:hover {
color: #fff;
background-color: #696969;
border: 1px solid #696969;
}
.fenye {
overflow: hidden;
text-align: center;
line-height: 24px;
padding: 30px 0 10px 0;
}
.fenye li{
float: left;
}
.fenye .a1 {
font-size: 14px;
padding: 5px 10px;
color: #666666;
border: 1px solid #ccc;
border-radius: 5px;
margin: 0 3px;
}
.fenye a {
font-size: 14px;
padding: 5px 10px;
color: #666666;
border: 1px solid #cdcdcd;
background-color: #ffffff;
border-radius: 5px;
margin: 0 3px;
}
.fenye span {
font-size: 14px;
padding: 5px 10px;
color: #ffffff;
border: 1px solid #69ac0c;
background-color: #38b549;
border-radius: 5px;
margin: 0 3px;
}
.fenye a:hover {
color: #fff;
background: #38b549;
border: 1px solid #69ac0c;
}
.ztfl {
overflow: hidden;
width: 1230px;
margin: 0 auto;
}
.ztfl li {
float: left;
width: 23%;
margin: 0 1%;
}
.ztfl li p {
border: 1px solid #dcdcdc;
}
.ztfl li p img {
width: 100%;
}
.ztfl li span {
height: 40px;
line-height: 40px;
font-size: 18px;
text-align: center;
display: block;
}
.ztfl li span a {
color: #666666;
}
.ztfl li:hover p {
border: 1px solid #38b549;
}
.ztfl li:hover span a {
text-decoration: underline;
color: #38b549;
}
@media screen and (max-width: 768px) {
.ztfl {
width: 100%;
margin: 0 auto;
}
.ztfl li {
width: 90%;
margin: 0 5%;
}
}
@media screen and (max-width: 1230px) {
.ztfl {
width: 100%;
margin: 0 auto;
}
}
.teamlist {
overflow: hidden;
width: 1200px;
margin: 15px auto 0 auto;
padding-top: 35px;
border-top: 1px dashed #dcdcdc;
}
.teamlist li {
width: 220px;
float: left;
margin: 0 10px;
}
.teamlist li p {
height: 250px;
width: 220px;
border: 1px solid #dcdcdc;
}
.teamlist li p img {
height: 248px;
width: 218px;
}
.teamlist li span {
display: block;
width: 220px;
text-align: center;
height: 42px;
line-height: 42px;
font-size: 16px;
color: #666666;
}
@media screen and (max-width: 768px) {
.teamlist {
overflow: hidden;
width: 100%;
margin: 0 auto;
}
.teamlist li {
width: 46%;
float: left;
margin: 2%;
}
.teamlist li p {
width: 100%;
border: 1px solid #dcdcdc;
height: auto;
}
.teamlist li p img {
width: 100%;
height: auto;
}
.teamlist li span {
display: block;
width: 100%;
text-align: center;
height: 42px;
line-height: 42px;
font-size: 16px;
color: #666666;
}
}
.bussiness-join-body .fill-info .info .action .empty {
display: none;
}
.pptxt {
width: 100%;
overflow: hidden;
line-height: 1.8;
font-size: 14px;
color: #666666;
margin-top: 50px;
}
.pptxt p {
margin-bottom: 1em;
} | 0.220678 | 0.07538 |
.df {
display: flex;
}
.ac {
align-items: center;
}
.jc {
justify-content: center;
}
.jfe {
justify-content: flex-end;
}
.jsb {
justify-content: space-between;
}
.ps-rl {
position: relative;
}
.c-cross {
cursor: crosshair;
}
.canvas-wrapper {
border-radius: 6px;
overflow: hidden;
height: 294px;
}
.c-resize {
cursor: ew-resize;
}
.opacity-overlay {
position:absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 10px
}
.opacity-bg {
display: flex;
flex-wrap: wrap;
border-radius: 10px;
overflow: hidden
}
.handle {
position: absolute;
border: 2px solid white;
border-radius: 50%;
box-shadow: 0px 0px 3px rgba(0,0,0,.5);
width: 18px;
height: 18px;
z-index: 1000
}
.gradient-handle-wrap {
position: absolute;
z-index: 10000;
padding-left: 2px;
padding-right: 2px;
top: 4px
}
.gradient-handle {
border: 2px solid white;
border-radius: 50%;
box-shadow: 0px 0px 3px rgba(0,0,0,.5);
width: 18px;
height: 18px;
}
.npe {
pointer-events: none;
}
.degree-input {
height: 24px;
border-radius: 4px;
border: none;
outline: none;
text-align: center;
width: 34px;
font-weight: 500;
color: rgb(50, 49, 54);
font-size: 13px;
background: transparent;
}
.input-wrap {
height: 32px;
border-radius: 6px;
border: 1px solid #bebebe;
width: 100%;
padding: 2px;
outline: none;
color: black;
font-weight: 400;
text-align: center;
}
.input-label {
text-align: center;
line-height: 1.2;
font-weight: 700;
color: rgb(86,86,86);
font-size: 11px;
}
.control-btn {
padding-left: 8px;
padding-right: 8px;
height: 100%;
line-height: 1;
border-radius: 4px;
font-weight: 700;
color: rgb(86,86,86);
font-size: 12px;
height: 24px;
transition: all 160ms ease;
display: flex;
align-items: center;
justify-content: center;
}
.bar-wrap {
width: 330px;
margin-left: -18px;
padding: 3px;
margin-top: 2px
}
.bar-wrap-inner {
width: 324px;
padding-left: 15px;
padding-right: 15px;
}
.control-btns-wrap {
height: 28px;
background: #e9e9f5;
border-radius: 6px;
padding: 2px;
}
.input-dropdown {
position: absolute;
right: -2px;
top: 34px;
padding: 5px;
background: #e9e9f5;
z-index: 100000000;
border-radius: 6px;
box-shadow: 1px 1px 14px 1px rgba(0,0,0,.25)
}
.input-dropdown::before {
position: absolute;
content: '';
right: 12.5px;
top: -3px;
width: 9px;
height: 9px;
background: #e9e9f5;
transform: rotate(45deg);
z-index: 0;
box-shadow: -1px -2px 8px rgba(0,0,0,.15);
}
input {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
} | lib/styles.css | .df {
display: flex;
}
.ac {
align-items: center;
}
.jc {
justify-content: center;
}
.jfe {
justify-content: flex-end;
}
.jsb {
justify-content: space-between;
}
.ps-rl {
position: relative;
}
.c-cross {
cursor: crosshair;
}
.canvas-wrapper {
border-radius: 6px;
overflow: hidden;
height: 294px;
}
.c-resize {
cursor: ew-resize;
}
.opacity-overlay {
position:absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 10px
}
.opacity-bg {
display: flex;
flex-wrap: wrap;
border-radius: 10px;
overflow: hidden
}
.handle {
position: absolute;
border: 2px solid white;
border-radius: 50%;
box-shadow: 0px 0px 3px rgba(0,0,0,.5);
width: 18px;
height: 18px;
z-index: 1000
}
.gradient-handle-wrap {
position: absolute;
z-index: 10000;
padding-left: 2px;
padding-right: 2px;
top: 4px
}
.gradient-handle {
border: 2px solid white;
border-radius: 50%;
box-shadow: 0px 0px 3px rgba(0,0,0,.5);
width: 18px;
height: 18px;
}
.npe {
pointer-events: none;
}
.degree-input {
height: 24px;
border-radius: 4px;
border: none;
outline: none;
text-align: center;
width: 34px;
font-weight: 500;
color: rgb(50, 49, 54);
font-size: 13px;
background: transparent;
}
.input-wrap {
height: 32px;
border-radius: 6px;
border: 1px solid #bebebe;
width: 100%;
padding: 2px;
outline: none;
color: black;
font-weight: 400;
text-align: center;
}
.input-label {
text-align: center;
line-height: 1.2;
font-weight: 700;
color: rgb(86,86,86);
font-size: 11px;
}
.control-btn {
padding-left: 8px;
padding-right: 8px;
height: 100%;
line-height: 1;
border-radius: 4px;
font-weight: 700;
color: rgb(86,86,86);
font-size: 12px;
height: 24px;
transition: all 160ms ease;
display: flex;
align-items: center;
justify-content: center;
}
.bar-wrap {
width: 330px;
margin-left: -18px;
padding: 3px;
margin-top: 2px
}
.bar-wrap-inner {
width: 324px;
padding-left: 15px;
padding-right: 15px;
}
.control-btns-wrap {
height: 28px;
background: #e9e9f5;
border-radius: 6px;
padding: 2px;
}
.input-dropdown {
position: absolute;
right: -2px;
top: 34px;
padding: 5px;
background: #e9e9f5;
z-index: 100000000;
border-radius: 6px;
box-shadow: 1px 1px 14px 1px rgba(0,0,0,.25)
}
.input-dropdown::before {
position: absolute;
content: '';
right: 12.5px;
top: -3px;
width: 9px;
height: 9px;
background: #e9e9f5;
transform: rotate(45deg);
z-index: 0;
box-shadow: -1px -2px 8px rgba(0,0,0,.15);
}
input {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
} | 0.536556 | 0.130645 |
@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;600;700&display=swap');
/* Colors
@primary: #FF5B60; */
.BlackTooltip {
background: "hsla(0, 0%, 0%, 0.75)";
color: white;
border: none;
border-radius: 4px;
padding: "0.5em 1em";
position: absolute;
left: 25%;
}
body{
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 1.3;
margin: 0;
font-weight: 500;
-webkit-font-smoothing: antialiased;
}
p {
font-weight: 500;
}
/*----------------- main link defenition ---------------------*/
.HeroGroup button{
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.HeroGroup button:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
color: white;
cursor: pointer;
transform: translateY(-3px);
}
h2 {
color: #00211E;
text-align: center;
font-weight: 500;
margin-top: 80px;
margin-bottom: 30px;
font-size: 40px;
padding-left: 20px;
font-family: 'Merriweather', serif;
}
div #Projects {
height: 80px;
margin-top: -80px;
visibility: hidden;
}
h3{
font-size: 20px;
color: #67757E;
text-align: center;
font-weight: 400;
font-family: 'Merriweather', serif;
line-height: 1.6;
padding-left: 25px;
padding-right: 20px;
margin: 10px auto 20px auto;
max-width: 900px;
}
a {
color: #CC494E;
}
a:hover {
text-decoration: underline;
}
/*----------------- header ---------------------*/
.Hero {
/*background: url('../images/bckgAms.jpg');*/
background: rgb(33,80,122);
background: radial-gradient(circle, rgba(33,80,122,1) 0%, rgba(14,17,36,1) 100%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
background-color: #17356F;
height: 900px;
position: relative;
}
.HeroGroup {
max-width: 900px;
margin: 0 auto;
padding: 150px 50px;
text-align: center;
}
.HeroGroup #profile{
background: url('../images/profileImg.png');
background-size: cover;
background-position: center;
border-radius: 999px;
height: 150px;
margin: 0 auto 40px auto;
width: 150px;
border: 3px solid #afb4c6;
}
.Hero h1{
animation: HeroAnimation 3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
color: aliceblue;
font-size: 40px;
margin: 0;
margin-top: 20px;
line-height: 1.2;
margin-bottom: -16px;
opacity: 0;
font-weight: 400;
font-family: 'Merriweather', serif;
}
.Hero p{
animation: HeroAnimation 3s 0.2s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
color: #EBF0F8;
font-size: 24px;
line-height: 1.5;
margin-bottom: 40px;
opacity: 0;
font-weight: 500;
}
.Hero svg {
bottom: 0;
left: 0;
position: absolute;
}
@media (max-width: 640px) {
.HeroGroup{
padding: 100px 20px;
text-align: center;
}
.Hero h1{
font-size: 32px;
}
.Hero p {
font-size: 20px;
}
}
@keyframes HeroAnimation {
0%{
opacity: 0;
transform: translateY(20px);
}
100%{
opacity: 1;
transform: translateY(0);
}
}
.Logos{
max-width: 500px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 50px;
margin: 60px auto;
justify-items: center;
}
.Logos a{
transition: 0.3s;
}
.Logos a:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
cursor: pointer;
transform: translateY(-10px);
}
.LogosTools {
max-width: 600px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 60px;
margin: 50px auto 40px auto;
justify-items: center;
}
.LogosTools a{
transition: 0.3s;
}
.LogosTools a:hover{
cursor: pointer;
transform: translateY(-8px);
}
.ToolsHolder{
width: 100%;
margin: 0 auto;
margin-bottom: 140px;
}
.Contacts{
max-width: 600px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 50px;
margin: 0 auto 30px auto;
justify-items: center;
}
.Contacts a{
transition: 0.3s;
}
.Contacts a:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
cursor: pointer;
transform: translateY(-10px);
}
.Hero .Logos .Links {
text-decoration: none;
background: none;
}
@media (max-width: 650px) {
.Logos {
max-width: 200px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 40px;
margin: 40px auto 40px auto;
}
.Hero svg {
bottom: -40px;
}
.LogosTools{
max-width: 400;
margin-top: 120px;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.Contacts{
max-width: 630px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 50px;
margin: 10px auto 30px auto;
justify-items: center;
}
.Logos a{
transition: 0;
}
.Logos a:hover{
cursor: pointer;
transform: translateY(0px);
}
.Contacts a{
transition: 0;
}
.Contacts a:hover{
cursor: pointer;
transform: translateY(0px);
}
}
/* About me */
.About h4{
font-size: 20px;
color: #00211E;
text-align: left;
font-weight: 600;
font-family: 'Merriweather', serif;
line-height: 1.6;
letter-spacing: 1.2px;
padding-right: 20px;
padding-left: 20px;
max-width: 900px;
margin: 60px auto 0 auto;
}
.About p{
font-size: 16px;
color: #67757E;
text-align: left;
font-weight: 600;
line-height: 1.6;
max-width: 900px;
margin: 10px auto 0 auto;
}
.AboutHeader {
height: 600px;
overflow: auto;
width: 100%;
margin-bottom: 40px;
}
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.AboutRightText {
vertical-align:top;
margin: 0 auto;
background: rgb(2,14,80);
background: linear-gradient(90deg, rgba(2,14,80,1) 51%, rgba(33,80,122,1) 100%);
width: 100%;
height: 600px;
}
.AboutRightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.AboutRightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
.About button{
margin: 40px auto;
display: block;
text-decoration: none;
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a {
text-decoration: none;
}
.About button:hover{
margin: 40px auto;
display: block;
text-decoration: none;
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
color: white;
cursor: pointer;
}
@media (max-width: 860px){
.AboutHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: center;
height: 700px;
width: 100%;
}
.AboutRightText {
margin: 0 auto;
background-color: rgb(2, 14, 80);
width: 100%;
height: auto;
padding-top: 700px;
}
.AboutRightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.AboutRightText p {
color: azure;
text-align: left;
margin-left: 40px;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
.About {
margin-bottom: 80px;
}
.About h2{
text-align: left;
margin-left: 40px;;
}
.About h3{
text-align: left;
margin-left: 20px;;
}
.About h4{
margin: 60px auto -20px auto;
padding-left: 40px;
}
.About p{
margin: 20px auto 0 auto;
padding-left: 40px;
}
}
@media (max-width: 520px){
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: center;
height: 450px;
width: 100%;
}
.AboutRightText {
padding-top: 450px;
}
.AboutRightText h1{
margin-right: 20px;
}
}
/* Project page CE*/
.CE #Images{
max-width: 1200px;
height: auto;
max-height: 1100px;
margin: 120px auto;
overflow: hidden;
}
.CE #ImagesFull{
max-width: 100%;
max-height: auto;
margin: 100px auto;
overflow: hidden;
}
.CE img{
width: 100%;
height: auto;
align-self: center;
max-height: auto;
margin: 0 auto;
}
.CE button{
margin: 40px auto;
display: block;
text-decoration: none;
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a {
text-decoration: none;
}
.CE h2{
text-align: left;
padding-top: 120px;
max-width: 1100px;
margin: 0 auto;
}
.CE button:hover{
margin: 40px auto;
display: block;
text-decoration: none;
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
color: white;
cursor: pointer;
}
.CE h3{
text-align: left;
max-width: 1080px;
}
.CE h4{
font-size: 32px;
color: #00211E;
text-align: left;
font-weight: 500;
font-family: 'Merriweather', serif;
line-height: 1.6;
letter-spacing: 1.2px;
padding-right: 20px;
padding-left: 20px;
max-width: 1080px;
margin: 100px auto 0 auto;
}
.CE p{
font-size: 16px;
color: #67757E;
text-align: left;
font-weight: 400;
letter-spacing: 0.6px;
line-height: 1.8;
max-width: 1080px;
padding-left: 20px;
padding-right: 20px;
margin: 10px auto;
}
.HeroProjHeaderCE{
background: rgb(121,126,143);
background: linear-gradient(50deg, rgba(121,126,143,1) 0%, rgba(175,180,198,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.HeroProjHeaderCO{
background: rgb(48,56,86);
background: linear-gradient(90deg, rgba(48,56,86,1) 0%, rgba(69,120,159,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.HeroProjHeaderXL{
background: rgb(0,135,90);
background: linear-gradient(90deg, rgba(0,135,90,1) 0%, rgba(8,83,58,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.ProjectHeroBody{
height: auto;
margin: 0 auto;
max-width: 1080px;
width: 1080px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 150px;
}
.HeroImages {
width: 300px;
height: 460px;
box-shadow: 0 26px 64px rgba(0,0,0,.15);
position: relative;
z-index: 2;
margin-top: 80px;
}
.ProjectHeroBody h1{
color: #fff;
text-align: left;
font-size: 42px;
font-family: 'Merriweather', serif;
}
.ProjectHeroBody p {
color: azure;
padding-top: 10px;
line-height: 1.6;
text-align: left;
max-width: 550px;
}
@media (max-width: 1080px){
.ProjectHeroBody{
margin: 150px 20px 50px 20px;
}
h2{
padding-right: 25px;
}
h3{
padding-left: 25px;
padding-right: 25px;
}
}
@media (max-width: 768px){
.ProjectHeroBody{
margin: 120px 20px 50px 20px;
}
.HeroImages{
display: none;
}
.CE #ImagesFull{
max-width: 100%;
max-height: auto;
margin: 100px auto;
overflow: hidden;
}
.CEtHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.CE #Images{
margin: 30px 40px;
height: auto;
}
.CELeftImage {
background-size: cover;
background-position: center;
height: 500px;
width: 100%;
}
.CERightText {
margin: 0 auto;
width: 100%;
height: auto;
padding-top: 500px;
}
.CE h4{
padding-right: 40px;
}
.CE p {
padding-right: 40px;
margin-top: 10px;
padding-left: 25px;
}
.CERightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.CERightText p {
color: azure;
text-align: left;
margin-left: 40px;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
.CE {
margin-bottom: 80px;
}
.CE h2{
text-align: left;
}
.CE h3{
text-align: left;
}
.CE h4{
margin: 60px auto 10px auto;
padding-left: 20px;
}
}
@media (max-width: 576px){
.ProjectHeroBody{
margin: 80px 20px 20px 20px;
}
.CE #Images{
margin: 30px 40px;
height: auto;
max-height: 200px;
}
.CE #ImagesFull{
max-width: 100%;
height: auto;
margin: 20px auto;
overflow: hidden;
}
}
/* CONDA IMAGE*/
.CONDALeftImage {
/*background: url('../images/CONDAHead.jpg');*/
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.CONDARightText {
vertical-align:top;
margin: 0 auto;
background-color: #333C55;
width: 100%;
height: 600px;
}
.CONDARightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.CONDARightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
@media (max-width: 768px){
.CEtHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.CE #Images{
margin: 30px 40px;
}
.CONDALeftImage {
background-size: cover;
background-position: center;
height: 700px;
width: 100%;
}
.CONDARightText {
margin: 0 auto;
width: 100%;
height: auto;
padding-top: 700px;
}
.CONDARightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.CONDARightText p {
text-align: left;
margin-left: 0;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
}
@media (max-width: 576px){
.CONDALeftImage {
background-size: cover;
background-position: center;
height: 550px;
width: 100%;
margin-bottom: 30px;
}
.CONDARightText h1{
align-content: left;
margin-left: 40px;
margin-top: 30px;
max-width: 500px;
}
.CONDARightText {
padding-top: 450px;
}
.CONDARightText h1{
margin-right: 20px;
}
.CE #Images{
margin: 30px 40px;
height: auto;
}
}
/* XebiaLabs */
.XebiaLabsLeftImage {
/*background: url('../images/XebiaLabs.jpg');*/
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.XebiaLabsRightText {
vertical-align:top;
margin: 0 auto;
background-color: #009E46;
width: 100%;
height: 600px;
}
.XebiaLabsRightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.XebiaLabsRightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
@media (max-width: 768px){
.HeroProjHeaderCE{
height: auto;
}
.HeroProjHeaderXL{
height: auto;
}
.HeroProjHeaderCO{
height: auto;
}
.XebiaLabsLeftImage {
background-size: cover;
background-position: center;
height: 800px;
width: 100%;
margin-bottom: 30px;
}
}
@media (max-width: 576px){
.HeroProjHeaderCE{
height: auto;
}
.HeroProjHeaderXL{
height: auto;
}
.HeroProjHeaderCO{
height: auto;
}
} | src/styles/index.css |
@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;600;700&display=swap');
/* Colors
@primary: #FF5B60; */
.BlackTooltip {
background: "hsla(0, 0%, 0%, 0.75)";
color: white;
border: none;
border-radius: 4px;
padding: "0.5em 1em";
position: absolute;
left: 25%;
}
body{
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 1.3;
margin: 0;
font-weight: 500;
-webkit-font-smoothing: antialiased;
}
p {
font-weight: 500;
}
/*----------------- main link defenition ---------------------*/
.HeroGroup button{
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.HeroGroup button:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
color: white;
cursor: pointer;
transform: translateY(-3px);
}
h2 {
color: #00211E;
text-align: center;
font-weight: 500;
margin-top: 80px;
margin-bottom: 30px;
font-size: 40px;
padding-left: 20px;
font-family: 'Merriweather', serif;
}
div #Projects {
height: 80px;
margin-top: -80px;
visibility: hidden;
}
h3{
font-size: 20px;
color: #67757E;
text-align: center;
font-weight: 400;
font-family: 'Merriweather', serif;
line-height: 1.6;
padding-left: 25px;
padding-right: 20px;
margin: 10px auto 20px auto;
max-width: 900px;
}
a {
color: #CC494E;
}
a:hover {
text-decoration: underline;
}
/*----------------- header ---------------------*/
.Hero {
/*background: url('../images/bckgAms.jpg');*/
background: rgb(33,80,122);
background: radial-gradient(circle, rgba(33,80,122,1) 0%, rgba(14,17,36,1) 100%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
background-color: #17356F;
height: 900px;
position: relative;
}
.HeroGroup {
max-width: 900px;
margin: 0 auto;
padding: 150px 50px;
text-align: center;
}
.HeroGroup #profile{
background: url('../images/profileImg.png');
background-size: cover;
background-position: center;
border-radius: 999px;
height: 150px;
margin: 0 auto 40px auto;
width: 150px;
border: 3px solid #afb4c6;
}
.Hero h1{
animation: HeroAnimation 3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
color: aliceblue;
font-size: 40px;
margin: 0;
margin-top: 20px;
line-height: 1.2;
margin-bottom: -16px;
opacity: 0;
font-weight: 400;
font-family: 'Merriweather', serif;
}
.Hero p{
animation: HeroAnimation 3s 0.2s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
color: #EBF0F8;
font-size: 24px;
line-height: 1.5;
margin-bottom: 40px;
opacity: 0;
font-weight: 500;
}
.Hero svg {
bottom: 0;
left: 0;
position: absolute;
}
@media (max-width: 640px) {
.HeroGroup{
padding: 100px 20px;
text-align: center;
}
.Hero h1{
font-size: 32px;
}
.Hero p {
font-size: 20px;
}
}
@keyframes HeroAnimation {
0%{
opacity: 0;
transform: translateY(20px);
}
100%{
opacity: 1;
transform: translateY(0);
}
}
.Logos{
max-width: 500px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 50px;
margin: 60px auto;
justify-items: center;
}
.Logos a{
transition: 0.3s;
}
.Logos a:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
cursor: pointer;
transform: translateY(-10px);
}
.LogosTools {
max-width: 600px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 60px;
margin: 50px auto 40px auto;
justify-items: center;
}
.LogosTools a{
transition: 0.3s;
}
.LogosTools a:hover{
cursor: pointer;
transform: translateY(-8px);
}
.ToolsHolder{
width: 100%;
margin: 0 auto;
margin-bottom: 140px;
}
.Contacts{
max-width: 600px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 50px;
margin: 0 auto 30px auto;
justify-items: center;
}
.Contacts a{
transition: 0.3s;
}
.Contacts a:hover{
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
cursor: pointer;
transform: translateY(-10px);
}
.Hero .Logos .Links {
text-decoration: none;
background: none;
}
@media (max-width: 650px) {
.Logos {
max-width: 200px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 40px;
margin: 40px auto 40px auto;
}
.Hero svg {
bottom: -40px;
}
.LogosTools{
max-width: 400;
margin-top: 120px;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.Contacts{
max-width: 630px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 50px;
margin: 10px auto 30px auto;
justify-items: center;
}
.Logos a{
transition: 0;
}
.Logos a:hover{
cursor: pointer;
transform: translateY(0px);
}
.Contacts a{
transition: 0;
}
.Contacts a:hover{
cursor: pointer;
transform: translateY(0px);
}
}
/* About me */
.About h4{
font-size: 20px;
color: #00211E;
text-align: left;
font-weight: 600;
font-family: 'Merriweather', serif;
line-height: 1.6;
letter-spacing: 1.2px;
padding-right: 20px;
padding-left: 20px;
max-width: 900px;
margin: 60px auto 0 auto;
}
.About p{
font-size: 16px;
color: #67757E;
text-align: left;
font-weight: 600;
line-height: 1.6;
max-width: 900px;
margin: 10px auto 0 auto;
}
.AboutHeader {
height: 600px;
overflow: auto;
width: 100%;
margin-bottom: 40px;
}
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.AboutRightText {
vertical-align:top;
margin: 0 auto;
background: rgb(2,14,80);
background: linear-gradient(90deg, rgba(2,14,80,1) 51%, rgba(33,80,122,1) 100%);
width: 100%;
height: 600px;
}
.AboutRightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.AboutRightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
.About button{
margin: 40px auto;
display: block;
text-decoration: none;
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a {
text-decoration: none;
}
.About button:hover{
margin: 40px auto;
display: block;
text-decoration: none;
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
color: white;
cursor: pointer;
}
@media (max-width: 860px){
.AboutHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: center;
height: 700px;
width: 100%;
}
.AboutRightText {
margin: 0 auto;
background-color: rgb(2, 14, 80);
width: 100%;
height: auto;
padding-top: 700px;
}
.AboutRightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.AboutRightText p {
color: azure;
text-align: left;
margin-left: 40px;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
.About {
margin-bottom: 80px;
}
.About h2{
text-align: left;
margin-left: 40px;;
}
.About h3{
text-align: left;
margin-left: 20px;;
}
.About h4{
margin: 60px auto -20px auto;
padding-left: 40px;
}
.About p{
margin: 20px auto 0 auto;
padding-left: 40px;
}
}
@media (max-width: 520px){
.AboutLeftImage {
background: url('../images/aboutMe.jpg');
background-size: cover;
background-position: center;
height: 450px;
width: 100%;
}
.AboutRightText {
padding-top: 450px;
}
.AboutRightText h1{
margin-right: 20px;
}
}
/* Project page CE*/
.CE #Images{
max-width: 1200px;
height: auto;
max-height: 1100px;
margin: 120px auto;
overflow: hidden;
}
.CE #ImagesFull{
max-width: 100%;
max-height: auto;
margin: 100px auto;
overflow: hidden;
}
.CE img{
width: 100%;
height: auto;
align-self: center;
max-height: auto;
margin: 0 auto;
}
.CE button{
margin: 40px auto;
display: block;
text-decoration: none;
animation: HeroAnimation 3s 0.3s forwards cubic-bezier(0.2, 0.82, 0.2, 1);
background: #FF5B60;
border: 0px solid rgba(255,255,255, 0.25);
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: 600;
opacity: 0;
padding: 16px 32px;
text-transform: capitalize;
transition: 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a {
text-decoration: none;
}
.CE h2{
text-align: left;
padding-top: 120px;
max-width: 1100px;
margin: 0 auto;
}
.CE button:hover{
margin: 40px auto;
display: block;
text-decoration: none;
animation-timing-function: cubic-bezier(0.2, 0.82, 0.2, 1);
background: #CC494E;
color: white;
cursor: pointer;
}
.CE h3{
text-align: left;
max-width: 1080px;
}
.CE h4{
font-size: 32px;
color: #00211E;
text-align: left;
font-weight: 500;
font-family: 'Merriweather', serif;
line-height: 1.6;
letter-spacing: 1.2px;
padding-right: 20px;
padding-left: 20px;
max-width: 1080px;
margin: 100px auto 0 auto;
}
.CE p{
font-size: 16px;
color: #67757E;
text-align: left;
font-weight: 400;
letter-spacing: 0.6px;
line-height: 1.8;
max-width: 1080px;
padding-left: 20px;
padding-right: 20px;
margin: 10px auto;
}
.HeroProjHeaderCE{
background: rgb(121,126,143);
background: linear-gradient(50deg, rgba(121,126,143,1) 0%, rgba(175,180,198,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.HeroProjHeaderCO{
background: rgb(48,56,86);
background: linear-gradient(90deg, rgba(48,56,86,1) 0%, rgba(69,120,159,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.HeroProjHeaderXL{
background: rgb(0,135,90);
background: linear-gradient(90deg, rgba(0,135,90,1) 0%, rgba(8,83,58,1) 94%);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
height: 500px;
position: relative;
padding-bottom: 60px;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.ProjectHeroBody{
height: auto;
margin: 0 auto;
max-width: 1080px;
width: 1080px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 150px;
}
.HeroImages {
width: 300px;
height: 460px;
box-shadow: 0 26px 64px rgba(0,0,0,.15);
position: relative;
z-index: 2;
margin-top: 80px;
}
.ProjectHeroBody h1{
color: #fff;
text-align: left;
font-size: 42px;
font-family: 'Merriweather', serif;
}
.ProjectHeroBody p {
color: azure;
padding-top: 10px;
line-height: 1.6;
text-align: left;
max-width: 550px;
}
@media (max-width: 1080px){
.ProjectHeroBody{
margin: 150px 20px 50px 20px;
}
h2{
padding-right: 25px;
}
h3{
padding-left: 25px;
padding-right: 25px;
}
}
@media (max-width: 768px){
.ProjectHeroBody{
margin: 120px 20px 50px 20px;
}
.HeroImages{
display: none;
}
.CE #ImagesFull{
max-width: 100%;
max-height: auto;
margin: 100px auto;
overflow: hidden;
}
.CEtHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.CE #Images{
margin: 30px 40px;
height: auto;
}
.CELeftImage {
background-size: cover;
background-position: center;
height: 500px;
width: 100%;
}
.CERightText {
margin: 0 auto;
width: 100%;
height: auto;
padding-top: 500px;
}
.CE h4{
padding-right: 40px;
}
.CE p {
padding-right: 40px;
margin-top: 10px;
padding-left: 25px;
}
.CERightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.CERightText p {
color: azure;
text-align: left;
margin-left: 40px;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
.CE {
margin-bottom: 80px;
}
.CE h2{
text-align: left;
}
.CE h3{
text-align: left;
}
.CE h4{
margin: 60px auto 10px auto;
padding-left: 20px;
}
}
@media (max-width: 576px){
.ProjectHeroBody{
margin: 80px 20px 20px 20px;
}
.CE #Images{
margin: 30px 40px;
height: auto;
max-height: 200px;
}
.CE #ImagesFull{
max-width: 100%;
height: auto;
margin: 20px auto;
overflow: hidden;
}
}
/* CONDA IMAGE*/
.CONDALeftImage {
/*background: url('../images/CONDAHead.jpg');*/
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.CONDARightText {
vertical-align:top;
margin: 0 auto;
background-color: #333C55;
width: 100%;
height: 600px;
}
.CONDARightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.CONDARightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
@media (max-width: 768px){
.CEtHeader {
height: 900px;
overflow: auto;
width: 100%;
}
.CE #Images{
margin: 30px 40px;
}
.CONDALeftImage {
background-size: cover;
background-position: center;
height: 700px;
width: 100%;
}
.CONDARightText {
margin: 0 auto;
width: 100%;
height: auto;
padding-top: 700px;
}
.CONDARightText h1{
margin: 0 auto;
align-content: center;
margin-left: 40px;
padding-top: 30px;
max-width: 600px;
font-family: 'Merriweather', serif;
}
.CONDARightText p {
text-align: left;
margin-left: 0;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 30px;;
max-width: 900px;
line-height: 1.6;
}
}
@media (max-width: 576px){
.CONDALeftImage {
background-size: cover;
background-position: center;
height: 550px;
width: 100%;
margin-bottom: 30px;
}
.CONDARightText h1{
align-content: left;
margin-left: 40px;
margin-top: 30px;
max-width: 500px;
}
.CONDARightText {
padding-top: 450px;
}
.CONDARightText h1{
margin-right: 20px;
}
.CE #Images{
margin: 30px 40px;
height: auto;
}
}
/* XebiaLabs */
.XebiaLabsLeftImage {
/*background: url('../images/XebiaLabs.jpg');*/
background-size: cover;
background-position: left;
float: left;
height: 600px;
width: 500px;
}
.XebiaLabsRightText {
vertical-align:top;
margin: 0 auto;
background-color: #009E46;
width: 100%;
height: 600px;
}
.XebiaLabsRightText h1{
color: azure;
margin: 0 auto;
align-content: left;
margin-left: 550px;
padding-top: 200px;
max-width: 900px;
font-family: 'Merriweather', serif;
}
.XebiaLabsRightText p {
color: azure;
margin: 0 auto;
margin-left: 550px;
padding-right: 40px;
padding-top: 10px;
max-width: 900px;
line-height: 1.6;
}
@media (max-width: 768px){
.HeroProjHeaderCE{
height: auto;
}
.HeroProjHeaderXL{
height: auto;
}
.HeroProjHeaderCO{
height: auto;
}
.XebiaLabsLeftImage {
background-size: cover;
background-position: center;
height: 800px;
width: 100%;
margin-bottom: 30px;
}
}
@media (max-width: 576px){
.HeroProjHeaderCE{
height: auto;
}
.HeroProjHeaderXL{
height: auto;
}
.HeroProjHeaderCO{
height: auto;
}
} | 0.357904 | 0.087876 |
.cue-monitor-disclose-config-window .modal-dialog{
width: 566px;
height: 350px;
background: #ddd;
margin:160px auto;
overflow: hidden;
border-radius: 6px;
}
.cue-monitor-disclose-config-window .modal-dialog .modal-content{
width: 558px;
height: 342px;
margin:4px auto;
background: #f0f2f5;
}
.cue-monitor-disclose-config-container{
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head{
height: 35px;
line-height: 35px;
overflow: hidden;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head p{
margin-left: 10px;
color: #333;
font-weight: bold;
float: left;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head img{
float: right;
margin:8px 8px 0 0;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body{
width: 544px;
height: 216px;
background: #fff;
border: 1px solid #d5d4d4;
margin:0 auto;
overflow-y:auto
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul{
overflow: hidden;
margin: 20px 0 0 20px;
overflow-y:auto;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul li{
float: left;
width: 168px;
height: 48px;
list-style:none;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul li span{
font-size:12px;
color:#666;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer{
overflow:hidden;
margin-top:30px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button{
width:80px;
height:28px;
line-height:28px;
color:#fff;
text-align:center;
border:none;
border-radius:4px;
background:#4496d2;
font-size:12px;
font-family:"MicsoftYahei";
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button:nth-child(1){
margin-left:358px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button:nth-child(2){
margin-left:10px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body .regular-checkbox + label{
padding: 7px;
border: 1px solid #b0b0b0;
border-radius: 0;
background-color: #ebebeb;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body .regular-checkbox:checked + label:after{
background: url("./editingCenter/app/images/check_mark.png") no-repeat;
top: 1px;
left:1px;
} | app/planningCenter/cueSelectedTopic/cueMonitoring/discloseConfig/cueMonitorDiscloseConfig.css | .cue-monitor-disclose-config-window .modal-dialog{
width: 566px;
height: 350px;
background: #ddd;
margin:160px auto;
overflow: hidden;
border-radius: 6px;
}
.cue-monitor-disclose-config-window .modal-dialog .modal-content{
width: 558px;
height: 342px;
margin:4px auto;
background: #f0f2f5;
}
.cue-monitor-disclose-config-container{
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head{
height: 35px;
line-height: 35px;
overflow: hidden;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head p{
margin-left: 10px;
color: #333;
font-weight: bold;
float: left;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-head img{
float: right;
margin:8px 8px 0 0;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body{
width: 544px;
height: 216px;
background: #fff;
border: 1px solid #d5d4d4;
margin:0 auto;
overflow-y:auto
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul{
overflow: hidden;
margin: 20px 0 0 20px;
overflow-y:auto;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul li{
float: left;
width: 168px;
height: 48px;
list-style:none;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body ul li span{
font-size:12px;
color:#666;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer{
overflow:hidden;
margin-top:30px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button{
width:80px;
height:28px;
line-height:28px;
color:#fff;
text-align:center;
border:none;
border-radius:4px;
background:#4496d2;
font-size:12px;
font-family:"MicsoftYahei";
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button:nth-child(1){
margin-left:358px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-footer button:nth-child(2){
margin-left:10px;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body .regular-checkbox + label{
padding: 7px;
border: 1px solid #b0b0b0;
border-radius: 0;
background-color: #ebebeb;
}
.cue-monitor-disclose-config-container .cue-monitor-disclose-config-body .regular-checkbox:checked + label:after{
background: url("./editingCenter/app/images/check_mark.png") no-repeat;
top: 1px;
left:1px;
} | 0.203351 | 0.046184 |
*{margin: 0;}
ul{
list-style-type: none;
margin: 0;
padding: 0;
}
a{text-decoration: none;}
.upload-area{
min-height: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fafbfc;
box-shadow: inset 5px 5px 10px rgba(27,31,35,.05);
border: 1px solid #ababab;
transition: all 0.3s linear;
}
.upload-area.dragover{
background-color: #d6eaea;
}
.upload-area h1{
font-size: 2rem;
user-select: none;
font-weight: bold;
color: #ababab;
}
.upload{
margin-top: 30px;
width: 100%;
text-align: center;
font-size: 3rem;
color: teal;
}
.upload i{
cursor: pointer;
}
.upload + input{
display: none;
}
.table-wrapper{
visibility: hidden;
opacity: 0;
transition: all 1s linear;
}
.table-wrapper.show{
visibility: visible;
opacity: 1;
}
.upload-file{
width: 90%;
}
/* https://www.quackit.com/css/css_color_codes.cfm */
.color-1 {color: #28a745 !important;}
.color-2 {color: #007bff !important;}
.color-3 {color: #17a2b8 !important;}
.color-4 {color: #ffc107 !important;}
.color-5 {color: #6c757d !important;}
.color-6 {color: #f8f9fa !important;}
.color-7 {color: #00037a !important;}
.color-8 {color: #000f73 !important;}
.color-9 {color: #0007a3 !important;}
/* https://www.w3schools.com/cssref/css_colors.asp */
.bg-1 {background-color: #F0FFF0 !important;}/*HoneyDew */
.bg-2 {background-color: #F0F8FF !important;}/*AliceBlue */
.bg-3 {background-color: #FFFFE0 !important;}/*LightYellow */
.bg-4 {background-color: #FFE4E1 !important;}/*MistyRose */
.bg-5 {background-color: #E0FFFF !important;}/*LightCyan */
.bg-6 {background-color: #F0FFFF !important;}/*Azure */
.bg-7 {background-color: #FFFFF0 !important;}/*Ivory */
.bg-8 {background-color: #FFB6C1 !important;}/*LightPink */
.bg-9 {background-color: #FFF0F5 !important;}/*LavenderBlush*/
/* tr:nth-child(even) {background-color: #f2f2f2;} */
.modal-header, h4, .close {
/* background-color: #5cb85c; */
background-color: #007bff !important;
color:white !important;
text-align: center;
font-size: 30px;
}
.modal-footer {
background-color: #f9f9f9;
} | src/main/resources/home/css/dropfiles.css | *{margin: 0;}
ul{
list-style-type: none;
margin: 0;
padding: 0;
}
a{text-decoration: none;}
.upload-area{
min-height: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fafbfc;
box-shadow: inset 5px 5px 10px rgba(27,31,35,.05);
border: 1px solid #ababab;
transition: all 0.3s linear;
}
.upload-area.dragover{
background-color: #d6eaea;
}
.upload-area h1{
font-size: 2rem;
user-select: none;
font-weight: bold;
color: #ababab;
}
.upload{
margin-top: 30px;
width: 100%;
text-align: center;
font-size: 3rem;
color: teal;
}
.upload i{
cursor: pointer;
}
.upload + input{
display: none;
}
.table-wrapper{
visibility: hidden;
opacity: 0;
transition: all 1s linear;
}
.table-wrapper.show{
visibility: visible;
opacity: 1;
}
.upload-file{
width: 90%;
}
/* https://www.quackit.com/css/css_color_codes.cfm */
.color-1 {color: #28a745 !important;}
.color-2 {color: #007bff !important;}
.color-3 {color: #17a2b8 !important;}
.color-4 {color: #ffc107 !important;}
.color-5 {color: #6c757d !important;}
.color-6 {color: #f8f9fa !important;}
.color-7 {color: #00037a !important;}
.color-8 {color: #000f73 !important;}
.color-9 {color: #0007a3 !important;}
/* https://www.w3schools.com/cssref/css_colors.asp */
.bg-1 {background-color: #F0FFF0 !important;}/*HoneyDew */
.bg-2 {background-color: #F0F8FF !important;}/*AliceBlue */
.bg-3 {background-color: #FFFFE0 !important;}/*LightYellow */
.bg-4 {background-color: #FFE4E1 !important;}/*MistyRose */
.bg-5 {background-color: #E0FFFF !important;}/*LightCyan */
.bg-6 {background-color: #F0FFFF !important;}/*Azure */
.bg-7 {background-color: #FFFFF0 !important;}/*Ivory */
.bg-8 {background-color: #FFB6C1 !important;}/*LightPink */
.bg-9 {background-color: #FFF0F5 !important;}/*LavenderBlush*/
/* tr:nth-child(even) {background-color: #f2f2f2;} */
.modal-header, h4, .close {
/* background-color: #5cb85c; */
background-color: #007bff !important;
color:white !important;
text-align: center;
font-size: 30px;
}
.modal-footer {
background-color: #f9f9f9;
} | 0.256832 | 0.052038 |
html, body {
height: 100%;
margin: 0; /* Reset default margin on the body element */
overflow-y:hidden;
}
.box {
display: flex;
flex-flow: column;
height: 100%;
}
.box .rows {
/*border: 1px dotted grey;*/
}
.box .rows.header {
flex: 0 1 auto;
/* The above is shorthand for:
flex-grow: 0,
flex-shrink: 1,
flex-basis: auto
*/
}
.box .rows.content {
flex: 1 1 100%;
overflow-y:hidden;
}
.box .rows.footer {
flex: 0 1 40px;
}
iframe {
display: block; /* iframes are inline by default */
border: none; /* Reset default border */
overflow:hidden;
position: relative;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
/* Style the navigation bar */
.navbar {
flex: 0 1 auto;
width: 100%;
background-color: #222;
overflow: hidden;
box-shadow: rgba(20, 20, 20, 0.5) 0px 2px 3px, inset rgba(0, 0, 0, 0.2) 1px -1px 0px;
}
nav{padding: 0;display:flex;}
a{background-image:none;}
/* Navbar links */
.navbar a, nav a {
float: left;
text-align: center;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
/* Navbar links on mouse-over */
.navbar a:hover , nav a:hover{
background-color: #000;
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels
@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}*/
/* Add an active class to highlight the current page */
.active {
background-color: #04AA6D;
color: white;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
float: right;
overflow: hidden;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 0;
}
/* Style the links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a dark background on topnav links and the dropdown button on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: white;
color: black;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
/*background-color: #555;*/
color: #AAAAAA;
border-bottom-left-radius: 15px 255px;
border-bottom-right-radius: 225px 15px;
border-top-left-radius: 255px 15px;
border-top-right-radius: 15px 225px;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
display: block;
}
#navexit, #navsummary {
float: right;
display: none;
}
#login-btn{
height: 100px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
margin: -70px 0 0 -170px;
display:none;
}
#content{
overflow-y: scroll;
}
#content #anim-right {
width:100vw;
margin: 1px;
padding: 1px;
text-align: center;
vertical-align: middle;
position: absolute;
left: 100%;
-webkit-animation: slide-right 0.1s forwards;
animation: slide-right 0.1s forwards;
font-family: sans-serif;
overflow-x: hidden;
overflow-y: auto;
height: 95%;
}
@-webkit-keyframes slide-right {
100% {
left: 0%;
}
}
@keyframes slide-right {
100% {
left: 0%;
}
}
@-webkit-keyframes slide {
100% {
left: 0%;
}
}
@keyframes slide {
100% {
left: 0%;
}
}
#content #anim {
margin: 10px;
padding: 10px;
text-align: center;
vertical-align: middle;
/* width: 70%; */
position: absolute;
left: -1000px;
-webkit-animation: slide 0.1s forwards;
animation: slide 0.1s forwards;
font-family: monospace;
font-family: '<NAME>', sans-serif;
overflow-x: hidden;
overflow-y: auto;
}
@-webkit-keyframes slide {
100% {
left: 0%;
}
}
@keyframes slide {
100% {
left: 0%;
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
transition: 0.1s;
border-radius: 2px; /* 5px rounded corners */
text-shadow: 1px 1px #FFF;
margin: 10px;
}
/* Add rounded corners to the top left and the top right corner of the image */
.cardimg {
border-radius: 5px 5px 0 0;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card a {
color: #FFF;
text-shadow: 1px 1px #000;
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
/*
.settings-dialog{
content: "";
display: table;
clear: both;
}
.settings{
float: right;
padding: 0px 12px;
border: 1px solid #ccc;
border-left: none;
width: 75vw;
border-radius: 5px;
background-color: #f2f2f2;
box-sizing: border-box;
}
.settings input[type=text], select {
width: 50vw;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
form input[type=submit] {
width: 75vw;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
form input[type=submit]:hover {
background-color: #45a049;
}
form textarea {
width: 50vw;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
*/
/******* FORM STYLES FOR NEW CARD ********/
.tab{
float: left;
width: 200px;
background-color: #f1f1f1;
/*box-sizing: border-box;*/
}
.tab div {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: auto;
border: 1px solid #bbb;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
}
.tab div:hover {
background-color: #ddd;
}
.tab div.active {
background-color: #ccF;
}
form {
padding: 1em;
background: #f9f9f9;
border: 1px solid #c1c1c1;
margin-top: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
padding: 1em;
}
form input {
margin-bottom: 1rem;
background: #fff;
border: 1px solid #9c9c9c;
}
form button {
background: lightgrey;
padding: 0.7em;
border: 0;
}
form button:hover {
background: gold;
}
label {
box-sizing: border-box;
text-align: right;
display: block;
padding: 0.5em 1.5em 0.5em 0;
}
input {
box-sizing: border-box;
width: 100%;
padding: 0.7em;
margin-bottom: 0.5rem;
}
input:focus {
outline: 3px solid gold;
}
@media (max-width: 400px) {
.tab div {
float: left;
}
.tab {
float: left;
}
}
@media (min-width: 400px) {
.tab {
float: left;
border: 1px solid #ccc;
background-color: #f1f1f1;
width: 30%;
height: 300px;
}
/* Style the buttons inside the tab */
.tab button {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: 100%;
border: none;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
font-size: 17px;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current "tab button" class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.settings {
float: right;
padding: 0px 12px;
height: 300px;
}
}
@media (min-width: 400px) {
form {
overflow: hidden;
}
form label {
float: left;
width: 200px;
}
.tabtitle{
width: 100px;
}
input { float: left; width: calc(100% - 200px - 100px); }
textarea { float: left; width: calc(100% - 200px - 100px); }
input[type=color]{ float: left; width: calc(100% - 200px - 100px); }
input[type=submit] {
width: calc(100% - 200px - 100px);
margin: 10px;
}
}
/******* END FORM STYLES FOR NEW CARD ********/
.list table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
overflow-x:auto;
}
.list thead {
position: sticky;
top:24px;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
background-color: #222;
color: #FFF;
}
.list thead, .list td {
text-align: left;
padding: 8px;
}
.list tr:hover{background-color: #f2f2f2}
.course-name {
cursor: pointer;
}
/*.list tr:nth-child(even){background-color: #f2f2f2}*/
#listfilter {
position: sticky;
top:0;
background-image: url('/css/searchicon.png'); /* Add a search icon to input */
background-position: 10px 12px; /* Position the search icon */
background-repeat: no-repeat; /* Do not repeat the icon image */
width: 100%; /* Full-width */
font-size: 16px; /* Increase font-size */
padding: 12px 20px 12px 40px; /* Add some padding */
border: 1px solid #ddd; /* Add a grey border */
margin-bottom: 12px; /* Add some space below the input */
}
.popup {
z-index: 9;
background-color: #f1f1f1;
border: 2px solid #2196f3;
text-align: center;
min-height: 150px;
min-width: 300px;
max-height: 300px;
max-width: 600px;
}
/*Drgable */
.popup {
position: absolute;
resize: both; /*!*enable this to css resize*! */
overflow: auto;
cursor: move;
}
.popup-header {
padding: 10px;
cursor: move;
z-index: 10;
background-color: #2196f3;
color: #fff;
}
/*Resizeable*/
.popup .resizer-right {
width: 5px;
height: 100%;
background: transparent;
position: absolute;
right: 0;
bottom: 0;
cursor: e-resize;
}
.popup .resizer-bottom {
width: 100%;
height: 5px;
background: transparent;
position: absolute;
right: 0;
bottom: 0;
cursor: n-resize;
}
.popup .resizer-both {
width: 5px;
height: 5px;
background: transparent;
z-index: 10;
position: absolute;
right: 0;
bottom: 0;
cursor: nw-resize;
}
.menu i.fa {
font-size: 40px;
}
td.stats {
min-width: 5vw;
width: 5vw;
}
#progress-bar-container {
width: 100%;
background-color: #CCC;
margin-top: 1em;
margin-bottom: 0;
}
#progress-bar {
width: 0%;
/*height: 5px;*/
background-color: #CCC;
} | css/style.css | html, body {
height: 100%;
margin: 0; /* Reset default margin on the body element */
overflow-y:hidden;
}
.box {
display: flex;
flex-flow: column;
height: 100%;
}
.box .rows {
/*border: 1px dotted grey;*/
}
.box .rows.header {
flex: 0 1 auto;
/* The above is shorthand for:
flex-grow: 0,
flex-shrink: 1,
flex-basis: auto
*/
}
.box .rows.content {
flex: 1 1 100%;
overflow-y:hidden;
}
.box .rows.footer {
flex: 0 1 40px;
}
iframe {
display: block; /* iframes are inline by default */
border: none; /* Reset default border */
overflow:hidden;
position: relative;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
/* Style the navigation bar */
.navbar {
flex: 0 1 auto;
width: 100%;
background-color: #222;
overflow: hidden;
box-shadow: rgba(20, 20, 20, 0.5) 0px 2px 3px, inset rgba(0, 0, 0, 0.2) 1px -1px 0px;
}
nav{padding: 0;display:flex;}
a{background-image:none;}
/* Navbar links */
.navbar a, nav a {
float: left;
text-align: center;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
/* Navbar links on mouse-over */
.navbar a:hover , nav a:hover{
background-color: #000;
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels
@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}*/
/* Add an active class to highlight the current page */
.active {
background-color: #04AA6D;
color: white;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
float: right;
overflow: hidden;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 0;
}
/* Style the links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a dark background on topnav links and the dropdown button on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: white;
color: black;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
/*background-color: #555;*/
color: #AAAAAA;
border-bottom-left-radius: 15px 255px;
border-bottom-right-radius: 225px 15px;
border-top-left-radius: 255px 15px;
border-top-right-radius: 15px 225px;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
display: block;
}
#navexit, #navsummary {
float: right;
display: none;
}
#login-btn{
height: 100px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
margin: -70px 0 0 -170px;
display:none;
}
#content{
overflow-y: scroll;
}
#content #anim-right {
width:100vw;
margin: 1px;
padding: 1px;
text-align: center;
vertical-align: middle;
position: absolute;
left: 100%;
-webkit-animation: slide-right 0.1s forwards;
animation: slide-right 0.1s forwards;
font-family: sans-serif;
overflow-x: hidden;
overflow-y: auto;
height: 95%;
}
@-webkit-keyframes slide-right {
100% {
left: 0%;
}
}
@keyframes slide-right {
100% {
left: 0%;
}
}
@-webkit-keyframes slide {
100% {
left: 0%;
}
}
@keyframes slide {
100% {
left: 0%;
}
}
#content #anim {
margin: 10px;
padding: 10px;
text-align: center;
vertical-align: middle;
/* width: 70%; */
position: absolute;
left: -1000px;
-webkit-animation: slide 0.1s forwards;
animation: slide 0.1s forwards;
font-family: monospace;
font-family: '<NAME>', sans-serif;
overflow-x: hidden;
overflow-y: auto;
}
@-webkit-keyframes slide {
100% {
left: 0%;
}
}
@keyframes slide {
100% {
left: 0%;
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
transition: 0.1s;
border-radius: 2px; /* 5px rounded corners */
text-shadow: 1px 1px #FFF;
margin: 10px;
}
/* Add rounded corners to the top left and the top right corner of the image */
.cardimg {
border-radius: 5px 5px 0 0;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card a {
color: #FFF;
text-shadow: 1px 1px #000;
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
/*
.settings-dialog{
content: "";
display: table;
clear: both;
}
.settings{
float: right;
padding: 0px 12px;
border: 1px solid #ccc;
border-left: none;
width: 75vw;
border-radius: 5px;
background-color: #f2f2f2;
box-sizing: border-box;
}
.settings input[type=text], select {
width: 50vw;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
form input[type=submit] {
width: 75vw;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
form input[type=submit]:hover {
background-color: #45a049;
}
form textarea {
width: 50vw;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
*/
/******* FORM STYLES FOR NEW CARD ********/
.tab{
float: left;
width: 200px;
background-color: #f1f1f1;
/*box-sizing: border-box;*/
}
.tab div {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: auto;
border: 1px solid #bbb;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
}
.tab div:hover {
background-color: #ddd;
}
.tab div.active {
background-color: #ccF;
}
form {
padding: 1em;
background: #f9f9f9;
border: 1px solid #c1c1c1;
margin-top: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
padding: 1em;
}
form input {
margin-bottom: 1rem;
background: #fff;
border: 1px solid #9c9c9c;
}
form button {
background: lightgrey;
padding: 0.7em;
border: 0;
}
form button:hover {
background: gold;
}
label {
box-sizing: border-box;
text-align: right;
display: block;
padding: 0.5em 1.5em 0.5em 0;
}
input {
box-sizing: border-box;
width: 100%;
padding: 0.7em;
margin-bottom: 0.5rem;
}
input:focus {
outline: 3px solid gold;
}
@media (max-width: 400px) {
.tab div {
float: left;
}
.tab {
float: left;
}
}
@media (min-width: 400px) {
.tab {
float: left;
border: 1px solid #ccc;
background-color: #f1f1f1;
width: 30%;
height: 300px;
}
/* Style the buttons inside the tab */
.tab button {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: 100%;
border: none;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
font-size: 17px;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current "tab button" class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.settings {
float: right;
padding: 0px 12px;
height: 300px;
}
}
@media (min-width: 400px) {
form {
overflow: hidden;
}
form label {
float: left;
width: 200px;
}
.tabtitle{
width: 100px;
}
input { float: left; width: calc(100% - 200px - 100px); }
textarea { float: left; width: calc(100% - 200px - 100px); }
input[type=color]{ float: left; width: calc(100% - 200px - 100px); }
input[type=submit] {
width: calc(100% - 200px - 100px);
margin: 10px;
}
}
/******* END FORM STYLES FOR NEW CARD ********/
.list table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
overflow-x:auto;
}
.list thead {
position: sticky;
top:24px;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
background-color: #222;
color: #FFF;
}
.list thead, .list td {
text-align: left;
padding: 8px;
}
.list tr:hover{background-color: #f2f2f2}
.course-name {
cursor: pointer;
}
/*.list tr:nth-child(even){background-color: #f2f2f2}*/
#listfilter {
position: sticky;
top:0;
background-image: url('/css/searchicon.png'); /* Add a search icon to input */
background-position: 10px 12px; /* Position the search icon */
background-repeat: no-repeat; /* Do not repeat the icon image */
width: 100%; /* Full-width */
font-size: 16px; /* Increase font-size */
padding: 12px 20px 12px 40px; /* Add some padding */
border: 1px solid #ddd; /* Add a grey border */
margin-bottom: 12px; /* Add some space below the input */
}
.popup {
z-index: 9;
background-color: #f1f1f1;
border: 2px solid #2196f3;
text-align: center;
min-height: 150px;
min-width: 300px;
max-height: 300px;
max-width: 600px;
}
/*Drgable */
.popup {
position: absolute;
resize: both; /*!*enable this to css resize*! */
overflow: auto;
cursor: move;
}
.popup-header {
padding: 10px;
cursor: move;
z-index: 10;
background-color: #2196f3;
color: #fff;
}
/*Resizeable*/
.popup .resizer-right {
width: 5px;
height: 100%;
background: transparent;
position: absolute;
right: 0;
bottom: 0;
cursor: e-resize;
}
.popup .resizer-bottom {
width: 100%;
height: 5px;
background: transparent;
position: absolute;
right: 0;
bottom: 0;
cursor: n-resize;
}
.popup .resizer-both {
width: 5px;
height: 5px;
background: transparent;
z-index: 10;
position: absolute;
right: 0;
bottom: 0;
cursor: nw-resize;
}
.menu i.fa {
font-size: 40px;
}
td.stats {
min-width: 5vw;
width: 5vw;
}
#progress-bar-container {
width: 100%;
background-color: #CCC;
margin-top: 1em;
margin-bottom: 0;
}
#progress-bar {
width: 0%;
/*height: 5px;*/
background-color: #CCC;
} | 0.422981 | 0.085213 |
.clearfix {
*zoom:1
}
.clearfix:before {
display:table;
line-height:0;
content:""
}
.clearfix:after {
display:table;
line-height:0;
content:"";
clear:both
}
.input-block-level {
display:block;
width:100%;
min-height:30px;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.visible-phone, .visible-tablet, .hidden-desktop {
display:none !important
}
.visible-desktop {
display:inherit !important
}
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display:inherit !important
}
.visible-desktop {
display:none !important
}
.visible-tablet {
display:inherit !important
}
.hidden-tablet {
display:none !important
}
}
@media (max-width: 767px) {
.hidden-desktop {
display:inherit !important
}
.visible-desktop {
display:none !important
}
.visible-phone {
display:inherit !important
}
.hidden-phone {
display:none !important
}
}
@media (min-width: 1200px) {
.row {
margin-left:-30px;
*zoom:1
}
.row:before {
display:table;
line-height:0;
content:""
}
.row:after {
display:table;
line-height:0;
content:"";
clear:both
}
[class*="span"] {
float:left;
min-height:1px;
margin-left:30px
}
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
width:1170px
}
.span11 {
width:1070px
}
.span10 {
width:970px
}
.span9 {
width:870px
}
.span8 {
width:770px
}
.span7 {
width:670px
}
.span6 {
width:570px
}
.span5 {
width:470px
}
.span4 {
width:370px
}
.span3 {
width:270px
}
.span2 {
width:170px
}
.span1 {
width:70px
}
.offset12 {
margin-left:1230px
}
.offset11 {
margin-left:1130px
}
.offset10 {
margin-left:1030px
}
.offset9 {
margin-left:930px
}
.offset8 {
margin-left:830px
}
.offset7 {
margin-left:730px
}
.offset6 {
margin-left:630px
}
.offset5 {
margin-left:530px
}
.offset4 {
margin-left:430px
}
.offset3 {
margin-left:330px
}
.offset2 {
margin-left:230px
}
.offset1 {
margin-left:130px
}
.row-fluid {
width:100%;
*zoom:1
}
.row-fluid:before {
display:table;
line-height:0;
content:""
}
.row-fluid:after {
display:table;
line-height:0;
content:"";
clear:both
}
.row-fluid[class*="span"] {
display:block;
float:left;
width:100%;
min-height:30px;
margin-left:2.564%;
*margin-left:2.511%;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.row-fluid[class*="span"]:first-child {
margin-left:0
}
.row-fluid .span12 {
width:100%;
*width:99.947%
}
.row-fluid .span11 {
width:91.453%;
*width:91.4%
}
.row-fluid .span10 {
width:82.906%;
*width:82.853%
}
.row-fluid .span9 {
width:74.359%;
*width:74.306%
}
.row-fluid .span8 {
width:65.812%;
*width:65.759%
}
.row-fluid .span7 {
width:57.265%;
*width:57.212%
}
.row-fluid .span6 {
width:48.718%;
*width:48.665%
}
.row-fluid .span5 {
width:40.171%;
*width:40.118%
}
.row-fluid .span4 {
width:31.624%;
*width:31.571%
}
.row-fluid .span3 {
width:23.077%;
*width:23.024%
}
.row-fluid .span2 {
width:14.53%;
*width:14.477%
}
.row-fluid .span1 {
width:5.983%;
*width:5.93%
}
.row-fluid .offset12 {
margin-left:105.128%;
*margin-left:105.022%
}
.row-fluid .offset12:first-child {
margin-left:102.564%;
*margin-left:102.458%
}
.row-fluid .offset11 {
margin-left:96.581%;
*margin-left:96.475%
}
.row-fluid .offset11:first-child {
margin-left:94.017%;
*margin-left:93.911%
}
.row-fluid .offset10 {
margin-left:88.034%;
*margin-left:87.928%
}
.row-fluid .offset10:first-child {
margin-left:85.47%;
*margin-left:85.364%
}
.row-fluid .offset9 {
margin-left:79.487%;
*margin-left:79.381%
}
.row-fluid .offset9:first-child {
margin-left:76.923%;
*margin-left:76.817%
}
.row-fluid .offset8 {
margin-left:70.94%;
*margin-left:70.834%
}
.row-fluid .offset8:first-child {
margin-left:68.376%;
*margin-left:68.27%
}
.row-fluid .offset7 {
margin-left:62.393%;
*margin-left:62.287%
}
.row-fluid .offset7:first-child {
margin-left:59.829%;
*margin-left:59.723%
}
.row-fluid .offset6 {
margin-left:53.846%;
*margin-left:53.74%
}
.row-fluid .offset6:first-child {
margin-left:51.282%;
*margin-left:51.176%
}
.row-fluid .offset5 {
margin-left:45.299%;
*margin-left:45.193%
}
.row-fluid .offset5:first-child {
margin-left:42.735%;
*margin-left:42.629%
}
.row-fluid .offset4 {
margin-left:36.752%;
*margin-left:36.646%
}
.row-fluid .offset4:first-child {
margin-left:34.188%;
*margin-left:34.082%
}
.row-fluid .offset3 {
margin-left:28.205%;
*margin-left:28.099%
}
.row-fluid .offset3:first-child {
margin-left:25.641%;
*margin-left:25.535%
}
.row-fluid .offset2 {
margin-left:19.658%;
*margin-left:19.552%
}
.row-fluid .offset2:first-child {
margin-left:17.094%;
*margin-left:16.988%
}
.row-fluid .offset1 {
margin-left:11.111%;
*margin-left:11.005%
}
.row-fluid .offset1:first-child {
margin-left:8.547%;
*margin-left:8.441%
}
}
@media (min-width: 768px) and (max-width: 979px) {
.row {
margin-left:-20px;
*zoom:1
}
.row:before {
display:table;
line-height:0;
content:""
}
.row:after {
display:table;
line-height:0;
content:"";
clear:both
}
[class*="span"] {
float:left;
min-height:1px;
margin-left:20px
}
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
width:724px
}
.span11 {
width:662px
}
.span10 {
width:600px
}
.span9 {
width:538px
}
.span8 {
width:476px
}
.span7 {
width:414px
}
.span6 {
width:352px
}
.span5 {
width:290px
}
.span4 {
width:228px
}
.span3 {
width:166px
}
.span2 {
width:104px
}
.span1 {
width:42px
}
.offset12 {
margin-left:764px
}
.offset11 {
margin-left:702px
}
.offset10 {
margin-left:640px
}
.offset9 {
margin-left:578px
}
.offset8 {
margin-left:516px
}
.offset7 {
margin-left:454px
}
.offset6 {
margin-left:392px
}
.offset5 {
margin-left:330px
}
.offset4 {
margin-left:268px
}
.offset3 {
margin-left:206px
}
.offset2 {
margin-left:144px
}
.offset1 {
margin-left:82px
}
.row-fluid {
width:100%;
*zoom:1
}
.row-fluid:before {
display:table;
line-height:0;
content:""
}
.row-fluid:after {
display:table;
line-height:0;
content:"";
clear:both
}
.row-fluid[class*="span"] {
display:block;
float:left;
width:100%;
min-height:30px;
margin-left:2.762%;
*margin-left:2.709%;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.row-fluid[class*="span"]:first-child {
margin-left:0
}
.row-fluid .span12 {
width:100%;
*width:99.947%
}
.row-fluid .span11 {
width:91.436%;
*width:91.383%
}
.row-fluid .span10 {
width:82.873%;
*width:82.82%
}
.row-fluid .span9 {
width:74.309%;
*width:74.256%
}
.row-fluid .span8 {
width:65.746%;
*width:65.693%
}
.row-fluid .span7 {
width:57.182%;
*width:57.129%
}
.row-fluid .span6 {
width:48.619%;
*width:48.566%
}
.row-fluid .span5 {
width:40.055%;
*width:40.002%
}
.row-fluid .span4 {
width:31.492%;
*width:31.439%
}
.row-fluid .span3 {
width:22.928%;
*width:22.875%
}
.row-fluid .span2 {
width:14.365%;
*width:14.311%
}
.row-fluid .span1 {
width:5.801%;
*width:5.748%
}
.row-fluid .offset12 {
margin-left:105.525%;
*margin-left:105.418%
}
.row-fluid .offset12:first-child {
margin-left:102.762%;
*margin-left:102.656%
}
.row-fluid .offset11 {
margin-left:96.961%;
*margin-left:96.855%
}
.row-fluid .offset11:first-child {
margin-left:94.199%;
*margin-left:94.093%
}
.row-fluid .offset10 {
margin-left:88.398%;
*margin-left:88.291%
}
.row-fluid .offset10:first-child {
margin-left:85.635%;
*margin-left:85.529%
}
.row-fluid .offset9 {
margin-left:79.834%;
*margin-left:79.728%
}
.row-fluid .offset9:first-child {
margin-left:77.072%;
*margin-left:76.965%
}
.row-fluid .offset8 {
margin-left:71.271%;
*margin-left:71.164%
}
.row-fluid .offset8:first-child {
margin-left:68.508%;
*margin-left:68.402%
}
.row-fluid .offset7 {
margin-left:62.707%;
*margin-left:62.601%
}
.row-fluid .offset7:first-child {
margin-left:59.945%;
*margin-left:59.838%
}
.row-fluid .offset6 {
margin-left:54.144%;
*margin-left:54.037%
}
.row-fluid .offset6:first-child {
margin-left:51.381%;
*margin-left:51.275%
}
.row-fluid .offset5 {
margin-left:45.58%;
*margin-left:45.474%
}
.row-fluid .offset5:first-child {
margin-left:42.818%;
*margin-left:42.711%
}
.row-fluid .offset4 {
margin-left:37.017%;
*margin-left:36.91%
}
.row-fluid .offset4:first-child {
margin-left:34.254%;
*margin-left:34.148%
}
.row-fluid .offset3 {
margin-left:28.453%;
*margin-left:28.347%
}
.row-fluid .offset3:first-child {
margin-left:25.691%;
*margin-left:25.584%
}
.row-fluid .offset2 {
margin-left:19.89%;
*margin-left:19.783%
}
.row-fluid .offset2:first-child {
margin-left:17.127%;
*margin-left:17.021%
}
.row-fluid .offset1 {
margin-left:11.326%;
*margin-left:11.22%
}
.row-fluid .offset1:first-child {
margin-left:8.564%;
*margin-left:8.457%
}
}
@media (max-width: 767px) {
.header {
background:#fff;
border-bottom:1px solid #edece6
}
.header .container {
padding:0 15px
}
body {
padding:0
}
.container-fluid, .container {
padding:0 30px
}
.dl-horizontal dt {
float:none;
width:auto;
clear:none;
text-align:left
}
.dl-horizontal dd {
margin-left:0
}
.container {
width:auto
}
.row-fluid {
width:100%
}
.row {
margin-left:0
}
[class*="span"], .row-fluid[class*="span"] {
display:block;
float:none;
width:100%;
margin-left:0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
}
@media (max-width: 480px) {
.slide-window {
height:250px
}
#logo {
width:62px
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: portrait) {
.slide {
-webkit-background-size:auto 100%
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: landscape) {
.slide {
-webkit-background-size:100% auto
}
} | app/styles/old_server/responsive.css | .clearfix {
*zoom:1
}
.clearfix:before {
display:table;
line-height:0;
content:""
}
.clearfix:after {
display:table;
line-height:0;
content:"";
clear:both
}
.input-block-level {
display:block;
width:100%;
min-height:30px;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.visible-phone, .visible-tablet, .hidden-desktop {
display:none !important
}
.visible-desktop {
display:inherit !important
}
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display:inherit !important
}
.visible-desktop {
display:none !important
}
.visible-tablet {
display:inherit !important
}
.hidden-tablet {
display:none !important
}
}
@media (max-width: 767px) {
.hidden-desktop {
display:inherit !important
}
.visible-desktop {
display:none !important
}
.visible-phone {
display:inherit !important
}
.hidden-phone {
display:none !important
}
}
@media (min-width: 1200px) {
.row {
margin-left:-30px;
*zoom:1
}
.row:before {
display:table;
line-height:0;
content:""
}
.row:after {
display:table;
line-height:0;
content:"";
clear:both
}
[class*="span"] {
float:left;
min-height:1px;
margin-left:30px
}
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
width:1170px
}
.span11 {
width:1070px
}
.span10 {
width:970px
}
.span9 {
width:870px
}
.span8 {
width:770px
}
.span7 {
width:670px
}
.span6 {
width:570px
}
.span5 {
width:470px
}
.span4 {
width:370px
}
.span3 {
width:270px
}
.span2 {
width:170px
}
.span1 {
width:70px
}
.offset12 {
margin-left:1230px
}
.offset11 {
margin-left:1130px
}
.offset10 {
margin-left:1030px
}
.offset9 {
margin-left:930px
}
.offset8 {
margin-left:830px
}
.offset7 {
margin-left:730px
}
.offset6 {
margin-left:630px
}
.offset5 {
margin-left:530px
}
.offset4 {
margin-left:430px
}
.offset3 {
margin-left:330px
}
.offset2 {
margin-left:230px
}
.offset1 {
margin-left:130px
}
.row-fluid {
width:100%;
*zoom:1
}
.row-fluid:before {
display:table;
line-height:0;
content:""
}
.row-fluid:after {
display:table;
line-height:0;
content:"";
clear:both
}
.row-fluid[class*="span"] {
display:block;
float:left;
width:100%;
min-height:30px;
margin-left:2.564%;
*margin-left:2.511%;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.row-fluid[class*="span"]:first-child {
margin-left:0
}
.row-fluid .span12 {
width:100%;
*width:99.947%
}
.row-fluid .span11 {
width:91.453%;
*width:91.4%
}
.row-fluid .span10 {
width:82.906%;
*width:82.853%
}
.row-fluid .span9 {
width:74.359%;
*width:74.306%
}
.row-fluid .span8 {
width:65.812%;
*width:65.759%
}
.row-fluid .span7 {
width:57.265%;
*width:57.212%
}
.row-fluid .span6 {
width:48.718%;
*width:48.665%
}
.row-fluid .span5 {
width:40.171%;
*width:40.118%
}
.row-fluid .span4 {
width:31.624%;
*width:31.571%
}
.row-fluid .span3 {
width:23.077%;
*width:23.024%
}
.row-fluid .span2 {
width:14.53%;
*width:14.477%
}
.row-fluid .span1 {
width:5.983%;
*width:5.93%
}
.row-fluid .offset12 {
margin-left:105.128%;
*margin-left:105.022%
}
.row-fluid .offset12:first-child {
margin-left:102.564%;
*margin-left:102.458%
}
.row-fluid .offset11 {
margin-left:96.581%;
*margin-left:96.475%
}
.row-fluid .offset11:first-child {
margin-left:94.017%;
*margin-left:93.911%
}
.row-fluid .offset10 {
margin-left:88.034%;
*margin-left:87.928%
}
.row-fluid .offset10:first-child {
margin-left:85.47%;
*margin-left:85.364%
}
.row-fluid .offset9 {
margin-left:79.487%;
*margin-left:79.381%
}
.row-fluid .offset9:first-child {
margin-left:76.923%;
*margin-left:76.817%
}
.row-fluid .offset8 {
margin-left:70.94%;
*margin-left:70.834%
}
.row-fluid .offset8:first-child {
margin-left:68.376%;
*margin-left:68.27%
}
.row-fluid .offset7 {
margin-left:62.393%;
*margin-left:62.287%
}
.row-fluid .offset7:first-child {
margin-left:59.829%;
*margin-left:59.723%
}
.row-fluid .offset6 {
margin-left:53.846%;
*margin-left:53.74%
}
.row-fluid .offset6:first-child {
margin-left:51.282%;
*margin-left:51.176%
}
.row-fluid .offset5 {
margin-left:45.299%;
*margin-left:45.193%
}
.row-fluid .offset5:first-child {
margin-left:42.735%;
*margin-left:42.629%
}
.row-fluid .offset4 {
margin-left:36.752%;
*margin-left:36.646%
}
.row-fluid .offset4:first-child {
margin-left:34.188%;
*margin-left:34.082%
}
.row-fluid .offset3 {
margin-left:28.205%;
*margin-left:28.099%
}
.row-fluid .offset3:first-child {
margin-left:25.641%;
*margin-left:25.535%
}
.row-fluid .offset2 {
margin-left:19.658%;
*margin-left:19.552%
}
.row-fluid .offset2:first-child {
margin-left:17.094%;
*margin-left:16.988%
}
.row-fluid .offset1 {
margin-left:11.111%;
*margin-left:11.005%
}
.row-fluid .offset1:first-child {
margin-left:8.547%;
*margin-left:8.441%
}
}
@media (min-width: 768px) and (max-width: 979px) {
.row {
margin-left:-20px;
*zoom:1
}
.row:before {
display:table;
line-height:0;
content:""
}
.row:after {
display:table;
line-height:0;
content:"";
clear:both
}
[class*="span"] {
float:left;
min-height:1px;
margin-left:20px
}
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
width:724px
}
.span11 {
width:662px
}
.span10 {
width:600px
}
.span9 {
width:538px
}
.span8 {
width:476px
}
.span7 {
width:414px
}
.span6 {
width:352px
}
.span5 {
width:290px
}
.span4 {
width:228px
}
.span3 {
width:166px
}
.span2 {
width:104px
}
.span1 {
width:42px
}
.offset12 {
margin-left:764px
}
.offset11 {
margin-left:702px
}
.offset10 {
margin-left:640px
}
.offset9 {
margin-left:578px
}
.offset8 {
margin-left:516px
}
.offset7 {
margin-left:454px
}
.offset6 {
margin-left:392px
}
.offset5 {
margin-left:330px
}
.offset4 {
margin-left:268px
}
.offset3 {
margin-left:206px
}
.offset2 {
margin-left:144px
}
.offset1 {
margin-left:82px
}
.row-fluid {
width:100%;
*zoom:1
}
.row-fluid:before {
display:table;
line-height:0;
content:""
}
.row-fluid:after {
display:table;
line-height:0;
content:"";
clear:both
}
.row-fluid[class*="span"] {
display:block;
float:left;
width:100%;
min-height:30px;
margin-left:2.762%;
*margin-left:2.709%;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
.row-fluid[class*="span"]:first-child {
margin-left:0
}
.row-fluid .span12 {
width:100%;
*width:99.947%
}
.row-fluid .span11 {
width:91.436%;
*width:91.383%
}
.row-fluid .span10 {
width:82.873%;
*width:82.82%
}
.row-fluid .span9 {
width:74.309%;
*width:74.256%
}
.row-fluid .span8 {
width:65.746%;
*width:65.693%
}
.row-fluid .span7 {
width:57.182%;
*width:57.129%
}
.row-fluid .span6 {
width:48.619%;
*width:48.566%
}
.row-fluid .span5 {
width:40.055%;
*width:40.002%
}
.row-fluid .span4 {
width:31.492%;
*width:31.439%
}
.row-fluid .span3 {
width:22.928%;
*width:22.875%
}
.row-fluid .span2 {
width:14.365%;
*width:14.311%
}
.row-fluid .span1 {
width:5.801%;
*width:5.748%
}
.row-fluid .offset12 {
margin-left:105.525%;
*margin-left:105.418%
}
.row-fluid .offset12:first-child {
margin-left:102.762%;
*margin-left:102.656%
}
.row-fluid .offset11 {
margin-left:96.961%;
*margin-left:96.855%
}
.row-fluid .offset11:first-child {
margin-left:94.199%;
*margin-left:94.093%
}
.row-fluid .offset10 {
margin-left:88.398%;
*margin-left:88.291%
}
.row-fluid .offset10:first-child {
margin-left:85.635%;
*margin-left:85.529%
}
.row-fluid .offset9 {
margin-left:79.834%;
*margin-left:79.728%
}
.row-fluid .offset9:first-child {
margin-left:77.072%;
*margin-left:76.965%
}
.row-fluid .offset8 {
margin-left:71.271%;
*margin-left:71.164%
}
.row-fluid .offset8:first-child {
margin-left:68.508%;
*margin-left:68.402%
}
.row-fluid .offset7 {
margin-left:62.707%;
*margin-left:62.601%
}
.row-fluid .offset7:first-child {
margin-left:59.945%;
*margin-left:59.838%
}
.row-fluid .offset6 {
margin-left:54.144%;
*margin-left:54.037%
}
.row-fluid .offset6:first-child {
margin-left:51.381%;
*margin-left:51.275%
}
.row-fluid .offset5 {
margin-left:45.58%;
*margin-left:45.474%
}
.row-fluid .offset5:first-child {
margin-left:42.818%;
*margin-left:42.711%
}
.row-fluid .offset4 {
margin-left:37.017%;
*margin-left:36.91%
}
.row-fluid .offset4:first-child {
margin-left:34.254%;
*margin-left:34.148%
}
.row-fluid .offset3 {
margin-left:28.453%;
*margin-left:28.347%
}
.row-fluid .offset3:first-child {
margin-left:25.691%;
*margin-left:25.584%
}
.row-fluid .offset2 {
margin-left:19.89%;
*margin-left:19.783%
}
.row-fluid .offset2:first-child {
margin-left:17.127%;
*margin-left:17.021%
}
.row-fluid .offset1 {
margin-left:11.326%;
*margin-left:11.22%
}
.row-fluid .offset1:first-child {
margin-left:8.564%;
*margin-left:8.457%
}
}
@media (max-width: 767px) {
.header {
background:#fff;
border-bottom:1px solid #edece6
}
.header .container {
padding:0 15px
}
body {
padding:0
}
.container-fluid, .container {
padding:0 30px
}
.dl-horizontal dt {
float:none;
width:auto;
clear:none;
text-align:left
}
.dl-horizontal dd {
margin-left:0
}
.container {
width:auto
}
.row-fluid {
width:100%
}
.row {
margin-left:0
}
[class*="span"], .row-fluid[class*="span"] {
display:block;
float:none;
width:100%;
margin-left:0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
}
@media (max-width: 480px) {
.slide-window {
height:250px
}
#logo {
width:62px
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: portrait) {
.slide {
-webkit-background-size:auto 100%
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: landscape) {
.slide {
-webkit-background-size:100% auto
}
} | 0.405331 | 0.138578 |
@responsive {
/*
*
* Flex container
*
*/
.flex-row { flex-direction: row }
.flex-row-reverse { flex-direction: row-reverse }
.flex-column { flex-direction: column }
.flex-column-reverse { flex-direction: column-reverse }
.flex-wrap { flex-wrap: wrap }
.flex-nowrap { flex-wrap: nowrap }
.flex-wrap-reverse { flex-wrap: wrap-reverse }
.justify-start { justify-content: flex-start }
.justify-center { justify-content: center }
.justify-end { justify-content: flex-end }
.justify-between { justify-content: space-between }
.justify-around { justify-content: space-around }
.items-stretch { align-items: stretch }
.items-start { align-items: flex-start }
.items-end { align-items: flex-end }
.items-center { align-items: center }
.items-baseline { align-items: baseline }
.content-stretch { align-content: stretch }
.content-start { align-content: flex-start }
.content-center { align-content: center }
.content-end { align-content: flex-end }
.content-between { align-content: space-between }
.content-around { align-content: space-around }
/*
*
* Flex item
*
*/
/* 1. Fix for Chrome 44 bug. See: https://code.google.com/p/chromium/issues/detail?id=506893 */
.flex-auto {
flex: 1 1 auto;
min-width: 0; /* 1 */
min-height: 0; /* 1 */
}
.flex-1 { flex: 1 }
.flex-grow-0 { flex-grow: 0 }
.flex-grow-1 { flex-grow: 1 }
.flex-shrink-0 { flex-shrink: 0 }
.flex-shrink-1 { flex-shrink: 1 }
.flex-none { flex: none }
.self-auto { align-self: auto }
.self-start { align-self: flex-start }
.self-center { align-self: center }
.self-end { align-self: flex-end }
.self-baseline { align-self: baseline }
.self-stretch { align-self: stretch }
.order-0 { order: 0 }
.order-1 { order: 1 }
.order-2 { order: 2 }
.order-3 { order: 3 }
.order-4 { order: 4 }
.order-5 { order: 5 }
.order-6 { order: 6 }
.order-7 { order: 7 }
.order-8 { order: 8 }
.order-last { order: 99999 }
} | src/styles/utilities/_flexbox.css | @responsive {
/*
*
* Flex container
*
*/
.flex-row { flex-direction: row }
.flex-row-reverse { flex-direction: row-reverse }
.flex-column { flex-direction: column }
.flex-column-reverse { flex-direction: column-reverse }
.flex-wrap { flex-wrap: wrap }
.flex-nowrap { flex-wrap: nowrap }
.flex-wrap-reverse { flex-wrap: wrap-reverse }
.justify-start { justify-content: flex-start }
.justify-center { justify-content: center }
.justify-end { justify-content: flex-end }
.justify-between { justify-content: space-between }
.justify-around { justify-content: space-around }
.items-stretch { align-items: stretch }
.items-start { align-items: flex-start }
.items-end { align-items: flex-end }
.items-center { align-items: center }
.items-baseline { align-items: baseline }
.content-stretch { align-content: stretch }
.content-start { align-content: flex-start }
.content-center { align-content: center }
.content-end { align-content: flex-end }
.content-between { align-content: space-between }
.content-around { align-content: space-around }
/*
*
* Flex item
*
*/
/* 1. Fix for Chrome 44 bug. See: https://code.google.com/p/chromium/issues/detail?id=506893 */
.flex-auto {
flex: 1 1 auto;
min-width: 0; /* 1 */
min-height: 0; /* 1 */
}
.flex-1 { flex: 1 }
.flex-grow-0 { flex-grow: 0 }
.flex-grow-1 { flex-grow: 1 }
.flex-shrink-0 { flex-shrink: 0 }
.flex-shrink-1 { flex-shrink: 1 }
.flex-none { flex: none }
.self-auto { align-self: auto }
.self-start { align-self: flex-start }
.self-center { align-self: center }
.self-end { align-self: flex-end }
.self-baseline { align-self: baseline }
.self-stretch { align-self: stretch }
.order-0 { order: 0 }
.order-1 { order: 1 }
.order-2 { order: 2 }
.order-3 { order: 3 }
.order-4 { order: 4 }
.order-5 { order: 5 }
.order-6 { order: 6 }
.order-7 { order: 7 }
.order-8 { order: 8 }
.order-last { order: 99999 }
} | 0.721449 | 0.108095 |
.recursos {
background: #fff;
padding: 15px;
margin-bottom: 25px;
-webkit-box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
}
.recursos .semana h3 {
font-size: 1.5em;
margin-bottom: 0;
margin: 0px;
}
.recursos .semana .recurso .titulo-recurso {
display: flex;
justify-content: space-between;
border-radius: 8px;
padding: 10px;
align-items: center;
margin-left: 15px;
margin-top: 15px;
margin-right: 15px;
background-color: #f4f4f5;
border-bottom: 3px solid #d9dce7;
border-right: 3px solid #d9dce7;
}
.recursos .semana .recurso .descripcion-recurso {
border-radius: 8px;
background: #fff;
padding: 10px;
align-items: center;
margin-left: 15px;
margin-top: 15px;
margin-right: 15px;
}
.hidden {
widows: 0px;
}
.visible {
widows: 100%;
}
.recursos .semana .recurso h3 {
font-size: 1.25em;
}
.recursos .semana .sub-menu-recursos {
display: flex;
justify-content: space-between;
}
.recursos .semana .sub-menu-recursos .agregar-recurso {
border-left: 1px solid #000;
margin-bottom: 10px;
text-align: center;
padding-top: 20px;
}
.recursos .semana .sub-menu-recursos .agregar-recurso a {
display: block;
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #722040;
background: #69628f;
color: #fff;
border-radius: 5px;
text-align: center;
font-weight: bold;
}
.recursos .semana .sub-menu-recursos .agregar-recurso a:hover {
display: block;
width: 100%;
padding: 10px;
border: 1px solid #722040;
background: #722040;
color: #fff;
}
.recursos .semana .sub-menu-recursos .materiales {
display: flex;
flex-direction: column;
width: 100%;
}
.recursos .semana .sub-menu-recursos .agregar-recurso input[type=text] {
width: 100%;
margin: 10px 0px;
}
.recursos .semana .sub-menu-recursos .agregar-recurso textarea {
display: block;
max-width: 100%;
min-width: 100%;
margin: 10px 0px;
}
@media screen and (max-width:890px) {
.recursos .semana .sub-menu-recursos {
flex-direction: column;
}
.recursos .semana .sub-menu-recursos .agregar-recurso {
border-left: 0px solid #000;
border-top: 2px dotted #000;
text-align: center;
}
} | css/curso.css | .recursos {
background: #fff;
padding: 15px;
margin-bottom: 25px;
-webkit-box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
box-shadow: 4px 7px 12px -4px rgba(0, 0, 0, 0.75);
}
.recursos .semana h3 {
font-size: 1.5em;
margin-bottom: 0;
margin: 0px;
}
.recursos .semana .recurso .titulo-recurso {
display: flex;
justify-content: space-between;
border-radius: 8px;
padding: 10px;
align-items: center;
margin-left: 15px;
margin-top: 15px;
margin-right: 15px;
background-color: #f4f4f5;
border-bottom: 3px solid #d9dce7;
border-right: 3px solid #d9dce7;
}
.recursos .semana .recurso .descripcion-recurso {
border-radius: 8px;
background: #fff;
padding: 10px;
align-items: center;
margin-left: 15px;
margin-top: 15px;
margin-right: 15px;
}
.hidden {
widows: 0px;
}
.visible {
widows: 100%;
}
.recursos .semana .recurso h3 {
font-size: 1.25em;
}
.recursos .semana .sub-menu-recursos {
display: flex;
justify-content: space-between;
}
.recursos .semana .sub-menu-recursos .agregar-recurso {
border-left: 1px solid #000;
margin-bottom: 10px;
text-align: center;
padding-top: 20px;
}
.recursos .semana .sub-menu-recursos .agregar-recurso a {
display: block;
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #722040;
background: #69628f;
color: #fff;
border-radius: 5px;
text-align: center;
font-weight: bold;
}
.recursos .semana .sub-menu-recursos .agregar-recurso a:hover {
display: block;
width: 100%;
padding: 10px;
border: 1px solid #722040;
background: #722040;
color: #fff;
}
.recursos .semana .sub-menu-recursos .materiales {
display: flex;
flex-direction: column;
width: 100%;
}
.recursos .semana .sub-menu-recursos .agregar-recurso input[type=text] {
width: 100%;
margin: 10px 0px;
}
.recursos .semana .sub-menu-recursos .agregar-recurso textarea {
display: block;
max-width: 100%;
min-width: 100%;
margin: 10px 0px;
}
@media screen and (max-width:890px) {
.recursos .semana .sub-menu-recursos {
flex-direction: column;
}
.recursos .semana .sub-menu-recursos .agregar-recurso {
border-left: 0px solid #000;
border-top: 2px dotted #000;
text-align: center;
}
} | 0.440469 | 0.113334 |
@media only screen and (max-width: 1368px) {
body {
background-size: 120px, 300px;
}
.container {
max-width: 1250px;
}
.header-top-navbar {
display: none;
}
.button a {
padding: 15px 30px;
}
.header-top {
margin-top: 50px;
}
.manu li {
font-size: 22px;
padding: 0 20px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 32px;
font-family: Gotham-Bold;
}
.heading span {
font-size: 30px;
line-height: normal;
}
.heading .border {
margin-top: 20px;
width: 110px;
}
.banner-form {
padding-top: 40px;
}
.heading {
padding-top: 60px;
}
.banner-form p {
color: #04223a;
font-size: 18px;
margin-top: 0;
margin-bottom: 8px;
}
.download-form input {
border: 1px solid #828282;
margin-right: 10px;
padding: 0 0 0 8px;
flex-shrink: 1;
width: 100%;
}
.download-btn {
flex-shrink: 0;
padding: 8px;
}
.banner-image img {
width: 600px;
height: auto;
}
.lable p {
font-size: 40px;
margin-bottom: 28px;
}
.planing-data p {
font-size: 18px;
margin-top: 35px;
line-height: 20px;
}
.planing-data {
max-width: 300px;
}
.lable h1 {
font-size: 42px;
margin: 28px 0;
}
.lable .fix-header {
max-width: 740px;
margin: 28px auto;
}
.diagram-image {
height: 200px;
width: 200px;
}
.diagram-list ul li {
font-size: 16px;
line-height: 20px;
}
.diagram-list h3 {
font-size: 18px;
margin-bottom: 14px;
}
.container-2 {
width: 850px;
}
.lifting {
padding: 60px 30px 60px 30px;
}
.lifting-list ul li {
font-size: 16px;
padding: 8px 0;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 60px;
}
.lifting-image {
padding-left: 40px;
padding-top: 10px;
}
.lifting-details {
font-size: 16px;
line-height: 20px;
color: #273138;
}
.tag span {
font-size: 18px;
}
.tag-data span {
padding-left: 35px;
line-height: 20px;
font-size: 16px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 155px;
}
.contant-data {
background-position: right 80px;
}
.contant {
padding: 60px 0 20px 0;
background-image: url('../image/crane.png'), url('../image/b-circle.png');
background-repeat: no-repeat;
background-position: bottom left, 1170px 140px;
background-size: 300px, 115px;
}
.hockeye-image {
margin-top: 50px;
background-position: left center, right bottom 40px;
background-size: 450px, 160px;
}
.finance {
margin-left: 200px;
}
.services {
padding-left: 300px;
padding-top: 40px;
}
.management {
padding-left: 300px;
padding-top: 40px;
}
.renovation {
padding-top: 40px;
padding-left: 200px;
}
}
/*--------------------------------------------------*/
/*--------------sreen 768px-------------------------*/
/*--------------------------------------------------*/
@media only screen and (max-width: 1024px) {
body {
background-size: 65px, 200px;
font-size: 14px;
}
.header-top-navbar {
display: none;
}
.container {
width: 700px;
}
.button a {
padding: 8px 15px;
font-size: 14px;
border-radius: 5px;
}
.header-top {
margin-top: 30px;
}
.logo img {
width: 92px;
height: auto;
}
.manu li {
font-size: 14px;
padding: 0 10px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 34px;
font-family: Gotham-Bold;
}
.heading span {
font-size: 30px;
line-height: 40px;
}
.heading .border {
margin-top: 22px;
width: 85px;
}
.banner-form {
padding-top: 25px;
}
.heading {
padding-top: 30px;
}
.heading .border .border-bottom {
border-bottom: 3px solid #02b0bd;
}
.banner-form p {
font-size: 14px;
}
.download-form input {
border: 1px solid #828282;
padding: 0 0 0 10px;
font-size: 14px;
flex-shrink: 1;
width: 100%;
border-radius: 2px;
}
.download-btn {
flex-shrink: 0;
font-size: 14px;
border-radius: 2px;
padding: 8px 10px;
}
.banner-image img {
width: 500px;
height: auto;
}
.lable p {
font-size: 24px;
margin-bottom: 16px;
}
.middle-contant {
padding: 30px 0;
}
.lable-border {
width: 50px;
margin: 0 auto;
}
.lable-border .border-bottom {
border-bottom: 3px solid #02b0bd;
}
.planing {
margin-top: 30px;
}
.planing-data p {
font-size: 14px;
margin-top: 20px;
line-height: 16px;
}
.planing-data {
max-width: 260px;
}
.lable h1 {
font-size: 24px;
margin: 16px 0;
}
.middle-contant .diagram {
margin-bottom: 40px;
}
.lable .fix-header {
max-width: 400px;
margin: 16px auto;
}
.diagram-image {
height: 120px;
width: 120px;
}
.diagram-list ul li {
font-size: 12px;
line-height: 14px;
}
.diagram-list h3 {
font-size: 14px;
margin-bottom: 12px;
}
.diagram-list {
margin-left: 10px;
}
.acquisition img {
width: 80px;
height: auto;
}
.finance img {
width: 86px;
height: auto;
}
.services img {
width: 80px;
height: auto;
}
.management img {
width: 84px;
height: auto;
}
.renovation img {
width: 82px;
height: auto;
}
.sell img {
width: 82px;
height: auto;
}
.lifting {
padding: 40px 15px 40px 15px;
}
.lifting-details h3 {
padding-bottom: 8px;
}
.bottom-contant {
padding: 30px 0 30px 0;
}
.lifting-details span {
line-height: 10px;
}
.container-2 {
width: 700px;
}
.lifting-list ul li {
font-size: 14px;
padding: 4px 0;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 35px;
}
.lifting-image {
padding-left: 30px;
padding-top: 5px;
}
.lifting-image img {
width: 120px;
height: auto;
}
.lifting-details {
font-size: 14px;
line-height: 16px;
color: #273138;
padding-left: 15px;
margin-top: 8px;
}
.tag {
padding: 12px 15px;
margin: 10px 0;
border-radius: 3px;
}
.tag-data img {
width: 120px;
height: auto;
}
.tag span {
font-size: 14px;
}
.tag-data span {
padding-left: 20px;
line-height: 16px;
font-size: 14px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 85px;
}
.footer .copy-right {
font-size: 14px;
}
.contant-data {
background-position: right 40px;
background-size: 50px;
}
.contant {
padding: 40px 0 10px 0;
background-image: url('../image/crane.png'), url('../image/b-circle.png');
background-repeat: no-repeat;
background-position: bottom left, 660px 70px;
background-size: 170px, 60px;
}
.hockeye-image {
margin-top: 40px;
background-position: left center, right bottom 30px;
background-size: 235px, 85px;
}
.acquisition {
padding-left: 110px;
}
.finance {
margin-left: 210px;
}
.services {
padding-left: 280px;
padding-top: 30px;
}
.management {
padding-left: 280px;
padding-top: 30px;
}
.renovation {
padding-top: 30px;
padding-left: 210px;
}
.sell {
padding-left: 110px;
}
}
/*--------------------------------------------------*/
/*--------------sreen 640px-------------------------*/
/*--------------------------------------------------*/
@media only screen and (max-width: 640px) {
body {
background-size: 70px, 100px;
font-size: 14px;
}
.header-top-navbar {
margin-top: 30px;
display: flex;
}
.navabar .logo {
display: block;
width: 100%;
flex-shrink: 1;
}
.navabar {
display: flex;
position: relative;
flex: auto;
align-items: center;
}
#nav {
display: none;
background-color: #80d7de;
box-shadow: 0 0 5px grey;
position: absolute;
left: 0;
right: 0;
top: 65px;
z-index: 99;
}
#nav li {
font-size: 16px;
padding: 10px 10px;
font-weight: 500;
list-style: none;
}
#nav li a {
color: #273138;
}
#nav li:hover {
background-color: #02b0bd;
}
.header-top-navbar a.icon {
background: #fff;
display: block;
background-color: #80d7de;
flex-shrink: 0;
}
.header-top-navbar a.icon img {
height: 30px;
width: 30px;
}
.container {
width: 94%;
}
.button a {
padding: 4px 8px;
border-radius: 2px;
font-size: 14px;
}
.header-top {
display: none;
}
.logo img {
width: 130px;
height: auto;
}
.manu {
margin-left: 20px;
}
.manu li {
font-size: 14px;
padding: 0 5px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 24px;
}
.heading span {
font-size: 18px;
line-height: normal;
}
.heading .border {
margin-top: 10px;
width: 40px;
}
.heading .border .border-bottom {
border-bottom: 2px solid #02b0bd;
}
.banner-form {
padding-top: 10px;
}
.heading {
padding-top: 10px;
}
.banner-form p {
font-size: 14px;
}
.download-form {
display: block;
}
.download-form input {
border: 1px solid #828282;
padding: 10px;
font-size: 14px;
border-radius: 4px;
margin: 10px 0;
}
.download-form {
display: block;
}
.download-btn {
margin-top: 10px;
font-size: 14px;
padding: 10px 16px;
border-radius: 4px;
}
.banner-image {
display: none;
}
.lable p {
font-size: 18px;
margin-bottom: 12px;
}
.middle-contant {
padding: 14px 0;
}
.lable-border {
width: 60px;
margin: 0 auto;
}
.lable-border .border-bottom {
border-bottom: 2px solid #02b0bd;
}
.planing-data p {
font-size: 14px;
margin: 25px 0 45px 0;
line-height: normal;
}
.planing-data {
margin: 0 auto;
width: auto;
}
.good-bye {
height: auto;
width: 100%;
}
.investor {
height: auto;
width: 100%;
}
.mt-18 {
margin-top: 0;
width: 100%;
height: auto;
}
.imagene {
width: 100%;
height: auto;
}
.lable h1 {
font-size: 18px;
margin: 12px 0;
}
.diagram img {
width: 220px;
height: auto;
}
.lable .fix-header {
max-width: 280px;
margin: 12px auto;
}
.diagram-image {
height: 150px;
width: 150px;
margin: 10px auto;
}
.diagram-list ul li {
font-size: 14px;
line-height: normal;
}
.diagram-list h3 {
font-size: 14px;
margin-bottom: 5px;
}
.diagram-list {
margin-left: 6px;
}
.acquisition img {
width: 106px;
height: auto;
}
.finance img {
width: 110px;
height: auto;
}
.services img {
width: 106px;
height: auto;
}
.management img {
width: 108px;
height: auto;
}
.renovation img {
width: 108px;
height: auto;
}
.sell img {
width: 108px;
height: auto;
}
.lifting {
padding: 40px 0px;
}
.bottom-contant {
padding: 8px 0;
}
.lifting-data {
display: block;
}
.lifting-details span {
line-height: normal;
}
.container-2 {
width: 94%;
}
.lifting-list ul li {
font-size: 14px;
padding: 6px 0;
text-align: center;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 40px;
}
.lifting-image {
padding: 25px 0;
display: flex;
justify-content: center;
}
.lifting-image img {
width: 190px;
height: auto;
}
.lifting-details {
font-size: 14px;
line-height: normal;
color: #273138;
padding-left: 6px;
margin-top: 2px;
}
.tag {
padding: 10px 15px;
margin: 10px 0;
border-radius: 5px;
}
.tag-data img {
width: 190px;
height: auto;
margin: 0 auto;
display: block;
}
.tag span {
font-size: 14px;
}
.tag-data span {
padding: 0;
display: block;
margin-top: 20px;
line-height: normal;
font-size: 14px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 80px;
}
.footer .copy-right {
font-size: 14px;
}
.contant-data {
background-position: right 20px;
background-size: 25px;
}
.contant {
padding: 40px 0 30px 0;
background-size: 80px;
}
.hockeye-image {
background: none;
}
.diagram-details {
display: block;
margin-top: 20px;
}
.acquisition {
padding-left: 0;
}
.finance {
margin-left: 0;
}
.services {
padding-left: 0;
}
.management {
padding-left: 0;
}
.renovation {
padding-left: 0;
}
.sell {
padding-left: 0;
}
.planing {
margin-top: 40px;
display: block;
}
.middle-contant .diagram {
margin-bottom: 15px;
}
.lifting-details h3 {
padding-bottom: 10px;
}
.lifting {
display: block;
}
.tag-data {
display: block;
display: block;
padding: 30px 0;
}
.text-bottom {
padding-right: 30px;
}
} | public_html/css/responsive.css | @media only screen and (max-width: 1368px) {
body {
background-size: 120px, 300px;
}
.container {
max-width: 1250px;
}
.header-top-navbar {
display: none;
}
.button a {
padding: 15px 30px;
}
.header-top {
margin-top: 50px;
}
.manu li {
font-size: 22px;
padding: 0 20px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 32px;
font-family: Gotham-Bold;
}
.heading span {
font-size: 30px;
line-height: normal;
}
.heading .border {
margin-top: 20px;
width: 110px;
}
.banner-form {
padding-top: 40px;
}
.heading {
padding-top: 60px;
}
.banner-form p {
color: #04223a;
font-size: 18px;
margin-top: 0;
margin-bottom: 8px;
}
.download-form input {
border: 1px solid #828282;
margin-right: 10px;
padding: 0 0 0 8px;
flex-shrink: 1;
width: 100%;
}
.download-btn {
flex-shrink: 0;
padding: 8px;
}
.banner-image img {
width: 600px;
height: auto;
}
.lable p {
font-size: 40px;
margin-bottom: 28px;
}
.planing-data p {
font-size: 18px;
margin-top: 35px;
line-height: 20px;
}
.planing-data {
max-width: 300px;
}
.lable h1 {
font-size: 42px;
margin: 28px 0;
}
.lable .fix-header {
max-width: 740px;
margin: 28px auto;
}
.diagram-image {
height: 200px;
width: 200px;
}
.diagram-list ul li {
font-size: 16px;
line-height: 20px;
}
.diagram-list h3 {
font-size: 18px;
margin-bottom: 14px;
}
.container-2 {
width: 850px;
}
.lifting {
padding: 60px 30px 60px 30px;
}
.lifting-list ul li {
font-size: 16px;
padding: 8px 0;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 60px;
}
.lifting-image {
padding-left: 40px;
padding-top: 10px;
}
.lifting-details {
font-size: 16px;
line-height: 20px;
color: #273138;
}
.tag span {
font-size: 18px;
}
.tag-data span {
padding-left: 35px;
line-height: 20px;
font-size: 16px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 155px;
}
.contant-data {
background-position: right 80px;
}
.contant {
padding: 60px 0 20px 0;
background-image: url('../image/crane.png'), url('../image/b-circle.png');
background-repeat: no-repeat;
background-position: bottom left, 1170px 140px;
background-size: 300px, 115px;
}
.hockeye-image {
margin-top: 50px;
background-position: left center, right bottom 40px;
background-size: 450px, 160px;
}
.finance {
margin-left: 200px;
}
.services {
padding-left: 300px;
padding-top: 40px;
}
.management {
padding-left: 300px;
padding-top: 40px;
}
.renovation {
padding-top: 40px;
padding-left: 200px;
}
}
/*--------------------------------------------------*/
/*--------------sreen 768px-------------------------*/
/*--------------------------------------------------*/
@media only screen and (max-width: 1024px) {
body {
background-size: 65px, 200px;
font-size: 14px;
}
.header-top-navbar {
display: none;
}
.container {
width: 700px;
}
.button a {
padding: 8px 15px;
font-size: 14px;
border-radius: 5px;
}
.header-top {
margin-top: 30px;
}
.logo img {
width: 92px;
height: auto;
}
.manu li {
font-size: 14px;
padding: 0 10px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 34px;
font-family: Gotham-Bold;
}
.heading span {
font-size: 30px;
line-height: 40px;
}
.heading .border {
margin-top: 22px;
width: 85px;
}
.banner-form {
padding-top: 25px;
}
.heading {
padding-top: 30px;
}
.heading .border .border-bottom {
border-bottom: 3px solid #02b0bd;
}
.banner-form p {
font-size: 14px;
}
.download-form input {
border: 1px solid #828282;
padding: 0 0 0 10px;
font-size: 14px;
flex-shrink: 1;
width: 100%;
border-radius: 2px;
}
.download-btn {
flex-shrink: 0;
font-size: 14px;
border-radius: 2px;
padding: 8px 10px;
}
.banner-image img {
width: 500px;
height: auto;
}
.lable p {
font-size: 24px;
margin-bottom: 16px;
}
.middle-contant {
padding: 30px 0;
}
.lable-border {
width: 50px;
margin: 0 auto;
}
.lable-border .border-bottom {
border-bottom: 3px solid #02b0bd;
}
.planing {
margin-top: 30px;
}
.planing-data p {
font-size: 14px;
margin-top: 20px;
line-height: 16px;
}
.planing-data {
max-width: 260px;
}
.lable h1 {
font-size: 24px;
margin: 16px 0;
}
.middle-contant .diagram {
margin-bottom: 40px;
}
.lable .fix-header {
max-width: 400px;
margin: 16px auto;
}
.diagram-image {
height: 120px;
width: 120px;
}
.diagram-list ul li {
font-size: 12px;
line-height: 14px;
}
.diagram-list h3 {
font-size: 14px;
margin-bottom: 12px;
}
.diagram-list {
margin-left: 10px;
}
.acquisition img {
width: 80px;
height: auto;
}
.finance img {
width: 86px;
height: auto;
}
.services img {
width: 80px;
height: auto;
}
.management img {
width: 84px;
height: auto;
}
.renovation img {
width: 82px;
height: auto;
}
.sell img {
width: 82px;
height: auto;
}
.lifting {
padding: 40px 15px 40px 15px;
}
.lifting-details h3 {
padding-bottom: 8px;
}
.bottom-contant {
padding: 30px 0 30px 0;
}
.lifting-details span {
line-height: 10px;
}
.container-2 {
width: 700px;
}
.lifting-list ul li {
font-size: 14px;
padding: 4px 0;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 35px;
}
.lifting-image {
padding-left: 30px;
padding-top: 5px;
}
.lifting-image img {
width: 120px;
height: auto;
}
.lifting-details {
font-size: 14px;
line-height: 16px;
color: #273138;
padding-left: 15px;
margin-top: 8px;
}
.tag {
padding: 12px 15px;
margin: 10px 0;
border-radius: 3px;
}
.tag-data img {
width: 120px;
height: auto;
}
.tag span {
font-size: 14px;
}
.tag-data span {
padding-left: 20px;
line-height: 16px;
font-size: 14px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 85px;
}
.footer .copy-right {
font-size: 14px;
}
.contant-data {
background-position: right 40px;
background-size: 50px;
}
.contant {
padding: 40px 0 10px 0;
background-image: url('../image/crane.png'), url('../image/b-circle.png');
background-repeat: no-repeat;
background-position: bottom left, 660px 70px;
background-size: 170px, 60px;
}
.hockeye-image {
margin-top: 40px;
background-position: left center, right bottom 30px;
background-size: 235px, 85px;
}
.acquisition {
padding-left: 110px;
}
.finance {
margin-left: 210px;
}
.services {
padding-left: 280px;
padding-top: 30px;
}
.management {
padding-left: 280px;
padding-top: 30px;
}
.renovation {
padding-top: 30px;
padding-left: 210px;
}
.sell {
padding-left: 110px;
}
}
/*--------------------------------------------------*/
/*--------------sreen 640px-------------------------*/
/*--------------------------------------------------*/
@media only screen and (max-width: 640px) {
body {
background-size: 70px, 100px;
font-size: 14px;
}
.header-top-navbar {
margin-top: 30px;
display: flex;
}
.navabar .logo {
display: block;
width: 100%;
flex-shrink: 1;
}
.navabar {
display: flex;
position: relative;
flex: auto;
align-items: center;
}
#nav {
display: none;
background-color: #80d7de;
box-shadow: 0 0 5px grey;
position: absolute;
left: 0;
right: 0;
top: 65px;
z-index: 99;
}
#nav li {
font-size: 16px;
padding: 10px 10px;
font-weight: 500;
list-style: none;
}
#nav li a {
color: #273138;
}
#nav li:hover {
background-color: #02b0bd;
}
.header-top-navbar a.icon {
background: #fff;
display: block;
background-color: #80d7de;
flex-shrink: 0;
}
.header-top-navbar a.icon img {
height: 30px;
width: 30px;
}
.container {
width: 94%;
}
.button a {
padding: 4px 8px;
border-radius: 2px;
font-size: 14px;
}
.header-top {
display: none;
}
.logo img {
width: 130px;
height: auto;
}
.manu {
margin-left: 20px;
}
.manu li {
font-size: 14px;
padding: 0 5px;
border-right: 1px solid #273138;
}
.heading h1 {
font-size: 24px;
}
.heading span {
font-size: 18px;
line-height: normal;
}
.heading .border {
margin-top: 10px;
width: 40px;
}
.heading .border .border-bottom {
border-bottom: 2px solid #02b0bd;
}
.banner-form {
padding-top: 10px;
}
.heading {
padding-top: 10px;
}
.banner-form p {
font-size: 14px;
}
.download-form {
display: block;
}
.download-form input {
border: 1px solid #828282;
padding: 10px;
font-size: 14px;
border-radius: 4px;
margin: 10px 0;
}
.download-form {
display: block;
}
.download-btn {
margin-top: 10px;
font-size: 14px;
padding: 10px 16px;
border-radius: 4px;
}
.banner-image {
display: none;
}
.lable p {
font-size: 18px;
margin-bottom: 12px;
}
.middle-contant {
padding: 14px 0;
}
.lable-border {
width: 60px;
margin: 0 auto;
}
.lable-border .border-bottom {
border-bottom: 2px solid #02b0bd;
}
.planing-data p {
font-size: 14px;
margin: 25px 0 45px 0;
line-height: normal;
}
.planing-data {
margin: 0 auto;
width: auto;
}
.good-bye {
height: auto;
width: 100%;
}
.investor {
height: auto;
width: 100%;
}
.mt-18 {
margin-top: 0;
width: 100%;
height: auto;
}
.imagene {
width: 100%;
height: auto;
}
.lable h1 {
font-size: 18px;
margin: 12px 0;
}
.diagram img {
width: 220px;
height: auto;
}
.lable .fix-header {
max-width: 280px;
margin: 12px auto;
}
.diagram-image {
height: 150px;
width: 150px;
margin: 10px auto;
}
.diagram-list ul li {
font-size: 14px;
line-height: normal;
}
.diagram-list h3 {
font-size: 14px;
margin-bottom: 5px;
}
.diagram-list {
margin-left: 6px;
}
.acquisition img {
width: 106px;
height: auto;
}
.finance img {
width: 110px;
height: auto;
}
.services img {
width: 106px;
height: auto;
}
.management img {
width: 108px;
height: auto;
}
.renovation img {
width: 108px;
height: auto;
}
.sell img {
width: 108px;
height: auto;
}
.lifting {
padding: 40px 0px;
}
.bottom-contant {
padding: 8px 0;
}
.lifting-data {
display: block;
}
.lifting-details span {
line-height: normal;
}
.container-2 {
width: 94%;
}
.lifting-list ul li {
font-size: 14px;
padding: 6px 0;
text-align: center;
}
.modify-lable h1 {
margin-top: 0;
}
.dropdown-data {
padding-top: 40px;
}
.lifting-image {
padding: 25px 0;
display: flex;
justify-content: center;
}
.lifting-image img {
width: 190px;
height: auto;
}
.lifting-details {
font-size: 14px;
line-height: normal;
color: #273138;
padding-left: 6px;
margin-top: 2px;
}
.tag {
padding: 10px 15px;
margin: 10px 0;
border-radius: 5px;
}
.tag-data img {
width: 190px;
height: auto;
margin: 0 auto;
display: block;
}
.tag span {
font-size: 14px;
}
.tag-data span {
padding: 0;
display: block;
margin-top: 20px;
line-height: normal;
font-size: 14px;
}
.tag-data {
padding: 0;
}
.footer {
min-height: 80px;
}
.footer .copy-right {
font-size: 14px;
}
.contant-data {
background-position: right 20px;
background-size: 25px;
}
.contant {
padding: 40px 0 30px 0;
background-size: 80px;
}
.hockeye-image {
background: none;
}
.diagram-details {
display: block;
margin-top: 20px;
}
.acquisition {
padding-left: 0;
}
.finance {
margin-left: 0;
}
.services {
padding-left: 0;
}
.management {
padding-left: 0;
}
.renovation {
padding-left: 0;
}
.sell {
padding-left: 0;
}
.planing {
margin-top: 40px;
display: block;
}
.middle-contant .diagram {
margin-bottom: 15px;
}
.lifting-details h3 {
padding-bottom: 10px;
}
.lifting {
display: block;
}
.tag-data {
display: block;
display: block;
padding: 30px 0;
}
.text-bottom {
padding-right: 30px;
}
} | 0.306942 | 0.098382 |
html,
body {
height: 100%;
}
#result {
font-size: 20px;
}
i.fas.fa-user-circle {
font-size: 50px;
}
.logo-fitm {
width: auto;
height: auto;
}
table > thead > tr > th {
background: #fff;
}
table * {
background: #f1f2f6;
cursor: default;
user-select: none;
}
body {
background: #c8d6e5;
color: #000;
}
* {
font-family: "Trirong", serif;
font-size: 16px;
}
section.main-warpper {
width: 100%;
height: 100%;
}
.left-sidebar {
padding: 0;
margin: 0;
width: 240px;
height: 100%;
background: #fff;
float: left;
}
.sidebar-nav ul {
padding: 0;
margin: 0;
}
.sidebar-nav ul li {
padding: 5px 15px;
list-style: none;
}
.sidebar-nav ul .label-nav {
padding: 7px 35px;
}
.sidebar-nav ul li.tab-nav:not(.active):hover {
background: #bdc3c7;
cursor: pointer;
}
.page-warpper {
float: left;
width: calc(100% - 240px);
height: 100%;
background: #fafafa;
}
.tab-nav.active {
background: #3498db;
color: #fff;
}
.tab-nav.active:hover {
background: #2980b9;
cursor: pointer;
}
.form-content {
display: none;
}
.btn-logout {
margin-top: 100px;
text-align: center;
color: #fff;
background: #dc3545;
cursor: pointer;
}
.select-user {
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 500px;
border-radius: 5px;
position: fixed;
background-color: #fefefe;
padding: 15px 30px;
box-shadow: 0px 2px 5px #ccc;
}
.select-user > div > label {
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
display: block;
background: #fafafa;
padding: 5px 7px;
margin: 0;
border: 1px solid #bdc3c7;
cursor: pointer;
}
.select-user > div > label > input {
margin-right: 10px;
cursor: pointer;
}
.select-user > div > label:hover {
background-color: #c8d6e5;
}
/*
#3DB5E0
#1083C4
#0F6CBB
#0DA5E5
#49444A
*/
/* Pagination */
.pagination {
display: inline-block;
}
.pagination > .pagination-page {
font-family: Arial, Helvetica, sans-serif;
float: left;
padding: 8px 16px;
margin: 2px 1px;
text-align: center;
text-decoration: none;
cursor: pointer;
user-select: none;
}
.pagination > .pagination-page:hover {
background: #c8d6e5;
}
.pagination > .pagination-page.active {
color: #fff;
background: #54a0ff;
}
.pagination > .pagination-page.active:hover {
background: #2e86de;
}
.pagination > .pagination-page.backward::before {
content: "<";
}
.pagination > .pagination-page.forward::before {
content: ">";
}
.pagination-warpper {
padding: 4px 8px;
}
.pagination-content {
display: block;
} | public/css/style.css | html,
body {
height: 100%;
}
#result {
font-size: 20px;
}
i.fas.fa-user-circle {
font-size: 50px;
}
.logo-fitm {
width: auto;
height: auto;
}
table > thead > tr > th {
background: #fff;
}
table * {
background: #f1f2f6;
cursor: default;
user-select: none;
}
body {
background: #c8d6e5;
color: #000;
}
* {
font-family: "Trirong", serif;
font-size: 16px;
}
section.main-warpper {
width: 100%;
height: 100%;
}
.left-sidebar {
padding: 0;
margin: 0;
width: 240px;
height: 100%;
background: #fff;
float: left;
}
.sidebar-nav ul {
padding: 0;
margin: 0;
}
.sidebar-nav ul li {
padding: 5px 15px;
list-style: none;
}
.sidebar-nav ul .label-nav {
padding: 7px 35px;
}
.sidebar-nav ul li.tab-nav:not(.active):hover {
background: #bdc3c7;
cursor: pointer;
}
.page-warpper {
float: left;
width: calc(100% - 240px);
height: 100%;
background: #fafafa;
}
.tab-nav.active {
background: #3498db;
color: #fff;
}
.tab-nav.active:hover {
background: #2980b9;
cursor: pointer;
}
.form-content {
display: none;
}
.btn-logout {
margin-top: 100px;
text-align: center;
color: #fff;
background: #dc3545;
cursor: pointer;
}
.select-user {
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 500px;
border-radius: 5px;
position: fixed;
background-color: #fefefe;
padding: 15px 30px;
box-shadow: 0px 2px 5px #ccc;
}
.select-user > div > label {
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
display: block;
background: #fafafa;
padding: 5px 7px;
margin: 0;
border: 1px solid #bdc3c7;
cursor: pointer;
}
.select-user > div > label > input {
margin-right: 10px;
cursor: pointer;
}
.select-user > div > label:hover {
background-color: #c8d6e5;
}
/*
#3DB5E0
#1083C4
#0F6CBB
#0DA5E5
#49444A
*/
/* Pagination */
.pagination {
display: inline-block;
}
.pagination > .pagination-page {
font-family: Arial, Helvetica, sans-serif;
float: left;
padding: 8px 16px;
margin: 2px 1px;
text-align: center;
text-decoration: none;
cursor: pointer;
user-select: none;
}
.pagination > .pagination-page:hover {
background: #c8d6e5;
}
.pagination > .pagination-page.active {
color: #fff;
background: #54a0ff;
}
.pagination > .pagination-page.active:hover {
background: #2e86de;
}
.pagination > .pagination-page.backward::before {
content: "<";
}
.pagination > .pagination-page.forward::before {
content: ">";
}
.pagination-warpper {
padding: 4px 8px;
}
.pagination-content {
display: block;
} | 0.401805 | 0.075585 |
.background_glossyForestGreen2,
.hover_background_glossyForestGreen2:hover,
.active_background_glossyForestGreen2:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyForestGreen2h,
.hover_background_glossyForestGreen2h:hover,
.active_background_glossyForestGreen2h:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyForestGreen2a,
.hover_background_glossyForestGreen2a:hover,
.active_background_glossyForestGreen2a:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30)));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
}
.background_glossyForestGreen2s,
.hover_background_glossyForestGreen2s:hover,
.active_background_glossyForestGreen2s:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_color_glossyForestGreen2,
.hover_background_color_glossyForestGreen2:hover,
.active_background_color_glossyForestGreen2:active:hover {
background-color:#5bd75b;
}
.background_first_color_glossyForestGreen2,
.hover_background_first_color_glossyForestGreen2:hover,
.active_background_first_color_glossyForestGreen2:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyForestGreen2,
.hover_background_last_color_glossyForestGreen2:hover,
.active_background_color_last_glossyForestGreen2:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyForestGreen2,
.hover_color_glossyForestGreen2:hover,
.active_color_glossyForestGreen2:active:hover {
color: #282828;
}
.color_glossyForestGreen2h,
.hover_color_glossyForestGreen2h:hover,
.active_color_glossyForestGreen2h:active:hover {
color: #282828;
}
.color_glossyForestGreen2a,
.hover_color_glossyForestGreen2a:hover,
.active_color_glossyForestGreen2a:active:hover {
color: #282828;
}
.color_glossyForestGreen2s,
.hover_color_glossyForestGreen2s:hover,
.active_color_glossyForestGreen2s:active:hover {
color: #282828;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyForestGreen2,
.hover_border_glossyForestGreen2:hover,
.active_border_glossyForestGreen2:active:hover {
border-color: #30c530 #30c530 #30c530 #30c530;
}
.border_glossyForestGreen2h,
.hover_border_glossyForestGreen2h:hover,
.active_border_glossyForestGreen2h:active:hover {
border-color: #27a027 #27a027 #27a027 #27a027;
}
.border_glossyForestGreen2a,
.hover_border_glossyForestGreen2a:hover,
.active_border_glossyForestGreen2a:active:hover {
border-color: #1e7b1e #1e7b1e #1e7b1e #1e7b1e;
}
.border_glossyForestGreen2s,
.hover_border_glossyForestGreen2s:hover,
.active_border_glossyForestGreen2s:active:hover {
border-color: #30c530 #30c530 #30c530 #30c530;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyForestGreen2,
.hover_shadow_expand_glossyForestGreen2:hover,
.active_shadow_expand_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
}
.shadow_expand_glossyForestGreen2h,
.hover_shadow_expand_glossyForestGreen2h:hover,
.active_shadow_expand_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
}
.shadow_expand_glossyForestGreen2a,
.hover_shadow_expand_glossyForestGreen2a:hover,
.active_shadow_expand_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
}
.shadow_expand_glossyForestGreen2s,
.hover_shadow_expand_glossyForestGreen2s:hover,
.active_shadow_expand_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyForestGreen2,
.hover_shadow_left_glossyForestGreen2:hover,
.active_shadow_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_left_glossyForestGreen2h,
.hover_shadow_left_glossyForestGreen2h:hover,
.active_shadow_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_left_glossyForestGreen2a,
.hover_shadow_left_glossyForestGreen2a:hover,
.active_shadow_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_left_glossyForestGreen2s,
.hover_shadow_left_glossyForestGreen2s:hover,
.active_shadow_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyForestGreen2,
.hover_shadow_right_glossyForestGreen2:hover,
.active_shadow_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
}
.shadow_right_glossyForestGreen2h,
.hover_shadow_right_glossyForestGreen2h:hover,
.active_shadow_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
}
.shadow_right_glossyForestGreen2a,
.hover_shadow_right_glossyForestGreen2a:hover,
.active_shadow_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
}
.shadow_right_glossyForestGreen2s,
.hover_shadow_right_glossyForestGreen2s:hover,
.active_shadow_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyForestGreen2,
.hover_shadow_top_glossyForestGreen2:hover,
.active_shadow_top_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_glossyForestGreen2h,
.hover_shadow_top_glossyForestGreen2h:hover,
.active_shadow_top_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_glossyForestGreen2a,
.hover_shadow_top_glossyForestGreen2a:hover,
.active_shadow_top_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_glossyForestGreen2s,
.hover_shadow_top_glossyForestGreen2s:hover,
.active_shadow_top_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyForestGreen2,
.hover_shadow_bottom_glossyForestGreen2:hover,
.active_shadow_bottom_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_glossyForestGreen2h,
.hover_shadow_bottom_glossyForestGreen2h:hover,
.active_shadow_bottom_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_glossyForestGreen2a,
.hover_shadow_bottom_glossyForestGreen2a:hover,
.active_shadow_bottom_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_glossyForestGreen2s,
.hover_shadow_bottom_glossyForestGreen2s:hover,
.active_shadow_bottom_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyForestGreen2,
.hover_shadow_top_left_glossyForestGreen2:hover,
.active_shadow_top_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_left_glossyForestGreen2h,
.hover_shadow_top_left_glossyForestGreen2h:hover,
.active_shadow_top_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_left_glossyForestGreen2a,
.hover_shadow_top_left_glossyForestGreen2a:hover,
.active_shadow_top_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_left_glossyForestGreen2s,
.hover_shadow_top_left_glossyForestGreen2s:hover,
.active_shadow_top_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyForestGreen2,
.hover_shadow_top_right_glossyForestGreen2:hover,
.active_shadow_top_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_right_glossyForestGreen2h,
.hover_shadow_top_right_glossyForestGreen2h:hover,
.active_shadow_top_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_right_glossyForestGreen2a,
.hover_shadow_top_right_glossyForestGreen2a:hover,
.active_shadow_top_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_right_glossyForestGreen2s,
.hover_shadow_top_right_glossyForestGreen2s:hover,
.active_shadow_top_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyForestGreen2,
.hover_shadow_bottom_left_glossyForestGreen2:hover,
.active_shadow_bottom_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_left_glossyForestGreen2h,
.hover_shadow_bottom_left_glossyForestGreen2h:hover,
.active_shadow_bottom_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_left_glossyForestGreen2a,
.hover_shadow_bottom_left_glossyForestGreen2a:hover,
.active_shadow_bottom_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_left_glossyForestGreen2s,
.hover_shadow_bottom_left_glossyForestGreen2s:hover,
.active_shadow_bottom_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyForestGreen2,
.hover_shadow_bottom_right_glossyForestGreen2:hover,
.active_shadow_bottom_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_right_glossyForestGreen2h,
.hover_shadow_bottom_right_glossyForestGreen2h:hover,
.active_shadow_bottom_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_right_glossyForestGreen2a,
.hover_shadow_bottom_right_glossyForestGreen2a:hover,
.active_shadow_bottom_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_right_glossyForestGreen2s,
.hover_shadow_bottom_right_glossyForestGreen2s:hover,
.active_shadow_bottom_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
} | widgets/common/assets/gradients/glossy/glossyForestGreen/glossyForestGreen2.css | .background_glossyForestGreen2,
.hover_background_glossyForestGreen2:hover,
.active_background_glossyForestGreen2:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyForestGreen2h,
.hover_background_glossyForestGreen2h:hover,
.active_background_glossyForestGreen2h:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_glossyForestGreen2a,
.hover_background_glossyForestGreen2a:hover,
.active_background_glossyForestGreen2a:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30)));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
}
.background_glossyForestGreen2s,
.hover_background_glossyForestGreen2s:hover,
.active_background_glossyForestGreen2s:active:hover {
background: #5bd75b;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
}
.background_color_glossyForestGreen2,
.hover_background_color_glossyForestGreen2:hover,
.active_background_color_glossyForestGreen2:active:hover {
background-color:#5bd75b;
}
.background_first_color_glossyForestGreen2,
.hover_background_first_color_glossyForestGreen2:hover,
.active_background_first_color_glossyForestGreen2:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyForestGreen2,
.hover_background_last_color_glossyForestGreen2:hover,
.active_background_color_last_glossyForestGreen2:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyForestGreen2,
.hover_color_glossyForestGreen2:hover,
.active_color_glossyForestGreen2:active:hover {
color: #282828;
}
.color_glossyForestGreen2h,
.hover_color_glossyForestGreen2h:hover,
.active_color_glossyForestGreen2h:active:hover {
color: #282828;
}
.color_glossyForestGreen2a,
.hover_color_glossyForestGreen2a:hover,
.active_color_glossyForestGreen2a:active:hover {
color: #282828;
}
.color_glossyForestGreen2s,
.hover_color_glossyForestGreen2s:hover,
.active_color_glossyForestGreen2s:active:hover {
color: #282828;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyForestGreen2,
.hover_border_glossyForestGreen2:hover,
.active_border_glossyForestGreen2:active:hover {
border-color: #30c530 #30c530 #30c530 #30c530;
}
.border_glossyForestGreen2h,
.hover_border_glossyForestGreen2h:hover,
.active_border_glossyForestGreen2h:active:hover {
border-color: #27a027 #27a027 #27a027 #27a027;
}
.border_glossyForestGreen2a,
.hover_border_glossyForestGreen2a:hover,
.active_border_glossyForestGreen2a:active:hover {
border-color: #1e7b1e #1e7b1e #1e7b1e #1e7b1e;
}
.border_glossyForestGreen2s,
.hover_border_glossyForestGreen2s:hover,
.active_border_glossyForestGreen2s:active:hover {
border-color: #30c530 #30c530 #30c530 #30c530;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyForestGreen2,
.hover_shadow_expand_glossyForestGreen2:hover,
.active_shadow_expand_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
box-shadow: 0em 0em 1em 0.25em rgba(91, 215, 91, .39);
}
.shadow_expand_glossyForestGreen2h,
.hover_shadow_expand_glossyForestGreen2h:hover,
.active_shadow_expand_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
box-shadow: 0em 0em 1em 0.25em rgba(140, 227, 140, .50);
}
.shadow_expand_glossyForestGreen2a,
.hover_shadow_expand_glossyForestGreen2a:hover,
.active_shadow_expand_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .63);
}
.shadow_expand_glossyForestGreen2s,
.hover_shadow_expand_glossyForestGreen2s:hover,
.active_shadow_expand_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
box-shadow: 0em 0em 1em 0.25em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyForestGreen2,
.hover_shadow_left_glossyForestGreen2:hover,
.active_shadow_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_left_glossyForestGreen2h,
.hover_shadow_left_glossyForestGreen2h:hover,
.active_shadow_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_left_glossyForestGreen2a,
.hover_shadow_left_glossyForestGreen2a:hover,
.active_shadow_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_left_glossyForestGreen2s,
.hover_shadow_left_glossyForestGreen2s:hover,
.active_shadow_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyForestGreen2,
.hover_shadow_right_glossyForestGreen2:hover,
.active_shadow_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em 0em 1em rgba(91, 215, 91, .39);
}
.shadow_right_glossyForestGreen2h,
.hover_shadow_right_glossyForestGreen2h:hover,
.active_shadow_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em 0em 1em rgba(140, 227, 140, .50);
}
.shadow_right_glossyForestGreen2a,
.hover_shadow_right_glossyForestGreen2a:hover,
.active_shadow_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .63);
}
.shadow_right_glossyForestGreen2s,
.hover_shadow_right_glossyForestGreen2s:hover,
.active_shadow_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em 0em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyForestGreen2,
.hover_shadow_top_glossyForestGreen2:hover,
.active_shadow_top_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_glossyForestGreen2h,
.hover_shadow_top_glossyForestGreen2h:hover,
.active_shadow_top_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_glossyForestGreen2a,
.hover_shadow_top_glossyForestGreen2a:hover,
.active_shadow_top_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_glossyForestGreen2s,
.hover_shadow_top_glossyForestGreen2s:hover,
.active_shadow_top_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyForestGreen2,
.hover_shadow_bottom_glossyForestGreen2:hover,
.active_shadow_bottom_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_glossyForestGreen2h,
.hover_shadow_bottom_glossyForestGreen2h:hover,
.active_shadow_bottom_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_glossyForestGreen2a,
.hover_shadow_bottom_glossyForestGreen2a:hover,
.active_shadow_bottom_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_glossyForestGreen2s,
.hover_shadow_bottom_glossyForestGreen2s:hover,
.active_shadow_bottom_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0em 0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyForestGreen2,
.hover_shadow_top_left_glossyForestGreen2:hover,
.active_shadow_top_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_left_glossyForestGreen2h,
.hover_shadow_top_left_glossyForestGreen2h:hover,
.active_shadow_top_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_left_glossyForestGreen2a,
.hover_shadow_top_left_glossyForestGreen2a:hover,
.active_shadow_top_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_left_glossyForestGreen2s,
.hover_shadow_top_left_glossyForestGreen2s:hover,
.active_shadow_top_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyForestGreen2,
.hover_shadow_top_right_glossyForestGreen2:hover,
.active_shadow_top_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em -0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_top_right_glossyForestGreen2h,
.hover_shadow_top_right_glossyForestGreen2h:hover,
.active_shadow_top_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em -0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_top_right_glossyForestGreen2a,
.hover_shadow_top_right_glossyForestGreen2a:hover,
.active_shadow_top_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_top_right_glossyForestGreen2s,
.hover_shadow_top_right_glossyForestGreen2s:hover,
.active_shadow_top_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em -0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyForestGreen2,
.hover_shadow_bottom_left_glossyForestGreen2:hover,
.active_shadow_bottom_left_glossyForestGreen2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: -0.5em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_left_glossyForestGreen2h,
.hover_shadow_bottom_left_glossyForestGreen2h:hover,
.active_shadow_bottom_left_glossyForestGreen2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: -0.5em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_left_glossyForestGreen2a,
.hover_shadow_bottom_left_glossyForestGreen2a:hover,
.active_shadow_bottom_left_glossyForestGreen2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_left_glossyForestGreen2s,
.hover_shadow_bottom_left_glossyForestGreen2s:hover,
.active_shadow_bottom_left_glossyForestGreen2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: -0.5em 0.5em 1em rgba(66, 209, 66, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyForestGreen2,
.hover_shadow_bottom_right_glossyForestGreen2:hover,
.active_shadow_bottom_right_glossyForestGreen2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
box-shadow: 0.5em 0.5em 1em rgba(91, 215, 91, .39);
}
.shadow_bottom_right_glossyForestGreen2h,
.hover_shadow_bottom_right_glossyForestGreen2h:hover,
.active_shadow_bottom_right_glossyForestGreen2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
box-shadow: 0.5em 0.5em 1em rgba(140, 227, 140, .50);
}
.shadow_bottom_right_glossyForestGreen2a,
.hover_shadow_bottom_right_glossyForestGreen2a:hover,
.active_shadow_bottom_right_glossyForestGreen2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .63);
}
.shadow_bottom_right_glossyForestGreen2s,
.hover_shadow_bottom_right_glossyForestGreen2s:hover,
.active_shadow_bottom_right_glossyForestGreen2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
box-shadow: 0.5em 0.5em 1em rgba(66, 209, 66, .71);
} | 0.452536 | 0.0697 |
@font-face {
font-family: 'DavidNewHebrew';
src: url('DavidNewHebrew.eot') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'DavidNewHebrew';
src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADasAA4AAAAAWlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAC4A
AABOGsQC61BDTFQAAAF0AAAANAAAADa+HXAiY21hcAAAAagAAAE5AAADprTjcpNjdnQgAAAC5AAA
AL4AAAC+4ibCK2ZwZ20AAAOkAAABUgAAAdgCEcJhZ2x5ZgAABPgAAC7AAABOjoY+l1JoZWFkAAAz
uAAAACsAAAA2bKBVO2hoZWEAADPkAAAAHgAAACQcIPxeaG10eAAANAQAAADxAAABJP91MO5sb2Nh
AAA0+AAAAOIAAAEoAAhELG1heHAAADXcAAAAIAAAACAA/QEWbmFtZQAANfwAAACFAAABC4FzfZxw
b3N0AAA2hAAAAAwAAAAgAAMAAHByZXAAADaQAAAAGgAAABrv+Y79eNpjYGBKYJzAwMqAAzBxszGz
MjMxMbFglXZgUPjAxOP8+8//nTzOLCwAe0MGyAAAeNpjYGBkAIKGTmYGMLBmZWBwSSzLTFHwSy1X
8EhNKkot/w8E5v///4Oo+P3bgQEAP5YQYnjaxZJHToMxEEafkwiJ9N6L80N676QS0tdwAbgFh2DF
oTgFC4QQCxYsEPvgRCjAJqCAxBt53L7x2BoDOgQr3OhXIxFUbY/3RdXrWWm+ojb1RhNmC1ab3eF0
uT1enz8QDIUj0ZiMaxxwyHgyZQuJ2XzB92TS2XyuUKqUq7VGvdlqdzu9QX90sj0oRXH4Mft8+WN+
jEF3pbyGxKCOWIozcSEuxbXuRncr3TIoo1KTSVmWnbimBZZLpZXiVJxvNC7pl2Ep15r2RrMdgSbu
xL142NijeBLP4mVtrytjHyMmpTVjUd6KDTsOnLhUBT148eEnQJAQYSJEiakXxNU7UFVB1QXGTJiy
KwlmzFnwXyR3iEn9Yf40GbLkyFOgSIkyFarUqNOgSYsj2nTo0qPPQH24ISeMfpfyDaeCNHAAAAAA
BgAGAAwADAAYAEf//gAA/4kAAAAAAAAMyQNoAx8DGwMXAoMCIQFgARcApACgAEIb7AtYCkoKOQnn
CYUI3QiwCKQIoAiLCF4Hzwe2B4UHXAc/BzcHBgbpBtEGvAaHBmYGOQY1Bi0GHQYUBgwF+AX0BboF
kQUfBRsE7gTRBI8EOQQ1BDEEIQQZBAADzwPLA8MDmgOWA3UDOwMvAycDHwMXAxIC3QLZAi0B0wHH
AXUBMwEjAOkA4QDNAMUAwQBCAAB42nVQPU/DMBC180GhLdCUQiuFwZWVJbWp2KiE1GA3ESOICsVb
XUWo/QMVI3N+zSUjEwz8mP6ETuCEDVTL8nu6O797d9HFee+s63VOT47brebRYePAdWwLI1aiNyRJ
vsypeHnmrAwRkvNXQKO0P1E13NYAzVABlp0/Ic5G5oIVcvb74CUgKgpsB4IkZKUzsAODBBxJNcmK
KMrn6dCcAg0v1UNaEScgyQoaQawBPaZDH1x5o3ydqaeUjunOH9Ot6T3ar66zvZVuIKbbf5+nuzrk
dfsTzj7N2AibLVQm8xhsqdeL2UJwFhOwqSix5cqNpDKnJgEOFQNoVbMatUG8hkiT2jfc+YZXFBIf
7pUClwojgalYg0UFtMMBZyRezTh7Rx5yvz+EMVF6LqqQkMKyc0EBa5GYhUXzFKKFqvpxZlLSk8bu
NeLsirMvzqbQC/kP7tp92QAAeNrtfH9cVFX6/zl37szcCwPMMDP8EAYYYMBRURAHBAWBlJSUkm35
FO5i4YYbblKyKxWflm2psLClkk1b2SSjopYtcs3F0pIS0xRXMzJK80fRhiX+SDGVuef7PgfUfqjb
v5/va72dYe6de895zvO8n/fzPOfcXSJJhBAfHERHjCQ6KyxYMhCDHIwToyQX6/REX2ykxCCpAbrR
SWR0otPitMSjSUQhOd8+4EMGSI76vwMPEErS2JNKp7KCjCdjs+JGxYTaTHprkpo0ZlS8KzYm2hnp
CA22BQaYFIM1Wg6jejpBdDllVKIrJTUlNY4Sy4T4uHijwRhB7TajNI4SKhmDgonFFqxzWp1xngkp
qUGRNCg4KDhFKbS5XX6dWg+90Z1fm9bUlFeUds6drxVr1d3VR05oG+V6acc2rdpZkNtX1NKxqbN1
QWdaQYGzjwbTl+m4suL1lXO0re6NZeX51OiaRu+hMVqftmyjlqsV5Lu1bik/p7S0O3/b7Oa27o8/
WIvZJRCz8WHVn4wgMVkjzOZgYqDyCP+QYLO/CSLH60OpgYab+YzGjh09NCWr02qOj3O64jxE5xwP
sYOsTuo09CgWs1KtbVPyZml93nVR2vI63ZSKnGxTqGmwQes1FO22OV1mGik10uSuLrltuZavhebm
LRzQ9nvXEImUE0UNVPqIncSQuCxHJA2gAf7BKuQx0RhnRPiIEEOU7A8FuwIuipPsCrSY48fi97h4
ooOwNohDY+KjoXHJ4gyy2Iz6KVVSTfc0V9fy8/c57FrFMurjjJ2vG5HWl5+WKefqRmvhiiwVSX50
tFazsnGZVqX5WbSTWs3+ltZGKV9OcBfQGDrTrS2+tx/6KmP3K9uULuhtTFZsXKDkN3IMNCRH2Uyy
bE0YExcdFREs6ySfGIMdoo4Too4anUgNRp0Tsuri4uNioqFZg9GsAho2fNHxs1hroBXKTYY+LU7d
64q5Rt7Q35G3sqm5p6LQ48nXurQQeoPJ5jqiyIpMp3xRvzahZN6ihrIjXoneqCRovfRBepy+Tp+o
KyluK1lQ1k5vkmTvndqnWm+SZ+5ib6AtNNS8jSZLCp1ZlpOx6KR3kGA+jsFlun8rJ0kwCcky+0pB
skTlXKMfZA8dVnOiy65LCaMpHrNOopKO4zQoONBBbVKCra8lyRTSr23c1n50o8tsUpxy8eDRfhqs
e7t7N51CE+nd1FfTtLaGQ2lud6HWe/TwUYxZScxyi9JEgkh4ls1fDrJbLQH+PpKSregwbsiFca1c
Z9CJR2gtnsrBgdCXsy/ElK+7qSrbUbjg2SWtWjWdeK5E8Z6h67JztP3akc2HgfrrXlteU+7dsrIf
g2tJBUSiMexxOc3HDPe2k8isYKu/rLMaVLvV7O/na7he0WPg4AuOS/lwKk1JhVPagmGWwDAq63Uv
meeXZmoN9OVDtd77Zb1csrY2x+TGAN30db/iojRtrnav1maoTrCFugZTalronTRM6m05DWwv0/3F
OAXYDiJOjB7qdASZZCsQbZMDTb563Y3GSIwfg/FHj+JQMQTQILsNuAjm/sZVMCFebwyym2kwZxND
vt2kmLrdc0tqq5tLSornpmXEnn/0nF3bVSUtdSplJkWRq+cvXKodPrw2fOWC0tqaFcubH1tUtXJB
oTZfm2aTXJK7diHnxkqt01Dh00qiwW6Tyais2MmeRJfTEWY2+fhYx/jpdYGxPlIYjQiSLLTQk+rQ
08whIfWeqFTA2RUXbwkKtsa6LEY7xLaYAQ1LbLxO1ltSLZ7UCCrAApDHRMfrHDTWkpKaSZN1e+no
rmbt3Gu93e39WrfW2tzRtvvVVec0bXcfvZbe0yRXlmRmuBMU2/y2pKJmrc5Pzm6sbaruoBL1oTM3
1BRJ81LK6F3L7XRS/Xpz+Qn0caJ1U4H3FmeNVtOqaAOLdZFFA2njR47NyCjI9BQr+l8V1NdQKd+W
HkL05Bzb7vu4+jsgwUUyyPVkLpmalV5UMD1r4liHQbFGq4FqnCsmKmKEyTh1jMrHdNgU3c/yp9r1
I2kxHU8npydGyz8bU+gwSLdyfQA1HDaBnOmd0UZO7cJNksenplBuQBqYqjcYQckpqbpAD9hTsMDw
ffwu3Md1hGAwxAHBsP/3r9htvmGLS2q0c7XV2iY/ZUZu5cLqpYvKz63ltCtVV1VrKzyhg4qZ3mhz
egrmeioW1TRVaP2O8OqaFTZ3zYIyg6N43rKS+e78ovmFBbHus/cUl9eXzHMUFjeUlGKKN9EArbs3
V+vyvjO/qHpReW52QR2dbnY5zfpkau2pakg78y9HYVG67hl6VxeVti3MyS7SejT7Y+0ttTWKKbPa
+4lnYfmGjmpPWmZpY/NCaSCvqrK9qT6pYmHHZs40K3RP6l5S+kkgCc2yBPoEGvWypL8BLKintgsu
fwH7APoF3EsddpMlpMOhdd67vr6huNitVPqZFHNlSaVWqc2IeralpXPbriXVfIQWrULe71NOojiX
RVmifFVJzrKEYIDoCwPoEZElrn6uVnHoJc7GdvOQxYJ134bk5/fm53mS7EnFxdXVbd53m0oXTMst
yijILy+rcnqq59KgqqrauqWluSc+7dnaeXK9dvjT/edOn9ROHmlZvqJxeS0ksWmVcgIkGUGCswJC
fQNMvrprEJ30NPziTBFHeTzgwlCFikAwdKTQPc6S/r7CgrYVq5AI+NNxnoScabl51dXu17RzZock
03fpHhoEZzD07+/wHtDaNVk72VBbX/dY1eLObdkJXBe9cq7eoJSQMSQxyz3aHeeMDAu1BfipRpN1
tHtkXGx0WGhIUKA5wM9okC05vg7INnYoWCUKxMbFp3JgxsUjCcAZ0BoUbMSZnV+FryNZSU3Gh5zg
SEpyNLUrhUUFdaaqllpLfmjxvMIZ5sLQVSsqt3nmJmysqlhbnOBKKSmQV5gTkpIem5ZgMnc9NqfW
0rw1wbWpzd6Q37DZLrtKaxqzWzfvXplAKJ3C7lI6jeMEJ8VMGjMyysdgsKalJieNiosCbQYF+vso
MrHEjTPRIUoSchtCqV34DIKvLdhmF74Fm463m3X8W4onJXXYmzAJT+wQCjz8gWi5xVG8Nr+lpc6i
nzWvpG5pSWm+WXHmZjvNst5ckzOrqTl/YYr37s12VbaEOJQqY3yb1qsdqfJTZXeCX6zTrSAiyKYE
mOOkLC9sam56thw0LPcoftVtM1pbVsgyrOL0Pq+7QWdAHIAPBJmChA/MtPl+N+xd5H+jQfcd/pcK
nLZQ82tj8/Pbls+vriouzsh0S3Vmk5+prLKmo7lF67ZV1NVxqm+q5t5Ab9H/zlBlfBN8Z83ylaVJ
eh3RU+PFUWKQs1nlksXaYk2TXQPGN73/lGZw5DSzx3XbpXZiILYsk16nzpINeFAZCo5jE53IVVVK
6WdOuYjejhyuziHn09X0QW0+f9rE9urfNQ4SB3/aGKJONIYgpYw0Dz/Ng6rwuuG0R+dPh764AqfQ
FN2TsSq9MxS+pxXkFXYgyKm7TU7lhJ/bnUCfLl88r0hWMs3SspTiIldhT6PWZLaHmrSq0DSzlhQ6
I7eghPr2trfxXJL9y9Cp/oWEktEkIis4LlzRWYNUf0kKDPGRZo+Khr4TOHEPsfZQVsalkCxm60Xm
1gksASRma0pyFPdWA+msLmxu6qlf0te0uTqhtLShfkVxSX9tQV7Twoq09IQ8O02uf4zegmTyTfor
OnNbVZXs3LjbO4j8u1E7Wl9elpkR0kBvcVRUtq/fSv9CA1XtKHLNaq2L666EmAyN6jvEj4zICtRT
k6+PYpQNiTqejQVczMaSXdRpkWmwHIy0W9qQKdXRYE327tFKTDSyV8ZA+02ylGO8a7fW4nC3nH/e
+zr6rkPf1eqTZCTyj5CwYJtOtsZGhgYHBQbolVR5JEYYNexGrqBkQGMYeBx6kghWupQLcUjQlE7S
6e6IzaNP0MBBT17jqpolJcVOZUNja/sXve0r8/OL9xdbCnKyM3sbl4eaZSm3dsXyqqr6pe3ZjhY6
Li93vvdAUqi905NZ1FpYUHACRUq/dprroJTtgQ7+QtJ4fp2WmjA6OsphtBrVNE/yuNGj4mKjIsNC
7LIUkBTAU7ZJF1I2q3Aa2Tn+or/wHC4l0DNhKNTqYodkRyaiuxhgRVrSY1JUBdUSTW1va2uoL5pX
UNicV9TY2ri8ev3R7m3Up6plWcrS+mX5bfVF7urCgtYZ83p7aKTFZFZL27JzamrWvrpjff2y9HC/
BGpoWjaQlp6vkeJyT3ZF6XytKFcJLZ2/+NVpzk1AZSFbbehRH0VUiEK1FR7pCNBZ9WqAn69i1Afq
JSmY/jzKYRuKVhyaLpvd4IC7xCenWJ1IncAwUDvnNqduNDVTi+4+eWCDaVN1lZanuBAGDmmHW9v8
TCZd2O7yevpuu83lNjfX9vX30Sw5dFNdyO4ubZu2Vdu2bGl9reSWiqjPYCN0XsPeNdT72EgymZSV
NDZASrSq46ktOVE2RFqkQKuDGiTZGKMmjx2JIGK3IIoYJD+P3gkDeIZpYTRKnEkUqnd6JB0Ua+eZ
Tez3FI2Y4YxK5SYRtuFWsej21BxakVZ7frCvRZZDknLp6PL60iJUJ5VVJ/vaKk/Sa+jE/Zu6wxOW
1LYllWxsMvRrZbuPIuXuzF1U6dm4rLXD7TQVFBbXpI1v6NdWraqhT+yvKF2xuDJUyaA3EqHzvYYN
6h7UlJNQVUaMj4uJCtdbA9X0iYljx8QiydNJvuNCeBjJuJj+GwKkC8H4QoJGrAJTonQTHHZpasYL
NIFYIttCituWJC2qyJ2WMN5cOq+lZWvzCnr/yoTa2r7cnA1NktzoGWzLy6ypWpyfF2pzF6XfW1mZ
l+dnU29RHJ6TZfsPNTa2tLYfam4uLPDQSHpfdd25jg3mlGJdWF/euU32nOzyhTW5eSUFjtycRZU1
SZ4qIuz3O0OTjwLOBW8E6EJ4WFcMyQ4jZhV5ifBd8XxGTvgJTzzphRSIl50e2V2rdSetX1zhlJXC
yhe04mlSvsvpSkvJWFudn6fGKPubdnUfXrV+wPsPray1nm4prChdUL6woorecLpjQwevJVrZdkMz
PDeB5JACMi4rftY1GWNNemuUOvv662Zckz0pLdWTnJQ4NsTmY5CJLSUuHOLdeFHpl7z2QoE8BKLh
vxw6l+7QDy+YXEJXXPwEUbZ9J1+WTzYvLPezFRfVLKlLWtC2fEVhkSevq2VBadNa1KYTTjxWVFiT
6XYnJXjfcRZuQHkc63LmVOVnripfGEpfclbXTMvNzvVUNJXqR1c0r1qfllZTNCfBbQlfULai8dnq
yvX3zm9r3XBkeVdLaUtzS3dThtvljDqRmVAbaraFOmx5ZQ1m+4Ky5nOSyVlUlJ9XnF8cWllRuwKY
LGWPgweeJHFgufisqGQ8aNVb49Qwfykwjrpigu1IC4wFE8fphxiOcwEn5GSX9QekfElNQ1UEpd8B
Y/J4oR5pt9ntUqh169yiouwct7KhqandUdBSe6ipSTXXL91hT0MSadDdPmfGYwsrMnLyi/NretMz
ZJNfIX20c1NHe3unO28DTS2ao9rS244OnHSn9TQ3K5nl55/TZ4XmZFdW1NQ3OB8orVq2Av5GJdTZ
GYZDqLMtJDprhCXAoLMqKup7znIGWb1Ob4bZrRfMzqc1hecT1gtfdOMUi8nWrc3RauiaErOq2HZr
OVodXWOymEKP0ie0Em2h3GwxKfZe+qhWqFVzL1/mXS27DfuJjYSRqKxQpLq+sjVsRKgt0Ncg69QZ
IT4Y1HEhT/SnF/OrTDoMK93Q6NI2u9PUnZA/69WGmv3F89IyEordrhYtT6unz0u1JotSvbB2Y0uL
tj982UBtbcOyproqOt3tbkf6UwBRJBpDDyg9egOqnHjYNtKPRlCrPs5moHKsIzTY7qsaZaK6oiTI
4x5yTb44xCk9xRMXHx0fFQMLxhgEy4sc1s5/4JdiYmiyOcT4J1T3XeXaQEtrX39La6dJlmXjn8zL
uzMrq9IWylpObGZaeHpRAlJP7zuOdJvZYrObzJbcOrsMPXXBOl3q88jtxiCzjh4TPiJU1lsN6phR
I+OiIixmf5NqQJAJmGodcbEgECuZ37ERsIVUbcgTY2jKhbh6EYm67SHuBp4X0nW5iqL41dSWZKxY
UNZR2KI1VBYW57Um+HmSHCGz5pTmhiS10nv44qbsUvwUc5P5seqiguWH22trLYr3K4dtXvO0fNuc
woyctJL8Uvv/52uxOjqOuJS1hh6RtabzDCF13MioEJtZUazIfsaMio0IV+L8Zcxr8sWSx84hgrzH
FTuJeqADvSwKoGiBKUEKF+KWzoZK6NIpnemQaTK9rwWV/02tXdpjr63V6rWGdocnPcQjbTK5M+YX
Z6fn5c5wj8/wlOQ3Z9vzk4ryMjN0/za7TS6XyyzLHQCZIkv5Dld2bkFuWn5JTkaI89zKRQ3maldS
SV5agptHpx3sUWWm0kWy+AkRH8P/UXq5M3q5Sxe+HSPlNIt6yCmQZx5J5f0RiX3Betm/8Ws2ycW5
ByWPTALZIDvPNrNjrF/7Er/tYVlsiXaePc3+ymrYS9p2tpcQVsTO4DhM7OR28jTOf+s9ix4CSCJJ
ZPxbLJlN3ueDaP9gr5MI0qd0sXqk2I3ap+x99iy9U0jQSO4mi8lYjNLKdqOXlexdHDnsdRyT2Dvs
be12Qrz3a3eTRnoDeYg8SHaQ+XQRO4V7nexltlZ7mS1gfHmZaDcTvndxH1mE4wwIJZUM0CQkLwRP
JuAanwvZQ3TGF9Vl4vLwf989fvAf/fFdQx/STqaJCbxKJ5BXMdksZKaT0SJQg4SCTY1EhYheqPgc
YlUD/O8clHqKvcceYJ1anTdYWwqm12Pqi2GMY/Rjcpzo2be4QnDfGfY1jk/YARhI1iKZAfdSKPoz
dRnbzp5jOzBVCfdp7DA7zrpx136Y6322i33KutgGbZV3ktYk5CPsS1z9mr3IbmEvD10hhcSH3EhW
k+t5H/CesdJNdCxy2EDMIww5digJxl0yG8RnOsatp1aBxnr5QzULs/mOQobQRS8p6ztq/P758O3H
YPDTMEY0eDQCbBpKfMkoMp19wPZA8s/Zt2wNNHWafQMdnMCcPmdfsX+xTvYPtpo9wf7ItrHnoVsf
gNiXXAONV0GeP5IMMoU4iZWdhU4G8FwvQLQOEFoFwN6nZgFWk9mT7CAA8y77iC1mTdo9gz9nb7B7
WQf7hKTQFXg6F/IEQp8H2dto68SY69gLuHKKHcDvKeRhMonGQEOJOJtFppJryT3kOnI/yQToJpMy
VKF/AK5mQ5ZrMNke9k/jNWojZjisgiFlff+T9CDaG0g+2YJnpgJXS5FvTycuMpVp9GbgR4ZGfsHS
GYNOTsEhAXxjFJkJdFXTdMg0kSWiczewYSXRbCIs+hXbgfteJvTsOdj+PXw/b1wAvHzI1hr3qc3I
N8d/jxjI5eB/8eqlb9J78LGNONMTCvDryE76AtmG6c0Hb0QDTOMhxnjAZwwxEQNjAmoInWwj+z0Y
gED1/J8X3wZhIA0G3spOa23eG7U2QM1M/kR2E0V/5rxNe1H+Sq8HHJ5iXaIXyrzsJMw6wD4DlA+x
j3G8BQMdZpvYYe2PXlmrYa+wX7LX0PcB+nddMX0FBvGFU+qgXBe58M9EIqmORvLdTUq62U7dV2rq
kH0uzva7wOX/dZIHyFdAWDQeUi/0gwm0sz+z9RDDi4nATzCZY+yodi2mp6ip7EE2Dlj9FAIeZv+E
2F+wM+duZ6+y3wJTp+gfdJTeD66wo9cAWgI69sVw29gq+QM1icwj33ca8mM/uswl+oOf/sNTOHpB
vo+DUufAfOXgoQDOaEDbCXjicaj7COuH3Nz/trK9MMbXYKN+9iWMMcCNy5kD5uX+a4OKzeCOCJKE
ABCJngahlbUwTh/8+HPgdj87in76hEefwvEZrn8KdA79eoLtg+eegX71eF6HvlTRrwViGvHLQWhu
HxjiefjuAZx/yzNkGHcMaD1aTQIzLEdoaoWMTwNkXwP/3RhvP4B3AKPuxphfojcjGQcJx4PlRhE7
+4roMPZHABMghHuaMetn2D0IOUtYE7sDfvMkmPYgnp3G6jD/Y+gP/2C1ePIbjF1DssGY89EeIDdB
e3PR+3jYbgJ0cCfY4WYSgu+hOAsBV0lwDRXPjgF7RIJTY1FxOvEZS6bB+im4asNct7K7FarWwyKX
jzpX8tHLWPl7weoHp1IJ92Yce+jL5APYbjIkvQZanwQms8MCI4k/4k0cvgfiqhGNwo1kaGzIfTez
KvDmPnw7JaKVF4x9HBo/C6Y+Aswcg95PwLonwVnv4o4PWbrWgHCu4WCwzUOISMeh7yPcb4Cnc/h7
THjQMfR0BP0NwNuCoeFocgOkiYNm4SvqI7DwyiFKAPoIRupDT6fYFpDB5xj/fbRvwN49uLIdiGlk
B7Wd3kbtX8DtAYy4hs2H335ERtJbpU743S+g/5mwpx/qbgfsYiNBsBJvBpzzURiXWPvV4FbtNvS5
BOMfw3zPwWsf0pnpEjD+VNFHChAZA2150MtU8msyERjxIE4EExV3U/Iv9r7ytjqCvEiubDX6Y0++
nGPTK2YmP7x++RsuM9Ll7yDyEsSUkdD8LchQSoDy3wK5CYh6GUBzImJWHH71xT1+wIa/YANO1Wdg
kZOwxyFgYDe8dhc4by88uA3aq4N/VsMvn2bl4MinwJ+fwOM+Y/+GJU+JmH8a9j8jrPk5eOY0/vJc
6Mwwvk6Jawdx52k8we/miDSS35O7MHoyGQPkmIEaf0itQveD+M2AM1XsXvvg0yqucAsbYW9ffOOI
NyI0jIAFS8hCMgP8UIYZxiIOO3HmQIaRgLvicc0H96IXwfrHEcROQKJdmNcnaO+AST4Eb3yIOR7B
sRetl+3E7D6BrPsxUgSZpczAmJzbwLdAhx6BcgCc2w1NdINnm+BXb2Dm7yF3OYhvB4Hp5xDonoeu
NrN6cNwniDtN0OX98LVm9iaeegPYXgcd8UzwG5FTmkk4Diu8ORr5SSxqopvAPIvI/yBbyoCX3w97
3gmMFpJS/DoDLQrXIyFXMpgoBjMOg4T7yHPQy0j4i4+Q6DNYsxuj/gVz2sIeRtsMj+jE8cjw982w
9G3g/fWQbCNs8yV85VvgQif4JAg+EgA+DMYoERiPa/c3yH6T4DF/gCwPAk8xQFgw/Gis8PhwPBcg
MHUCPM7D/wHYvB9SAGG4KwjzuwsMhlguDcghajoYg1w2Ff0PrvCDG7dCPxXw38nw5FBIFAINjhBM
aAA/aZjZoEDmadh6iHcQFyHV57D8ftiBs88O9qGo2Mbi6QzoMwz92ASrUNx7GtrsF3z1BvxkH+y5
T/TwlagZJpJqNR19v4Q7tkOvh6HjQ2jvgtnWQPs7wXw74TO9+PUL9qzgujcRT/cgCdqLp/qgLRRn
0DtPecLIrdB4Cdp42DsFsWkm4eWeE9rmqLbiLATzG4UWgGgQCJsPwh7P8Zx/8AHjjaiWAi5Vk3Q4
dUQhNo58TR4hkdLTqKoI/Rm7jt0KttyJOSjeo0aFNNE0soaNxr3d/FObQejA69rbPg8jKRxAhx3s
tHGsWsfz3p9Qi12Rvi7eLL01FGLIKroAoTgNE7sZ8JqMSfKUfTwnAcDoPNT1DRS3F3DqYKVsvdbt
XaN1w+i3o31Jd5EjgihUKM8BRwgXqR8CIIczDNcL03yAQPJ3pA/bYfDJWiWbjPv9RRGRAEM/otah
UHkWTqMBtN/gqU8EMbwHF1mLUux3cBEJxzrQYDsSxAWAQTWjoEQNEPPCTO8jteDVrE4kVGYY52do
FUgNridNpBYQWUh+RX4OZ56MeaVCUj/cK6Hy1uFaGGb+R8gxE3dCMR+wBsMW0zVgtcsmDj/W7uXq
36tEj8skJfzjFM+3OQ0LCuBLnL+nm0FIWQBeDNw8As5lAtxAgnymPLCK41te6EC3/wbZvAoiWc5e
Qwn0Kj4XwVE2soWoJvR4UhZkpwK2PoQvGyrQUzBIJhl2TB4uDW9GkJ8O8nPDimb+XqNIco/BJodF
onsYrhKqTWAjeOrLnU+krrxs90KKPljvIIKZhiAejVQtmkw3XQOnfAFU+BaSoGrmy6phMf7MEdz/
KZ7YC1t/AArYAFf9FQjxHVYLq+9GkroHz/we54+iNHgCxxp2F6z/L9aAJw5xSTCTCSCJWLilE1py
QntTQM0OzCUC19zQlwNkEg8L34q0cTbanXCe35MGsgD3ZIBsYjHLQGCB63MQCAoDjfFWhjYGYSCB
VJLb0NP1CN1+GC+RFIuGW3vYWaUL2ed4UnCl3OLKPnnFxZPvpJ0PDRVP1ChRqoiiYwa8Mx2fE8SM
uQUNsKiRJ15ob8BPP4H2vtBe8s7UXsLZ3+B9h0VKeY5jBoS7mX2Gv8cxl+vJBl46kWQ8y4ecIt1E
s4COEDSZlxb8uijVuBczWPYrWPZL9HgMZMrLhV3aoBao1sNLn0Jj8HfvcGLaB5/vBD33wHpb8cTr
aLtYz/k74cG/QdjfyH5GLv0rhn7j4b+RtFI6Qe8RCUkg5EjFLO9DMXkXId6l2jPeSdoz6F+DtOH4
jRcEOWibaA3pgJ2CYXnesvlrd+jBwgsr2JJgJhpX6Wb2sOJQZ4MOLqf/q3jpVa14dcf+SU9f7r+1
kHwS8JYgFshi4IkmzIgnZjaRmsVAP2OAg0nA/RygfgoQfjdC1W3gixuRco4XOrWKFE4WbEKFr3ph
HZ4WfimSzk/g18fhiSe0r70faUcR7O6AZvfQFgQgnrLxJbijsP4Z3HsS3z7iq5/wwK/Byu8AWbvA
5y3w017Ylad3nw4H2a9w7ARf9MPuJ8AIp0TAR8GPv99izHN4/tfgJy8vhiAZA4oVWNUEeUNE8ukv
OIonnxzffENBj1noBdtLIgXcL/rnhesJjMsTy6/Z6WFETSZ3q7PBO8+jvQIm/IitQtuFz11AVyTQ
lYAkfSyCdhZ0NQ6YsRGbSI8Pgo/WI22sQRr5O/DNPESfArQWlo+2nlWg8Vl+KorlA8DyIaD9Y5Rm
VCDzdrKblAlGJOC/pWipiDwpogCeAts8CQ6ajlLAAS/2wKJBmJsMyYe4cB94bz+sUgfP+Rie3IPz
P8G3/orouIbdifYc40UdTyk3gk83YibcV9ygoFEYqw7xNAXjpYLPy4AOvnIdBwRNEXw4Go0n6YnA
SqJYgnXi1+uQwgyxXiDOrMOfc8g6DsT3Bh/QDaoZMM2PU8TvwXczUtI+MCuPGkGwn1GUg+fAG68g
Cr0K/tHzEpQvkooCpZ75sUcgwT1qBtg9DOk5T+t2gJ+2sOe8R8/v9/aDvW5jL0o58p0S9+mx6DcV
drqdvAneKiPvELECwOQd6vVihY5c2XPpZRcHiPQGGORhaCeDzEXy74DsfKmKF05vsEq0mSjDZ2E2
vvgtDz53P9UjT7DCbiOASBMaFfzIFw7fRkrZhdzkI6BlL+zmZV9D2gnkQfV6zOlxMbNHoIkdYOGP
tTbvXK0Nth3H6kXkochQwkWuks89FfqjmG8MsNpNW8mH+CUCFoonRfDxiYgBEbBwOD59oJNoXG3m
Eekttlf5k/ow4LD4p1AavRqP0SsFp/9wq9Qr/ocQk8kNYmPWDxwcAFaOg7/dDIyOhbaLUBi7kYs5
gMEkzJIXlrLIaYiIIGfEElQPGGU7PG2ENkHbMRwJfaUQ6odI7CG/FAgeBT+OAor9hjIi2In3cVos
iJ8GPz0MG76JrGIlOGo1rPMge0wsS7wDVDbDSu/B275B2wdEHkT7AHzFueUrjP817j8BrvuGHRWD
W6Hn2aKo5Z82nI1AaI4B323y7vB+DPu+gbuP41kGpOthDs7Z8fDHBzHr38BqU0k9UBQqlq9GA3nc
a0fi6i/Q10hoaSxGQW4kzUc/T4OpuF5lzOesWMs9Ba57H9JvwkgHEFE/RS7cjL8rIOdyPHGPNgje
eIJNBEvsA7d+AYb4CNLs47wmSvwpkGYcytpjgEcrIqtGQ2CVMLGYEwWkcs61wNPGAXXhkPI2UQIt
xGco/tqG7LuLrTaUq9PJPeTHC6U/BtOPb/hxbLw6wi4bMKUomCMBKosRqeo4sRPD3TIO30aA0IbC
5NC6BZQKY9hwfyCKgmm4Uz+0Mi3oiVenvBLka86n4Xyr4Gox6IOvaxlgQCP6kfiqiUi1+8QuC0+F
N+GpFdopBIklUHQ3Qs0HSGErEAi/YW8Tvv+kAo48Zec1OYfqXMh6u0jmMwHzCNBArwiOJ0UA4yvI
/Hw/KH4v6OR9sfr7CV/JAS2lk0fVScKYnGgeQHiag1LsPrR32EMABF+B3S9CUy9A3YunjqKe9RVr
NdkAX4pYXb0OAPg52u1IG54hf4XReQL1C9IOdwogfgDRX9FeYEvZHVo3eqxFBb0PlLYPRzva45jj
3czDnkFZsXd4pA9Rth0EBfbDCr+EjicBYLcK1+aJdaCYezRsMxFzHkmugYbHiPuSya/R4kET8UhY
XoArjIEkCYDjBDydCO0XkCc43gYfMGxRs/Dc1Rfhroajy3OavpYo8PVzMNgL8KHtYItlMOsexJ29
8DZu6Hcxvc/EogzPogLEUjaHkS+i2QBUxTcX34TR32Uv8/xGZFo6iJ4OjrsZqk5Bzp4P1Y/DEQ9D
3Akf/C15AN50Lbx9IuDl5nkNOyWqZZ5xtbH5Iloq8jHckQrlWVDdjoNC/gfAdKGvaBIg9oX6cN8r
GP8DAOJxmJ4vEG+Gxx9D68PZK4iea1DR/RpG/iVMPp2sAAA8YJ4K5Al/gmTTxU6yCXM9LjZP+XJc
G3tSmHQX8vd/A4pboJm/soNa5OBIzR993sJekaLkiVyBu9m3xjHqtWQ+ubrXXnll/Qrrt1cmDd1L
UG4CkBKHkM1LuDuQcsxGYZ8K6nLwRJGvj/OyBcpk+Dw7XCIPwJyr2Z/xy4faOm+Ztk5Qugv0l0BV
yUp94aWB8FbK1yoFN5xBDycw4R1Q8ePwrw1Q7xoAY0Cs3feJNaze70DDBT2MAuY5NHgAW4EUrYPd
Cx9ZgwT7uIAGD+kRSPxcKCxnAee3q+nwum/g+V/De7nx/sEaMdKTUPtXANbaYY9cwgLQNoFrOmCY
59D4TlEEuw7QOSt2Jgj6I/CjJjIb8z4jWC8MMAsm22gD2Qao8RV3G4CQBCjdgDRxJJgpYhhKR+DB
HeCOXeCxNzHiBkjEV2U/xkw/EiuJ/2AL2Wvoo0SE7xKw6GOAcBJmnImyYxJ5BLO/BoUapbrB5cr7
6jXkd/+x4KFXemvgql77n2uzFAC6R+g7Ao5zA9zuBrjNk+CgMCTkUZjFL8DCEZA8EjJ7hO2Gdm54
ouLDdyBg+8/F+joKJOi4H260EGiziB0KvnMXgOf8weS8TB4UUYQXUnuhtQpYfABjRQGTTlDAKFgl
Bd8m8t1yIDcQtkFpA7faCSu+CXx9KnYNu4GBI3BmXmB14LMLhTMvm76Gez+D+zaD59/F30X49QOk
zJ1IkNYa7wfePPAIHWaaQGZiZvmw2v8iQehCsrkLVLYc+PtYrIO3AlVHUUgcQ3DnCyTTQAxZ8B4H
ZOPrrUhAgaZkENZqEAXfaw3E+PvwzD8x1moc78ET3kPqvh4pbjOOefAPHru2sz/g+m/ZS2wWSKcR
EWIlpLwf8+PvFXwO9DRA8o1I01Sg5jrEnpnQzN8QjWeC469DgsTfJ5gOuWaTjRh/Gvkz7psNDM2G
7haATl1AHc/2B43T1OyrYov+FEhdtTK/Wt4xC5bndgwDciKg+TtE2ZCB7+Hwggix8GgTdvYXS3k+
YCAv9M93b0/x91TwzK+BJjOI1y7yF3/wgC9mfwlJp0DhH0PjVcDGafTmhJaicWTjmz98Tk/MCEpn
xZp1r9jh7WVvsfe1l703aX8f3raPBurGUD8pjPqLTEiBBJtRwL7Jfg+rbAWW3oOF/oBrHwIXPcho
dnwna9DBJsvVbBH7D4B/Vosyeg6Syn1IOPeBq14Ve9uH2AlkSrxwycIxFaxiRUnNI3iY2L29Dnad
jvEjBZL4E2sx0nOQg6esXUjG3waS/o52B1B6HL91gWl3QrYX0Pog7Re4+1VIxV+u2iHC0se43yv2
vgk0mAVdJ5MXgROkyeKtAL7TZiPFCJrTyaNoU0k12izyFHA1AeE7FQFwjsgdI4Tnq+DjZXxvd3CK
slptBkbLL73tcXHx/j/tLl7ulSd6lRLrB71IjwPzk0k0NM2XTA7AQp/DwzfzHQ8k6UPFj78URQOA
hZuQSUbBwjFi7yEYmDBeXOI5I6JJH/CwGZZaAw0egP72Qnd8d343tLmT/Zk1QlsbmAZrOcSyfRRm
7QN9xMErXdDlz1HMZyB6ZCJGeKDloeJKGn6DSy9ixmmxd3wSNvuYndQe8vpqtSh4+T/+dsON8INY
+HACsDiV6PQnB9/3GjXK4oG3tzhmSZ00mX5Gz9C5+ttg6wb2nliC5SnQSeigX7yHsAsxdysw8xHS
kkaWivYeCpwdmNEiYPd+MM7fwJvrgccPgIq9+NsO7XXynXYRETPha5PEJkOMWOgOxFzskOk6+O31
wM7D8MQK6N0uNBmIGDYScv8PEBIAHKUgWgdDA+Fizn38JRhgK0TM61HYKw2RLxnaDxIm/IhtMTSq
D+HK5TbT6FVeQhhCwMPDS1deOhoxNgXanyhydpvwHxvsxJczFbFv7IOsQ0W5+SBrh83fR7wJAmto
okj8An7UiXjOdxj3sTQth6Xhnm9hh1UENlcfEjnFLhGxNESXo9BgPzTHd2B3IIn9N7xsJ/T+Etus
bfIu0d4CJj2sBdb/hj6si6aPQK9jkcwOLRcFQp6hxXO++MXltVMz+VKc7WFfKD3qArLl8sXeT91s
v3z+eMVK8fKsfyX105+SWFz6egBmcANI/KUYC76bQOQW0E4wwMG3xFVcs4ldBB+AyiT2w0yAVBIO
vp3NS8nToO4jSDGOidXVk8Lo/qCrBv7SMYDIk8QgKNVXvFs65BJ85fYbuMTn4rXFnTDTYRByL4q/
Xjj422JXxsvOAyBm8fQIHNdi5DyAvUgQXjzgngNIZQH4sQLspovrJXyF9wtQxwCg8y0++WuMeoCw
GiFnEu5KwBwt4nUFw5BMYu9MBwhyyY7zWWAufDX2sKiXtiPobwGY/onC+O8oiPdC4kY48rsoKLeI
nZ33RSryIa7zV6b6MfYXGPk4YMs3rg/i2z7xja/LHEeY4fXJh9DbCVRGkpAgi/xRLYMedgOw/EWJ
LtRinBiewSj8pYld7Gn8tgwkeBa/nRezMomQmwz3nwm3vhlBYgS0k4QigO8nhItFBA5qG+qjJv5/
WIC5MLjLM9DzavT2tNh77IHmexDC1uK8DdS0DlLuEdbYglkcwjz5S6j8dQZOWp14lm+++0PuKPTu
gnXGYdx42Ho8iHYhbBQv9ir5apAbsv2B8FfaxuMuvko7WSSnE8Raci7ImML59yOZWIOEbocIoluR
lG0DCd6FuW5E+jm0DNCGay/i6IQjr0aIXwcJ1yGAvy4QsxG65VYfGCadcKAzHUSdiAQyUawdJ4sd
0Wzo52HxLQeS3IOWhiQ/Dff+FlpyQzK+xqeirFg/9Ibgi8qj6r2ox66+P32VXZOftl0y/KErEO8r
6shW+jiKnJEIXZkIPR7od5rYRQoTK5C6oZJOYJ0nGJ2YeScwcZa/d82XLoArnsaeEStmPewWrYPd
CqREi9ddDALrVARYg3jFiZeGfbB5H5us3c0mi1eWfcUb0ymw3DY+/WG//QafZ4G9sxjxqFhROC48
/ywbxyaI/fIA0k/2EL16L/D1jHijm++6MSCvD0HtEND9lqDobZCsBXjHqNpT3mTtL+L9zX9yG9Kn
dB66ErPnL7CEid0vI3w+RKy2n0FfzSwPbS2bj7aKTUZ7D0nAdvTO93BWsET2lFje0vBsEux6E2mG
Fof+XS8WxOLFa2XXknokVDxdykPY/AUC61Ti5HoUa4aBNIJ8yF/H/u97+P99D/+/7+H/330P/7/e
+1/v/a/3/p/03v8HfR+XE3jaY2BkYGAAYlNVp7Px/DZfGZgFGNDB/+u///Bu4nEGMtkYmECqAc3a
CAIAeNpjYGRg4HH+/QdIZjEwfF7Hf5sBKIICPAGEWwWTAAB42uNhYGKAAY67DJbsrQy6nIcZ8jkD
GLJY8hlkWQMYypk7GRjYDBmV2X8wTGYXZyjnyWL4BZSbwXKXYQUQi7AeZnjKeZrRHiimyC7OmACk
lwDFeIBq84E4CYi7gTgNiMOAuBmJXgMSB5rNxGbIMBlohjKQfxbkDpCdQL4+xzaGMxzcDJdZhRnO
sM9nuMnhwHCNRZbhKqsgw0mOdIYTnEYM51l8GK6ybwTKdzIcZJdhuMJpC1TXwnCERZ/hFCsnwwmO
3wz72Q4yXADKXWBvZ7jI6cTIzL4IqFeA4TLbB4YbnF4Mlzl+MVxFtguZDQDfMUVRAAAAeNpF0L8r
BGAYB/AP58fdcZw7zuVHUtchQopCikGOMBlMRoPRJMkfYLhBMhmMZt1gMpplkEFmg0wGkzyhvPXp
fer9Pt/h5ees/asbDtfUb5OIOXFBQ/ZPlcYyTX00n4YPksekYjV1S/qclvowFw7CF601MrGbuaHt
jPYxssnwRsc+uejPRzb/TmfcXYXwSKH2q/uE4gs9RXor4Ym+V/ojO3DI4BalyJVbwx5DD4x8MnrF
+DMTR0xGx1T0T+8wE2+zbcxHduGOxSaWons5zUqOyi6rl/EV96yX2Iidzeo3/TgqTwAAAAEAAABJ
AMkABQAAAAAAAgAMAAYAFgAAAIgARAAEAAF42oWMMQ6DMBAEx2ApSROlS+suT8gHKKgoaFIb4SAk
KkvgF/DvLMQVDVfczu6tDrjyxbCN4bHvbQoucn8uRc/MVvxSYuxNieOdueDOJ3OpPGS24rXyy9i7
JiRXhy6G1IZhnnw8xkdPhWdhpNeTRi+TtJZ2xN212gMzk3rxtH1y/wF7Hir0AAAAeNpjYGbACwAA
fQAEQBAMDgEOLAwNRywBLCwYDUcAjbgDPIUdKysAAA==) format('woff'), url('DavidNewHebrew.ttf') format('truetype'), url('DavidNewHebrew.svg#DavidNewHebrew') format('svg');
font-weight: normal;
font-style: normal;
} | public/fonts/styles.css | @font-face {
font-family: 'DavidNewHebrew';
src: url('DavidNewHebrew.eot') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'DavidNewHebrew';
src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADasAA4AAAAAWlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAC4A
AABOGsQC61BDTFQAAAF0AAAANAAAADa+HXAiY21hcAAAAagAAAE5AAADprTjcpNjdnQgAAAC5AAA
AL4AAAC+4ibCK2ZwZ20AAAOkAAABUgAAAdgCEcJhZ2x5ZgAABPgAAC7AAABOjoY+l1JoZWFkAAAz
uAAAACsAAAA2bKBVO2hoZWEAADPkAAAAHgAAACQcIPxeaG10eAAANAQAAADxAAABJP91MO5sb2Nh
AAA0+AAAAOIAAAEoAAhELG1heHAAADXcAAAAIAAAACAA/QEWbmFtZQAANfwAAACFAAABC4FzfZxw
b3N0AAA2hAAAAAwAAAAgAAMAAHByZXAAADaQAAAAGgAAABrv+Y79eNpjYGBKYJzAwMqAAzBxszGz
MjMxMbFglXZgUPjAxOP8+8//nTzOLCwAe0MGyAAAeNpjYGBkAIKGTmYGMLBmZWBwSSzLTFHwSy1X
8EhNKkot/w8E5v///4Oo+P3bgQEAP5YQYnjaxZJHToMxEEafkwiJ9N6L80N676QS0tdwAbgFh2DF
oTgFC4QQCxYsEPvgRCjAJqCAxBt53L7x2BoDOgQr3OhXIxFUbY/3RdXrWWm+ojb1RhNmC1ab3eF0
uT1enz8QDIUj0ZiMaxxwyHgyZQuJ2XzB92TS2XyuUKqUq7VGvdlqdzu9QX90sj0oRXH4Mft8+WN+
jEF3pbyGxKCOWIozcSEuxbXuRncr3TIoo1KTSVmWnbimBZZLpZXiVJxvNC7pl2Ep15r2RrMdgSbu
xL142NijeBLP4mVtrytjHyMmpTVjUd6KDTsOnLhUBT148eEnQJAQYSJEiakXxNU7UFVB1QXGTJiy
KwlmzFnwXyR3iEn9Yf40GbLkyFOgSIkyFarUqNOgSYsj2nTo0qPPQH24ISeMfpfyDaeCNHAAAAAA
BgAGAAwADAAYAEf//gAA/4kAAAAAAAAMyQNoAx8DGwMXAoMCIQFgARcApACgAEIb7AtYCkoKOQnn
CYUI3QiwCKQIoAiLCF4Hzwe2B4UHXAc/BzcHBgbpBtEGvAaHBmYGOQY1Bi0GHQYUBgwF+AX0BboF
kQUfBRsE7gTRBI8EOQQ1BDEEIQQZBAADzwPLA8MDmgOWA3UDOwMvAycDHwMXAxIC3QLZAi0B0wHH
AXUBMwEjAOkA4QDNAMUAwQBCAAB42nVQPU/DMBC180GhLdCUQiuFwZWVJbWp2KiE1GA3ESOICsVb
XUWo/QMVI3N+zSUjEwz8mP6ETuCEDVTL8nu6O797d9HFee+s63VOT47brebRYePAdWwLI1aiNyRJ
vsypeHnmrAwRkvNXQKO0P1E13NYAzVABlp0/Ic5G5oIVcvb74CUgKgpsB4IkZKUzsAODBBxJNcmK
KMrn6dCcAg0v1UNaEScgyQoaQawBPaZDH1x5o3ydqaeUjunOH9Ot6T3ar66zvZVuIKbbf5+nuzrk
dfsTzj7N2AibLVQm8xhsqdeL2UJwFhOwqSix5cqNpDKnJgEOFQNoVbMatUG8hkiT2jfc+YZXFBIf
7pUClwojgalYg0UFtMMBZyRezTh7Rx5yvz+EMVF6LqqQkMKyc0EBa5GYhUXzFKKFqvpxZlLSk8bu
NeLsirMvzqbQC/kP7tp92QAAeNrtfH9cVFX6/zl37szcCwPMMDP8EAYYYMBRURAHBAWBlJSUkm35
FO5i4YYbblKyKxWflm2psLClkk1b2SSjopYtcs3F0pIS0xRXMzJK80fRhiX+SDGVuef7PgfUfqjb
v5/va72dYe6de895zvO8n/fzPOfcXSJJhBAfHERHjCQ6KyxYMhCDHIwToyQX6/REX2ykxCCpAbrR
SWR0otPitMSjSUQhOd8+4EMGSI76vwMPEErS2JNKp7KCjCdjs+JGxYTaTHprkpo0ZlS8KzYm2hnp
CA22BQaYFIM1Wg6jejpBdDllVKIrJTUlNY4Sy4T4uHijwRhB7TajNI4SKhmDgonFFqxzWp1xngkp
qUGRNCg4KDhFKbS5XX6dWg+90Z1fm9bUlFeUds6drxVr1d3VR05oG+V6acc2rdpZkNtX1NKxqbN1
QWdaQYGzjwbTl+m4suL1lXO0re6NZeX51OiaRu+hMVqftmyjlqsV5Lu1bik/p7S0O3/b7Oa27o8/
WIvZJRCz8WHVn4wgMVkjzOZgYqDyCP+QYLO/CSLH60OpgYab+YzGjh09NCWr02qOj3O64jxE5xwP
sYOsTuo09CgWs1KtbVPyZml93nVR2vI63ZSKnGxTqGmwQes1FO22OV1mGik10uSuLrltuZavhebm
LRzQ9nvXEImUE0UNVPqIncSQuCxHJA2gAf7BKuQx0RhnRPiIEEOU7A8FuwIuipPsCrSY48fi97h4
ooOwNohDY+KjoXHJ4gyy2Iz6KVVSTfc0V9fy8/c57FrFMurjjJ2vG5HWl5+WKefqRmvhiiwVSX50
tFazsnGZVqX5WbSTWs3+ltZGKV9OcBfQGDrTrS2+tx/6KmP3K9uULuhtTFZsXKDkN3IMNCRH2Uyy
bE0YExcdFREs6ySfGIMdoo4Too4anUgNRp0Tsuri4uNioqFZg9GsAho2fNHxs1hroBXKTYY+LU7d
64q5Rt7Q35G3sqm5p6LQ48nXurQQeoPJ5jqiyIpMp3xRvzahZN6ihrIjXoneqCRovfRBepy+Tp+o
KyluK1lQ1k5vkmTvndqnWm+SZ+5ib6AtNNS8jSZLCp1ZlpOx6KR3kGA+jsFlun8rJ0kwCcky+0pB
skTlXKMfZA8dVnOiy65LCaMpHrNOopKO4zQoONBBbVKCra8lyRTSr23c1n50o8tsUpxy8eDRfhqs
e7t7N51CE+nd1FfTtLaGQ2lud6HWe/TwUYxZScxyi9JEgkh4ls1fDrJbLQH+PpKSregwbsiFca1c
Z9CJR2gtnsrBgdCXsy/ElK+7qSrbUbjg2SWtWjWdeK5E8Z6h67JztP3akc2HgfrrXlteU+7dsrIf
g2tJBUSiMexxOc3HDPe2k8isYKu/rLMaVLvV7O/na7he0WPg4AuOS/lwKk1JhVPagmGWwDAq63Uv
meeXZmoN9OVDtd77Zb1csrY2x+TGAN30db/iojRtrnav1maoTrCFugZTalronTRM6m05DWwv0/3F
OAXYDiJOjB7qdASZZCsQbZMDTb563Y3GSIwfg/FHj+JQMQTQILsNuAjm/sZVMCFebwyym2kwZxND
vt2kmLrdc0tqq5tLSornpmXEnn/0nF3bVSUtdSplJkWRq+cvXKodPrw2fOWC0tqaFcubH1tUtXJB
oTZfm2aTXJK7diHnxkqt01Dh00qiwW6Tyais2MmeRJfTEWY2+fhYx/jpdYGxPlIYjQiSLLTQk+rQ
08whIfWeqFTA2RUXbwkKtsa6LEY7xLaYAQ1LbLxO1ltSLZ7UCCrAApDHRMfrHDTWkpKaSZN1e+no
rmbt3Gu93e39WrfW2tzRtvvVVec0bXcfvZbe0yRXlmRmuBMU2/y2pKJmrc5Pzm6sbaruoBL1oTM3
1BRJ81LK6F3L7XRS/Xpz+Qn0caJ1U4H3FmeNVtOqaAOLdZFFA2njR47NyCjI9BQr+l8V1NdQKd+W
HkL05Bzb7vu4+jsgwUUyyPVkLpmalV5UMD1r4liHQbFGq4FqnCsmKmKEyTh1jMrHdNgU3c/yp9r1
I2kxHU8npydGyz8bU+gwSLdyfQA1HDaBnOmd0UZO7cJNksenplBuQBqYqjcYQckpqbpAD9hTsMDw
ffwu3Md1hGAwxAHBsP/3r9htvmGLS2q0c7XV2iY/ZUZu5cLqpYvKz63ltCtVV1VrKzyhg4qZ3mhz
egrmeioW1TRVaP2O8OqaFTZ3zYIyg6N43rKS+e78ovmFBbHus/cUl9eXzHMUFjeUlGKKN9EArbs3
V+vyvjO/qHpReW52QR2dbnY5zfpkau2pakg78y9HYVG67hl6VxeVti3MyS7SejT7Y+0ttTWKKbPa
+4lnYfmGjmpPWmZpY/NCaSCvqrK9qT6pYmHHZs40K3RP6l5S+kkgCc2yBPoEGvWypL8BLKintgsu
fwH7APoF3EsddpMlpMOhdd67vr6huNitVPqZFHNlSaVWqc2IeralpXPbriXVfIQWrULe71NOojiX
RVmifFVJzrKEYIDoCwPoEZElrn6uVnHoJc7GdvOQxYJ134bk5/fm53mS7EnFxdXVbd53m0oXTMst
yijILy+rcnqq59KgqqrauqWluSc+7dnaeXK9dvjT/edOn9ROHmlZvqJxeS0ksWmVcgIkGUGCswJC
fQNMvrprEJ30NPziTBFHeTzgwlCFikAwdKTQPc6S/r7CgrYVq5AI+NNxnoScabl51dXu17RzZock
03fpHhoEZzD07+/wHtDaNVk72VBbX/dY1eLObdkJXBe9cq7eoJSQMSQxyz3aHeeMDAu1BfipRpN1
tHtkXGx0WGhIUKA5wM9okC05vg7INnYoWCUKxMbFp3JgxsUjCcAZ0BoUbMSZnV+FryNZSU3Gh5zg
SEpyNLUrhUUFdaaqllpLfmjxvMIZ5sLQVSsqt3nmJmysqlhbnOBKKSmQV5gTkpIem5ZgMnc9NqfW
0rw1wbWpzd6Q37DZLrtKaxqzWzfvXplAKJ3C7lI6jeMEJ8VMGjMyysdgsKalJieNiosCbQYF+vso
MrHEjTPRIUoSchtCqV34DIKvLdhmF74Fm463m3X8W4onJXXYmzAJT+wQCjz8gWi5xVG8Nr+lpc6i
nzWvpG5pSWm+WXHmZjvNst5ckzOrqTl/YYr37s12VbaEOJQqY3yb1qsdqfJTZXeCX6zTrSAiyKYE
mOOkLC9sam56thw0LPcoftVtM1pbVsgyrOL0Pq+7QWdAHIAPBJmChA/MtPl+N+xd5H+jQfcd/pcK
nLZQ82tj8/Pbls+vriouzsh0S3Vmk5+prLKmo7lF67ZV1NVxqm+q5t5Ab9H/zlBlfBN8Z83ylaVJ
eh3RU+PFUWKQs1nlksXaYk2TXQPGN73/lGZw5DSzx3XbpXZiILYsk16nzpINeFAZCo5jE53IVVVK
6WdOuYjejhyuziHn09X0QW0+f9rE9urfNQ4SB3/aGKJONIYgpYw0Dz/Ng6rwuuG0R+dPh764AqfQ
FN2TsSq9MxS+pxXkFXYgyKm7TU7lhJ/bnUCfLl88r0hWMs3SspTiIldhT6PWZLaHmrSq0DSzlhQ6
I7eghPr2trfxXJL9y9Cp/oWEktEkIis4LlzRWYNUf0kKDPGRZo+Khr4TOHEPsfZQVsalkCxm60Xm
1gksASRma0pyFPdWA+msLmxu6qlf0te0uTqhtLShfkVxSX9tQV7Twoq09IQ8O02uf4zegmTyTfor
OnNbVZXs3LjbO4j8u1E7Wl9elpkR0kBvcVRUtq/fSv9CA1XtKHLNaq2L666EmAyN6jvEj4zICtRT
k6+PYpQNiTqejQVczMaSXdRpkWmwHIy0W9qQKdXRYE327tFKTDSyV8ZA+02ylGO8a7fW4nC3nH/e
+zr6rkPf1eqTZCTyj5CwYJtOtsZGhgYHBQbolVR5JEYYNexGrqBkQGMYeBx6kghWupQLcUjQlE7S
6e6IzaNP0MBBT17jqpolJcVOZUNja/sXve0r8/OL9xdbCnKyM3sbl4eaZSm3dsXyqqr6pe3ZjhY6
Li93vvdAUqi905NZ1FpYUHACRUq/dprroJTtgQ7+QtJ4fp2WmjA6OsphtBrVNE/yuNGj4mKjIsNC
7LIUkBTAU7ZJF1I2q3Aa2Tn+or/wHC4l0DNhKNTqYodkRyaiuxhgRVrSY1JUBdUSTW1va2uoL5pX
UNicV9TY2ri8ev3R7m3Up6plWcrS+mX5bfVF7urCgtYZ83p7aKTFZFZL27JzamrWvrpjff2y9HC/
BGpoWjaQlp6vkeJyT3ZF6XytKFcJLZ2/+NVpzk1AZSFbbehRH0VUiEK1FR7pCNBZ9WqAn69i1Afq
JSmY/jzKYRuKVhyaLpvd4IC7xCenWJ1IncAwUDvnNqduNDVTi+4+eWCDaVN1lZanuBAGDmmHW9v8
TCZd2O7yevpuu83lNjfX9vX30Sw5dFNdyO4ubZu2Vdu2bGl9reSWiqjPYCN0XsPeNdT72EgymZSV
NDZASrSq46ktOVE2RFqkQKuDGiTZGKMmjx2JIGK3IIoYJD+P3gkDeIZpYTRKnEkUqnd6JB0Ua+eZ
Tez3FI2Y4YxK5SYRtuFWsej21BxakVZ7frCvRZZDknLp6PL60iJUJ5VVJ/vaKk/Sa+jE/Zu6wxOW
1LYllWxsMvRrZbuPIuXuzF1U6dm4rLXD7TQVFBbXpI1v6NdWraqhT+yvKF2xuDJUyaA3EqHzvYYN
6h7UlJNQVUaMj4uJCtdbA9X0iYljx8QiydNJvuNCeBjJuJj+GwKkC8H4QoJGrAJTonQTHHZpasYL
NIFYIttCituWJC2qyJ2WMN5cOq+lZWvzCnr/yoTa2r7cnA1NktzoGWzLy6ypWpyfF2pzF6XfW1mZ
l+dnU29RHJ6TZfsPNTa2tLYfam4uLPDQSHpfdd25jg3mlGJdWF/euU32nOzyhTW5eSUFjtycRZU1
SZ4qIuz3O0OTjwLOBW8E6EJ4WFcMyQ4jZhV5ifBd8XxGTvgJTzzphRSIl50e2V2rdSetX1zhlJXC
yhe04mlSvsvpSkvJWFudn6fGKPubdnUfXrV+wPsPray1nm4prChdUL6woorecLpjQwevJVrZdkMz
PDeB5JACMi4rftY1GWNNemuUOvv662Zckz0pLdWTnJQ4NsTmY5CJLSUuHOLdeFHpl7z2QoE8BKLh
vxw6l+7QDy+YXEJXXPwEUbZ9J1+WTzYvLPezFRfVLKlLWtC2fEVhkSevq2VBadNa1KYTTjxWVFiT
6XYnJXjfcRZuQHkc63LmVOVnripfGEpfclbXTMvNzvVUNJXqR1c0r1qfllZTNCfBbQlfULai8dnq
yvX3zm9r3XBkeVdLaUtzS3dThtvljDqRmVAbaraFOmx5ZQ1m+4Ky5nOSyVlUlJ9XnF8cWllRuwKY
LGWPgweeJHFgufisqGQ8aNVb49Qwfykwjrpigu1IC4wFE8fphxiOcwEn5GSX9QekfElNQ1UEpd8B
Y/J4oR5pt9ntUqh169yiouwct7KhqandUdBSe6ipSTXXL91hT0MSadDdPmfGYwsrMnLyi/NretMz
ZJNfIX20c1NHe3unO28DTS2ao9rS244OnHSn9TQ3K5nl55/TZ4XmZFdW1NQ3OB8orVq2Av5GJdTZ
GYZDqLMtJDprhCXAoLMqKup7znIGWb1Ob4bZrRfMzqc1hecT1gtfdOMUi8nWrc3RauiaErOq2HZr
OVodXWOymEKP0ie0Em2h3GwxKfZe+qhWqFVzL1/mXS27DfuJjYSRqKxQpLq+sjVsRKgt0Ncg69QZ
IT4Y1HEhT/SnF/OrTDoMK93Q6NI2u9PUnZA/69WGmv3F89IyEordrhYtT6unz0u1JotSvbB2Y0uL
tj982UBtbcOyproqOt3tbkf6UwBRJBpDDyg9egOqnHjYNtKPRlCrPs5moHKsIzTY7qsaZaK6oiTI
4x5yTb44xCk9xRMXHx0fFQMLxhgEy4sc1s5/4JdiYmiyOcT4J1T3XeXaQEtrX39La6dJlmXjn8zL
uzMrq9IWylpObGZaeHpRAlJP7zuOdJvZYrObzJbcOrsMPXXBOl3q88jtxiCzjh4TPiJU1lsN6phR
I+OiIixmf5NqQJAJmGodcbEgECuZ37ERsIVUbcgTY2jKhbh6EYm67SHuBp4X0nW5iqL41dSWZKxY
UNZR2KI1VBYW57Um+HmSHCGz5pTmhiS10nv44qbsUvwUc5P5seqiguWH22trLYr3K4dtXvO0fNuc
woyctJL8Uvv/52uxOjqOuJS1hh6RtabzDCF13MioEJtZUazIfsaMio0IV+L8Zcxr8sWSx84hgrzH
FTuJeqADvSwKoGiBKUEKF+KWzoZK6NIpnemQaTK9rwWV/02tXdpjr63V6rWGdocnPcQjbTK5M+YX
Z6fn5c5wj8/wlOQ3Z9vzk4ryMjN0/za7TS6XyyzLHQCZIkv5Dld2bkFuWn5JTkaI89zKRQ3maldS
SV5agptHpx3sUWWm0kWy+AkRH8P/UXq5M3q5Sxe+HSPlNIt6yCmQZx5J5f0RiX3Betm/8Ws2ycW5
ByWPTALZIDvPNrNjrF/7Er/tYVlsiXaePc3+ymrYS9p2tpcQVsTO4DhM7OR28jTOf+s9ix4CSCJJ
ZPxbLJlN3ueDaP9gr5MI0qd0sXqk2I3ap+x99iy9U0jQSO4mi8lYjNLKdqOXlexdHDnsdRyT2Dvs
be12Qrz3a3eTRnoDeYg8SHaQ+XQRO4V7nexltlZ7mS1gfHmZaDcTvndxH1mE4wwIJZUM0CQkLwRP
JuAanwvZQ3TGF9Vl4vLwf989fvAf/fFdQx/STqaJCbxKJ5BXMdksZKaT0SJQg4SCTY1EhYheqPgc
YlUD/O8clHqKvcceYJ1anTdYWwqm12Pqi2GMY/Rjcpzo2be4QnDfGfY1jk/YARhI1iKZAfdSKPoz
dRnbzp5jOzBVCfdp7DA7zrpx136Y6322i33KutgGbZV3ktYk5CPsS1z9mr3IbmEvD10hhcSH3EhW
k+t5H/CesdJNdCxy2EDMIww5digJxl0yG8RnOsatp1aBxnr5QzULs/mOQobQRS8p6ztq/P758O3H
YPDTMEY0eDQCbBpKfMkoMp19wPZA8s/Zt2wNNHWafQMdnMCcPmdfsX+xTvYPtpo9wf7ItrHnoVsf
gNiXXAONV0GeP5IMMoU4iZWdhU4G8FwvQLQOEFoFwN6nZgFWk9mT7CAA8y77iC1mTdo9gz9nb7B7
WQf7hKTQFXg6F/IEQp8H2dto68SY69gLuHKKHcDvKeRhMonGQEOJOJtFppJryT3kOnI/yQToJpMy
VKF/AK5mQ5ZrMNke9k/jNWojZjisgiFlff+T9CDaG0g+2YJnpgJXS5FvTycuMpVp9GbgR4ZGfsHS
GYNOTsEhAXxjFJkJdFXTdMg0kSWiczewYSXRbCIs+hXbgfteJvTsOdj+PXw/b1wAvHzI1hr3qc3I
N8d/jxjI5eB/8eqlb9J78LGNONMTCvDryE76AtmG6c0Hb0QDTOMhxnjAZwwxEQNjAmoInWwj+z0Y
gED1/J8X3wZhIA0G3spOa23eG7U2QM1M/kR2E0V/5rxNe1H+Sq8HHJ5iXaIXyrzsJMw6wD4DlA+x
j3G8BQMdZpvYYe2PXlmrYa+wX7LX0PcB+nddMX0FBvGFU+qgXBe58M9EIqmORvLdTUq62U7dV2rq
kH0uzva7wOX/dZIHyFdAWDQeUi/0gwm0sz+z9RDDi4nATzCZY+yodi2mp6ip7EE2Dlj9FAIeZv+E
2F+wM+duZ6+y3wJTp+gfdJTeD66wo9cAWgI69sVw29gq+QM1icwj33ca8mM/uswl+oOf/sNTOHpB
vo+DUufAfOXgoQDOaEDbCXjicaj7COuH3Nz/trK9MMbXYKN+9iWMMcCNy5kD5uX+a4OKzeCOCJKE
ABCJngahlbUwTh/8+HPgdj87in76hEefwvEZrn8KdA79eoLtg+eegX71eF6HvlTRrwViGvHLQWhu
HxjiefjuAZx/yzNkGHcMaD1aTQIzLEdoaoWMTwNkXwP/3RhvP4B3AKPuxphfojcjGQcJx4PlRhE7
+4roMPZHABMghHuaMetn2D0IOUtYE7sDfvMkmPYgnp3G6jD/Y+gP/2C1ePIbjF1DssGY89EeIDdB
e3PR+3jYbgJ0cCfY4WYSgu+hOAsBV0lwDRXPjgF7RIJTY1FxOvEZS6bB+im4asNct7K7FarWwyKX
jzpX8tHLWPl7weoHp1IJ92Yce+jL5APYbjIkvQZanwQms8MCI4k/4k0cvgfiqhGNwo1kaGzIfTez
KvDmPnw7JaKVF4x9HBo/C6Y+Aswcg95PwLonwVnv4o4PWbrWgHCu4WCwzUOISMeh7yPcb4Cnc/h7
THjQMfR0BP0NwNuCoeFocgOkiYNm4SvqI7DwyiFKAPoIRupDT6fYFpDB5xj/fbRvwN49uLIdiGlk
B7Wd3kbtX8DtAYy4hs2H335ERtJbpU743S+g/5mwpx/qbgfsYiNBsBJvBpzzURiXWPvV4FbtNvS5
BOMfw3zPwWsf0pnpEjD+VNFHChAZA2150MtU8msyERjxIE4EExV3U/Iv9r7ytjqCvEiubDX6Y0++
nGPTK2YmP7x++RsuM9Ll7yDyEsSUkdD8LchQSoDy3wK5CYh6GUBzImJWHH71xT1+wIa/YANO1Wdg
kZOwxyFgYDe8dhc4by88uA3aq4N/VsMvn2bl4MinwJ+fwOM+Y/+GJU+JmH8a9j8jrPk5eOY0/vJc
6Mwwvk6Jawdx52k8we/miDSS35O7MHoyGQPkmIEaf0itQveD+M2AM1XsXvvg0yqucAsbYW9ffOOI
NyI0jIAFS8hCMgP8UIYZxiIOO3HmQIaRgLvicc0H96IXwfrHEcROQKJdmNcnaO+AST4Eb3yIOR7B
sRetl+3E7D6BrPsxUgSZpczAmJzbwLdAhx6BcgCc2w1NdINnm+BXb2Dm7yF3OYhvB4Hp5xDonoeu
NrN6cNwniDtN0OX98LVm9iaeegPYXgcd8UzwG5FTmkk4Diu8ORr5SSxqopvAPIvI/yBbyoCX3w97
3gmMFpJS/DoDLQrXIyFXMpgoBjMOg4T7yHPQy0j4i4+Q6DNYsxuj/gVz2sIeRtsMj+jE8cjw982w
9G3g/fWQbCNs8yV85VvgQif4JAg+EgA+DMYoERiPa/c3yH6T4DF/gCwPAk8xQFgw/Gis8PhwPBcg
MHUCPM7D/wHYvB9SAGG4KwjzuwsMhlguDcghajoYg1w2Ff0PrvCDG7dCPxXw38nw5FBIFAINjhBM
aAA/aZjZoEDmadh6iHcQFyHV57D8ftiBs88O9qGo2Mbi6QzoMwz92ASrUNx7GtrsF3z1BvxkH+y5
T/TwlagZJpJqNR19v4Q7tkOvh6HjQ2jvgtnWQPs7wXw74TO9+PUL9qzgujcRT/cgCdqLp/qgLRRn
0DtPecLIrdB4Cdp42DsFsWkm4eWeE9rmqLbiLATzG4UWgGgQCJsPwh7P8Zx/8AHjjaiWAi5Vk3Q4
dUQhNo58TR4hkdLTqKoI/Rm7jt0KttyJOSjeo0aFNNE0soaNxr3d/FObQejA69rbPg8jKRxAhx3s
tHGsWsfz3p9Qi12Rvi7eLL01FGLIKroAoTgNE7sZ8JqMSfKUfTwnAcDoPNT1DRS3F3DqYKVsvdbt
XaN1w+i3o31Jd5EjgihUKM8BRwgXqR8CIIczDNcL03yAQPJ3pA/bYfDJWiWbjPv9RRGRAEM/otah
UHkWTqMBtN/gqU8EMbwHF1mLUux3cBEJxzrQYDsSxAWAQTWjoEQNEPPCTO8jteDVrE4kVGYY52do
FUgNridNpBYQWUh+RX4OZ56MeaVCUj/cK6Hy1uFaGGb+R8gxE3dCMR+wBsMW0zVgtcsmDj/W7uXq
36tEj8skJfzjFM+3OQ0LCuBLnL+nm0FIWQBeDNw8As5lAtxAgnymPLCK41te6EC3/wbZvAoiWc5e
Qwn0Kj4XwVE2soWoJvR4UhZkpwK2PoQvGyrQUzBIJhl2TB4uDW9GkJ8O8nPDimb+XqNIco/BJodF
onsYrhKqTWAjeOrLnU+krrxs90KKPljvIIKZhiAejVQtmkw3XQOnfAFU+BaSoGrmy6phMf7MEdz/
KZ7YC1t/AArYAFf9FQjxHVYLq+9GkroHz/we54+iNHgCxxp2F6z/L9aAJw5xSTCTCSCJWLilE1py
QntTQM0OzCUC19zQlwNkEg8L34q0cTbanXCe35MGsgD3ZIBsYjHLQGCB63MQCAoDjfFWhjYGYSCB
VJLb0NP1CN1+GC+RFIuGW3vYWaUL2ed4UnCl3OLKPnnFxZPvpJ0PDRVP1ChRqoiiYwa8Mx2fE8SM
uQUNsKiRJ15ob8BPP4H2vtBe8s7UXsLZ3+B9h0VKeY5jBoS7mX2Gv8cxl+vJBl46kWQ8y4ecIt1E
s4COEDSZlxb8uijVuBczWPYrWPZL9HgMZMrLhV3aoBao1sNLn0Jj8HfvcGLaB5/vBD33wHpb8cTr
aLtYz/k74cG/QdjfyH5GLv0rhn7j4b+RtFI6Qe8RCUkg5EjFLO9DMXkXId6l2jPeSdoz6F+DtOH4
jRcEOWibaA3pgJ2CYXnesvlrd+jBwgsr2JJgJhpX6Wb2sOJQZ4MOLqf/q3jpVa14dcf+SU9f7r+1
kHwS8JYgFshi4IkmzIgnZjaRmsVAP2OAg0nA/RygfgoQfjdC1W3gixuRco4XOrWKFE4WbEKFr3ph
HZ4WfimSzk/g18fhiSe0r70faUcR7O6AZvfQFgQgnrLxJbijsP4Z3HsS3z7iq5/wwK/Byu8AWbvA
5y3w017Ylad3nw4H2a9w7ARf9MPuJ8AIp0TAR8GPv99izHN4/tfgJy8vhiAZA4oVWNUEeUNE8ukv
OIonnxzffENBj1noBdtLIgXcL/rnhesJjMsTy6/Z6WFETSZ3q7PBO8+jvQIm/IitQtuFz11AVyTQ
lYAkfSyCdhZ0NQ6YsRGbSI8Pgo/WI22sQRr5O/DNPESfArQWlo+2nlWg8Vl+KorlA8DyIaD9Y5Rm
VCDzdrKblAlGJOC/pWipiDwpogCeAts8CQ6ajlLAAS/2wKJBmJsMyYe4cB94bz+sUgfP+Rie3IPz
P8G3/orouIbdifYc40UdTyk3gk83YibcV9ygoFEYqw7xNAXjpYLPy4AOvnIdBwRNEXw4Go0n6YnA
SqJYgnXi1+uQwgyxXiDOrMOfc8g6DsT3Bh/QDaoZMM2PU8TvwXczUtI+MCuPGkGwn1GUg+fAG68g
Cr0K/tHzEpQvkooCpZ75sUcgwT1qBtg9DOk5T+t2gJ+2sOe8R8/v9/aDvW5jL0o58p0S9+mx6DcV
drqdvAneKiPvELECwOQd6vVihY5c2XPpZRcHiPQGGORhaCeDzEXy74DsfKmKF05vsEq0mSjDZ2E2
vvgtDz53P9UjT7DCbiOASBMaFfzIFw7fRkrZhdzkI6BlL+zmZV9D2gnkQfV6zOlxMbNHoIkdYOGP
tTbvXK0Nth3H6kXkochQwkWuks89FfqjmG8MsNpNW8mH+CUCFoonRfDxiYgBEbBwOD59oJNoXG3m
Eekttlf5k/ow4LD4p1AavRqP0SsFp/9wq9Qr/ocQk8kNYmPWDxwcAFaOg7/dDIyOhbaLUBi7kYs5
gMEkzJIXlrLIaYiIIGfEElQPGGU7PG2ENkHbMRwJfaUQ6odI7CG/FAgeBT+OAor9hjIi2In3cVos
iJ8GPz0MG76JrGIlOGo1rPMge0wsS7wDVDbDSu/B275B2wdEHkT7AHzFueUrjP817j8BrvuGHRWD
W6Hn2aKo5Z82nI1AaI4B323y7vB+DPu+gbuP41kGpOthDs7Z8fDHBzHr38BqU0k9UBQqlq9GA3nc
a0fi6i/Q10hoaSxGQW4kzUc/T4OpuF5lzOesWMs9Ba57H9JvwkgHEFE/RS7cjL8rIOdyPHGPNgje
eIJNBEvsA7d+AYb4CNLs47wmSvwpkGYcytpjgEcrIqtGQ2CVMLGYEwWkcs61wNPGAXXhkPI2UQIt
xGco/tqG7LuLrTaUq9PJPeTHC6U/BtOPb/hxbLw6wi4bMKUomCMBKosRqeo4sRPD3TIO30aA0IbC
5NC6BZQKY9hwfyCKgmm4Uz+0Mi3oiVenvBLka86n4Xyr4Gox6IOvaxlgQCP6kfiqiUi1+8QuC0+F
N+GpFdopBIklUHQ3Qs0HSGErEAi/YW8Tvv+kAo48Zec1OYfqXMh6u0jmMwHzCNBArwiOJ0UA4yvI
/Hw/KH4v6OR9sfr7CV/JAS2lk0fVScKYnGgeQHiag1LsPrR32EMABF+B3S9CUy9A3YunjqKe9RVr
NdkAX4pYXb0OAPg52u1IG54hf4XReQL1C9IOdwogfgDRX9FeYEvZHVo3eqxFBb0PlLYPRzva45jj
3czDnkFZsXd4pA9Rth0EBfbDCr+EjicBYLcK1+aJdaCYezRsMxFzHkmugYbHiPuSya/R4kET8UhY
XoArjIEkCYDjBDydCO0XkCc43gYfMGxRs/Dc1Rfhroajy3OavpYo8PVzMNgL8KHtYItlMOsexJ29
8DZu6Hcxvc/EogzPogLEUjaHkS+i2QBUxTcX34TR32Uv8/xGZFo6iJ4OjrsZqk5Bzp4P1Y/DEQ9D
3Akf/C15AN50Lbx9IuDl5nkNOyWqZZ5xtbH5Iloq8jHckQrlWVDdjoNC/gfAdKGvaBIg9oX6cN8r
GP8DAOJxmJ4vEG+Gxx9D68PZK4iea1DR/RpG/iVMPp2sAAA8YJ4K5Al/gmTTxU6yCXM9LjZP+XJc
G3tSmHQX8vd/A4pboJm/soNa5OBIzR993sJekaLkiVyBu9m3xjHqtWQ+ubrXXnll/Qrrt1cmDd1L
UG4CkBKHkM1LuDuQcsxGYZ8K6nLwRJGvj/OyBcpk+Dw7XCIPwJyr2Z/xy4faOm+Ztk5Qugv0l0BV
yUp94aWB8FbK1yoFN5xBDycw4R1Q8ePwrw1Q7xoAY0Cs3feJNaze70DDBT2MAuY5NHgAW4EUrYPd
Cx9ZgwT7uIAGD+kRSPxcKCxnAee3q+nwum/g+V/De7nx/sEaMdKTUPtXANbaYY9cwgLQNoFrOmCY
59D4TlEEuw7QOSt2Jgj6I/CjJjIb8z4jWC8MMAsm22gD2Qao8RV3G4CQBCjdgDRxJJgpYhhKR+DB
HeCOXeCxNzHiBkjEV2U/xkw/EiuJ/2AL2Wvoo0SE7xKw6GOAcBJmnImyYxJ5BLO/BoUapbrB5cr7
6jXkd/+x4KFXemvgql77n2uzFAC6R+g7Ao5zA9zuBrjNk+CgMCTkUZjFL8DCEZA8EjJ7hO2Gdm54
ouLDdyBg+8/F+joKJOi4H260EGiziB0KvnMXgOf8weS8TB4UUYQXUnuhtQpYfABjRQGTTlDAKFgl
Bd8m8t1yIDcQtkFpA7faCSu+CXx9KnYNu4GBI3BmXmB14LMLhTMvm76Gez+D+zaD59/F30X49QOk
zJ1IkNYa7wfePPAIHWaaQGZiZvmw2v8iQehCsrkLVLYc+PtYrIO3AlVHUUgcQ3DnCyTTQAxZ8B4H
ZOPrrUhAgaZkENZqEAXfaw3E+PvwzD8x1moc78ET3kPqvh4pbjOOefAPHru2sz/g+m/ZS2wWSKcR
EWIlpLwf8+PvFXwO9DRA8o1I01Sg5jrEnpnQzN8QjWeC469DgsTfJ5gOuWaTjRh/Gvkz7psNDM2G
7haATl1AHc/2B43T1OyrYov+FEhdtTK/Wt4xC5bndgwDciKg+TtE2ZCB7+Hwggix8GgTdvYXS3k+
YCAv9M93b0/x91TwzK+BJjOI1y7yF3/wgC9mfwlJp0DhH0PjVcDGafTmhJaicWTjmz98Tk/MCEpn
xZp1r9jh7WVvsfe1l703aX8f3raPBurGUD8pjPqLTEiBBJtRwL7Jfg+rbAWW3oOF/oBrHwIXPcho
dnwna9DBJsvVbBH7D4B/Vosyeg6Syn1IOPeBq14Ve9uH2AlkSrxwycIxFaxiRUnNI3iY2L29Dnad
jvEjBZL4E2sx0nOQg6esXUjG3waS/o52B1B6HL91gWl3QrYX0Pog7Re4+1VIxV+u2iHC0se43yv2
vgk0mAVdJ5MXgROkyeKtAL7TZiPFCJrTyaNoU0k12izyFHA1AeE7FQFwjsgdI4Tnq+DjZXxvd3CK
slptBkbLL73tcXHx/j/tLl7ulSd6lRLrB71IjwPzk0k0NM2XTA7AQp/DwzfzHQ8k6UPFj78URQOA
hZuQSUbBwjFi7yEYmDBeXOI5I6JJH/CwGZZaAw0egP72Qnd8d343tLmT/Zk1QlsbmAZrOcSyfRRm
7QN9xMErXdDlz1HMZyB6ZCJGeKDloeJKGn6DSy9ixmmxd3wSNvuYndQe8vpqtSh4+T/+dsON8INY
+HACsDiV6PQnB9/3GjXK4oG3tzhmSZ00mX5Gz9C5+ttg6wb2nliC5SnQSeigX7yHsAsxdysw8xHS
kkaWivYeCpwdmNEiYPd+MM7fwJvrgccPgIq9+NsO7XXynXYRETPha5PEJkOMWOgOxFzskOk6+O31
wM7D8MQK6N0uNBmIGDYScv8PEBIAHKUgWgdDA+Fizn38JRhgK0TM61HYKw2RLxnaDxIm/IhtMTSq
D+HK5TbT6FVeQhhCwMPDS1deOhoxNgXanyhydpvwHxvsxJczFbFv7IOsQ0W5+SBrh83fR7wJAmto
okj8An7UiXjOdxj3sTQth6Xhnm9hh1UENlcfEjnFLhGxNESXo9BgPzTHd2B3IIn9N7xsJ/T+Etus
bfIu0d4CJj2sBdb/hj6si6aPQK9jkcwOLRcFQp6hxXO++MXltVMz+VKc7WFfKD3qArLl8sXeT91s
v3z+eMVK8fKsfyX105+SWFz6egBmcANI/KUYC76bQOQW0E4wwMG3xFVcs4ldBB+AyiT2w0yAVBIO
vp3NS8nToO4jSDGOidXVk8Lo/qCrBv7SMYDIk8QgKNVXvFs65BJ85fYbuMTn4rXFnTDTYRByL4q/
Xjj422JXxsvOAyBm8fQIHNdi5DyAvUgQXjzgngNIZQH4sQLspovrJXyF9wtQxwCg8y0++WuMeoCw
GiFnEu5KwBwt4nUFw5BMYu9MBwhyyY7zWWAufDX2sKiXtiPobwGY/onC+O8oiPdC4kY48rsoKLeI
nZ33RSryIa7zV6b6MfYXGPk4YMs3rg/i2z7xja/LHEeY4fXJh9DbCVRGkpAgi/xRLYMedgOw/EWJ
LtRinBiewSj8pYld7Gn8tgwkeBa/nRezMomQmwz3nwm3vhlBYgS0k4QigO8nhItFBA5qG+qjJv5/
WIC5MLjLM9DzavT2tNh77IHmexDC1uK8DdS0DlLuEdbYglkcwjz5S6j8dQZOWp14lm+++0PuKPTu
gnXGYdx42Ho8iHYhbBQv9ir5apAbsv2B8FfaxuMuvko7WSSnE8Raci7ImML59yOZWIOEbocIoluR
lG0DCd6FuW5E+jm0DNCGay/i6IQjr0aIXwcJ1yGAvy4QsxG65VYfGCadcKAzHUSdiAQyUawdJ4sd
0Wzo52HxLQeS3IOWhiQ/Dff+FlpyQzK+xqeirFg/9Ibgi8qj6r2ox66+P32VXZOftl0y/KErEO8r
6shW+jiKnJEIXZkIPR7od5rYRQoTK5C6oZJOYJ0nGJ2YeScwcZa/d82XLoArnsaeEStmPewWrYPd
CqREi9ddDALrVARYg3jFiZeGfbB5H5us3c0mi1eWfcUb0ymw3DY+/WG//QafZ4G9sxjxqFhROC48
/ywbxyaI/fIA0k/2EL16L/D1jHijm++6MSCvD0HtEND9lqDobZCsBXjHqNpT3mTtL+L9zX9yG9Kn
dB66ErPnL7CEid0vI3w+RKy2n0FfzSwPbS2bj7aKTUZ7D0nAdvTO93BWsET2lFje0vBsEux6E2mG
Fof+XS8WxOLFa2XXknokVDxdykPY/AUC61Ti5HoUa4aBNIJ8yF/H/u97+P99D/+/7+H/330P/7/e
+1/v/a/3/p/03v8HfR+XE3jaY2BkYGAAYlNVp7Px/DZfGZgFGNDB/+u///Bu4nEGMtkYmECqAc3a
CAIAeNpjYGRg4HH+/QdIZjEwfF7Hf5sBKIICPAGEWwWTAAB42uNhYGKAAY67DJbsrQy6nIcZ8jkD
GLJY8hlkWQMYypk7GRjYDBmV2X8wTGYXZyjnyWL4BZSbwXKXYQUQi7AeZnjKeZrRHiimyC7OmACk
lwDFeIBq84E4CYi7gTgNiMOAuBmJXgMSB5rNxGbIMBlohjKQfxbkDpCdQL4+xzaGMxzcDJdZhRnO
sM9nuMnhwHCNRZbhKqsgw0mOdIYTnEYM51l8GK6ybwTKdzIcZJdhuMJpC1TXwnCERZ/hFCsnwwmO
3wz72Q4yXADKXWBvZ7jI6cTIzL4IqFeA4TLbB4YbnF4Mlzl+MVxFtguZDQDfMUVRAAAAeNpF0L8r
BGAYB/AP58fdcZw7zuVHUtchQopCikGOMBlMRoPRJMkfYLhBMhmMZt1gMpplkEFmg0wGkzyhvPXp
fer9Pt/h5ees/asbDtfUb5OIOXFBQ/ZPlcYyTX00n4YPksekYjV1S/qclvowFw7CF601MrGbuaHt
jPYxssnwRsc+uejPRzb/TmfcXYXwSKH2q/uE4gs9RXor4Ym+V/ojO3DI4BalyJVbwx5DD4x8MnrF
+DMTR0xGx1T0T+8wE2+zbcxHduGOxSaWons5zUqOyi6rl/EV96yX2Iidzeo3/TgqTwAAAAEAAABJ
AMkABQAAAAAAAgAMAAYAFgAAAIgARAAEAAF42oWMMQ6DMBAEx2ApSROlS+suT8gHKKgoaFIb4SAk
KkvgF/DvLMQVDVfczu6tDrjyxbCN4bHvbQoucn8uRc/MVvxSYuxNieOdueDOJ3OpPGS24rXyy9i7
JiRXhy6G1IZhnnw8xkdPhWdhpNeTRi+TtJZ2xN212gMzk3rxtH1y/wF7Hir0AAAAeNpjYGbACwAA
fQAEQBAMDgEOLAwNRywBLCwYDUcAjbgDPIUdKysAAA==) format('woff'), url('DavidNewHebrew.ttf') format('truetype'), url('DavidNewHebrew.svg#DavidNewHebrew') format('svg');
font-weight: normal;
font-style: normal;
} | 0.240775 | 0.160398 |
@font-face {font-family: "iconfont";
src: url('iconfont.eot'); /* IE9*/
src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff') format('woff'), /* chrome、firefox */
url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
.icon-xiaofeizhebaozhang:before { content: "\e62a"; }
.icon-qiandai:before { content: "\e62b"; }
.icon-renzhengyonghu:before { content: "\e62d"; }
.icon-zhengque:before { content: "\e62e"; }
.icon-cuowu:before { content: "\e62f"; }
.icon-tishi:before { content: "\e630"; }
.icon-jinggao:before { content: "\e631"; }
.icon-bangzhu:before { content: "\e632"; }
.icon-wenjian:before { content: "\e633"; }
.icon-bianjiwenjian:before { content: "\e634"; }
.icon-dengdaiwenjian:before { content: "\e635"; }
.icon-shanchuwenjian:before { content: "\e636"; }
.icon-sousuowenjian:before { content: "\e638"; }
.icon-wenjianjia:before { content: "\e639"; }
.icon-xinzengwenjianjia:before { content: "\e63a"; }
.icon-shanchuwenjianjia:before { content: "\e63b"; }
.icon-weidaqiadewenjianjia:before { content: "\e63c"; }
.icon-suoding:before { content: "\e63d"; }
.icon-ziliaoku:before { content: "\e63e"; }
.icon-zhanghumingxi:before { content: "\e63f"; }
.icon-zhifubao:before { content: "\e640"; }
.icon-facebook:before { content: "\e600"; }
.icon-sousuo:before { content: "\e641"; }
.icon-yonghu:before { content: "\e642"; }
.icon-shezhi:before { content: "\e643"; }
.icon-shanchu:before { content: "\e644"; }
.icon-erji:before { content: "\e668"; }
.icon-jian:before { content: "\e645"; }
.icon-jia:before { content: "\e646"; }
.icon-cuowu1:before { content: "\e647"; }
.icon-zhengque1:before { content: "\e648"; }
.icon-suijiyonghu:before { content: "\e649"; }
.icon-daliebiao:before { content: "\e64a"; }
.icon-pubuliu:before { content: "\e64b"; }
.icon-liebiao:before { content: "\e64c"; }
.icon-xiazai:before { content: "\e602"; }
.icon-fasongyoujian:before { content: "\e64d"; }
.icon-tixingshezhi:before { content: "\e64e"; }
.icon-gengxin:before { content: "\e64f"; }
.icon-tuichu:before { content: "\e650"; }
.icon-dakaixinxi:before { content: "\e651"; }
.icon-jiesuo:before { content: "\e652"; }
.icon-wenbenshuru:before { content: "\e653"; }
.icon-xinlangweibo:before { content: "\e603"; }
.icon-tengxunweibo:before { content: "\e604"; }
.icon-kai:before { content: "\e605"; }
.icon-QQ:before { content: "\e606"; }
.icon-baidu:before { content: "\e607"; }
.icon-tuandui:before { content: "\e663"; }
.icon-gengduo:before { content: "\e629"; }
.icon-lahuan:before { content: "\e60f"; }
.icon-tubiaozhexiantu:before { content: "\e65c"; }
.icon-xihuan:before { content: "\e608"; }
.icon-lingdang:before { content: "\e609"; }
.icon-twitter:before { content: "\e60a"; }
.icon-xingxing:before { content: "\e60b"; }
.icon-renwu:before { content: "\e67a"; }
.icon-remenzhuti:before { content: "\e66a"; }
.icon-wendangxiazai:before { content: "\e60d"; }
.icon-RSS:before { content: "\e60e"; }
.icon-jiaoyu:before { content: "\e669"; }
.icon-home:before { content: "\e667"; }
.icon-icojianshao:before { content: "\e610"; }
.icon-ux14006382562102623:before { content: "\e627"; }
.icon-google:before { content: "\e611"; }
.icon-huanfu:before { content: "\e654"; }
.icon-hezuo:before { content: "\e664"; }
.icon-delete:before { content: "\e66d"; }
.icon-bianjizhuangtai:before { content: "\e655"; }
.icon-guanlianbangding:before { content: "\e619"; }
.icon-xingxing1:before { content: "\e612"; }
.icon-guanlianbangding1:before { content: "\e637"; }
.icon-riqiyoufanye:before { content: "\e613"; }
.icon-riqizuofanye:before { content: "\e614"; }
.icon-fenxiang:before { content: "\e601"; }
.icon-xiugaitupian:before { content: "\e656"; }
.icon-dianhua:before { content: "\e6a9"; }
.icon-shoujirenzheng:before { content: "\e681"; }
.icon-mail:before { content: "\e626"; }
.icon-xinxi:before { content: "\d"; }
.icon-Fscreen:before { content: "\e615"; }
.icon-Sscreen:before { content: "\e616"; }
.icon-add:before { content: "\e617"; }
.icon-shoucang1:before { content: "\e60c"; }
.icon-circularemail1:before { content: "\e682"; }
.icon-icon6:before { content: "\e61a"; }
.icon-iconupload:before { content: "\e685"; }
.icon-fa:before { content: "\e65d"; }
.icon-pandianliebiao:before { content: "\e6b1"; }
.icon-shouqianniu:before { content: "\e61b"; }
.icon-zhankaianniu:before { content: "\e61c"; }
.icon-later:before { content: "\e61d"; }
.icon-before:before { content: "\e61e"; }
.icon-shangyihua:before { content: "\e61f"; }
.icon-xiayihua:before { content: "\e620"; }
.icon-iconfontshangchuan:before { content: "\e621"; }
.icon-pinpaibiaoshi:before { content: "\e67c"; }
.icon-weixin:before { content: "\e622"; }
.icon-gerenxinxi:before { content: "\e657"; }
.icon-caidan:before { content: "\e665"; }
.icon-renren:before { content: "\e623"; }
.icon-gongwenbao:before { content: "\e66b"; }
.icon-fangda:before { content: "\e624"; }
.icon-suoxiao:before { content: "\e625"; }
.icon-xiasanjiao:before { content: "\e618"; }
.icon-pengyouquan:before { content: "\e628"; }
.icon-gongju:before { content: "\e658"; }
.icon-shangsanjiao:before { content: "\e68d"; }
.icon-xiasanjiao1:before { content: "\e68a"; }
.icon-xiugaimima:before { content: "\e659"; }
.icon-pingjiatianchong:before { content: "\e670"; }
.icon-pingjiaxiankuang:before { content: "\e671"; }
.icon-icon1:before { content: "\e692"; }
.icon-icon2:before { content: "\e693"; }
.icon-icon3:before { content: "\e694"; }
.icon-icon4:before { content: "\e695"; }
.icon-icon5:before { content: "\e696"; }
.icon-icon61:before { content: "\e697"; }
.icon-icon7:before { content: "\e698"; }
.icon-icon8:before { content: "\e699"; }
.icon-icon9:before { content: "\e69a"; }
.icon-iconorder:before { content: "\e69b"; }
.icon-iconsuccess:before { content: "\e69c"; }
.icon-huiyuanrenzheng:before { content: "\e660"; }
.icon-icon21:before { content: "\e62c"; }
.icon-saomiaoerweima:before { content: "\e661"; }
.icon-iconfontjinru:before { content: "\e65a"; }
.icon-iconfonterweima:before { content: "\e662"; }
.icon-icon19:before { content: "\e65e"; }
.icon-guanlianzhanghu:before { content: "\e65b"; }
.icon-vip:before { content: "\e65f"; }
.icon-gongpai:before { content: "\e66c"; }
.icon-suishiquxian:before { content: "\e6b0"; }
.icon-loading:before { content: "\e666"; }
.icon-shengyin:before { content: "\e67f"; }
.icon-dianhua1:before { content: "\e6aa"; }
.icon-icon:before { content: "\e688"; }
.icon-yipingjia:before { content: "\e672"; }
.icon-daipingjia:before { content: "\e673"; }
.icon-gantanhao:before { content: "\e6b2"; }
.icon-renwuzhongxin:before { content: "\e67d"; }
.icon-v:before { content: "\e67b"; }
.icon-vip1:before { content: "\e683"; }
.icon-iconfontcolor91:before { content: "\e66e"; }
.icon-qunzuduoren:before { content: "\e680"; }
.icon-weixin1:before { content: "\e684"; }
.icon-jinlingyingcaiicon10:before { content: "\e68b"; }
.icon-iconfontrenwucaogao:before { content: "\e674"; }
.icon-iconfontrenwushezhi:before { content: "\e675"; }
.icon-iconfontrenwutixing:before { content: "\e676"; }
.icon-iconfontxinzengrenwu:before { content: "\e677"; }
.icon-iconfontrenwutongji:before { content: "\e678"; }
.icon-iconfontrenwuyilan:before { content: "\e679"; }
.icon-shanchu1:before { content: "\e686"; }
.icon-xiaolvdashitubiao33324:before { content: "\e691"; }
.icon-feiji:before { content: "\e689"; }
.icon-zengzhifuwu:before { content: "\e687"; }
.icon-pilianggaijia:before { content: "\e66f"; }
.icon-shuxian:before { content: "\e6b4"; }
.icon-address:before { content: "\e6af"; }
.icon-zhongping:before { content: "\e69d"; }
.icon-haoping:before { content: "\e6a2"; }
.icon-chaping:before { content: "\e6a3"; }
.icon-huangguan:before { content: "\e67e"; }
.icon-moon:before { content: "\e68c"; }
.icon-star:before { content: "\e68e"; }
.icon-sun:before { content: "\e68f"; }
.icon-anonymous-iconfont:before { content: "\e690"; }
.icon-4:before { content: "\e69e"; }
.icon-3:before { content: "\e69f"; }
.icon-2:before { content: "\e6a0"; }
.icon-1:before { content: "\e6a1"; }
.icon-weibiaoti4:before { content: "\e6ab"; }
.icon-weibiaoti41:before { content: "\e6ac"; }
.icon-sandengjiang2:before { content: "\e6ad"; }
.icon-zhongbiao:before { content: "\e6ae"; }
.icon-taotai:before { content: "\e6a7"; }
.icon-xuanzhong:before { content: "\e6a8"; }
.icon-fangqi:before { content: "\e6a4"; }
.icon-bukexuanbiao:before { content: "\e6a5"; }
.icon-ruwei:before { content: "\e6a6"; }
.icon-xinxi1:before { content: "\e6b3"; } | template/phone/new/new/css/iconfont.css | @font-face {font-family: "iconfont";
src: url('iconfont.eot'); /* IE9*/
src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff') format('woff'), /* chrome、firefox */
url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
.icon-xiaofeizhebaozhang:before { content: "\e62a"; }
.icon-qiandai:before { content: "\e62b"; }
.icon-renzhengyonghu:before { content: "\e62d"; }
.icon-zhengque:before { content: "\e62e"; }
.icon-cuowu:before { content: "\e62f"; }
.icon-tishi:before { content: "\e630"; }
.icon-jinggao:before { content: "\e631"; }
.icon-bangzhu:before { content: "\e632"; }
.icon-wenjian:before { content: "\e633"; }
.icon-bianjiwenjian:before { content: "\e634"; }
.icon-dengdaiwenjian:before { content: "\e635"; }
.icon-shanchuwenjian:before { content: "\e636"; }
.icon-sousuowenjian:before { content: "\e638"; }
.icon-wenjianjia:before { content: "\e639"; }
.icon-xinzengwenjianjia:before { content: "\e63a"; }
.icon-shanchuwenjianjia:before { content: "\e63b"; }
.icon-weidaqiadewenjianjia:before { content: "\e63c"; }
.icon-suoding:before { content: "\e63d"; }
.icon-ziliaoku:before { content: "\e63e"; }
.icon-zhanghumingxi:before { content: "\e63f"; }
.icon-zhifubao:before { content: "\e640"; }
.icon-facebook:before { content: "\e600"; }
.icon-sousuo:before { content: "\e641"; }
.icon-yonghu:before { content: "\e642"; }
.icon-shezhi:before { content: "\e643"; }
.icon-shanchu:before { content: "\e644"; }
.icon-erji:before { content: "\e668"; }
.icon-jian:before { content: "\e645"; }
.icon-jia:before { content: "\e646"; }
.icon-cuowu1:before { content: "\e647"; }
.icon-zhengque1:before { content: "\e648"; }
.icon-suijiyonghu:before { content: "\e649"; }
.icon-daliebiao:before { content: "\e64a"; }
.icon-pubuliu:before { content: "\e64b"; }
.icon-liebiao:before { content: "\e64c"; }
.icon-xiazai:before { content: "\e602"; }
.icon-fasongyoujian:before { content: "\e64d"; }
.icon-tixingshezhi:before { content: "\e64e"; }
.icon-gengxin:before { content: "\e64f"; }
.icon-tuichu:before { content: "\e650"; }
.icon-dakaixinxi:before { content: "\e651"; }
.icon-jiesuo:before { content: "\e652"; }
.icon-wenbenshuru:before { content: "\e653"; }
.icon-xinlangweibo:before { content: "\e603"; }
.icon-tengxunweibo:before { content: "\e604"; }
.icon-kai:before { content: "\e605"; }
.icon-QQ:before { content: "\e606"; }
.icon-baidu:before { content: "\e607"; }
.icon-tuandui:before { content: "\e663"; }
.icon-gengduo:before { content: "\e629"; }
.icon-lahuan:before { content: "\e60f"; }
.icon-tubiaozhexiantu:before { content: "\e65c"; }
.icon-xihuan:before { content: "\e608"; }
.icon-lingdang:before { content: "\e609"; }
.icon-twitter:before { content: "\e60a"; }
.icon-xingxing:before { content: "\e60b"; }
.icon-renwu:before { content: "\e67a"; }
.icon-remenzhuti:before { content: "\e66a"; }
.icon-wendangxiazai:before { content: "\e60d"; }
.icon-RSS:before { content: "\e60e"; }
.icon-jiaoyu:before { content: "\e669"; }
.icon-home:before { content: "\e667"; }
.icon-icojianshao:before { content: "\e610"; }
.icon-ux14006382562102623:before { content: "\e627"; }
.icon-google:before { content: "\e611"; }
.icon-huanfu:before { content: "\e654"; }
.icon-hezuo:before { content: "\e664"; }
.icon-delete:before { content: "\e66d"; }
.icon-bianjizhuangtai:before { content: "\e655"; }
.icon-guanlianbangding:before { content: "\e619"; }
.icon-xingxing1:before { content: "\e612"; }
.icon-guanlianbangding1:before { content: "\e637"; }
.icon-riqiyoufanye:before { content: "\e613"; }
.icon-riqizuofanye:before { content: "\e614"; }
.icon-fenxiang:before { content: "\e601"; }
.icon-xiugaitupian:before { content: "\e656"; }
.icon-dianhua:before { content: "\e6a9"; }
.icon-shoujirenzheng:before { content: "\e681"; }
.icon-mail:before { content: "\e626"; }
.icon-xinxi:before { content: "\d"; }
.icon-Fscreen:before { content: "\e615"; }
.icon-Sscreen:before { content: "\e616"; }
.icon-add:before { content: "\e617"; }
.icon-shoucang1:before { content: "\e60c"; }
.icon-circularemail1:before { content: "\e682"; }
.icon-icon6:before { content: "\e61a"; }
.icon-iconupload:before { content: "\e685"; }
.icon-fa:before { content: "\e65d"; }
.icon-pandianliebiao:before { content: "\e6b1"; }
.icon-shouqianniu:before { content: "\e61b"; }
.icon-zhankaianniu:before { content: "\e61c"; }
.icon-later:before { content: "\e61d"; }
.icon-before:before { content: "\e61e"; }
.icon-shangyihua:before { content: "\e61f"; }
.icon-xiayihua:before { content: "\e620"; }
.icon-iconfontshangchuan:before { content: "\e621"; }
.icon-pinpaibiaoshi:before { content: "\e67c"; }
.icon-weixin:before { content: "\e622"; }
.icon-gerenxinxi:before { content: "\e657"; }
.icon-caidan:before { content: "\e665"; }
.icon-renren:before { content: "\e623"; }
.icon-gongwenbao:before { content: "\e66b"; }
.icon-fangda:before { content: "\e624"; }
.icon-suoxiao:before { content: "\e625"; }
.icon-xiasanjiao:before { content: "\e618"; }
.icon-pengyouquan:before { content: "\e628"; }
.icon-gongju:before { content: "\e658"; }
.icon-shangsanjiao:before { content: "\e68d"; }
.icon-xiasanjiao1:before { content: "\e68a"; }
.icon-xiugaimima:before { content: "\e659"; }
.icon-pingjiatianchong:before { content: "\e670"; }
.icon-pingjiaxiankuang:before { content: "\e671"; }
.icon-icon1:before { content: "\e692"; }
.icon-icon2:before { content: "\e693"; }
.icon-icon3:before { content: "\e694"; }
.icon-icon4:before { content: "\e695"; }
.icon-icon5:before { content: "\e696"; }
.icon-icon61:before { content: "\e697"; }
.icon-icon7:before { content: "\e698"; }
.icon-icon8:before { content: "\e699"; }
.icon-icon9:before { content: "\e69a"; }
.icon-iconorder:before { content: "\e69b"; }
.icon-iconsuccess:before { content: "\e69c"; }
.icon-huiyuanrenzheng:before { content: "\e660"; }
.icon-icon21:before { content: "\e62c"; }
.icon-saomiaoerweima:before { content: "\e661"; }
.icon-iconfontjinru:before { content: "\e65a"; }
.icon-iconfonterweima:before { content: "\e662"; }
.icon-icon19:before { content: "\e65e"; }
.icon-guanlianzhanghu:before { content: "\e65b"; }
.icon-vip:before { content: "\e65f"; }
.icon-gongpai:before { content: "\e66c"; }
.icon-suishiquxian:before { content: "\e6b0"; }
.icon-loading:before { content: "\e666"; }
.icon-shengyin:before { content: "\e67f"; }
.icon-dianhua1:before { content: "\e6aa"; }
.icon-icon:before { content: "\e688"; }
.icon-yipingjia:before { content: "\e672"; }
.icon-daipingjia:before { content: "\e673"; }
.icon-gantanhao:before { content: "\e6b2"; }
.icon-renwuzhongxin:before { content: "\e67d"; }
.icon-v:before { content: "\e67b"; }
.icon-vip1:before { content: "\e683"; }
.icon-iconfontcolor91:before { content: "\e66e"; }
.icon-qunzuduoren:before { content: "\e680"; }
.icon-weixin1:before { content: "\e684"; }
.icon-jinlingyingcaiicon10:before { content: "\e68b"; }
.icon-iconfontrenwucaogao:before { content: "\e674"; }
.icon-iconfontrenwushezhi:before { content: "\e675"; }
.icon-iconfontrenwutixing:before { content: "\e676"; }
.icon-iconfontxinzengrenwu:before { content: "\e677"; }
.icon-iconfontrenwutongji:before { content: "\e678"; }
.icon-iconfontrenwuyilan:before { content: "\e679"; }
.icon-shanchu1:before { content: "\e686"; }
.icon-xiaolvdashitubiao33324:before { content: "\e691"; }
.icon-feiji:before { content: "\e689"; }
.icon-zengzhifuwu:before { content: "\e687"; }
.icon-pilianggaijia:before { content: "\e66f"; }
.icon-shuxian:before { content: "\e6b4"; }
.icon-address:before { content: "\e6af"; }
.icon-zhongping:before { content: "\e69d"; }
.icon-haoping:before { content: "\e6a2"; }
.icon-chaping:before { content: "\e6a3"; }
.icon-huangguan:before { content: "\e67e"; }
.icon-moon:before { content: "\e68c"; }
.icon-star:before { content: "\e68e"; }
.icon-sun:before { content: "\e68f"; }
.icon-anonymous-iconfont:before { content: "\e690"; }
.icon-4:before { content: "\e69e"; }
.icon-3:before { content: "\e69f"; }
.icon-2:before { content: "\e6a0"; }
.icon-1:before { content: "\e6a1"; }
.icon-weibiaoti4:before { content: "\e6ab"; }
.icon-weibiaoti41:before { content: "\e6ac"; }
.icon-sandengjiang2:before { content: "\e6ad"; }
.icon-zhongbiao:before { content: "\e6ae"; }
.icon-taotai:before { content: "\e6a7"; }
.icon-xuanzhong:before { content: "\e6a8"; }
.icon-fangqi:before { content: "\e6a4"; }
.icon-bukexuanbiao:before { content: "\e6a5"; }
.icon-ruwei:before { content: "\e6a6"; }
.icon-xinxi1:before { content: "\e6b3"; } | 0.299617 | 0.071494 |
@import url('https://fonts.googleapis.com/css?family=Lato');
* {
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: 'Lato', sans-serif;
margin: 0;
overflow: hidden;
}
h4 {
background-color: #fff;
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 10px;
text-align: center;
user-select: none;
}
.sidebar {
background-color: #e6e6e6;
box-shadow: 0px 0px 10px rgba(30, 30, 30, 0.7);
color: black;
position: absolute;
left: 0;
top: 0;
height: 100vh;
padding: 5px;
z-index: 1000;
}
.sidebar ul {
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
list-style-type: none;
padding: 0;
margin: 0;
height: 100%;
}
.sidebar ul li {
padding: 5px 0;
}
.sidebar input, .sidebar button {
text-align: center;
width: 70px;
}
.sidebar li:last-of-type {
margin-top: auto;
}
.sidebar label {
display: block;
font-size: 10px;
margin-bottom: 3px;
}
footer {
background-color: #e6e6e6;
color: black;
font-size: 14px;
bottom: 0;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 999;
}
footer p {
margin: 10px 0;
}
footer i {
color: red !important ;
}
footer a {
color: #3c97bf !important;
text-decoration: none;
}
/* toggle switch */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(255, 255, 255);
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: rgb(0, 0, 0);
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
#download:hover{
filter:invert(100%);
} | css/style.css | @import url('https://fonts.googleapis.com/css?family=Lato');
* {
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: 'Lato', sans-serif;
margin: 0;
overflow: hidden;
}
h4 {
background-color: #fff;
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 10px;
text-align: center;
user-select: none;
}
.sidebar {
background-color: #e6e6e6;
box-shadow: 0px 0px 10px rgba(30, 30, 30, 0.7);
color: black;
position: absolute;
left: 0;
top: 0;
height: 100vh;
padding: 5px;
z-index: 1000;
}
.sidebar ul {
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
list-style-type: none;
padding: 0;
margin: 0;
height: 100%;
}
.sidebar ul li {
padding: 5px 0;
}
.sidebar input, .sidebar button {
text-align: center;
width: 70px;
}
.sidebar li:last-of-type {
margin-top: auto;
}
.sidebar label {
display: block;
font-size: 10px;
margin-bottom: 3px;
}
footer {
background-color: #e6e6e6;
color: black;
font-size: 14px;
bottom: 0;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 999;
}
footer p {
margin: 10px 0;
}
footer i {
color: red !important ;
}
footer a {
color: #3c97bf !important;
text-decoration: none;
}
/* toggle switch */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(255, 255, 255);
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: rgb(0, 0, 0);
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
#download:hover{
filter:invert(100%);
} | 0.434701 | 0.097133 |
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Oswald&display=swap');
/*
Texto corrido: font-family: 'Merriweather', serif;
Título: font-family: 'Oswald', sans-serif;
*/
/* Ajuste do Box model pra tudo */
*, *::after, *::before {box-sizing: border-box;}
html{
font-size:18px;
scroll-behavior:smooth; /*Rolagem suave entre as areas da paágina */
scroll-padding-top:70px; /*Aplica um padding apenas quando o scroll acontece, no nosso caso, ao clicar no links do menu */
}
img, iframe{
max-width: 100%;
}
body{
margin:0;
padding:0;
font-family:'Merriweather',serif;
}
header{
background-color: white;
text-align: center;
justify-content: space-around;
position:sticky;
top:0;
padding-bottom:0.1rem;
}
nav ul{
list-style: none;
padding: 0;
display:flex;
justify-content: space-around;
}
nav a{
text-decoration: none;
color: black;
font-family:'Oswald', 'sans-serif';
padding:.5rem .7rem;
transition: all 0.6s;
}
nav a:hover, nav a:active{
color:rgb(255, 239, 60);
background-color:black;
}
section{
height:73vh;
display: flex;
align-items:center ;
margin:0;
}
.conteudo{
width: 90%;
max-width: 800px;
margin: auto;
}
section h1{
font-family: 'Oswald', sans-serif;
font-size: 3rem;
margin-bottom:1rem;
}
section p{
line-height:1.9rem; /* configura espaço entre as linhas */
}
/* Formatando os botoes das sections */
.cta{
font-family: 'Oswald', sans-serif;
letter-spacing:3px; /*configura espaço entre as letras */
text-decoration: none;
font-size: .8rem;
font-weight: 600;
background-color:rgb(255, 239, 60);
padding:1.5rem 1.8rem;
line-height:5.5rem;
color:#000;
}
.cta::before{
content: "+";
margin-right:.8rem;
font-weight: 600;
}
/* Classe para deixar o link / botão verde água */
.bt-verde-agua{
background-color:#26ccca;
color: #fff;
}
#produto{
background-image: url(../imagem/imagem1.png);
background-size: cover;
background-position-x:center;
}
#produto h1{
margin-top:111px;
}
#ux{
color: #fff;
background-image: url(../imagem/imagem3.png);
}
#motion{
background-image: url(../imagem/imagem4.png);
background-size: cover;
background-position-x:center;
}
#brand{
color: #fff;
background-image: url(../imagem/imagem5.png);
}
.texto-cinza{
color:#999;
}
#print{
background-image: url(../imagem/imagem2.png);
background-size: cover;
background-position-x:center;
color:#fff;
}
.centraliza{
flex-direction: column;
justify-content: center;
}
/* Fazendo o botão do whatsApp flutuar */
.whats{
position: fixed;
bottom:10px;
right:10px;
filter:drop-shadow(3px 3px 20px rgb(4, 288, 90));
}
#acessibilidade{
position: fixed;
right:0;
bottom:250px;
display: flex;
flex-direction: column;
}
#acessibilidade button{
background-color: blueviolet;
color: #333;
border: 1px solid rgb(199, 199, 199);
margin-bottom: 2px;
width:40px;
height:30px;
}
/* Formatando para telas acima de 700px */
@media screen and (min-width:700px){
.conteudo{
width: 50%;
max-width: 800px;
margin:0;
margin-left:4rem;
}
section h1{
font-size: 5rem;
margin-bottom:-0.6rem;
}
#produto, #motion, #print{
background-attachment:fixed ;
}
header{
display: flex;
justify-content: space-around;
align-items: center;
height:10vh;
}
header div{
width:25%;
}
header nav{
width:70%;
max-width:800px;
}
nav a{
font-size:1.1rem;
padding:0.7rem 1rem;
}
} | css/style.css | @import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Oswald&display=swap');
/*
Texto corrido: font-family: 'Merriweather', serif;
Título: font-family: 'Oswald', sans-serif;
*/
/* Ajuste do Box model pra tudo */
*, *::after, *::before {box-sizing: border-box;}
html{
font-size:18px;
scroll-behavior:smooth; /*Rolagem suave entre as areas da paágina */
scroll-padding-top:70px; /*Aplica um padding apenas quando o scroll acontece, no nosso caso, ao clicar no links do menu */
}
img, iframe{
max-width: 100%;
}
body{
margin:0;
padding:0;
font-family:'Merriweather',serif;
}
header{
background-color: white;
text-align: center;
justify-content: space-around;
position:sticky;
top:0;
padding-bottom:0.1rem;
}
nav ul{
list-style: none;
padding: 0;
display:flex;
justify-content: space-around;
}
nav a{
text-decoration: none;
color: black;
font-family:'Oswald', 'sans-serif';
padding:.5rem .7rem;
transition: all 0.6s;
}
nav a:hover, nav a:active{
color:rgb(255, 239, 60);
background-color:black;
}
section{
height:73vh;
display: flex;
align-items:center ;
margin:0;
}
.conteudo{
width: 90%;
max-width: 800px;
margin: auto;
}
section h1{
font-family: 'Oswald', sans-serif;
font-size: 3rem;
margin-bottom:1rem;
}
section p{
line-height:1.9rem; /* configura espaço entre as linhas */
}
/* Formatando os botoes das sections */
.cta{
font-family: 'Oswald', sans-serif;
letter-spacing:3px; /*configura espaço entre as letras */
text-decoration: none;
font-size: .8rem;
font-weight: 600;
background-color:rgb(255, 239, 60);
padding:1.5rem 1.8rem;
line-height:5.5rem;
color:#000;
}
.cta::before{
content: "+";
margin-right:.8rem;
font-weight: 600;
}
/* Classe para deixar o link / botão verde água */
.bt-verde-agua{
background-color:#26ccca;
color: #fff;
}
#produto{
background-image: url(../imagem/imagem1.png);
background-size: cover;
background-position-x:center;
}
#produto h1{
margin-top:111px;
}
#ux{
color: #fff;
background-image: url(../imagem/imagem3.png);
}
#motion{
background-image: url(../imagem/imagem4.png);
background-size: cover;
background-position-x:center;
}
#brand{
color: #fff;
background-image: url(../imagem/imagem5.png);
}
.texto-cinza{
color:#999;
}
#print{
background-image: url(../imagem/imagem2.png);
background-size: cover;
background-position-x:center;
color:#fff;
}
.centraliza{
flex-direction: column;
justify-content: center;
}
/* Fazendo o botão do whatsApp flutuar */
.whats{
position: fixed;
bottom:10px;
right:10px;
filter:drop-shadow(3px 3px 20px rgb(4, 288, 90));
}
#acessibilidade{
position: fixed;
right:0;
bottom:250px;
display: flex;
flex-direction: column;
}
#acessibilidade button{
background-color: blueviolet;
color: #333;
border: 1px solid rgb(199, 199, 199);
margin-bottom: 2px;
width:40px;
height:30px;
}
/* Formatando para telas acima de 700px */
@media screen and (min-width:700px){
.conteudo{
width: 50%;
max-width: 800px;
margin:0;
margin-left:4rem;
}
section h1{
font-size: 5rem;
margin-bottom:-0.6rem;
}
#produto, #motion, #print{
background-attachment:fixed ;
}
header{
display: flex;
justify-content: space-around;
align-items: center;
height:10vh;
}
header div{
width:25%;
}
header nav{
width:70%;
max-width:800px;
}
nav a{
font-size:1.1rem;
padding:0.7rem 1rem;
}
} | 0.175256 | 0.080755 |
@import url('https://fonts.googleapis.com/css?family=Vollkorn:400,900');
/*
font-family: 'Noto Serif', serif;
font-family: 'Roboto', sans-serif;
*/
html, body {
margin: 0;
padding: 0;
width: 100%;
font-family: 'Roboto', sans-serif !important;
}
body {
background: url(../img/unsplash01.jpg) no-repeat fixed center;
background-size: cover;
}
/* ========== LOAD SCREEN ========== */
.overlay {
z-index: 1;
position: absolute;
width: 100%;
height: 100vh;
background: #fff;
top: 0%;
}
.overlay h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
font-weight: bolder;
letter-spacing: 12px;
}
h1 img.load-screen {
width: 250px;
}
/* ========== MENU NAV ========== */
.nav {
line-height: 40px;
margin: 1.2em;
position: absolute;
right: 0;
}
.nav ul li {
font-family: 'Vollkorn', serif;
list-style: none;
display: inline-block;
color: #fff;
padding-right: 36px;
font-weight: bolder;
}
.nav ul li a {
color: #fff;
outline: none;
}
.nav ul li a:hover {
color: #FF701C;
outline: none;
text-decoration: none;
}
.logo {
line-height: 40px;
float: left;
margin: 1.2em 0 0 2.2em;
font-weight: bolder;
color: #fff;
}
.logo img {
width: 200px;
}
/* ========== SOCIAL MEDIA ========== */
.social-media {
position: fixed;
top: 50%;
left: -10px;
transform: translateY(-50%);
}
.social-media ul li {
list-style: none;
color: #fff;
padding-top: 20px;
text-shadow: black 0.1em 0.1em 0.2em
}
.social-media ul li a {
color: #fff;
outline: none;
}
/* ========== SIDE STRIP ========== */
.side-strip {
font-size: 0.8em;
position: fixed;
top: 50%;
transform: translateY(-50%);
right: -10em;
transform: rotate(90deg);
color: #fff;
letter-spacing: 4px;
}
/* ========== HOME ========== */
.home-screen {
height: 100vh;
}
.home {
display: block;
width: 80%;
margin-top: 50px;
left: 46%;
text-shadow: black 0.1em 0.1em 0.2em
}
.home p {
color: #fff;
font-weight: lighter;
font-size: 1.5em;
}
.home ul li {
list-style: none;
color: #fff;
font-size: 1.2em;
font-weight: 600;
}
.home ul li a {
color: #fff;
text-decoration: none;
}
.container a button {
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
border: none;
background: #FF701C;
font-weight: bolder;
outline: none;
}
.container a button:hover {
outline: none;
text-decoration: none;
cursor: pointer;
background: rgb(255, 94, 0);
}
.container button.contact {
background: #343a40 !important;
}
.container button.contact:hover {
background: #424649 !important;
}
.container h1, .container h3 {
color: #fff;
font-weight: bolder;
}
.container .info h3 {
margin-top: 100px;
text-shadow: black 0.1em 0.1em 0.2em;
}
.wrapper {
display: inline-block;
}
/* ========== FORM ========== */
.container h3.center {
text-align: center;
margin-bottom: 20px;
font-size: 2em;
text-shadow: black 0.1em 0.1em 0.2em
}
.container button {
margin-right: 10px;
margin-top: 10px;
margin-bottom: 50%;
border: none;
background: #FF701C;
font-weight: bolder;
outline: none;
}
.container button:hover {
outline: none;
text-decoration: none;
cursor: pointer;
background: rgb(255, 94, 0);
}
/* ========== FOOTER ========== */
footer {
background-color: rgba(0, 0, 0, 0.8);
width: 100%;
color: #fff;
bottom: 0;
font-family: 'Roboto', sans-serif;
font-size: 0.95em;
padding: 10px 0 10px;
text-align: center;
}
footer .container a {
text-decoration: none;
color: #fff;
}
footer .container a:hover {
color: #9e9e9e;
}
/* ========== RESPONSIVE ========== */
@media screen and (max-width: 991px) {
.home {
position: absolute;
width: 80%;
top: 250px;
transform: translate(-50%, -50%);
}
.home h1, .home h3 {
font-size: 1.5em;
}
.home p {
font-size: 1.2em;
}
.home ul {
font-size: 0.8em;
}
.home a button {
font-size: 0.9em;
}
.social-media {
display: none;
}
.side-strip {
display: none;
}
}
@media screen and (max-width: 768px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.container .info h3 {
margin-top: 30px;
}
}
@media screen and (max-width: 640px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.container .info h3 {
margin-top: 30px;
}
.container h3.center {
margin-bottom: 20px;
}
.container button {
margin-top: 10px;
margin-bottom: 10%;
border: none;
}
}
@media only screen and (max-width: 425px) {
.home {
position: absolute;
width: 80%;
top: 300px;
}
.home ul {
font-size: 0.6em;
}
.home a button {
font-size: 0.7em;
}
}
@media screen and (max-width: 350px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.home h1, .home h3 {
font-size: 1.0em;
}
.container .info h3 {
margin-top: 30px;
}
.home p {
font-size: 1.0em;
}
.container h3.center {
margin-bottom: 20px;
font-size: 1.5em;
}
.container button {
margin-top: 10px;
margin-bottom: 10%;
border: none;
}
} | static/css/style.css | @import url('https://fonts.googleapis.com/css?family=Vollkorn:400,900');
/*
font-family: 'Noto Serif', serif;
font-family: 'Roboto', sans-serif;
*/
html, body {
margin: 0;
padding: 0;
width: 100%;
font-family: 'Roboto', sans-serif !important;
}
body {
background: url(../img/unsplash01.jpg) no-repeat fixed center;
background-size: cover;
}
/* ========== LOAD SCREEN ========== */
.overlay {
z-index: 1;
position: absolute;
width: 100%;
height: 100vh;
background: #fff;
top: 0%;
}
.overlay h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
font-weight: bolder;
letter-spacing: 12px;
}
h1 img.load-screen {
width: 250px;
}
/* ========== MENU NAV ========== */
.nav {
line-height: 40px;
margin: 1.2em;
position: absolute;
right: 0;
}
.nav ul li {
font-family: 'Vollkorn', serif;
list-style: none;
display: inline-block;
color: #fff;
padding-right: 36px;
font-weight: bolder;
}
.nav ul li a {
color: #fff;
outline: none;
}
.nav ul li a:hover {
color: #FF701C;
outline: none;
text-decoration: none;
}
.logo {
line-height: 40px;
float: left;
margin: 1.2em 0 0 2.2em;
font-weight: bolder;
color: #fff;
}
.logo img {
width: 200px;
}
/* ========== SOCIAL MEDIA ========== */
.social-media {
position: fixed;
top: 50%;
left: -10px;
transform: translateY(-50%);
}
.social-media ul li {
list-style: none;
color: #fff;
padding-top: 20px;
text-shadow: black 0.1em 0.1em 0.2em
}
.social-media ul li a {
color: #fff;
outline: none;
}
/* ========== SIDE STRIP ========== */
.side-strip {
font-size: 0.8em;
position: fixed;
top: 50%;
transform: translateY(-50%);
right: -10em;
transform: rotate(90deg);
color: #fff;
letter-spacing: 4px;
}
/* ========== HOME ========== */
.home-screen {
height: 100vh;
}
.home {
display: block;
width: 80%;
margin-top: 50px;
left: 46%;
text-shadow: black 0.1em 0.1em 0.2em
}
.home p {
color: #fff;
font-weight: lighter;
font-size: 1.5em;
}
.home ul li {
list-style: none;
color: #fff;
font-size: 1.2em;
font-weight: 600;
}
.home ul li a {
color: #fff;
text-decoration: none;
}
.container a button {
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
border: none;
background: #FF701C;
font-weight: bolder;
outline: none;
}
.container a button:hover {
outline: none;
text-decoration: none;
cursor: pointer;
background: rgb(255, 94, 0);
}
.container button.contact {
background: #343a40 !important;
}
.container button.contact:hover {
background: #424649 !important;
}
.container h1, .container h3 {
color: #fff;
font-weight: bolder;
}
.container .info h3 {
margin-top: 100px;
text-shadow: black 0.1em 0.1em 0.2em;
}
.wrapper {
display: inline-block;
}
/* ========== FORM ========== */
.container h3.center {
text-align: center;
margin-bottom: 20px;
font-size: 2em;
text-shadow: black 0.1em 0.1em 0.2em
}
.container button {
margin-right: 10px;
margin-top: 10px;
margin-bottom: 50%;
border: none;
background: #FF701C;
font-weight: bolder;
outline: none;
}
.container button:hover {
outline: none;
text-decoration: none;
cursor: pointer;
background: rgb(255, 94, 0);
}
/* ========== FOOTER ========== */
footer {
background-color: rgba(0, 0, 0, 0.8);
width: 100%;
color: #fff;
bottom: 0;
font-family: 'Roboto', sans-serif;
font-size: 0.95em;
padding: 10px 0 10px;
text-align: center;
}
footer .container a {
text-decoration: none;
color: #fff;
}
footer .container a:hover {
color: #9e9e9e;
}
/* ========== RESPONSIVE ========== */
@media screen and (max-width: 991px) {
.home {
position: absolute;
width: 80%;
top: 250px;
transform: translate(-50%, -50%);
}
.home h1, .home h3 {
font-size: 1.5em;
}
.home p {
font-size: 1.2em;
}
.home ul {
font-size: 0.8em;
}
.home a button {
font-size: 0.9em;
}
.social-media {
display: none;
}
.side-strip {
display: none;
}
}
@media screen and (max-width: 768px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.container .info h3 {
margin-top: 30px;
}
}
@media screen and (max-width: 640px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.container .info h3 {
margin-top: 30px;
}
.container h3.center {
margin-bottom: 20px;
}
.container button {
margin-top: 10px;
margin-bottom: 10%;
border: none;
}
}
@media only screen and (max-width: 425px) {
.home {
position: absolute;
width: 80%;
top: 300px;
}
.home ul {
font-size: 0.6em;
}
.home a button {
font-size: 0.7em;
}
}
@media screen and (max-width: 350px) {
.home {
position: absolute;
width: 80%;
top: 250px;
}
.home h1, .home h3 {
font-size: 1.0em;
}
.container .info h3 {
margin-top: 30px;
}
.home p {
font-size: 1.0em;
}
.container h3.center {
margin-bottom: 20px;
font-size: 1.5em;
}
.container button {
margin-top: 10px;
margin-bottom: 10%;
border: none;
}
} | 0.261897 | 0.042384 |
:root{
--whiteColor: #fff;
--unseclectableText: #999999;
--textColor: #333;
--grayColor: #d8d8d8;
--hyperlinkColor: #4d96ff;
--lightestColor: #1aa3ff;
--lighterColor: #008ae6;
--mainColor: #006bb3;
--darkerColor: #004d80;
--darkestColor: #002e4d;
--redColor: #f44336;
--grey_background: #f1f1f1;
}
/*==========Common==========*/
pre{
font-family: 'Roboto Slap', 'ubuntu', sans-serif;
font-size: 1.7rem;
}
*{
box-sizing: inherit;
}
html{
font-size: 62.5%;
line-height: 1.6rem;
font-family: 'Roboto Slap', 'ubuntu', sans-serif;
box-sizing: border-box;
margin: 0 auto;
color: var(--textColor);
}
a{
text-decoration: none;
color: var(--textColor);
transition: color 0.2s linear;
}
a:hover{
color: var(--mainColor);
}
ul li {
list-style-type: none;
}
button{
outline: none;
border: none;
}
.grid{
width: 1540px;
max-width: 100%;
margin: 0 auto;
}
.user_level{
color: var(--unseclectableText);
text-align: center;
}
.isActive{
color: var(--hyperlinkColor) !important;
}
.link__profile{
color: blue;
}
.link__profile:hover{
text-decoration: underline;
}
/*================Keyframe====================*/
@keyframes opa--start{
from{
opacity: 0;
}
to{
opacity: 1;
}
}
@keyframes opa--end{
from{
opacity: 1;
}
to{
opacity: 0;
}
}
/*================Notify==================*/
.notify-error{
padding: 0 10px;
color: var(--redColor);
font-size: 1.3rem;
}
/*================Navigator-bar===============*/
header {
font-size: 1.5rem;
margin: 0 auto;
position: relative;
height: 65px;
}
.Space_for_navbar {
width: 100%;
height: 65px;
position: relative;
}
.Nav_bar {
z-index: 10;
position: fixed;
display: flex;
flex-wrap: nowrap;
top: 0;
left: 0;
width: 100%;
height: 65px;
background: var(--whiteColor);
justify-content: space-around;
align-items: center;
text-align: center;
line-height: 65px;
box-shadow: 0px 0px 4px #999999;
padding: 0 15px;
}
.small-avatar{
width: 50px;
height: 50px;
border: 3px solid var(--grayColor);
border-radius: 50%;
margin-right: 15px;
}
/*======Sizing========*/
.Nav_Search{
width: 85%;
line-height: 3.5rem;
display: flex;
}
.Nav_Sign{
display: none;
width: 15%;
min-width: 225px;
height: 100%;
flex-wrap: nowrap;
align-items: center;
order: 5;
}
.Signed{
width: 100%;
height: 100%;
flex-wrap: nowrap;
align-items: center;
order: 5;
display: flex;
}
.Signed a{
border: none !important;
}
.Signed a i{
padding-right: 8px;
}
.Personal{
width: 75%;
height: 100%;
height: 100%;
display: flex;
align-items: center;
}
.arrow{
width: 0;
height: 0;
border-bottom: 12px solid var(--mainColor);
border-left: 15px solid transparent;
border-right: 15px solid transparent;
transform: translateY(-8px);
margin-top: 3px;
}
.Personal-hover{
display: none;
position: absolute;
width: 165px;
top: -10px;
}
.Personal-hover a{
line-height: 2.5rem;
margin: 2px 5px;
width: 93%;
color: var(--whiteColor) !important;
}
.Personal-hover a:hover{
background-color: var(--lightestColor);
}
.Personal:hover .Personal-hover{
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--mainColor);
transform: translateY(75px) translateX(15px);
border-radius: 0.4rem;
}
#userInfor{
justify-content: flex-start;
}
.Nav__items{
flex: 1;
display: flex;
justify-content: space-around;
height: 65px;
}
.Nav__items-a{
display: none;
}
.hide-on-res-62em{
display: none;
}
.Nav_bar div[id]{
min-width: 67px;
}
/*=======Logo=======*/
.Nav_Logo img{
width: 95px;
}
#Logo{
display: flex;
align-items: center;
}
/*======Sign=====*/
.Nav_Sign a{
height: 65%;
margin: 5px;
border: solid 1px var(--mainColor);
border-radius: 5px;
color: var(--mainColor) ;
font-weight: bold;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.Nav_Sign a label{
line-height: 1rem;
}
.Nav_Sign a label:hover{
cursor: pointer;
}
.Nav_Sign a[id ^= Sign_Login]:hover{
color: var(--lighterColor);
border-color: var(--lighterColor);
}
.Nav_Sign a[id ^= Sign_Signup]{
color: white;
background-color: var(--mainColor);
}
.Nav_Sign a[id ^= Sign_Signup]:hover{
background-color: var(--lighterColor);
border-color: var(--lighterColor);
}
/*======Search======*/
.Nav_Search form{
display: flex;
border: none;
margin: auto;
border-radius: 18px;
height: 30px;
width: 100%;
width: -moz-available; /* WebKit-based browsers will ignore this. */
width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
width: fill-available;
}
#Text{
width: 80%;
border: solid 2px var(--mainColor);
border-right: none;
border-radius: 10px 0px 0px 10px;
outline: none;
padding-left: 10px;
color: var(--textColor);
transition: border-color 0.2s linear;
}
#Text:focus{
border-color: var(--lighterColor);
}
#Button{
display: flex;
align-items: center;
justify-content: center;
width: 10%;
border: solid 2px var(--mainColor);
border-left: none;
border-radius: 0px 10px 10px 0px;
cursor: pointer;
background-color: var(--mainColor);
color: var(--whiteColor);
min-width: 40px;
outline: none;
transition: background-color 0.2s linear, border-color 0.2s linear;
}
#Button:hover{
background-color: var(--lighterColor);
border-color: var(--lighterColor);
}
.space_for_btn{
width: 25px;
height: 25px;
margin-left: 15px;
}
/*=====================Mobile navbar===================*/
.Nav__mobile-btn{
width: 25px;
height: 25px;
line-height: 1.6em;
position: fixed;
z-index: 12;
top: 0;
right: 0;
margin-top: 20px;
margin-right: 12px;
}
.Nav__mobile{
transform: translateX(-100%);
position: fixed;
z-index: 21;
width: 270px;
top: 0;
left: 0;
bottom: 0;
padding: 15px 20px;
background-color: var(--whiteColor);
display: flex;
flex-direction: column;
line-height: 2.3rem;
font-size: 1.8rem;
transition: transform linear 0.2s;
}
.Nav__mobile > a{
padding: 15px 0;
border-bottom: 1px solid #ebebeb;
}
.Nav__mobile div{
display: flex;
justify-content: space-between;
padding: 15px 0px;
border-bottom: 1px solid #ebebeb;
}
.Register__mobile{
color: var(--mainColor);
}
.Language__mobile a{
display: flex;
align-items: center;
}
.Language__mobile img{
width: 25px;
height: 25px;
margin-right: 5px;
}
#btn-bars{
font-size: 2.5rem;
}
#btn-x{
font-size: 2.5rem;
display: none;
}
/*======================Body==================*/
.Body__one{
width: 100%;
height: 780px;
background-color: var(--whiteColor);
padding-bottom: 100px;
}
.Body__one img{
position: absolute;
z-index: 0;
width: 100%;
}
.Body__one-a{
height: 840px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.Body__one--content{
display: flex; /*--flex--*/
flex-direction: column;
background-color: var(--whiteColor);
color: var(--mainColor);
height: fit-content;
width: fit-content;
max-width: 515px;
border-radius: 3px;
padding: 20px;
border: 1px solid;
margin: 20px 0;
}
.Body__one--content h1{
font-size: 3.5rem;
line-height: 4rem;
}
.Body__one--content p{
font-size: 2rem;
line-height: 2.2rem;
}
.Body__one--register{
display: flex; /*--flex--*/
flex-direction: column;
max-width: 400px;
background-color: white;
border-radius: 10px;
padding: 40px;
box-shadow: 0 0 20px 0 rgb(29 31 89 / 10%);
position: relative;
line-height: 2rem;
font-size: 1.8rem;
top: -60px;
}
.Body__one--register label{
font-size: 1.6rem;
}
.Body__one--register form{
display: flex;
flex-direction: column;
}
.Body__one--register > label{
font-size: 2.5rem;
margin-bottom: 10px;
}
.Body__one--register input{
display: block;
width: 100%;
height: 45px;
margin-top: 10px;
padding-left: 10px;
border: 1px solid;
border-radius: 4px;
border-color: var(--grayColor);
outline: none;
}
.Body__one--register input:hover{
border-color: var(--mainColor);
}
.Body__one--register button{
margin-top: 10px;
width: 100%;
height: 45px;
margin-top: 10px;
background: linear-gradient(350deg,#61b4f8 0%,#1271ff 100%);
color: var(--whiteColor);
border: 1px solid;
border-radius: 4px;
cursor: pointer;
}
.Body__one--register button:hover{
opacity: 0.9;
}
.Body__one--register p{
padding-top: 10px;
font-size: 1.7rem;
font-weight: 300;
line-height: 2rem;
border-top: 1px solid var(--grayColor);
}
.Body__one--register p:last-child{
font-size: 1.8rem;
}
.Body__one--register a{
color: var(--mainColor);
}
.Body__one--register a:hover{
cursor: pointer;
}
.Bride__one{
width: 100%;
background-color: #f7f9fa;
}
.Bride__one ul{
height: 135px;
padding: 30px 0;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin-block-start: 0;
margin-block-end: 0;
user-select: none;
}
.Bride__one img{
height: 75px;
}
.Body__two{
width: 100%;
height: 740px;
background-color: var(--whiteColor);
}
.Bride__two{
width: 100%;
background-color: rgba(0, 7, 179, 0.95);
display: flex;
align-items: center;
}
.Bride__two-background{
position: fixed;
z-index: -1;
top: 0;
width: 100%;
min-height: 635px;
}
.Bride__two-container{
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 0;
}
.Bride__two-content{
display: flex;
flex-direction: column;
justify-content: space-between;
width: inherit;
color: var(--whiteColor);
}
.Bride_two-btn{
display: block;
margin: 50px 0;
}
.Bride__two-content h2{
font-size: 4rem;
}
.Bride__two-content h3{
font-size: 2.8rem;
line-height: 2.8rem;
font-weight: 400;
}
.Body__three{
width: 100%;
height: 720px;
background-color: #d6d8ff;
}
.Body__four{
width: 100%;
height: 765px;
background-color: #fff9eb;
}
.Bride__last{
width: 100%;
height: 320px;
display: flex;
align-items: center;
}
.Bride__last img{
position: absolute;
width: 100%;
z-index: 0;
}
.Bride_last-content{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1;
}
.Bride__last h2{
font-size: 2.6rem;
color: white;
}
.Bride__last h3{
font-size: 2.2rem;
line-height: 2.4rem;
color: white;
margin-bottom: 65px;
}
.Bride__last a, .Bride_two-btn a{
background: #e8505b;
color: var(--whiteColor);
font-size: 1.8rem;
font-weight: 700;
line-height: 1.27;
padding: 18px 25px;
border-radius: 4px;
cursor: pointer;
}
/*=====================Footer================*/
footer{
border-top: 1px solid;
border-color: var(--grayColor);
padding-top: 20px;
background-color: var(--whiteColor);
}
.Footer{
max-width: 1600px;
width: 100%;
display: flex;
flex-direction: column;
font-size: 1.6rem;
font-weight: 300;
justify-content: space-between;
padding: 0 80px;
}
.Footer__Logo{
flex: auto;
padding: 16px 16px;
}
.Footer__Logo--decription{
font-size: 1.5rem;
color: var(--textColor);
line-height: 2rem;
}
.Footer__Content{
flex: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
line-height: 2.9rem;
}
.Footer__Content label{
color: var(--darkerColor);
font-weight: 400;
}
.Footer__Content div{
padding: 10px 20px;
white-space: nowrap;
}
.Footer__Coppyright{
display: flex;
background-color: var(--darkestColor);
}
#coppyright{
margin: auto;
color: var(--whiteColor);
font-size: 1rem;
}
/*======================= Modal ===================*/
.modal{
display: none; /*================*/
position: fixed;
z-index: 21;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.25);
}
.modal__body--login{
padding: 20px;
display: flex; /*================*/
flex-direction: column;
margin: auto;
background-color: var(--whiteColor);
border-radius: 4px;
width: 455px;
font-size: 1.8rem;
line-height: 3.6rem;
padding: 30px;
z-index: 22;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.modal__body--login > label{
font-size: 2.5rem;
margin-bottom: 10px;
}
.modal__body--login input{
display: block;
width: 100%;
height: 45px;
margin-top: 10px;
padding-left: 10px;
border: 1px solid;
border-radius: 4px;
border-color: var(--grayColor);
outline: none;
}
.modal__body--login input:hover{
border-color: var(--mainColor);
}
.modal__body--login button{
margin-top: 10px;
width: 100%;
height: 45px;
margin-top: 10px;
background: linear-gradient(350deg,#61b4f8 0%,#1271ff 100%);
color: var(--whiteColor);
border: 1px solid;
border-radius: 4px;
cursor: pointer;
}
.modal__body--login button:hover{
opacity: 0.9;
}
.modal__body--login p{
padding-top: 10px;
font-size: 1.3rem;
font-weight: 300;
line-height: 2rem;
border-top: 1px solid var(--grayColor);
}
.modal__body--register p:last-child{
font-size: 1.8rem;
}
.zxz{
display: flex;
justify-content: flex-end;
}
.zxz a{
font-size: 1.25rem;
text-align: right;
color: var(--hyperlinkColor);
}
.container{
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
/*-------------------------Overlay-------------------------*/
.page_overlay{
display: none;
position: fixed;
z-index: 20;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.25);
}
/*-------------------------RESPOSIVE-----------------------*/
@media only screen and (min-width: 26.5625em){
.Nav__mobile{
width: 360px;
}
}
@media only screen and (min-width: 48em){
/*-----------------Tablet-----------------*/
.container{
width: 750px;
}
.Footer__Content{
flex-direction: row;
}
.Nav_Logo img{
width: 100px;
}
.Bride__last h2 {
font-size: 3.5rem;
}
.Bride__last h3 {
font-size: 3rem;
}
.Bride__two-content{
flex-direction: row;
}
.Bride__two-content h2{
font-size: 3.5rem;
}
.Bride__two-content h3{
font-size: 2.2rem;
line-height: 2.8rem;
}
.Nav__mobile-btn{
margin-right: 20px;
}
}
@media only screen and (min-width: 62em){
/*------------------Laptop---------------*/
.container{
width: 970px;
}
.Nav_Sign{
display: flex;
}
.Nav_Search{
width: 60%;
}
.Nav__items{
display: flex;
}
.Nav__items-a{
display: flex;
width: 35%;
justify-content: space-around;
}
.hide-on-res-62em{
display: none;
}
.Nav__mobile-btn{
display: none;
}
.Nav_Logo img{
width: 122px;
}
.Bride__two-content h2{
font-size: 4rem;
}
.Bride__two-content h3{
font-size: 2.8rem;
line-height: 2.8rem;
}
.space_for_btn{
display: none;
}
.Body__one-a{
height: 840px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
}
@media only screen and (min-width: 75em){
/*------------------PC---------------*/
.container{
width: 1170px;
}
.Footer{
flex-direction: row;
}
.Nav_Search{
width: 45%;
}
.hide-on-res-62em{
display: block;
}
.Bride__two-content h2{
font-size: 5rem;
}
.Footer__Content{
width: 40%;
}
.Footer__Logo{
width: 45%;
}
}
@media only screen and (min-width: 93.75em){
/*------------------2K---------------*/
.container{
max-width: 1600px;
width: 100%;
padding-left: 80px;
padding-right: 80px;
}
}
/*================home=============*/
.home__body{
background-color: var(--grey_background);
}
.welcome, .news, .studies{
margin-bottom: 75px;
}
.shares{
padding-bottom: 55px;
}
.welcome__quote{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--darkerColor);
color: var(--whiteColor);
height: 125px;
font-size: 1.85rem;
}
.news img, .studies img{
object-fit: fill;
}
.title{
font-size: 2.55rem;
margin-bottom: 19.5px;
}
.selection{
margin-bottom: 20px;
display: flex;
width: 100%;
justify-content: space-between;
}
.home__news__trendy__btn{
margin-right: 45px;
}
.home__news__trendy__btn:hover{
cursor: pointer;
}
.home__news__new__btn{
opacity: 62%;
}
.home__news__new__btn:hover{
cursor: pointer;
}
.selection label, .see_all{
font-size: 1.85rem;
}
.news__trendy{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
}
.news__new{
display: none;
justify-content: space-between;
align-items: center;
flex-direction: row;
}
.trendy__block_1, .trendy__block_2, .trendy__block_3, .new__block_1, .new__block_2, .new__block_3{
width: 30%;
height: 470px;
background-color: var(--whiteColor);
border-radius: 4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 2.2rem;
}
/*=================*/
.trendy__block__content, .new__block__content{
height: 90%;
width: 93%;
display: flex;
flex-direction: column;
font-size: 1.7rem;
border-bottom: solid 1px var(--grayColor);
}
.trendy__block__content > img{
margin-bottom: 15px;
}
.a__title{
color: var(--textColor);
font-weight: bold;
font-size: 1.95rem;
}
.a__title:hover{
text-decoration: underline;
}
.rating{
color: #ffcc00;
font-size: 1.7rem;
margin: 15px 0px;
}
.nostar{
color: var(--grayColor);
}
.trendy__block__content img{
width: 100%;
height: 55%;
background-color: var(--lighterColor);
}
.block__content{
color: var(--unseclectableText);
line-height: 2rem;
}
.trendy__block__detail, .new__block__detail{
width: 93%;
height: 6%;
display: flex;
justify-content: space-between;
align-items: center;
}
/*================*/
.studies__content{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
padding-bottom: 45px;
margin-top: 15px;
}
.studies__content__block_1, .studies__content__block_2, .studies__content__block_3, .studies__content__block_4{
width: 23%;
height: 440px;
background-color: var(--whiteColor);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 3px;
display: flex;
flex-direction: column;
}
/*=====================*/
.studies__block__content{
width: 100%;
height: 85%;
border-bottom: solid 1px var(--grayColor);
display: flex;
flex-direction: column;
align-items: center;
}
.studies__block__content img{
width: 100%;
height: 65%;
background-color: var(--mainColor);
margin-bottom: 15px;
}
.studies__content__one{
width: 88%;
}
.studies__content__one a{
font-size: 1.95rem;
}
.studies__content__one div{
margin-top: 15px;
font-size: 1.7rem;
}
.studies__block__detail{
width: 100%;
height: 15%;
display: flex;
justify-content: center;
align-items: center;
}
.studies__block__detail div{
width: 80%;
display: flex;
justify-content: space-between;
align-items: center;
}
.studies__block__detail div a{
font-size: 1.85rem;
}
.studies__block__detail div a:hover{
font-size: 2rem;
text-decoration: underline;
}
/*====================*/
.shares__content{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
height: 660px;
width: 85%;
}
.shares__content--cover{
width: 100%;
display: flex;
justify-content: center;
}
.shares__content__block_1, .shares__content__block_2, .shares__content__block_3 {
width: 100%;
height: 31.5%;
background-color: var(--whiteColor);
display: flex;
justify-content: space-between;
align-items: center;
}
.shares__content__block_3{
margin-bottom: 8px;
}
.shares__content__one {
width: 10%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.shares__content__two{
width: 88%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: center;
padding-right: 25px;
}
/*========================*/
.shares__content__one img{
width: 82px;
height: 82px;
margin-bottom: 5px;
border: 4px solid var(--grayColor);
border-radius: 50px;
}
.UpAndDown{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: var(--unseclectableText);
}
.UpAndDown i{
font-size: 3.5rem;
color: var(--unseclectableText);
}
.UpAndDown label{
font-size: 2.2rem;
color: var(--unseclectableText);
}
.shares__block__content{
width: 100%;
height: 85%;
font-size: 1.7rem;
}
.shares__block__content a{
font-size: 2rem;
}
.shares__block__content a:hover{
color: black;
text-decoration: underline;
}
.shares__block__content div{
margin-top: 8px;
color: var(--textColor);
}
.shares__block__detail{
font-size: 1.55rem;
}
.shares__block__detail > *{
margin-right: 18px;
}
/*==========end-home=============*/
/*===================course=================*/
.course__body{
background-color: var(--grey_background);
}
.course__welcome, .course__core, .course__code, .course__algorithm{
margin-bottom: 75px;
}
.course__advance{
padding-bottom: 75px;
}
.course__welcome__quote{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--darkerColor);
color: var(--whiteColor);
height: 125px;
font-size: 1.65rem;
}
.course__block{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
}
.course__block > div{
width: 23%;
height: 440px;
margin-right: 2%;
margin-bottom: 30px;
background-color: var(--whiteColor);
border-radius: 0px 0px 7px 7px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
/*====================end-course================*/
/*=============News=============*/
.news__body{
width: 100%;
background-color: var(--grey_background);
}
.news__container{
padding: 60px 65px;
}
.news__highlight{
padding: 12px;
height: 340px;
border-radius: 7px;
background-color: var(--whiteColor);
}
.news__highlight__block{
width: 100%;
height: 100%;
display: flex;
}
.news__highlight__block img{
width: 40%;
background-color: #008ae6;
}
.news__highlight__one{
width: 59%;
height: 100%;
padding: 35px 15px 10px 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.news__highlight__content{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.news__highlight__content label{
font-size: 1.75rem;
color: var(--textColor);
line-height: 2.75rem;
}
.news__highlight__detail{
border-top: 1px solid var(--grayColor);
font-size: 1.65rem;
padding-top: 12.5px;
}
.news__highlight__detail label{
margin-right: 38px;
}
#a__title__highlight{
font-size: 2.5rem;
line-height: 2.85rem;
}
.newspage__new{
display: flex;
flex-direction: column;
}
.newspage__block{
margin-bottom: 35px;
height: 225px;
padding: 12px;
border-radius: 5px;
background-color: var(--whiteColor);
display: flex;
justify-content: space-between;
}
.newspage__block img{
width: 30%;
}
.newspage__one{
width: 68%;
padding: 25px 0 0 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.newspage__content label{
font-size: 1.7rem;
line-height: 2.5rem;
}
.newspage__detail{
border-top: 1px solid var(--grayColor);
font-size: 1.45rem;
padding-top: 9.5px;
}
.newspage__detail > *{
margin-right: 35px;
}
/*=============end-news==========*/
/*===================share===============*/
.share__body{
background-color: var(--grey_background);
}
.share__container{
padding: 60px 95px;
display: flex;
flex-direction: column;
justify-content: center;
}
.share__container > *{
margin-bottom: 30px;
}
.share__first{
width: 100%;
display: flex;
justify-content: space-between;
}
.share__search{
width: 45%;
}
.check__logged a{
color: var(--redColor);
font-size: 1.85rem;
line-height: 3.7rem;
}
.check__logged a:hover{
text-decoration: underline;
}
.share__create a{
font-size: 1.85rem;
color: blue;
line-height: 3.3rem;
}
.share__create a:hover{
text-decoration: underline;
}
.share__search__block{
width: 100%;
position: relative;
display: flex;
color: var(--textColor);
}
.searchTerm {
width: 100%;
border: none;
border-right: none;
padding: 5px;
height: 36px;
border-radius: 3px 0 0 3px;
outline: none;
color: var(--textColor);
font-size: 1.6rem;
}
.searchButton{
width: 40px;
height: 36px;
border: none;
background-color: var(--whiteColor);
text-align: center;
color: var(--lighterColor);
border-radius: 0 3px 3px 0;
cursor: pointer;
font-size: 22px;
transition: background-color 0.22s linear, color 0.22s linear;
}
.searchButton:hover{
background-color: var(--lighterColor);
color: var(--whiteColor);
}
.share__content{
display: flex;
flex-direction: column;
}
.share__content > *{
margin-bottom: 10px;
}
.share__content__block{
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--whiteColor);
padding: 5px;
height: 210px;
border-radius: 2px;
}
.share__content__one{
width: 10%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.share__content__two{
width: 88%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-right: 25px;
}
.img__avatar__82{
width: 82px;
height: 82px;
margin-bottom: 5px;
border: 4px solid var(--grayColor);
border-radius: 50px;
}
.img__avatar__52{
width: 52px;
height: 52px;
margin-bottom: 5px;
border: 3px solid var(--grayColor);
border-radius: 50%;
}
.share__block__content{
width: 100%;
height: 85%;
font-size: 1.7rem;
line-height: 2.2rem;
overflow: hidden;
}
.share__block__content a{
font-size: 2rem;
}
.share__block__content a:hover{
color: black;
text-decoration: underline;
}
.share__block__content p{
color: var(--textColor);
max-height: 86.4px;
}
.share__block__detail{
font-size: 1.55rem;
height: 15%;
display: flex;
align-items: center;
}
.share__block__detail > *{
margin-right: 18px;
}
.discussion__block__content__fisrt{
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-between;
align-items: center;
}
.discussion__orderby{
margin-bottom: 30px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.discussion__orderby >a{
font-size: 1.85rem;
margin-right: 25px;
}
.discussion__pagination{
width: 100%;
margin-top: 35px;
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: center;
justify-content: center;
align-items: center;
}
.discussion__pagination > a{
background-color: var(--whiteColor);
color: var(--textColor);
border-radius: 4px;
margin: 0 5px;
width: 50px;
height: 28px;
display: flex;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
flex-direction: row;
font-size: 1.45rem;
font-weight: bold;
}
.discussion__pagination > a:hover{
background-color: var(--hyperlinkColor);
color: var(--whiteColor);
}
#pagination--activated{
background-color: var(--hyperlinkColor);
color: var(--whiteColor);
}
/*==================end-share============*/
/*==================login================*/
.login__body{
background-color: var(--grey_background);
padding: 95px 0px;
}
/*================end-login=============*/
/*==================Personal=============*/
.personal__body{
background-color: var(--grey_background);
color: var(--textColor);
font-size: 1.85rem;
}
.personal__cover{
display: flex;
justify-content: center;
}
.personal__leftnavbar{
padding-top: 20px;
width: 20%;
height: 100%;
margin-bottom: 190px;
}
.personal__leftnavbar > div{
border-bottom: solid 2px var(--unseclectableText);
padding-right: 15px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.personal__leftnavbar__avatar{
height: 125px;
}
.personal__leftnavbar__userinfor, .personal__leftnavbar__usershare, .personal__leftnavbar__logout{
height: 45px;
}
.personal__content{
padding-top: 20px;
padding-bottom: 75px;
width: 80%;
border-left: solid 2px var(--unseclectableText);
}
.personal__content__quote{
border-bottom: solid 2px var(--unseclectableText);
position: relative;
}
.personal__content__quote > div{
width: 100%;
flex-wrap: wrap;
min-height: 123px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.personal__content__quote > div > label{
margin: 10px 25px 20px 25px;
font-size: 2.5rem;
flex-wrap: wrap;
text-align: center;
line-height: 3.2rem;
}
.personal__content__quote > div > div{
display: flex;
justify-content: flex-end;
}
.personal__content__quote > label{
position: absolute;
bottom: 10px;
right: 5px;
}
.personal__avatar__border img{
width: 82px;
height: 82px;
border-radius: 50%;
border: solid 4px var(--grayColor);
}
.personal__content__userinfor__block1, .personal__content__userinfor__block2, .personal__content__userinfor__block3, .personal__content__userinfor__blocklast{
padding: 20px;
border-bottom: solid 1px var(--unseclectableText);
position: relative;
margin-left: 20px;
margin-top: 20px;
border-left: solid 1px var(--unseclectableText);
border-top: solid 1px var(--unseclectableText);
}
.personal__content__userinfor__block1 > div{
display: flex;
flex-direction: row;
}
.personal__content__userinfor__block1 > label, .personal__content__userinfor__block2 > label, .personal__content__userinfor__block3 > label, .personal__content__userinfor__blocklast > label{
position: absolute;
bottom: 10px;
right: 5px;
}
.userinfor__block1__content{
margin-left: 35px;
display: flex;
flex-direction: column;
justify-content: center;
}
.userinfor__block1__content label{
margin-bottom: 8px;
}
.userinfor__block1__content > label:last-child{
font-size: 1.7rem;
color: var(--unseclectableText);
}
#personal__changeinfor__text, .userinfor__blocklast__content{
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
line-height: 35px;
}
.change{
cursor: pointer;
}
.change:hover{
text-decoration: underline;
}
#personal__changepassword__form, #personal__changeinfor__form{
display: flex;
}
#personal__changepassword__form > input[type=password], #personal__changeinfor__form > input[type=text]{
margin-right: 25px;
outline: var(--mainColor);
}
#personal__changepassword__form > div > input, #personal__changeinfor__form > div > input{
margin-bottom: 10px;
}
#personal__changepassword__form > input, #personal__changeinfor__form > input, #personal__changequote__form > input[type='submit'], #personal__changeAvatar__form > input[type='submit']{
height: 35px;
cursor: pointer;
}
#personal__changequote__form{
min-height: 123px;
display: flex;
flex-wrap: nowrap;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
}
#personal__changequote__form input[type=text]{
width: 80%;
height: 35px;
margin: 15px 10px;
padding: 0 7px;
border: none;
outline: none;
margin-bottom: 20px;
}
#personal__changeAvatar__form > input[type='file']{
background-color: var(--whiteColor);
margin-right: 200px;
}
.inputFile{
cursor: pointer;
border-radius: 4px;
font-size: 1.5rem;
line-height: 3rem;
}
/*================Personal-end===========*/
/*=================Question===============*/
.question__body{
background-color: var(--grey_background);
}
.question__cover{
padding: 45px 175px 150px 175px;
display: flex;
flex-direction: column;
justify-content: center;
}
.question__content{
font-size: 1.85rem;
line-height: 3rem;
}
#question_form{
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: flex-start;
}
#question_form > input[type=text]{
outline: none;
border: none;
width: 100%;
height: 38px;
border-radius: 4px;
padding: 12px;
}
#question_submit{
margin-top: 20px;
width: 105px ;
height: 45px ;
border: none;
cursor: pointer;
border-radius: 2.5px;
background-color: var(--mainColor);
color: var(--whiteColor);
}
#question_cancel{
margin-top: 20px;
width: 105px ;
height: 45px ;
border: none;
cursor: pointer;
border-radius: 2.5px;
background-color: var(--unseclectableText);
color: var(--whiteColor);
}
#question_submit:hover, #question_cancel:hover{
opacity: 0.8;
}
#question_form > label{
font-size: 1.75rem;
margin-top: 10px;
font-weight: bold;
display: flex;
align-items: flex-start;
}
.textarea{
width: auto;
min-width:100%;
height: 350px;
}
.textarea__buttons{
position: absolute;
margin: 1px;
padding: 5px;
width: 1007px;
background-color: var(--whiteColor);
}
.textarea__buttons>div{
height: 0px;
width: 99.99%;
border-bottom: solid 1px var(--grayColor);
}
.textarea__buttons button{
color: var(--unseclectableText);
background-color: var(--whiteColor);
height: 30px;
width: 35px;
cursor: pointer;
font-size: 1.8rem;
}
.textarea__buttons button:hover{
color: var(--whiteColor);
background-color: var(--unseclectableText);
}
#question_textaria{
min-width:1009px;
max-width: 1009px;
height: 100%;
padding: 45px 12px;
outline: none;
}
.asterisk--rule{
color: var(--redColor);
font-size: 0.75rem;
margin: 3px 6px;
}
/*==============Question end===============*/
/*===============POST===============*/
.post__body{
background-color: var(--grey_background);
}
.post__cover{
padding: 45px 155px 150px 155px;
display: flex;
flex-direction: column;
justify-content: center;
}
.post__content{
font-size: 1.85rem;
line-height: 3rem;
}
.post__container{
background-color: var(--whiteColor);
border-radius: 4px;
padding: 12px;
}
.post__main{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: flex-start;
}
.post__content__one{
width: 12%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.post__content__two{
width: 86%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-right: 12px;
padding-top: 15px;
}
.post__block__content{
width: 100%;
height: 85%;
font-size: 1.8rem;
line-height: 2.3rem;
}
.post__block__content__first{
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-between;
align-items: center;
}
.post__block__content__first > label{
width: 90%;
font-size: 2.3rem;
line-height: 3.5rem;
}
.dropdownBtn__postblock{
background-color: var(--whiteColor);
}
.post__block__content__more{
width: 45px;
font-size: 2.5rem;
cursor: pointer;
border-radius: 6px;
background-color: var(--whiteColor);
}
.post__block__content__more:hover{
background-color: var(--grey_background);
}
.show__dropdown{
display: flex !important;
}
.dropdown-content__postblock{
display: none; /* flex */
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
position: absolute;
width: 150px;
background-color: var(--whiteColor);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
border-radius: 4px;
line-height: 2.8rem;
transform: translateX(-46%);
}
.dropdown-content__postblock > a{
width: 80%;
font-size: 1.75rem;
border-radius: 3px;
text-align: center;
}
.dropdown-content__postblock > a:first-child{
margin-top: 12px;
}
.dropdown-content__postblock > a:last-child{
border-top: solid 1px var(--unseclectableText);
border-radius: 0px 0px 3px 3px;
margin-bottom: 12px;
}
.dropdown-content__postblock > a:hover{
background-color: var(--grey_background);
color: var(--textColor);
}
.arrow-up{
display: none;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid var(--whiteColor);
position: absolute;
z-index: 1;
transform: translateX(19px) translateY(-7px);
}
.post__block__detail{
font-size: 1.55rem;
height: 15%;
display: flex;
align-items: center;
margin-top: 15px;
}
.post__block__detail label{
margin-right: 15px;
}
.post__bridge{
margin-top: 25px;
padding: 0 10px;
font-size: 1.8rem;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
border-bottom: solid 1px var(--grayColor);
}
#post__bridge__text{
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
}
.new__comment{
color: blue;
}
#post__bridge__form{
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
}
#post__bridge__form > *{
margin-bottom: 15px;
}
#post__bridge__form > label{
color: var(--mainColor);
}
#post__bridge__form > textarea{
min-width: 70%;
max-width: 100%;
min-height: 65px;
max-height: 650px;
padding: 7px;
line-height: 2.25rem;
}
#post__bridge__form > input[type=submit]{
border: none;
color: var(--whiteColor);
background-color: var(--mainColor);
width: 95px;
height: 35px;
border-radius: 4px;
cursor: pointer;
}
#post__bridge__form > input[type=submit]:hover{
opacity: 0.85;
}
.post__comment__block{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
justify-content: space-between;
align-items: flex-start;
margin: 15px;
border-bottom: solid 1px var(--grayColor);
}
.post__comment__block__first{
width: 8%;
height: 100%;
display: flex;
justify-content: center;
}
.post__comment__block__second{
width: 90%;
}
.comment__block__second__one{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-size: 1.35rem;
color: var(--textColor);
}
.comment__block__second__one > img {
margin-right: 15px;
}
.comment__block__second__one > div{
display: flex;
flex-direction: column;
margin-right: 35px;
}
.comment__block__second__two > p{
font-size: 1.75rem;
line-height: 2.25rem;
}
#button__score:hover{
color: var(--hyperlinkColor);
}
/*===============POST END================*/
/*===============MY POST=================*/
.personal__myposts{
padding: 20px;
}
/*==============MY POST END==============*/
/*==============FILE SHARING=============*/
.filesharing_content{
margin: 0;
}
.file_show{
padding: 15px 10px;
margin: 5px 0;
background-color: var(--grayColor);
border-radius: 4px;
}
.file_show i{
font-size: 2.2rem;
}
.file_a:hover{
text-decoration: none !important;
}
.file_show_file{
padding: 15px 20px;
margin-right: 10px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
background-color: var(--grayColor);
border-radius: 4px;
}
/*=============FILE SHARING END=========*/ | public/CSS/stylesheet.css | :root{
--whiteColor: #fff;
--unseclectableText: #999999;
--textColor: #333;
--grayColor: #d8d8d8;
--hyperlinkColor: #4d96ff;
--lightestColor: #1aa3ff;
--lighterColor: #008ae6;
--mainColor: #006bb3;
--darkerColor: #004d80;
--darkestColor: #002e4d;
--redColor: #f44336;
--grey_background: #f1f1f1;
}
/*==========Common==========*/
pre{
font-family: 'Roboto Slap', 'ubuntu', sans-serif;
font-size: 1.7rem;
}
*{
box-sizing: inherit;
}
html{
font-size: 62.5%;
line-height: 1.6rem;
font-family: 'Roboto Slap', 'ubuntu', sans-serif;
box-sizing: border-box;
margin: 0 auto;
color: var(--textColor);
}
a{
text-decoration: none;
color: var(--textColor);
transition: color 0.2s linear;
}
a:hover{
color: var(--mainColor);
}
ul li {
list-style-type: none;
}
button{
outline: none;
border: none;
}
.grid{
width: 1540px;
max-width: 100%;
margin: 0 auto;
}
.user_level{
color: var(--unseclectableText);
text-align: center;
}
.isActive{
color: var(--hyperlinkColor) !important;
}
.link__profile{
color: blue;
}
.link__profile:hover{
text-decoration: underline;
}
/*================Keyframe====================*/
@keyframes opa--start{
from{
opacity: 0;
}
to{
opacity: 1;
}
}
@keyframes opa--end{
from{
opacity: 1;
}
to{
opacity: 0;
}
}
/*================Notify==================*/
.notify-error{
padding: 0 10px;
color: var(--redColor);
font-size: 1.3rem;
}
/*================Navigator-bar===============*/
header {
font-size: 1.5rem;
margin: 0 auto;
position: relative;
height: 65px;
}
.Space_for_navbar {
width: 100%;
height: 65px;
position: relative;
}
.Nav_bar {
z-index: 10;
position: fixed;
display: flex;
flex-wrap: nowrap;
top: 0;
left: 0;
width: 100%;
height: 65px;
background: var(--whiteColor);
justify-content: space-around;
align-items: center;
text-align: center;
line-height: 65px;
box-shadow: 0px 0px 4px #999999;
padding: 0 15px;
}
.small-avatar{
width: 50px;
height: 50px;
border: 3px solid var(--grayColor);
border-radius: 50%;
margin-right: 15px;
}
/*======Sizing========*/
.Nav_Search{
width: 85%;
line-height: 3.5rem;
display: flex;
}
.Nav_Sign{
display: none;
width: 15%;
min-width: 225px;
height: 100%;
flex-wrap: nowrap;
align-items: center;
order: 5;
}
.Signed{
width: 100%;
height: 100%;
flex-wrap: nowrap;
align-items: center;
order: 5;
display: flex;
}
.Signed a{
border: none !important;
}
.Signed a i{
padding-right: 8px;
}
.Personal{
width: 75%;
height: 100%;
height: 100%;
display: flex;
align-items: center;
}
.arrow{
width: 0;
height: 0;
border-bottom: 12px solid var(--mainColor);
border-left: 15px solid transparent;
border-right: 15px solid transparent;
transform: translateY(-8px);
margin-top: 3px;
}
.Personal-hover{
display: none;
position: absolute;
width: 165px;
top: -10px;
}
.Personal-hover a{
line-height: 2.5rem;
margin: 2px 5px;
width: 93%;
color: var(--whiteColor) !important;
}
.Personal-hover a:hover{
background-color: var(--lightestColor);
}
.Personal:hover .Personal-hover{
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--mainColor);
transform: translateY(75px) translateX(15px);
border-radius: 0.4rem;
}
#userInfor{
justify-content: flex-start;
}
.Nav__items{
flex: 1;
display: flex;
justify-content: space-around;
height: 65px;
}
.Nav__items-a{
display: none;
}
.hide-on-res-62em{
display: none;
}
.Nav_bar div[id]{
min-width: 67px;
}
/*=======Logo=======*/
.Nav_Logo img{
width: 95px;
}
#Logo{
display: flex;
align-items: center;
}
/*======Sign=====*/
.Nav_Sign a{
height: 65%;
margin: 5px;
border: solid 1px var(--mainColor);
border-radius: 5px;
color: var(--mainColor) ;
font-weight: bold;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.Nav_Sign a label{
line-height: 1rem;
}
.Nav_Sign a label:hover{
cursor: pointer;
}
.Nav_Sign a[id ^= Sign_Login]:hover{
color: var(--lighterColor);
border-color: var(--lighterColor);
}
.Nav_Sign a[id ^= Sign_Signup]{
color: white;
background-color: var(--mainColor);
}
.Nav_Sign a[id ^= Sign_Signup]:hover{
background-color: var(--lighterColor);
border-color: var(--lighterColor);
}
/*======Search======*/
.Nav_Search form{
display: flex;
border: none;
margin: auto;
border-radius: 18px;
height: 30px;
width: 100%;
width: -moz-available; /* WebKit-based browsers will ignore this. */
width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
width: fill-available;
}
#Text{
width: 80%;
border: solid 2px var(--mainColor);
border-right: none;
border-radius: 10px 0px 0px 10px;
outline: none;
padding-left: 10px;
color: var(--textColor);
transition: border-color 0.2s linear;
}
#Text:focus{
border-color: var(--lighterColor);
}
#Button{
display: flex;
align-items: center;
justify-content: center;
width: 10%;
border: solid 2px var(--mainColor);
border-left: none;
border-radius: 0px 10px 10px 0px;
cursor: pointer;
background-color: var(--mainColor);
color: var(--whiteColor);
min-width: 40px;
outline: none;
transition: background-color 0.2s linear, border-color 0.2s linear;
}
#Button:hover{
background-color: var(--lighterColor);
border-color: var(--lighterColor);
}
.space_for_btn{
width: 25px;
height: 25px;
margin-left: 15px;
}
/*=====================Mobile navbar===================*/
.Nav__mobile-btn{
width: 25px;
height: 25px;
line-height: 1.6em;
position: fixed;
z-index: 12;
top: 0;
right: 0;
margin-top: 20px;
margin-right: 12px;
}
.Nav__mobile{
transform: translateX(-100%);
position: fixed;
z-index: 21;
width: 270px;
top: 0;
left: 0;
bottom: 0;
padding: 15px 20px;
background-color: var(--whiteColor);
display: flex;
flex-direction: column;
line-height: 2.3rem;
font-size: 1.8rem;
transition: transform linear 0.2s;
}
.Nav__mobile > a{
padding: 15px 0;
border-bottom: 1px solid #ebebeb;
}
.Nav__mobile div{
display: flex;
justify-content: space-between;
padding: 15px 0px;
border-bottom: 1px solid #ebebeb;
}
.Register__mobile{
color: var(--mainColor);
}
.Language__mobile a{
display: flex;
align-items: center;
}
.Language__mobile img{
width: 25px;
height: 25px;
margin-right: 5px;
}
#btn-bars{
font-size: 2.5rem;
}
#btn-x{
font-size: 2.5rem;
display: none;
}
/*======================Body==================*/
.Body__one{
width: 100%;
height: 780px;
background-color: var(--whiteColor);
padding-bottom: 100px;
}
.Body__one img{
position: absolute;
z-index: 0;
width: 100%;
}
.Body__one-a{
height: 840px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.Body__one--content{
display: flex; /*--flex--*/
flex-direction: column;
background-color: var(--whiteColor);
color: var(--mainColor);
height: fit-content;
width: fit-content;
max-width: 515px;
border-radius: 3px;
padding: 20px;
border: 1px solid;
margin: 20px 0;
}
.Body__one--content h1{
font-size: 3.5rem;
line-height: 4rem;
}
.Body__one--content p{
font-size: 2rem;
line-height: 2.2rem;
}
.Body__one--register{
display: flex; /*--flex--*/
flex-direction: column;
max-width: 400px;
background-color: white;
border-radius: 10px;
padding: 40px;
box-shadow: 0 0 20px 0 rgb(29 31 89 / 10%);
position: relative;
line-height: 2rem;
font-size: 1.8rem;
top: -60px;
}
.Body__one--register label{
font-size: 1.6rem;
}
.Body__one--register form{
display: flex;
flex-direction: column;
}
.Body__one--register > label{
font-size: 2.5rem;
margin-bottom: 10px;
}
.Body__one--register input{
display: block;
width: 100%;
height: 45px;
margin-top: 10px;
padding-left: 10px;
border: 1px solid;
border-radius: 4px;
border-color: var(--grayColor);
outline: none;
}
.Body__one--register input:hover{
border-color: var(--mainColor);
}
.Body__one--register button{
margin-top: 10px;
width: 100%;
height: 45px;
margin-top: 10px;
background: linear-gradient(350deg,#61b4f8 0%,#1271ff 100%);
color: var(--whiteColor);
border: 1px solid;
border-radius: 4px;
cursor: pointer;
}
.Body__one--register button:hover{
opacity: 0.9;
}
.Body__one--register p{
padding-top: 10px;
font-size: 1.7rem;
font-weight: 300;
line-height: 2rem;
border-top: 1px solid var(--grayColor);
}
.Body__one--register p:last-child{
font-size: 1.8rem;
}
.Body__one--register a{
color: var(--mainColor);
}
.Body__one--register a:hover{
cursor: pointer;
}
.Bride__one{
width: 100%;
background-color: #f7f9fa;
}
.Bride__one ul{
height: 135px;
padding: 30px 0;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin-block-start: 0;
margin-block-end: 0;
user-select: none;
}
.Bride__one img{
height: 75px;
}
.Body__two{
width: 100%;
height: 740px;
background-color: var(--whiteColor);
}
.Bride__two{
width: 100%;
background-color: rgba(0, 7, 179, 0.95);
display: flex;
align-items: center;
}
.Bride__two-background{
position: fixed;
z-index: -1;
top: 0;
width: 100%;
min-height: 635px;
}
.Bride__two-container{
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 0;
}
.Bride__two-content{
display: flex;
flex-direction: column;
justify-content: space-between;
width: inherit;
color: var(--whiteColor);
}
.Bride_two-btn{
display: block;
margin: 50px 0;
}
.Bride__two-content h2{
font-size: 4rem;
}
.Bride__two-content h3{
font-size: 2.8rem;
line-height: 2.8rem;
font-weight: 400;
}
.Body__three{
width: 100%;
height: 720px;
background-color: #d6d8ff;
}
.Body__four{
width: 100%;
height: 765px;
background-color: #fff9eb;
}
.Bride__last{
width: 100%;
height: 320px;
display: flex;
align-items: center;
}
.Bride__last img{
position: absolute;
width: 100%;
z-index: 0;
}
.Bride_last-content{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1;
}
.Bride__last h2{
font-size: 2.6rem;
color: white;
}
.Bride__last h3{
font-size: 2.2rem;
line-height: 2.4rem;
color: white;
margin-bottom: 65px;
}
.Bride__last a, .Bride_two-btn a{
background: #e8505b;
color: var(--whiteColor);
font-size: 1.8rem;
font-weight: 700;
line-height: 1.27;
padding: 18px 25px;
border-radius: 4px;
cursor: pointer;
}
/*=====================Footer================*/
footer{
border-top: 1px solid;
border-color: var(--grayColor);
padding-top: 20px;
background-color: var(--whiteColor);
}
.Footer{
max-width: 1600px;
width: 100%;
display: flex;
flex-direction: column;
font-size: 1.6rem;
font-weight: 300;
justify-content: space-between;
padding: 0 80px;
}
.Footer__Logo{
flex: auto;
padding: 16px 16px;
}
.Footer__Logo--decription{
font-size: 1.5rem;
color: var(--textColor);
line-height: 2rem;
}
.Footer__Content{
flex: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
line-height: 2.9rem;
}
.Footer__Content label{
color: var(--darkerColor);
font-weight: 400;
}
.Footer__Content div{
padding: 10px 20px;
white-space: nowrap;
}
.Footer__Coppyright{
display: flex;
background-color: var(--darkestColor);
}
#coppyright{
margin: auto;
color: var(--whiteColor);
font-size: 1rem;
}
/*======================= Modal ===================*/
.modal{
display: none; /*================*/
position: fixed;
z-index: 21;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.25);
}
.modal__body--login{
padding: 20px;
display: flex; /*================*/
flex-direction: column;
margin: auto;
background-color: var(--whiteColor);
border-radius: 4px;
width: 455px;
font-size: 1.8rem;
line-height: 3.6rem;
padding: 30px;
z-index: 22;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.modal__body--login > label{
font-size: 2.5rem;
margin-bottom: 10px;
}
.modal__body--login input{
display: block;
width: 100%;
height: 45px;
margin-top: 10px;
padding-left: 10px;
border: 1px solid;
border-radius: 4px;
border-color: var(--grayColor);
outline: none;
}
.modal__body--login input:hover{
border-color: var(--mainColor);
}
.modal__body--login button{
margin-top: 10px;
width: 100%;
height: 45px;
margin-top: 10px;
background: linear-gradient(350deg,#61b4f8 0%,#1271ff 100%);
color: var(--whiteColor);
border: 1px solid;
border-radius: 4px;
cursor: pointer;
}
.modal__body--login button:hover{
opacity: 0.9;
}
.modal__body--login p{
padding-top: 10px;
font-size: 1.3rem;
font-weight: 300;
line-height: 2rem;
border-top: 1px solid var(--grayColor);
}
.modal__body--register p:last-child{
font-size: 1.8rem;
}
.zxz{
display: flex;
justify-content: flex-end;
}
.zxz a{
font-size: 1.25rem;
text-align: right;
color: var(--hyperlinkColor);
}
.container{
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
/*-------------------------Overlay-------------------------*/
.page_overlay{
display: none;
position: fixed;
z-index: 20;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.25);
}
/*-------------------------RESPOSIVE-----------------------*/
@media only screen and (min-width: 26.5625em){
.Nav__mobile{
width: 360px;
}
}
@media only screen and (min-width: 48em){
/*-----------------Tablet-----------------*/
.container{
width: 750px;
}
.Footer__Content{
flex-direction: row;
}
.Nav_Logo img{
width: 100px;
}
.Bride__last h2 {
font-size: 3.5rem;
}
.Bride__last h3 {
font-size: 3rem;
}
.Bride__two-content{
flex-direction: row;
}
.Bride__two-content h2{
font-size: 3.5rem;
}
.Bride__two-content h3{
font-size: 2.2rem;
line-height: 2.8rem;
}
.Nav__mobile-btn{
margin-right: 20px;
}
}
@media only screen and (min-width: 62em){
/*------------------Laptop---------------*/
.container{
width: 970px;
}
.Nav_Sign{
display: flex;
}
.Nav_Search{
width: 60%;
}
.Nav__items{
display: flex;
}
.Nav__items-a{
display: flex;
width: 35%;
justify-content: space-around;
}
.hide-on-res-62em{
display: none;
}
.Nav__mobile-btn{
display: none;
}
.Nav_Logo img{
width: 122px;
}
.Bride__two-content h2{
font-size: 4rem;
}
.Bride__two-content h3{
font-size: 2.8rem;
line-height: 2.8rem;
}
.space_for_btn{
display: none;
}
.Body__one-a{
height: 840px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
}
@media only screen and (min-width: 75em){
/*------------------PC---------------*/
.container{
width: 1170px;
}
.Footer{
flex-direction: row;
}
.Nav_Search{
width: 45%;
}
.hide-on-res-62em{
display: block;
}
.Bride__two-content h2{
font-size: 5rem;
}
.Footer__Content{
width: 40%;
}
.Footer__Logo{
width: 45%;
}
}
@media only screen and (min-width: 93.75em){
/*------------------2K---------------*/
.container{
max-width: 1600px;
width: 100%;
padding-left: 80px;
padding-right: 80px;
}
}
/*================home=============*/
.home__body{
background-color: var(--grey_background);
}
.welcome, .news, .studies{
margin-bottom: 75px;
}
.shares{
padding-bottom: 55px;
}
.welcome__quote{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--darkerColor);
color: var(--whiteColor);
height: 125px;
font-size: 1.85rem;
}
.news img, .studies img{
object-fit: fill;
}
.title{
font-size: 2.55rem;
margin-bottom: 19.5px;
}
.selection{
margin-bottom: 20px;
display: flex;
width: 100%;
justify-content: space-between;
}
.home__news__trendy__btn{
margin-right: 45px;
}
.home__news__trendy__btn:hover{
cursor: pointer;
}
.home__news__new__btn{
opacity: 62%;
}
.home__news__new__btn:hover{
cursor: pointer;
}
.selection label, .see_all{
font-size: 1.85rem;
}
.news__trendy{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
}
.news__new{
display: none;
justify-content: space-between;
align-items: center;
flex-direction: row;
}
.trendy__block_1, .trendy__block_2, .trendy__block_3, .new__block_1, .new__block_2, .new__block_3{
width: 30%;
height: 470px;
background-color: var(--whiteColor);
border-radius: 4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 2.2rem;
}
/*=================*/
.trendy__block__content, .new__block__content{
height: 90%;
width: 93%;
display: flex;
flex-direction: column;
font-size: 1.7rem;
border-bottom: solid 1px var(--grayColor);
}
.trendy__block__content > img{
margin-bottom: 15px;
}
.a__title{
color: var(--textColor);
font-weight: bold;
font-size: 1.95rem;
}
.a__title:hover{
text-decoration: underline;
}
.rating{
color: #ffcc00;
font-size: 1.7rem;
margin: 15px 0px;
}
.nostar{
color: var(--grayColor);
}
.trendy__block__content img{
width: 100%;
height: 55%;
background-color: var(--lighterColor);
}
.block__content{
color: var(--unseclectableText);
line-height: 2rem;
}
.trendy__block__detail, .new__block__detail{
width: 93%;
height: 6%;
display: flex;
justify-content: space-between;
align-items: center;
}
/*================*/
.studies__content{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
padding-bottom: 45px;
margin-top: 15px;
}
.studies__content__block_1, .studies__content__block_2, .studies__content__block_3, .studies__content__block_4{
width: 23%;
height: 440px;
background-color: var(--whiteColor);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 3px;
display: flex;
flex-direction: column;
}
/*=====================*/
.studies__block__content{
width: 100%;
height: 85%;
border-bottom: solid 1px var(--grayColor);
display: flex;
flex-direction: column;
align-items: center;
}
.studies__block__content img{
width: 100%;
height: 65%;
background-color: var(--mainColor);
margin-bottom: 15px;
}
.studies__content__one{
width: 88%;
}
.studies__content__one a{
font-size: 1.95rem;
}
.studies__content__one div{
margin-top: 15px;
font-size: 1.7rem;
}
.studies__block__detail{
width: 100%;
height: 15%;
display: flex;
justify-content: center;
align-items: center;
}
.studies__block__detail div{
width: 80%;
display: flex;
justify-content: space-between;
align-items: center;
}
.studies__block__detail div a{
font-size: 1.85rem;
}
.studies__block__detail div a:hover{
font-size: 2rem;
text-decoration: underline;
}
/*====================*/
.shares__content{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
height: 660px;
width: 85%;
}
.shares__content--cover{
width: 100%;
display: flex;
justify-content: center;
}
.shares__content__block_1, .shares__content__block_2, .shares__content__block_3 {
width: 100%;
height: 31.5%;
background-color: var(--whiteColor);
display: flex;
justify-content: space-between;
align-items: center;
}
.shares__content__block_3{
margin-bottom: 8px;
}
.shares__content__one {
width: 10%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.shares__content__two{
width: 88%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: center;
padding-right: 25px;
}
/*========================*/
.shares__content__one img{
width: 82px;
height: 82px;
margin-bottom: 5px;
border: 4px solid var(--grayColor);
border-radius: 50px;
}
.UpAndDown{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: var(--unseclectableText);
}
.UpAndDown i{
font-size: 3.5rem;
color: var(--unseclectableText);
}
.UpAndDown label{
font-size: 2.2rem;
color: var(--unseclectableText);
}
.shares__block__content{
width: 100%;
height: 85%;
font-size: 1.7rem;
}
.shares__block__content a{
font-size: 2rem;
}
.shares__block__content a:hover{
color: black;
text-decoration: underline;
}
.shares__block__content div{
margin-top: 8px;
color: var(--textColor);
}
.shares__block__detail{
font-size: 1.55rem;
}
.shares__block__detail > *{
margin-right: 18px;
}
/*==========end-home=============*/
/*===================course=================*/
.course__body{
background-color: var(--grey_background);
}
.course__welcome, .course__core, .course__code, .course__algorithm{
margin-bottom: 75px;
}
.course__advance{
padding-bottom: 75px;
}
.course__welcome__quote{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--darkerColor);
color: var(--whiteColor);
height: 125px;
font-size: 1.65rem;
}
.course__block{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
}
.course__block > div{
width: 23%;
height: 440px;
margin-right: 2%;
margin-bottom: 30px;
background-color: var(--whiteColor);
border-radius: 0px 0px 7px 7px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
/*====================end-course================*/
/*=============News=============*/
.news__body{
width: 100%;
background-color: var(--grey_background);
}
.news__container{
padding: 60px 65px;
}
.news__highlight{
padding: 12px;
height: 340px;
border-radius: 7px;
background-color: var(--whiteColor);
}
.news__highlight__block{
width: 100%;
height: 100%;
display: flex;
}
.news__highlight__block img{
width: 40%;
background-color: #008ae6;
}
.news__highlight__one{
width: 59%;
height: 100%;
padding: 35px 15px 10px 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.news__highlight__content{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.news__highlight__content label{
font-size: 1.75rem;
color: var(--textColor);
line-height: 2.75rem;
}
.news__highlight__detail{
border-top: 1px solid var(--grayColor);
font-size: 1.65rem;
padding-top: 12.5px;
}
.news__highlight__detail label{
margin-right: 38px;
}
#a__title__highlight{
font-size: 2.5rem;
line-height: 2.85rem;
}
.newspage__new{
display: flex;
flex-direction: column;
}
.newspage__block{
margin-bottom: 35px;
height: 225px;
padding: 12px;
border-radius: 5px;
background-color: var(--whiteColor);
display: flex;
justify-content: space-between;
}
.newspage__block img{
width: 30%;
}
.newspage__one{
width: 68%;
padding: 25px 0 0 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.newspage__content label{
font-size: 1.7rem;
line-height: 2.5rem;
}
.newspage__detail{
border-top: 1px solid var(--grayColor);
font-size: 1.45rem;
padding-top: 9.5px;
}
.newspage__detail > *{
margin-right: 35px;
}
/*=============end-news==========*/
/*===================share===============*/
.share__body{
background-color: var(--grey_background);
}
.share__container{
padding: 60px 95px;
display: flex;
flex-direction: column;
justify-content: center;
}
.share__container > *{
margin-bottom: 30px;
}
.share__first{
width: 100%;
display: flex;
justify-content: space-between;
}
.share__search{
width: 45%;
}
.check__logged a{
color: var(--redColor);
font-size: 1.85rem;
line-height: 3.7rem;
}
.check__logged a:hover{
text-decoration: underline;
}
.share__create a{
font-size: 1.85rem;
color: blue;
line-height: 3.3rem;
}
.share__create a:hover{
text-decoration: underline;
}
.share__search__block{
width: 100%;
position: relative;
display: flex;
color: var(--textColor);
}
.searchTerm {
width: 100%;
border: none;
border-right: none;
padding: 5px;
height: 36px;
border-radius: 3px 0 0 3px;
outline: none;
color: var(--textColor);
font-size: 1.6rem;
}
.searchButton{
width: 40px;
height: 36px;
border: none;
background-color: var(--whiteColor);
text-align: center;
color: var(--lighterColor);
border-radius: 0 3px 3px 0;
cursor: pointer;
font-size: 22px;
transition: background-color 0.22s linear, color 0.22s linear;
}
.searchButton:hover{
background-color: var(--lighterColor);
color: var(--whiteColor);
}
.share__content{
display: flex;
flex-direction: column;
}
.share__content > *{
margin-bottom: 10px;
}
.share__content__block{
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--whiteColor);
padding: 5px;
height: 210px;
border-radius: 2px;
}
.share__content__one{
width: 10%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.share__content__two{
width: 88%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-right: 25px;
}
.img__avatar__82{
width: 82px;
height: 82px;
margin-bottom: 5px;
border: 4px solid var(--grayColor);
border-radius: 50px;
}
.img__avatar__52{
width: 52px;
height: 52px;
margin-bottom: 5px;
border: 3px solid var(--grayColor);
border-radius: 50%;
}
.share__block__content{
width: 100%;
height: 85%;
font-size: 1.7rem;
line-height: 2.2rem;
overflow: hidden;
}
.share__block__content a{
font-size: 2rem;
}
.share__block__content a:hover{
color: black;
text-decoration: underline;
}
.share__block__content p{
color: var(--textColor);
max-height: 86.4px;
}
.share__block__detail{
font-size: 1.55rem;
height: 15%;
display: flex;
align-items: center;
}
.share__block__detail > *{
margin-right: 18px;
}
.discussion__block__content__fisrt{
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-between;
align-items: center;
}
.discussion__orderby{
margin-bottom: 30px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.discussion__orderby >a{
font-size: 1.85rem;
margin-right: 25px;
}
.discussion__pagination{
width: 100%;
margin-top: 35px;
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: center;
justify-content: center;
align-items: center;
}
.discussion__pagination > a{
background-color: var(--whiteColor);
color: var(--textColor);
border-radius: 4px;
margin: 0 5px;
width: 50px;
height: 28px;
display: flex;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
flex-direction: row;
font-size: 1.45rem;
font-weight: bold;
}
.discussion__pagination > a:hover{
background-color: var(--hyperlinkColor);
color: var(--whiteColor);
}
#pagination--activated{
background-color: var(--hyperlinkColor);
color: var(--whiteColor);
}
/*==================end-share============*/
/*==================login================*/
.login__body{
background-color: var(--grey_background);
padding: 95px 0px;
}
/*================end-login=============*/
/*==================Personal=============*/
.personal__body{
background-color: var(--grey_background);
color: var(--textColor);
font-size: 1.85rem;
}
.personal__cover{
display: flex;
justify-content: center;
}
.personal__leftnavbar{
padding-top: 20px;
width: 20%;
height: 100%;
margin-bottom: 190px;
}
.personal__leftnavbar > div{
border-bottom: solid 2px var(--unseclectableText);
padding-right: 15px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.personal__leftnavbar__avatar{
height: 125px;
}
.personal__leftnavbar__userinfor, .personal__leftnavbar__usershare, .personal__leftnavbar__logout{
height: 45px;
}
.personal__content{
padding-top: 20px;
padding-bottom: 75px;
width: 80%;
border-left: solid 2px var(--unseclectableText);
}
.personal__content__quote{
border-bottom: solid 2px var(--unseclectableText);
position: relative;
}
.personal__content__quote > div{
width: 100%;
flex-wrap: wrap;
min-height: 123px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.personal__content__quote > div > label{
margin: 10px 25px 20px 25px;
font-size: 2.5rem;
flex-wrap: wrap;
text-align: center;
line-height: 3.2rem;
}
.personal__content__quote > div > div{
display: flex;
justify-content: flex-end;
}
.personal__content__quote > label{
position: absolute;
bottom: 10px;
right: 5px;
}
.personal__avatar__border img{
width: 82px;
height: 82px;
border-radius: 50%;
border: solid 4px var(--grayColor);
}
.personal__content__userinfor__block1, .personal__content__userinfor__block2, .personal__content__userinfor__block3, .personal__content__userinfor__blocklast{
padding: 20px;
border-bottom: solid 1px var(--unseclectableText);
position: relative;
margin-left: 20px;
margin-top: 20px;
border-left: solid 1px var(--unseclectableText);
border-top: solid 1px var(--unseclectableText);
}
.personal__content__userinfor__block1 > div{
display: flex;
flex-direction: row;
}
.personal__content__userinfor__block1 > label, .personal__content__userinfor__block2 > label, .personal__content__userinfor__block3 > label, .personal__content__userinfor__blocklast > label{
position: absolute;
bottom: 10px;
right: 5px;
}
.userinfor__block1__content{
margin-left: 35px;
display: flex;
flex-direction: column;
justify-content: center;
}
.userinfor__block1__content label{
margin-bottom: 8px;
}
.userinfor__block1__content > label:last-child{
font-size: 1.7rem;
color: var(--unseclectableText);
}
#personal__changeinfor__text, .userinfor__blocklast__content{
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
line-height: 35px;
}
.change{
cursor: pointer;
}
.change:hover{
text-decoration: underline;
}
#personal__changepassword__form, #personal__changeinfor__form{
display: flex;
}
#personal__changepassword__form > input[type=password], #personal__changeinfor__form > input[type=text]{
margin-right: 25px;
outline: var(--mainColor);
}
#personal__changepassword__form > div > input, #personal__changeinfor__form > div > input{
margin-bottom: 10px;
}
#personal__changepassword__form > input, #personal__changeinfor__form > input, #personal__changequote__form > input[type='submit'], #personal__changeAvatar__form > input[type='submit']{
height: 35px;
cursor: pointer;
}
#personal__changequote__form{
min-height: 123px;
display: flex;
flex-wrap: nowrap;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
}
#personal__changequote__form input[type=text]{
width: 80%;
height: 35px;
margin: 15px 10px;
padding: 0 7px;
border: none;
outline: none;
margin-bottom: 20px;
}
#personal__changeAvatar__form > input[type='file']{
background-color: var(--whiteColor);
margin-right: 200px;
}
.inputFile{
cursor: pointer;
border-radius: 4px;
font-size: 1.5rem;
line-height: 3rem;
}
/*================Personal-end===========*/
/*=================Question===============*/
.question__body{
background-color: var(--grey_background);
}
.question__cover{
padding: 45px 175px 150px 175px;
display: flex;
flex-direction: column;
justify-content: center;
}
.question__content{
font-size: 1.85rem;
line-height: 3rem;
}
#question_form{
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: flex-start;
}
#question_form > input[type=text]{
outline: none;
border: none;
width: 100%;
height: 38px;
border-radius: 4px;
padding: 12px;
}
#question_submit{
margin-top: 20px;
width: 105px ;
height: 45px ;
border: none;
cursor: pointer;
border-radius: 2.5px;
background-color: var(--mainColor);
color: var(--whiteColor);
}
#question_cancel{
margin-top: 20px;
width: 105px ;
height: 45px ;
border: none;
cursor: pointer;
border-radius: 2.5px;
background-color: var(--unseclectableText);
color: var(--whiteColor);
}
#question_submit:hover, #question_cancel:hover{
opacity: 0.8;
}
#question_form > label{
font-size: 1.75rem;
margin-top: 10px;
font-weight: bold;
display: flex;
align-items: flex-start;
}
.textarea{
width: auto;
min-width:100%;
height: 350px;
}
.textarea__buttons{
position: absolute;
margin: 1px;
padding: 5px;
width: 1007px;
background-color: var(--whiteColor);
}
.textarea__buttons>div{
height: 0px;
width: 99.99%;
border-bottom: solid 1px var(--grayColor);
}
.textarea__buttons button{
color: var(--unseclectableText);
background-color: var(--whiteColor);
height: 30px;
width: 35px;
cursor: pointer;
font-size: 1.8rem;
}
.textarea__buttons button:hover{
color: var(--whiteColor);
background-color: var(--unseclectableText);
}
#question_textaria{
min-width:1009px;
max-width: 1009px;
height: 100%;
padding: 45px 12px;
outline: none;
}
.asterisk--rule{
color: var(--redColor);
font-size: 0.75rem;
margin: 3px 6px;
}
/*==============Question end===============*/
/*===============POST===============*/
.post__body{
background-color: var(--grey_background);
}
.post__cover{
padding: 45px 155px 150px 155px;
display: flex;
flex-direction: column;
justify-content: center;
}
.post__content{
font-size: 1.85rem;
line-height: 3rem;
}
.post__container{
background-color: var(--whiteColor);
border-radius: 4px;
padding: 12px;
}
.post__main{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: flex-start;
}
.post__content__one{
width: 12%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.65rem;
color: var(--unseclectableText);
}
.post__content__two{
width: 86%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-right: 12px;
padding-top: 15px;
}
.post__block__content{
width: 100%;
height: 85%;
font-size: 1.8rem;
line-height: 2.3rem;
}
.post__block__content__first{
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-between;
align-items: center;
}
.post__block__content__first > label{
width: 90%;
font-size: 2.3rem;
line-height: 3.5rem;
}
.dropdownBtn__postblock{
background-color: var(--whiteColor);
}
.post__block__content__more{
width: 45px;
font-size: 2.5rem;
cursor: pointer;
border-radius: 6px;
background-color: var(--whiteColor);
}
.post__block__content__more:hover{
background-color: var(--grey_background);
}
.show__dropdown{
display: flex !important;
}
.dropdown-content__postblock{
display: none; /* flex */
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
position: absolute;
width: 150px;
background-color: var(--whiteColor);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
border-radius: 4px;
line-height: 2.8rem;
transform: translateX(-46%);
}
.dropdown-content__postblock > a{
width: 80%;
font-size: 1.75rem;
border-radius: 3px;
text-align: center;
}
.dropdown-content__postblock > a:first-child{
margin-top: 12px;
}
.dropdown-content__postblock > a:last-child{
border-top: solid 1px var(--unseclectableText);
border-radius: 0px 0px 3px 3px;
margin-bottom: 12px;
}
.dropdown-content__postblock > a:hover{
background-color: var(--grey_background);
color: var(--textColor);
}
.arrow-up{
display: none;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid var(--whiteColor);
position: absolute;
z-index: 1;
transform: translateX(19px) translateY(-7px);
}
.post__block__detail{
font-size: 1.55rem;
height: 15%;
display: flex;
align-items: center;
margin-top: 15px;
}
.post__block__detail label{
margin-right: 15px;
}
.post__bridge{
margin-top: 25px;
padding: 0 10px;
font-size: 1.8rem;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
border-bottom: solid 1px var(--grayColor);
}
#post__bridge__text{
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
}
.new__comment{
color: blue;
}
#post__bridge__form{
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
}
#post__bridge__form > *{
margin-bottom: 15px;
}
#post__bridge__form > label{
color: var(--mainColor);
}
#post__bridge__form > textarea{
min-width: 70%;
max-width: 100%;
min-height: 65px;
max-height: 650px;
padding: 7px;
line-height: 2.25rem;
}
#post__bridge__form > input[type=submit]{
border: none;
color: var(--whiteColor);
background-color: var(--mainColor);
width: 95px;
height: 35px;
border-radius: 4px;
cursor: pointer;
}
#post__bridge__form > input[type=submit]:hover{
opacity: 0.85;
}
.post__comment__block{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
justify-content: space-between;
align-items: flex-start;
margin: 15px;
border-bottom: solid 1px var(--grayColor);
}
.post__comment__block__first{
width: 8%;
height: 100%;
display: flex;
justify-content: center;
}
.post__comment__block__second{
width: 90%;
}
.comment__block__second__one{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-size: 1.35rem;
color: var(--textColor);
}
.comment__block__second__one > img {
margin-right: 15px;
}
.comment__block__second__one > div{
display: flex;
flex-direction: column;
margin-right: 35px;
}
.comment__block__second__two > p{
font-size: 1.75rem;
line-height: 2.25rem;
}
#button__score:hover{
color: var(--hyperlinkColor);
}
/*===============POST END================*/
/*===============MY POST=================*/
.personal__myposts{
padding: 20px;
}
/*==============MY POST END==============*/
/*==============FILE SHARING=============*/
.filesharing_content{
margin: 0;
}
.file_show{
padding: 15px 10px;
margin: 5px 0;
background-color: var(--grayColor);
border-radius: 4px;
}
.file_show i{
font-size: 2.2rem;
}
.file_a:hover{
text-decoration: none !important;
}
.file_show_file{
padding: 15px 20px;
margin-right: 10px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
align-items: center;
background-color: var(--grayColor);
border-radius: 4px;
}
/*=============FILE SHARING END=========*/ | 0.462473 | 0.106365 |
ul {
list-style: none;
margin: 0;
padding: 0;
}
.hide {
display: none;
}
.main-header {
font-size: 1.4rem;
background-color: #2B2B2B;
max-width: 100%;
padding: 1em 4%;
}
.main-header a {
text-decoration: none;
}
.site-logo-container {
margin: auto;
max-width: 250px;
}
.site-logo {
letter-spacing: 4px;
text-transform: uppercase;
font-family: 'Ubuntu', cursive;
margin: 0 auto;
text-align: center;
color: #95AB63;
transition: ease 0.2s;
}
.site-logo:hover {
transition: ease 0.2s;
text-shadow: 0 1px 0 #BDD688,
0 2px 0 #BDD688,
0 3px 0 #ECF5E6,
0 4px 0 #ECF5E6,
0 6px 1px rgba(255, 255, 255,.1),
0 0 5px rgba(255, 255, 255,.1),
0 1px 3px rgba(255, 255, 255,.3),
0 3px 5px rgba(255, 255, 255,.2),
0 5px 10px rgba(255, 255, 255,.25),
0 10px 10px rgba(255, 255, 255,.2),
0 20px 20px rgba(255, 255, 255,.15);
}
.form-redirect-container {
position: absolute;
top: 10px;
right: 10px;
display:flex;
}
.form-redirect-container a {
width: 100px;
text-align: center;
}
.form-redirect-link {
border: 2px solid #2B2B2B;
font-size: 0.75em;
padding: 0.3em;
background-color: #BDD688;
-webkit-box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
border-radius: 8px;
transition: all 0.2s ease-in-out;
}
.form-redirect-link:hover,
.form-redirect-link:focus {
transition: 0.15s;
transform: scale(1.02);
cursor: pointer;
border: 2px solid #BDD688;
color: #BDD688;
background-color: #2b2b2b;
-webkit-box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
}
.site-nav ul {
display: flex;
}
.site-nav a {
color: #95AB63;
}
.nav-link {
transition: color 0.2s ease-in-out;
}
.nav-link:hover {
color: #BDD688;
}
.site-logo-wrapper {
display: flex;
}
.site-icon {
width: 50px;
height: 50px;
background-image: url('./melon.svg');
margin-top: 7px;
background-repeat: no-repeat;
} | src/components/Headers/MainHeader/MainHeader.css | ul {
list-style: none;
margin: 0;
padding: 0;
}
.hide {
display: none;
}
.main-header {
font-size: 1.4rem;
background-color: #2B2B2B;
max-width: 100%;
padding: 1em 4%;
}
.main-header a {
text-decoration: none;
}
.site-logo-container {
margin: auto;
max-width: 250px;
}
.site-logo {
letter-spacing: 4px;
text-transform: uppercase;
font-family: 'Ubuntu', cursive;
margin: 0 auto;
text-align: center;
color: #95AB63;
transition: ease 0.2s;
}
.site-logo:hover {
transition: ease 0.2s;
text-shadow: 0 1px 0 #BDD688,
0 2px 0 #BDD688,
0 3px 0 #ECF5E6,
0 4px 0 #ECF5E6,
0 6px 1px rgba(255, 255, 255,.1),
0 0 5px rgba(255, 255, 255,.1),
0 1px 3px rgba(255, 255, 255,.3),
0 3px 5px rgba(255, 255, 255,.2),
0 5px 10px rgba(255, 255, 255,.25),
0 10px 10px rgba(255, 255, 255,.2),
0 20px 20px rgba(255, 255, 255,.15);
}
.form-redirect-container {
position: absolute;
top: 10px;
right: 10px;
display:flex;
}
.form-redirect-container a {
width: 100px;
text-align: center;
}
.form-redirect-link {
border: 2px solid #2B2B2B;
font-size: 0.75em;
padding: 0.3em;
background-color: #BDD688;
-webkit-box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
box-shadow: 0.5px 1px 8px 1px rgba(0, 0, 0, 0.25);
border-radius: 8px;
transition: all 0.2s ease-in-out;
}
.form-redirect-link:hover,
.form-redirect-link:focus {
transition: 0.15s;
transform: scale(1.02);
cursor: pointer;
border: 2px solid #BDD688;
color: #BDD688;
background-color: #2b2b2b;
-webkit-box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
box-shadow: 1px 2px 8px 2px rgba(0, 0, 0, 0.35);
}
.site-nav ul {
display: flex;
}
.site-nav a {
color: #95AB63;
}
.nav-link {
transition: color 0.2s ease-in-out;
}
.nav-link:hover {
color: #BDD688;
}
.site-logo-wrapper {
display: flex;
}
.site-icon {
width: 50px;
height: 50px;
background-image: url('./melon.svg');
margin-top: 7px;
background-repeat: no-repeat;
} | 0.297776 | 0.165762 |
@font-face { font-family:'Helvetica Neue Normal'; src: url('HelveticaNeue.otf');}
@font-face { font-family: 'light font', src: url('HelveticaNeue-Light.otf');}
body { padding:0; margin:0; font-family: 'Helvetica Neue Normal','helvetica Neue',helvetica,arial,sans-serif; font-size:13px;}
ul { margin:0; padding:0}
ul li { list-style:none;}
a { text-decoration:none;}
label { font-weight:normal;}
.w-center { width:90%; margin:0 auto;}
.no-padding { padding:0;}
.no-padding-left { padding-left:0;}
.no-padding-right { padding-right:0;}
.no-margin { margin:0 !important;}
.no-background { background:none;}
.p-5 { padding:5px;}
.p-5-0 { padding:5px 0;}
.p-10-0 { padding:10px 0;}
.p-10-15 { padding:10px 15px; }
.p-15-0 { padding:15px 0;}
.p-0-5 { padding:0 5px;}
.p-5-10 { padding:5px 10px;}
.p-8-5 { padding:8px 5px;}
.p-b-10 { padding-bottom:10px;}
.m-5 { margin:5px;}
.m-10 { margin:10px;}
.m-10-0 { margin:10px 0;}
.m-15-0 { margin:15px 0;}
.m-bottom-5 { margin-bottom:5px;}
.m-bottom-10 { margin-bottom:10px;}
.m-bottom-15 { margin-bottom:15px; }
.m-top-5 { margin-top:5px;}
.m-top-10 { margin-top:10px;}
.m-top-15 { margin-top:15px;}
.pos-relative { position: relative;}
.panel-login { background:#f7f7f7;}
.logo { margin:15px 0;}
.up-10 { position:relative; top:-7px;}
.display-block { display: block;}
.fixed-bottom { position:fixed; bottom:0;}
.fixed-left { position:fixed; left:0;}
.full-w { width:100%;}
.w70 { width:71%; margin-right:1%; float:left;}
.w30 { width:28%; float:left;}
.loading { float: left; width:16px; height:16px; background:url("../img/ajax-loader.gif")}
.selected { background: #f9f9f9; border:#e5e5e5 solid 1px; border-radius:5px; }
.img-thumbnail { min-height:200px;}
/*~~~~~~~~~~Text Shadow~~~~~~~~~~~~~*/
.text-shadow { text-shadow:1px 1px 0 #144568;}
.text-overflow { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; height:30px;}
.shadow-white { text-shadow:1px 1px 0 #fff;}
.shadow-yellow { text-shadow:1px 1px 0 #B1832C;}
/*~~~~~~~~~~box~~~~~~~~~~~~~*/
.box-white { background:#fff; border:#ccc solid 1px;}
.box-gray { background:#f5f5f5; border:#ccc solid 1px;}
/*~~~~~~~~~~Header~~~~~~~~~~~~~*/
.top-header { height:80px;}
/*~~~~~~~~~~Font Size~~~~~~~~~~~~~*/
.font-24 { font-size:24px; font-weight:lighter;}
.font-20 { font-size:20px;}
.font-16 { font-size:16px; }
.font-13 { font-size:13px; }
.font-11 { font-size:11px;}
.font-10 { font-size:10px;}
.bold { font-weight:bold;}
/*~~~~~~~~~~Menu~~~~~~~~~~~~~*/
.menu { }
.menu li { display:inline-block; }
.menu li a { }
.menu li a:hover,
.menu li a.actived { }
.menu-invers { display:inline-block; }
.menu-invers a { }
.menu-invers a:hover,
.menu-invers a.actived { }
/*~~~~~~~~~~Media~~~~~~~~~~~~~*/
.cover-madia { min-height:185px;}
.media { }
.media > div { width:30%; float:left; margin-right:5%; max-width:200px;}
.media div img { }
.media summary { width:65%; float:left;}
.media label { color:#999; min-width:120px;}
.media span { color:#333; font-size:15px;}
/*~~~~~~~~~~form control~~~~~~~~~~~~~*/
.text { background:#fdffe9; border:#daddca solid 1px; border-top-width:2px; border-left-width:2px;}
.dropdown-gray {
background-image: -moz-linear-gradient(top, #9ca9af, #8f9a9e);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9ca9af), to(#8f9a9e));
background-image: linear-gradient(to bottom, #9ca9af, #8f9a9e);
color:#fff; text-shadow:1px 1px 0 #767e81;
}
.dropdwon-gray i {
background-image: -moz-linear-gradient(top, #8d989c, #818a8f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8d989c), to(#818a8f));
background-image: linear-gradient(to bottom, #0064bf, #818a8f);
border-right:#778085 solid 1px;
}
/*~~~~~~~~~~background, color, border~~~~~~~~~*/
.bg-white { background:#fff;}
.bg-yellow { background:#D9A227;}
.bg-dark-yellow { background:#B1832C;}
.bg-gray { background:#F9F9F9;}
.bg-blue { background:#106cad;}
.bg-red { background:#106cad;}
.bg-green { background:#52B000;}
.bg-pink { background:#FF0AF2;}
.c-black { color:#000;}
.c-white { color:#fff;}
.c-light-black { color:#333;}
.c-ultra-light-black { color:#666;}
.c-active { color:#5a646d;}
.c-yellow { color:#D9A227;}
.c-link { color:#1487c0;}
.c-green { color:#52B000;}
.c-pink { color:#FF0AF2;}
.c-red { color:#e00b0b;}
.c-blue { color:#00A9D0;}
.border-light-gray { border:#ccc solid 1px;}
.br-gray { border:#eee solid 1px;}
.no-border { border:0;}
.no-border-left { border-left:0;}
.no-border-right { border-right:0;}
.br-t-yellow { border-top:#B1832C solid 1px;}
.br-b-yeello { border-bottom:#ddcdad solid 1px !important;}
.br-b-gray { border-bottom:#ddd solid 1px;}
.br-l-gray { border-left:#ccc solid 1px;}
.br-r-gray { border-right:#ccc solid 1px;}
.br-radius-5 { border-radius: 5px;}
.br-radius-top-5 { border-top-right-radius:5px; border-top-left-radius:5px;}
.br-radius-bottom-5 { border-bottom-right-radius:5px; border-bottom-left-radius:5px;}
.br-radius-0 { border-radius:0;}
/*~~~~~~~~~~gradient background~~~~~~~~~*/
.bg-gradient-light-gray {
background-image: -moz-linear-gradient(top, #efefef, #e0e0e0);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), to(#e0e0e0));
background-image: linear-gradient(to bottom, #efefef, #e0e0e0);
}
.bg-gradient-dark-gray {
background-image: -moz-linear-gradient(top, #8d989c, #818a8f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8d989c), to(#818a8f));
background-image: linear-gradient(to bottom, #8d989c, #818a8f);
}
/*~~~~~~~~~~General~~~~~~~~~*/
.tail-cat { margin-top:-8px; margin-right:-5px; border-radius: 0 5px 5px 0; padding:10px; cursor:pointer;}
/*~~~~~~~~~~General~~~~~~~~~*/
.tr-job { cursor:pointer;}
/*~~~~~~~~Override~~~~~~~~~*/
.nav > li > a { padding: 5px 10px; font-weight:bold;}
.navbar-default .navbar-brand { color:#D8B62A; padding:15px 30px;}
.navbar-default .navbar-nav > li > a { color:#fff;}
.navbar-collapse { padding-right:0;}
.navbar-collapse.in > li > a{ padding: 0;}
.navbar-form.navbar-right:last-child { margin-right:0;}
.container-fluid>.navbar-collapse { margin-left:0; margin-right:0px; overflow: hidden;}
.margin-top-10{margin-top: 10px;}
.margin-top-5{margin-top: 5px; }
.nav-pills li { display:block; padding:3px 0; width:100%; margin:0 !important;}
.nav-pills li a:hover { background-color: #428BCA; color: #FFFFFF;}
.pull-bottom { position:absolute; bottom:0;} | public/css/global.css |
@font-face { font-family:'Helvetica Neue Normal'; src: url('HelveticaNeue.otf');}
@font-face { font-family: 'light font', src: url('HelveticaNeue-Light.otf');}
body { padding:0; margin:0; font-family: 'Helvetica Neue Normal','helvetica Neue',helvetica,arial,sans-serif; font-size:13px;}
ul { margin:0; padding:0}
ul li { list-style:none;}
a { text-decoration:none;}
label { font-weight:normal;}
.w-center { width:90%; margin:0 auto;}
.no-padding { padding:0;}
.no-padding-left { padding-left:0;}
.no-padding-right { padding-right:0;}
.no-margin { margin:0 !important;}
.no-background { background:none;}
.p-5 { padding:5px;}
.p-5-0 { padding:5px 0;}
.p-10-0 { padding:10px 0;}
.p-10-15 { padding:10px 15px; }
.p-15-0 { padding:15px 0;}
.p-0-5 { padding:0 5px;}
.p-5-10 { padding:5px 10px;}
.p-8-5 { padding:8px 5px;}
.p-b-10 { padding-bottom:10px;}
.m-5 { margin:5px;}
.m-10 { margin:10px;}
.m-10-0 { margin:10px 0;}
.m-15-0 { margin:15px 0;}
.m-bottom-5 { margin-bottom:5px;}
.m-bottom-10 { margin-bottom:10px;}
.m-bottom-15 { margin-bottom:15px; }
.m-top-5 { margin-top:5px;}
.m-top-10 { margin-top:10px;}
.m-top-15 { margin-top:15px;}
.pos-relative { position: relative;}
.panel-login { background:#f7f7f7;}
.logo { margin:15px 0;}
.up-10 { position:relative; top:-7px;}
.display-block { display: block;}
.fixed-bottom { position:fixed; bottom:0;}
.fixed-left { position:fixed; left:0;}
.full-w { width:100%;}
.w70 { width:71%; margin-right:1%; float:left;}
.w30 { width:28%; float:left;}
.loading { float: left; width:16px; height:16px; background:url("../img/ajax-loader.gif")}
.selected { background: #f9f9f9; border:#e5e5e5 solid 1px; border-radius:5px; }
.img-thumbnail { min-height:200px;}
/*~~~~~~~~~~Text Shadow~~~~~~~~~~~~~*/
.text-shadow { text-shadow:1px 1px 0 #144568;}
.text-overflow { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; height:30px;}
.shadow-white { text-shadow:1px 1px 0 #fff;}
.shadow-yellow { text-shadow:1px 1px 0 #B1832C;}
/*~~~~~~~~~~box~~~~~~~~~~~~~*/
.box-white { background:#fff; border:#ccc solid 1px;}
.box-gray { background:#f5f5f5; border:#ccc solid 1px;}
/*~~~~~~~~~~Header~~~~~~~~~~~~~*/
.top-header { height:80px;}
/*~~~~~~~~~~Font Size~~~~~~~~~~~~~*/
.font-24 { font-size:24px; font-weight:lighter;}
.font-20 { font-size:20px;}
.font-16 { font-size:16px; }
.font-13 { font-size:13px; }
.font-11 { font-size:11px;}
.font-10 { font-size:10px;}
.bold { font-weight:bold;}
/*~~~~~~~~~~Menu~~~~~~~~~~~~~*/
.menu { }
.menu li { display:inline-block; }
.menu li a { }
.menu li a:hover,
.menu li a.actived { }
.menu-invers { display:inline-block; }
.menu-invers a { }
.menu-invers a:hover,
.menu-invers a.actived { }
/*~~~~~~~~~~Media~~~~~~~~~~~~~*/
.cover-madia { min-height:185px;}
.media { }
.media > div { width:30%; float:left; margin-right:5%; max-width:200px;}
.media div img { }
.media summary { width:65%; float:left;}
.media label { color:#999; min-width:120px;}
.media span { color:#333; font-size:15px;}
/*~~~~~~~~~~form control~~~~~~~~~~~~~*/
.text { background:#fdffe9; border:#daddca solid 1px; border-top-width:2px; border-left-width:2px;}
.dropdown-gray {
background-image: -moz-linear-gradient(top, #9ca9af, #8f9a9e);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9ca9af), to(#8f9a9e));
background-image: linear-gradient(to bottom, #9ca9af, #8f9a9e);
color:#fff; text-shadow:1px 1px 0 #767e81;
}
.dropdwon-gray i {
background-image: -moz-linear-gradient(top, #8d989c, #818a8f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8d989c), to(#818a8f));
background-image: linear-gradient(to bottom, #0064bf, #818a8f);
border-right:#778085 solid 1px;
}
/*~~~~~~~~~~background, color, border~~~~~~~~~*/
.bg-white { background:#fff;}
.bg-yellow { background:#D9A227;}
.bg-dark-yellow { background:#B1832C;}
.bg-gray { background:#F9F9F9;}
.bg-blue { background:#106cad;}
.bg-red { background:#106cad;}
.bg-green { background:#52B000;}
.bg-pink { background:#FF0AF2;}
.c-black { color:#000;}
.c-white { color:#fff;}
.c-light-black { color:#333;}
.c-ultra-light-black { color:#666;}
.c-active { color:#5a646d;}
.c-yellow { color:#D9A227;}
.c-link { color:#1487c0;}
.c-green { color:#52B000;}
.c-pink { color:#FF0AF2;}
.c-red { color:#e00b0b;}
.c-blue { color:#00A9D0;}
.border-light-gray { border:#ccc solid 1px;}
.br-gray { border:#eee solid 1px;}
.no-border { border:0;}
.no-border-left { border-left:0;}
.no-border-right { border-right:0;}
.br-t-yellow { border-top:#B1832C solid 1px;}
.br-b-yeello { border-bottom:#ddcdad solid 1px !important;}
.br-b-gray { border-bottom:#ddd solid 1px;}
.br-l-gray { border-left:#ccc solid 1px;}
.br-r-gray { border-right:#ccc solid 1px;}
.br-radius-5 { border-radius: 5px;}
.br-radius-top-5 { border-top-right-radius:5px; border-top-left-radius:5px;}
.br-radius-bottom-5 { border-bottom-right-radius:5px; border-bottom-left-radius:5px;}
.br-radius-0 { border-radius:0;}
/*~~~~~~~~~~gradient background~~~~~~~~~*/
.bg-gradient-light-gray {
background-image: -moz-linear-gradient(top, #efefef, #e0e0e0);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), to(#e0e0e0));
background-image: linear-gradient(to bottom, #efefef, #e0e0e0);
}
.bg-gradient-dark-gray {
background-image: -moz-linear-gradient(top, #8d989c, #818a8f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8d989c), to(#818a8f));
background-image: linear-gradient(to bottom, #8d989c, #818a8f);
}
/*~~~~~~~~~~General~~~~~~~~~*/
.tail-cat { margin-top:-8px; margin-right:-5px; border-radius: 0 5px 5px 0; padding:10px; cursor:pointer;}
/*~~~~~~~~~~General~~~~~~~~~*/
.tr-job { cursor:pointer;}
/*~~~~~~~~Override~~~~~~~~~*/
.nav > li > a { padding: 5px 10px; font-weight:bold;}
.navbar-default .navbar-brand { color:#D8B62A; padding:15px 30px;}
.navbar-default .navbar-nav > li > a { color:#fff;}
.navbar-collapse { padding-right:0;}
.navbar-collapse.in > li > a{ padding: 0;}
.navbar-form.navbar-right:last-child { margin-right:0;}
.container-fluid>.navbar-collapse { margin-left:0; margin-right:0px; overflow: hidden;}
.margin-top-10{margin-top: 10px;}
.margin-top-5{margin-top: 5px; }
.nav-pills li { display:block; padding:3px 0; width:100%; margin:0 !important;}
.nav-pills li a:hover { background-color: #428BCA; color: #FFFFFF;}
.pull-bottom { position:absolute; bottom:0;} | 0.395718 | 0.131034 |
.content{
width: 651px;
}
.row-fluid ["span"] {
display: inline-block;
width: 2%;
min-height: 30px;
margin-left: 2.127659574468085%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.spanBtn {
width: 20px;
height: 20px;
cursor: pointer;
background-color: #555;
display: inline-block;
}
.spandoBtn{
width:20px;
height:20px;
cursor:pointer;
background-color:#555;
display:inline-block;
}
.spanBtn{
width:20px;
height:20px;
cursor:pointer;
background-color:#555;
display:inline-block;
}
.divHeight{
height:30px;
background-color:#999;
}
.udMargin{
margin-top:10px;
margin-bottom:10px;
}
.forgetwarpper{
width:220px;
margin:120px auto 0px auto;
}
.loginwarpper{
width:600px;
margin:10px auto 0px auto;
}
.centerSpan{
display:inline-block;
margin:10px auto 10px auto;
}
.leftMargin{
margin-left:20px;
}
.rightMargin{
margin-right:20px;
}
.leftMargin120{
margin-left:120px;
}
.errorSpan{
color:#f00;
font-size:13px;
}
body{
margin:0px;
}
.widthMenu{
width:25px;
}
.widthSize600{
width:600px;
}
.size500{
width:500px;
height:150px;
}
.box h3{
background-color:#D3DBFF;
}
.box .timeline {
margin-top: 20px;
margin-bottom: 5px;
padding: 8px;
border-bottom: 1px solid #ccc;
display: block;
}
.box .type {
margin:2px 0px 2px 0px;
background: none repeat scroll 0 0 #334E7D;
color: #fff;
padding: 2px;
}
.box .task {
padding-left: 8px;
padding-right: 8px;
margin-bottom: 5px;
}
.pagebody .pagerheader {
padding: 15px 30px;
background-color: #F0F5F8;
border-bottom: 1px solid #DADEE5;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
font-size: 16px;
position: relative;
}
.pagebody td {
border-collapse: collapse;
border-spacing: 0;
border: 0px;
border-bottom: 1px solid #EFEFEF;
font-size: 12px;
line-height: 1.5;
color: #666;
padding-left: 0px;
}
.type{
width:10em;
}
.type .event {
font-size:20px;
color:#ffffff;
width:10em;
height:20em;
background: none repeat scroll 0 0 #334E7D;
}
.pagerbody span {
color: #fff;
display: block;
padding: 5px;
font-size: 12px;
text-align: center;
} | src/main/webapp/static/css/layout2.css | .content{
width: 651px;
}
.row-fluid ["span"] {
display: inline-block;
width: 2%;
min-height: 30px;
margin-left: 2.127659574468085%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.spanBtn {
width: 20px;
height: 20px;
cursor: pointer;
background-color: #555;
display: inline-block;
}
.spandoBtn{
width:20px;
height:20px;
cursor:pointer;
background-color:#555;
display:inline-block;
}
.spanBtn{
width:20px;
height:20px;
cursor:pointer;
background-color:#555;
display:inline-block;
}
.divHeight{
height:30px;
background-color:#999;
}
.udMargin{
margin-top:10px;
margin-bottom:10px;
}
.forgetwarpper{
width:220px;
margin:120px auto 0px auto;
}
.loginwarpper{
width:600px;
margin:10px auto 0px auto;
}
.centerSpan{
display:inline-block;
margin:10px auto 10px auto;
}
.leftMargin{
margin-left:20px;
}
.rightMargin{
margin-right:20px;
}
.leftMargin120{
margin-left:120px;
}
.errorSpan{
color:#f00;
font-size:13px;
}
body{
margin:0px;
}
.widthMenu{
width:25px;
}
.widthSize600{
width:600px;
}
.size500{
width:500px;
height:150px;
}
.box h3{
background-color:#D3DBFF;
}
.box .timeline {
margin-top: 20px;
margin-bottom: 5px;
padding: 8px;
border-bottom: 1px solid #ccc;
display: block;
}
.box .type {
margin:2px 0px 2px 0px;
background: none repeat scroll 0 0 #334E7D;
color: #fff;
padding: 2px;
}
.box .task {
padding-left: 8px;
padding-right: 8px;
margin-bottom: 5px;
}
.pagebody .pagerheader {
padding: 15px 30px;
background-color: #F0F5F8;
border-bottom: 1px solid #DADEE5;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
font-size: 16px;
position: relative;
}
.pagebody td {
border-collapse: collapse;
border-spacing: 0;
border: 0px;
border-bottom: 1px solid #EFEFEF;
font-size: 12px;
line-height: 1.5;
color: #666;
padding-left: 0px;
}
.type{
width:10em;
}
.type .event {
font-size:20px;
color:#ffffff;
width:10em;
height:20em;
background: none repeat scroll 0 0 #334E7D;
}
.pagerbody span {
color: #fff;
display: block;
padding: 5px;
font-size: 12px;
text-align: center;
} | 0.262747 | 0.080285 |
body{
margin: 0 auto;
}
.clear{
clear: both;
}
.settings-content{
width:100%;
background-color: #fff;
}
.settings-header{
float: left;
width: 100%;
padding: 10px;
padding-left: calc(calc(100% - 580px)/2);
background-color: #f1f1f1;
height: 80px;
z-index: 1;
border-bottom: 1px solid #E9E9E9;
box-shadow: 0px 0px 8px rgba(0, 0, 0, .15);
}
.settings-nav-bar{
float: left;
margin: 10px;
}
.settings-page-link{
float: left;
padding: 20px 30px;
cursor: pointer;
}
.settings-page-link a:hover{
color:#ccc;
}
.settings-page-link a{
user-select: none;
font-size: 20px;
font-weight: 200;
color: #252525;
font-family: "Courier New", Courier, Monaco;
}
.settins-logo{
margin: 20px;
}
.content-settings{
width: 600px;
padding: 10px;
padding-left: calc(calc(100% - 540px)/2);
font-weight: 200;
display: none;
}
.content-settings h1,h2,h3,p{
font-weight: 200;
font-family: "Courier New", Courier, Monaco;
user-select: none;
}
h3{
text-decoration: underline;
}
.content-settings a{
text-decoration: underline;
cursor: pointer;
font-weight: 600;
color: #000;
}
.common-cont-sett{
font-size: 16px;
}
.common-cont-sett select{
font-weight: 200;
font-family: "Courier New", Courier, Monaco;
font-size: 16px;
padding: 0px 5px;
}
.feature{
height: 1.3em;
width: 1.3em;
vertical-align: middle;
margin: 0px 0.4em 0.3em 0px;
border: 1px solid rgba(0, 0, 0, 0.3);
background: -webkit-linear-gradient(#FCFCFC, #DADADA);
-webkit-appearance: checkbox;
-webkit-transition: box-shadow 200ms;
box-shadow: inset 1px 1px 0px #fff, 0 1px 1px rgba(0,0,0,0.1);
}
.settings-footer{
position: fixed;
bottom: 0;
background: #F1F1F1;
width: 100%;
padding: 10px 0;
z-index: 2;
border-top: 1px solid #E9E9E9;
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .15);
box-shadow: 0 0 8px rgba(0, 0, 0, .15);
text-align: center;
padding-left: calc(calc(100% - 400px)/2);
}
.footer-nav{
float:left;
padding: 5px 20px;
}
.footer-nav a{
user-select: none;
font-size: 15px;
font-weight: 200;
color: #252525;
font-family: "Courier New", Courier, Monaco;
cursor: pointer;
}
.footer-nav a:hover{
color:#ccc;
} | app/css/settings-style.css | body{
margin: 0 auto;
}
.clear{
clear: both;
}
.settings-content{
width:100%;
background-color: #fff;
}
.settings-header{
float: left;
width: 100%;
padding: 10px;
padding-left: calc(calc(100% - 580px)/2);
background-color: #f1f1f1;
height: 80px;
z-index: 1;
border-bottom: 1px solid #E9E9E9;
box-shadow: 0px 0px 8px rgba(0, 0, 0, .15);
}
.settings-nav-bar{
float: left;
margin: 10px;
}
.settings-page-link{
float: left;
padding: 20px 30px;
cursor: pointer;
}
.settings-page-link a:hover{
color:#ccc;
}
.settings-page-link a{
user-select: none;
font-size: 20px;
font-weight: 200;
color: #252525;
font-family: "Courier New", Courier, Monaco;
}
.settins-logo{
margin: 20px;
}
.content-settings{
width: 600px;
padding: 10px;
padding-left: calc(calc(100% - 540px)/2);
font-weight: 200;
display: none;
}
.content-settings h1,h2,h3,p{
font-weight: 200;
font-family: "Courier New", Courier, Monaco;
user-select: none;
}
h3{
text-decoration: underline;
}
.content-settings a{
text-decoration: underline;
cursor: pointer;
font-weight: 600;
color: #000;
}
.common-cont-sett{
font-size: 16px;
}
.common-cont-sett select{
font-weight: 200;
font-family: "Courier New", Courier, Monaco;
font-size: 16px;
padding: 0px 5px;
}
.feature{
height: 1.3em;
width: 1.3em;
vertical-align: middle;
margin: 0px 0.4em 0.3em 0px;
border: 1px solid rgba(0, 0, 0, 0.3);
background: -webkit-linear-gradient(#FCFCFC, #DADADA);
-webkit-appearance: checkbox;
-webkit-transition: box-shadow 200ms;
box-shadow: inset 1px 1px 0px #fff, 0 1px 1px rgba(0,0,0,0.1);
}
.settings-footer{
position: fixed;
bottom: 0;
background: #F1F1F1;
width: 100%;
padding: 10px 0;
z-index: 2;
border-top: 1px solid #E9E9E9;
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .15);
box-shadow: 0 0 8px rgba(0, 0, 0, .15);
text-align: center;
padding-left: calc(calc(100% - 400px)/2);
}
.footer-nav{
float:left;
padding: 5px 20px;
}
.footer-nav a{
user-select: none;
font-size: 15px;
font-weight: 200;
color: #252525;
font-family: "Courier New", Courier, Monaco;
cursor: pointer;
}
.footer-nav a:hover{
color:#ccc;
} | 0.405096 | 0.121581 |
.ivu-layout-header {background:linear-gradient(to right,#17233d,#515a6e) !important;height: 88px;}
.header-bar .custom-content-con{line-height: 88px;}
.ivu-avatar{height: 56px;line-height: 56px;width: 56px;}
.header-bar .custom-content-con{float: none;}
.menu-navlist{float: left !important;margin-left:50px;}
.logo-box{float: left !important;height: 88px;line-height: 88px;}
.logo-box img{height: 54px;vertical-align: middle;}
.menu-navlist li{list-style: none;float: left;line-height: 20px;height: 88px;width: 96px;text-align: center;padding: 18px 0 10px 0;cursor: pointer;}
.menu-navlist li a{color: #fff;display: block;font-size: 14px;}
.menu-navlist li:hover{background: rgb(47,146,217,.65);}
.menu-navlist li:hover a{color: #fafafa;}
.menu-navlist li.active{background: #515a6e;}
.main .main-layout-con{overflow-y: auto;}
.help{color: #fff;font-size: 14px;margin-right: 20px;cursor: pointer;}
.help img{vertical-align: middle;margin: 0 10px;}
.tags-view-container .tags-view-wrapper .tags-view-item.active {background-color: #2d8cf0;color: #fff;border-color: #2d8cf0;}
/*左侧侧边栏样式*/
.ivu-layout-sider{background: #fff !important;box-shadow: 0px 1px 9px -2px #666;}
.ivu-menu-dark{background: #fff;padding-top: 44px;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened,.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-title{background: #eee;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item, .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title{color: #666;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title{color: red;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover{color:#fff; }
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title:hover{color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-title:hover{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover{color: #fff !important;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active:hover{color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-has-parent-submenu .ivu-menu-submenu-title:hover{background: #439bf7;color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu), .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu), .ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu):hover, .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu):hover{background: #2d8cf0;color: #fff !important;}
.ivu-layout-sider-collapsed{width: 36px !important;max-width: 36px !important;min-width: 36px !important;}
.side-menu-wrapper a.drop-menu-a{ height: 56px;width: 36px;padding: 0;line-height: 56px;}
/*系统Name*/
.main .logo-title {line-height: 40px;font-size: 16px;height: 40px;padding: 0;font-weight: bold;overflow: hidden;text-overflow: ellipsis;white-space: nowrap; position: absolute;width: 100%;z-index: 999;background: #fff;box-shadow: 1px 0px 0px 1px rgba(100, 100, 100, 0.1) inset; }
.main .logo-title .sider-trigger-a {position: absolute;top: 0;margin: 2px;right: 0;}
.main .logo-title .sider-trigger-a.text-center {margin: 0;padding: 6px 0 0 3px;color: #333 !important;}
.main .logo-title span {padding-left: 20px;}
/* .ivu-icon{color: #666 !important;} */
/*底部*/
.ivu-layout-footer {padding: 7.5px 50px;text-align: center;z-index: 99;border-top: 1px solid #ddd;}
.ivu-dropdown-rel {color: #fff;}
.main .main-content-con {overflow-y: auto;height: auto !important; }
.side-menu-wrapper .menu-collapsed {padding-top: 44px;}
/*中间导航*/
.tags-nav .scroll-outer {
/*box-shadow: -1px 0px 0px 1px rgba(100, 100, 100, 0.1) inset;*/
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
}
.btn-con.left-btn {
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
}
.tags-nav .btn-con.left-btn{left: 1px;}
.btn-con.right-btn
{
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
}
.ivu-tag-dot.ivu-tag-primary{color: #FFF !important; background: #2d8cf0 !important;border: 1px solid #2d8cf0 !important;border-radius:0 !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-tag-text{color: #FFF !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-tag-dot-inner{width:12px;margin-right:8px; background: #FFFFFF !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-icon-ios-close{color: #FFF !important;opacity:1 !important;}
.ivu-tag-dot.ivu-tag-default{color: #000 !important; background: #FFFFFF !important;border: 1px solid #dddddd !important;border-radius:0 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-tag-text{color: #000 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-tag-dot-inner{width:0;margin-right:0; background: #2d8cf0 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-icon-ios-close{color: #000 !important;}
/*中间数据区样式*/
.main .content-wrapper {padding: 10px;}
.main .content-wrapper .ivu-card {border-radius:0;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);}
/* 分页组件样式 */
.ivu-page{display: flex}
.ivu-page-total{min-width: 6rem;} | src/assets/css/fnBase.css | .ivu-layout-header {background:linear-gradient(to right,#17233d,#515a6e) !important;height: 88px;}
.header-bar .custom-content-con{line-height: 88px;}
.ivu-avatar{height: 56px;line-height: 56px;width: 56px;}
.header-bar .custom-content-con{float: none;}
.menu-navlist{float: left !important;margin-left:50px;}
.logo-box{float: left !important;height: 88px;line-height: 88px;}
.logo-box img{height: 54px;vertical-align: middle;}
.menu-navlist li{list-style: none;float: left;line-height: 20px;height: 88px;width: 96px;text-align: center;padding: 18px 0 10px 0;cursor: pointer;}
.menu-navlist li a{color: #fff;display: block;font-size: 14px;}
.menu-navlist li:hover{background: rgb(47,146,217,.65);}
.menu-navlist li:hover a{color: #fafafa;}
.menu-navlist li.active{background: #515a6e;}
.main .main-layout-con{overflow-y: auto;}
.help{color: #fff;font-size: 14px;margin-right: 20px;cursor: pointer;}
.help img{vertical-align: middle;margin: 0 10px;}
.tags-view-container .tags-view-wrapper .tags-view-item.active {background-color: #2d8cf0;color: #fff;border-color: #2d8cf0;}
/*左侧侧边栏样式*/
.ivu-layout-sider{background: #fff !important;box-shadow: 0px 1px 9px -2px #666;}
.ivu-menu-dark{background: #fff;padding-top: 44px;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened,.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-title{background: #eee;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item, .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title{color: #666;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title{color: red;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover{color:#fff; }
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title:hover{color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-title:hover{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover{color: #fff !important;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover{color: #2d8cf0;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active:hover{color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover,
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-opened .ivu-menu-submenu-has-parent-submenu .ivu-menu-submenu-title:hover{background: #439bf7;color: #fff;}
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu), .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu), .ivu-menu-dark.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu):hover, .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title-active:not(.ivu-menu-submenu):hover{background: #2d8cf0;color: #fff !important;}
.ivu-layout-sider-collapsed{width: 36px !important;max-width: 36px !important;min-width: 36px !important;}
.side-menu-wrapper a.drop-menu-a{ height: 56px;width: 36px;padding: 0;line-height: 56px;}
/*系统Name*/
.main .logo-title {line-height: 40px;font-size: 16px;height: 40px;padding: 0;font-weight: bold;overflow: hidden;text-overflow: ellipsis;white-space: nowrap; position: absolute;width: 100%;z-index: 999;background: #fff;box-shadow: 1px 0px 0px 1px rgba(100, 100, 100, 0.1) inset; }
.main .logo-title .sider-trigger-a {position: absolute;top: 0;margin: 2px;right: 0;}
.main .logo-title .sider-trigger-a.text-center {margin: 0;padding: 6px 0 0 3px;color: #333 !important;}
.main .logo-title span {padding-left: 20px;}
/* .ivu-icon{color: #666 !important;} */
/*底部*/
.ivu-layout-footer {padding: 7.5px 50px;text-align: center;z-index: 99;border-top: 1px solid #ddd;}
.ivu-dropdown-rel {color: #fff;}
.main .main-content-con {overflow-y: auto;height: auto !important; }
.side-menu-wrapper .menu-collapsed {padding-top: 44px;}
/*中间导航*/
.tags-nav .scroll-outer {
/*box-shadow: -1px 0px 0px 1px rgba(100, 100, 100, 0.1) inset;*/
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
}
.btn-con.left-btn {
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
}
.tags-nav .btn-con.left-btn{left: 1px;}
.btn-con.right-btn
{
background-color: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
}
.ivu-tag-dot.ivu-tag-primary{color: #FFF !important; background: #2d8cf0 !important;border: 1px solid #2d8cf0 !important;border-radius:0 !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-tag-text{color: #FFF !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-tag-dot-inner{width:12px;margin-right:8px; background: #FFFFFF !important;}
.ivu-tag-dot.ivu-tag-primary .ivu-icon-ios-close{color: #FFF !important;opacity:1 !important;}
.ivu-tag-dot.ivu-tag-default{color: #000 !important; background: #FFFFFF !important;border: 1px solid #dddddd !important;border-radius:0 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-tag-text{color: #000 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-tag-dot-inner{width:0;margin-right:0; background: #2d8cf0 !important;}
.ivu-tag-dot.ivu-tag-default .ivu-icon-ios-close{color: #000 !important;}
/*中间数据区样式*/
.main .content-wrapper {padding: 10px;}
.main .content-wrapper .ivu-card {border-radius:0;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);}
/* 分页组件样式 */
.ivu-page{display: flex}
.ivu-page-total{min-width: 6rem;} | 0.21767 | 0.095223 |
:root {
--dark-text: #858688;
--extra-dark-text: #333333;
--dark-button: #436ee4;
--dark-button-hover: #0e2ee0;
--background: #3d3d41;
--page-background: #ffffff;
--shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
--invalid: #e57373;
--error-code: aqua;
}
.col-12.col-md-6.col-sm-10.homepage-info {
max-width: auto !important;
background: white !important;
padding: 1.5em !important;
border-radius: 0 !important;
box-shadow: none !important;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 4rem;
}
.col-12.col-md-6.col-sm-10.image {
max-width: auto !important;
background: white !important;
padding: 0px !important;
border-radius: 0px !important;
box-shadow: none !important;
margin-bottom: 4rem;
}
.information {
padding: 3rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--dark-button) !important;
border-radius: 5px;
margin-bottom: 4rem;
}
.information > h1 {
font-size: 3rem;
color: white;
text-align: center;
}
.information > p {
color: white;
text-align: center;
}
.information-ss {
width: 100%;
border: 1px solid var(--dark-text);
border-radius: 5px;
}
.homepage-button {
height: auto;
padding: 0.5rem;
font-size: 1.5rem;
width: 150px;
text-align: center;
background: var(--dark-button);
color: white;
border-radius: 50px;
border: none !important;
outline: none !important;
margin: 10px;
margin-bottom: 4rem;
}
.homepage-button:hover {
background: var(--dark-button-hover);
border: none !important;
outline: none !important;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.homepage-button:focus {
border: none !important;
outline: none !important;
}
.nav-bar-logo {
width: 200px;
}
.col-xl-3 {
background: var(--background);
padding: 1rem;
border-radius: 5px;
margin: 10px;
}
.col-xl-3 > a > h1 {
color: white !important;
font-size: 3rem;
object-fit: contain;
}
.col-xl-3 > a > h2 {
color: var(--dark-text) !important;
font-size: 1.5rem;
object-fit: contain;
}
.col-xl-3:hover {
opacity: 0.9;
}
.class-layout {
display: grid;
grid-template-columns: repeat(2, 1fr);
width: 100%;
justify-content: center;
}
.class-name {
padding-left: 1em;
}
.class-name > h1 {
font-size: 4rem;
color: var(--dark-text);
}
.class-name > h2 {
font-size: 2rem;
color: var(--extra-dark-text);
}
.classCode-label {
color: var(--extra-dark-text);
}
.classCode-text {
border-radius: 3px 0 0 3px;
border: none;
color: #ffffff;
background: var(--background);
float: left;
width: auto;
padding: 0.5rem;
}
.classCode-button {
border-radius: 0 3px 3px 0;
border: none;
float: left;
color: white;
background: var(--dark-button);
padding: 0.5rem;
outline: none;
}
.list-heading {
font-size: 2rem;
margin-top: 1.5rem;
margin-bottom: 1rem;
color: var(--dark-button);
margin-left: 1rem;
}
.classCode-button:hover {
background: var(--dark-button-hover);
border: none;
outline: none;
}
.classCode-button:focus {
border: none;
outline: none;
box-shadow: none !important;
}
.invite-code {
width: 100%;
height: 100%;
align-items: center;
padding: 1rem;
}
.nav-link {
color: var(--dark-text);
}
.nav-link:hover {
color: #ffffff;
}
.navbar-toggler {
background: var(--dark-button);
}
.navbar-toggler:focus {
outline: none;
}
.navbar-toggler:hover {
opacity: 0.8;
}
.navbar.navbar-expand-md {
background: var(--background);
margin: 0%;
border-radius: 5px;
}
.cat {
margin-top: 2em;
width: 100%;
align-self: center;
}
.Warning {
align-self: center;
margin-top: 2em;
max-height: 500px;
}
.wrapper {
display: grid;
grid-gap: 20px;
margin: 20px;
grid-template-columns: 1fr;
}
.header {
height: 100px;
width: 100%;
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
position: fixed;
padding-right: 70px;
}
.head {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, 1fr);
}
.error-info {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3em;
padding-top: 1em;
}
.error-info > h1 {
font-size: 10em;
color: var(--error-code);
}
.error-info > p, h3, h2 {
align-self: center;
color: var(--dark-text);
}
.non-fixed {
position: relative;
}
.col {
max-width: 550px;
background: var(--background);
padding: 2em;
border-radius: 5px;
box-shadow: var(--shadow);
}
.submit {
width: 100%;
background: var(--dark-button);
}
.submit:hover {
background: var(--dark-button-hover);
}
.form-label > h6 {
font-size: 0.8rem;
line-height: 0;
color: var(--dark-text);
}
.form-label.invalid > h6 {
color: var(--invalid);
}
.col > h3 {
text-align: center;
color: #ffffff;
}
.col > h5 {
text-align: center;
color: var(--dark-text);
}
.sign-up {
color: var(--dark-text);
}
.header > a > img {
max-width: 200px;
}
a {
color: var(--dark-button);
}
a:hover {
text-decoration: none;
color: var(--dark-button-hover);
}
.form-control.invalid {
border-color: var(--invalid);
}
.form-control.invalid:focus {
border-color: var(--invalid);
}
@media(max-width: 720px) {
.header {
align-items: center;
}
.class-layout {
grid-template-columns: 1fr;
align-items: center;
}
.nav-bar-logo {
width: 150px !important;
}
}
@media(max-width: 900px) {
.head {
grid-template-columns: 1fr;
margin: 4em;
margin-top: 1em;
}
} | static/styles.css | :root {
--dark-text: #858688;
--extra-dark-text: #333333;
--dark-button: #436ee4;
--dark-button-hover: #0e2ee0;
--background: #3d3d41;
--page-background: #ffffff;
--shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
--invalid: #e57373;
--error-code: aqua;
}
.col-12.col-md-6.col-sm-10.homepage-info {
max-width: auto !important;
background: white !important;
padding: 1.5em !important;
border-radius: 0 !important;
box-shadow: none !important;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 4rem;
}
.col-12.col-md-6.col-sm-10.image {
max-width: auto !important;
background: white !important;
padding: 0px !important;
border-radius: 0px !important;
box-shadow: none !important;
margin-bottom: 4rem;
}
.information {
padding: 3rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--dark-button) !important;
border-radius: 5px;
margin-bottom: 4rem;
}
.information > h1 {
font-size: 3rem;
color: white;
text-align: center;
}
.information > p {
color: white;
text-align: center;
}
.information-ss {
width: 100%;
border: 1px solid var(--dark-text);
border-radius: 5px;
}
.homepage-button {
height: auto;
padding: 0.5rem;
font-size: 1.5rem;
width: 150px;
text-align: center;
background: var(--dark-button);
color: white;
border-radius: 50px;
border: none !important;
outline: none !important;
margin: 10px;
margin-bottom: 4rem;
}
.homepage-button:hover {
background: var(--dark-button-hover);
border: none !important;
outline: none !important;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.homepage-button:focus {
border: none !important;
outline: none !important;
}
.nav-bar-logo {
width: 200px;
}
.col-xl-3 {
background: var(--background);
padding: 1rem;
border-radius: 5px;
margin: 10px;
}
.col-xl-3 > a > h1 {
color: white !important;
font-size: 3rem;
object-fit: contain;
}
.col-xl-3 > a > h2 {
color: var(--dark-text) !important;
font-size: 1.5rem;
object-fit: contain;
}
.col-xl-3:hover {
opacity: 0.9;
}
.class-layout {
display: grid;
grid-template-columns: repeat(2, 1fr);
width: 100%;
justify-content: center;
}
.class-name {
padding-left: 1em;
}
.class-name > h1 {
font-size: 4rem;
color: var(--dark-text);
}
.class-name > h2 {
font-size: 2rem;
color: var(--extra-dark-text);
}
.classCode-label {
color: var(--extra-dark-text);
}
.classCode-text {
border-radius: 3px 0 0 3px;
border: none;
color: #ffffff;
background: var(--background);
float: left;
width: auto;
padding: 0.5rem;
}
.classCode-button {
border-radius: 0 3px 3px 0;
border: none;
float: left;
color: white;
background: var(--dark-button);
padding: 0.5rem;
outline: none;
}
.list-heading {
font-size: 2rem;
margin-top: 1.5rem;
margin-bottom: 1rem;
color: var(--dark-button);
margin-left: 1rem;
}
.classCode-button:hover {
background: var(--dark-button-hover);
border: none;
outline: none;
}
.classCode-button:focus {
border: none;
outline: none;
box-shadow: none !important;
}
.invite-code {
width: 100%;
height: 100%;
align-items: center;
padding: 1rem;
}
.nav-link {
color: var(--dark-text);
}
.nav-link:hover {
color: #ffffff;
}
.navbar-toggler {
background: var(--dark-button);
}
.navbar-toggler:focus {
outline: none;
}
.navbar-toggler:hover {
opacity: 0.8;
}
.navbar.navbar-expand-md {
background: var(--background);
margin: 0%;
border-radius: 5px;
}
.cat {
margin-top: 2em;
width: 100%;
align-self: center;
}
.Warning {
align-self: center;
margin-top: 2em;
max-height: 500px;
}
.wrapper {
display: grid;
grid-gap: 20px;
margin: 20px;
grid-template-columns: 1fr;
}
.header {
height: 100px;
width: 100%;
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
position: fixed;
padding-right: 70px;
}
.head {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, 1fr);
}
.error-info {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3em;
padding-top: 1em;
}
.error-info > h1 {
font-size: 10em;
color: var(--error-code);
}
.error-info > p, h3, h2 {
align-self: center;
color: var(--dark-text);
}
.non-fixed {
position: relative;
}
.col {
max-width: 550px;
background: var(--background);
padding: 2em;
border-radius: 5px;
box-shadow: var(--shadow);
}
.submit {
width: 100%;
background: var(--dark-button);
}
.submit:hover {
background: var(--dark-button-hover);
}
.form-label > h6 {
font-size: 0.8rem;
line-height: 0;
color: var(--dark-text);
}
.form-label.invalid > h6 {
color: var(--invalid);
}
.col > h3 {
text-align: center;
color: #ffffff;
}
.col > h5 {
text-align: center;
color: var(--dark-text);
}
.sign-up {
color: var(--dark-text);
}
.header > a > img {
max-width: 200px;
}
a {
color: var(--dark-button);
}
a:hover {
text-decoration: none;
color: var(--dark-button-hover);
}
.form-control.invalid {
border-color: var(--invalid);
}
.form-control.invalid:focus {
border-color: var(--invalid);
}
@media(max-width: 720px) {
.header {
align-items: center;
}
.class-layout {
grid-template-columns: 1fr;
align-items: center;
}
.nav-bar-logo {
width: 150px !important;
}
}
@media(max-width: 900px) {
.head {
grid-template-columns: 1fr;
margin: 4em;
margin-top: 1em;
}
} | 0.625781 | 0.133049 |
@charset "UTF-8";
/*切换为 1rem = 100px*/
html { font-size: -webkit-calc(100vw / 3.75); font-size: calc(100vw / 3.75); }
@media screen and (min-width: 640px) { html { font-size: calc(640px / 3.75); } }
body { font-size: .14rem; }
body, header, footer, .addCart, .bottom-fix, .follow { min-width: 320px; max-width: 640px; }
.yuan { padding-right: .02rem; }
.has-foot { padding-bottom: .62rem; }
.backToTop { right: .2rem; bottom: .6rem; width: .4rem; height: .4rem; }
.backToTop.no-foot { bottom: .1rem; }
@media screen and (min-width: 640px) { .backToTop { right: auto; } }
.follow { height: .49rem; }
.follow-remove { width: .45rem; background-size: .15rem .15rem; }
.follow-img { margin-right: .1rem; width: .4rem; height: .4rem; }
.follow-text { line-height: .2rem; font-size: .12rem; }
.follow-btn { top: .08rem; right: .1rem; padding: 0 .1rem; line-height: .32rem; font-size: .14rem; border: .01rem solid #806105; border-radius: .17rem; }
img.lazyload, img.lazyloading { background-size: .64rem .64rem; }
/*#goods-cart-count { margin-left: .04rem; width: .16rem; height: .16rem; line-height: .16rem; font-size: .11rem; &.more { line-height: .1rem; }
}*/
/*start*/
body.empty > .empty { display: block; }
body.empty > .content { display: none; }
img { display: block; }
del { font-size: .12rem; color: #666; }
.goods-empty { display: none; position: relative; width: 100%; height: 100vh; font-size: .16rem; background: #fff url(/wechat/img/empty/1.png) no-repeat center; background-size: 2.01rem auto; }
.goods-empty:before { content: attr(data-content); position: absolute; padding-top: 68vh; width: 100%; text-align: center; letter-spacing: .01rem; color: #808080; }
.to-home-btn { position: absolute; bottom: .1rem; left: .12rem; right: .12rem; line-height: 3; text-align: center; letter-spacing: .01rem; border-radius: .03rem; background: #f9cd02; color: #fff; }
.bg-img { position: absolute; top: 0; z-index: -1; width: 100%; max-width: 3.75rem; height: 100%; }
.banner-img { width: 100%; height: 2.35rem; background: #f7f7f7 url(../../img/watermark-logo.png) no-repeat center; background-size: .64rem .64rem; }
.scroll-banner .swiper-pagination { bottom: .06rem; }
.scroll-banner .swiper-pagination .swiper-pagination-bullet { margin: 0 0 0 .06rem; width: .06rem; height: .06rem; background: #d2d2d2; opacity: .3; }
.scroll-banner .swiper-pagination .swiper-pagination-bullet-active { background: #ffdc3a; opacity: 1; }
.activity-detail { margin-bottom: .1rem; }
.activity-detail p { overflow: hidden; font-size: 0; }
.activity-detail p img { margin: 0 auto .15rem; width: 90.93333vw; max-width: 3.41rem; height: 46.4vw; max-height: 1.74rem; }
.activity-detail table { margin: 0; padding: 0; width: -webkit-calc(100%); width: calc(100%); border-collapse: collapse; border-spacing: 0; border: 0; }
.activity-detail tr, .activity-detail td { border: 0; }
/*nav*/
.nav { padding-left: 0.225rem; padding-right: 0.225rem; white-space: nowrap; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; background-color: #e6e6e6; }
.nav-item { display: inline-block; padding-left: .125rem; padding-right: .125rem; font-size: .12rem; line-height: .44rem; cursor: pointer; color: #999; }
.nav-item.current { color: #f84c4c; }
.nav-item:hover { color: #f84c4c; }
@media screen and (max-width: 375px) { .nav-item { font-size: 12px; } }
.goods-content { background-color: #fff; }
.container { display: none; margin-left: .12rem; margin-right: .12rem; }
.container.current { display: block; }
.container.goods-empty { margin: 0; height: 75vw; max-height: 2.82rem; }
.container.goods-empty:before { content: '暂时还没有商品哦~'; padding-top: 62VW; }
.container .price { display: inline-block; font-size: .17rem; }
.container .price .yuan { padding-right: .05rem; font-size: .14rem; }
@media screen and (min-width: 640px) { .container.goods-empty:before { padding-top: 2.33rem; } }
.hot-list { position: relative; overflow: hidden; }
.hot-list.border-v > :after { bottom: -.14rem; background: #ccc; }
.hot-item { position: relative; padding-left: -webkit-calc(29.6vw + 10px); padding-left: calc(29.6vw + 10px); margin-bottom: .25rem; height: 29.6vw; max-height: 1.11rem; }
.hot-item:first-of-type { margin-top: .25rem; }
.hot-item .goods-img { position: absolute; margin-top: .02rem; margin-left: -webkit-calc(-29.6vw - 10px); margin-left: calc(-29.6vw - 10px); width: 29.6vw; max-width: 1.11rem; height: 29.6vw; max-height: 1.11rem; border-radius: .03rem; }
.hot-item .goods-title { margin-top: -.02rem; color: #4d4d4d; }
.hot-item .goods-text { padding-top: .04rem; height: .38rem; font-size: .13rem; line-height: .34rem; color: #808080; }
.hot-item .countDown { display: inline-block; padding: 0 .13rem; font-size: .12rem; line-height: 1.5; border: .01rem solid #f00; border-radius: .1rem; color: #f00; }
.hot-item .bottom { position: absolute; bottom: -.05rem; width: 100%; }
.hot-item .price { margin-right: .1rem; color: #f84c4c; }
.hot-item .btn { position: absolute; left: 1.37rem; margin-top: -.09rem; width: 23.46667vw; max-width: .88rem; font-size: .13rem; line-height: .28rem; text-align: center; letter-spacing: .01rem; cursor: pointer; border-radius: .03rem; color: #fff; background-color: #ffbe00; }
.hot-item .btn.sold { background-color: #999; }
@media screen and (min-width: 640px) { .hot-item { padding-left: 199px; }
.hot-item .goods-img { margin-left: -199px; } }
.goods-list { padding-top: .1rem; }
.goods-item { display: inline-block; overflow: hidden; margin-bottom: .1rem; width: 29.6vw; max-width: 1.11rem; font-size: .14rem; border-radius: .03rem; background-color: #fff; }
.goods-item:nth-of-type(3n+2) { margin-left: -webkit-calc(50% - 44.4vw); margin-left: calc(50% - 44.4vw); margin-right: -webkit-calc(50% - 44.4vw); margin-right: calc(50% - 44.4vw); }
.goods-item .goods-img { width: 100%; height: 24.8vw; max-height: .93rem; }
.goods-item .goods-title { padding: 0 .07rem .02rem; line-height: .32rem; text-align: center; color: #333; }
.goods-item .price { margin-left: .05rem; margin-right: .05rem; line-height: .3rem; color: #ffbe00; }
@media screen and (min-width: 640px) { .goods-item:nth-of-type(2n) { margin-left: 15.34px; margin-right: 15.34px; } }
.load-more { line-height: .5rem; text-align: center; color: #333; background-color: #fff; }
.load-more.loading { background: #fff url(../../img/loading.gif) no-repeat center; background-size: .3rem .3rem; font-size: 0; } | public/m/css/activity/festival.css | @charset "UTF-8";
/*切换为 1rem = 100px*/
html { font-size: -webkit-calc(100vw / 3.75); font-size: calc(100vw / 3.75); }
@media screen and (min-width: 640px) { html { font-size: calc(640px / 3.75); } }
body { font-size: .14rem; }
body, header, footer, .addCart, .bottom-fix, .follow { min-width: 320px; max-width: 640px; }
.yuan { padding-right: .02rem; }
.has-foot { padding-bottom: .62rem; }
.backToTop { right: .2rem; bottom: .6rem; width: .4rem; height: .4rem; }
.backToTop.no-foot { bottom: .1rem; }
@media screen and (min-width: 640px) { .backToTop { right: auto; } }
.follow { height: .49rem; }
.follow-remove { width: .45rem; background-size: .15rem .15rem; }
.follow-img { margin-right: .1rem; width: .4rem; height: .4rem; }
.follow-text { line-height: .2rem; font-size: .12rem; }
.follow-btn { top: .08rem; right: .1rem; padding: 0 .1rem; line-height: .32rem; font-size: .14rem; border: .01rem solid #806105; border-radius: .17rem; }
img.lazyload, img.lazyloading { background-size: .64rem .64rem; }
/*#goods-cart-count { margin-left: .04rem; width: .16rem; height: .16rem; line-height: .16rem; font-size: .11rem; &.more { line-height: .1rem; }
}*/
/*start*/
body.empty > .empty { display: block; }
body.empty > .content { display: none; }
img { display: block; }
del { font-size: .12rem; color: #666; }
.goods-empty { display: none; position: relative; width: 100%; height: 100vh; font-size: .16rem; background: #fff url(/wechat/img/empty/1.png) no-repeat center; background-size: 2.01rem auto; }
.goods-empty:before { content: attr(data-content); position: absolute; padding-top: 68vh; width: 100%; text-align: center; letter-spacing: .01rem; color: #808080; }
.to-home-btn { position: absolute; bottom: .1rem; left: .12rem; right: .12rem; line-height: 3; text-align: center; letter-spacing: .01rem; border-radius: .03rem; background: #f9cd02; color: #fff; }
.bg-img { position: absolute; top: 0; z-index: -1; width: 100%; max-width: 3.75rem; height: 100%; }
.banner-img { width: 100%; height: 2.35rem; background: #f7f7f7 url(../../img/watermark-logo.png) no-repeat center; background-size: .64rem .64rem; }
.scroll-banner .swiper-pagination { bottom: .06rem; }
.scroll-banner .swiper-pagination .swiper-pagination-bullet { margin: 0 0 0 .06rem; width: .06rem; height: .06rem; background: #d2d2d2; opacity: .3; }
.scroll-banner .swiper-pagination .swiper-pagination-bullet-active { background: #ffdc3a; opacity: 1; }
.activity-detail { margin-bottom: .1rem; }
.activity-detail p { overflow: hidden; font-size: 0; }
.activity-detail p img { margin: 0 auto .15rem; width: 90.93333vw; max-width: 3.41rem; height: 46.4vw; max-height: 1.74rem; }
.activity-detail table { margin: 0; padding: 0; width: -webkit-calc(100%); width: calc(100%); border-collapse: collapse; border-spacing: 0; border: 0; }
.activity-detail tr, .activity-detail td { border: 0; }
/*nav*/
.nav { padding-left: 0.225rem; padding-right: 0.225rem; white-space: nowrap; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; background-color: #e6e6e6; }
.nav-item { display: inline-block; padding-left: .125rem; padding-right: .125rem; font-size: .12rem; line-height: .44rem; cursor: pointer; color: #999; }
.nav-item.current { color: #f84c4c; }
.nav-item:hover { color: #f84c4c; }
@media screen and (max-width: 375px) { .nav-item { font-size: 12px; } }
.goods-content { background-color: #fff; }
.container { display: none; margin-left: .12rem; margin-right: .12rem; }
.container.current { display: block; }
.container.goods-empty { margin: 0; height: 75vw; max-height: 2.82rem; }
.container.goods-empty:before { content: '暂时还没有商品哦~'; padding-top: 62VW; }
.container .price { display: inline-block; font-size: .17rem; }
.container .price .yuan { padding-right: .05rem; font-size: .14rem; }
@media screen and (min-width: 640px) { .container.goods-empty:before { padding-top: 2.33rem; } }
.hot-list { position: relative; overflow: hidden; }
.hot-list.border-v > :after { bottom: -.14rem; background: #ccc; }
.hot-item { position: relative; padding-left: -webkit-calc(29.6vw + 10px); padding-left: calc(29.6vw + 10px); margin-bottom: .25rem; height: 29.6vw; max-height: 1.11rem; }
.hot-item:first-of-type { margin-top: .25rem; }
.hot-item .goods-img { position: absolute; margin-top: .02rem; margin-left: -webkit-calc(-29.6vw - 10px); margin-left: calc(-29.6vw - 10px); width: 29.6vw; max-width: 1.11rem; height: 29.6vw; max-height: 1.11rem; border-radius: .03rem; }
.hot-item .goods-title { margin-top: -.02rem; color: #4d4d4d; }
.hot-item .goods-text { padding-top: .04rem; height: .38rem; font-size: .13rem; line-height: .34rem; color: #808080; }
.hot-item .countDown { display: inline-block; padding: 0 .13rem; font-size: .12rem; line-height: 1.5; border: .01rem solid #f00; border-radius: .1rem; color: #f00; }
.hot-item .bottom { position: absolute; bottom: -.05rem; width: 100%; }
.hot-item .price { margin-right: .1rem; color: #f84c4c; }
.hot-item .btn { position: absolute; left: 1.37rem; margin-top: -.09rem; width: 23.46667vw; max-width: .88rem; font-size: .13rem; line-height: .28rem; text-align: center; letter-spacing: .01rem; cursor: pointer; border-radius: .03rem; color: #fff; background-color: #ffbe00; }
.hot-item .btn.sold { background-color: #999; }
@media screen and (min-width: 640px) { .hot-item { padding-left: 199px; }
.hot-item .goods-img { margin-left: -199px; } }
.goods-list { padding-top: .1rem; }
.goods-item { display: inline-block; overflow: hidden; margin-bottom: .1rem; width: 29.6vw; max-width: 1.11rem; font-size: .14rem; border-radius: .03rem; background-color: #fff; }
.goods-item:nth-of-type(3n+2) { margin-left: -webkit-calc(50% - 44.4vw); margin-left: calc(50% - 44.4vw); margin-right: -webkit-calc(50% - 44.4vw); margin-right: calc(50% - 44.4vw); }
.goods-item .goods-img { width: 100%; height: 24.8vw; max-height: .93rem; }
.goods-item .goods-title { padding: 0 .07rem .02rem; line-height: .32rem; text-align: center; color: #333; }
.goods-item .price { margin-left: .05rem; margin-right: .05rem; line-height: .3rem; color: #ffbe00; }
@media screen and (min-width: 640px) { .goods-item:nth-of-type(2n) { margin-left: 15.34px; margin-right: 15.34px; } }
.load-more { line-height: .5rem; text-align: center; color: #333; background-color: #fff; }
.load-more.loading { background: #fff url(../../img/loading.gif) no-repeat center; background-size: .3rem .3rem; font-size: 0; } | 0.421552 | 0.044101 |
:root {
/*background*/
--bg: linear-gradient(to left, black, #500, black);
/*progress bar*/
--cl: linear-gradient(to right, #333, #04052E);
/*information tab*/
--info: radial-gradient(ellipse, #500, transparent);
/*scroll bar*/
--scrl: linear-gradient(to top, red, maroon, transparent);
/*scroll bar track*/
--trk: linear-gradient(to top, black, #200000, black);
}
.style-scope ytd-page-manager{
background: var(--bg) !important;
}
.style-scope ytd-watch{
background: transparent !important;
}
/* scrubber button */
.html5-scrubber-button:hover, .ytp-scrubber-button:hover, .ytp-swatch-background-color, .ytp-swatch-background-color-secondary {
background: var(--cl) !important;
}
/* progress bar */
.html5-play-progress, .ytp-play-progress {
background: var(--cl) !important;
}
/*volume*/
.ytp-volume-slider-track, .ytp-volume-slider-handle:before {
background: fuchsia !important;
z-index: -117;
}
.ytp-settings-button.ytp-hd-quality-badge::after, .ytp-settings-button.ytp-4k-quality-badge::after, .ytp-settings-button.ytp-5k-quality-badge::after, .ytp-settings-button.ytp-8k-quality-badge::after, .ytp-settings-button.ytp-3d-badge::after {
background-color: fuchsia !important;
}
.ytp-swatch-color {
background: transparent !important;
}
.ytp-menuitem[aria-checked="true"] .ytp-menuitem-toggle-checkbox {
background: linear-gradient(to right, fuchsia, cyan, cyan) !important;
}
.ytp-chrome-controls .ytp-button.ytp-youtube-button:hover:not([aria-disabled="true"]):not([disabled]) .ytp-svg-fill-logo-tube-lozenge {
fill: linear-gradient(to right, fuchsia, cyan) !important;
}
.ytp-cued-thumbnail-overlay:hover .ytp-large-play-button-bg, .ytp-large-play-button.ytp-touch-device .ytp-large-play-button-bg {
fill: linear-gradient(to right, cyan, fuchsia) !important;
}
.resume-playback-progress-bar {
background: linear-gradient(to right, cyan, fuchsia) !important;
}
.ytp-chrome-controls .ytp-button[aria-pressed]::after {
background-color: fuchsia !important;
}
.yt-uix-checkbox-on-off input-extras2-disabled[type="checkbox"]:checked + label {
background-color: cyan !important;
}
.video-extras-sparkbar-likes-extras2-disabled {
background-color: cyan !important;
}
.style-scope ytd-video-secondary-info-renderer {
background: var(--info) !important;
}
/*.style-scope {
background: transparent !important;
}*/
.style-scope ytd-masthead {
background: var(--bg) !important;
}
.ytd-item-section-renderer {
background: transparent !important;
}
/*scroll bar*/
::-webkit-scrollbar-track {
border-radius: 10px;
background: var(--trk);
}
::-webkit-scrollbar {
width: 12px;
background-color: black;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background:var(--scrl) ;
}
input:-moz-placeholder {
color: white !important;
}
scrollbar {
-moz-appearance: none !important;
background: #040406 !important;
}
scrollbar[orient="vertical"] {
min-width: 14px !important;
max-width: 14px !important;
}
scrollbar[orient="horizontal"] {
min-height: 14px !important;
max-height: 14px !important;
}
scrollbar slider {
-moz-appearance: none !important;
background: transparent !important;
}
scrollbar thumb {
-moz-appearance: none !important;
background: #333 !important;
border: none !important;
}
scrollbar thumb:not(:active):hover {
background: #383838 !important;
}
scrollbar thumb:active,
scrollbar thumb:hover:active,
scrollbar thumb[active="true"] {
background: #5c5c5c !important;
border: none !important;
}
scrollbar scrollbarbutton {
display: none;
}
scrollcorner {
-moz-appearance: none !important;
background: #040406 !important;
border: none !important;
} | data/usercss/156777.user.css | :root {
/*background*/
--bg: linear-gradient(to left, black, #500, black);
/*progress bar*/
--cl: linear-gradient(to right, #333, #04052E);
/*information tab*/
--info: radial-gradient(ellipse, #500, transparent);
/*scroll bar*/
--scrl: linear-gradient(to top, red, maroon, transparent);
/*scroll bar track*/
--trk: linear-gradient(to top, black, #200000, black);
}
.style-scope ytd-page-manager{
background: var(--bg) !important;
}
.style-scope ytd-watch{
background: transparent !important;
}
/* scrubber button */
.html5-scrubber-button:hover, .ytp-scrubber-button:hover, .ytp-swatch-background-color, .ytp-swatch-background-color-secondary {
background: var(--cl) !important;
}
/* progress bar */
.html5-play-progress, .ytp-play-progress {
background: var(--cl) !important;
}
/*volume*/
.ytp-volume-slider-track, .ytp-volume-slider-handle:before {
background: fuchsia !important;
z-index: -117;
}
.ytp-settings-button.ytp-hd-quality-badge::after, .ytp-settings-button.ytp-4k-quality-badge::after, .ytp-settings-button.ytp-5k-quality-badge::after, .ytp-settings-button.ytp-8k-quality-badge::after, .ytp-settings-button.ytp-3d-badge::after {
background-color: fuchsia !important;
}
.ytp-swatch-color {
background: transparent !important;
}
.ytp-menuitem[aria-checked="true"] .ytp-menuitem-toggle-checkbox {
background: linear-gradient(to right, fuchsia, cyan, cyan) !important;
}
.ytp-chrome-controls .ytp-button.ytp-youtube-button:hover:not([aria-disabled="true"]):not([disabled]) .ytp-svg-fill-logo-tube-lozenge {
fill: linear-gradient(to right, fuchsia, cyan) !important;
}
.ytp-cued-thumbnail-overlay:hover .ytp-large-play-button-bg, .ytp-large-play-button.ytp-touch-device .ytp-large-play-button-bg {
fill: linear-gradient(to right, cyan, fuchsia) !important;
}
.resume-playback-progress-bar {
background: linear-gradient(to right, cyan, fuchsia) !important;
}
.ytp-chrome-controls .ytp-button[aria-pressed]::after {
background-color: fuchsia !important;
}
.yt-uix-checkbox-on-off input-extras2-disabled[type="checkbox"]:checked + label {
background-color: cyan !important;
}
.video-extras-sparkbar-likes-extras2-disabled {
background-color: cyan !important;
}
.style-scope ytd-video-secondary-info-renderer {
background: var(--info) !important;
}
/*.style-scope {
background: transparent !important;
}*/
.style-scope ytd-masthead {
background: var(--bg) !important;
}
.ytd-item-section-renderer {
background: transparent !important;
}
/*scroll bar*/
::-webkit-scrollbar-track {
border-radius: 10px;
background: var(--trk);
}
::-webkit-scrollbar {
width: 12px;
background-color: black;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background:var(--scrl) ;
}
input:-moz-placeholder {
color: white !important;
}
scrollbar {
-moz-appearance: none !important;
background: #040406 !important;
}
scrollbar[orient="vertical"] {
min-width: 14px !important;
max-width: 14px !important;
}
scrollbar[orient="horizontal"] {
min-height: 14px !important;
max-height: 14px !important;
}
scrollbar slider {
-moz-appearance: none !important;
background: transparent !important;
}
scrollbar thumb {
-moz-appearance: none !important;
background: #333 !important;
border: none !important;
}
scrollbar thumb:not(:active):hover {
background: #383838 !important;
}
scrollbar thumb:active,
scrollbar thumb:hover:active,
scrollbar thumb[active="true"] {
background: #5c5c5c !important;
border: none !important;
}
scrollbar scrollbarbutton {
display: none;
}
scrollcorner {
-moz-appearance: none !important;
background: #040406 !important;
border: none !important;
} | 0.298287 | 0.163412 |
@media (min-width: 960px) {
#c-d div:first-child{
background-color: rgb(8, 138, 143);
border: 1px solid black;
border-right: none;
border-left: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:first-child{
background-color: rgb(221, 125, 165);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
border-left: none;
}
#e-h div:nth-child(2){
background-color: rgb(253, 165, 202);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(206, 13, 93);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
}
}
/* tablate */
@media (min-width: 767px) and (max-width: 960px) {
#c-d div:first-child{
background-color: rgb(19, 217, 243);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:first-child{
background-color: rgb(250, 237, 54);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(2){
background-color: rgb(255, 200, 44);
border: 1px solid black;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(224, 243, 56);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
}
/* mobile */
@media (max-width: 767px) {
#c-d div:first-child{
background-color: rgb(12, 180, 26);
}
#e-h div:first-child{
background-color: rgb(109, 49, 121);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(2){
background-color: rgb(168, 7, 74);
border: 1px solid black;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(248, 7, 236);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
} | css/state.css | @media (min-width: 960px) {
#c-d div:first-child{
background-color: rgb(8, 138, 143);
border: 1px solid black;
border-right: none;
border-left: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:first-child{
background-color: rgb(221, 125, 165);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
border-left: none;
}
#e-h div:nth-child(2){
background-color: rgb(253, 165, 202);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(206, 13, 93);
border: 1px solid black;
border-right: none;
box-sizing: border-box;
}
}
/* tablate */
@media (min-width: 767px) and (max-width: 960px) {
#c-d div:first-child{
background-color: rgb(19, 217, 243);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:first-child{
background-color: rgb(250, 237, 54);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(2){
background-color: rgb(255, 200, 44);
border: 1px solid black;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(224, 243, 56);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
}
/* mobile */
@media (max-width: 767px) {
#c-d div:first-child{
background-color: rgb(12, 180, 26);
}
#e-h div:first-child{
background-color: rgb(109, 49, 121);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(2){
background-color: rgb(168, 7, 74);
border: 1px solid black;
border-bottom: none;
box-sizing: border-box;
}
#e-h div:nth-child(3){
background-color: rgb(248, 7, 236);
border: 1px solid black;
border-right: none;
border-bottom: none;
box-sizing: border-box;
}
} | 0.300335 | 0.090414 |
.slick-slider{
position: relative;
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus{
outline: none;
}
.slick-list.dragging{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after{
display: table;
content: '';
}
.slick-track:after{
clear: both;
}
.slick-loading .slick-track{
visibility: hidden;
}
.slick-slide{
display: none;
float: left;
/*height: 80%;*/
min-height: 1px;
}
[dir='rtl'] .slick-slide{
float: right;
}
.slick-slide img{
display: block;
}
.slick-slide.slick-loading img{
display: none;
}
.slick-slide.dragging img{
pointer-events: none;
}
.slick-initialized .slick-slide{
display: block;
}
.slick-loading .slick-slide{
visibility: hidden;
}
.slick-vertical .slick-slide{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-prev,
.slick-next{
position: absolute;
top: 37px;
display: block;
width: 38px;
height: 38px;
margin-top: 16%;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
}
.slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:100%; transition:all 0.2s; border: 2px solid #514d65;}
.slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:100%;}
.slick-next{ background:url(../images/next-btn.png) left top no-repeat; right:-3%; transition:all 0.2s; border: 2px solid #514d65;}
.slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; right:-3%;}
.slidee2 .slick-prev,
.slidee2 .slick-next{
position: absolute;
/*top: -100px;*/
display: block;
width: 38px;
height: 38px;
margin-top: 13%;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
}
.slidee2 .slick-prev{ background:url(../images/back-btn.png) left top no-repeat; /*right:51%;*/ left:-5px; border:2px solid #514d65; border-radius: 20px;
transition:all 0.4s;/* top:30%;*/}
.slidee2 .slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; /*right:51%;*/}
.slidee2 .slick-next{ background:url(../images/next-btn.png) left top no-repeat; /*right:46%;*/ right:-8px; border:2px solid #514d65; border-radius: 20px;
transition:all 0.4s; /*top:30%;*/}
.slidee2 .slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; /*right:46%;*/}
@media screen and (max-width: 1200px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: -90px;
}
}
@media screen and (max-width: 992px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: -72px;
}
.slidee2 .slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:54%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:54%;}
.slidee2 .slick-next{ background:url(../images/next-btn.png) left top no-repeat; right:45%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; right:45%;}
}
@media screen and (max-width: 786px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: 28%;
}
.slidee2 .slick-prev{ background:url(../images/ftp-back-btn.png) left top no-repeat; right:95%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/ftp-back-btn.png) left bottom no-repeat; right:95%;}
.slidee2 .slick-next{ background:url(../images/ftp-next-btn.png) left top no-repeat; right:0%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/ftp-next-btn.png) left bottom no-repeat; right:0%;}
}
@media screen and (max-width: 500px){
.slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:100%; transition:all 0.2s;}
.slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:100%;}
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: 30%;
}
.slidee2 .slick-prev{ background:url(../images/ftp-back-btn.png) left top no-repeat; right:85%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/ftp-back-btn.png) left bottom no-repeat; right:85%;}
.slidee2 .slick-next{ background:url(../images/ftp-next-btn.png) left top no-repeat; right:1%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/ftp-next-btn.png) left bottom no-repeat; right:1%;}
} | css/slick.css | .slick-slider{
position: relative;
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus{
outline: none;
}
.slick-list.dragging{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after{
display: table;
content: '';
}
.slick-track:after{
clear: both;
}
.slick-loading .slick-track{
visibility: hidden;
}
.slick-slide{
display: none;
float: left;
/*height: 80%;*/
min-height: 1px;
}
[dir='rtl'] .slick-slide{
float: right;
}
.slick-slide img{
display: block;
}
.slick-slide.slick-loading img{
display: none;
}
.slick-slide.dragging img{
pointer-events: none;
}
.slick-initialized .slick-slide{
display: block;
}
.slick-loading .slick-slide{
visibility: hidden;
}
.slick-vertical .slick-slide{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-prev,
.slick-next{
position: absolute;
top: 37px;
display: block;
width: 38px;
height: 38px;
margin-top: 16%;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
}
.slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:100%; transition:all 0.2s; border: 2px solid #514d65;}
.slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:100%;}
.slick-next{ background:url(../images/next-btn.png) left top no-repeat; right:-3%; transition:all 0.2s; border: 2px solid #514d65;}
.slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; right:-3%;}
.slidee2 .slick-prev,
.slidee2 .slick-next{
position: absolute;
/*top: -100px;*/
display: block;
width: 38px;
height: 38px;
margin-top: 13%;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
}
.slidee2 .slick-prev{ background:url(../images/back-btn.png) left top no-repeat; /*right:51%;*/ left:-5px; border:2px solid #514d65; border-radius: 20px;
transition:all 0.4s;/* top:30%;*/}
.slidee2 .slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; /*right:51%;*/}
.slidee2 .slick-next{ background:url(../images/next-btn.png) left top no-repeat; /*right:46%;*/ right:-8px; border:2px solid #514d65; border-radius: 20px;
transition:all 0.4s; /*top:30%;*/}
.slidee2 .slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; /*right:46%;*/}
@media screen and (max-width: 1200px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: -90px;
}
}
@media screen and (max-width: 992px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: -72px;
}
.slidee2 .slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:54%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:54%;}
.slidee2 .slick-next{ background:url(../images/next-btn.png) left top no-repeat; right:45%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/next-btn.png) left bottom no-repeat; right:45%;}
}
@media screen and (max-width: 786px){
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: 28%;
}
.slidee2 .slick-prev{ background:url(../images/ftp-back-btn.png) left top no-repeat; right:95%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/ftp-back-btn.png) left bottom no-repeat; right:95%;}
.slidee2 .slick-next{ background:url(../images/ftp-next-btn.png) left top no-repeat; right:0%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/ftp-next-btn.png) left bottom no-repeat; right:0%;}
}
@media screen and (max-width: 500px){
.slick-prev{ background:url(../images/back-btn.png) left top no-repeat; right:100%; transition:all 0.2s;}
.slick-prev:hover{ background:url(../images/back-btn.png) left bottom no-repeat; right:100%;}
.slidee2 .slick-prev,
.slidee2 .slick-next
{
top: 30%;
}
.slidee2 .slick-prev{ background:url(../images/ftp-back-btn.png) left top no-repeat; right:85%; transition:all 0.2s;}
.slidee2 .slick-prev:hover{ background:url(../images/ftp-back-btn.png) left bottom no-repeat; right:85%;}
.slidee2 .slick-next{ background:url(../images/ftp-next-btn.png) left top no-repeat; right:1%; transition:all 0.2s;}
.slidee2 .slick-next:hover{ background:url(../images/ftp-next-btn.png) left bottom no-repeat; right:1%;}
} | 0.195633 | 0.071982 |