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 |
|---|---|---|---|---|
html, body {margin:0;padding:0;font-family: Helvetica, sans-serif;height:100%;}
.disabled {display:none;}
@keyframes fade-up-down {
0% {opacity:0;}
25% {opacity:0.9;}
35% {opacity:1;}
50% {opacity:0.8;}
100% {opacity:0;}
}
@-webkit-keyframes fade-up-down {
0% {opacity:0;}
25% {opacity:0.9;}
35% {opacity:1;}
50% {opacity:0.8;}
100% {opacity:0;}
}
.scroll-indicator {
position:absolute;
left:200px;
right:0;
z-index: -1;
height:100%;
background-color: rgba(0,0,0,0.2);
box-shadow: inset 4px 4px 15px rgba(255,255,255,0.7), inset -4px -4px 15px rgba(255,255,255,0.7);
opacity:1;
animation: fade-up-down 4s linear;
-webkit-animation: fade-up-down 4s linear;
transition: left 0.5s ease-in-out;
}
.scroll-indicator.fade {
opacity:0;
}
.addsong-form {
display:none;
position: absolute;
top: 0;
left: 200px;
right: 0;
min-height:100%;
z-index: 100;
background: white;
padding:10px;
border:solid 1px #CCC;
}
.song-list-search {
position:fixed;
top:0;
left:0;
width:200px;
}
.song-list {
position:fixed;
top:21px;
left:0;
bottom:0;
width:200px;
overflow:scroll;
list-style:none;
margin:0;
padding:0;
border-right:1px solid #CCC;
font-size: 0.8em;
transition: all 0.5s ease-in-out;
}
.song-list-item.pending {
border-left:5px solid grey;
}
.song-list-item.selected {
font-weight:bold;
}
.song-list-item {
padding: 5px;
}
.song-ben {background:#BDF;}
.song-masumi {background:#c6b6fa;}
.song-benmasumi {background:orange;}
.song-list-item .artist {
font-style: italic;
}
.song-list-item .artist:before {content:" - ";}
.song-list-item:hover {
background: #DDD;
}
.song-detail {
position:absolute;
top:0;
bottom:0;
right:0;
left:210px;
transition: all 0.5s ease-in-out;
}
.song-detail .title {margin-bottom: 0;}
.song-detail .lyrics {
font-size: 1.3em;
padding:10px 0;
margin-top:10px;
border-top:solid 1px rgba(0,0,0,0.3);
border-bottom:solid 1px rgba(0,0,0,0.3);
white-space: pre-line;
-webkit-column-width: 21em;
-webkit-column-rule: 1px solid rgba(0,0,0,0.4);
}
.editing .song-detail-item {margin-top:5px;}
.editing .value {
background-color: #eea;
padding: 0 10px;
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.editing .lyrics .value {padding: 0;}
.editing .value:empty {
padding: 0 20px;
display: inline-block;
}
.editing .disabled {display: block;}
.fullscreen .song-detail {
left:0;
padding-left:10px;
padding-right:10px;
}
.fullscreen .scroll-indicator {
left:0;
}
.fullscreen .song-list {
left: -200px;
} | public/stylesheets/style.css | html, body {margin:0;padding:0;font-family: Helvetica, sans-serif;height:100%;}
.disabled {display:none;}
@keyframes fade-up-down {
0% {opacity:0;}
25% {opacity:0.9;}
35% {opacity:1;}
50% {opacity:0.8;}
100% {opacity:0;}
}
@-webkit-keyframes fade-up-down {
0% {opacity:0;}
25% {opacity:0.9;}
35% {opacity:1;}
50% {opacity:0.8;}
100% {opacity:0;}
}
.scroll-indicator {
position:absolute;
left:200px;
right:0;
z-index: -1;
height:100%;
background-color: rgba(0,0,0,0.2);
box-shadow: inset 4px 4px 15px rgba(255,255,255,0.7), inset -4px -4px 15px rgba(255,255,255,0.7);
opacity:1;
animation: fade-up-down 4s linear;
-webkit-animation: fade-up-down 4s linear;
transition: left 0.5s ease-in-out;
}
.scroll-indicator.fade {
opacity:0;
}
.addsong-form {
display:none;
position: absolute;
top: 0;
left: 200px;
right: 0;
min-height:100%;
z-index: 100;
background: white;
padding:10px;
border:solid 1px #CCC;
}
.song-list-search {
position:fixed;
top:0;
left:0;
width:200px;
}
.song-list {
position:fixed;
top:21px;
left:0;
bottom:0;
width:200px;
overflow:scroll;
list-style:none;
margin:0;
padding:0;
border-right:1px solid #CCC;
font-size: 0.8em;
transition: all 0.5s ease-in-out;
}
.song-list-item.pending {
border-left:5px solid grey;
}
.song-list-item.selected {
font-weight:bold;
}
.song-list-item {
padding: 5px;
}
.song-ben {background:#BDF;}
.song-masumi {background:#c6b6fa;}
.song-benmasumi {background:orange;}
.song-list-item .artist {
font-style: italic;
}
.song-list-item .artist:before {content:" - ";}
.song-list-item:hover {
background: #DDD;
}
.song-detail {
position:absolute;
top:0;
bottom:0;
right:0;
left:210px;
transition: all 0.5s ease-in-out;
}
.song-detail .title {margin-bottom: 0;}
.song-detail .lyrics {
font-size: 1.3em;
padding:10px 0;
margin-top:10px;
border-top:solid 1px rgba(0,0,0,0.3);
border-bottom:solid 1px rgba(0,0,0,0.3);
white-space: pre-line;
-webkit-column-width: 21em;
-webkit-column-rule: 1px solid rgba(0,0,0,0.4);
}
.editing .song-detail-item {margin-top:5px;}
.editing .value {
background-color: #eea;
padding: 0 10px;
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.editing .lyrics .value {padding: 0;}
.editing .value:empty {
padding: 0 20px;
display: inline-block;
}
.editing .disabled {display: block;}
.fullscreen .song-detail {
left:0;
padding-left:10px;
padding-right:10px;
}
.fullscreen .scroll-indicator {
left:0;
}
.fullscreen .song-list {
left: -200px;
} | 0.384681 | 0.058426 |
body,h1,h2,h3,p,td,quote,small,form,input,ul,li,ol,label{
margin:0px;
padding:0px;
}
body{
margin:50px auto;
color:#51555C;
}
/* Form & timeline styles */
#search-container{
-moz-border-radius:12px;
-khtml-border-radius: 12px;
-webkit-border-radius: 12px;
border-radius:12px;
border:6px solid #f5f5f5;
padding:10px;
width:960px;
font-size:11px;
font-family:'Lucida Grande',sans-serif;
color:#333333;
margin:50px auto;
min-height: 150px;
}
label{
font-size:20px;
display:block;
}
.refresh{
color:#CCCCCC;
float:right;
font-family: Gorgia,sans-serif;
font-size:32px;
font-weight:bold;
height:40px;
overflow:hidden;
}
.refresh a {
color:#ccc;
text-decoration: none;
}
.refresh a:hover {
color:#333333;
}
.searchBox{
width: 100%;
height:38px;
margin:5px 0 10px 0;
border:1px solid #AAAAAA;
padding: 4px 2px;
-moz-border-radius:6px;
-khtml-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius:6px;
font-family:'Lucida Grande',sans-serif;
overflow:auto;
font-size:24px;
}
.clear{
clear:both;
}
.submitButton{
color:#666666;
font-size:14px;
height:32px;
width:115px;
-moz-border-radius:6px;
-khtml-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius:6px;
border:1px solid #cccccc;
background: repeat-x #f5f5f5;
cursor:pointer;
float:right;
}
.submitButton:hover{
background-position:bottom;
border-color:#dddddd;
color:#333333;
}
/*.inact,.inact:hover{
background:#f5f5f5;
border:1px solid #eeeeee;
color:#aaaaaa;
cursor:auto;
}*/
.last-indexed-on {
color: #666666;
}
ol.results{
margin:10px 0;
}
ol.results li {
position:relative;
border-bottom:1px dashed #D2DADA;
padding:15px 15px 15px 10px;
list-style:none;
font-size:14px;
}
ol.results li:first-child{
border-top:1px dashed #D2DADA;
}
ol.results li:hover {
background-color:#F7F7F7;
}
h3.results-for{
margin-top:20px;
color:#999999;
font-size:20px;
font-weight:normal;
}
div.repoDescription{
float:left;
width:498px;
overflow:hidden;
}
ol.results a img.avatar{
float:left;
margin-right:10px;
border:1px solid #446600;
}
div.language{
line-height:18px;
font-size:12px;
color:#999999;
}
li a, li a:visited {
color:#007bc4;
text-decoration:none;
outline:none;
}
li a:hover{
text-decoration:underline;
}
.cta {
float:right;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #123d54;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#afd9fa 0%,
#588fad);
background: -webkit-gradient(
linear, left top, left bottom,
from(#afd9fa),
to(#588fad));
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border: 1px solid #003366;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
text-shadow:
0px -1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
} | public/stylesheets/serp.css |
body,h1,h2,h3,p,td,quote,small,form,input,ul,li,ol,label{
margin:0px;
padding:0px;
}
body{
margin:50px auto;
color:#51555C;
}
/* Form & timeline styles */
#search-container{
-moz-border-radius:12px;
-khtml-border-radius: 12px;
-webkit-border-radius: 12px;
border-radius:12px;
border:6px solid #f5f5f5;
padding:10px;
width:960px;
font-size:11px;
font-family:'Lucida Grande',sans-serif;
color:#333333;
margin:50px auto;
min-height: 150px;
}
label{
font-size:20px;
display:block;
}
.refresh{
color:#CCCCCC;
float:right;
font-family: Gorgia,sans-serif;
font-size:32px;
font-weight:bold;
height:40px;
overflow:hidden;
}
.refresh a {
color:#ccc;
text-decoration: none;
}
.refresh a:hover {
color:#333333;
}
.searchBox{
width: 100%;
height:38px;
margin:5px 0 10px 0;
border:1px solid #AAAAAA;
padding: 4px 2px;
-moz-border-radius:6px;
-khtml-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius:6px;
font-family:'Lucida Grande',sans-serif;
overflow:auto;
font-size:24px;
}
.clear{
clear:both;
}
.submitButton{
color:#666666;
font-size:14px;
height:32px;
width:115px;
-moz-border-radius:6px;
-khtml-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius:6px;
border:1px solid #cccccc;
background: repeat-x #f5f5f5;
cursor:pointer;
float:right;
}
.submitButton:hover{
background-position:bottom;
border-color:#dddddd;
color:#333333;
}
/*.inact,.inact:hover{
background:#f5f5f5;
border:1px solid #eeeeee;
color:#aaaaaa;
cursor:auto;
}*/
.last-indexed-on {
color: #666666;
}
ol.results{
margin:10px 0;
}
ol.results li {
position:relative;
border-bottom:1px dashed #D2DADA;
padding:15px 15px 15px 10px;
list-style:none;
font-size:14px;
}
ol.results li:first-child{
border-top:1px dashed #D2DADA;
}
ol.results li:hover {
background-color:#F7F7F7;
}
h3.results-for{
margin-top:20px;
color:#999999;
font-size:20px;
font-weight:normal;
}
div.repoDescription{
float:left;
width:498px;
overflow:hidden;
}
ol.results a img.avatar{
float:left;
margin-right:10px;
border:1px solid #446600;
}
div.language{
line-height:18px;
font-size:12px;
color:#999999;
}
li a, li a:visited {
color:#007bc4;
text-decoration:none;
outline:none;
}
li a:hover{
text-decoration:underline;
}
.cta {
float:right;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #123d54;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#afd9fa 0%,
#588fad);
background: -webkit-gradient(
linear, left top, left bottom,
from(#afd9fa),
to(#588fad));
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border: 1px solid #003366;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
text-shadow:
0px -1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
} | 0.261142 | 0.078219 |
.newsbar {
width: 30%;
position:absolute;
right: -29.95%;
bottom:100px;
background-color: rgba(45,45,45,0.7);
color: white;
min-height: 35px;
/*display:none;*/
z-index: 11;
}
.radioAnimShow {
animation:showRadio 2s ease-out forwards;
}
.radioAnimHide {
animation:hideRadio 2s ease-out forwards;
}
.radioAnimShow2 {
animation:showRadio2 2s ease-out forwards;
}
.radioAnimHide2 {
animation:hideRadio2 2s ease-out forwards;
}
.blinkAnim {
animation:blinka 5s ease infinite;
}
.newsbar .highlight {
/*background-color: red;*/
background: linear-gradient(227deg, #ff0000, #fffa00);
background-size: 400% 400%;
/*width: 5px;*/
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
float: left;
/*left: -5px;*/
position: absolute;
height: 100%;
left: -9px;
width: 10px;
cursor: pointer;
}
.newsbar .titlebar {
background-color: rgba(68,73,77,0.7);
color: white;
height: 35px;
line-height: 23px;
/*text-align: center;*/
font-family: Quicksand, sans-serif;
font-weight: 600;
}
.newsbar .titlebar .title {
color: white;
margin-top: 0px;
margin-left: 10px;
}
.newsbar .titlebar .author {
color: white;
font-size: 10px;
line-height: 0px;
margin-top: -12px;
margin-left: 10px;
}
.newsbar .content {
color: white;
font-family: Quicksand, sans-serif;
padding: 10px;
}
@media only screen and (min-width: 3800px) {
.newsbar{
width: 30%;
position: absolute;
right: -29.95%;
bottom: 500px;
background-color: rgba(45,45,45,0.7);
color: white;
min-height: 190px;
/* display: none; */
z-index: 11;
}
.newsbar .titlebar {
background-color: rgba(68,73,77,0.7);
color: white;
height: 60px;
line-height: 23px;
/* text-align: center; */
font-family: Quicksand, sans-serif;
font-weight: 600;
}
.newsbar .titlebar .title {
color: white;
margin-top: 0px;
margin-left: 10px;
font-size: 24px;
line-height: 30px;
}
.newsbar .titlebar .author {
color: white;
font-size: 18px;
line-height: 0px;
margin-top: -12px;
margin-left: 10px;
}
.newsbar .content {
color: white;
font-family: Quicksand, sans-serif;
padding: 10px;
font-size: 23px;
}
}
@keyframes showRadio {
0% {
right: -29.95%;
}
100% {
right: 0;
}
}
@keyframes hideRadio {
0% {
right: 0;
}
100% {
right: -29.95%;
}
}
@keyframes showRadio2 {
0% {
left: -9px;
width: 10px;
}
100% {
left: -5px;
width:5px;
}
}
@keyframes hideRadio2 {
0% {
left: -5px;
width:5px;
}
100% {
left: -9px;
width: 10px;
}
}
@keyframes blinka {
0%{background-position:96% 0%;}
50%{background-position:5% 100%;}
100%{background-position:96% 0%;}
} | LSVRP/_Client/LSVRP/UI/css/lsvrp-newsbar.css | .newsbar {
width: 30%;
position:absolute;
right: -29.95%;
bottom:100px;
background-color: rgba(45,45,45,0.7);
color: white;
min-height: 35px;
/*display:none;*/
z-index: 11;
}
.radioAnimShow {
animation:showRadio 2s ease-out forwards;
}
.radioAnimHide {
animation:hideRadio 2s ease-out forwards;
}
.radioAnimShow2 {
animation:showRadio2 2s ease-out forwards;
}
.radioAnimHide2 {
animation:hideRadio2 2s ease-out forwards;
}
.blinkAnim {
animation:blinka 5s ease infinite;
}
.newsbar .highlight {
/*background-color: red;*/
background: linear-gradient(227deg, #ff0000, #fffa00);
background-size: 400% 400%;
/*width: 5px;*/
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
float: left;
/*left: -5px;*/
position: absolute;
height: 100%;
left: -9px;
width: 10px;
cursor: pointer;
}
.newsbar .titlebar {
background-color: rgba(68,73,77,0.7);
color: white;
height: 35px;
line-height: 23px;
/*text-align: center;*/
font-family: Quicksand, sans-serif;
font-weight: 600;
}
.newsbar .titlebar .title {
color: white;
margin-top: 0px;
margin-left: 10px;
}
.newsbar .titlebar .author {
color: white;
font-size: 10px;
line-height: 0px;
margin-top: -12px;
margin-left: 10px;
}
.newsbar .content {
color: white;
font-family: Quicksand, sans-serif;
padding: 10px;
}
@media only screen and (min-width: 3800px) {
.newsbar{
width: 30%;
position: absolute;
right: -29.95%;
bottom: 500px;
background-color: rgba(45,45,45,0.7);
color: white;
min-height: 190px;
/* display: none; */
z-index: 11;
}
.newsbar .titlebar {
background-color: rgba(68,73,77,0.7);
color: white;
height: 60px;
line-height: 23px;
/* text-align: center; */
font-family: Quicksand, sans-serif;
font-weight: 600;
}
.newsbar .titlebar .title {
color: white;
margin-top: 0px;
margin-left: 10px;
font-size: 24px;
line-height: 30px;
}
.newsbar .titlebar .author {
color: white;
font-size: 18px;
line-height: 0px;
margin-top: -12px;
margin-left: 10px;
}
.newsbar .content {
color: white;
font-family: Quicksand, sans-serif;
padding: 10px;
font-size: 23px;
}
}
@keyframes showRadio {
0% {
right: -29.95%;
}
100% {
right: 0;
}
}
@keyframes hideRadio {
0% {
right: 0;
}
100% {
right: -29.95%;
}
}
@keyframes showRadio2 {
0% {
left: -9px;
width: 10px;
}
100% {
left: -5px;
width:5px;
}
}
@keyframes hideRadio2 {
0% {
left: -5px;
width:5px;
}
100% {
left: -9px;
width: 10px;
}
}
@keyframes blinka {
0%{background-position:96% 0%;}
50%{background-position:5% 100%;}
100%{background-position:96% 0%;}
} | 0.669853 | 0.116663 |
body {
font-family: Arial, Helvetica, sans-serif;
}
.primary-color {
background-color: rgb(212, 87, 74);
}
.primary-color-t {
color: rgb(212, 87, 74);
}
.d-none {
display: none;
}
.navbar-logo {
width: 50%;
height: auto;
}
.navbar-logo2 {
width: 100%;
}
.main-nav i {
color: white;
font-size: 14px;
}
.main-div {
background-image: url("../assets/images/background-beachhouse.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 65vh;
box-shadow: 0 1px 10px #555;
}
.main-content {
padding: 10% 0;
}
.main-header {
text-shadow: 0 1px 10px #555;
}
.form1 {
background-color: rgb(255, 255, 255, 0.7);
box-shadow: 0 1px 20px #888;
border-radius: 5px;
width: 100%;
}
.main-input {
width: 300px;
}
.description-section i {
font-size: 48px;
}
.content-section {
height: 240px;
}
.bg-1 {
background-color: rgb(212, 87, 74);
}
.bg-2 {
background-color: rgb(152, 164, 165);
}
.bg-3 {
background-color: rgb(81, 155, 215);
}
.bg-img {
width: 200px;
height: 200px;
border: 1px solid #000;
border-radius: 150px;
background-color: white;
}
footer {
background-color: #000;
}
.foot-links {
width: 85%;
}
.foot-links ul {
font-size: 12px;
padding: 10px 0;
border-top: 1px solid #555;
border-bottom: 1px solid #555;
}
.foot-links a {
color: white;
font-size: 12px;
}
.mid-link {
border: 1px solid #555;
border-radius: 50%;
}
.mid-link i {
font-size: 25px;
width: 25px;
text-align: center;
}
.foot2 {
width: 70%;
}
.foot2 h6 {
font-size: 14px;
}
.form-control-i {
width: 140px;
border: 1px solid transparent;
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
.t-14 {
font-size: 14px;
}
.foot3 {
background-color: #333;
}
.foot3 li {
margin: 0 10px;
}
.t-11-muted {
color: #888;
font-size: 11px;
}
.t-11-muted:hover {
color: pink;
}
/* RESULTS PAGE */
.form2 {
background-color: rgb(212, 87, 74, 0.2);
}
.txt-label {
color: rgb(212, 87, 74);
font-weight: bold;
}
.custom-input {
color: #888;
border-color: #888;
border-radius: 2px;
}
.date-btn {
height: 25px;
font-size: 12px;
line-height: 12px;
padding: 6px;
}
/* DETAILS PAGE */
.specification-list li::before {
content: "โข";
color: rgb(212, 87, 74);
margin-right: 10px;
}
/* MEDIA QUERIES */
@media screen and (max-width: 480px) {
.bg-img {
width: 140px;
height: 140px;
}
.txt-content h5 {
font-size: 18px;
}
.txt-content p {
font-size: 14px;
}
}
@media screen and (max-width: 767px) {
.main-header {
font-size: 16px;
}
.main-input-text {
font-size: 12px;
}
} | assets/style.css | body {
font-family: Arial, Helvetica, sans-serif;
}
.primary-color {
background-color: rgb(212, 87, 74);
}
.primary-color-t {
color: rgb(212, 87, 74);
}
.d-none {
display: none;
}
.navbar-logo {
width: 50%;
height: auto;
}
.navbar-logo2 {
width: 100%;
}
.main-nav i {
color: white;
font-size: 14px;
}
.main-div {
background-image: url("../assets/images/background-beachhouse.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 65vh;
box-shadow: 0 1px 10px #555;
}
.main-content {
padding: 10% 0;
}
.main-header {
text-shadow: 0 1px 10px #555;
}
.form1 {
background-color: rgb(255, 255, 255, 0.7);
box-shadow: 0 1px 20px #888;
border-radius: 5px;
width: 100%;
}
.main-input {
width: 300px;
}
.description-section i {
font-size: 48px;
}
.content-section {
height: 240px;
}
.bg-1 {
background-color: rgb(212, 87, 74);
}
.bg-2 {
background-color: rgb(152, 164, 165);
}
.bg-3 {
background-color: rgb(81, 155, 215);
}
.bg-img {
width: 200px;
height: 200px;
border: 1px solid #000;
border-radius: 150px;
background-color: white;
}
footer {
background-color: #000;
}
.foot-links {
width: 85%;
}
.foot-links ul {
font-size: 12px;
padding: 10px 0;
border-top: 1px solid #555;
border-bottom: 1px solid #555;
}
.foot-links a {
color: white;
font-size: 12px;
}
.mid-link {
border: 1px solid #555;
border-radius: 50%;
}
.mid-link i {
font-size: 25px;
width: 25px;
text-align: center;
}
.foot2 {
width: 70%;
}
.foot2 h6 {
font-size: 14px;
}
.form-control-i {
width: 140px;
border: 1px solid transparent;
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
.t-14 {
font-size: 14px;
}
.foot3 {
background-color: #333;
}
.foot3 li {
margin: 0 10px;
}
.t-11-muted {
color: #888;
font-size: 11px;
}
.t-11-muted:hover {
color: pink;
}
/* RESULTS PAGE */
.form2 {
background-color: rgb(212, 87, 74, 0.2);
}
.txt-label {
color: rgb(212, 87, 74);
font-weight: bold;
}
.custom-input {
color: #888;
border-color: #888;
border-radius: 2px;
}
.date-btn {
height: 25px;
font-size: 12px;
line-height: 12px;
padding: 6px;
}
/* DETAILS PAGE */
.specification-list li::before {
content: "โข";
color: rgb(212, 87, 74);
margin-right: 10px;
}
/* MEDIA QUERIES */
@media screen and (max-width: 480px) {
.bg-img {
width: 140px;
height: 140px;
}
.txt-content h5 {
font-size: 18px;
}
.txt-content p {
font-size: 14px;
}
}
@media screen and (max-width: 767px) {
.main-header {
font-size: 16px;
}
.main-input-text {
font-size: 12px;
}
} | 0.36625 | 0.071138 |
.nav-container {
position: fixed;
width: 30%;
height: 100vh;
margin: 0px;
cursor: auto;
}
.nav-container-title {
width: 30%;
position: fixed;
height:80px;
background-color: rgb(73, 115, 153);
padding: 20px 20px 0 20px;
margin: 0px;
font-size: 1.25rem;
font-weight: bold;
text-transform: uppercase;
}
.rooms-list {
top: 80px;
position: fixed;
width: 30%;
min-height: 85vh;
background-color: rgb(159, 204, 244);
padding: 20px;
cursor: auto;
}
.rooms-list-title {
font-size: 1.0rem;
font-weight: bold;
text-transform: none;
padding-bottom: 5px;
}
.detail {
text-indent: 20px;
font-size: 0.8rem;
font-weight: normal;
cursor: pointer;
}
.temp-button {
cursor: pointer;
font-size: 0.8rem;
font-weight: normal;
text-align: center;
background-color: rgb(242, 242, 242);
padding: 5px;
margin-left: 70%;
width: 25%;
box-shadow: 2px 2px grey;
z-index:100;
}
.modal-header {
background-color: rgb(159, 204, 244);
padding: 10px;
font-size: 1rem;
text-transform: none;
font-weight: bold;
}
.modal-body .label {
font-size: 1rem;
text-transform: none;
font-weight: bold;
}
.form-control {
font-size: 0.8rem;
text-transform: none;
font-weight: normal;
}
.button-primary {
font-size: 0.8rem;
text-transform: none;
font-weight: normal;
}
.room-chat-container {
position: absolute;
left: 30%;
width: 70%;
height: 87vh;
background-color: white;
padding: 20px 20px 0 20px;
margin: 0px;
cursor: auto;
overflow-y: scroll;
}
.message-single-container {
background-color: lightgrey;
border-top: 1px solid black;
padding: 0 5px 0 5px;
}
.message-sent-at {
font-style: italic;
text-align: right;
}
.message-username {
font-weight: bold;
text-align: left;
}
.message-content {
font-weight: normal;
text-align:left;
}
.error-message {
color: red;
}
.message-compose {
position: fixed;
bottom: 0px;
padding-bottom: 25px;
}
.text-input-window {
width: 60vw;
height: 3rem;
}
.send-button {
cursor: pointer;
font-size: 0.8rem;
font-weight: bold;
text-align: center;
background-color: rgb(242, 242, 242);
padding: 5px;
box-shadow: 2px 2px grey;
z-index:100;
} | app/styles/home.css | .nav-container {
position: fixed;
width: 30%;
height: 100vh;
margin: 0px;
cursor: auto;
}
.nav-container-title {
width: 30%;
position: fixed;
height:80px;
background-color: rgb(73, 115, 153);
padding: 20px 20px 0 20px;
margin: 0px;
font-size: 1.25rem;
font-weight: bold;
text-transform: uppercase;
}
.rooms-list {
top: 80px;
position: fixed;
width: 30%;
min-height: 85vh;
background-color: rgb(159, 204, 244);
padding: 20px;
cursor: auto;
}
.rooms-list-title {
font-size: 1.0rem;
font-weight: bold;
text-transform: none;
padding-bottom: 5px;
}
.detail {
text-indent: 20px;
font-size: 0.8rem;
font-weight: normal;
cursor: pointer;
}
.temp-button {
cursor: pointer;
font-size: 0.8rem;
font-weight: normal;
text-align: center;
background-color: rgb(242, 242, 242);
padding: 5px;
margin-left: 70%;
width: 25%;
box-shadow: 2px 2px grey;
z-index:100;
}
.modal-header {
background-color: rgb(159, 204, 244);
padding: 10px;
font-size: 1rem;
text-transform: none;
font-weight: bold;
}
.modal-body .label {
font-size: 1rem;
text-transform: none;
font-weight: bold;
}
.form-control {
font-size: 0.8rem;
text-transform: none;
font-weight: normal;
}
.button-primary {
font-size: 0.8rem;
text-transform: none;
font-weight: normal;
}
.room-chat-container {
position: absolute;
left: 30%;
width: 70%;
height: 87vh;
background-color: white;
padding: 20px 20px 0 20px;
margin: 0px;
cursor: auto;
overflow-y: scroll;
}
.message-single-container {
background-color: lightgrey;
border-top: 1px solid black;
padding: 0 5px 0 5px;
}
.message-sent-at {
font-style: italic;
text-align: right;
}
.message-username {
font-weight: bold;
text-align: left;
}
.message-content {
font-weight: normal;
text-align:left;
}
.error-message {
color: red;
}
.message-compose {
position: fixed;
bottom: 0px;
padding-bottom: 25px;
}
.text-input-window {
width: 60vw;
height: 3rem;
}
.send-button {
cursor: pointer;
font-size: 0.8rem;
font-weight: bold;
text-align: center;
background-color: rgb(242, 242, 242);
padding: 5px;
box-shadow: 2px 2px grey;
z-index:100;
} | 0.569853 | 0.090574 |
a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
cursor: pointer;
}
.o-product-overview select,
.o-product-overview button {
background-color: rgb(255, 255, 255);
box-shadow: none;
border-radius: 0px;
border: 0.1rem solid #5A5A5A;
padding: 1rem;
margin: 1rem;
margin-left: 0;
font-size: 1rem;
line-height: 1rem;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.o-ratings-link {
font-size: 0.75em;
margin-left: 0.5rem;
text-decoration: none;
color: inherit;
}
.o-ratings-link:hover {
text-decoration: underline;
}
/* LAYOUT STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
.o-product-overview {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.o-images {
/* โ The width when the left and right are on the same row */
flex-basis: 50rem;
flex-grow: 1;
/* max-width: 50rem; */
max-width: 100%;
position: relative;
}
.o-product-controls {
/* โ Grow from nothing */
flex-basis: 0;
flex-grow: 999;
/* โ Wrap when the right side is smaller than this */
min-width: 20rem;
margin-top: 1rem;
margin-left: 0.8rem;
}
.o-cart-lists {
width: 100%;
display: flex;
}
.o-size-list {
flex-grow: 1.6;
}
.o-qty-list {
flex-grow: 1;
}
.o-cart-buttons {
width: 100%;
display: flex;
}
.o-add-to-bag {
flex-grow: 10;
text-align: left;
}
.o-add-to-outfit {
flex-grow: 1;
}
.o-add-to-bag-icon {
float: right;
}
.o-product-description {
/* โ Grow from... */
flex-basis: 100%;
max-width: 1000px;
margin: auto;
margin-bottom: 3rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.o-product-description-text {
max-width: 45rem;
min-width: 20rem;
}
.o-images-thumbnails {
position: absolute;
top: 1rem;
left: 1rem;
}
/* MODULE STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
/* IMAGE GALLERY */
.o-images-main {
width: 100%;
max-height: 39rem;
min-height: 39rem;
object-fit: cover;
}
.o-images-main:hover {
cursor: zoom-in;
}
.o-images-main.o-images-noimage {
background-image: url(https://vcunited.club/wp-content/uploads/2020/01/No-image-available-2.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
border: 1px #282626 solid;
opacity: 0.5;
cursor: default;
}
.o-main-image-arrows {
position: relative;
top: -55%;
}
.main-image-prev,
.main-image-next {
position: absolute;
color: rgb(219, 219, 219);
/* color: rgb(128, 128, 128); */
font-size: 42px;
}
.main-image-prev {
left: 12%;
}
.main-image-next {
left: 93%;
}
.o-images-thumbnails > * {
margin: 0;
padding: 0;
}
.o-images-thumbnails ul {
list-style-type: none;
}
.o-images-thumbnails ul li {
width: 4.2rem;
height: 4.2rem;
margin: 0.6rem 0;
}
.o-images-thumbnails img {
width: 100%;
height: 100%;
object-fit: cover;
border: solid black 0.05rem;
}
.o-images nav img.o-images-selected {
border-color: white;
}
.o-images-thumbnails img:hover {
border: solid grey 0.05rem;
}
.back-arrow-container,
.forward-arrow-container {
width: 100%;
height: 1rem;
text-align: center;
}
.back-arrow-container {
margin-bottom: 0.25rem;
}
.forward-arrow-container {
margin-top: -0.25re m;
}
.back-arrow,
.forward-arrow {
display:inline-block;
border-left: 0.75rem solid transparent;
border-right: 0.75rem solid transparent;
}
.back-arrow {
border-bottom: 0.75rem solid #DBDBDB;
}
.forward-arrow {
border-top: 0.75rem solid #DBDBDB;
}
/* PRODUCT CONTROLS */
.o-product-controls.stars {
margin-bottom: 1rem;
}
.o-product-category {
font-weight: 100;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.o-product-name {
font-size: 2rem;
font-weight: 700;
margin-top: 0rem;
margin-bottom: 0rem;
}
.o-product-style-name {
text-transform: uppercase;
}
.o-product-style-name span {
position: relative;
top: -0.048rem;
}
.o-product-style-price .strikethrough {
text-decoration: line-through;
}
.o-product-style-price .sale {
margin-left: 0.5rem;
color: red;
}
/* PRODUCT CONTROLS: STYLE SELECTOR */
.o-style-selector {
display: flex;
flex-wrap: wrap;
width: 99%;
row-gap: 1.5rem;
column-gap: 2rem;
margin: 2rem 0rem;
}
.circle-container {
width: 4rem;
max-width: 4rem;
flex-grow: 1;
position: relative;
}
.circle {
background: rgba(15, 28, 63, 0.125);
border-radius: 50%;
display: block;
height: 0;
overflow: hidden;
padding-top: 100%;
position: relative;
width: 100%;
-webkit-box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
-moz-box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
/* [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */
}
.circle:hover {
-webkit-box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
-moz-box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
}
.circle::after {
border-radius: inherit;
content: '';
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.circle-fill {
height: auto;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
@supports (object-fit: cover) {
.circle-fill {
height: 100%;
object-fit: cover;
}
}
.circle-container .icon-container {
margin: 0;
padding: 0;
height: 1.1rem;
width: 1.1rem;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
z-index: 1;
position: absolute;
left: 3rem;
}
.circle-container .icon-container .material-icons {
margin: 0;
padding: 0;
height: 1rem;
width: 1rem;
z-index: 2;
position: relative;
top: -0.19rem;
left: -0.17rem;
}
/* PRODUCT DESCRIPTION */
.o-product-description-slogan {
font-size: 1.1rem;
font-weight: bold;
}
.o-product-description-features {
border-left: solid black 0.1rem;
}
.o-product-description-bullets li {
list-style: none;
line-height: 2rem;
margin-left: 0;
}
.o-product-description-bullets li::before {
content: "\E876";
font-family: 'Material Icons';
position: relative;
left: -0.7rem;
}
/* STATE-RELATED STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
/* OUT OF STOCK */
/* EXPANDED VIEW STYLES */
.o-images.o-expanded {
max-width: 100%;
}
.o-expanded:hover {
cursor: crosshair;
}
.o-main-image-fullscreen-exit {
/* color: rgb(219, 219, 219); */
/* color: rgb(128, 128, 128); */
color: white;
font-size: 42px;
position: absolute;
top: 2%;
left: 96%;
}
.o-images.o-expanded nav ul li {
width: 1.5rem;
height: 1.5rem;
text-align: center;
}
.o-images-thumbnail-icon {
fill-opacity: 0.5;
fill: white;
stroke: black;
stroke-width: 0.35rem;
}
.o-images-thumbnail-icon.selected {
fill-opacity: 0.9;
fill: black;
}
/* ZOOM VIEW STYLES */
.o-images-main.o-zoomed {
--bgImgUrl: ;
--x: ;
--y: ;
max-width: 100%;
background-image: var(--bgImgUrl);
background-repeat: no-repeat;
background-size: 250%;
background-position: var(--x) var(--y);
}
.o-images-main.o-zoomed:hover {
cursor: url('cursor-minus.png'), auto;
} | client/overview/overview.css | a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
cursor: pointer;
}
.o-product-overview select,
.o-product-overview button {
background-color: rgb(255, 255, 255);
box-shadow: none;
border-radius: 0px;
border: 0.1rem solid #5A5A5A;
padding: 1rem;
margin: 1rem;
margin-left: 0;
font-size: 1rem;
line-height: 1rem;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.o-ratings-link {
font-size: 0.75em;
margin-left: 0.5rem;
text-decoration: none;
color: inherit;
}
.o-ratings-link:hover {
text-decoration: underline;
}
/* LAYOUT STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
.o-product-overview {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.o-images {
/* โ The width when the left and right are on the same row */
flex-basis: 50rem;
flex-grow: 1;
/* max-width: 50rem; */
max-width: 100%;
position: relative;
}
.o-product-controls {
/* โ Grow from nothing */
flex-basis: 0;
flex-grow: 999;
/* โ Wrap when the right side is smaller than this */
min-width: 20rem;
margin-top: 1rem;
margin-left: 0.8rem;
}
.o-cart-lists {
width: 100%;
display: flex;
}
.o-size-list {
flex-grow: 1.6;
}
.o-qty-list {
flex-grow: 1;
}
.o-cart-buttons {
width: 100%;
display: flex;
}
.o-add-to-bag {
flex-grow: 10;
text-align: left;
}
.o-add-to-outfit {
flex-grow: 1;
}
.o-add-to-bag-icon {
float: right;
}
.o-product-description {
/* โ Grow from... */
flex-basis: 100%;
max-width: 1000px;
margin: auto;
margin-bottom: 3rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.o-product-description-text {
max-width: 45rem;
min-width: 20rem;
}
.o-images-thumbnails {
position: absolute;
top: 1rem;
left: 1rem;
}
/* MODULE STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
/* IMAGE GALLERY */
.o-images-main {
width: 100%;
max-height: 39rem;
min-height: 39rem;
object-fit: cover;
}
.o-images-main:hover {
cursor: zoom-in;
}
.o-images-main.o-images-noimage {
background-image: url(https://vcunited.club/wp-content/uploads/2020/01/No-image-available-2.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
border: 1px #282626 solid;
opacity: 0.5;
cursor: default;
}
.o-main-image-arrows {
position: relative;
top: -55%;
}
.main-image-prev,
.main-image-next {
position: absolute;
color: rgb(219, 219, 219);
/* color: rgb(128, 128, 128); */
font-size: 42px;
}
.main-image-prev {
left: 12%;
}
.main-image-next {
left: 93%;
}
.o-images-thumbnails > * {
margin: 0;
padding: 0;
}
.o-images-thumbnails ul {
list-style-type: none;
}
.o-images-thumbnails ul li {
width: 4.2rem;
height: 4.2rem;
margin: 0.6rem 0;
}
.o-images-thumbnails img {
width: 100%;
height: 100%;
object-fit: cover;
border: solid black 0.05rem;
}
.o-images nav img.o-images-selected {
border-color: white;
}
.o-images-thumbnails img:hover {
border: solid grey 0.05rem;
}
.back-arrow-container,
.forward-arrow-container {
width: 100%;
height: 1rem;
text-align: center;
}
.back-arrow-container {
margin-bottom: 0.25rem;
}
.forward-arrow-container {
margin-top: -0.25re m;
}
.back-arrow,
.forward-arrow {
display:inline-block;
border-left: 0.75rem solid transparent;
border-right: 0.75rem solid transparent;
}
.back-arrow {
border-bottom: 0.75rem solid #DBDBDB;
}
.forward-arrow {
border-top: 0.75rem solid #DBDBDB;
}
/* PRODUCT CONTROLS */
.o-product-controls.stars {
margin-bottom: 1rem;
}
.o-product-category {
font-weight: 100;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.o-product-name {
font-size: 2rem;
font-weight: 700;
margin-top: 0rem;
margin-bottom: 0rem;
}
.o-product-style-name {
text-transform: uppercase;
}
.o-product-style-name span {
position: relative;
top: -0.048rem;
}
.o-product-style-price .strikethrough {
text-decoration: line-through;
}
.o-product-style-price .sale {
margin-left: 0.5rem;
color: red;
}
/* PRODUCT CONTROLS: STYLE SELECTOR */
.o-style-selector {
display: flex;
flex-wrap: wrap;
width: 99%;
row-gap: 1.5rem;
column-gap: 2rem;
margin: 2rem 0rem;
}
.circle-container {
width: 4rem;
max-width: 4rem;
flex-grow: 1;
position: relative;
}
.circle {
background: rgba(15, 28, 63, 0.125);
border-radius: 50%;
display: block;
height: 0;
overflow: hidden;
padding-top: 100%;
position: relative;
width: 100%;
-webkit-box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
-moz-box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
box-shadow: 0.05rem 0.05rem 0.1rem 0.05rem #3D3D3D;
/* [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */
}
.circle:hover {
-webkit-box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
-moz-box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
box-shadow: 0.1rem 0.1rem 0.25rem 0.1rem #141414;
}
.circle::after {
border-radius: inherit;
content: '';
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.circle-fill {
height: auto;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
@supports (object-fit: cover) {
.circle-fill {
height: 100%;
object-fit: cover;
}
}
.circle-container .icon-container {
margin: 0;
padding: 0;
height: 1.1rem;
width: 1.1rem;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
z-index: 1;
position: absolute;
left: 3rem;
}
.circle-container .icon-container .material-icons {
margin: 0;
padding: 0;
height: 1rem;
width: 1rem;
z-index: 2;
position: relative;
top: -0.19rem;
left: -0.17rem;
}
/* PRODUCT DESCRIPTION */
.o-product-description-slogan {
font-size: 1.1rem;
font-weight: bold;
}
.o-product-description-features {
border-left: solid black 0.1rem;
}
.o-product-description-bullets li {
list-style: none;
line-height: 2rem;
margin-left: 0;
}
.o-product-description-bullets li::before {
content: "\E876";
font-family: 'Material Icons';
position: relative;
left: -0.7rem;
}
/* STATE-RELATED STYLES
- - - - - - - - - - - - - - - - - - - - - - - - */
/* OUT OF STOCK */
/* EXPANDED VIEW STYLES */
.o-images.o-expanded {
max-width: 100%;
}
.o-expanded:hover {
cursor: crosshair;
}
.o-main-image-fullscreen-exit {
/* color: rgb(219, 219, 219); */
/* color: rgb(128, 128, 128); */
color: white;
font-size: 42px;
position: absolute;
top: 2%;
left: 96%;
}
.o-images.o-expanded nav ul li {
width: 1.5rem;
height: 1.5rem;
text-align: center;
}
.o-images-thumbnail-icon {
fill-opacity: 0.5;
fill: white;
stroke: black;
stroke-width: 0.35rem;
}
.o-images-thumbnail-icon.selected {
fill-opacity: 0.9;
fill: black;
}
/* ZOOM VIEW STYLES */
.o-images-main.o-zoomed {
--bgImgUrl: ;
--x: ;
--y: ;
max-width: 100%;
background-image: var(--bgImgUrl);
background-repeat: no-repeat;
background-size: 250%;
background-position: var(--x) var(--y);
}
.o-images-main.o-zoomed:hover {
cursor: url('cursor-minus.png'), auto;
} | 0.326916 | 0.120284 |
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900');
/* @import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap'); */
/* -- COMMON ------------------ */
:root{
--header-bg-color: rgb(244, 243, 243);
--header-height: 50px;
--biggest: max(100vh, 100vw);
}
:root, html{
font-size:10px;
}
html{
scroll-behavior: smooth;
}
html[lang="ja"] [lang="en"]:not(.js-switch-lang),
html[lang="en"] [lang="ja"]:not(.js-switch-lang),
html[lang="ja"] .js-switch-lang[lang="ja"],
html[lang="en"] .js-switch-lang[lang="en"]{
display:none !important;
}
body{
font-size:1.6rem;
margin:0;
padding:0;
font-family: 'Noto Sans JP', sans-serif;
overflow-x:hidden;
background:grey;
color:black;
}
@media (prefers-color-scheme: dark) {
body {
background: black;
color:white;
}
}
/* -- resets -- */
h1, h2, h3, h4, h5, h6, p{
margin:0;
}
rt{
text-align:center;
font-weight:400;
}
img{
max-width:100%;
height:auto;
display:block;
}
button{
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
}
/* -- HEADER ------------------ */
/* -- global-aside -- */
.global-aside{
position: absolute;
right: 0;
z-index: 2;
height: 100%;
top: 0;
display: flex;
justify-content: flex-end;
align-items: flex-start;
box-sizing: border-box;
padding: 10px 0 20px 0;
width: fit-content;
}
.global-aside a {
font-size: 5rem;
font-weight: 900;
color: rgba(0, 0, 0, 0.1);
writing-mode: tb-rl;
text-orientation: unset;
position: sticky;
right: 20px;
top: 10px;
width: 4.5rem;
display: flex;
align-items: center;
justify-content: flex-start;
text-decoration: none;
transition: color 0.3s;
}
.global-aside a:hover {
color: rgba(0, 0, 0, 0.4);
}
/* -- global-header -- */
.global-header{
position: absolute;
left: 0;
z-index: 2;
height: 100%;
top: 0;
display: flex;
justify-content: flex-start;
align-items: flex-start;
box-sizing: border-box;
padding: 10px 0 20px 10px;
}
/* -- global-nav -- */
.global-nav{
display: block;
position: sticky;
left: 0;
top: 0;
}
.global-nav ul{
position:relative;
z-index:2;
display: flex;
flex-direction: column;
list-style-type: none;
margin: 0;
padding: 0;
gap: 0 10px;
align-items:flex-start;
justify-content:flex-start;
}
.global-nav ul li {
display: flex;
position: relative;
justify-content: flex-start;
transition: transform 0.1s, opacity 0.1s;
transform-origin: left center;
font-weight: 100;
opacity: 0.6;
width: 100%;
}
.global-nav:hover ul li{
opacity: 0.2;
}
.global-nav ul li a,
.global-nav ul li button,
.global-nav ul li span{
text-decoration: none;
color: #fff;
font-size: 2.8rem;
font-weight: 100;
display: block;
white-space: pre;
margin: 2px 0;
text-transform: capitalize;
}
html[lang="ja"] .global-nav ul li a,
html[lang="ja"] .global-nav ul li span{
font-weight: 400;
letter-spacing:-3px;
}
html[lang="en"] .global-nav ul li button{
font-weight: 400;
}
.global-nav ul li:focus-within,
.global-nav ul li:hover{
transform:scale(2);
text-shadow:0 0 3px;
opacity:1;
z-index:2;
}
.global-nav ul li a:focus{
outline:none;
}
.global-nav ul li.is-active{
opacity:1;
}
.global-nav:hover ul li.is-active{
opacity: 0.3;
}
.global-nav:hover ul li.is-active:hover{
opacity: 1;
}
.global-nav ul li:hover ul{
display:flex;
}
.global-nav ul li ul{
display: none;
position: absolute;
top: 0;
left: 100%;
z-index:-1;
padding-left:15px;
}
.global-nav:hover ul li ul li{
opacity:1;
}
.global-nav ul li:hover ul li:hover{
transform:scale(2);
}
.global-nav ul li ul li a{
font-size: 2.2rem;
font-size: 1.2rem;
width: fit-content;
color:rgba(255, 255, 255, 0.5);
}
.global-nav ul li ul li:hover a{
color:#fff;
}
/* -- TOP HERO ------------------ */
.hero{
width:100%;
height:100vh;
background-image:url(/assets/img/hero.webp);
background-image:url(/assets/img/fullwidth.webp);
background-position:center center;
background-repeat:no-repeat;
background-size:cover;
background-attachment: fixed;
position:relative;
}
.hero h1{
font-weight: 900;
color: #0875cd;
font-size: 10.2vw;
line-height: 1;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
width: 100%;
height: 100vh;
box-sizing: border-box;
padding:2vw;
text-shadow: 0 0 3px;
}
.hero h1 span{
mix-blend-mode: color-burn;
color:#009688;
opacity:0;
-webkit-animation: fadeIn 1.2s ease-out 0.4s 1 normal forwards running;
animation: fadeIn 1.2s ease-out 0.4s 1 normal forwards running;
}
.hero h1 span:first-of-type{
color: #2196f3;
mix-blend-mode: multiply;
font-size: 5vw;
}
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* -- CONTENTS ------------------ */
.contents{
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: flex-end;
position:relative;
}
.top-bloc{
text-align: center;
min-height:100vh;
box-sizing: border-box;
width: 100%;
display: grid;
grid-template-columns: 1fr;
/* grid-template-rows: 25rem auto; */
}
.hero + .contents .top-bloc{
grid-template-rows: 25rem auto;
}
.top-bloc .desc{
padding-bottom:10rem;
display:flex;
flex-direction:column;
align-items: center;
justify-content: space-between;
}
.top-bloc > h2,
.top-bloc .desc > p{
text-shadow: 0 0 2px;
color: #f9d600;
}
.top-bloc > h2{
font-weight: 400;
text-transform: lowercase;
font-size: 7rem;
line-height: 1.1;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
html[lang="ja"] .top-bloc > h2{
font-weight: 700;
letter-spacing:-3px;
}
.top-bloc > h2 rt{
font-weight:400;
font-size:30%;
letter-spacing:-0.2rem;
}
.top-bloc .desc > p{
font-weight: 900;
margin-bottom: 0;
word-break: keep-all;
font-size: 3.2rem;
text-align: center;
line-height: 2.3;
letter-spacing: 0.05rem;
}
html[lang="ja"] .top-bloc .desc > p{
font-weight: 700;
}
.top-bloc .desc > p strong{
color: #f9d600;
font-weight: inherit;
display: inline-block;
line-height:1;
font-size: 125%;
}
.top-bloc .desc > p strong small{
font-weight: 400;
font-size: 80%;
}
/* top about section */
#about{
background-color: #00a850;
}
#about h2{
color: #f9d600;
}
#about p{
color: #026236;
}
#about strong{
color: #f9d600;
font-weight: inherit;
display: inline-block;
line-height:1;
font-size: 125%;
}
#codes{
background:#2e6d99;
}
#articles{
background:teal;
background:tomato;
background:#e45c43;
}
.global-footer{
height:80px;
background:#160c0c;
width:100%;
display:flex;
align-items:center;
justify-content:center;
}
.global-footer p{
color:#fff;
}
ul{
list-style:none;
margin:0;
padding:0;
}
ul li{
margin-bottom:15px;
}
ul li a{
color:black;
}
hr{
width:100%;
} | static/assets/styles.css | @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900');
/* @import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap'); */
/* -- COMMON ------------------ */
:root{
--header-bg-color: rgb(244, 243, 243);
--header-height: 50px;
--biggest: max(100vh, 100vw);
}
:root, html{
font-size:10px;
}
html{
scroll-behavior: smooth;
}
html[lang="ja"] [lang="en"]:not(.js-switch-lang),
html[lang="en"] [lang="ja"]:not(.js-switch-lang),
html[lang="ja"] .js-switch-lang[lang="ja"],
html[lang="en"] .js-switch-lang[lang="en"]{
display:none !important;
}
body{
font-size:1.6rem;
margin:0;
padding:0;
font-family: 'Noto Sans JP', sans-serif;
overflow-x:hidden;
background:grey;
color:black;
}
@media (prefers-color-scheme: dark) {
body {
background: black;
color:white;
}
}
/* -- resets -- */
h1, h2, h3, h4, h5, h6, p{
margin:0;
}
rt{
text-align:center;
font-weight:400;
}
img{
max-width:100%;
height:auto;
display:block;
}
button{
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
}
/* -- HEADER ------------------ */
/* -- global-aside -- */
.global-aside{
position: absolute;
right: 0;
z-index: 2;
height: 100%;
top: 0;
display: flex;
justify-content: flex-end;
align-items: flex-start;
box-sizing: border-box;
padding: 10px 0 20px 0;
width: fit-content;
}
.global-aside a {
font-size: 5rem;
font-weight: 900;
color: rgba(0, 0, 0, 0.1);
writing-mode: tb-rl;
text-orientation: unset;
position: sticky;
right: 20px;
top: 10px;
width: 4.5rem;
display: flex;
align-items: center;
justify-content: flex-start;
text-decoration: none;
transition: color 0.3s;
}
.global-aside a:hover {
color: rgba(0, 0, 0, 0.4);
}
/* -- global-header -- */
.global-header{
position: absolute;
left: 0;
z-index: 2;
height: 100%;
top: 0;
display: flex;
justify-content: flex-start;
align-items: flex-start;
box-sizing: border-box;
padding: 10px 0 20px 10px;
}
/* -- global-nav -- */
.global-nav{
display: block;
position: sticky;
left: 0;
top: 0;
}
.global-nav ul{
position:relative;
z-index:2;
display: flex;
flex-direction: column;
list-style-type: none;
margin: 0;
padding: 0;
gap: 0 10px;
align-items:flex-start;
justify-content:flex-start;
}
.global-nav ul li {
display: flex;
position: relative;
justify-content: flex-start;
transition: transform 0.1s, opacity 0.1s;
transform-origin: left center;
font-weight: 100;
opacity: 0.6;
width: 100%;
}
.global-nav:hover ul li{
opacity: 0.2;
}
.global-nav ul li a,
.global-nav ul li button,
.global-nav ul li span{
text-decoration: none;
color: #fff;
font-size: 2.8rem;
font-weight: 100;
display: block;
white-space: pre;
margin: 2px 0;
text-transform: capitalize;
}
html[lang="ja"] .global-nav ul li a,
html[lang="ja"] .global-nav ul li span{
font-weight: 400;
letter-spacing:-3px;
}
html[lang="en"] .global-nav ul li button{
font-weight: 400;
}
.global-nav ul li:focus-within,
.global-nav ul li:hover{
transform:scale(2);
text-shadow:0 0 3px;
opacity:1;
z-index:2;
}
.global-nav ul li a:focus{
outline:none;
}
.global-nav ul li.is-active{
opacity:1;
}
.global-nav:hover ul li.is-active{
opacity: 0.3;
}
.global-nav:hover ul li.is-active:hover{
opacity: 1;
}
.global-nav ul li:hover ul{
display:flex;
}
.global-nav ul li ul{
display: none;
position: absolute;
top: 0;
left: 100%;
z-index:-1;
padding-left:15px;
}
.global-nav:hover ul li ul li{
opacity:1;
}
.global-nav ul li:hover ul li:hover{
transform:scale(2);
}
.global-nav ul li ul li a{
font-size: 2.2rem;
font-size: 1.2rem;
width: fit-content;
color:rgba(255, 255, 255, 0.5);
}
.global-nav ul li ul li:hover a{
color:#fff;
}
/* -- TOP HERO ------------------ */
.hero{
width:100%;
height:100vh;
background-image:url(/assets/img/hero.webp);
background-image:url(/assets/img/fullwidth.webp);
background-position:center center;
background-repeat:no-repeat;
background-size:cover;
background-attachment: fixed;
position:relative;
}
.hero h1{
font-weight: 900;
color: #0875cd;
font-size: 10.2vw;
line-height: 1;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
width: 100%;
height: 100vh;
box-sizing: border-box;
padding:2vw;
text-shadow: 0 0 3px;
}
.hero h1 span{
mix-blend-mode: color-burn;
color:#009688;
opacity:0;
-webkit-animation: fadeIn 1.2s ease-out 0.4s 1 normal forwards running;
animation: fadeIn 1.2s ease-out 0.4s 1 normal forwards running;
}
.hero h1 span:first-of-type{
color: #2196f3;
mix-blend-mode: multiply;
font-size: 5vw;
}
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* -- CONTENTS ------------------ */
.contents{
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: flex-end;
position:relative;
}
.top-bloc{
text-align: center;
min-height:100vh;
box-sizing: border-box;
width: 100%;
display: grid;
grid-template-columns: 1fr;
/* grid-template-rows: 25rem auto; */
}
.hero + .contents .top-bloc{
grid-template-rows: 25rem auto;
}
.top-bloc .desc{
padding-bottom:10rem;
display:flex;
flex-direction:column;
align-items: center;
justify-content: space-between;
}
.top-bloc > h2,
.top-bloc .desc > p{
text-shadow: 0 0 2px;
color: #f9d600;
}
.top-bloc > h2{
font-weight: 400;
text-transform: lowercase;
font-size: 7rem;
line-height: 1.1;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
html[lang="ja"] .top-bloc > h2{
font-weight: 700;
letter-spacing:-3px;
}
.top-bloc > h2 rt{
font-weight:400;
font-size:30%;
letter-spacing:-0.2rem;
}
.top-bloc .desc > p{
font-weight: 900;
margin-bottom: 0;
word-break: keep-all;
font-size: 3.2rem;
text-align: center;
line-height: 2.3;
letter-spacing: 0.05rem;
}
html[lang="ja"] .top-bloc .desc > p{
font-weight: 700;
}
.top-bloc .desc > p strong{
color: #f9d600;
font-weight: inherit;
display: inline-block;
line-height:1;
font-size: 125%;
}
.top-bloc .desc > p strong small{
font-weight: 400;
font-size: 80%;
}
/* top about section */
#about{
background-color: #00a850;
}
#about h2{
color: #f9d600;
}
#about p{
color: #026236;
}
#about strong{
color: #f9d600;
font-weight: inherit;
display: inline-block;
line-height:1;
font-size: 125%;
}
#codes{
background:#2e6d99;
}
#articles{
background:teal;
background:tomato;
background:#e45c43;
}
.global-footer{
height:80px;
background:#160c0c;
width:100%;
display:flex;
align-items:center;
justify-content:center;
}
.global-footer p{
color:#fff;
}
ul{
list-style:none;
margin:0;
padding:0;
}
ul li{
margin-bottom:15px;
}
ul li a{
color:black;
}
hr{
width:100%;
} | 0.429429 | 0.053477 |
div.modoswitch{
padding: 1%;
border: 1px solid white;
font-size: 24px;
border-radius:50%;
margin-top: 2%;
margin-right: 2%;
margin-left: 2%;
margin-bottom: 0%;
}
div.modoswitcher{
padding: 1%;
border: 1px solid white;
font-size: 24px;
border-radius:50%;
margin-top: 2%;
margin-right: 2%;
margin-left: 2%;
margin-bottom: 0%;
}
#modoswitch{
float: right;
}
body.dark a.darklight:hover{
cursor: pointer;
color: white;
}
body.dark a.darklight:hover > * {
font-size: 120%;
color: white;
}
body.light a.darklight:hover{
cursor: pointer;
color: black;
}
body.light a.darklight:hover > * {
font-size: 120%;
color: black;
}
@keyframes sunlight {
0% {
box-shadow: 0px 0px 5px 5px white;
/*background-color:red;*/
right:0px;
top:0px;
}
50% {
/*background-color:yellow;*/
box-shadow: 0px 0px 5px 5px rgba(255, 255, 0, 0.2);
right:10%;
top:0px;
}
100% {
box-shadow: 0px 0px 5px 5px yellow;
/*background-color:orange;*/
right:0px;
top:0px;
}
}
@keyframes moonlight {
0% {
box-shadow: 0px 0px 5px 5px yellow;
/*background-color:red;*/
right:0px;
top:0px;
}
50% {
/*background-color:yellow;*/
box-shadow: 0px 0px 5px 5px rgba(255, 255, 0, 0.2);
right:10%;
top:0px;
}
100% {
box-shadow: 0px 0px 5px 5px white;
/*background-color:orange;*/
right:0px;
top:0px;
}
}
div.sun{
float: right;
box-shadow: 0px 0px 5px 5px yellow;
position: relative;
animation-name: sunlight;
animation-duration: 2.5s;
animation-delay: 0s;
}
div.moon{
float: right;
box-shadow: 0px 0px 5px 5px white;
position: relative;
animation-name: moonlight;
animation-duration: 2.5s;
animation-delay: 0s;
}
body.dark a:hover{
text-decoration: underline;
font-weight: bold;
font-size: 110%;
}
body.dark a{
text-decoration: none;
font-weight: bold;
font-size: 110%;
color: white;
}
body.light a:hover{
text-decoration: underline;
font-weight: bold;
font-size: 110%;
}
body.light a{
text-decoration: none;
font-weight: bold;
font-size: 110%;
color: black;
}
*{
margin:0;
padding:0;
font-family: "ROBOTO", sans-serif;
text-transform: uppercase;
}
h1{
font-family: "Josefin Sans", sans-serif;
}
body.dark{
background: var(--color-fondo-d);
color: white;
}
body.light{
background: var(--color-fondo-l);
color: black;
}
nav{
margin-top: 200px;margin-bottom: -200px;height: auto;width: 50%;background-color: #1E1F26;border-radius: 20px;text-align: center;color: white;
}
nav > ul > li {
display:inline-block;
margin: 5px;
border: 1px white solid;
padding: 5px;
}
@keyframes AnimationHeader {
0% {
border-top-left-radius: 3px;
border-top-right-radius: 30px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 30px;
transform: translateY(-100%);
}
100% {
transform: translateY(0);
border-top-left-radius: 3px;
border-top-right-radius: 0px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 0px;
}
}
header {
/*border-radius: 30px;*/
/*border: 5px yellow solid;*/
animation: 1.8s ease-out 0s 1 AnimationHeader;
margin-bottom: 1%;
/*background: #333;*/
}
header > ul {
width: 100%;
/*background-color: black;*/
}
header > ul > *{
margin: auto auto;
padding: 5% 5%;
}
header > ul > img{
position: absolute;
margin-top: -2%;
margin-left: -18%;
height: 10%;
width: 12%;
}
img#logo{
}
header > ul{
margin: 0;
vertical-align: middle;
}
body.light header > * ,
body.light header > ul > li ,
body.light header > ul > * > ul >li,
body.light header > ul > * > ul > div >li
{
text-align:center;
display:inline-block;
color: black;
}
body.dark header > * ,
body.dark header > ul > li ,
body.dark header > ul > * > ul >li,
body.dark header > ul > * > ul > div >li
{
text-align:center;
display:inline-block;
color: white;
}
div.producto > h3 {
font-size: 140%;
overflow: hidden;
white-space: nowrap;
white-space: pre-line;
width: 100%;
}
article{
position: unset;
background-color:;
padding:3%;
}
img.producte{
width:100%;
height:100px;
object-fit: cover;
border-top-left-radius: 10%;
border-top-right-radius: 10%;
border-bottom-right-radius: 0%;
border-bottom-left-radius: 0%;
border: 6px solid white;
/*margin-left: -6px; /*SE USA SIN BOSOTRAP*/
margin-top: -5px;
}
footer{
position: relative;
color: white;
margin:0;
padding-top:5%;
padding-bottom:2%;
padding: auto;
margin-top: 20%;
}
footer > ul >li{font-style:italic;}
footer > ul > * {margin-left:50px;}
li{list-style:none;}
div.producto{
height:200px;
width:210px;
border:8px solid white;
border-radius: 10%;
background: rgb(63,94,251);
}
div.producto > p,span,h3 {
margin: 5px;
}
section {
height: 95%;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
margin: 10%;
border: 0px blue solid;
background-color: #ff;
}
article > h1 {
font-size: 45px;
text-align: center;
font-weight: bold;
text-decoration: underline;
}
.menu >li>img:hover{
cursor: pointer;
zoom: 1.02;
}
html body div.container div#change.row div.col-md-3.col-sm-6.asd.aqui div.product-grid {
cursor: pointer;
}
@charset "utf-8";
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(30, 31, 38,0.9);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
#loginBody{
width: 40%;
padding: 2%;
border-radius: 15px;
box-shadow: 0 0 5px #CCC;
background: var(--color-producto);
position: relative;
transition: all 5s ease-in-out;
margin: 20% auto;
}
#loginBody > div > form > input{
border: 3px darkorange solid;
border-radius: 10px;
background-color: white;
color: black;
/* padding-left: 15px; */
padding: 5px;
margin: 5px;
width: 70%;
font-weight: bold;
}
#cerrar{
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #F00;
}
@keyframes AnimationBorder {
0% {
border-top-left-radius: 3px;
border-top-right-radius: 30px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 30px;
transform: translateY(-100%);
}
100% {
transform: translateY(0);
border-top-left-radius: 3px;
border-top-right-radius: 0px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 0px;
}
}
a#buscar:hover{
animation: 1.8s ease-in-out; 0s 1 AnimationBorder;
border: 2px white solid;
margin-bottom: 1%;
}
.rate {
float: left;
height: 46px;
padding: 0 10px;
}
.rate:not(:checked) > input {
position:absolute;
top:-9999px;
}
.rate:not(:checked) > label {
float:right;
width:1em;
overflow:hidden;
white-space:nowrap;
cursor:pointer;
font-size:30px;
color:#ccc;
}
.rate:not(:checked) > label:before {
content: 'โ
';
}
.rate > input:checked ~ label {
color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
color: #c59b08;
}
a{
color: linear-gradient(red,orange);
} | productos/css/style.css | div.modoswitch{
padding: 1%;
border: 1px solid white;
font-size: 24px;
border-radius:50%;
margin-top: 2%;
margin-right: 2%;
margin-left: 2%;
margin-bottom: 0%;
}
div.modoswitcher{
padding: 1%;
border: 1px solid white;
font-size: 24px;
border-radius:50%;
margin-top: 2%;
margin-right: 2%;
margin-left: 2%;
margin-bottom: 0%;
}
#modoswitch{
float: right;
}
body.dark a.darklight:hover{
cursor: pointer;
color: white;
}
body.dark a.darklight:hover > * {
font-size: 120%;
color: white;
}
body.light a.darklight:hover{
cursor: pointer;
color: black;
}
body.light a.darklight:hover > * {
font-size: 120%;
color: black;
}
@keyframes sunlight {
0% {
box-shadow: 0px 0px 5px 5px white;
/*background-color:red;*/
right:0px;
top:0px;
}
50% {
/*background-color:yellow;*/
box-shadow: 0px 0px 5px 5px rgba(255, 255, 0, 0.2);
right:10%;
top:0px;
}
100% {
box-shadow: 0px 0px 5px 5px yellow;
/*background-color:orange;*/
right:0px;
top:0px;
}
}
@keyframes moonlight {
0% {
box-shadow: 0px 0px 5px 5px yellow;
/*background-color:red;*/
right:0px;
top:0px;
}
50% {
/*background-color:yellow;*/
box-shadow: 0px 0px 5px 5px rgba(255, 255, 0, 0.2);
right:10%;
top:0px;
}
100% {
box-shadow: 0px 0px 5px 5px white;
/*background-color:orange;*/
right:0px;
top:0px;
}
}
div.sun{
float: right;
box-shadow: 0px 0px 5px 5px yellow;
position: relative;
animation-name: sunlight;
animation-duration: 2.5s;
animation-delay: 0s;
}
div.moon{
float: right;
box-shadow: 0px 0px 5px 5px white;
position: relative;
animation-name: moonlight;
animation-duration: 2.5s;
animation-delay: 0s;
}
body.dark a:hover{
text-decoration: underline;
font-weight: bold;
font-size: 110%;
}
body.dark a{
text-decoration: none;
font-weight: bold;
font-size: 110%;
color: white;
}
body.light a:hover{
text-decoration: underline;
font-weight: bold;
font-size: 110%;
}
body.light a{
text-decoration: none;
font-weight: bold;
font-size: 110%;
color: black;
}
*{
margin:0;
padding:0;
font-family: "ROBOTO", sans-serif;
text-transform: uppercase;
}
h1{
font-family: "Josefin Sans", sans-serif;
}
body.dark{
background: var(--color-fondo-d);
color: white;
}
body.light{
background: var(--color-fondo-l);
color: black;
}
nav{
margin-top: 200px;margin-bottom: -200px;height: auto;width: 50%;background-color: #1E1F26;border-radius: 20px;text-align: center;color: white;
}
nav > ul > li {
display:inline-block;
margin: 5px;
border: 1px white solid;
padding: 5px;
}
@keyframes AnimationHeader {
0% {
border-top-left-radius: 3px;
border-top-right-radius: 30px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 30px;
transform: translateY(-100%);
}
100% {
transform: translateY(0);
border-top-left-radius: 3px;
border-top-right-radius: 0px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 0px;
}
}
header {
/*border-radius: 30px;*/
/*border: 5px yellow solid;*/
animation: 1.8s ease-out 0s 1 AnimationHeader;
margin-bottom: 1%;
/*background: #333;*/
}
header > ul {
width: 100%;
/*background-color: black;*/
}
header > ul > *{
margin: auto auto;
padding: 5% 5%;
}
header > ul > img{
position: absolute;
margin-top: -2%;
margin-left: -18%;
height: 10%;
width: 12%;
}
img#logo{
}
header > ul{
margin: 0;
vertical-align: middle;
}
body.light header > * ,
body.light header > ul > li ,
body.light header > ul > * > ul >li,
body.light header > ul > * > ul > div >li
{
text-align:center;
display:inline-block;
color: black;
}
body.dark header > * ,
body.dark header > ul > li ,
body.dark header > ul > * > ul >li,
body.dark header > ul > * > ul > div >li
{
text-align:center;
display:inline-block;
color: white;
}
div.producto > h3 {
font-size: 140%;
overflow: hidden;
white-space: nowrap;
white-space: pre-line;
width: 100%;
}
article{
position: unset;
background-color:;
padding:3%;
}
img.producte{
width:100%;
height:100px;
object-fit: cover;
border-top-left-radius: 10%;
border-top-right-radius: 10%;
border-bottom-right-radius: 0%;
border-bottom-left-radius: 0%;
border: 6px solid white;
/*margin-left: -6px; /*SE USA SIN BOSOTRAP*/
margin-top: -5px;
}
footer{
position: relative;
color: white;
margin:0;
padding-top:5%;
padding-bottom:2%;
padding: auto;
margin-top: 20%;
}
footer > ul >li{font-style:italic;}
footer > ul > * {margin-left:50px;}
li{list-style:none;}
div.producto{
height:200px;
width:210px;
border:8px solid white;
border-radius: 10%;
background: rgb(63,94,251);
}
div.producto > p,span,h3 {
margin: 5px;
}
section {
height: 95%;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
margin: 10%;
border: 0px blue solid;
background-color: #ff;
}
article > h1 {
font-size: 45px;
text-align: center;
font-weight: bold;
text-decoration: underline;
}
.menu >li>img:hover{
cursor: pointer;
zoom: 1.02;
}
html body div.container div#change.row div.col-md-3.col-sm-6.asd.aqui div.product-grid {
cursor: pointer;
}
@charset "utf-8";
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(30, 31, 38,0.9);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
#loginBody{
width: 40%;
padding: 2%;
border-radius: 15px;
box-shadow: 0 0 5px #CCC;
background: var(--color-producto);
position: relative;
transition: all 5s ease-in-out;
margin: 20% auto;
}
#loginBody > div > form > input{
border: 3px darkorange solid;
border-radius: 10px;
background-color: white;
color: black;
/* padding-left: 15px; */
padding: 5px;
margin: 5px;
width: 70%;
font-weight: bold;
}
#cerrar{
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #F00;
}
@keyframes AnimationBorder {
0% {
border-top-left-radius: 3px;
border-top-right-radius: 30px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 30px;
transform: translateY(-100%);
}
100% {
transform: translateY(0);
border-top-left-radius: 3px;
border-top-right-radius: 0px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 0px;
}
}
a#buscar:hover{
animation: 1.8s ease-in-out; 0s 1 AnimationBorder;
border: 2px white solid;
margin-bottom: 1%;
}
.rate {
float: left;
height: 46px;
padding: 0 10px;
}
.rate:not(:checked) > input {
position:absolute;
top:-9999px;
}
.rate:not(:checked) > label {
float:right;
width:1em;
overflow:hidden;
white-space:nowrap;
cursor:pointer;
font-size:30px;
color:#ccc;
}
.rate:not(:checked) > label:before {
content: 'โ
';
}
.rate > input:checked ~ label {
color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
color: #c59b08;
}
a{
color: linear-gradient(red,orange);
} | 0.544317 | 0.095729 |
@font-face {
font-family: "Avenir";
font-weight: 400;
font-style: normal;
src: url("/avenir-400.woff2") format("woff2");
font-display: swap;
}
body {
font-family: "Avenir", Tahoma, Arial, Helvetica, sans-serif !important;
font-size: 1em;
line-height: 1.65;
color: #373F49;
background: #FFFFFF;
margin: 0;
/* background-color: #000000 !important; */
}
img {
display: block;
width: 100%;
}
h1,
h2,
h3 {
font-size: 2em;
font-weight: normal;
}
a {
color: currentColor;
}
.wrapper {
width: calc(100% - 10vmin);
margin: 0 auto;
padding: 5vmin 0;
}
.article-list {
margin: 0;
padding: 0;
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 5vmin;
}
.section-headline {
padding: 0 0 0.4em 0;
margin: 0 0 5vmin 0;
border-bottom: 1px solid #ddd;
}
.list-inline {
margin: 0;
padding: 0;
list-style: none;
}
.list-inline li {
display: inline-block;
}
.product-carousel .nav-tabs {
border-bottom: none;
padding-bottom: 40px;
overflow: auto;
white-space: nowrap;
flex-wrap: unset;
}
.product-carousel .nav-tabs .nav-link {
color: black;
font-weight: normal;
}
.product-carousel .nav-tabs .nav-link:focus {
font-weight: normal;
color: black;
}
.product-carousel .nav-tabs .nav-link:hover {
border-color: transparent transparent transparent;
color: black !important;
font-weight: bold;
}
.product-carousel .nav-tabs .nav-link.active {
border-bottom: 2px solid #FDDA02;
padding-left: 5px;
padding-right: 5px;
margin-left: 20px;
margin-right: 20px;
font-weight: bold;
border-top: none;
border-left: none;
border-right: none;
}
.page-container {
padding-bottom: 100px;
}
.headline {
font-size: 48px;
background-color: transparent;
color: #000000;
padding-top: 78px;
margin: 0 auto;
text-align: center;
padding-bottom: 20px;
}
.navbar-toggler:focus {
outline: none;
}
.navbar-toggler > span {
width: 22px;
height: 14px;
background-image: url('./open.svg') !important;
}
.navbar-toggler.collapsed > span {
width: 17px;
height: 16px;
background-image: url('./close.svg') !important;
}
.navbar-dark .navbar-toggler {
border: none;
}
@media (max-width: 991px) {
.container {
max-width: none;
}
.row {
margin-left: unset;
margin-right: unset;
}
}
@media (max-width: 768px) {
.navbar-brand {
padding-bottom: .6125rem;
line-height: 0px;
}
} | src/components/base.css | @font-face {
font-family: "Avenir";
font-weight: 400;
font-style: normal;
src: url("/avenir-400.woff2") format("woff2");
font-display: swap;
}
body {
font-family: "Avenir", Tahoma, Arial, Helvetica, sans-serif !important;
font-size: 1em;
line-height: 1.65;
color: #373F49;
background: #FFFFFF;
margin: 0;
/* background-color: #000000 !important; */
}
img {
display: block;
width: 100%;
}
h1,
h2,
h3 {
font-size: 2em;
font-weight: normal;
}
a {
color: currentColor;
}
.wrapper {
width: calc(100% - 10vmin);
margin: 0 auto;
padding: 5vmin 0;
}
.article-list {
margin: 0;
padding: 0;
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 5vmin;
}
.section-headline {
padding: 0 0 0.4em 0;
margin: 0 0 5vmin 0;
border-bottom: 1px solid #ddd;
}
.list-inline {
margin: 0;
padding: 0;
list-style: none;
}
.list-inline li {
display: inline-block;
}
.product-carousel .nav-tabs {
border-bottom: none;
padding-bottom: 40px;
overflow: auto;
white-space: nowrap;
flex-wrap: unset;
}
.product-carousel .nav-tabs .nav-link {
color: black;
font-weight: normal;
}
.product-carousel .nav-tabs .nav-link:focus {
font-weight: normal;
color: black;
}
.product-carousel .nav-tabs .nav-link:hover {
border-color: transparent transparent transparent;
color: black !important;
font-weight: bold;
}
.product-carousel .nav-tabs .nav-link.active {
border-bottom: 2px solid #FDDA02;
padding-left: 5px;
padding-right: 5px;
margin-left: 20px;
margin-right: 20px;
font-weight: bold;
border-top: none;
border-left: none;
border-right: none;
}
.page-container {
padding-bottom: 100px;
}
.headline {
font-size: 48px;
background-color: transparent;
color: #000000;
padding-top: 78px;
margin: 0 auto;
text-align: center;
padding-bottom: 20px;
}
.navbar-toggler:focus {
outline: none;
}
.navbar-toggler > span {
width: 22px;
height: 14px;
background-image: url('./open.svg') !important;
}
.navbar-toggler.collapsed > span {
width: 17px;
height: 16px;
background-image: url('./close.svg') !important;
}
.navbar-dark .navbar-toggler {
border: none;
}
@media (max-width: 991px) {
.container {
max-width: none;
}
.row {
margin-left: unset;
margin-right: unset;
}
}
@media (max-width: 768px) {
.navbar-brand {
padding-bottom: .6125rem;
line-height: 0px;
}
} | 0.264928 | 0.081776 |
.feather-background, .feather {
background-size: contain;
background-position: 50%;
background-repeat: no-repeat;
}
.feather {
position: relative;
display: inline-block;
width: 1.333333em;
line-height: 1em;
}
.feather:before {
content: "\00a0";
}
.feather-activity {
background-image: url(../fonts/feather-icons/activity.svg);
}
.feather-airplay {
background-image: url(../fonts/feather-icons/airplay.svg);
}
.feather-alert-circle {
background-image: url(../fonts/feather-icons/alert-circle.svg);
}
.feather-alert-octagon {
background-image: url(../fonts/feather-icons/alert-octagon.svg);
}
.feather-alert-triangle {
background-image: url(../fonts/feather-icons/alert-triangle.svg);
}
.feather-align-center {
background-image: url(../fonts/feather-icons/align-center.svg);
}
.feather-align-justify {
background-image: url(../fonts/feather-icons/align-justify.svg);
}
.feather-align-left {
background-image: url(../fonts/feather-icons/align-left.svg);
}
.feather-align-right {
background-image: url(../fonts/feather-icons/align-right.svg);
}
.feather-anchor {
background-image: url(../fonts/feather-icons/anchor.svg);
}
.feather-aperture {
background-image: url(../fonts/feather-icons/aperture.svg);
}
.feather-archive {
background-image: url(../fonts/feather-icons/archive.svg);
}
.feather-arrow-down-circle {
background-image: url(../fonts/feather-icons/arrow-down-circle.svg);
}
.feather-arrow-down-left {
background-image: url(../fonts/feather-icons/arrow-down-left.svg);
}
.feather-arrow-down-right {
background-image: url(../fonts/feather-icons/arrow-down-right.svg);
}
.feather-arrow-down {
background-image: url(../fonts/feather-icons/arrow-down.svg);
}
.feather-arrow-left-circle {
background-image: url(../fonts/feather-icons/arrow-left-circle.svg);
}
.feather-arrow-left {
background-image: url(../fonts/feather-icons/arrow-left.svg);
}
.feather-arrow-right-circle {
background-image: url(../fonts/feather-icons/arrow-right-circle.svg);
}
.feather-arrow-right {
background-image: url(../fonts/feather-icons/arrow-right.svg);
}
.feather-arrow-up-circle {
background-image: url(../fonts/feather-icons/arrow-up-circle.svg);
}
.feather-arrow-up-left {
background-image: url(../fonts/feather-icons/arrow-up-left.svg);
}
.feather-arrow-up-right {
background-image: url(../fonts/feather-icons/arrow-up-right.svg);
}
.feather-arrow-up {
background-image: url(../fonts/feather-icons/arrow-up.svg);
}
.feather-at-sign {
background-image: url(../fonts/feather-icons/at-sign.svg);
}
.feather-award {
background-image: url(../fonts/feather-icons/award.svg);
}
.feather-bar-chart-2 {
background-image: url(../fonts/feather-icons/bar-chart-2.svg);
}
.feather-bar-chart {
background-image: url(../fonts/feather-icons/bar-chart.svg);
}
.feather-battery-charging {
background-image: url(../fonts/feather-icons/battery-charging.svg);
}
.feather-battery {
background-image: url(../fonts/feather-icons/battery.svg);
}
.feather-bell-off {
background-image: url(../fonts/feather-icons/bell-off.svg);
}
.feather-bell {
background-image: url(../fonts/feather-icons/bell.svg);
}
.feather-bluetooth {
background-image: url(../fonts/feather-icons/bluetooth.svg);
}
.feather-bold {
background-image: url(../fonts/feather-icons/bold.svg);
}
.feather-book-open {
background-image: url(../fonts/feather-icons/book-open.svg);
}
.feather-book {
background-image: url(../fonts/feather-icons/book.svg);
}
.feather-bookmark {
background-image: url(../fonts/feather-icons/bookmark.svg);
}
.feather-box {
background-image: url(../fonts/feather-icons/box.svg);
}
.feather-briefcase {
background-image: url(../fonts/feather-icons/briefcase.svg);
}
.feather-calendar {
background-image: url(../fonts/feather-icons/calendar.svg);
}
.feather-camera-off {
background-image: url(../fonts/feather-icons/camera-off.svg);
}
.feather-camera {
background-image: url(../fonts/feather-icons/camera.svg);
}
.feather-cast {
background-image: url(../fonts/feather-icons/cast.svg);
}
.feather-check-circle {
background-image: url(../fonts/feather-icons/check-circle.svg);
}
.feather-check-square {
background-image: url(../fonts/feather-icons/check-square.svg);
}
.feather-check {
background-image: url(../fonts/feather-icons/check.svg);
}
.feather-chevron-down {
background-image: url(../fonts/feather-icons/chevron-down.svg);
}
.feather-chevron-left {
background-image: url(../fonts/feather-icons/chevron-left.svg);
}
.feather-chevron-right {
background-image: url(../fonts/feather-icons/chevron-right.svg);
}
.feather-chevron-up {
background-image: url(../fonts/feather-icons/chevron-up.svg);
}
.feather-chevrons-down {
background-image: url(../fonts/feather-icons/chevrons-down.svg);
}
.feather-chevrons-left {
background-image: url(../fonts/feather-icons/chevrons-left.svg);
}
.feather-chevrons-right {
background-image: url(../fonts/feather-icons/chevrons-right.svg);
}
.feather-chevrons-up {
background-image: url(../fonts/feather-icons/chevrons-up.svg);
}
.feather-chrome {
background-image: url(../fonts/feather-icons/chrome.svg);
}
.feather-circle {
background-image: url(../fonts/feather-icons/circle.svg);
}
.feather-clipboard {
background-image: url(../fonts/feather-icons/clipboard.svg);
}
.feather-clock {
background-image: url(../fonts/feather-icons/clock.svg);
}
.feather-cloud-drizzle {
background-image: url(../fonts/feather-icons/cloud-drizzle.svg);
}
.feather-cloud-lightning {
background-image: url(../fonts/feather-icons/cloud-lightning.svg);
}
.feather-cloud-off {
background-image: url(../fonts/feather-icons/cloud-off.svg);
}
.feather-cloud-rain {
background-image: url(../fonts/feather-icons/cloud-rain.svg);
}
.feather-cloud-snow {
background-image: url(../fonts/feather-icons/cloud-snow.svg);
}
.feather-cloud {
background-image: url(../fonts/feather-icons/cloud.svg);
}
.feather-code {
background-image: url(../fonts/feather-icons/code.svg);
}
.feather-codepen {
background-image: url(../fonts/feather-icons/codepen.svg);
}
.feather-codesandbox {
background-image: url(../fonts/feather-icons/codesandbox.svg);
}
.feather-coffee {
background-image: url(../fonts/feather-icons/coffee.svg);
}
.feather-columns {
background-image: url(../fonts/feather-icons/columns.svg);
}
.feather-command {
background-image: url(../fonts/feather-icons/command.svg);
}
.feather-compass {
background-image: url(../fonts/feather-icons/compass.svg);
}
.feather-copy {
background-image: url(../fonts/feather-icons/copy.svg);
}
.feather-corner-down-left {
background-image: url(../fonts/feather-icons/corner-down-left.svg);
}
.feather-corner-down-right {
background-image: url(../fonts/feather-icons/corner-down-right.svg);
}
.feather-corner-left-down {
background-image: url(../fonts/feather-icons/corner-left-down.svg);
}
.feather-corner-left-up {
background-image: url(../fonts/feather-icons/corner-left-up.svg);
}
.feather-corner-right-down {
background-image: url(../fonts/feather-icons/corner-right-down.svg);
}
.feather-corner-right-up {
background-image: url(../fonts/feather-icons/corner-right-up.svg);
}
.feather-corner-up-left {
background-image: url(../fonts/feather-icons/corner-up-left.svg);
}
.feather-corner-up-right {
background-image: url(../fonts/feather-icons/corner-up-right.svg);
}
.feather-cpu {
background-image: url(../fonts/feather-icons/cpu.svg);
}
.feather-credit-card {
background-image: url(../fonts/feather-icons/credit-card.svg);
}
.feather-crop {
background-image: url(../fonts/feather-icons/crop.svg);
}
.feather-crosshair {
background-image: url(../fonts/feather-icons/crosshair.svg);
}
.feather-database {
background-image: url(../fonts/feather-icons/database.svg);
}
.feather-delete {
background-image: url(../fonts/feather-icons/delete.svg);
}
.feather-disc {
background-image: url(../fonts/feather-icons/disc.svg);
}
.feather-divide-circle {
background-image: url(../fonts/feather-icons/divide-circle.svg);
}
.feather-divide-square {
background-image: url(../fonts/feather-icons/divide-square.svg);
}
.feather-divide {
background-image: url(../fonts/feather-icons/divide.svg);
}
.feather-dollar-sign {
background-image: url(../fonts/feather-icons/dollar-sign.svg);
}
.feather-download-cloud {
background-image: url(../fonts/feather-icons/download-cloud.svg);
}
.feather-download {
background-image: url(../fonts/feather-icons/download.svg);
}
.feather-dribbble {
background-image: url(../fonts/feather-icons/dribbble.svg);
}
.feather-droplet {
background-image: url(../fonts/feather-icons/droplet.svg);
}
.feather-edit-2 {
background-image: url(../fonts/feather-icons/edit-2.svg);
}
.feather-edit-3 {
background-image: url(../fonts/feather-icons/edit-3.svg);
}
.feather-edit {
background-image: url(../fonts/feather-icons/edit.svg);
}
.feather-external-link {
background-image: url(../fonts/feather-icons/external-link.svg);
}
.feather-eye-off {
background-image: url(../fonts/feather-icons/eye-off.svg);
}
.feather-eye {
background-image: url(../fonts/feather-icons/eye.svg);
}
.feather-facebook {
background-image: url(../fonts/feather-icons/facebook.svg);
}
.feather-fast-forward {
background-image: url(../fonts/feather-icons/fast-forward.svg);
}
.feather-feather {
background-image: url(../fonts/feather-icons/feather.svg);
}
.feather-figma {
background-image: url(../fonts/feather-icons/figma.svg);
}
.feather-file-minus {
background-image: url(../fonts/feather-icons/file-minus.svg);
}
.feather-file-plus {
background-image: url(../fonts/feather-icons/file-plus.svg);
}
.feather-file-text {
background-image: url(../fonts/feather-icons/file-text.svg);
}
.feather-file {
background-image: url(../fonts/feather-icons/file.svg);
}
.feather-film {
background-image: url(../fonts/feather-icons/film.svg);
}
.feather-filter {
background-image: url(../fonts/feather-icons/filter.svg);
}
.feather-flag {
background-image: url(../fonts/feather-icons/flag.svg);
}
.feather-folder-minus {
background-image: url(../fonts/feather-icons/folder-minus.svg);
}
.feather-folder-plus {
background-image: url(../fonts/feather-icons/folder-plus.svg);
}
.feather-folder {
background-image: url(../fonts/feather-icons/folder.svg);
}
.feather-framer {
background-image: url(../fonts/feather-icons/framer.svg);
}
.feather-frown {
background-image: url(../fonts/feather-icons/frown.svg);
}
.feather-gift {
background-image: url(../fonts/feather-icons/gift.svg);
}
.feather-git-branch {
background-image: url(../fonts/feather-icons/git-branch.svg);
}
.feather-git-commit {
background-image: url(../fonts/feather-icons/git-commit.svg);
}
.feather-git-merge {
background-image: url(../fonts/feather-icons/git-merge.svg);
}
.feather-git-pull-request {
background-image: url(../fonts/feather-icons/git-pull-request.svg);
}
.feather-github {
background-image: url(../fonts/feather-icons/github.svg);
}
.feather-gitlab {
background-image: url(../fonts/feather-icons/gitlab.svg);
}
.feather-globe {
background-image: url(../fonts/feather-icons/globe.svg);
}
.feather-grid {
background-image: url(../fonts/feather-icons/grid.svg);
}
.feather-hard-drive {
background-image: url(../fonts/feather-icons/hard-drive.svg);
}
.feather-hash {
background-image: url(../fonts/feather-icons/hash.svg);
}
.feather-headphones {
background-image: url(../fonts/feather-icons/headphones.svg);
}
.feather-heart {
background-image: url(../fonts/feather-icons/heart.svg);
}
.feather-help-circle {
background-image: url(../fonts/feather-icons/help-circle.svg);
}
.feather-hexagon {
background-image: url(../fonts/feather-icons/hexagon.svg);
}
.feather-home {
background-image: url(../fonts/feather-icons/home.svg);
}
.feather-image {
background-image: url(../fonts/feather-icons/image.svg);
}
.feather-inbox {
background-image: url(../fonts/feather-icons/inbox.svg);
}
.feather-info {
background-image: url(../fonts/feather-icons/info.svg);
}
.feather-instagram {
background-image: url(../fonts/feather-icons/instagram.svg);
}
.feather-italic {
background-image: url(../fonts/feather-icons/italic.svg);
}
.feather-key {
background-image: url(../fonts/feather-icons/key.svg);
}
.feather-layers {
background-image: url(../fonts/feather-icons/layers.svg);
}
.feather-layout {
background-image: url(../fonts/feather-icons/layout.svg);
}
.feather-life-buoy {
background-image: url(../fonts/feather-icons/life-buoy.svg);
}
.feather-link-2 {
background-image: url(../fonts/feather-icons/link-2.svg);
}
.feather-link {
background-image: url(../fonts/feather-icons/link.svg);
}
.feather-linkedin {
background-image: url(../fonts/feather-icons/linkedin.svg);
}
.feather-list {
background-image: url(../fonts/feather-icons/list.svg);
}
.feather-loader {
background-image: url(../fonts/feather-icons/loader.svg);
}
.feather-lock {
background-image: url(../fonts/feather-icons/lock.svg);
}
.feather-log-in {
background-image: url(../fonts/feather-icons/log-in.svg);
}
.feather-log-out {
background-image: url(../fonts/feather-icons/log-out.svg);
}
.feather-mail {
background-image: url(../fonts/feather-icons/mail.svg);
}
.feather-map-pin {
background-image: url(../fonts/feather-icons/map-pin.svg);
}
.feather-map {
background-image: url(../fonts/feather-icons/map.svg);
}
.feather-maximize-2 {
background-image: url(../fonts/feather-icons/maximize-2.svg);
}
.feather-maximize {
background-image: url(../fonts/feather-icons/maximize.svg);
}
.feather-meh {
background-image: url(../fonts/feather-icons/meh.svg);
}
.feather-menu {
background-image: url(../fonts/feather-icons/menu.svg);
}
.feather-message-circle {
background-image: url(../fonts/feather-icons/message-circle.svg);
}
.feather-message-square {
background-image: url(../fonts/feather-icons/message-square.svg);
}
.feather-mic-off {
background-image: url(../fonts/feather-icons/mic-off.svg);
}
.feather-mic {
background-image: url(../fonts/feather-icons/mic.svg);
}
.feather-minimize-2 {
background-image: url(../fonts/feather-icons/minimize-2.svg);
}
.feather-minimize {
background-image: url(../fonts/feather-icons/minimize.svg);
}
.feather-minus-circle {
background-image: url(../fonts/feather-icons/minus-circle.svg);
}
.feather-minus-square {
background-image: url(../fonts/feather-icons/minus-square.svg);
}
.feather-minus {
background-image: url(../fonts/feather-icons/minus.svg);
}
.feather-monitor {
background-image: url(../fonts/feather-icons/monitor.svg);
}
.feather-moon {
background-image: url(../fonts/feather-icons/moon.svg);
}
.feather-more-horizontal {
background-image: url(../fonts/feather-icons/more-horizontal.svg);
}
.feather-more-vertical {
background-image: url(../fonts/feather-icons/more-vertical.svg);
}
.feather-mouse-pointer {
background-image: url(../fonts/feather-icons/mouse-pointer.svg);
}
.feather-move {
background-image: url(../fonts/feather-icons/move.svg);
}
.feather-music {
background-image: url(../fonts/feather-icons/music.svg);
}
.feather-navigation-2 {
background-image: url(../fonts/feather-icons/navigation-2.svg);
}
.feather-navigation {
background-image: url(../fonts/feather-icons/navigation.svg);
}
.feather-octagon {
background-image: url(../fonts/feather-icons/octagon.svg);
}
.feather-package {
background-image: url(../fonts/feather-icons/package.svg);
}
.feather-paperclip {
background-image: url(../fonts/feather-icons/paperclip.svg);
}
.feather-pause-circle {
background-image: url(../fonts/feather-icons/pause-circle.svg);
}
.feather-pause {
background-image: url(../fonts/feather-icons/pause.svg);
}
.feather-pen-tool {
background-image: url(../fonts/feather-icons/pen-tool.svg);
}
.feather-percent {
background-image: url(../fonts/feather-icons/percent.svg);
}
.feather-phone-call {
background-image: url(../fonts/feather-icons/phone-call.svg);
}
.feather-phone-forwarded {
background-image: url(../fonts/feather-icons/phone-forwarded.svg);
}
.feather-phone-incoming {
background-image: url(../fonts/feather-icons/phone-incoming.svg);
}
.feather-phone-missed {
background-image: url(../fonts/feather-icons/phone-missed.svg);
}
.feather-phone-off {
background-image: url(../fonts/feather-icons/phone-off.svg);
}
.feather-phone-outgoing {
background-image: url(../fonts/feather-icons/phone-outgoing.svg);
}
.feather-phone {
background-image: url(../fonts/feather-icons/phone.svg);
}
.feather-pie-chart {
background-image: url(../fonts/feather-icons/pie-chart.svg);
}
.feather-play-circle {
background-image: url(../fonts/feather-icons/play-circle.svg);
}
.feather-play {
background-image: url(../fonts/feather-icons/play.svg);
}
.feather-plus-circle {
background-image: url(../fonts/feather-icons/plus-circle.svg);
}
.feather-plus-square {
background-image: url(../fonts/feather-icons/plus-square.svg);
}
.feather-plus {
background-image: url(../fonts/feather-icons/plus.svg);
}
.feather-pocket {
background-image: url(../fonts/feather-icons/pocket.svg);
}
.feather-power {
background-image: url(../fonts/feather-icons/power.svg);
}
.feather-printer {
background-image: url(../fonts/feather-icons/printer.svg);
}
.feather-radio {
background-image: url(../fonts/feather-icons/radio.svg);
}
.feather-refresh-ccw {
background-image: url(../fonts/feather-icons/refresh-ccw.svg);
}
.feather-refresh-cw {
background-image: url(../fonts/feather-icons/refresh-cw.svg);
}
.feather-repeat {
background-image: url(../fonts/feather-icons/repeat.svg);
}
.feather-rewind {
background-image: url(../fonts/feather-icons/rewind.svg);
}
.feather-rotate-ccw {
background-image: url(../fonts/feather-icons/rotate-ccw.svg);
}
.feather-rotate-cw {
background-image: url(../fonts/feather-icons/rotate-cw.svg);
}
.feather-rss {
background-image: url(../fonts/feather-icons/rss.svg);
}
.feather-save {
background-image: url(../fonts/feather-icons/save.svg);
}
.feather-scissors {
background-image: url(../fonts/feather-icons/scissors.svg);
}
.feather-search {
background-image: url(../fonts/feather-icons/search.svg);
}
.feather-send {
background-image: url(../fonts/feather-icons/send.svg);
}
.feather-server {
background-image: url(../fonts/feather-icons/server.svg);
}
.feather-settings {
background-image: url(../fonts/feather-icons/settings.svg);
}
.feather-share-2 {
background-image: url(../fonts/feather-icons/share-2.svg);
}
.feather-share {
background-image: url(../fonts/feather-icons/share.svg);
}
.feather-shield-off {
background-image: url(../fonts/feather-icons/shield-off.svg);
}
.feather-shield {
background-image: url(../fonts/feather-icons/shield.svg);
}
.feather-shopping-bag {
background-image: url(../fonts/feather-icons/shopping-bag.svg);
}
.feather-shopping-cart {
background-image: url(../fonts/feather-icons/shopping-cart.svg);
}
.feather-shuffle {
background-image: url(../fonts/feather-icons/shuffle.svg);
}
.feather-sidebar {
background-image: url(../fonts/feather-icons/sidebar.svg);
}
.feather-skip-back {
background-image: url(../fonts/feather-icons/skip-back.svg);
}
.feather-skip-forward {
background-image: url(../fonts/feather-icons/skip-forward.svg);
}
.feather-slack {
background-image: url(../fonts/feather-icons/slack.svg);
}
.feather-slash {
background-image: url(../fonts/feather-icons/slash.svg);
}
.feather-sliders {
background-image: url(../fonts/feather-icons/sliders.svg);
}
.feather-smartphone {
background-image: url(../fonts/feather-icons/smartphone.svg);
}
.feather-smile {
background-image: url(../fonts/feather-icons/smile.svg);
}
.feather-speaker {
background-image: url(../fonts/feather-icons/speaker.svg);
}
.feather-square {
background-image: url(../fonts/feather-icons/square.svg);
}
.feather-star {
background-image: url(../fonts/feather-icons/star.svg);
}
.feather-stop-circle {
background-image: url(../fonts/feather-icons/stop-circle.svg);
}
.feather-sun {
background-image: url(../fonts/feather-icons/sun.svg);
}
.feather-sunrise {
background-image: url(../fonts/feather-icons/sunrise.svg);
}
.feather-sunset {
background-image: url(../fonts/feather-icons/sunset.svg);
}
.feather-tablet {
background-image: url(../fonts/feather-icons/tablet.svg);
}
.feather-tag {
background-image: url(../fonts/feather-icons/tag.svg);
}
.feather-target {
background-image: url(../fonts/feather-icons/target.svg);
}
.feather-terminal {
background-image: url(../fonts/feather-icons/terminal.svg);
}
.feather-thermometer {
background-image: url(../fonts/feather-icons/thermometer.svg);
}
.feather-thumbs-down {
background-image: url(../fonts/feather-icons/thumbs-down.svg);
}
.feather-thumbs-up {
background-image: url(../fonts/feather-icons/thumbs-up.svg);
}
.feather-toggle-left {
background-image: url(../fonts/feather-icons/toggle-left.svg);
}
.feather-toggle-right {
background-image: url(../fonts/feather-icons/toggle-right.svg);
}
.feather-tool {
background-image: url(../fonts/feather-icons/tool.svg);
}
.feather-trash-2 {
background-image: url(../fonts/feather-icons/trash-2.svg);
}
.feather-trash {
background-image: url(../fonts/feather-icons/trash.svg);
}
.feather-trello {
background-image: url(../fonts/feather-icons/trello.svg);
}
.feather-trending-down {
background-image: url(../fonts/feather-icons/trending-down.svg);
}
.feather-trending-up {
background-image: url(../fonts/feather-icons/trending-up.svg);
}
.feather-triangle {
background-image: url(../fonts/feather-icons/triangle.svg);
}
.feather-truck {
background-image: url(../fonts/feather-icons/truck.svg);
}
.feather-tv {
background-image: url(../fonts/feather-icons/tv.svg);
}
.feather-twitch {
background-image: url(../fonts/feather-icons/twitch.svg);
}
.feather-twitter {
background-image: url(../fonts/feather-icons/twitter.svg);
}
.feather-type {
background-image: url(../fonts/feather-icons/type.svg);
}
.feather-umbrella {
background-image: url(../fonts/feather-icons/umbrella.svg);
}
.feather-underline {
background-image: url(../fonts/feather-icons/underline.svg);
}
.feather-unlock {
background-image: url(../fonts/feather-icons/unlock.svg);
}
.feather-upload-cloud {
background-image: url(../fonts/feather-icons/upload-cloud.svg);
}
.feather-upload {
background-image: url(../fonts/feather-icons/upload.svg);
}
.feather-user-check {
background-image: url(../fonts/feather-icons/user-check.svg);
}
.feather-user-minus {
background-image: url(../fonts/feather-icons/user-minus.svg);
}
.feather-user-plus {
background-image: url(../fonts/feather-icons/user-plus.svg);
}
.feather-user-x {
background-image: url(../fonts/feather-icons/user-x.svg);
}
.feather-user {
background-image: url(../fonts/feather-icons/user.svg);
}
.feather-users {
background-image: url(../fonts/feather-icons/users.svg);
}
.feather-video-off {
background-image: url(../fonts/feather-icons/video-off.svg);
}
.feather-video {
background-image: url(../fonts/feather-icons/video.svg);
}
.feather-voicemail {
background-image: url(../fonts/feather-icons/voicemail.svg);
}
.feather-volume-1 {
background-image: url(../fonts/feather-icons/volume-1.svg);
}
.feather-volume-2 {
background-image: url(../fonts/feather-icons/volume-2.svg);
}
.feather-volume-x {
background-image: url(../fonts/feather-icons/volume-x.svg);
}
.feather-volume {
background-image: url(../fonts/feather-icons/volume.svg);
}
.feather-watch {
background-image: url(../fonts/feather-icons/watch.svg);
}
.feather-wifi-off {
background-image: url(../fonts/feather-icons/wifi-off.svg);
}
.feather-wifi {
background-image: url(../fonts/feather-icons/wifi.svg);
}
.feather-wind {
background-image: url(../fonts/feather-icons/wind.svg);
}
.feather-x-circle {
background-image: url(../fonts/feather-icons/x-circle.svg);
}
.feather-x-octagon {
background-image: url(../fonts/feather-icons/x-octagon.svg);
}
.feather-x-square {
background-image: url(../fonts/feather-icons/x-square.svg);
}
.feather-x {
background-image: url(../fonts/feather-icons/x.svg);
}
.feather-youtube {
background-image: url(../fonts/feather-icons/youtube.svg);
}
.feather-zap-off {
background-image: url(../fonts/feather-icons/zap-off.svg);
}
.feather-zap {
background-image: url(../fonts/feather-icons/zap.svg);
}
.feather-zoom-in {
background-image: url(../fonts/feather-icons/zoom-in.svg);
}
.feather-zoom-out {
background-image: url(../fonts/feather-icons/zoom-out.svg);
} | dist/css/feather.icons.css | .feather-background, .feather {
background-size: contain;
background-position: 50%;
background-repeat: no-repeat;
}
.feather {
position: relative;
display: inline-block;
width: 1.333333em;
line-height: 1em;
}
.feather:before {
content: "\00a0";
}
.feather-activity {
background-image: url(../fonts/feather-icons/activity.svg);
}
.feather-airplay {
background-image: url(../fonts/feather-icons/airplay.svg);
}
.feather-alert-circle {
background-image: url(../fonts/feather-icons/alert-circle.svg);
}
.feather-alert-octagon {
background-image: url(../fonts/feather-icons/alert-octagon.svg);
}
.feather-alert-triangle {
background-image: url(../fonts/feather-icons/alert-triangle.svg);
}
.feather-align-center {
background-image: url(../fonts/feather-icons/align-center.svg);
}
.feather-align-justify {
background-image: url(../fonts/feather-icons/align-justify.svg);
}
.feather-align-left {
background-image: url(../fonts/feather-icons/align-left.svg);
}
.feather-align-right {
background-image: url(../fonts/feather-icons/align-right.svg);
}
.feather-anchor {
background-image: url(../fonts/feather-icons/anchor.svg);
}
.feather-aperture {
background-image: url(../fonts/feather-icons/aperture.svg);
}
.feather-archive {
background-image: url(../fonts/feather-icons/archive.svg);
}
.feather-arrow-down-circle {
background-image: url(../fonts/feather-icons/arrow-down-circle.svg);
}
.feather-arrow-down-left {
background-image: url(../fonts/feather-icons/arrow-down-left.svg);
}
.feather-arrow-down-right {
background-image: url(../fonts/feather-icons/arrow-down-right.svg);
}
.feather-arrow-down {
background-image: url(../fonts/feather-icons/arrow-down.svg);
}
.feather-arrow-left-circle {
background-image: url(../fonts/feather-icons/arrow-left-circle.svg);
}
.feather-arrow-left {
background-image: url(../fonts/feather-icons/arrow-left.svg);
}
.feather-arrow-right-circle {
background-image: url(../fonts/feather-icons/arrow-right-circle.svg);
}
.feather-arrow-right {
background-image: url(../fonts/feather-icons/arrow-right.svg);
}
.feather-arrow-up-circle {
background-image: url(../fonts/feather-icons/arrow-up-circle.svg);
}
.feather-arrow-up-left {
background-image: url(../fonts/feather-icons/arrow-up-left.svg);
}
.feather-arrow-up-right {
background-image: url(../fonts/feather-icons/arrow-up-right.svg);
}
.feather-arrow-up {
background-image: url(../fonts/feather-icons/arrow-up.svg);
}
.feather-at-sign {
background-image: url(../fonts/feather-icons/at-sign.svg);
}
.feather-award {
background-image: url(../fonts/feather-icons/award.svg);
}
.feather-bar-chart-2 {
background-image: url(../fonts/feather-icons/bar-chart-2.svg);
}
.feather-bar-chart {
background-image: url(../fonts/feather-icons/bar-chart.svg);
}
.feather-battery-charging {
background-image: url(../fonts/feather-icons/battery-charging.svg);
}
.feather-battery {
background-image: url(../fonts/feather-icons/battery.svg);
}
.feather-bell-off {
background-image: url(../fonts/feather-icons/bell-off.svg);
}
.feather-bell {
background-image: url(../fonts/feather-icons/bell.svg);
}
.feather-bluetooth {
background-image: url(../fonts/feather-icons/bluetooth.svg);
}
.feather-bold {
background-image: url(../fonts/feather-icons/bold.svg);
}
.feather-book-open {
background-image: url(../fonts/feather-icons/book-open.svg);
}
.feather-book {
background-image: url(../fonts/feather-icons/book.svg);
}
.feather-bookmark {
background-image: url(../fonts/feather-icons/bookmark.svg);
}
.feather-box {
background-image: url(../fonts/feather-icons/box.svg);
}
.feather-briefcase {
background-image: url(../fonts/feather-icons/briefcase.svg);
}
.feather-calendar {
background-image: url(../fonts/feather-icons/calendar.svg);
}
.feather-camera-off {
background-image: url(../fonts/feather-icons/camera-off.svg);
}
.feather-camera {
background-image: url(../fonts/feather-icons/camera.svg);
}
.feather-cast {
background-image: url(../fonts/feather-icons/cast.svg);
}
.feather-check-circle {
background-image: url(../fonts/feather-icons/check-circle.svg);
}
.feather-check-square {
background-image: url(../fonts/feather-icons/check-square.svg);
}
.feather-check {
background-image: url(../fonts/feather-icons/check.svg);
}
.feather-chevron-down {
background-image: url(../fonts/feather-icons/chevron-down.svg);
}
.feather-chevron-left {
background-image: url(../fonts/feather-icons/chevron-left.svg);
}
.feather-chevron-right {
background-image: url(../fonts/feather-icons/chevron-right.svg);
}
.feather-chevron-up {
background-image: url(../fonts/feather-icons/chevron-up.svg);
}
.feather-chevrons-down {
background-image: url(../fonts/feather-icons/chevrons-down.svg);
}
.feather-chevrons-left {
background-image: url(../fonts/feather-icons/chevrons-left.svg);
}
.feather-chevrons-right {
background-image: url(../fonts/feather-icons/chevrons-right.svg);
}
.feather-chevrons-up {
background-image: url(../fonts/feather-icons/chevrons-up.svg);
}
.feather-chrome {
background-image: url(../fonts/feather-icons/chrome.svg);
}
.feather-circle {
background-image: url(../fonts/feather-icons/circle.svg);
}
.feather-clipboard {
background-image: url(../fonts/feather-icons/clipboard.svg);
}
.feather-clock {
background-image: url(../fonts/feather-icons/clock.svg);
}
.feather-cloud-drizzle {
background-image: url(../fonts/feather-icons/cloud-drizzle.svg);
}
.feather-cloud-lightning {
background-image: url(../fonts/feather-icons/cloud-lightning.svg);
}
.feather-cloud-off {
background-image: url(../fonts/feather-icons/cloud-off.svg);
}
.feather-cloud-rain {
background-image: url(../fonts/feather-icons/cloud-rain.svg);
}
.feather-cloud-snow {
background-image: url(../fonts/feather-icons/cloud-snow.svg);
}
.feather-cloud {
background-image: url(../fonts/feather-icons/cloud.svg);
}
.feather-code {
background-image: url(../fonts/feather-icons/code.svg);
}
.feather-codepen {
background-image: url(../fonts/feather-icons/codepen.svg);
}
.feather-codesandbox {
background-image: url(../fonts/feather-icons/codesandbox.svg);
}
.feather-coffee {
background-image: url(../fonts/feather-icons/coffee.svg);
}
.feather-columns {
background-image: url(../fonts/feather-icons/columns.svg);
}
.feather-command {
background-image: url(../fonts/feather-icons/command.svg);
}
.feather-compass {
background-image: url(../fonts/feather-icons/compass.svg);
}
.feather-copy {
background-image: url(../fonts/feather-icons/copy.svg);
}
.feather-corner-down-left {
background-image: url(../fonts/feather-icons/corner-down-left.svg);
}
.feather-corner-down-right {
background-image: url(../fonts/feather-icons/corner-down-right.svg);
}
.feather-corner-left-down {
background-image: url(../fonts/feather-icons/corner-left-down.svg);
}
.feather-corner-left-up {
background-image: url(../fonts/feather-icons/corner-left-up.svg);
}
.feather-corner-right-down {
background-image: url(../fonts/feather-icons/corner-right-down.svg);
}
.feather-corner-right-up {
background-image: url(../fonts/feather-icons/corner-right-up.svg);
}
.feather-corner-up-left {
background-image: url(../fonts/feather-icons/corner-up-left.svg);
}
.feather-corner-up-right {
background-image: url(../fonts/feather-icons/corner-up-right.svg);
}
.feather-cpu {
background-image: url(../fonts/feather-icons/cpu.svg);
}
.feather-credit-card {
background-image: url(../fonts/feather-icons/credit-card.svg);
}
.feather-crop {
background-image: url(../fonts/feather-icons/crop.svg);
}
.feather-crosshair {
background-image: url(../fonts/feather-icons/crosshair.svg);
}
.feather-database {
background-image: url(../fonts/feather-icons/database.svg);
}
.feather-delete {
background-image: url(../fonts/feather-icons/delete.svg);
}
.feather-disc {
background-image: url(../fonts/feather-icons/disc.svg);
}
.feather-divide-circle {
background-image: url(../fonts/feather-icons/divide-circle.svg);
}
.feather-divide-square {
background-image: url(../fonts/feather-icons/divide-square.svg);
}
.feather-divide {
background-image: url(../fonts/feather-icons/divide.svg);
}
.feather-dollar-sign {
background-image: url(../fonts/feather-icons/dollar-sign.svg);
}
.feather-download-cloud {
background-image: url(../fonts/feather-icons/download-cloud.svg);
}
.feather-download {
background-image: url(../fonts/feather-icons/download.svg);
}
.feather-dribbble {
background-image: url(../fonts/feather-icons/dribbble.svg);
}
.feather-droplet {
background-image: url(../fonts/feather-icons/droplet.svg);
}
.feather-edit-2 {
background-image: url(../fonts/feather-icons/edit-2.svg);
}
.feather-edit-3 {
background-image: url(../fonts/feather-icons/edit-3.svg);
}
.feather-edit {
background-image: url(../fonts/feather-icons/edit.svg);
}
.feather-external-link {
background-image: url(../fonts/feather-icons/external-link.svg);
}
.feather-eye-off {
background-image: url(../fonts/feather-icons/eye-off.svg);
}
.feather-eye {
background-image: url(../fonts/feather-icons/eye.svg);
}
.feather-facebook {
background-image: url(../fonts/feather-icons/facebook.svg);
}
.feather-fast-forward {
background-image: url(../fonts/feather-icons/fast-forward.svg);
}
.feather-feather {
background-image: url(../fonts/feather-icons/feather.svg);
}
.feather-figma {
background-image: url(../fonts/feather-icons/figma.svg);
}
.feather-file-minus {
background-image: url(../fonts/feather-icons/file-minus.svg);
}
.feather-file-plus {
background-image: url(../fonts/feather-icons/file-plus.svg);
}
.feather-file-text {
background-image: url(../fonts/feather-icons/file-text.svg);
}
.feather-file {
background-image: url(../fonts/feather-icons/file.svg);
}
.feather-film {
background-image: url(../fonts/feather-icons/film.svg);
}
.feather-filter {
background-image: url(../fonts/feather-icons/filter.svg);
}
.feather-flag {
background-image: url(../fonts/feather-icons/flag.svg);
}
.feather-folder-minus {
background-image: url(../fonts/feather-icons/folder-minus.svg);
}
.feather-folder-plus {
background-image: url(../fonts/feather-icons/folder-plus.svg);
}
.feather-folder {
background-image: url(../fonts/feather-icons/folder.svg);
}
.feather-framer {
background-image: url(../fonts/feather-icons/framer.svg);
}
.feather-frown {
background-image: url(../fonts/feather-icons/frown.svg);
}
.feather-gift {
background-image: url(../fonts/feather-icons/gift.svg);
}
.feather-git-branch {
background-image: url(../fonts/feather-icons/git-branch.svg);
}
.feather-git-commit {
background-image: url(../fonts/feather-icons/git-commit.svg);
}
.feather-git-merge {
background-image: url(../fonts/feather-icons/git-merge.svg);
}
.feather-git-pull-request {
background-image: url(../fonts/feather-icons/git-pull-request.svg);
}
.feather-github {
background-image: url(../fonts/feather-icons/github.svg);
}
.feather-gitlab {
background-image: url(../fonts/feather-icons/gitlab.svg);
}
.feather-globe {
background-image: url(../fonts/feather-icons/globe.svg);
}
.feather-grid {
background-image: url(../fonts/feather-icons/grid.svg);
}
.feather-hard-drive {
background-image: url(../fonts/feather-icons/hard-drive.svg);
}
.feather-hash {
background-image: url(../fonts/feather-icons/hash.svg);
}
.feather-headphones {
background-image: url(../fonts/feather-icons/headphones.svg);
}
.feather-heart {
background-image: url(../fonts/feather-icons/heart.svg);
}
.feather-help-circle {
background-image: url(../fonts/feather-icons/help-circle.svg);
}
.feather-hexagon {
background-image: url(../fonts/feather-icons/hexagon.svg);
}
.feather-home {
background-image: url(../fonts/feather-icons/home.svg);
}
.feather-image {
background-image: url(../fonts/feather-icons/image.svg);
}
.feather-inbox {
background-image: url(../fonts/feather-icons/inbox.svg);
}
.feather-info {
background-image: url(../fonts/feather-icons/info.svg);
}
.feather-instagram {
background-image: url(../fonts/feather-icons/instagram.svg);
}
.feather-italic {
background-image: url(../fonts/feather-icons/italic.svg);
}
.feather-key {
background-image: url(../fonts/feather-icons/key.svg);
}
.feather-layers {
background-image: url(../fonts/feather-icons/layers.svg);
}
.feather-layout {
background-image: url(../fonts/feather-icons/layout.svg);
}
.feather-life-buoy {
background-image: url(../fonts/feather-icons/life-buoy.svg);
}
.feather-link-2 {
background-image: url(../fonts/feather-icons/link-2.svg);
}
.feather-link {
background-image: url(../fonts/feather-icons/link.svg);
}
.feather-linkedin {
background-image: url(../fonts/feather-icons/linkedin.svg);
}
.feather-list {
background-image: url(../fonts/feather-icons/list.svg);
}
.feather-loader {
background-image: url(../fonts/feather-icons/loader.svg);
}
.feather-lock {
background-image: url(../fonts/feather-icons/lock.svg);
}
.feather-log-in {
background-image: url(../fonts/feather-icons/log-in.svg);
}
.feather-log-out {
background-image: url(../fonts/feather-icons/log-out.svg);
}
.feather-mail {
background-image: url(../fonts/feather-icons/mail.svg);
}
.feather-map-pin {
background-image: url(../fonts/feather-icons/map-pin.svg);
}
.feather-map {
background-image: url(../fonts/feather-icons/map.svg);
}
.feather-maximize-2 {
background-image: url(../fonts/feather-icons/maximize-2.svg);
}
.feather-maximize {
background-image: url(../fonts/feather-icons/maximize.svg);
}
.feather-meh {
background-image: url(../fonts/feather-icons/meh.svg);
}
.feather-menu {
background-image: url(../fonts/feather-icons/menu.svg);
}
.feather-message-circle {
background-image: url(../fonts/feather-icons/message-circle.svg);
}
.feather-message-square {
background-image: url(../fonts/feather-icons/message-square.svg);
}
.feather-mic-off {
background-image: url(../fonts/feather-icons/mic-off.svg);
}
.feather-mic {
background-image: url(../fonts/feather-icons/mic.svg);
}
.feather-minimize-2 {
background-image: url(../fonts/feather-icons/minimize-2.svg);
}
.feather-minimize {
background-image: url(../fonts/feather-icons/minimize.svg);
}
.feather-minus-circle {
background-image: url(../fonts/feather-icons/minus-circle.svg);
}
.feather-minus-square {
background-image: url(../fonts/feather-icons/minus-square.svg);
}
.feather-minus {
background-image: url(../fonts/feather-icons/minus.svg);
}
.feather-monitor {
background-image: url(../fonts/feather-icons/monitor.svg);
}
.feather-moon {
background-image: url(../fonts/feather-icons/moon.svg);
}
.feather-more-horizontal {
background-image: url(../fonts/feather-icons/more-horizontal.svg);
}
.feather-more-vertical {
background-image: url(../fonts/feather-icons/more-vertical.svg);
}
.feather-mouse-pointer {
background-image: url(../fonts/feather-icons/mouse-pointer.svg);
}
.feather-move {
background-image: url(../fonts/feather-icons/move.svg);
}
.feather-music {
background-image: url(../fonts/feather-icons/music.svg);
}
.feather-navigation-2 {
background-image: url(../fonts/feather-icons/navigation-2.svg);
}
.feather-navigation {
background-image: url(../fonts/feather-icons/navigation.svg);
}
.feather-octagon {
background-image: url(../fonts/feather-icons/octagon.svg);
}
.feather-package {
background-image: url(../fonts/feather-icons/package.svg);
}
.feather-paperclip {
background-image: url(../fonts/feather-icons/paperclip.svg);
}
.feather-pause-circle {
background-image: url(../fonts/feather-icons/pause-circle.svg);
}
.feather-pause {
background-image: url(../fonts/feather-icons/pause.svg);
}
.feather-pen-tool {
background-image: url(../fonts/feather-icons/pen-tool.svg);
}
.feather-percent {
background-image: url(../fonts/feather-icons/percent.svg);
}
.feather-phone-call {
background-image: url(../fonts/feather-icons/phone-call.svg);
}
.feather-phone-forwarded {
background-image: url(../fonts/feather-icons/phone-forwarded.svg);
}
.feather-phone-incoming {
background-image: url(../fonts/feather-icons/phone-incoming.svg);
}
.feather-phone-missed {
background-image: url(../fonts/feather-icons/phone-missed.svg);
}
.feather-phone-off {
background-image: url(../fonts/feather-icons/phone-off.svg);
}
.feather-phone-outgoing {
background-image: url(../fonts/feather-icons/phone-outgoing.svg);
}
.feather-phone {
background-image: url(../fonts/feather-icons/phone.svg);
}
.feather-pie-chart {
background-image: url(../fonts/feather-icons/pie-chart.svg);
}
.feather-play-circle {
background-image: url(../fonts/feather-icons/play-circle.svg);
}
.feather-play {
background-image: url(../fonts/feather-icons/play.svg);
}
.feather-plus-circle {
background-image: url(../fonts/feather-icons/plus-circle.svg);
}
.feather-plus-square {
background-image: url(../fonts/feather-icons/plus-square.svg);
}
.feather-plus {
background-image: url(../fonts/feather-icons/plus.svg);
}
.feather-pocket {
background-image: url(../fonts/feather-icons/pocket.svg);
}
.feather-power {
background-image: url(../fonts/feather-icons/power.svg);
}
.feather-printer {
background-image: url(../fonts/feather-icons/printer.svg);
}
.feather-radio {
background-image: url(../fonts/feather-icons/radio.svg);
}
.feather-refresh-ccw {
background-image: url(../fonts/feather-icons/refresh-ccw.svg);
}
.feather-refresh-cw {
background-image: url(../fonts/feather-icons/refresh-cw.svg);
}
.feather-repeat {
background-image: url(../fonts/feather-icons/repeat.svg);
}
.feather-rewind {
background-image: url(../fonts/feather-icons/rewind.svg);
}
.feather-rotate-ccw {
background-image: url(../fonts/feather-icons/rotate-ccw.svg);
}
.feather-rotate-cw {
background-image: url(../fonts/feather-icons/rotate-cw.svg);
}
.feather-rss {
background-image: url(../fonts/feather-icons/rss.svg);
}
.feather-save {
background-image: url(../fonts/feather-icons/save.svg);
}
.feather-scissors {
background-image: url(../fonts/feather-icons/scissors.svg);
}
.feather-search {
background-image: url(../fonts/feather-icons/search.svg);
}
.feather-send {
background-image: url(../fonts/feather-icons/send.svg);
}
.feather-server {
background-image: url(../fonts/feather-icons/server.svg);
}
.feather-settings {
background-image: url(../fonts/feather-icons/settings.svg);
}
.feather-share-2 {
background-image: url(../fonts/feather-icons/share-2.svg);
}
.feather-share {
background-image: url(../fonts/feather-icons/share.svg);
}
.feather-shield-off {
background-image: url(../fonts/feather-icons/shield-off.svg);
}
.feather-shield {
background-image: url(../fonts/feather-icons/shield.svg);
}
.feather-shopping-bag {
background-image: url(../fonts/feather-icons/shopping-bag.svg);
}
.feather-shopping-cart {
background-image: url(../fonts/feather-icons/shopping-cart.svg);
}
.feather-shuffle {
background-image: url(../fonts/feather-icons/shuffle.svg);
}
.feather-sidebar {
background-image: url(../fonts/feather-icons/sidebar.svg);
}
.feather-skip-back {
background-image: url(../fonts/feather-icons/skip-back.svg);
}
.feather-skip-forward {
background-image: url(../fonts/feather-icons/skip-forward.svg);
}
.feather-slack {
background-image: url(../fonts/feather-icons/slack.svg);
}
.feather-slash {
background-image: url(../fonts/feather-icons/slash.svg);
}
.feather-sliders {
background-image: url(../fonts/feather-icons/sliders.svg);
}
.feather-smartphone {
background-image: url(../fonts/feather-icons/smartphone.svg);
}
.feather-smile {
background-image: url(../fonts/feather-icons/smile.svg);
}
.feather-speaker {
background-image: url(../fonts/feather-icons/speaker.svg);
}
.feather-square {
background-image: url(../fonts/feather-icons/square.svg);
}
.feather-star {
background-image: url(../fonts/feather-icons/star.svg);
}
.feather-stop-circle {
background-image: url(../fonts/feather-icons/stop-circle.svg);
}
.feather-sun {
background-image: url(../fonts/feather-icons/sun.svg);
}
.feather-sunrise {
background-image: url(../fonts/feather-icons/sunrise.svg);
}
.feather-sunset {
background-image: url(../fonts/feather-icons/sunset.svg);
}
.feather-tablet {
background-image: url(../fonts/feather-icons/tablet.svg);
}
.feather-tag {
background-image: url(../fonts/feather-icons/tag.svg);
}
.feather-target {
background-image: url(../fonts/feather-icons/target.svg);
}
.feather-terminal {
background-image: url(../fonts/feather-icons/terminal.svg);
}
.feather-thermometer {
background-image: url(../fonts/feather-icons/thermometer.svg);
}
.feather-thumbs-down {
background-image: url(../fonts/feather-icons/thumbs-down.svg);
}
.feather-thumbs-up {
background-image: url(../fonts/feather-icons/thumbs-up.svg);
}
.feather-toggle-left {
background-image: url(../fonts/feather-icons/toggle-left.svg);
}
.feather-toggle-right {
background-image: url(../fonts/feather-icons/toggle-right.svg);
}
.feather-tool {
background-image: url(../fonts/feather-icons/tool.svg);
}
.feather-trash-2 {
background-image: url(../fonts/feather-icons/trash-2.svg);
}
.feather-trash {
background-image: url(../fonts/feather-icons/trash.svg);
}
.feather-trello {
background-image: url(../fonts/feather-icons/trello.svg);
}
.feather-trending-down {
background-image: url(../fonts/feather-icons/trending-down.svg);
}
.feather-trending-up {
background-image: url(../fonts/feather-icons/trending-up.svg);
}
.feather-triangle {
background-image: url(../fonts/feather-icons/triangle.svg);
}
.feather-truck {
background-image: url(../fonts/feather-icons/truck.svg);
}
.feather-tv {
background-image: url(../fonts/feather-icons/tv.svg);
}
.feather-twitch {
background-image: url(../fonts/feather-icons/twitch.svg);
}
.feather-twitter {
background-image: url(../fonts/feather-icons/twitter.svg);
}
.feather-type {
background-image: url(../fonts/feather-icons/type.svg);
}
.feather-umbrella {
background-image: url(../fonts/feather-icons/umbrella.svg);
}
.feather-underline {
background-image: url(../fonts/feather-icons/underline.svg);
}
.feather-unlock {
background-image: url(../fonts/feather-icons/unlock.svg);
}
.feather-upload-cloud {
background-image: url(../fonts/feather-icons/upload-cloud.svg);
}
.feather-upload {
background-image: url(../fonts/feather-icons/upload.svg);
}
.feather-user-check {
background-image: url(../fonts/feather-icons/user-check.svg);
}
.feather-user-minus {
background-image: url(../fonts/feather-icons/user-minus.svg);
}
.feather-user-plus {
background-image: url(../fonts/feather-icons/user-plus.svg);
}
.feather-user-x {
background-image: url(../fonts/feather-icons/user-x.svg);
}
.feather-user {
background-image: url(../fonts/feather-icons/user.svg);
}
.feather-users {
background-image: url(../fonts/feather-icons/users.svg);
}
.feather-video-off {
background-image: url(../fonts/feather-icons/video-off.svg);
}
.feather-video {
background-image: url(../fonts/feather-icons/video.svg);
}
.feather-voicemail {
background-image: url(../fonts/feather-icons/voicemail.svg);
}
.feather-volume-1 {
background-image: url(../fonts/feather-icons/volume-1.svg);
}
.feather-volume-2 {
background-image: url(../fonts/feather-icons/volume-2.svg);
}
.feather-volume-x {
background-image: url(../fonts/feather-icons/volume-x.svg);
}
.feather-volume {
background-image: url(../fonts/feather-icons/volume.svg);
}
.feather-watch {
background-image: url(../fonts/feather-icons/watch.svg);
}
.feather-wifi-off {
background-image: url(../fonts/feather-icons/wifi-off.svg);
}
.feather-wifi {
background-image: url(../fonts/feather-icons/wifi.svg);
}
.feather-wind {
background-image: url(../fonts/feather-icons/wind.svg);
}
.feather-x-circle {
background-image: url(../fonts/feather-icons/x-circle.svg);
}
.feather-x-octagon {
background-image: url(../fonts/feather-icons/x-octagon.svg);
}
.feather-x-square {
background-image: url(../fonts/feather-icons/x-square.svg);
}
.feather-x {
background-image: url(../fonts/feather-icons/x.svg);
}
.feather-youtube {
background-image: url(../fonts/feather-icons/youtube.svg);
}
.feather-zap-off {
background-image: url(../fonts/feather-icons/zap-off.svg);
}
.feather-zap {
background-image: url(../fonts/feather-icons/zap.svg);
}
.feather-zoom-in {
background-image: url(../fonts/feather-icons/zoom-in.svg);
}
.feather-zoom-out {
background-image: url(../fonts/feather-icons/zoom-out.svg);
} | 0.422028 | 0.142083 |
.mypost {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin-top: 20px;
margin-bottom: 40px;
margin-left: 9vw;
padding: 30px;
width: 80%;
}
label {
width: 100%;
}
label span{
font-weight: 500;
padding-bottom: 40px;
width: 100%;
}
.input{
display: block;
border: none;
width: 100%;
padding: 10px;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(109, 93, 93, 0.4);
padding-left: 30px;
font-family: 'Nunito', sans-serif;
margin-top: 30px;
outline: none;
}
.input:focus {
border: 1px solid #538167;
border-radius: 10px;
}
.image-post {
max-width: 100%;
}
.tags {
margin-bottom: 40px;
display: flex;
}
.input-tags{
display: block;
border: none;
width: 80%;
padding: 10px;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(109, 93, 93, 0.4);
padding-left: 30px;
font-family: 'Nunito', sans-serif;
margin-top: 30px;
outline: none;
}
.input-tags:focus {
border-bottom: 1px solid #538167;
border-radius: 10px;
}
/* Style the "Add" button */
.addBtn {
margin-top: 30px;
padding: 10px;
width: 20%;
background: #d9d9d9;
color: #538167;
float: left;
text-align: center;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
border-radius: 0;
}
.addBtn:hover {
background-color: #bbb;
}
ul {
display: flex;
flex-wrap: wrap;
}
#myTags li {
padding: 10px;
list-style-type: none;
background: #538167;
font-size: 18px;
transition: 0.2s;
color: white;
border-radius: 10px;
margin: 10px;
}
.close {
color: white !important;
margin-left: 12px;
}
.img-add {
width: 50px;
height: 50px;
border-radius: 25px;
margin-left: 20px;
}
.label-img {
font-size: 40px;
cursor: pointer;
}
.content-post {
height: 500px;
}
.btn-submit {
padding: 10px;
width: 100px;
background-color: #538167;
color: white;
float: right;
margin-top: 20px;
border: none;
outline: none;
margin-bottom: 50px;
}
.btn-submit:hover {
box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}
.title-post {
color: rgb(34, 104, 34);
font-family: "Roboto Slab",sans-serif;
font-weight: 700;
} | public/assests/css/admin/admin.post.css | .mypost {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin-top: 20px;
margin-bottom: 40px;
margin-left: 9vw;
padding: 30px;
width: 80%;
}
label {
width: 100%;
}
label span{
font-weight: 500;
padding-bottom: 40px;
width: 100%;
}
.input{
display: block;
border: none;
width: 100%;
padding: 10px;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(109, 93, 93, 0.4);
padding-left: 30px;
font-family: 'Nunito', sans-serif;
margin-top: 30px;
outline: none;
}
.input:focus {
border: 1px solid #538167;
border-radius: 10px;
}
.image-post {
max-width: 100%;
}
.tags {
margin-bottom: 40px;
display: flex;
}
.input-tags{
display: block;
border: none;
width: 80%;
padding: 10px;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(109, 93, 93, 0.4);
padding-left: 30px;
font-family: 'Nunito', sans-serif;
margin-top: 30px;
outline: none;
}
.input-tags:focus {
border-bottom: 1px solid #538167;
border-radius: 10px;
}
/* Style the "Add" button */
.addBtn {
margin-top: 30px;
padding: 10px;
width: 20%;
background: #d9d9d9;
color: #538167;
float: left;
text-align: center;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
border-radius: 0;
}
.addBtn:hover {
background-color: #bbb;
}
ul {
display: flex;
flex-wrap: wrap;
}
#myTags li {
padding: 10px;
list-style-type: none;
background: #538167;
font-size: 18px;
transition: 0.2s;
color: white;
border-radius: 10px;
margin: 10px;
}
.close {
color: white !important;
margin-left: 12px;
}
.img-add {
width: 50px;
height: 50px;
border-radius: 25px;
margin-left: 20px;
}
.label-img {
font-size: 40px;
cursor: pointer;
}
.content-post {
height: 500px;
}
.btn-submit {
padding: 10px;
width: 100px;
background-color: #538167;
color: white;
float: right;
margin-top: 20px;
border: none;
outline: none;
margin-bottom: 50px;
}
.btn-submit:hover {
box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.21);
}
.title-post {
color: rgb(34, 104, 34);
font-family: "Roboto Slab",sans-serif;
font-weight: 700;
} | 0.346984 | 0.113334 |
.font-primary {
font-family: Raleway !important
}
.font-secondary {
font-family: Roboto !important
}
.bg-primary {
background-color: #4d89ff;
}
.grayscale .bg-primary {
background-color: #848484;
}
.bg-secondary {
background-color: #4d89ff;
}
.grayscale .bg-secondary {
background-color: #848484;
}
.bg-primary-light {
background-color: #e7eaf0;
}
.grayscale .bg-primary-light {
background-color: #e9e9e9;
}
.bg-primary-dark {
background-color: #26447f;
}
.grayscale .bg-primary-dark {
background-color: #414141;
}
.bg-secondary-light {
background-color: #e7eaf0;
}
.grayscale .bg-secondary-light {
background-color: #e9e9e9;
}
.bg-secondary-dark {
background-color: #26447f;
}
.grayscale .bg-secondary-dark {
background-color: #414141;
}
.fg-primary {
color: #4d89ff;
}
.grayscale .fg-primary {
color: #848484;
}
.fg-primary .contact-icon-link {
color: #4d89ff;
}
.grayscale .fg-primary .contact-icon-link {
color: #848484;
}
.fg-secondary {
color: #4d89ff;
}
.grayscale .fg-secondary {
color: #848484;
}
.fg-secondary .contact-icon-link {
color: #4d89ff;
}
.grayscale .fg-secondary .contact-icon-link {
color: #848484;
}
.fg-primary-light {
color: #e7eaf0;
}
.grayscale .fg-primary-light {
color: #e9e9e9;
}
.fg-primary-light .contact-icon-link {
color: #e7eaf0;
}
.grayscale .fg-primary-light .contact-icon-link {
color: #e9e9e9;
}
.fg-primary-dark {
color: #26447f;
}
.grayscale .fg-primary-dark {
color: #414141;
}
.fg-primary-dark .contact-icon-link {
color: #26447f;
}
.grayscale .fg-primary-dark .contact-icon-link {
color: #414141;
}
.fg-secondary-light {
color: #e7eaf0;
}
.grayscale .fg-secondary-light {
color: #e9e9e9;
}
.fg-secondary-light .contact-icon-link {
color: #e7eaf0;
}
.grayscale .fg-secondary-light .contact-icon-link {
color: #e9e9e9;
}
.fg-secondary-dark {
color: #26447f;
}
.grayscale .fg-secondary-dark {
color: #414141;
}
.fg-secondary-dark .contact-icon-link {
color: #26447f;
}
.grayscale .fg-secondary-dark .contact-icon-link {
color: #414141;
}
.bd-primary {
border-color: #4d89ff;
}
.grayscale .bd-primary {
border-color: #848484;
}
.bd-secondary {
border-color: #4d89ff;
}
.grayscale .bd-secondary {
border-color: #848484;
}
.bd-primary-light {
border-color: #e7eaf0;
}
.grayscale .bd-primary-light {
border-color: #e9e9e9;
}
.bd-primary-dark {
border-color: #26447f;
}
.grayscale .bd-primary-dark {
border-color: #414141;
}
.bd-secondary-light {
border -color: #e7eaf0;
}
.grayscale .bd-secondary-light {
border-color: #e9e9e9;
}
.bd-secondary-dark {
border-color: #26447f;
}
.grayscale .bd-secondary-dark {
border-color: #414141;
}
a.contact-icon-link {
color: #000 !important;
}
.hv-primary .contact-icon-link.hover-enabled:hover {
color: #4d89ff !important;
}
.grayscale .hv-primary .contact-icon-link.hover-enabled:hover {
color: #848484 !important;
}
.hv-secondary .contact-icon-link.hover-enabled:hover {
color: #4d89ff !important;
}
.grayscale .hv-secondary .contact-icon-link.hover-enabled:hover {
color: #848484 !important;
}
.hv-primary-light .contact-icon-link.hover-enabled:hover {
color: #e7eaf0 !important;
}
.grayscale .hv-primary-light .contact-icon-link.hover-enabled:hover {
color: #e9e9e9 !important;
}
.hv-primary-dark .contact-icon-link.hover-enabled:hover {
color: #26447f !important;
}
.grayscale .hv-primary-dark .contact-icon-link.hover-enabled:hover {
color: #414141 !important;
}
.hv-secondary-light .contact-icon-link.hover-enabled:hover {
color: #e7eaf0 !important;
}
.grayscale .hv-secondary-light .contact-icon-link.hover-enabled:hover {
color: #e9e9e9 !important;
}
.hv-secondary-dark .contact-icon-link.hover-enabled:hover {
color: #26447f !important;
}
.grayscale .hv-secondary-dark .contact-icon-link.hover-enabled:hover {
color: #414141 !important;
}
.document-container:hover [markdown-viewer] a, .document-container:hover .link a {
color: #26447f !important;
}
.document-container:hover [markdown-viewer] a, .document-container:hover .link a {
text-decoration: underline;
}
.document-container:hover [markdown-viewer] a:hover, .document-container:hover .link a:hover {
color: #26447f !important;
}
.document-container:hover .grayscale [markdown-viewer] a, .document-container:hover .grayscale .link a {
color: #585858 !important;
}
.document-container:hover .grayscale [markdown-viewer] a:hover, .document-container:hover .grayscale .link a:hover {
color: #414141 !important;
}
.fg-white {
color: #fff
}
.fg-white .contact-icon-link {
color: #fff
}
a {
color: #26447f !important;
}
/* links color fix/hover */
a.link span {
color: #000;
}
a.link:hover span {
text-decoration: underline;
color: #26447f;
} | stylesheets/custom.css | .font-primary {
font-family: Raleway !important
}
.font-secondary {
font-family: Roboto !important
}
.bg-primary {
background-color: #4d89ff;
}
.grayscale .bg-primary {
background-color: #848484;
}
.bg-secondary {
background-color: #4d89ff;
}
.grayscale .bg-secondary {
background-color: #848484;
}
.bg-primary-light {
background-color: #e7eaf0;
}
.grayscale .bg-primary-light {
background-color: #e9e9e9;
}
.bg-primary-dark {
background-color: #26447f;
}
.grayscale .bg-primary-dark {
background-color: #414141;
}
.bg-secondary-light {
background-color: #e7eaf0;
}
.grayscale .bg-secondary-light {
background-color: #e9e9e9;
}
.bg-secondary-dark {
background-color: #26447f;
}
.grayscale .bg-secondary-dark {
background-color: #414141;
}
.fg-primary {
color: #4d89ff;
}
.grayscale .fg-primary {
color: #848484;
}
.fg-primary .contact-icon-link {
color: #4d89ff;
}
.grayscale .fg-primary .contact-icon-link {
color: #848484;
}
.fg-secondary {
color: #4d89ff;
}
.grayscale .fg-secondary {
color: #848484;
}
.fg-secondary .contact-icon-link {
color: #4d89ff;
}
.grayscale .fg-secondary .contact-icon-link {
color: #848484;
}
.fg-primary-light {
color: #e7eaf0;
}
.grayscale .fg-primary-light {
color: #e9e9e9;
}
.fg-primary-light .contact-icon-link {
color: #e7eaf0;
}
.grayscale .fg-primary-light .contact-icon-link {
color: #e9e9e9;
}
.fg-primary-dark {
color: #26447f;
}
.grayscale .fg-primary-dark {
color: #414141;
}
.fg-primary-dark .contact-icon-link {
color: #26447f;
}
.grayscale .fg-primary-dark .contact-icon-link {
color: #414141;
}
.fg-secondary-light {
color: #e7eaf0;
}
.grayscale .fg-secondary-light {
color: #e9e9e9;
}
.fg-secondary-light .contact-icon-link {
color: #e7eaf0;
}
.grayscale .fg-secondary-light .contact-icon-link {
color: #e9e9e9;
}
.fg-secondary-dark {
color: #26447f;
}
.grayscale .fg-secondary-dark {
color: #414141;
}
.fg-secondary-dark .contact-icon-link {
color: #26447f;
}
.grayscale .fg-secondary-dark .contact-icon-link {
color: #414141;
}
.bd-primary {
border-color: #4d89ff;
}
.grayscale .bd-primary {
border-color: #848484;
}
.bd-secondary {
border-color: #4d89ff;
}
.grayscale .bd-secondary {
border-color: #848484;
}
.bd-primary-light {
border-color: #e7eaf0;
}
.grayscale .bd-primary-light {
border-color: #e9e9e9;
}
.bd-primary-dark {
border-color: #26447f;
}
.grayscale .bd-primary-dark {
border-color: #414141;
}
.bd-secondary-light {
border -color: #e7eaf0;
}
.grayscale .bd-secondary-light {
border-color: #e9e9e9;
}
.bd-secondary-dark {
border-color: #26447f;
}
.grayscale .bd-secondary-dark {
border-color: #414141;
}
a.contact-icon-link {
color: #000 !important;
}
.hv-primary .contact-icon-link.hover-enabled:hover {
color: #4d89ff !important;
}
.grayscale .hv-primary .contact-icon-link.hover-enabled:hover {
color: #848484 !important;
}
.hv-secondary .contact-icon-link.hover-enabled:hover {
color: #4d89ff !important;
}
.grayscale .hv-secondary .contact-icon-link.hover-enabled:hover {
color: #848484 !important;
}
.hv-primary-light .contact-icon-link.hover-enabled:hover {
color: #e7eaf0 !important;
}
.grayscale .hv-primary-light .contact-icon-link.hover-enabled:hover {
color: #e9e9e9 !important;
}
.hv-primary-dark .contact-icon-link.hover-enabled:hover {
color: #26447f !important;
}
.grayscale .hv-primary-dark .contact-icon-link.hover-enabled:hover {
color: #414141 !important;
}
.hv-secondary-light .contact-icon-link.hover-enabled:hover {
color: #e7eaf0 !important;
}
.grayscale .hv-secondary-light .contact-icon-link.hover-enabled:hover {
color: #e9e9e9 !important;
}
.hv-secondary-dark .contact-icon-link.hover-enabled:hover {
color: #26447f !important;
}
.grayscale .hv-secondary-dark .contact-icon-link.hover-enabled:hover {
color: #414141 !important;
}
.document-container:hover [markdown-viewer] a, .document-container:hover .link a {
color: #26447f !important;
}
.document-container:hover [markdown-viewer] a, .document-container:hover .link a {
text-decoration: underline;
}
.document-container:hover [markdown-viewer] a:hover, .document-container:hover .link a:hover {
color: #26447f !important;
}
.document-container:hover .grayscale [markdown-viewer] a, .document-container:hover .grayscale .link a {
color: #585858 !important;
}
.document-container:hover .grayscale [markdown-viewer] a:hover, .document-container:hover .grayscale .link a:hover {
color: #414141 !important;
}
.fg-white {
color: #fff
}
.fg-white .contact-icon-link {
color: #fff
}
a {
color: #26447f !important;
}
/* links color fix/hover */
a.link span {
color: #000;
}
a.link:hover span {
text-decoration: underline;
color: #26447f;
} | 0.512693 | 0.108095 |
.red-50 { background-color: var(--paper-red-50) }
.red-100 { background-color: var(--paper-red-100) }
.red-200 { background-color: var(--paper-red-200) }
.red-300 { background-color: var(--paper-red-300) }
.red-400 { background-color: var(--paper-red-400) }
.red-500 { background-color: var(--paper-red-500) }
.red-600 { background-color: var(--paper-red-600) }
.red-700 { background-color: var(--paper-red-700) }
.red-800 { background-color: var(--paper-red-800) }
.red-900 { background-color: var(--paper-red-900) }
.red-a100 { background-color: var(--paper-red-a100) }
.red-a200 { background-color: var(--paper-red-a200) }
.red-a400 { background-color: var(--paper-red-a400) }
.red-a700 { background-color: var(--paper-red-a700) }
.pink-50 { background-color: var(--paper-pink-50) }
.pink-100 { background-color: var(--paper-pink-100) }
.pink-200 { background-color: var(--paper-pink-200) }
.pink-300 { background-color: var(--paper-pink-300) }
.pink-400 { background-color: var(--paper-pink-400) }
.pink-500 { background-color: var(--paper-pink-500) }
.pink-600 { background-color: var(--paper-pink-600) }
.pink-700 { background-color: var(--paper-pink-700) }
.pink-800 { background-color: var(--paper-pink-800) }
.pink-900 { background-color: var(--paper-pink-900) }
.pink-a100 { background-color: var(--paper-pink-a100) }
.pink-a200 { background-color: var(--paper-pink-a200) }
.pink-a400 { background-color: var(--paper-pink-a400) }
.pink-a700 { background-color: var(--paper-pink-a700) }
.purple-50 { background-color: var(--paper-purple-50) }
.purple-100 { background-color: var(--paper-purple-100) }
.purple-200 { background-color: var(--paper-purple-200) }
.purple-300 { background-color: var(--paper-purple-300) }
.purple-400 { background-color: var(--paper-purple-400) }
.purple-500 { background-color: var(--paper-purple-500) }
.purple-600 { background-color: var(--paper-purple-600) }
.purple-700 { background-color: var(--paper-purple-700) }
.purple-800 { background-color: var(--paper-purple-800) }
.purple-900 { background-color: var(--paper-purple-900) }
.purple-a100 { background-color: var(--paper-purple-a100) }
.purple-a200 { background-color: var(--paper-purple-a200) }
.purple-a400 { background-color: var(--paper-purple-a400) }
.purple-a700 { background-color: var(--paper-purple-a700) }
.deep-purple-50 { background-color: var(--paper-deep-purple-50) }
.deep-purple-100 { background-color: var(--paper-deep-purple-100) }
.deep-purple-200 { background-color: var(--paper-deep-purple-200) }
.deep-purple-300 { background-color: var(--paper-deep-purple-300) }
.deep-purple-400 { background-color: var(--paper-deep-purple-400) }
.deep-purple-500 { background-color: var(--paper-deep-purple-500) }
.deep-purple-600 { background-color: var(--paper-deep-purple-600) }
.deep-purple-700 { background-color: var(--paper-deep-purple-700) }
.deep-purple-800 { background-color: var(--paper-deep-purple-800) }
.deep-purple-900 { background-color: var(--paper-deep-purple-900) }
.deep-purple-a100 { background-color: var(--paper-deep-purple-a10) }
.deep-purple-a200 { background-color: var(--paper-deep-purple-a20) }
.deep-purple-a400 { background-color: var(--paper-deep-purple-a40) }
.deep-purple-a700 { background-color: var(--paper-deep-purple-a70) }
.indigo-50 { background-color: var(--paper-indigo-50) }
.indigo-100 { background-color: var(--paper-indigo-100) }
.indigo-200 { background-color: var(--paper-indigo-200) }
.indigo-300 { background-color: var(--paper-indigo-300) }
.indigo-400 { background-color: var(--paper-indigo-400) }
.indigo-500 { background-color: var(--paper-indigo-500) }
.indigo-600 { background-color: var(--paper-indigo-600) }
.indigo-700 { background-color: var(--paper-indigo-700) }
.indigo-800 { background-color: var(--paper-indigo-800) }
.indigo-900 { background-color: var(--paper-indigo-900) }
.indigo-a100 { background-color: var(--paper-indigo-a100) }
.indigo-a200 { background-color: var(--paper-indigo-a200) }
.indigo-a400 { background-color: var(--paper-indigo-a400) }
.indigo-a700 { background-color: var(--paper-indigo-a700) }
.blue-50 { background-color: var(--paper-blue-50) }
.blue-100 { background-color: var(--paper-blue-100) }
.blue-200 { background-color: var(--paper-blue-200) }
.blue-300 { background-color: var(--paper-blue-300) }
.blue-400 { background-color: var(--paper-blue-400) }
.blue-500 { background-color: var(--paper-blue-500) }
.blue-600 { background-color: var(--paper-blue-600) }
.blue-700 { background-color: var(--paper-blue-700) }
.blue-800 { background-color: var(--paper-blue-800) }
.blue-900 { background-color: var(--paper-blue-900) }
.blue-a100 { background-color: var(--paper-blue-a100) }
.blue-a200 { background-color: var(--paper-blue-a200) }
.blue-a400 { background-color: var(--paper-blue-a400) }
.blue-a700 { background-color: var(--paper-blue-a700) }
.light-blue-50 { background-color: var(--paper-light-blue-50) }
.light-blue-100 { background-color: var(--paper-light-blue-100) }
.light-blue-200 { background-color: var(--paper-light-blue-200) }
.light-blue-300 { background-color: var(--paper-light-blue-300) }
.light-blue-400 { background-color: var(--paper-light-blue-400) }
.light-blue-500 { background-color: var(--paper-light-blue-500) }
.light-blue-600 { background-color: var(--paper-light-blue-600) }
.light-blue-700 { background-color: var(--paper-light-blue-700) }
.light-blue-800 { background-color: var(--paper-light-blue-800) }
.light-blue-900 { background-color: var(--paper-light-blue-900) }
.light-blue-a100 { background-color: var(--paper-light-blue-a100) }
.light-blue-a200 { background-color: var(--paper-light-blue-a200) }
.light-blue-a400 { background-color: var(--paper-light-blue-a400) }
.light-blue-a700 { background-color: var(--paper-light-blue-a700) }
.cyan-50 { background-color: var(--paper-cyan-50) }
.cyan-100 { background-color: var(--paper-cyan-100) }
.cyan-200 { background-color: var(--paper-cyan-200) }
.cyan-300 { background-color: var(--paper-cyan-300) }
.cyan-400 { background-color: var(--paper-cyan-400) }
.cyan-500 { background-color: var(--paper-cyan-500) }
.cyan-600 { background-color: var(--paper-cyan-600) }
.cyan-700 { background-color: var(--paper-cyan-700) }
.cyan-800 { background-color: var(--paper-cyan-800) }
.cyan-900 { background-color: var(--paper-cyan-900) }
.cyan-a100 { background-color: var(--paper-cyan-a100) }
.cyan-a200 { background-color: var(--paper-cyan-a200) }
.cyan-a400 { background-color: var(--paper-cyan-a400) }
.cyan-a700 { background-color: var(--paper-cyan-a700) }
.teal-50 { background-color: var(--paper-teal-50) }
.teal-100 { background-color: var(--paper-teal-100) }
.teal-200 { background-color: var(--paper-teal-200) }
.teal-300 { background-color: var(--paper-teal-300) }
.teal-400 { background-color: var(--paper-teal-400) }
.teal-500 { background-color: var(--paper-teal-500) }
.teal-600 { background-color: var(--paper-teal-600) }
.teal-700 { background-color: var(--paper-teal-700) }
.teal-800 { background-color: var(--paper-teal-800) }
.teal-900 { background-color: var(--paper-teal-900) }
.teal-a100 { background-color: var(--paper-teal-a100) }
.teal-a200 { background-color: var(--paper-teal-a200) }
.teal-a400 { background-color: var(--paper-teal-a400) }
.teal-a700 { background-color: var(--paper-teal-a700) }
.green-50 { background-color: var(--paper-green-50) }
.green-100 { background-color: var(--paper-green-100) }
.green-200 { background-color: var(--paper-green-200) }
.green-300 { background-color: var(--paper-green-300) }
.green-400 { background-color: var(--paper-green-400) }
.green-500 { background-color: var(--paper-green-500) }
.green-600 { background-color: var(--paper-green-600) }
.green-700 { background-color: var(--paper-green-700) }
.green-800 { background-color: var(--paper-green-800) }
.green-900 { background-color: var(--paper-green-900) }
.green-a100 { background-color: var(--paper-green-a100) }
.green-a200 { background-color: var(--paper-green-a200) }
.green-a400 { background-color: var(--paper-green-a400) }
.green-a700 { background-color: var(--paper-green-a700) }
.light-green-50 { background-color: var(--paper-light-green-50) }
.light-green-100 { background-color: var(--paper-light-green-100) }
.light-green-200 { background-color: var(--paper-light-green-200) }
.light-green-300 { background-color: var(--paper-light-green-300) }
.light-green-400 { background-color: var(--paper-light-green-400) }
.light-green-500 { background-color: var(--paper-light-green-500) }
.light-green-600 { background-color: var(--paper-light-green-600) }
.light-green-700 { background-color: var(--paper-light-green-700) }
.light-green-800 { background-color: var(--paper-light-green-800) }
.light-green-900 { background-color: var(--paper-light-green-900) }
.light-green-a100 { background-color: var(--paper-light-green-a10) }
.light-green-a200 { background-color: var(--paper-light-green-a20) }
.light-green-a400 { background-color: var(--paper-light-green-a40) }
.light-green-a700 { background-color: var(--paper-light-green-a70) }
.lime-50 { background-color: var(--paper-lime-50) }
.lime-100 { background-color: var(--paper-lime-100) }
.lime-200 { background-color: var(--paper-lime-200) }
.lime-300 { background-color: var(--paper-lime-300) }
.lime-400 { background-color: var(--paper-lime-400) }
.lime-500 { background-color: var(--paper-lime-500) }
.lime-600 { background-color: var(--paper-lime-600) }
.lime-700 { background-color: var(--paper-lime-700) }
.lime-800 { background-color: var(--paper-lime-800) }
.lime-900 { background-color: var(--paper-lime-900) }
.lime-a100 { background-color: var(--paper-lime-a100) }
.lime-a200 { background-color: var(--paper-lime-a200) }
.lime-a400 { background-color: var(--paper-lime-a400) }
.lime-a700 { background-color: var(--paper-lime-a700) }
.yellow-50 { background-color: var(--paper-yellow-50) }
.yellow-100 { background-color: var(--paper-yellow-100) }
.yellow-200 { background-color: var(--paper-yellow-200) }
.yellow-300 { background-color: var(--paper-yellow-300) }
.yellow-400 { background-color: var(--paper-yellow-400) }
.yellow-500 { background-color: var(--paper-yellow-500) }
.yellow-600 { background-color: var(--paper-yellow-600) }
.yellow-700 { background-color: var(--paper-yellow-700) }
.yellow-800 { background-color: var(--paper-yellow-800) }
.yellow-900 { background-color: var(--paper-yellow-900) }
.yellow-a100 { background-color: var(--paper-yellow-a100) }
.yellow-a200 { background-color: var(--paper-yellow-a200) }
.yellow-a400 { background-color: var(--paper-yellow-a400) }
.yellow-a700 { background-color: var(--paper-yellow-a700) }
.amber-50 { background-color: var(--paper-amber-50) }
.amber-100 { background-color: var(--paper-amber-100) }
.amber-200 { background-color: var(--paper-amber-200) }
.amber-300 { background-color: var(--paper-amber-300) }
.amber-400 { background-color: var(--paper-amber-400) }
.amber-500 { background-color: var(--paper-amber-500) }
.amber-600 { background-color: var(--paper-amber-600) }
.amber-700 { background-color: var(--paper-amber-700) }
.amber-800 { background-color: var(--paper-amber-800) }
.amber-900 { background-color: var(--paper-amber-900) }
.amber-a100 { background-color: var(--paper-amber-a100) }
.amber-a200 { background-color: var(--paper-amber-a200) }
.amber-a400 { background-color: var(--paper-amber-a400) }
.amber-a700 { background-color: var(--paper-amber-a700) }
.orange-50 { background-color: var(--paper-orange-50) }
.orange-100 { background-color: var(--paper-orange-100) }
.orange-200 { background-color: var(--paper-orange-200) }
.orange-300 { background-color: var(--paper-orange-300) }
.orange-400 { background-color: var(--paper-orange-400) }
.orange-500 { background-color: var(--paper-orange-500) }
.orange-600 { background-color: var(--paper-orange-600) }
.orange-700 { background-color: var(--paper-orange-700) }
.orange-800 { background-color: var(--paper-orange-800) }
.orange-900 { background-color: var(--paper-orange-900) }
.orange-a100 { background-color: var(--paper-orange-a100) }
.orange-a200 { background-color: var(--paper-orange-a200) }
.orange-a400 { background-color: var(--paper-orange-a400) }
.orange-a700 { background-color: var(--paper-orange-a700) }
.deep-orange-50 { background-color: var(--paper-deep-orange-50) }
.deep-orange-100 { background-color: var(--paper-deep-orange-100) }
.deep-orange-200 { background-color: var(--paper-deep-orange-200) }
.deep-orange-300 { background-color: var(--paper-deep-orange-300) }
.deep-orange-400 { background-color: var(--paper-deep-orange-400) }
.deep-orange-500 { background-color: var(--paper-deep-orange-500) }
.deep-orange-600 { background-color: var(--paper-deep-orange-600) }
.deep-orange-700 { background-color: var(--paper-deep-orange-700) }
.deep-orange-800 { background-color: var(--paper-deep-orange-800) }
.deep-orange-900 { background-color: var(--paper-deep-orange-900) }
.deep-orange-a100 { background-color: var(--paper-deep-orange-a10) }
.deep-orange-a200 { background-color: var(--paper-deep-orange-a20) }
.deep-orange-a400 { background-color: var(--paper-deep-orange-a40) }
.deep-orange-a700 { background-color: var(--paper-deep-orange-a70) }
.brown-50 { background-color: var(--paper-brown-50) }
.brown-100 { background-color: var(--paper-brown-100) }
.brown-200 { background-color: var(--paper-brown-200) }
.brown-300 { background-color: var(--paper-brown-300) }
.brown-400 { background-color: var(--paper-brown-400) }
.brown-500 { background-color: var(--paper-brown-500) }
.brown-600 { background-color: var(--paper-brown-600) }
.brown-700 { background-color: var(--paper-brown-700) }
.brown-800 { background-color: var(--paper-brown-800) }
.brown-900 { background-color: var(--paper-brown-900) }
.grey-50 { background-color: var(--paper-grey-50) }
.grey-100 { background-color: var(--paper-grey-100) }
.grey-200 { background-color: var(--paper-grey-200) }
.grey-300 { background-color: var(--paper-grey-300) }
.grey-400 { background-color: var(--paper-grey-400) }
.grey-500 { background-color: var(--paper-grey-500) }
.grey-600 { background-color: var(--paper-grey-600) }
.grey-700 { background-color: var(--paper-grey-700) }
.grey-800 { background-color: var(--paper-grey-800) }
.grey-900 { background-color: var(--paper-grey-900) }
.blue-grey-50 { background-color: var(--paper-blue-grey-50) }
.blue-grey-100 { background-color: var(--paper-blue-grey-100) }
.blue-grey-200 { background-color: var(--paper-blue-grey-200) }
.blue-grey-300 { background-color: var(--paper-blue-grey-300) }
.blue-grey-400 { background-color: var(--paper-blue-grey-400) }
.blue-grey-500 { background-color: var(--paper-blue-grey-500) }
.blue-grey-600 { background-color: var(--paper-blue-grey-600) }
.blue-grey-700 { background-color: var(--paper-blue-grey-700) }
.blue-grey-800 { background-color: var(--paper-blue-grey-800) }
.blue-grey-900 { background-color: var(--paper-blue-grey-900) }
/* Set color */
.color-red-50 { color: var(--paper-red-50) }
.color-red-100 { color: var(--paper-red-100) }
.color-red-200 { color: var(--paper-red-200) }
.color-red-300 { color: var(--paper-red-300) }
.color-red-400 { color: var(--paper-red-400) }
.color-red-500 { color: var(--paper-red-500) }
.color-red-600 { color: var(--paper-red-600) }
.color-red-700 { color: var(--paper-red-700) }
.color-red-800 { color: var(--paper-red-800) }
.color-red-900 { color: var(--paper-red-900) }
.color-red-a100 { color: var(--paper-red-a100) }
.color-red-a200 { color: var(--paper-red-a200) }
.color-red-a400 { color: var(--paper-red-a400) }
.color-red-a700 { color: var(--paper-red-a700) }
.color-pink-50 { color: var(--paper-pink-50) }
.color-pink-100 { color: var(--paper-pink-100) }
.color-pink-200 { color: var(--paper-pink-200) }
.color-pink-300 { color: var(--paper-pink-300) }
.color-pink-400 { color: var(--paper-pink-400) }
.color-pink-500 { color: var(--paper-pink-500) }
.color-pink-600 { color: var(--paper-pink-600) }
.color-pink-700 { color: var(--paper-pink-700) }
.color-pink-800 { color: var(--paper-pink-800) }
.color-pink-900 { color: var(--paper-pink-900) }
.color-pink-a100 { color: var(--paper-pink-a100) }
.color-pink-a200 { color: var(--paper-pink-a200) }
.color-pink-a400 { color: var(--paper-pink-a400) }
.color-pink-a700 { color: var(--paper-pink-a700) }
.color-purple-50 { color: var(--paper-purple-50) }
.color-purple-100 { color: var(--paper-purple-100) }
.color-purple-200 { color: var(--paper-purple-200) }
.color-purple-300 { color: var(--paper-purple-300) }
.color-purple-400 { color: var(--paper-purple-400) }
.color-purple-500 { color: var(--paper-purple-500) }
.color-purple-600 { color: var(--paper-purple-600) }
.color-purple-700 { color: var(--paper-purple-700) }
.color-purple-800 { color: var(--paper-purple-800) }
.color-purple-900 { color: var(--paper-purple-900) }
.color-purple-a100 { color: var(--paper-purple-a100) }
.color-purple-a200 { color: var(--paper-purple-a200) }
.color-purple-a400 { color: var(--paper-purple-a400) }
.color-purple-a700 { color: var(--paper-purple-a700) }
.color-deep-purple-50 { color: var(--paper-deep-purple-50) }
.color-deep-purple-100 { color: var(--paper-deep-purple-100) }
.color-deep-purple-200 { color: var(--paper-deep-purple-200) }
.color-deep-purple-300 { color: var(--paper-deep-purple-300) }
.color-deep-purple-400 { color: var(--paper-deep-purple-400) }
.color-deep-purple-500 { color: var(--paper-deep-purple-500) }
.color-deep-purple-600 { color: var(--paper-deep-purple-600) }
.color-deep-purple-700 { color: var(--paper-deep-purple-700) }
.color-deep-purple-800 { color: var(--paper-deep-purple-800) }
.color-deep-purple-900 { color: var(--paper-deep-purple-900) }
.color-deep-purple-a100 { color: var(--paper-deep-purple-a10) }
.color-deep-purple-a200 { color: var(--paper-deep-purple-a20) }
.color-deep-purple-a400 { color: var(--paper-deep-purple-a40) }
.color-deep-purple-a700 { color: var(--paper-deep-purple-a70) }
.color-indigo-50 { color: var(--paper-indigo-50) }
.color-indigo-100 { color: var(--paper-indigo-100) }
.color-indigo-200 { color: var(--paper-indigo-200) }
.color-indigo-300 { color: var(--paper-indigo-300) }
.color-indigo-400 { color: var(--paper-indigo-400) }
.color-indigo-500 { color: var(--paper-indigo-500) }
.color-indigo-600 { color: var(--paper-indigo-600) }
.color-indigo-700 { color: var(--paper-indigo-700) }
.color-indigo-800 { color: var(--paper-indigo-800) }
.color-indigo-900 { color: var(--paper-indigo-900) }
.color-indigo-a100 { color: var(--paper-indigo-a100) }
.color-indigo-a200 { color: var(--paper-indigo-a200) }
.color-indigo-a400 { color: var(--paper-indigo-a400) }
.color-indigo-a700 { color: var(--paper-indigo-a700) }
.color-blue-50 { color: var(--paper-blue-50) }
.color-blue-100 { color: var(--paper-blue-100) }
.color-blue-200 { color: var(--paper-blue-200) }
.color-blue-300 { color: var(--paper-blue-300) }
.color-blue-400 { color: var(--paper-blue-400) }
.color-blue-500 { color: var(--paper-blue-500) }
.color-blue-600 { color: var(--paper-blue-600) }
.color-blue-700 { color: var(--paper-blue-700) }
.color-blue-800 { color: var(--paper-blue-800) }
.color-blue-900 { color: var(--paper-blue-900) }
.color-blue-a100 { color: var(--paper-blue-a100) }
.color-blue-a200 { color: var(--paper-blue-a200) }
.color-blue-a400 { color: var(--paper-blue-a400) }
.color-blue-a700 { color: var(--paper-blue-a700) }
.color-light-blue-50 { color: var(--paper-light-blue-50) }
.color-light-blue-100 { color: var(--paper-light-blue-100) }
.color-light-blue-200 { color: var(--paper-light-blue-200) }
.color-light-blue-300 { color: var(--paper-light-blue-300) }
.color-light-blue-400 { color: var(--paper-light-blue-400) }
.color-light-blue-500 { color: var(--paper-light-blue-500) }
.color-light-blue-600 { color: var(--paper-light-blue-600) }
.color-light-blue-700 { color: var(--paper-light-blue-700) }
.color-light-blue-800 { color: var(--paper-light-blue-800) }
.color-light-blue-900 { color: var(--paper-light-blue-900) }
.color-light-blue-a100 { color: var(--paper-light-blue-a100) }
.color-light-blue-a200 { color: var(--paper-light-blue-a200) }
.color-light-blue-a400 { color: var(--paper-light-blue-a400) }
.color-light-blue-a700 { color: var(--paper-light-blue-a700) }
.color-cyan-50 { color: var(--paper-cyan-50) }
.color-cyan-100 { color: var(--paper-cyan-100) }
.color-cyan-200 { color: var(--paper-cyan-200) }
.color-cyan-300 { color: var(--paper-cyan-300) }
.color-cyan-400 { color: var(--paper-cyan-400) }
.color-cyan-500 { color: var(--paper-cyan-500) }
.color-cyan-600 { color: var(--paper-cyan-600) }
.color-cyan-700 { color: var(--paper-cyan-700) }
.color-cyan-800 { color: var(--paper-cyan-800) }
.color-cyan-900 { color: var(--paper-cyan-900) }
.color-cyan-a100 { color: var(--paper-cyan-a100) }
.color-cyan-a200 { color: var(--paper-cyan-a200) }
.color-cyan-a400 { color: var(--paper-cyan-a400) }
.color-cyan-a700 { color: var(--paper-cyan-a700) }
.color-teal-50 { color: var(--paper-teal-50) }
.color-teal-100 { color: var(--paper-teal-100) }
.color-teal-200 { color: var(--paper-teal-200) }
.color-teal-300 { color: var(--paper-teal-300) }
.color-teal-400 { color: var(--paper-teal-400) }
.color-teal-500 { color: var(--paper-teal-500) }
.color-teal-600 { color: var(--paper-teal-600) }
.color-teal-700 { color: var(--paper-teal-700) }
.color-teal-800 { color: var(--paper-teal-800) }
.color-teal-900 { color: var(--paper-teal-900) }
.color-teal-a100 { color: var(--paper-teal-a100) }
.color-teal-a200 { color: var(--paper-teal-a200) }
.color-teal-a400 { color: var(--paper-teal-a400) }
.color-teal-a700 { color: var(--paper-teal-a700) }
.color-green-50 { color: var(--paper-green-50) }
.color-green-100 { color: var(--paper-green-100) }
.color-green-200 { color: var(--paper-green-200) }
.color-green-300 { color: var(--paper-green-300) }
.color-green-400 { color: var(--paper-green-400) }
.color-green-500 { color: var(--paper-green-500) }
.color-green-600 { color: var(--paper-green-600) }
.color-green-700 { color: var(--paper-green-700) }
.color-green-800 { color: var(--paper-green-800) }
.color-green-900 { color: var(--paper-green-900) }
.color-green-a100 { color: var(--paper-green-a100) }
.color-green-a200 { color: var(--paper-green-a200) }
.color-green-a400 { color: var(--paper-green-a400) }
.color-green-a700 { color: var(--paper-green-a700) }
.color-light-green-50 { color: var(--paper-light-green-50) }
.color-light-green-100 { color: var(--paper-light-green-100) }
.color-light-green-200 { color: var(--paper-light-green-200) }
.color-light-green-300 { color: var(--paper-light-green-300) }
.color-light-green-400 { color: var(--paper-light-green-400) }
.color-light-green-500 { color: var(--paper-light-green-500) }
.color-light-green-600 { color: var(--paper-light-green-600) }
.color-light-green-700 { color: var(--paper-light-green-700) }
.color-light-green-800 { color: var(--paper-light-green-800) }
.color-light-green-900 { color: var(--paper-light-green-900) }
.color-light-green-a100 { color: var(--paper-light-green-a10) }
.color-light-green-a200 { color: var(--paper-light-green-a20) }
.color-light-green-a400 { color: var(--paper-light-green-a40) }
.color-light-green-a700 { color: var(--paper-light-green-a70) }
.color-lime-50 { color: var(--paper-lime-50) }
.color-lime-100 { color: var(--paper-lime-100) }
.color-lime-200 { color: var(--paper-lime-200) }
.color-lime-300 { color: var(--paper-lime-300) }
.color-lime-400 { color: var(--paper-lime-400) }
.color-lime-500 { color: var(--paper-lime-500) }
.color-lime-600 { color: var(--paper-lime-600) }
.color-lime-700 { color: var(--paper-lime-700) }
.color-lime-800 { color: var(--paper-lime-800) }
.color-lime-900 { color: var(--paper-lime-900) }
.color-lime-a100 { color: var(--paper-lime-a100) }
.color-lime-a200 { color: var(--paper-lime-a200) }
.color-lime-a400 { color: var(--paper-lime-a400) }
.color-lime-a700 { color: var(--paper-lime-a700) }
.color-yellow-50 { color: var(--paper-yellow-50) }
.color-yellow-100 { color: var(--paper-yellow-100) }
.color-yellow-200 { color: var(--paper-yellow-200) }
.color-yellow-300 { color: var(--paper-yellow-300) }
.color-yellow-400 { color: var(--paper-yellow-400) }
.color-yellow-500 { color: var(--paper-yellow-500) }
.color-yellow-600 { color: var(--paper-yellow-600) }
.color-yellow-700 { color: var(--paper-yellow-700) }
.color-yellow-800 { color: var(--paper-yellow-800) }
.color-yellow-900 { color: var(--paper-yellow-900) }
.color-yellow-a100 { color: var(--paper-yellow-a100) }
.color-yellow-a200 { color: var(--paper-yellow-a200) }
.color-yellow-a400 { color: var(--paper-yellow-a400) }
.color-yellow-a700 { color: var(--paper-yellow-a700) }
.color-amber-50 { color: var(--paper-amber-50) }
.color-amber-100 { color: var(--paper-amber-100) }
.color-amber-200 { color: var(--paper-amber-200) }
.color-amber-300 { color: var(--paper-amber-300) }
.color-amber-400 { color: var(--paper-amber-400) }
.color-amber-500 { color: var(--paper-amber-500) }
.color-amber-600 { color: var(--paper-amber-600) }
.color-amber-700 { color: var(--paper-amber-700) }
.color-amber-800 { color: var(--paper-amber-800) }
.color-amber-900 { color: var(--paper-amber-900) }
.color-amber-a100 { color: var(--paper-amber-a100) }
.color-amber-a200 { color: var(--paper-amber-a200) }
.color-amber-a400 { color: var(--paper-amber-a400) }
.color-amber-a700 { color: var(--paper-amber-a700) }
.color-orange-50 { color: var(--paper-orange-50) }
.color-orange-100 { color: var(--paper-orange-100) }
.color-orange-200 { color: var(--paper-orange-200) }
.color-orange-300 { color: var(--paper-orange-300) }
.color-orange-400 { color: var(--paper-orange-400) }
.color-orange-500 { color: var(--paper-orange-500) }
.color-orange-600 { color: var(--paper-orange-600) }
.color-orange-700 { color: var(--paper-orange-700) }
.color-orange-800 { color: var(--paper-orange-800) }
.color-orange-900 { color: var(--paper-orange-900) }
.color-orange-a100 { color: var(--paper-orange-a100) }
.color-orange-a200 { color: var(--paper-orange-a200) }
.color-orange-a400 { color: var(--paper-orange-a400) }
.color-orange-a700 { color: var(--paper-orange-a700) }
.color-deep-orange-50 { color: var(--paper-deep-orange-50) }
.color-deep-orange-100 { color: var(--paper-deep-orange-100) }
.color-deep-orange-200 { color: var(--paper-deep-orange-200) }
.color-deep-orange-300 { color: var(--paper-deep-orange-300) }
.color-deep-orange-400 { color: var(--paper-deep-orange-400) }
.color-deep-orange-500 { color: var(--paper-deep-orange-500) }
.color-deep-orange-600 { color: var(--paper-deep-orange-600) }
.color-deep-orange-700 { color: var(--paper-deep-orange-700) }
.color-deep-orange-800 { color: var(--paper-deep-orange-800) }
.color-deep-orange-900 { color: var(--paper-deep-orange-900) }
.color-deep-orange-a100 { color: var(--paper-deep-orange-a10) }
.color-deep-orange-a200 { color: var(--paper-deep-orange-a20) }
.color-deep-orange-a400 { color: var(--paper-deep-orange-a40) }
.color-deep-orange-a700 { color: var(--paper-deep-orange-a70) }
.color-brown-50 { color: var(--paper-brown-50) }
.color-brown-100 { color: var(--paper-brown-100) }
.color-brown-200 { color: var(--paper-brown-200) }
.color-brown-300 { color: var(--paper-brown-300) }
.color-brown-400 { color: var(--paper-brown-400) }
.color-brown-500 { color: var(--paper-brown-500) }
.color-brown-600 { color: var(--paper-brown-600) }
.color-brown-700 { color: var(--paper-brown-700) }
.color-brown-800 { color: var(--paper-brown-800) }
.color-brown-900 { color: var(--paper-brown-900) }
.color-grey-50 { color: var(--paper-grey-50) }
.color-grey-100 { color: var(--paper-grey-100) }
.color-grey-200 { color: var(--paper-grey-200) }
.color-grey-300 { color: var(--paper-grey-300) }
.color-grey-400 { color: var(--paper-grey-400) }
.color-grey-500 { color: var(--paper-grey-500) }
.color-grey-600 { color: var(--paper-grey-600) }
.color-grey-700 { color: var(--paper-grey-700) }
.color-grey-800 { color: var(--paper-grey-800) }
.color-grey-900 { color: var(--paper-grey-900) }
.color-blue-grey-50 { color: var(--paper-blue-grey-50) }
.color-blue-grey-100 { color: var(--paper-blue-grey-100) }
.color-blue-grey-200 { color: var(--paper-blue-grey-200) }
.color-blue-grey-300 { color: var(--paper-blue-grey-300) }
.color-blue-grey-400 { color: var(--paper-blue-grey-400) }
.color-blue-grey-500 { color: var(--paper-blue-grey-500) }
.color-blue-grey-600 { color: var(--paper-blue-grey-600) }
.color-blue-grey-700 { color: var(--paper-blue-grey-700) }
.color-blue-grey-800 { color: var(--paper-blue-grey-800) }
.color-blue-grey-900 { color: var(--paper-blue-grey-900) } | app/elements/colors.css | .red-50 { background-color: var(--paper-red-50) }
.red-100 { background-color: var(--paper-red-100) }
.red-200 { background-color: var(--paper-red-200) }
.red-300 { background-color: var(--paper-red-300) }
.red-400 { background-color: var(--paper-red-400) }
.red-500 { background-color: var(--paper-red-500) }
.red-600 { background-color: var(--paper-red-600) }
.red-700 { background-color: var(--paper-red-700) }
.red-800 { background-color: var(--paper-red-800) }
.red-900 { background-color: var(--paper-red-900) }
.red-a100 { background-color: var(--paper-red-a100) }
.red-a200 { background-color: var(--paper-red-a200) }
.red-a400 { background-color: var(--paper-red-a400) }
.red-a700 { background-color: var(--paper-red-a700) }
.pink-50 { background-color: var(--paper-pink-50) }
.pink-100 { background-color: var(--paper-pink-100) }
.pink-200 { background-color: var(--paper-pink-200) }
.pink-300 { background-color: var(--paper-pink-300) }
.pink-400 { background-color: var(--paper-pink-400) }
.pink-500 { background-color: var(--paper-pink-500) }
.pink-600 { background-color: var(--paper-pink-600) }
.pink-700 { background-color: var(--paper-pink-700) }
.pink-800 { background-color: var(--paper-pink-800) }
.pink-900 { background-color: var(--paper-pink-900) }
.pink-a100 { background-color: var(--paper-pink-a100) }
.pink-a200 { background-color: var(--paper-pink-a200) }
.pink-a400 { background-color: var(--paper-pink-a400) }
.pink-a700 { background-color: var(--paper-pink-a700) }
.purple-50 { background-color: var(--paper-purple-50) }
.purple-100 { background-color: var(--paper-purple-100) }
.purple-200 { background-color: var(--paper-purple-200) }
.purple-300 { background-color: var(--paper-purple-300) }
.purple-400 { background-color: var(--paper-purple-400) }
.purple-500 { background-color: var(--paper-purple-500) }
.purple-600 { background-color: var(--paper-purple-600) }
.purple-700 { background-color: var(--paper-purple-700) }
.purple-800 { background-color: var(--paper-purple-800) }
.purple-900 { background-color: var(--paper-purple-900) }
.purple-a100 { background-color: var(--paper-purple-a100) }
.purple-a200 { background-color: var(--paper-purple-a200) }
.purple-a400 { background-color: var(--paper-purple-a400) }
.purple-a700 { background-color: var(--paper-purple-a700) }
.deep-purple-50 { background-color: var(--paper-deep-purple-50) }
.deep-purple-100 { background-color: var(--paper-deep-purple-100) }
.deep-purple-200 { background-color: var(--paper-deep-purple-200) }
.deep-purple-300 { background-color: var(--paper-deep-purple-300) }
.deep-purple-400 { background-color: var(--paper-deep-purple-400) }
.deep-purple-500 { background-color: var(--paper-deep-purple-500) }
.deep-purple-600 { background-color: var(--paper-deep-purple-600) }
.deep-purple-700 { background-color: var(--paper-deep-purple-700) }
.deep-purple-800 { background-color: var(--paper-deep-purple-800) }
.deep-purple-900 { background-color: var(--paper-deep-purple-900) }
.deep-purple-a100 { background-color: var(--paper-deep-purple-a10) }
.deep-purple-a200 { background-color: var(--paper-deep-purple-a20) }
.deep-purple-a400 { background-color: var(--paper-deep-purple-a40) }
.deep-purple-a700 { background-color: var(--paper-deep-purple-a70) }
.indigo-50 { background-color: var(--paper-indigo-50) }
.indigo-100 { background-color: var(--paper-indigo-100) }
.indigo-200 { background-color: var(--paper-indigo-200) }
.indigo-300 { background-color: var(--paper-indigo-300) }
.indigo-400 { background-color: var(--paper-indigo-400) }
.indigo-500 { background-color: var(--paper-indigo-500) }
.indigo-600 { background-color: var(--paper-indigo-600) }
.indigo-700 { background-color: var(--paper-indigo-700) }
.indigo-800 { background-color: var(--paper-indigo-800) }
.indigo-900 { background-color: var(--paper-indigo-900) }
.indigo-a100 { background-color: var(--paper-indigo-a100) }
.indigo-a200 { background-color: var(--paper-indigo-a200) }
.indigo-a400 { background-color: var(--paper-indigo-a400) }
.indigo-a700 { background-color: var(--paper-indigo-a700) }
.blue-50 { background-color: var(--paper-blue-50) }
.blue-100 { background-color: var(--paper-blue-100) }
.blue-200 { background-color: var(--paper-blue-200) }
.blue-300 { background-color: var(--paper-blue-300) }
.blue-400 { background-color: var(--paper-blue-400) }
.blue-500 { background-color: var(--paper-blue-500) }
.blue-600 { background-color: var(--paper-blue-600) }
.blue-700 { background-color: var(--paper-blue-700) }
.blue-800 { background-color: var(--paper-blue-800) }
.blue-900 { background-color: var(--paper-blue-900) }
.blue-a100 { background-color: var(--paper-blue-a100) }
.blue-a200 { background-color: var(--paper-blue-a200) }
.blue-a400 { background-color: var(--paper-blue-a400) }
.blue-a700 { background-color: var(--paper-blue-a700) }
.light-blue-50 { background-color: var(--paper-light-blue-50) }
.light-blue-100 { background-color: var(--paper-light-blue-100) }
.light-blue-200 { background-color: var(--paper-light-blue-200) }
.light-blue-300 { background-color: var(--paper-light-blue-300) }
.light-blue-400 { background-color: var(--paper-light-blue-400) }
.light-blue-500 { background-color: var(--paper-light-blue-500) }
.light-blue-600 { background-color: var(--paper-light-blue-600) }
.light-blue-700 { background-color: var(--paper-light-blue-700) }
.light-blue-800 { background-color: var(--paper-light-blue-800) }
.light-blue-900 { background-color: var(--paper-light-blue-900) }
.light-blue-a100 { background-color: var(--paper-light-blue-a100) }
.light-blue-a200 { background-color: var(--paper-light-blue-a200) }
.light-blue-a400 { background-color: var(--paper-light-blue-a400) }
.light-blue-a700 { background-color: var(--paper-light-blue-a700) }
.cyan-50 { background-color: var(--paper-cyan-50) }
.cyan-100 { background-color: var(--paper-cyan-100) }
.cyan-200 { background-color: var(--paper-cyan-200) }
.cyan-300 { background-color: var(--paper-cyan-300) }
.cyan-400 { background-color: var(--paper-cyan-400) }
.cyan-500 { background-color: var(--paper-cyan-500) }
.cyan-600 { background-color: var(--paper-cyan-600) }
.cyan-700 { background-color: var(--paper-cyan-700) }
.cyan-800 { background-color: var(--paper-cyan-800) }
.cyan-900 { background-color: var(--paper-cyan-900) }
.cyan-a100 { background-color: var(--paper-cyan-a100) }
.cyan-a200 { background-color: var(--paper-cyan-a200) }
.cyan-a400 { background-color: var(--paper-cyan-a400) }
.cyan-a700 { background-color: var(--paper-cyan-a700) }
.teal-50 { background-color: var(--paper-teal-50) }
.teal-100 { background-color: var(--paper-teal-100) }
.teal-200 { background-color: var(--paper-teal-200) }
.teal-300 { background-color: var(--paper-teal-300) }
.teal-400 { background-color: var(--paper-teal-400) }
.teal-500 { background-color: var(--paper-teal-500) }
.teal-600 { background-color: var(--paper-teal-600) }
.teal-700 { background-color: var(--paper-teal-700) }
.teal-800 { background-color: var(--paper-teal-800) }
.teal-900 { background-color: var(--paper-teal-900) }
.teal-a100 { background-color: var(--paper-teal-a100) }
.teal-a200 { background-color: var(--paper-teal-a200) }
.teal-a400 { background-color: var(--paper-teal-a400) }
.teal-a700 { background-color: var(--paper-teal-a700) }
.green-50 { background-color: var(--paper-green-50) }
.green-100 { background-color: var(--paper-green-100) }
.green-200 { background-color: var(--paper-green-200) }
.green-300 { background-color: var(--paper-green-300) }
.green-400 { background-color: var(--paper-green-400) }
.green-500 { background-color: var(--paper-green-500) }
.green-600 { background-color: var(--paper-green-600) }
.green-700 { background-color: var(--paper-green-700) }
.green-800 { background-color: var(--paper-green-800) }
.green-900 { background-color: var(--paper-green-900) }
.green-a100 { background-color: var(--paper-green-a100) }
.green-a200 { background-color: var(--paper-green-a200) }
.green-a400 { background-color: var(--paper-green-a400) }
.green-a700 { background-color: var(--paper-green-a700) }
.light-green-50 { background-color: var(--paper-light-green-50) }
.light-green-100 { background-color: var(--paper-light-green-100) }
.light-green-200 { background-color: var(--paper-light-green-200) }
.light-green-300 { background-color: var(--paper-light-green-300) }
.light-green-400 { background-color: var(--paper-light-green-400) }
.light-green-500 { background-color: var(--paper-light-green-500) }
.light-green-600 { background-color: var(--paper-light-green-600) }
.light-green-700 { background-color: var(--paper-light-green-700) }
.light-green-800 { background-color: var(--paper-light-green-800) }
.light-green-900 { background-color: var(--paper-light-green-900) }
.light-green-a100 { background-color: var(--paper-light-green-a10) }
.light-green-a200 { background-color: var(--paper-light-green-a20) }
.light-green-a400 { background-color: var(--paper-light-green-a40) }
.light-green-a700 { background-color: var(--paper-light-green-a70) }
.lime-50 { background-color: var(--paper-lime-50) }
.lime-100 { background-color: var(--paper-lime-100) }
.lime-200 { background-color: var(--paper-lime-200) }
.lime-300 { background-color: var(--paper-lime-300) }
.lime-400 { background-color: var(--paper-lime-400) }
.lime-500 { background-color: var(--paper-lime-500) }
.lime-600 { background-color: var(--paper-lime-600) }
.lime-700 { background-color: var(--paper-lime-700) }
.lime-800 { background-color: var(--paper-lime-800) }
.lime-900 { background-color: var(--paper-lime-900) }
.lime-a100 { background-color: var(--paper-lime-a100) }
.lime-a200 { background-color: var(--paper-lime-a200) }
.lime-a400 { background-color: var(--paper-lime-a400) }
.lime-a700 { background-color: var(--paper-lime-a700) }
.yellow-50 { background-color: var(--paper-yellow-50) }
.yellow-100 { background-color: var(--paper-yellow-100) }
.yellow-200 { background-color: var(--paper-yellow-200) }
.yellow-300 { background-color: var(--paper-yellow-300) }
.yellow-400 { background-color: var(--paper-yellow-400) }
.yellow-500 { background-color: var(--paper-yellow-500) }
.yellow-600 { background-color: var(--paper-yellow-600) }
.yellow-700 { background-color: var(--paper-yellow-700) }
.yellow-800 { background-color: var(--paper-yellow-800) }
.yellow-900 { background-color: var(--paper-yellow-900) }
.yellow-a100 { background-color: var(--paper-yellow-a100) }
.yellow-a200 { background-color: var(--paper-yellow-a200) }
.yellow-a400 { background-color: var(--paper-yellow-a400) }
.yellow-a700 { background-color: var(--paper-yellow-a700) }
.amber-50 { background-color: var(--paper-amber-50) }
.amber-100 { background-color: var(--paper-amber-100) }
.amber-200 { background-color: var(--paper-amber-200) }
.amber-300 { background-color: var(--paper-amber-300) }
.amber-400 { background-color: var(--paper-amber-400) }
.amber-500 { background-color: var(--paper-amber-500) }
.amber-600 { background-color: var(--paper-amber-600) }
.amber-700 { background-color: var(--paper-amber-700) }
.amber-800 { background-color: var(--paper-amber-800) }
.amber-900 { background-color: var(--paper-amber-900) }
.amber-a100 { background-color: var(--paper-amber-a100) }
.amber-a200 { background-color: var(--paper-amber-a200) }
.amber-a400 { background-color: var(--paper-amber-a400) }
.amber-a700 { background-color: var(--paper-amber-a700) }
.orange-50 { background-color: var(--paper-orange-50) }
.orange-100 { background-color: var(--paper-orange-100) }
.orange-200 { background-color: var(--paper-orange-200) }
.orange-300 { background-color: var(--paper-orange-300) }
.orange-400 { background-color: var(--paper-orange-400) }
.orange-500 { background-color: var(--paper-orange-500) }
.orange-600 { background-color: var(--paper-orange-600) }
.orange-700 { background-color: var(--paper-orange-700) }
.orange-800 { background-color: var(--paper-orange-800) }
.orange-900 { background-color: var(--paper-orange-900) }
.orange-a100 { background-color: var(--paper-orange-a100) }
.orange-a200 { background-color: var(--paper-orange-a200) }
.orange-a400 { background-color: var(--paper-orange-a400) }
.orange-a700 { background-color: var(--paper-orange-a700) }
.deep-orange-50 { background-color: var(--paper-deep-orange-50) }
.deep-orange-100 { background-color: var(--paper-deep-orange-100) }
.deep-orange-200 { background-color: var(--paper-deep-orange-200) }
.deep-orange-300 { background-color: var(--paper-deep-orange-300) }
.deep-orange-400 { background-color: var(--paper-deep-orange-400) }
.deep-orange-500 { background-color: var(--paper-deep-orange-500) }
.deep-orange-600 { background-color: var(--paper-deep-orange-600) }
.deep-orange-700 { background-color: var(--paper-deep-orange-700) }
.deep-orange-800 { background-color: var(--paper-deep-orange-800) }
.deep-orange-900 { background-color: var(--paper-deep-orange-900) }
.deep-orange-a100 { background-color: var(--paper-deep-orange-a10) }
.deep-orange-a200 { background-color: var(--paper-deep-orange-a20) }
.deep-orange-a400 { background-color: var(--paper-deep-orange-a40) }
.deep-orange-a700 { background-color: var(--paper-deep-orange-a70) }
.brown-50 { background-color: var(--paper-brown-50) }
.brown-100 { background-color: var(--paper-brown-100) }
.brown-200 { background-color: var(--paper-brown-200) }
.brown-300 { background-color: var(--paper-brown-300) }
.brown-400 { background-color: var(--paper-brown-400) }
.brown-500 { background-color: var(--paper-brown-500) }
.brown-600 { background-color: var(--paper-brown-600) }
.brown-700 { background-color: var(--paper-brown-700) }
.brown-800 { background-color: var(--paper-brown-800) }
.brown-900 { background-color: var(--paper-brown-900) }
.grey-50 { background-color: var(--paper-grey-50) }
.grey-100 { background-color: var(--paper-grey-100) }
.grey-200 { background-color: var(--paper-grey-200) }
.grey-300 { background-color: var(--paper-grey-300) }
.grey-400 { background-color: var(--paper-grey-400) }
.grey-500 { background-color: var(--paper-grey-500) }
.grey-600 { background-color: var(--paper-grey-600) }
.grey-700 { background-color: var(--paper-grey-700) }
.grey-800 { background-color: var(--paper-grey-800) }
.grey-900 { background-color: var(--paper-grey-900) }
.blue-grey-50 { background-color: var(--paper-blue-grey-50) }
.blue-grey-100 { background-color: var(--paper-blue-grey-100) }
.blue-grey-200 { background-color: var(--paper-blue-grey-200) }
.blue-grey-300 { background-color: var(--paper-blue-grey-300) }
.blue-grey-400 { background-color: var(--paper-blue-grey-400) }
.blue-grey-500 { background-color: var(--paper-blue-grey-500) }
.blue-grey-600 { background-color: var(--paper-blue-grey-600) }
.blue-grey-700 { background-color: var(--paper-blue-grey-700) }
.blue-grey-800 { background-color: var(--paper-blue-grey-800) }
.blue-grey-900 { background-color: var(--paper-blue-grey-900) }
/* Set color */
.color-red-50 { color: var(--paper-red-50) }
.color-red-100 { color: var(--paper-red-100) }
.color-red-200 { color: var(--paper-red-200) }
.color-red-300 { color: var(--paper-red-300) }
.color-red-400 { color: var(--paper-red-400) }
.color-red-500 { color: var(--paper-red-500) }
.color-red-600 { color: var(--paper-red-600) }
.color-red-700 { color: var(--paper-red-700) }
.color-red-800 { color: var(--paper-red-800) }
.color-red-900 { color: var(--paper-red-900) }
.color-red-a100 { color: var(--paper-red-a100) }
.color-red-a200 { color: var(--paper-red-a200) }
.color-red-a400 { color: var(--paper-red-a400) }
.color-red-a700 { color: var(--paper-red-a700) }
.color-pink-50 { color: var(--paper-pink-50) }
.color-pink-100 { color: var(--paper-pink-100) }
.color-pink-200 { color: var(--paper-pink-200) }
.color-pink-300 { color: var(--paper-pink-300) }
.color-pink-400 { color: var(--paper-pink-400) }
.color-pink-500 { color: var(--paper-pink-500) }
.color-pink-600 { color: var(--paper-pink-600) }
.color-pink-700 { color: var(--paper-pink-700) }
.color-pink-800 { color: var(--paper-pink-800) }
.color-pink-900 { color: var(--paper-pink-900) }
.color-pink-a100 { color: var(--paper-pink-a100) }
.color-pink-a200 { color: var(--paper-pink-a200) }
.color-pink-a400 { color: var(--paper-pink-a400) }
.color-pink-a700 { color: var(--paper-pink-a700) }
.color-purple-50 { color: var(--paper-purple-50) }
.color-purple-100 { color: var(--paper-purple-100) }
.color-purple-200 { color: var(--paper-purple-200) }
.color-purple-300 { color: var(--paper-purple-300) }
.color-purple-400 { color: var(--paper-purple-400) }
.color-purple-500 { color: var(--paper-purple-500) }
.color-purple-600 { color: var(--paper-purple-600) }
.color-purple-700 { color: var(--paper-purple-700) }
.color-purple-800 { color: var(--paper-purple-800) }
.color-purple-900 { color: var(--paper-purple-900) }
.color-purple-a100 { color: var(--paper-purple-a100) }
.color-purple-a200 { color: var(--paper-purple-a200) }
.color-purple-a400 { color: var(--paper-purple-a400) }
.color-purple-a700 { color: var(--paper-purple-a700) }
.color-deep-purple-50 { color: var(--paper-deep-purple-50) }
.color-deep-purple-100 { color: var(--paper-deep-purple-100) }
.color-deep-purple-200 { color: var(--paper-deep-purple-200) }
.color-deep-purple-300 { color: var(--paper-deep-purple-300) }
.color-deep-purple-400 { color: var(--paper-deep-purple-400) }
.color-deep-purple-500 { color: var(--paper-deep-purple-500) }
.color-deep-purple-600 { color: var(--paper-deep-purple-600) }
.color-deep-purple-700 { color: var(--paper-deep-purple-700) }
.color-deep-purple-800 { color: var(--paper-deep-purple-800) }
.color-deep-purple-900 { color: var(--paper-deep-purple-900) }
.color-deep-purple-a100 { color: var(--paper-deep-purple-a10) }
.color-deep-purple-a200 { color: var(--paper-deep-purple-a20) }
.color-deep-purple-a400 { color: var(--paper-deep-purple-a40) }
.color-deep-purple-a700 { color: var(--paper-deep-purple-a70) }
.color-indigo-50 { color: var(--paper-indigo-50) }
.color-indigo-100 { color: var(--paper-indigo-100) }
.color-indigo-200 { color: var(--paper-indigo-200) }
.color-indigo-300 { color: var(--paper-indigo-300) }
.color-indigo-400 { color: var(--paper-indigo-400) }
.color-indigo-500 { color: var(--paper-indigo-500) }
.color-indigo-600 { color: var(--paper-indigo-600) }
.color-indigo-700 { color: var(--paper-indigo-700) }
.color-indigo-800 { color: var(--paper-indigo-800) }
.color-indigo-900 { color: var(--paper-indigo-900) }
.color-indigo-a100 { color: var(--paper-indigo-a100) }
.color-indigo-a200 { color: var(--paper-indigo-a200) }
.color-indigo-a400 { color: var(--paper-indigo-a400) }
.color-indigo-a700 { color: var(--paper-indigo-a700) }
.color-blue-50 { color: var(--paper-blue-50) }
.color-blue-100 { color: var(--paper-blue-100) }
.color-blue-200 { color: var(--paper-blue-200) }
.color-blue-300 { color: var(--paper-blue-300) }
.color-blue-400 { color: var(--paper-blue-400) }
.color-blue-500 { color: var(--paper-blue-500) }
.color-blue-600 { color: var(--paper-blue-600) }
.color-blue-700 { color: var(--paper-blue-700) }
.color-blue-800 { color: var(--paper-blue-800) }
.color-blue-900 { color: var(--paper-blue-900) }
.color-blue-a100 { color: var(--paper-blue-a100) }
.color-blue-a200 { color: var(--paper-blue-a200) }
.color-blue-a400 { color: var(--paper-blue-a400) }
.color-blue-a700 { color: var(--paper-blue-a700) }
.color-light-blue-50 { color: var(--paper-light-blue-50) }
.color-light-blue-100 { color: var(--paper-light-blue-100) }
.color-light-blue-200 { color: var(--paper-light-blue-200) }
.color-light-blue-300 { color: var(--paper-light-blue-300) }
.color-light-blue-400 { color: var(--paper-light-blue-400) }
.color-light-blue-500 { color: var(--paper-light-blue-500) }
.color-light-blue-600 { color: var(--paper-light-blue-600) }
.color-light-blue-700 { color: var(--paper-light-blue-700) }
.color-light-blue-800 { color: var(--paper-light-blue-800) }
.color-light-blue-900 { color: var(--paper-light-blue-900) }
.color-light-blue-a100 { color: var(--paper-light-blue-a100) }
.color-light-blue-a200 { color: var(--paper-light-blue-a200) }
.color-light-blue-a400 { color: var(--paper-light-blue-a400) }
.color-light-blue-a700 { color: var(--paper-light-blue-a700) }
.color-cyan-50 { color: var(--paper-cyan-50) }
.color-cyan-100 { color: var(--paper-cyan-100) }
.color-cyan-200 { color: var(--paper-cyan-200) }
.color-cyan-300 { color: var(--paper-cyan-300) }
.color-cyan-400 { color: var(--paper-cyan-400) }
.color-cyan-500 { color: var(--paper-cyan-500) }
.color-cyan-600 { color: var(--paper-cyan-600) }
.color-cyan-700 { color: var(--paper-cyan-700) }
.color-cyan-800 { color: var(--paper-cyan-800) }
.color-cyan-900 { color: var(--paper-cyan-900) }
.color-cyan-a100 { color: var(--paper-cyan-a100) }
.color-cyan-a200 { color: var(--paper-cyan-a200) }
.color-cyan-a400 { color: var(--paper-cyan-a400) }
.color-cyan-a700 { color: var(--paper-cyan-a700) }
.color-teal-50 { color: var(--paper-teal-50) }
.color-teal-100 { color: var(--paper-teal-100) }
.color-teal-200 { color: var(--paper-teal-200) }
.color-teal-300 { color: var(--paper-teal-300) }
.color-teal-400 { color: var(--paper-teal-400) }
.color-teal-500 { color: var(--paper-teal-500) }
.color-teal-600 { color: var(--paper-teal-600) }
.color-teal-700 { color: var(--paper-teal-700) }
.color-teal-800 { color: var(--paper-teal-800) }
.color-teal-900 { color: var(--paper-teal-900) }
.color-teal-a100 { color: var(--paper-teal-a100) }
.color-teal-a200 { color: var(--paper-teal-a200) }
.color-teal-a400 { color: var(--paper-teal-a400) }
.color-teal-a700 { color: var(--paper-teal-a700) }
.color-green-50 { color: var(--paper-green-50) }
.color-green-100 { color: var(--paper-green-100) }
.color-green-200 { color: var(--paper-green-200) }
.color-green-300 { color: var(--paper-green-300) }
.color-green-400 { color: var(--paper-green-400) }
.color-green-500 { color: var(--paper-green-500) }
.color-green-600 { color: var(--paper-green-600) }
.color-green-700 { color: var(--paper-green-700) }
.color-green-800 { color: var(--paper-green-800) }
.color-green-900 { color: var(--paper-green-900) }
.color-green-a100 { color: var(--paper-green-a100) }
.color-green-a200 { color: var(--paper-green-a200) }
.color-green-a400 { color: var(--paper-green-a400) }
.color-green-a700 { color: var(--paper-green-a700) }
.color-light-green-50 { color: var(--paper-light-green-50) }
.color-light-green-100 { color: var(--paper-light-green-100) }
.color-light-green-200 { color: var(--paper-light-green-200) }
.color-light-green-300 { color: var(--paper-light-green-300) }
.color-light-green-400 { color: var(--paper-light-green-400) }
.color-light-green-500 { color: var(--paper-light-green-500) }
.color-light-green-600 { color: var(--paper-light-green-600) }
.color-light-green-700 { color: var(--paper-light-green-700) }
.color-light-green-800 { color: var(--paper-light-green-800) }
.color-light-green-900 { color: var(--paper-light-green-900) }
.color-light-green-a100 { color: var(--paper-light-green-a10) }
.color-light-green-a200 { color: var(--paper-light-green-a20) }
.color-light-green-a400 { color: var(--paper-light-green-a40) }
.color-light-green-a700 { color: var(--paper-light-green-a70) }
.color-lime-50 { color: var(--paper-lime-50) }
.color-lime-100 { color: var(--paper-lime-100) }
.color-lime-200 { color: var(--paper-lime-200) }
.color-lime-300 { color: var(--paper-lime-300) }
.color-lime-400 { color: var(--paper-lime-400) }
.color-lime-500 { color: var(--paper-lime-500) }
.color-lime-600 { color: var(--paper-lime-600) }
.color-lime-700 { color: var(--paper-lime-700) }
.color-lime-800 { color: var(--paper-lime-800) }
.color-lime-900 { color: var(--paper-lime-900) }
.color-lime-a100 { color: var(--paper-lime-a100) }
.color-lime-a200 { color: var(--paper-lime-a200) }
.color-lime-a400 { color: var(--paper-lime-a400) }
.color-lime-a700 { color: var(--paper-lime-a700) }
.color-yellow-50 { color: var(--paper-yellow-50) }
.color-yellow-100 { color: var(--paper-yellow-100) }
.color-yellow-200 { color: var(--paper-yellow-200) }
.color-yellow-300 { color: var(--paper-yellow-300) }
.color-yellow-400 { color: var(--paper-yellow-400) }
.color-yellow-500 { color: var(--paper-yellow-500) }
.color-yellow-600 { color: var(--paper-yellow-600) }
.color-yellow-700 { color: var(--paper-yellow-700) }
.color-yellow-800 { color: var(--paper-yellow-800) }
.color-yellow-900 { color: var(--paper-yellow-900) }
.color-yellow-a100 { color: var(--paper-yellow-a100) }
.color-yellow-a200 { color: var(--paper-yellow-a200) }
.color-yellow-a400 { color: var(--paper-yellow-a400) }
.color-yellow-a700 { color: var(--paper-yellow-a700) }
.color-amber-50 { color: var(--paper-amber-50) }
.color-amber-100 { color: var(--paper-amber-100) }
.color-amber-200 { color: var(--paper-amber-200) }
.color-amber-300 { color: var(--paper-amber-300) }
.color-amber-400 { color: var(--paper-amber-400) }
.color-amber-500 { color: var(--paper-amber-500) }
.color-amber-600 { color: var(--paper-amber-600) }
.color-amber-700 { color: var(--paper-amber-700) }
.color-amber-800 { color: var(--paper-amber-800) }
.color-amber-900 { color: var(--paper-amber-900) }
.color-amber-a100 { color: var(--paper-amber-a100) }
.color-amber-a200 { color: var(--paper-amber-a200) }
.color-amber-a400 { color: var(--paper-amber-a400) }
.color-amber-a700 { color: var(--paper-amber-a700) }
.color-orange-50 { color: var(--paper-orange-50) }
.color-orange-100 { color: var(--paper-orange-100) }
.color-orange-200 { color: var(--paper-orange-200) }
.color-orange-300 { color: var(--paper-orange-300) }
.color-orange-400 { color: var(--paper-orange-400) }
.color-orange-500 { color: var(--paper-orange-500) }
.color-orange-600 { color: var(--paper-orange-600) }
.color-orange-700 { color: var(--paper-orange-700) }
.color-orange-800 { color: var(--paper-orange-800) }
.color-orange-900 { color: var(--paper-orange-900) }
.color-orange-a100 { color: var(--paper-orange-a100) }
.color-orange-a200 { color: var(--paper-orange-a200) }
.color-orange-a400 { color: var(--paper-orange-a400) }
.color-orange-a700 { color: var(--paper-orange-a700) }
.color-deep-orange-50 { color: var(--paper-deep-orange-50) }
.color-deep-orange-100 { color: var(--paper-deep-orange-100) }
.color-deep-orange-200 { color: var(--paper-deep-orange-200) }
.color-deep-orange-300 { color: var(--paper-deep-orange-300) }
.color-deep-orange-400 { color: var(--paper-deep-orange-400) }
.color-deep-orange-500 { color: var(--paper-deep-orange-500) }
.color-deep-orange-600 { color: var(--paper-deep-orange-600) }
.color-deep-orange-700 { color: var(--paper-deep-orange-700) }
.color-deep-orange-800 { color: var(--paper-deep-orange-800) }
.color-deep-orange-900 { color: var(--paper-deep-orange-900) }
.color-deep-orange-a100 { color: var(--paper-deep-orange-a10) }
.color-deep-orange-a200 { color: var(--paper-deep-orange-a20) }
.color-deep-orange-a400 { color: var(--paper-deep-orange-a40) }
.color-deep-orange-a700 { color: var(--paper-deep-orange-a70) }
.color-brown-50 { color: var(--paper-brown-50) }
.color-brown-100 { color: var(--paper-brown-100) }
.color-brown-200 { color: var(--paper-brown-200) }
.color-brown-300 { color: var(--paper-brown-300) }
.color-brown-400 { color: var(--paper-brown-400) }
.color-brown-500 { color: var(--paper-brown-500) }
.color-brown-600 { color: var(--paper-brown-600) }
.color-brown-700 { color: var(--paper-brown-700) }
.color-brown-800 { color: var(--paper-brown-800) }
.color-brown-900 { color: var(--paper-brown-900) }
.color-grey-50 { color: var(--paper-grey-50) }
.color-grey-100 { color: var(--paper-grey-100) }
.color-grey-200 { color: var(--paper-grey-200) }
.color-grey-300 { color: var(--paper-grey-300) }
.color-grey-400 { color: var(--paper-grey-400) }
.color-grey-500 { color: var(--paper-grey-500) }
.color-grey-600 { color: var(--paper-grey-600) }
.color-grey-700 { color: var(--paper-grey-700) }
.color-grey-800 { color: var(--paper-grey-800) }
.color-grey-900 { color: var(--paper-grey-900) }
.color-blue-grey-50 { color: var(--paper-blue-grey-50) }
.color-blue-grey-100 { color: var(--paper-blue-grey-100) }
.color-blue-grey-200 { color: var(--paper-blue-grey-200) }
.color-blue-grey-300 { color: var(--paper-blue-grey-300) }
.color-blue-grey-400 { color: var(--paper-blue-grey-400) }
.color-blue-grey-500 { color: var(--paper-blue-grey-500) }
.color-blue-grey-600 { color: var(--paper-blue-grey-600) }
.color-blue-grey-700 { color: var(--paper-blue-grey-700) }
.color-blue-grey-800 { color: var(--paper-blue-grey-800) }
.color-blue-grey-900 { color: var(--paper-blue-grey-900) } | 0.786541 | 0.219902 |
@import url("https://cdnjs.cloudflare.com/ajax/libs/inter-ui/3.18.0/inter.css");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-size: 14px;
--color-button-text: #fff;
--color-primary-100: #dee3ea;
--color-primary-200: #b2bdcd;
--color-primary-300: #5d7290;
--color-primary-600: #323d4d;
--color-primary-700: #242c37;
--color-primary-800: #151a21;
--color-primary-900: #0b0e11;
--color-secondary-washed-out: #879eed;
--color-secondary: #5575e7;
--color-accent-glow: rgba(253, 77, 77, 0.3);
--color-accent: #fd4d4d;
--color-accent-hover: #fd6868;
--color-accent-disabled: #f5bfbf;
--screen-height-reduction: 0px;
}
h1,
h2,
h3,
h4,
p {
line-height: 1.6;
}
.image-crop {
width: 100%;
height: 90%;
-webkit-filter: brightness(80%);
filter: brightness(80%);
}
.h-12 {
height: 20% !important;
}
.inter {
font-family: "Inter", sans-serif;
}
.text-gray {
--tw-text-opacity: 1;
color: rgba(132, 136, 142, var(--tw-text-opacity));
}
.mr-15rem {
margin-right: 15rem;
}
@media (min-width: 768px) {
.image-crop {
object-fit: cover;
width: 30vw;
height: 60vh;
}
.w-60rem {
width: 30vw;
}
}
.form__field__half {
width: 50% !important;
display: inline-block !important;
padding-right: 10%;
}
.form_field__overide {
width: 80% !important;
}
.px-14 {
padding-left: 12rem !important;
padding-right: 12rem !important;
}
.text-white {
--tw-text-opacity: 1;
color: rgba(255, 255, 255, var(--tw-text-opacity));
}
h1,
h2,
h3,
h4,
p.bold {
font-weight: 700;
}
* {
scrollbar-width: thin;
scrollbar-color: var(--color-primary-700) rgba(0, 0, 0, 0);
}
html,
body,
#root {
background-color: var(--color-primary-900);
height: 100%;
width: 100%;
display: flex;
}
* {
padding: 0;
margin: 0;
}
.form__group {
position: relative;
padding: 1.5vh 0 0;
margin-top: 1vh;
}
.form__field {
font-family: inherit;
width: 100%;
border: 0;
border-bottom: 0.1vh solid #5c5c5c;
outline: 0;
font-size: 1.3rem;
color: #fff;
background: transparent;
}
.form__field::placeholder {
color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
font-size: 1.3rem;
cursor: text;
top: 0px;
}
.error {
margin-top: 0.5vh;
color: var(--color-accent-disabled);
}
.link {
color: var(--color-accent-disabled);
}
.form__label {
position: absolute;
top: 0;
display: block;
transition: 0.2s;
font-size: 1rem;
color: #9b9b9b;
}
.form__field:focus {
padding-bottom: 0.8vh;
font-weight: 700;
border-width: 3px;
border-image-slice: 1;
}
/* reset input */
.form__field:required,
.form__field:invalid {
box-shadow: none;
}
.mr-15rem {
margin-right: 15rem;
}
.bg-custom {
background-color: #151A21;
} | src/styles/index.css | @import url("https://cdnjs.cloudflare.com/ajax/libs/inter-ui/3.18.0/inter.css");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-size: 14px;
--color-button-text: #fff;
--color-primary-100: #dee3ea;
--color-primary-200: #b2bdcd;
--color-primary-300: #5d7290;
--color-primary-600: #323d4d;
--color-primary-700: #242c37;
--color-primary-800: #151a21;
--color-primary-900: #0b0e11;
--color-secondary-washed-out: #879eed;
--color-secondary: #5575e7;
--color-accent-glow: rgba(253, 77, 77, 0.3);
--color-accent: #fd4d4d;
--color-accent-hover: #fd6868;
--color-accent-disabled: #f5bfbf;
--screen-height-reduction: 0px;
}
h1,
h2,
h3,
h4,
p {
line-height: 1.6;
}
.image-crop {
width: 100%;
height: 90%;
-webkit-filter: brightness(80%);
filter: brightness(80%);
}
.h-12 {
height: 20% !important;
}
.inter {
font-family: "Inter", sans-serif;
}
.text-gray {
--tw-text-opacity: 1;
color: rgba(132, 136, 142, var(--tw-text-opacity));
}
.mr-15rem {
margin-right: 15rem;
}
@media (min-width: 768px) {
.image-crop {
object-fit: cover;
width: 30vw;
height: 60vh;
}
.w-60rem {
width: 30vw;
}
}
.form__field__half {
width: 50% !important;
display: inline-block !important;
padding-right: 10%;
}
.form_field__overide {
width: 80% !important;
}
.px-14 {
padding-left: 12rem !important;
padding-right: 12rem !important;
}
.text-white {
--tw-text-opacity: 1;
color: rgba(255, 255, 255, var(--tw-text-opacity));
}
h1,
h2,
h3,
h4,
p.bold {
font-weight: 700;
}
* {
scrollbar-width: thin;
scrollbar-color: var(--color-primary-700) rgba(0, 0, 0, 0);
}
html,
body,
#root {
background-color: var(--color-primary-900);
height: 100%;
width: 100%;
display: flex;
}
* {
padding: 0;
margin: 0;
}
.form__group {
position: relative;
padding: 1.5vh 0 0;
margin-top: 1vh;
}
.form__field {
font-family: inherit;
width: 100%;
border: 0;
border-bottom: 0.1vh solid #5c5c5c;
outline: 0;
font-size: 1.3rem;
color: #fff;
background: transparent;
}
.form__field::placeholder {
color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
font-size: 1.3rem;
cursor: text;
top: 0px;
}
.error {
margin-top: 0.5vh;
color: var(--color-accent-disabled);
}
.link {
color: var(--color-accent-disabled);
}
.form__label {
position: absolute;
top: 0;
display: block;
transition: 0.2s;
font-size: 1rem;
color: #9b9b9b;
}
.form__field:focus {
padding-bottom: 0.8vh;
font-weight: 700;
border-width: 3px;
border-image-slice: 1;
}
/* reset input */
.form__field:required,
.form__field:invalid {
box-shadow: none;
}
.mr-15rem {
margin-right: 15rem;
}
.bg-custom {
background-color: #151A21;
} | 0.376852 | 0.068071 |
@font-face {
font-family: 'Size Font';
src: url('/res/font/SourceCodeVariable-Roman.ttf');
}
.block-bg {
-fx-background-color: #ffffff;
-fx-background-radius: 5px;
-fx-border-color: rgba(0, 0, 0, 0.48);
-fx-border-width: 1px;
-fx-border-radius: 5px;
-fx-pref-width: 300px;
-fx-max-width: 300px;
-fx-min-width: 300px;
-fx-min-height: 310px;
-fx-max-height: 310px;
-fx-pref-height: 310px;
-fx-spacing: 20px;
}
.block-imgbox {
-fx-border-color: rgba(0, 0, 0, 0.24);
-fx-border-width: 1px;
-fx-pref-width: 300px;
-fx-max-width: 300px;
-fx-min-width: 300px;
-fx-min-height: 210px;
-fx-max-height: 210px;
-fx-pref-height: 210px;
}
.block-topbar{
-fx-alignment: center-left;
-fx-pref-width: 240px;
-fx-pref-height: 20px;
-fx-background-color: #ffffff;
}
.block-botbar{
-fx-alignment: center-left;
-fx-pref-width: 240px;
-fx-pref-height: 40px;
-fx-background-color: #ffffff;
/*-fx-background-color: #dddddd;*/
}
.block-menu-basic:hover {
-fx-background-color: rgb(102, 102, 153);
-fx-cursor: hand;
}
.block-menu-basic:focused {
-fx-background-color: rgb(102, 102, 153);
}
.block-box-close{
-fx-background-color: #ffffff;
-fx-pref-width: 15px;
-fx-pref-height: 20px;
-fx-border-width: none;
-fx-background-radius: 100px;
}
.block-box-close:hover{
-fx-cursor: hand;
-fx-background-color: rgba(255, 119, 210, 0.73);
}
.block-box{
-fx-pref-width: 225px;
-fx-alignment: center-right;
}
.block-menu-bt {
-fx-alignment: center-right;
-fx-background-color: #ffffff;
-fx-pref-width: 10px;
-fx-pref-height: 15px;
}
.block-menu-bt:hover {
-fx-cursor: hand;
}
.block-combo {
-fx-alignment: center-right;
-fx-background-color: rgba(0, 0, 0, 0.1);
-fx-border-color: rgba(0, 0, 0, 0.21);
-fx-border-width: 1px;
-fx-pref-width: 125px;
-fx-pref-height: 15px;
}
.background-lable{
-fx-font-size: 50px;
-fx-pref-width: 1024px;
-fx-max-width: 1024px;
-fx-min-width: 1024px;
-fx-min-height: 700px;
-fx-max-height: 700px;
-fx-pref-height: 700px;
/*-fx-border-width: 15px;*/
/*-fx-border-color: red;*/
-fx-text-fill: rgba(0, 0, 0, 0.49);
}
.center-pane{
-fx-pref-width: 1024px;
-fx-max-width: 1024px;
-fx-min-width: 1024px;
-fx-min-height: 700px;
-fx-max-height: 700px;
-fx-pref-height: 700px;
}
/*ๆปๅจๆกcss*/
.scroll-pane {
-fx-padding: 0px;
-fx-background-insets: 0px;
}
.scroll-bar:horizontal, .scroll-bar:vertical{
-fx-background-color:rgba(0, 0, 0, 0.16);
-fx-pref-width: 10px;
}
.increment-button, .decrement-button {
-fx-background-color: transparent;
-fx-border-color: transparent;
}
.scroll-bar:horizontal .track,
.scroll-bar:vertical .track{
-fx-background-color: transparent;
-fx-border-color: transparent;
/*-fx-background-radius: 0em;*/
}
.scroll-bar:horizontal .thumb,
.scroll-bar:vertical .thumb {
-fx-background-color: white;
/*-fx-background-radius: 5em;*/
}
.main-box {
-fx-padding: 20px;
-fx-hgap: 30px;
-fx-vgap: 30px;
}
.top-pane{
-fx-min-height: 100px;
-fx-max-height: 100px;
-fx-pref-height: 100px;
-fx-background-color: #ff565b;
}
.top-manebar{
-fx-pref-height: 20px;
-fx-background-color: rgb(221, 221, 221);
}
.top-ctrl{
-fx-pref-height: 80px;
-fx-alignment: center-left;
-fx-background-color: rgb(252, 252, 252);
}
.top-ctrl-bt{
-fx-alignment: center;
-fx-background-color: rgb(252, 252, 252);
-fx-border-width: 0px;
}
.top-ctrl-bt:hover{
-fx-cursor: hand;
}
.size-Label{
-fx-font-family: "Size Font";
-fx-font-size: 12px;
}
.sizeBox{
-fx-alignment: bottom-right;
-fx-min-width: 125px;
-fx-max-width: 125px;
}
.transbar{
-fx-alignment: center-left;
-fx-pref-height: 40px;
/*-fx-background-color: #ff3550;*/
}
.toRightBox{
-fx-pref-height: 80px;
-fx-alignment: center-right;
-fx-pref-width: 550px;
/*-fx-background-color: #d251ff;*/
}
.imgDownloadBox{
-fx-pref-height: 50px;
-fx-max-height: 50px;
-fx-min-height: 50px;
-fx-background-color: #fff;
-fx-alignment: center-left;
-fx-border-width: 1px;
-fx-border-color: #B5B5B5;
-fx-border-radius: 5px;
-fx-background-radius: 5px;
}
.btImgIdInput{
-fx-pref-height: 50px;
-fx-background-color: #ffffff;
} | src/css/imgblock.css | @font-face {
font-family: 'Size Font';
src: url('/res/font/SourceCodeVariable-Roman.ttf');
}
.block-bg {
-fx-background-color: #ffffff;
-fx-background-radius: 5px;
-fx-border-color: rgba(0, 0, 0, 0.48);
-fx-border-width: 1px;
-fx-border-radius: 5px;
-fx-pref-width: 300px;
-fx-max-width: 300px;
-fx-min-width: 300px;
-fx-min-height: 310px;
-fx-max-height: 310px;
-fx-pref-height: 310px;
-fx-spacing: 20px;
}
.block-imgbox {
-fx-border-color: rgba(0, 0, 0, 0.24);
-fx-border-width: 1px;
-fx-pref-width: 300px;
-fx-max-width: 300px;
-fx-min-width: 300px;
-fx-min-height: 210px;
-fx-max-height: 210px;
-fx-pref-height: 210px;
}
.block-topbar{
-fx-alignment: center-left;
-fx-pref-width: 240px;
-fx-pref-height: 20px;
-fx-background-color: #ffffff;
}
.block-botbar{
-fx-alignment: center-left;
-fx-pref-width: 240px;
-fx-pref-height: 40px;
-fx-background-color: #ffffff;
/*-fx-background-color: #dddddd;*/
}
.block-menu-basic:hover {
-fx-background-color: rgb(102, 102, 153);
-fx-cursor: hand;
}
.block-menu-basic:focused {
-fx-background-color: rgb(102, 102, 153);
}
.block-box-close{
-fx-background-color: #ffffff;
-fx-pref-width: 15px;
-fx-pref-height: 20px;
-fx-border-width: none;
-fx-background-radius: 100px;
}
.block-box-close:hover{
-fx-cursor: hand;
-fx-background-color: rgba(255, 119, 210, 0.73);
}
.block-box{
-fx-pref-width: 225px;
-fx-alignment: center-right;
}
.block-menu-bt {
-fx-alignment: center-right;
-fx-background-color: #ffffff;
-fx-pref-width: 10px;
-fx-pref-height: 15px;
}
.block-menu-bt:hover {
-fx-cursor: hand;
}
.block-combo {
-fx-alignment: center-right;
-fx-background-color: rgba(0, 0, 0, 0.1);
-fx-border-color: rgba(0, 0, 0, 0.21);
-fx-border-width: 1px;
-fx-pref-width: 125px;
-fx-pref-height: 15px;
}
.background-lable{
-fx-font-size: 50px;
-fx-pref-width: 1024px;
-fx-max-width: 1024px;
-fx-min-width: 1024px;
-fx-min-height: 700px;
-fx-max-height: 700px;
-fx-pref-height: 700px;
/*-fx-border-width: 15px;*/
/*-fx-border-color: red;*/
-fx-text-fill: rgba(0, 0, 0, 0.49);
}
.center-pane{
-fx-pref-width: 1024px;
-fx-max-width: 1024px;
-fx-min-width: 1024px;
-fx-min-height: 700px;
-fx-max-height: 700px;
-fx-pref-height: 700px;
}
/*ๆปๅจๆกcss*/
.scroll-pane {
-fx-padding: 0px;
-fx-background-insets: 0px;
}
.scroll-bar:horizontal, .scroll-bar:vertical{
-fx-background-color:rgba(0, 0, 0, 0.16);
-fx-pref-width: 10px;
}
.increment-button, .decrement-button {
-fx-background-color: transparent;
-fx-border-color: transparent;
}
.scroll-bar:horizontal .track,
.scroll-bar:vertical .track{
-fx-background-color: transparent;
-fx-border-color: transparent;
/*-fx-background-radius: 0em;*/
}
.scroll-bar:horizontal .thumb,
.scroll-bar:vertical .thumb {
-fx-background-color: white;
/*-fx-background-radius: 5em;*/
}
.main-box {
-fx-padding: 20px;
-fx-hgap: 30px;
-fx-vgap: 30px;
}
.top-pane{
-fx-min-height: 100px;
-fx-max-height: 100px;
-fx-pref-height: 100px;
-fx-background-color: #ff565b;
}
.top-manebar{
-fx-pref-height: 20px;
-fx-background-color: rgb(221, 221, 221);
}
.top-ctrl{
-fx-pref-height: 80px;
-fx-alignment: center-left;
-fx-background-color: rgb(252, 252, 252);
}
.top-ctrl-bt{
-fx-alignment: center;
-fx-background-color: rgb(252, 252, 252);
-fx-border-width: 0px;
}
.top-ctrl-bt:hover{
-fx-cursor: hand;
}
.size-Label{
-fx-font-family: "Size Font";
-fx-font-size: 12px;
}
.sizeBox{
-fx-alignment: bottom-right;
-fx-min-width: 125px;
-fx-max-width: 125px;
}
.transbar{
-fx-alignment: center-left;
-fx-pref-height: 40px;
/*-fx-background-color: #ff3550;*/
}
.toRightBox{
-fx-pref-height: 80px;
-fx-alignment: center-right;
-fx-pref-width: 550px;
/*-fx-background-color: #d251ff;*/
}
.imgDownloadBox{
-fx-pref-height: 50px;
-fx-max-height: 50px;
-fx-min-height: 50px;
-fx-background-color: #fff;
-fx-alignment: center-left;
-fx-border-width: 1px;
-fx-border-color: #B5B5B5;
-fx-border-radius: 5px;
-fx-background-radius: 5px;
}
.btImgIdInput{
-fx-pref-height: 50px;
-fx-background-color: #ffffff;
} | 0.459319 | 0.060308 |
body {
font-family: Baskerville, "Goudy Old Style", serif;
font-size: 14px;
background-color: #fff;
}
.filter-controls {
width: 800px;
display: flex;
padding-bottom: 10px;
}
.column {
width: 50%;
}
#map {
width: 800px;
height: 500px;
}
.info {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
padding: 6px 8px;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
text-align: left;
line-height: 18px;
color: #555;
width: 130px;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.title {
text-align: center;
font-weight: bold;
}
.subtitle {
text-align: center;
font-style: italic;
font-size: x-small;
}
[data-tip] {
position:relative;
}
[data-tip]:before {
content:'';
display:none;
border:5px solid #1a1a1a;
border-top-color:#1a1a1a;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
position:absolute;
top:-7px;
left:3px;
z-index:8;
font-size:0;
line-height:0;
width:0;
height:0;
}
[data-tip]:after {
display:none;
content:attr(data-tip);
position:absolute;
top:-35px;
left:-0px;
padding:5px 8px;
background:#fff;
color:#1a1a1a;
z-index:1001;
font-size: 14px;
height:18px;
line-height:18px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space:normal;
word-wrap:normal;
text-align:center;
text-decoration:none;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
display:block;
}
.tip-below[data-tip]:after {
top: 22px;
left: -101px;
height: 104px;
width: 210px;
box-shadow: rgba(0, 0, 0, 0.3) 0 2px 10px;
}
.tip-below[data-tip]:before {
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:#1a1a1a;
border-left-color:transparent;
top:13px;
left:5px;
}
.leaflet-container {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
} | app.css | body {
font-family: Baskerville, "Goudy Old Style", serif;
font-size: 14px;
background-color: #fff;
}
.filter-controls {
width: 800px;
display: flex;
padding-bottom: 10px;
}
.column {
width: 50%;
}
#map {
width: 800px;
height: 500px;
}
.info {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
padding: 6px 8px;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
text-align: left;
line-height: 18px;
color: #555;
width: 130px;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.title {
text-align: center;
font-weight: bold;
}
.subtitle {
text-align: center;
font-style: italic;
font-size: x-small;
}
[data-tip] {
position:relative;
}
[data-tip]:before {
content:'';
display:none;
border:5px solid #1a1a1a;
border-top-color:#1a1a1a;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
position:absolute;
top:-7px;
left:3px;
z-index:8;
font-size:0;
line-height:0;
width:0;
height:0;
}
[data-tip]:after {
display:none;
content:attr(data-tip);
position:absolute;
top:-35px;
left:-0px;
padding:5px 8px;
background:#fff;
color:#1a1a1a;
z-index:1001;
font-size: 14px;
height:18px;
line-height:18px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space:normal;
word-wrap:normal;
text-align:center;
text-decoration:none;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
display:block;
}
.tip-below[data-tip]:after {
top: 22px;
left: -101px;
height: 104px;
width: 210px;
box-shadow: rgba(0, 0, 0, 0.3) 0 2px 10px;
}
.tip-below[data-tip]:before {
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:#1a1a1a;
border-left-color:transparent;
top:13px;
left:5px;
}
.leaflet-container {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
} | 0.37605 | 0.099558 |
.home_wrapper {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.full_container {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.full_title {
width: 80%;
font-size: 32px;
font-weight: 900;
text-align: left;
line-height: 48px;
padding: 48px 36px 12px 36px;
color: #1f497d;
white-space: nowrap;
}
.full_title_center {
font-size: 40px;
font-weight: 900;
text-align: center;
line-height: 48px;
padding: 48px 36px 12px 36px;
color: #1f497d;
letter-spacing: 1px;
}
.full_body {
font-size: 20px;
line-height: 40px;
padding: 0px 36px;
text-align: left;
}
.full_body_center {
width: 80%;
font-size: 20px;
line-height: 40px;
padding: 0px 36px;
text-align: center;
}
.products_container {
width: 100vw;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
min-height: 336px;
}
.large-body {
text-align: center;
}
.banner {
width: 100vw;
background-color: #fff;
background-size: cover;
overflow: hidden;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.banner h1 {
font-size: 36px;
font-weight: 900;
line-height: 48px;
padding-bottom: 24px;
color: #1f497d;
/* text-shadow: 0px 2px 4px #414042; */
}
.banner p {
width: 80%;
text-align: center;
line-height: 40px;
padding-bottom: 40px;
color: #6d6e71;
font-size: 24px;
font-weight: normal;
}
.banner img {
width: 52vw;
}
.homeBanner {
background-image: url("https://unifiedhealthadvisors.com/aws/home/w7uXIRV_reduced.png");
width: 100vw;
height: 280px;
background-position: right;
}
.homeBanner .quote {
color: #1f497d;
font-weight: bold;
}
.homeCall {
/*background-image: url("https://i.imgur.com/279yx0O.jpg");*/
background-position: center;
width: 100vw;
height: 400px;
display: none;
}
.homeCall div {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
align-items: center;
}
.homeCall .quote {
width: 100%;
}
.homeCall .button {
width: auto;
}
.plansAgentsMembers {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.plansAgentsMembers div {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.plansAgentsMembers img {
width: 100vw;
}
.plansAgentsMembers p {
margin-bottom: 40px;
}
.agents {
flex-direction: column;
}
.agents h1 {
text-align: left;
}
.agents p {
text-align: left;
}
.carrierContainer {
width: 100vw;
border-bottom: 2px solid #e6e7e8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.carrierBanner {
width: 100vw;
background-color: #e6e7e8;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
overflow: hidden;
}
.carrierBanner img {
width: 100px;
padding: 12px;
}
.smallerIcon {
width: 70px !important;
}
.homePromo {
background-image: url("https://unifiedhealthadvisors.com/aws/home/3HoPGUd_reduced.png");
background-position: center;
width: 100vw;
height: initial;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.homePromo div {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
align-items: center;
padding: 12px 0px;
}
.homePromo h1 {
color: #1f497d;
text-align: center;
}
.homePromo p {
color: #414042;
font-size: 20px;
font-weight: normal;
padding-bottom: 0px;
}
.homePromo .button {
width: 80vw;
}
.privacy {
width: initial;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 24px 0px;
}
.privacy div {
width: 80%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.privacy p {
font-size: 16px;
font-weight: 200;
letter-spacing: 0px;
color: #939598;
}
@media (min-width: 769px) {
.home_wrapper {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.large-body {
text-align: center;
}
.full_title {
font-size: 48px;
}
.full_title_center {
font-size: 48px;
}
.full_body {
margin-bottom: 24px;
width: 80%;
}
.banner img {
width: 20vw;
}
.banner h1 {
font-size: 60px;
}
.banner p {
width: 100%;
font-size: 28px;
}
.homeBanner {
background-image: url("https://unifiedhealthadvisors.com/aws/home/yPXQeck_reduced.png");
background-position: center;
height: 46vh;
}
.homeBanner .quote {
padding-top: 32px;
}
.homeCall {
background-image: url("https://unifiedhealthadvisors.com/aws/home/7c7Ds8a_reduced.png");
background-position: right;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
margin-bottom: 60px;
}
.homeCall div {
width: 45vw;
padding: 20px;
}
.homeCall h1 {
font-size: 40px;
}
.homeCall p {
width: 80%;
font-size: 24px;
font-weight: normal;
}
.mission {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
margin: 100px;
}
.plansAgentsMembers {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
height: 400px;
padding: 12px 40px;
margin-bottom: 60px;
overflow: hidden;
}
.plansAgentsMembers p {
margin-bottom: 0px;
}
.plansAgentsMembers div {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.plansAgentsMembers img {
width: 40vw;
text-align: right;
}
.agents {
flex-direction: row-reverse !important;
}
.agents h1 {
text-align: right;
}
.agents p {
text-align: left;
}
.carrierContainer {
border-bottom: none;
}
.carrierBanner img {
width: 120px;
padding: 24px 8px;
}
.smallerIcon {
width: 70px !important;
}
.homePromo {
background-image: url("https://unifiedhealthadvisors.com/aws/home/cJ350gS_reduced.png");
height: 400px;
background-position: left;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
margin-bottom: 60px;
}
.homePromo div {
width: 45vw;
padding: 0px;
}
.homePromo h1 {
font-size: 40px;
color: #1f497d;
width: 80%;
}
.homePromo p {
width: 80%;
font-size: 24px;
color: #6d6e71;
padding-bottom: 12px;
}
.homePromo .button {
width: auto;
}
.privacy p {
font-size: 18px;
}
.privacy div {
width: 80vw;
margin-bottom: 64px;
}
} | src/styles/home.module.css | .home_wrapper {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.full_container {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.full_title {
width: 80%;
font-size: 32px;
font-weight: 900;
text-align: left;
line-height: 48px;
padding: 48px 36px 12px 36px;
color: #1f497d;
white-space: nowrap;
}
.full_title_center {
font-size: 40px;
font-weight: 900;
text-align: center;
line-height: 48px;
padding: 48px 36px 12px 36px;
color: #1f497d;
letter-spacing: 1px;
}
.full_body {
font-size: 20px;
line-height: 40px;
padding: 0px 36px;
text-align: left;
}
.full_body_center {
width: 80%;
font-size: 20px;
line-height: 40px;
padding: 0px 36px;
text-align: center;
}
.products_container {
width: 100vw;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
min-height: 336px;
}
.large-body {
text-align: center;
}
.banner {
width: 100vw;
background-color: #fff;
background-size: cover;
overflow: hidden;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.banner h1 {
font-size: 36px;
font-weight: 900;
line-height: 48px;
padding-bottom: 24px;
color: #1f497d;
/* text-shadow: 0px 2px 4px #414042; */
}
.banner p {
width: 80%;
text-align: center;
line-height: 40px;
padding-bottom: 40px;
color: #6d6e71;
font-size: 24px;
font-weight: normal;
}
.banner img {
width: 52vw;
}
.homeBanner {
background-image: url("https://unifiedhealthadvisors.com/aws/home/w7uXIRV_reduced.png");
width: 100vw;
height: 280px;
background-position: right;
}
.homeBanner .quote {
color: #1f497d;
font-weight: bold;
}
.homeCall {
/*background-image: url("https://i.imgur.com/279yx0O.jpg");*/
background-position: center;
width: 100vw;
height: 400px;
display: none;
}
.homeCall div {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
align-items: center;
}
.homeCall .quote {
width: 100%;
}
.homeCall .button {
width: auto;
}
.plansAgentsMembers {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.plansAgentsMembers div {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.plansAgentsMembers img {
width: 100vw;
}
.plansAgentsMembers p {
margin-bottom: 40px;
}
.agents {
flex-direction: column;
}
.agents h1 {
text-align: left;
}
.agents p {
text-align: left;
}
.carrierContainer {
width: 100vw;
border-bottom: 2px solid #e6e7e8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.carrierBanner {
width: 100vw;
background-color: #e6e7e8;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
overflow: hidden;
}
.carrierBanner img {
width: 100px;
padding: 12px;
}
.smallerIcon {
width: 70px !important;
}
.homePromo {
background-image: url("https://unifiedhealthadvisors.com/aws/home/3HoPGUd_reduced.png");
background-position: center;
width: 100vw;
height: initial;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.homePromo div {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
align-items: center;
padding: 12px 0px;
}
.homePromo h1 {
color: #1f497d;
text-align: center;
}
.homePromo p {
color: #414042;
font-size: 20px;
font-weight: normal;
padding-bottom: 0px;
}
.homePromo .button {
width: 80vw;
}
.privacy {
width: initial;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 24px 0px;
}
.privacy div {
width: 80%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.privacy p {
font-size: 16px;
font-weight: 200;
letter-spacing: 0px;
color: #939598;
}
@media (min-width: 769px) {
.home_wrapper {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.large-body {
text-align: center;
}
.full_title {
font-size: 48px;
}
.full_title_center {
font-size: 48px;
}
.full_body {
margin-bottom: 24px;
width: 80%;
}
.banner img {
width: 20vw;
}
.banner h1 {
font-size: 60px;
}
.banner p {
width: 100%;
font-size: 28px;
}
.homeBanner {
background-image: url("https://unifiedhealthadvisors.com/aws/home/yPXQeck_reduced.png");
background-position: center;
height: 46vh;
}
.homeBanner .quote {
padding-top: 32px;
}
.homeCall {
background-image: url("https://unifiedhealthadvisors.com/aws/home/7c7Ds8a_reduced.png");
background-position: right;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
margin-bottom: 60px;
}
.homeCall div {
width: 45vw;
padding: 20px;
}
.homeCall h1 {
font-size: 40px;
}
.homeCall p {
width: 80%;
font-size: 24px;
font-weight: normal;
}
.mission {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
margin: 100px;
}
.plansAgentsMembers {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
height: 400px;
padding: 12px 40px;
margin-bottom: 60px;
overflow: hidden;
}
.plansAgentsMembers p {
margin-bottom: 0px;
}
.plansAgentsMembers div {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.plansAgentsMembers img {
width: 40vw;
text-align: right;
}
.agents {
flex-direction: row-reverse !important;
}
.agents h1 {
text-align: right;
}
.agents p {
text-align: left;
}
.carrierContainer {
border-bottom: none;
}
.carrierBanner img {
width: 120px;
padding: 24px 8px;
}
.smallerIcon {
width: 70px !important;
}
.homePromo {
background-image: url("https://unifiedhealthadvisors.com/aws/home/cJ350gS_reduced.png");
height: 400px;
background-position: left;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
margin-bottom: 60px;
}
.homePromo div {
width: 45vw;
padding: 0px;
}
.homePromo h1 {
font-size: 40px;
color: #1f497d;
width: 80%;
}
.homePromo p {
width: 80%;
font-size: 24px;
color: #6d6e71;
padding-bottom: 12px;
}
.homePromo .button {
width: auto;
}
.privacy p {
font-size: 18px;
}
.privacy div {
width: 80vw;
margin-bottom: 64px;
}
} | 0.412294 | 0.087994 |
๏ปฟ.loading {
position: relative;
height: 150px;
width: 150px;
margin: 60px auto; }
.js-loading-indicator {
display: block;
position: absolute;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #3498A3;
border-right-color: #349829;
-webkit-animation: spin 2s linear infinite;
-moz-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
z-index: 1002;
width: 100%;
height: 100%; }
.js-loading-indicator.double::before {
content: "";
position: absolute;
border-radius: 50%;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border: 3px solid transparent;
border-top-color: #e74c3c;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
animation: spin 3s linear infinite; }
.js-loading-indicator.triple::before, .js-loading-indicator.triple::after {
content: "";
position: absolute;
border-radius: 50%;
border: 3px solid transparent; }
.js-loading-indicator.triple::before {
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-top-color: #e74c3c;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
animation: spin 3s linear infinite; }
.js-loading-indicator.triple::after {
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-top-color: #f9c922;
-webkit-animation: spin 1.5s linear infinite;
-moz-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite; }
.js-loading-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background: rgba(128, 128, 128, 0.5);
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0); }
to {
-webkit-transform: rotate(360deg); } }
@-moz-keyframes spin {
from {
-moz-transform: rotate(0); }
to {
-moz-transform: rotate(360deg); } }
@keyframes spin {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-ms-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0); }
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg); } } | public/plugins/jquery-preloader-js/css/jquery-loading.css | ๏ปฟ.loading {
position: relative;
height: 150px;
width: 150px;
margin: 60px auto; }
.js-loading-indicator {
display: block;
position: absolute;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #3498A3;
border-right-color: #349829;
-webkit-animation: spin 2s linear infinite;
-moz-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
z-index: 1002;
width: 100%;
height: 100%; }
.js-loading-indicator.double::before {
content: "";
position: absolute;
border-radius: 50%;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border: 3px solid transparent;
border-top-color: #e74c3c;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
animation: spin 3s linear infinite; }
.js-loading-indicator.triple::before, .js-loading-indicator.triple::after {
content: "";
position: absolute;
border-radius: 50%;
border: 3px solid transparent; }
.js-loading-indicator.triple::before {
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-top-color: #e74c3c;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
animation: spin 3s linear infinite; }
.js-loading-indicator.triple::after {
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-top-color: #f9c922;
-webkit-animation: spin 1.5s linear infinite;
-moz-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite; }
.js-loading-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background: rgba(128, 128, 128, 0.5);
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0); }
to {
-webkit-transform: rotate(360deg); } }
@-moz-keyframes spin {
from {
-moz-transform: rotate(0); }
to {
-moz-transform: rotate(360deg); } }
@keyframes spin {
from {
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-ms-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0); }
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg); } } | 0.503906 | 0.068257 |
body{
font-family: 'Roboto', sans-serif;
/*
font-family: 'Courgette', cursive ;
*/
}
body, html {
/*background-color: #FAFAFA !important;
*/
margin-bottom: 0;
height:100%;
/*background-position: 100px 20px;
background-size: 100% 70%;*/
}
.meter { -webkit-appearance: none; } //Crucial, this will disable the default styling in Webkit browsers
.meter::-webkit-meter-bar {
background: #FFF;
border: 1px solid #CCC;
}
.meter::-webkit-meter-optimum-value {
background: #87C7DE;
background: -moz-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a1d4e6), color-stop(100%, #6bb4d1));
background: -webkit-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -o-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -ms-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: linear-gradient(to bottom, #a1d4e6 0%, #6bb4d1 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a1d4e6', endColorstr='#6bb4d1',GradientType=0);
}
.head2 {
-webkit-float: right;
margin: auto;
padding-left: 100px
}
/*home style**/
#welcome{
background-image: url("../Original images/sunrise.jpg");
display: block;
}
#welcome h p {
padding-top: 40px
}
.container h1{
padding-top: 200px;
text-align: center;
font-size: 50px;
color: black;
font-family: 'Bungee', cursive;
}
.container h1 span{
color: #DC143C;
}
.container p{
font-size: 20px;
}
.log ul{
margin: 0 800px;
}
.log ul li a{
text-decoration: none;
list-style-type:none;
/*color: #228B22;*/
position: absolute;
right: 150px;
}
.log ul li {
display: inline;
margin:0 20px
}
.log ul li a button:hover{
font-size: 25px;
background-color: #2196F3;
color: #4CAF50
}
/*nav style**/
/*
.nav navbar-nav navbar-right{
padding: 50px;
margin-bottom: 80px
}*/
.navbar-header img{
float:left;
left:0;
margin: auto
}
.navbar.navbar-default.navbar-inverse {
background-color: #2F4F4F;
padding: 10px;
height: 110px
}
.navbar { margin-bottom:0px !important; }
.carousel-caption { margin-top:0px !important }
/*
.navbar .navbar-default .navbar-inverse .navbar-fixed-top ul li {
margin: 0 300px
}
.nav .navbar-nav .navbar-right ul li a:hover{
background-color: #B22222;
padding: 10px
}
.nav #navnva li:hover{
background-color:#013243;
padding: 10px;
font-size: 100px
}*/
/*footer style**/
/*
footer{
width: 100%;
/*background-color: #A9A9A9;*/
/* height: 110px;
/*padding-top: 200px*
}
footer span h4{
font-family: 'Courgette', cursive ;
}
footer .mail{
padding-top:50px;
float: left;
margin: 0 300px;
}
footer .mail p{
font-size: 20px;
}
footer .follow{
float: right;
margin: 0 10px;
}
footer h1{
float: right;
font-size: 50px;
color: #B22222;
}
footer .icon i{
float: right;
font-size: 30px;
display: inline-block;
padding: 10px;
}
/*
footer.cont{
float: left;
margin: 0 10px;
padding-top:10px;
}
footer.cont div h5{
margin: 0 10px;
padding-top:10px;
}
*/
/*order style**/
.introduction{
background-color: #FF7F50;
padding:50px
}
.introduction form{
margin: auto;
width: 70px;
height: auto;
padding: 50px
}
input[type="text"],input[type="email"]{
padding:10px;
background-color: #FFF8DC;
display: block;
left: 20px
}
textarea{
padding: 15px;
background-color: #BDB76B
}
input[type="submit"]{
background-color:#FFF8DC;
padding:20px;
}
input[type="submit"]:hover{
background-color: #00008B
}
textarea{
width: 50%;
overflow: scroll;
display: inline-block;
width: 70%
}
/*contact style**/
.contactus{
/*background-image: url(" https://s3.envato.com/files/141248930/4k133bhd_590.jpg");
*/
margin: -40px 0;
padding: 20px
}
.contactus form{
margin:100px 300px;
background-color: #DCC6E0;
padding: 20px;
width: 50%;
}
form h1{
color:#013243;
font-size: 50px
}
.contactus form input{
width: 80%;
text-align: center
}
form button{
padding: 8px;
background-color: #9A12B3;
color: #19B5FE;
border-radius: 20px;
margin: auto
}
.contactus form i{
position: absolute;
padding: 15px;
border-right: 1px dotted #2F4F4F;
size: 30px;
background-color: #DAA520
}
#main{
padding-top: 50px
}
/*login **/
#enter{
background-image: url("../Original images/nightsky.jpg");
padding-top: 150px;
width: 100%;
height: 800px;
}
#enter form h1{
margin-top:-10px;
text-align: center;
color: #000000;
width:100%;
border:5px solid #FFF5EE
/* background-color: #8FBC8F*/
}
#enter form{
width: 400px;
height: 430px;
background-color: #FFF5EE;
border: 5px solid #FFFFE0;
margin: 0 auto;
padding: 10px;
border-radius: 4px
}
#enter form input{
margin: 30px 60px;
width: 70%;
height: 50%;
margin-bottom: 30px;
border-radius: 5px
}
#enter form button{
padding: 10px;
width: 200px;
margin: 0 80px;
float: right
}
#enter form .btn-1{
color: #00FF00;
}
#enter form a{
color: #FF1493;
}
#enter form h3{
padding-top: 80px;
}
#register{
background-image: url("../Original images/sky.jpg");
padding-top: 100px;
width: 100%;
height: 1000px;
margin: 0 auto;
}
#register form{
width: 600px;
height:95%;
background-color:#C0C0C0;
margin: 0 auto;
border:3px solid #FFF0F5;
padding-top: 15px;
}
#register form .inp{
width: 60%;
height: 35px;
margin: 0 auto;
}
#register form h1{
width: 100%;
background-color:#2C3E50;
color: #FFFFE0;
font-size: 50px;
text-align: center;
margin-top:-15px;
}
#register form .pass{
padding-left: 120px;
}
#register form .pass #lab{
padding-left:0
}
#register form #lab{
padding-left:120px;
padding-top: 20px
}
#register form .pass #inp{
width:80%;
}
#register form .custom-select{
width: 60%;
height: 35px;
margin: 0 auto;
}
#register form .custom-select select{
width: 100% ;
height: 35px
}
#register form .custom-select #lab{
padding-left:0
}
#register form button{
width: 60%;
background-color: #8FBC8F;
margin:30px 30px;
color: #F64747;
font-size: 30px
}
#register form h3 a{
color: #191970
}
/*make osder style*/
#order {
padding-top: 110px;
width: 100%;
height: 500px;
}
#order img{
width: 100%;
height: 100%;
}
#description .img1 .img2 .img3 .img4
.img5
.img6 .img7 .img8 .img9 .img10 .img11 img{
-webkit-transition: all .5s ease-in-out;
}
#description .img1:hover img{
-webkit-transform: scale(1.2) ;
}
#description .img2:hover img{
-webkit-transform: scale(1.2) ;
}#description .img3:hover img{
-webkit-transform: scale(1.2) ;
}#description .img4:hover img{
-webkit-transform: scale(1.2) ;
}#description .img5:hover img{
-webkit-transform: scale(1.2) ;
}#description .img6:hover img{
-webkit-transform: scale(1.2) ;
}#description .img7:hover img{
-webkit-transform: scale(1.2) ;
}#description .img8:hover img{
-webkit-transform: scale(1.2) ;
}#description .img9:hover img{
-webkit-transform: scale(1.2) ;
}#description .img11:hover img{
-webkit-transform: scale(1.2) ;
}#description .img10:hover img{
-webkit-transform: scale(1.2) ;
}
/*
#order form{
width: 600px;
height: 50%;
background-color: #1E90FF;
margin: 0 auto;
border:3px solid #FFF0F5;
}
*/
#description{
height:600px;
}
#description h3{
padding-top: 30px;
border-bottom: 2px solid red;
font-family: 'Berkshire Swash', cursive;
padding-bottom: 15px
}
#description a img:hover{
background-color: #F57F17;
transition: background-color 1s ease
}
#description img{
width: 25%;
height: 15%;
}
#description .content-img{
position: relative;
width:100%;
height: 100%;
padding: 3px;
}
#description .content-img img{
padding: 3px;
}
#description img .img1{
width: 15%;
height: 25%;
}
#description .text{
font-family: 'Anton', sans-serif;
margin: -80px 70px ;
color: #C71585;
font-size: 50px;
justify-content:center;
}
#description .content-img img:hover{
color: #C71585;
}
.btn01 {
margin: 50px 300px;
padding: 10px;
width: 50%;
}
#order_now {
padding: 100px 0 50px;
font-size: 25px;
height: 300px
}
#order_now button{
}
#order_now a{
background-color: #48D1CC;
text-decoration: none;
margin: 0 100px;
padding: 8px;
border-radius: 50px;
position: absolute;
left: 35%;
font-size:50px
}
#order_now i{
color: #EC407A
}
#paper{
/* height:800px;*/
margin: 0 200px;
padding-top: 60px
}
#paper h2{
padding-top: 50px;
border-bottom: 2px solid #8FBC8F;
font-family: 'Anton', sans-serif;
padding-bottom: 15px
}
#paper .paper1{
width: 50%;
display: inline;
}
#paper .paper2{
width: 50%;
float: right;
margin-top: -400px
}
#paper .paper2 h2{
color: #48D1CC;
padding: 10px
}
#paper .paper2 p{
overflow: hidden;
font-size: 20px
}
/*order now*/
#now{
height:500px;
margin: 0 100px;
padding-top: 100px;
margin-bottom: 0;
/*background-color: #FF8C00*/
}
#now input{
width: 300px;
border-radius: 5%;
height: 45px
}
/**/
/*#now form{*/
/* width: 100%;*/
/* height:800px; */
/* }*/
/*
*/
/* #ground{*/
/* border: 3px solid #A2DED0*/
/**/
/*}*/
/*#now form{*/
/* border: 3px solid #A2DED0*/
/*}*/
#now h3{
border-bottom: 2px solid red;
font-family: 'Anton', sans-serif;
font-size: 50px;
padding-bottom: 15px
}
/*
#now form .glass {
margin: 0 20px
}
#now form .paper {
margin:100px 500px;
position: absolute;
top: 155px
}
#now form .inp_1 {
margin:300px 680px;
position: absolute;
top: 20%
}
#now form .plastic{
margin: 0 20px
}
#now form .aluminum {
margin:400px 500px;
position: absolute;
top: 155px ;
}
#now form .inp_2{
margin:-85px 500px;
}
#now form .steal{
margin: 160px 20px
}
#now form .inp_3{
margin: -140px 20px;
}
#now form .food{
margin:700px 500px;
position: absolute;
top: 155px
}
#now form .inp_4{
margin: 100px 500px;
}
#now form .elec{
margin: -30px 20px
}
#now form .inp_5{
margin: 50px 20px
}
#now form .pags{
margin:990px 500px;
margin-bottom: 0;
position: absolute;
top: 155px
}
#now form .inp_6{
margin: -100px 500px;
}
*/
#order_now2 button{
background-color: #FFC107;
margin: 0 -160px;
margin-top: 80px;
margin-bottom: 20px;
padding: 8px;
position: absolute;
left: 55%;
font-size:50px;
transition-property: background-color;
transition-duration: .1s;
transition-timing-function: ease
}
#order_now3 button{
background-color: #FFC107;
margin: 970px 40px;
padding: 8px;
position: absolute;
left: 20%;
font-size:50px;
transition-property: background-color;
transition-duration: .1s;
transition-timing-function: ease
}
#order_now i{
color: #EC407A
}
#order_now2 button:hover{
background-color: #E040FB;
}
#about{
margin: 0 150px;
padding-top: 60px;
/*background-color: #91B496*/
}
#about h1{
padding-top: 70px;
border-bottom: 2px solid #512DA8;
font-family: 'Anton', sans-serif;
padding-bottom: 15px;
text-align: center;
font-family: 'Playfair Display SC', serif;
font-size: 50px;
}
#about p{
overflow: hidden;
font-size: 30px;
}
#about .team{
width: 100%;
padding-top: 40px
}
#about .team h1{
color: #512DA8;
text-align: center;
font-size: 50px;
border: none
}
#about .team img{
border-radius: 50%;
padding: 5px;
}
/*#about .div1 p {
background-color: white;
display: inline-table;
}*/
#about .why h1{
/*font-size: 100px;*/
color: #DC143C
}
#about .div1{
width: 50%;
}
#about .div1 p{
background-color: white;
font-size: 20px;
}
#about .div2 p{
background-color: white;
font-size: 20px;
}
#about .div2{
width: 50%;
margin:-160px 500px
}
#about .div3 p{
background-color: white;
font-size: 20px;
}
#about .div3{
width: 50%;
margin: 200px -10px;
}
#about .div4{
width: 50%;
margin:-350px 500px
}
#about .div4 p{
background-color: white;
font-size:20px;
}
#about .why i {
color: #008B8B
}
#explore button{
background-color: #F9690E ;
padding: 8px;
position: absolute;
font-size:50px;
}
#explore1 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore2 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore3 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore4 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore5 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore6 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore7 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore8 button{
background-color: #64FFDA ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore9 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}
.carousel-indicators li{
width: 20px;
height: 20px;
}
.carousel-indicators .active{
width: 22px;
height: 22px;
background-color: #7FFFD4}
.home{
/*margin: 0 500px;*/
text-align: center
}
.home button{
padding: 7px;
background-color: #7FFFD4;
font-size: 400px;
border-radius: 40px
}
.p{
/*border: .5px solid #00FFFF;*/
/*border-radius: 50%;*/
margin: 0 500px;
padding-top: 100px
}
.p h2{
font-size: 100px;
margin: 0 50px;
/*border: 5px solid #7FFFD4;*/
}
.p h3{
color: #674172;
font-size: 20px
}
.money2{
margin-top: 10px
}
.p1{}
.p1 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 50px 150px;
width: 400px;
}
.p11 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 50px 200px;
width: 400px
}
.p2{
margin-top: -30px
}
.p2 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 0 250px
}
/*.poi{
width: 100%;
background-color: #FDE3A7
}*/
#home1{
margin-top: 150px;
}
#home1 .h1{
width: 50%;
float: left;
margin-left: 5px;
}
#home1 .h2{
width: 50%;
float: right;
margin-top: -470px
}
#home1 .h2 h1{
border-bottom: 1px solid #AEA8D3;
color: #2C3E50;
font-size: 50px;
font-family: 'Slabo 27px', serif;
}#home1 .h2 p{
font-family: 'Slabo 27px', serif;
font-size: 40px;
margin-left: 10px
}
#about1{
/*//border: 1px solid #DCC6E0;*/
margin-top: 150px ;
margin-left: 100px;
margin-right: 200px;
}
#about1 h1{
border-bottom: 1px solid #2574A9;
line-height: 50px
}
#about1 .why h1{
/*font-size: 100px;*/
color: #DC143C
}
#about1 .div1{
width: 50%;
}
#about1 .div1 p{
background-color: white;
font-size: 20px;
}
#about1 .div2 p{
background-color: white;
font-size: 20px;
}
#about1 .div2{
width: 50%;
margin:-140px 500px
}
#about1 .div3 p{
background-color: white;
font-size: 20px;
}
#about1 .div3{
width: 50%;
margin: 200px -10px;
}
#about1 .div4{
width: 50%;
margin:-350px 500px
}
#about1 .div4 p{
background-color: white;
font-size:20px;
}
#about1 .why i {
color: #008B8B
}
#minia{
float:left;
margin: 0 10px
}
#mail h4{
margin: 0 15px
}
.o1{
width: 50%;
float: left
}
.o2{
width: 50%;
float: right
}
#replace{
margin: 200px 200px 0 ;
margin-bottom: -400px;
height: 550px;
border: 2px solid #90EE90;
background-color: #FFC0CB
}
.r{
text-align: center;
margin-top: 50px;
font-size: 30px;
}
.re{
text-align: center;
margin-top: 50px
}
.btn{
margin:40px 340px;
}
.btn button{
padding: 10px;
background-color: #8FBC8F;
font-size: 40px
}
.btn .btn1{
background-color: #AFEEEE
}
#about .paragrah{
/* height: 400px;*/
border: 2px solid #DCC6E0;
border-bottom: 0;
margin: 0 0;
margin-top: 100px;
padding: 0 10px;
background-color: transparent
}
#ab{
width: 100%;
height: 100%;
}
table{
width: 80%;
padding: 20px;
text-align: center;
margin: 0 auto
}
table th{
background-color: #2ECC71;
font-size: 30px
;
text-align: center
}table td{
background-color: #EEEEEE;
font-size: 20px
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
#price{
margin: 1200px 200px;
margin-bottom: 20px;
padding: 30px;
border: 1px solid #F9BF3B;
border-bottom: none;
background-color: #A2DED0
}
#now{
/*margin-bottom: -3000px;*/
}
.pr{
background-color: #E4F1FE
}
#check{
margin-top: 80px;
margin-left: 5px;
}
/*
#check label{
font-size: 25px;
margin-left: -100px;
color: #19B5FE
}*/
#check .money{
size: 50px;
display: inline-block
}
#check input{
margin-left: -100px;
}
#check .check1 .check2{
width: 20px;
height: 20px;
font-size: 30px
}
.fact .centered a:hover{
background-color:#013243;
}
#facts li:hover{
background-color:#013243;
;
}
.side1{
float: right;
width: 300px;
padding: 15px;
margin-top: -600px;
margin-right:100px
}
.side1 li:hover{
background-color:#013243;
color: #FF9800
}
.side .s1 .s2 h3{
border-bottom: 1px solid #013243
}
.side{
background-color: #00BCD4;
float: right;
width: 250px;
padding: 15px;
margin-top: -150px;
margin-right: -10px
}
.side .s1 .s2 h3{
border-bottom: 1px solid #013243
}
#now section .label{
position: absolute;
padding: 5px;
}
#now .address{
margin-top: -50px;
}
#now section .place{
width: 50%;
margin-top: 100px;
margin-left:20px
}
#now section .start{
position: absolute;
}
#now .return{
/*margin-top: -50px;
*/
}
#now section .return2{
width: 50%;
margin-top: 50px;
margin-left:20px
}
#now section .start2{
position: absolute;
}
#now section .return .place select{
height: 50px;
}
#now section .inst{
width: 50%;
margin-top: 50px;
margin-left:20px
}
#now section div .inst2{
width: 50%;
height: 50px;
}
.things .h1{
font-family:'Courgette', cursive ;
}
/*footer{
.clearfix:before,
.clearfix:after {
content:"";
display: table;
}
.clearfix:after{
clear:both;
overflow: hidden;
}
.clearfix{
zoom: 1;/*for ie6*
}
*.x-colophon.bottom {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}*/
nav a .active {
border-bottom:3px #FFF solid;
}
footer .social a
{
padding: 10px;
background-color: #fff;
margin:5px;
font-size: 20px;
margin-top: 5px;
text-decoration: none;
color: #fff;
}
footer .social .fa-twitter{
background-color:#55ACEE;
}
footer .social .fa-facebook-official{
background-color:#3B5998;
}
footer .social .fa-instagram{
background-color:#125688;
}
footer .social a:hover
{
background-color:#E91E63;
opacity: 1.5;
}
footer .social .col3
{
color: #fff;
font-size: 20px;
}
footer .contactwith{
margin-top: 8px;
color: #fff;
font-size: 15px;
text-decoration: none;
}
footer .contactwith i{
font-size: 20px;
padding: 3px
}
footer .contactwith a{
color: #FAFAFA;
text-decoration: none;
font-family: 'Courgette', cursive ;
}
footer .contactwith span:hover , a:hover{
/* border:1px solid #fff;
background-color: #E91E63;
transform: scale(1.5);*/
padding: 5px;
}
footer .text, .social{
margin-top: 8px;
}
@media screen and (max-width: 600px) {
.navbar-burger{
float: right;
color:red;
}
iframe{
width: 370px;
height: 400px
}
.social, .contactwith{
/*display: none;
**/
}
tab-content tab-pane .saveprofile, .resetprofile {
display: inline-block !important;
padding: 0 !important;
float: left;
}
.replacepoints{
margin: 0 auto !important;
padding: 0 !important;
margin-top: -70px !important;
}
.tab-pane2{
margin-top: -150px !important;
}
.row1, .row2,.row3,.row4{
margin-left: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 15px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #0080ff;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
margin-bottom: 90px;
}
#myBtn:hover {
background-color: #4d004d;
} | public/css/style.css | body{
font-family: 'Roboto', sans-serif;
/*
font-family: 'Courgette', cursive ;
*/
}
body, html {
/*background-color: #FAFAFA !important;
*/
margin-bottom: 0;
height:100%;
/*background-position: 100px 20px;
background-size: 100% 70%;*/
}
.meter { -webkit-appearance: none; } //Crucial, this will disable the default styling in Webkit browsers
.meter::-webkit-meter-bar {
background: #FFF;
border: 1px solid #CCC;
}
.meter::-webkit-meter-optimum-value {
background: #87C7DE;
background: -moz-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a1d4e6), color-stop(100%, #6bb4d1));
background: -webkit-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -o-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: -ms-linear-gradient(top, #a1d4e6 0%, #6bb4d1 100%);
background: linear-gradient(to bottom, #a1d4e6 0%, #6bb4d1 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a1d4e6', endColorstr='#6bb4d1',GradientType=0);
}
.head2 {
-webkit-float: right;
margin: auto;
padding-left: 100px
}
/*home style**/
#welcome{
background-image: url("../Original images/sunrise.jpg");
display: block;
}
#welcome h p {
padding-top: 40px
}
.container h1{
padding-top: 200px;
text-align: center;
font-size: 50px;
color: black;
font-family: 'Bungee', cursive;
}
.container h1 span{
color: #DC143C;
}
.container p{
font-size: 20px;
}
.log ul{
margin: 0 800px;
}
.log ul li a{
text-decoration: none;
list-style-type:none;
/*color: #228B22;*/
position: absolute;
right: 150px;
}
.log ul li {
display: inline;
margin:0 20px
}
.log ul li a button:hover{
font-size: 25px;
background-color: #2196F3;
color: #4CAF50
}
/*nav style**/
/*
.nav navbar-nav navbar-right{
padding: 50px;
margin-bottom: 80px
}*/
.navbar-header img{
float:left;
left:0;
margin: auto
}
.navbar.navbar-default.navbar-inverse {
background-color: #2F4F4F;
padding: 10px;
height: 110px
}
.navbar { margin-bottom:0px !important; }
.carousel-caption { margin-top:0px !important }
/*
.navbar .navbar-default .navbar-inverse .navbar-fixed-top ul li {
margin: 0 300px
}
.nav .navbar-nav .navbar-right ul li a:hover{
background-color: #B22222;
padding: 10px
}
.nav #navnva li:hover{
background-color:#013243;
padding: 10px;
font-size: 100px
}*/
/*footer style**/
/*
footer{
width: 100%;
/*background-color: #A9A9A9;*/
/* height: 110px;
/*padding-top: 200px*
}
footer span h4{
font-family: 'Courgette', cursive ;
}
footer .mail{
padding-top:50px;
float: left;
margin: 0 300px;
}
footer .mail p{
font-size: 20px;
}
footer .follow{
float: right;
margin: 0 10px;
}
footer h1{
float: right;
font-size: 50px;
color: #B22222;
}
footer .icon i{
float: right;
font-size: 30px;
display: inline-block;
padding: 10px;
}
/*
footer.cont{
float: left;
margin: 0 10px;
padding-top:10px;
}
footer.cont div h5{
margin: 0 10px;
padding-top:10px;
}
*/
/*order style**/
.introduction{
background-color: #FF7F50;
padding:50px
}
.introduction form{
margin: auto;
width: 70px;
height: auto;
padding: 50px
}
input[type="text"],input[type="email"]{
padding:10px;
background-color: #FFF8DC;
display: block;
left: 20px
}
textarea{
padding: 15px;
background-color: #BDB76B
}
input[type="submit"]{
background-color:#FFF8DC;
padding:20px;
}
input[type="submit"]:hover{
background-color: #00008B
}
textarea{
width: 50%;
overflow: scroll;
display: inline-block;
width: 70%
}
/*contact style**/
.contactus{
/*background-image: url(" https://s3.envato.com/files/141248930/4k133bhd_590.jpg");
*/
margin: -40px 0;
padding: 20px
}
.contactus form{
margin:100px 300px;
background-color: #DCC6E0;
padding: 20px;
width: 50%;
}
form h1{
color:#013243;
font-size: 50px
}
.contactus form input{
width: 80%;
text-align: center
}
form button{
padding: 8px;
background-color: #9A12B3;
color: #19B5FE;
border-radius: 20px;
margin: auto
}
.contactus form i{
position: absolute;
padding: 15px;
border-right: 1px dotted #2F4F4F;
size: 30px;
background-color: #DAA520
}
#main{
padding-top: 50px
}
/*login **/
#enter{
background-image: url("../Original images/nightsky.jpg");
padding-top: 150px;
width: 100%;
height: 800px;
}
#enter form h1{
margin-top:-10px;
text-align: center;
color: #000000;
width:100%;
border:5px solid #FFF5EE
/* background-color: #8FBC8F*/
}
#enter form{
width: 400px;
height: 430px;
background-color: #FFF5EE;
border: 5px solid #FFFFE0;
margin: 0 auto;
padding: 10px;
border-radius: 4px
}
#enter form input{
margin: 30px 60px;
width: 70%;
height: 50%;
margin-bottom: 30px;
border-radius: 5px
}
#enter form button{
padding: 10px;
width: 200px;
margin: 0 80px;
float: right
}
#enter form .btn-1{
color: #00FF00;
}
#enter form a{
color: #FF1493;
}
#enter form h3{
padding-top: 80px;
}
#register{
background-image: url("../Original images/sky.jpg");
padding-top: 100px;
width: 100%;
height: 1000px;
margin: 0 auto;
}
#register form{
width: 600px;
height:95%;
background-color:#C0C0C0;
margin: 0 auto;
border:3px solid #FFF0F5;
padding-top: 15px;
}
#register form .inp{
width: 60%;
height: 35px;
margin: 0 auto;
}
#register form h1{
width: 100%;
background-color:#2C3E50;
color: #FFFFE0;
font-size: 50px;
text-align: center;
margin-top:-15px;
}
#register form .pass{
padding-left: 120px;
}
#register form .pass #lab{
padding-left:0
}
#register form #lab{
padding-left:120px;
padding-top: 20px
}
#register form .pass #inp{
width:80%;
}
#register form .custom-select{
width: 60%;
height: 35px;
margin: 0 auto;
}
#register form .custom-select select{
width: 100% ;
height: 35px
}
#register form .custom-select #lab{
padding-left:0
}
#register form button{
width: 60%;
background-color: #8FBC8F;
margin:30px 30px;
color: #F64747;
font-size: 30px
}
#register form h3 a{
color: #191970
}
/*make osder style*/
#order {
padding-top: 110px;
width: 100%;
height: 500px;
}
#order img{
width: 100%;
height: 100%;
}
#description .img1 .img2 .img3 .img4
.img5
.img6 .img7 .img8 .img9 .img10 .img11 img{
-webkit-transition: all .5s ease-in-out;
}
#description .img1:hover img{
-webkit-transform: scale(1.2) ;
}
#description .img2:hover img{
-webkit-transform: scale(1.2) ;
}#description .img3:hover img{
-webkit-transform: scale(1.2) ;
}#description .img4:hover img{
-webkit-transform: scale(1.2) ;
}#description .img5:hover img{
-webkit-transform: scale(1.2) ;
}#description .img6:hover img{
-webkit-transform: scale(1.2) ;
}#description .img7:hover img{
-webkit-transform: scale(1.2) ;
}#description .img8:hover img{
-webkit-transform: scale(1.2) ;
}#description .img9:hover img{
-webkit-transform: scale(1.2) ;
}#description .img11:hover img{
-webkit-transform: scale(1.2) ;
}#description .img10:hover img{
-webkit-transform: scale(1.2) ;
}
/*
#order form{
width: 600px;
height: 50%;
background-color: #1E90FF;
margin: 0 auto;
border:3px solid #FFF0F5;
}
*/
#description{
height:600px;
}
#description h3{
padding-top: 30px;
border-bottom: 2px solid red;
font-family: 'Berkshire Swash', cursive;
padding-bottom: 15px
}
#description a img:hover{
background-color: #F57F17;
transition: background-color 1s ease
}
#description img{
width: 25%;
height: 15%;
}
#description .content-img{
position: relative;
width:100%;
height: 100%;
padding: 3px;
}
#description .content-img img{
padding: 3px;
}
#description img .img1{
width: 15%;
height: 25%;
}
#description .text{
font-family: 'Anton', sans-serif;
margin: -80px 70px ;
color: #C71585;
font-size: 50px;
justify-content:center;
}
#description .content-img img:hover{
color: #C71585;
}
.btn01 {
margin: 50px 300px;
padding: 10px;
width: 50%;
}
#order_now {
padding: 100px 0 50px;
font-size: 25px;
height: 300px
}
#order_now button{
}
#order_now a{
background-color: #48D1CC;
text-decoration: none;
margin: 0 100px;
padding: 8px;
border-radius: 50px;
position: absolute;
left: 35%;
font-size:50px
}
#order_now i{
color: #EC407A
}
#paper{
/* height:800px;*/
margin: 0 200px;
padding-top: 60px
}
#paper h2{
padding-top: 50px;
border-bottom: 2px solid #8FBC8F;
font-family: 'Anton', sans-serif;
padding-bottom: 15px
}
#paper .paper1{
width: 50%;
display: inline;
}
#paper .paper2{
width: 50%;
float: right;
margin-top: -400px
}
#paper .paper2 h2{
color: #48D1CC;
padding: 10px
}
#paper .paper2 p{
overflow: hidden;
font-size: 20px
}
/*order now*/
#now{
height:500px;
margin: 0 100px;
padding-top: 100px;
margin-bottom: 0;
/*background-color: #FF8C00*/
}
#now input{
width: 300px;
border-radius: 5%;
height: 45px
}
/**/
/*#now form{*/
/* width: 100%;*/
/* height:800px; */
/* }*/
/*
*/
/* #ground{*/
/* border: 3px solid #A2DED0*/
/**/
/*}*/
/*#now form{*/
/* border: 3px solid #A2DED0*/
/*}*/
#now h3{
border-bottom: 2px solid red;
font-family: 'Anton', sans-serif;
font-size: 50px;
padding-bottom: 15px
}
/*
#now form .glass {
margin: 0 20px
}
#now form .paper {
margin:100px 500px;
position: absolute;
top: 155px
}
#now form .inp_1 {
margin:300px 680px;
position: absolute;
top: 20%
}
#now form .plastic{
margin: 0 20px
}
#now form .aluminum {
margin:400px 500px;
position: absolute;
top: 155px ;
}
#now form .inp_2{
margin:-85px 500px;
}
#now form .steal{
margin: 160px 20px
}
#now form .inp_3{
margin: -140px 20px;
}
#now form .food{
margin:700px 500px;
position: absolute;
top: 155px
}
#now form .inp_4{
margin: 100px 500px;
}
#now form .elec{
margin: -30px 20px
}
#now form .inp_5{
margin: 50px 20px
}
#now form .pags{
margin:990px 500px;
margin-bottom: 0;
position: absolute;
top: 155px
}
#now form .inp_6{
margin: -100px 500px;
}
*/
#order_now2 button{
background-color: #FFC107;
margin: 0 -160px;
margin-top: 80px;
margin-bottom: 20px;
padding: 8px;
position: absolute;
left: 55%;
font-size:50px;
transition-property: background-color;
transition-duration: .1s;
transition-timing-function: ease
}
#order_now3 button{
background-color: #FFC107;
margin: 970px 40px;
padding: 8px;
position: absolute;
left: 20%;
font-size:50px;
transition-property: background-color;
transition-duration: .1s;
transition-timing-function: ease
}
#order_now i{
color: #EC407A
}
#order_now2 button:hover{
background-color: #E040FB;
}
#about{
margin: 0 150px;
padding-top: 60px;
/*background-color: #91B496*/
}
#about h1{
padding-top: 70px;
border-bottom: 2px solid #512DA8;
font-family: 'Anton', sans-serif;
padding-bottom: 15px;
text-align: center;
font-family: 'Playfair Display SC', serif;
font-size: 50px;
}
#about p{
overflow: hidden;
font-size: 30px;
}
#about .team{
width: 100%;
padding-top: 40px
}
#about .team h1{
color: #512DA8;
text-align: center;
font-size: 50px;
border: none
}
#about .team img{
border-radius: 50%;
padding: 5px;
}
/*#about .div1 p {
background-color: white;
display: inline-table;
}*/
#about .why h1{
/*font-size: 100px;*/
color: #DC143C
}
#about .div1{
width: 50%;
}
#about .div1 p{
background-color: white;
font-size: 20px;
}
#about .div2 p{
background-color: white;
font-size: 20px;
}
#about .div2{
width: 50%;
margin:-160px 500px
}
#about .div3 p{
background-color: white;
font-size: 20px;
}
#about .div3{
width: 50%;
margin: 200px -10px;
}
#about .div4{
width: 50%;
margin:-350px 500px
}
#about .div4 p{
background-color: white;
font-size:20px;
}
#about .why i {
color: #008B8B
}
#explore button{
background-color: #F9690E ;
padding: 8px;
position: absolute;
font-size:50px;
}
#explore1 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore2 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore3 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore4 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore5 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore6 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore7 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore8 button{
background-color: #64FFDA ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}#explore9 button{
background-color: #F9690E ;
padding: 10px;
position: absolute;
font-size:50px;
margin-top: 70px
}
.carousel-indicators li{
width: 20px;
height: 20px;
}
.carousel-indicators .active{
width: 22px;
height: 22px;
background-color: #7FFFD4}
.home{
/*margin: 0 500px;*/
text-align: center
}
.home button{
padding: 7px;
background-color: #7FFFD4;
font-size: 400px;
border-radius: 40px
}
.p{
/*border: .5px solid #00FFFF;*/
/*border-radius: 50%;*/
margin: 0 500px;
padding-top: 100px
}
.p h2{
font-size: 100px;
margin: 0 50px;
/*border: 5px solid #7FFFD4;*/
}
.p h3{
color: #674172;
font-size: 20px
}
.money2{
margin-top: 10px
}
.p1{}
.p1 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 50px 150px;
width: 400px;
}
.p11 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 50px 200px;
width: 400px
}
.p2{
margin-top: -30px
}
.p2 button{
padding: 20px;
font-size: 50px;
background-color: #7FFFD4;
margin: 0 250px
}
/*.poi{
width: 100%;
background-color: #FDE3A7
}*/
#home1{
margin-top: 150px;
}
#home1 .h1{
width: 50%;
float: left;
margin-left: 5px;
}
#home1 .h2{
width: 50%;
float: right;
margin-top: -470px
}
#home1 .h2 h1{
border-bottom: 1px solid #AEA8D3;
color: #2C3E50;
font-size: 50px;
font-family: 'Slabo 27px', serif;
}#home1 .h2 p{
font-family: 'Slabo 27px', serif;
font-size: 40px;
margin-left: 10px
}
#about1{
/*//border: 1px solid #DCC6E0;*/
margin-top: 150px ;
margin-left: 100px;
margin-right: 200px;
}
#about1 h1{
border-bottom: 1px solid #2574A9;
line-height: 50px
}
#about1 .why h1{
/*font-size: 100px;*/
color: #DC143C
}
#about1 .div1{
width: 50%;
}
#about1 .div1 p{
background-color: white;
font-size: 20px;
}
#about1 .div2 p{
background-color: white;
font-size: 20px;
}
#about1 .div2{
width: 50%;
margin:-140px 500px
}
#about1 .div3 p{
background-color: white;
font-size: 20px;
}
#about1 .div3{
width: 50%;
margin: 200px -10px;
}
#about1 .div4{
width: 50%;
margin:-350px 500px
}
#about1 .div4 p{
background-color: white;
font-size:20px;
}
#about1 .why i {
color: #008B8B
}
#minia{
float:left;
margin: 0 10px
}
#mail h4{
margin: 0 15px
}
.o1{
width: 50%;
float: left
}
.o2{
width: 50%;
float: right
}
#replace{
margin: 200px 200px 0 ;
margin-bottom: -400px;
height: 550px;
border: 2px solid #90EE90;
background-color: #FFC0CB
}
.r{
text-align: center;
margin-top: 50px;
font-size: 30px;
}
.re{
text-align: center;
margin-top: 50px
}
.btn{
margin:40px 340px;
}
.btn button{
padding: 10px;
background-color: #8FBC8F;
font-size: 40px
}
.btn .btn1{
background-color: #AFEEEE
}
#about .paragrah{
/* height: 400px;*/
border: 2px solid #DCC6E0;
border-bottom: 0;
margin: 0 0;
margin-top: 100px;
padding: 0 10px;
background-color: transparent
}
#ab{
width: 100%;
height: 100%;
}
table{
width: 80%;
padding: 20px;
text-align: center;
margin: 0 auto
}
table th{
background-color: #2ECC71;
font-size: 30px
;
text-align: center
}table td{
background-color: #EEEEEE;
font-size: 20px
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
#price{
margin: 1200px 200px;
margin-bottom: 20px;
padding: 30px;
border: 1px solid #F9BF3B;
border-bottom: none;
background-color: #A2DED0
}
#now{
/*margin-bottom: -3000px;*/
}
.pr{
background-color: #E4F1FE
}
#check{
margin-top: 80px;
margin-left: 5px;
}
/*
#check label{
font-size: 25px;
margin-left: -100px;
color: #19B5FE
}*/
#check .money{
size: 50px;
display: inline-block
}
#check input{
margin-left: -100px;
}
#check .check1 .check2{
width: 20px;
height: 20px;
font-size: 30px
}
.fact .centered a:hover{
background-color:#013243;
}
#facts li:hover{
background-color:#013243;
;
}
.side1{
float: right;
width: 300px;
padding: 15px;
margin-top: -600px;
margin-right:100px
}
.side1 li:hover{
background-color:#013243;
color: #FF9800
}
.side .s1 .s2 h3{
border-bottom: 1px solid #013243
}
.side{
background-color: #00BCD4;
float: right;
width: 250px;
padding: 15px;
margin-top: -150px;
margin-right: -10px
}
.side .s1 .s2 h3{
border-bottom: 1px solid #013243
}
#now section .label{
position: absolute;
padding: 5px;
}
#now .address{
margin-top: -50px;
}
#now section .place{
width: 50%;
margin-top: 100px;
margin-left:20px
}
#now section .start{
position: absolute;
}
#now .return{
/*margin-top: -50px;
*/
}
#now section .return2{
width: 50%;
margin-top: 50px;
margin-left:20px
}
#now section .start2{
position: absolute;
}
#now section .return .place select{
height: 50px;
}
#now section .inst{
width: 50%;
margin-top: 50px;
margin-left:20px
}
#now section div .inst2{
width: 50%;
height: 50px;
}
.things .h1{
font-family:'Courgette', cursive ;
}
/*footer{
.clearfix:before,
.clearfix:after {
content:"";
display: table;
}
.clearfix:after{
clear:both;
overflow: hidden;
}
.clearfix{
zoom: 1;/*for ie6*
}
*.x-colophon.bottom {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}*/
nav a .active {
border-bottom:3px #FFF solid;
}
footer .social a
{
padding: 10px;
background-color: #fff;
margin:5px;
font-size: 20px;
margin-top: 5px;
text-decoration: none;
color: #fff;
}
footer .social .fa-twitter{
background-color:#55ACEE;
}
footer .social .fa-facebook-official{
background-color:#3B5998;
}
footer .social .fa-instagram{
background-color:#125688;
}
footer .social a:hover
{
background-color:#E91E63;
opacity: 1.5;
}
footer .social .col3
{
color: #fff;
font-size: 20px;
}
footer .contactwith{
margin-top: 8px;
color: #fff;
font-size: 15px;
text-decoration: none;
}
footer .contactwith i{
font-size: 20px;
padding: 3px
}
footer .contactwith a{
color: #FAFAFA;
text-decoration: none;
font-family: 'Courgette', cursive ;
}
footer .contactwith span:hover , a:hover{
/* border:1px solid #fff;
background-color: #E91E63;
transform: scale(1.5);*/
padding: 5px;
}
footer .text, .social{
margin-top: 8px;
}
@media screen and (max-width: 600px) {
.navbar-burger{
float: right;
color:red;
}
iframe{
width: 370px;
height: 400px
}
.social, .contactwith{
/*display: none;
**/
}
tab-content tab-pane .saveprofile, .resetprofile {
display: inline-block !important;
padding: 0 !important;
float: left;
}
.replacepoints{
margin: 0 auto !important;
padding: 0 !important;
margin-top: -70px !important;
}
.tab-pane2{
margin-top: -150px !important;
}
.row1, .row2,.row3,.row4{
margin-left: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 15px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #0080ff;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
margin-bottom: 90px;
}
#myBtn:hover {
background-color: #4d004d;
} | 0.277571 | 0.064683 |
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit
}
* {
outline: 1px solid red;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.container {}
.musthead {
text-align: center;
height: 178px;
margin-bottom: 40px;
}
.musthead a {
text-decoration: none;
color: white;
display: block;
}
.inup {
padding-right: 5px;
padding-left: 5px;
border-radius: 20px;
}
.inup {
border: 2px solid transparent;
}
.inup:focus {
border: 2px solid white;
}
.logo {
margin: 0;
font-size: 20px;
line-height: 24px;
font-weight: 700;
text-transform: uppercase;
}
.main-nav a:focus {
border: 2px solid rgba(255, 255, 255, 1);
border-radius: 20px;
}
.click {
height: 40px;
border: none;
border-radius: 15px;
background-color: #ff4e50;
font-size: 14px;
line-height: 40px;
color: white;
font-weight: 700;
margin: 0;
padding: 0;
}
.box {
text-align: center;
color: white;
font-family: 'Montserrat', sans-serif;
}
.share {
font-size: 30px;
line-height: 35px;
font-weight: 700;
text-transform: uppercase;
}
.dreams {
margin: 0;
font-size: 18px;
line-height: 22px;
font-weight: 300;
font-family: Roboto, sans-serif;
}
.part-one {
margin-bottom: 200px;
}
.musthead {}
/* section2 */
.part-two {
display: flex;
flex-direction: column;
justify-content: center
}
.team {
text-align: center;
padding: 0;
list-style: none;
}
.one,
.two,
.three,
.four {
list-style: none;
text-align: center;
}
.people img {
margin: 0 auto;
}
/* .team li {
list-style: none;
} */
.text-title {
font-size: 22px;
/* margin: 0; */
line-height: 26px;
font-weight: 700;
text-align: center;
font-family: Montserrat, sans-serif;
margin: 0;
margin-bottom: 15px;
}
.pic-items a {
display: block;
}
.name {
margin: 0;
margin-bottom: 10px;
font-size: 13px;
font-weight: 700;
color: #333333;
}
.text {
font-family: Roboto, sans-serif;
font-size: 14px;
color: #666666;
font-weight: 300;
line-height: 17px;
}
.mix {
display: inline-block;
text-align: center;
width: 100%;
border-radius: 15px;
height: 40px;
background-color: white;
border: 2px solid #ff4e50;
font-size: 14px;
line-height: 17px;
color: #ff4e50;
font-weight: 700;
font-family: Montserrat, sans-serif;
cursor: pointer;
}
.but button {
cursor: pointer;
}
.people img {
border-radius: 50%;
}
.people {
position: relative;
display: inline-block;
text-align: center;
width: 126px;
height: 126px;
margin-bottom: 15px;
}
.pic-items .people::before {
position: absolute;
right: 0;
bottom: 0;
display: block;
content: '';
width: 32px;
height: 32px;
background-repeat: no-repeat;
background-position: center;
border-radius: 50%;
border: 4px solid white;
}
.pic-items .tv::before {
background-color: #ff4e50;
background-image: url(../img/icon-01.png);
}
.pic-items .bottle::before {
background-color: #ffa507;
background-image: url(../img/icon02.png);
}
.pic-items .cup::before {
background-color: #1cd7ad;
background-image: url(../img/icon03.png);
}
.pic-items .arrow::before {
background-color: #4e73db;
background-image: url(../img/icon05.png);
}
@media(min-width:320px) and (max-width: 766px){
.inup {
margin-bottom: 20px;
}
}
@media (min-width: 320px) {
/* .container-fluid {
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image.jpg);
background-size: cover;
background-position: center;
height: 540px;
width: 100%;
margin-bottom: 60px;
padding-top: 20px;
} */
}
@media (max-width: 767px) {
.container-fluid {
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image.jpg);
background-size: cover;
background-position: center;
height: 540px;
width: 100%;
margin-bottom: 60px;
padding-top: 20px;
}
.flex-column-reverse {
justify-content: space-between;
min-height: 174px;
}
.mox {
width: 280px;
margin: 0 auto;
}
.click {
display: block;
width: 100%;
}
.but {
padding-bottom: 56px;
}
}
@media (min-width: 768px) {
.click {
display: inline-block;
min-width: 236px;
}
.inner {
display: flex;
justify-content: center;
}
.container-fluid {
background-color: rgb(26, 25, 21);
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image-tablet.jpg);
background-position: center;
background-size: cover;
height: 700px;
margin-bottom: 70px;
}
.but {
margin-bottom: 40px;
}
/* .logo {
display: row-reverse;
margin-right: auto;
}
.musthead {
display: flex;
} */
.musthead {
width: 100%;
padding-top: 40px;
height: 70px;
margin-bottom: 150px;
}
.part-one {
margin-bottom: 300px;
max-width: 100%;
}
.part-two {
margin-bottom: 35px;
}
.box {
display: flex;
justify-content: center;
flex-wrap: wrap;
height: 250px;
}
.share {
font-size: 52px;
line-height: 62px;
margin-bottom: 20px;
}
.dreams {
font-size: 24px;
line-height: 29px;
margin: 0;
margin-bottom: 20px;
}
.title {
margin-bottom: 30px;
}
.but {
justify-content: center;
}
}
@media (min-width: 940px) {
} | module-09/css/styles.css | html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit
}
* {
outline: 1px solid red;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.container {}
.musthead {
text-align: center;
height: 178px;
margin-bottom: 40px;
}
.musthead a {
text-decoration: none;
color: white;
display: block;
}
.inup {
padding-right: 5px;
padding-left: 5px;
border-radius: 20px;
}
.inup {
border: 2px solid transparent;
}
.inup:focus {
border: 2px solid white;
}
.logo {
margin: 0;
font-size: 20px;
line-height: 24px;
font-weight: 700;
text-transform: uppercase;
}
.main-nav a:focus {
border: 2px solid rgba(255, 255, 255, 1);
border-radius: 20px;
}
.click {
height: 40px;
border: none;
border-radius: 15px;
background-color: #ff4e50;
font-size: 14px;
line-height: 40px;
color: white;
font-weight: 700;
margin: 0;
padding: 0;
}
.box {
text-align: center;
color: white;
font-family: 'Montserrat', sans-serif;
}
.share {
font-size: 30px;
line-height: 35px;
font-weight: 700;
text-transform: uppercase;
}
.dreams {
margin: 0;
font-size: 18px;
line-height: 22px;
font-weight: 300;
font-family: Roboto, sans-serif;
}
.part-one {
margin-bottom: 200px;
}
.musthead {}
/* section2 */
.part-two {
display: flex;
flex-direction: column;
justify-content: center
}
.team {
text-align: center;
padding: 0;
list-style: none;
}
.one,
.two,
.three,
.four {
list-style: none;
text-align: center;
}
.people img {
margin: 0 auto;
}
/* .team li {
list-style: none;
} */
.text-title {
font-size: 22px;
/* margin: 0; */
line-height: 26px;
font-weight: 700;
text-align: center;
font-family: Montserrat, sans-serif;
margin: 0;
margin-bottom: 15px;
}
.pic-items a {
display: block;
}
.name {
margin: 0;
margin-bottom: 10px;
font-size: 13px;
font-weight: 700;
color: #333333;
}
.text {
font-family: Roboto, sans-serif;
font-size: 14px;
color: #666666;
font-weight: 300;
line-height: 17px;
}
.mix {
display: inline-block;
text-align: center;
width: 100%;
border-radius: 15px;
height: 40px;
background-color: white;
border: 2px solid #ff4e50;
font-size: 14px;
line-height: 17px;
color: #ff4e50;
font-weight: 700;
font-family: Montserrat, sans-serif;
cursor: pointer;
}
.but button {
cursor: pointer;
}
.people img {
border-radius: 50%;
}
.people {
position: relative;
display: inline-block;
text-align: center;
width: 126px;
height: 126px;
margin-bottom: 15px;
}
.pic-items .people::before {
position: absolute;
right: 0;
bottom: 0;
display: block;
content: '';
width: 32px;
height: 32px;
background-repeat: no-repeat;
background-position: center;
border-radius: 50%;
border: 4px solid white;
}
.pic-items .tv::before {
background-color: #ff4e50;
background-image: url(../img/icon-01.png);
}
.pic-items .bottle::before {
background-color: #ffa507;
background-image: url(../img/icon02.png);
}
.pic-items .cup::before {
background-color: #1cd7ad;
background-image: url(../img/icon03.png);
}
.pic-items .arrow::before {
background-color: #4e73db;
background-image: url(../img/icon05.png);
}
@media(min-width:320px) and (max-width: 766px){
.inup {
margin-bottom: 20px;
}
}
@media (min-width: 320px) {
/* .container-fluid {
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image.jpg);
background-size: cover;
background-position: center;
height: 540px;
width: 100%;
margin-bottom: 60px;
padding-top: 20px;
} */
}
@media (max-width: 767px) {
.container-fluid {
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image.jpg);
background-size: cover;
background-position: center;
height: 540px;
width: 100%;
margin-bottom: 60px;
padding-top: 20px;
}
.flex-column-reverse {
justify-content: space-between;
min-height: 174px;
}
.mox {
width: 280px;
margin: 0 auto;
}
.click {
display: block;
width: 100%;
}
.but {
padding-bottom: 56px;
}
}
@media (min-width: 768px) {
.click {
display: inline-block;
min-width: 236px;
}
.inner {
display: flex;
justify-content: center;
}
.container-fluid {
background-color: rgb(26, 25, 21);
background: linear-gradient(to top, rgba(26, 25, 21, 0.2), rgba(26, 25, 21, 0.2)), url(../img/image-tablet.jpg);
background-position: center;
background-size: cover;
height: 700px;
margin-bottom: 70px;
}
.but {
margin-bottom: 40px;
}
/* .logo {
display: row-reverse;
margin-right: auto;
}
.musthead {
display: flex;
} */
.musthead {
width: 100%;
padding-top: 40px;
height: 70px;
margin-bottom: 150px;
}
.part-one {
margin-bottom: 300px;
max-width: 100%;
}
.part-two {
margin-bottom: 35px;
}
.box {
display: flex;
justify-content: center;
flex-wrap: wrap;
height: 250px;
}
.share {
font-size: 52px;
line-height: 62px;
margin-bottom: 20px;
}
.dreams {
font-size: 24px;
line-height: 29px;
margin: 0;
margin-bottom: 20px;
}
.title {
margin-bottom: 30px;
}
.but {
justify-content: center;
}
}
@media (min-width: 940px) {
} | 0.37777 | 0.117243 |
body {
overflow: hidden;
font-family: "PayPal Sans Big", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #333333;
}
.light {
font-weight: 100;
}
.thick {
font-weight: 500;
}
.top {
font-size: 0.95em;
line-height: 15px;
}
.title {
color: #009cde;
font-size: 5vw;
}
.sub-title {
color: gray;
position: relative;
top: -10px;
font-size: 4vw;
}
.right-side {
flex: 6;
height: 100%;
}
.left-side {
flex: 1;
margin-left: 10%;
}
.left-side > img {
width: 8vw;
}
.content {
border-style: solid;
border-radius: 4px;
border-width: 2px;
border-color: #d6d6d6;
background-color: #ffffff;
}
.bg-stroke-animation {
stroke: #d6d6d6;
}
/* DEEPBLUE */
.theme-deepblue > .content {
border-style: solid;
border-radius: 4px;
border-width: 3px;
border-color: #ffffff;
background: rgb(0, 3, 0);
background: -moz-linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
background: -webkit-linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
background: linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000300",endColorstr="#0091af",GradientType=1);
}
.theme-deepblue > .top #ppsb_initial_line {
stroke: #ffffff;
}
.theme-deepblue > .content .bg-stroke-animation {
stroke: #8eb9ca;
}
.theme-deepblue > .content span {
color: #ffffff;
text-shadow: 1px 1px 2px rgba(22, 9, 6, 0.35);
}
.theme-deepblue > .top,
.theme-deepblue > .footer {
color: #ffffff;
}
/* NIGHTLY */
.theme-nightly > .content {
border-style: solid;
border-radius: 4px;
border-width: 3px;
border-color: #ffffff;
background-color: #202020;
}
.theme-nightly > .top,
.theme-nightly > .footer {
color: #ffffff;
}
.theme-nightly > .top #ppsb_initial_line {
stroke: #ffffff;
}
.theme-nightly > .content .bg-stroke-animation {
stroke: #616161;
}
.theme-nightly > .content span {
color: #ffffff;
text-shadow: 1px 1px 2px rgba(22, 9, 6, 0.35);
}
.theme-nightly > .top .accepted-cc rect,
.theme-nightly > .top .accepted-cc #AMEX_bnr {
fill: rgb(29, 29, 29);
}
.theme-nightly > .top .accepted-cc #Rectangle_75 {
fill: #d1d1d1;
}
.theme-nightly > .top .accepted-cc path,
.theme-nightly > .top .accepted-cc polygon {
fill: #ffffff;
}
.theme-nightly > .top .accepted-cc #Rectangle_77,
.theme-nightly > .top .accepted-cc #Path_346 {
fill: rgb(29, 29, 29);
}
.content {
width: 97vw;
height: 55vh;
display: flex;
align-items: center;
}
.content-text {
align-items: center;
display: flex;
height: 100%;
margin-left: 20px;
}
.content-text > svg {
margin-bottom: 4px;
height: 112%;
width: 100%;
}
.footer {
height: 2em;
font-size: 5.9vw;
text-align: center;
}
@media only screen and (max-width: 400px) {
.footer {
font-size: 5.3vw;
}
.wrapper > .content {
border-width: 1px;
width: 95vw;
}
}
@media only screen and (max-width: 300px) {
.sub-title {
top: -5px;
}
}
@media only screen and (min-width: 800px) {
.wrapper > .content {
border-width: 3px;
}
}
/* FONT FAMILY */
@font-face {
font-family: "PayPal Sans Big";
font-weight: 500;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.svg")
format("svg");
}
@font-face {
font-family: "PayPal Sans Big";
font-weight: 400;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.svg")
format("svg");
}
@font-face {
font-family: "PayPal Sans Big";
font-weight: 300;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.svg")
format("svg");
}
/* ANIMATIONS */
.first-card {
position: absolute;
line-height: 1.45;
animation-duration: 21s;
animation-delay: 0s;
}
.second-card {
position: absolute;
line-height: 1.45;
opacity: 0;
animation-duration: 21s;
animation-delay: 7s;
}
.third-card {
position: absolute;
line-height: 1.45;
opacity: 0;
animation-duration: 21s;
animation-delay: 14s;
}
.fade-in-out {
animation-name: fade;
animation-iteration-count: infinite;
}
.bg-stroke-animation {
opacity: 0;
stroke-dasharray: 366;
animation-name: stroke;
animation-iteration-count: infinite;
}
.fade-in {
animation-name: fade-in;
animation-duration: 800ms;
}
@keyframes stroke {
0% {
stroke-dashoffset: 366;
}
20% {
opacity: 1;
}
30% {
stroke-dashoffset: 0;
opacity: 1;
}
35% {
stroke-dashoffset: 366;
opacity: 0;
}
100% {
stroke-dashoffset: 366;
opacity: 0;
}
}
@keyframes fade {
0% {
opacity: 0;
}
5% {
opacity: 1;
}
30% {
opacity: 1;
}
35% {
opacity: 0;
}
100% {
opacity: 0;
}
}
#ppsb_initial_line {
stroke-dasharray: 376;
stroke-dashoffset: 376;
animation-name: dash-line;
animation-duration: 4s;
animation-fill-mode: forwards;
}
@keyframes dash-line {
0% {
stroke-dashoffset: 376;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | src/css/main.css | body {
overflow: hidden;
font-family: "PayPal Sans Big", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #333333;
}
.light {
font-weight: 100;
}
.thick {
font-weight: 500;
}
.top {
font-size: 0.95em;
line-height: 15px;
}
.title {
color: #009cde;
font-size: 5vw;
}
.sub-title {
color: gray;
position: relative;
top: -10px;
font-size: 4vw;
}
.right-side {
flex: 6;
height: 100%;
}
.left-side {
flex: 1;
margin-left: 10%;
}
.left-side > img {
width: 8vw;
}
.content {
border-style: solid;
border-radius: 4px;
border-width: 2px;
border-color: #d6d6d6;
background-color: #ffffff;
}
.bg-stroke-animation {
stroke: #d6d6d6;
}
/* DEEPBLUE */
.theme-deepblue > .content {
border-style: solid;
border-radius: 4px;
border-width: 3px;
border-color: #ffffff;
background: rgb(0, 3, 0);
background: -moz-linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
background: -webkit-linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
background: linear-gradient(
144deg,
rgba(0, 3, 0, 1) 0%,
rgba(9, 9, 121, 1) 46%,
rgba(0, 145, 175, 1) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000300",endColorstr="#0091af",GradientType=1);
}
.theme-deepblue > .top #ppsb_initial_line {
stroke: #ffffff;
}
.theme-deepblue > .content .bg-stroke-animation {
stroke: #8eb9ca;
}
.theme-deepblue > .content span {
color: #ffffff;
text-shadow: 1px 1px 2px rgba(22, 9, 6, 0.35);
}
.theme-deepblue > .top,
.theme-deepblue > .footer {
color: #ffffff;
}
/* NIGHTLY */
.theme-nightly > .content {
border-style: solid;
border-radius: 4px;
border-width: 3px;
border-color: #ffffff;
background-color: #202020;
}
.theme-nightly > .top,
.theme-nightly > .footer {
color: #ffffff;
}
.theme-nightly > .top #ppsb_initial_line {
stroke: #ffffff;
}
.theme-nightly > .content .bg-stroke-animation {
stroke: #616161;
}
.theme-nightly > .content span {
color: #ffffff;
text-shadow: 1px 1px 2px rgba(22, 9, 6, 0.35);
}
.theme-nightly > .top .accepted-cc rect,
.theme-nightly > .top .accepted-cc #AMEX_bnr {
fill: rgb(29, 29, 29);
}
.theme-nightly > .top .accepted-cc #Rectangle_75 {
fill: #d1d1d1;
}
.theme-nightly > .top .accepted-cc path,
.theme-nightly > .top .accepted-cc polygon {
fill: #ffffff;
}
.theme-nightly > .top .accepted-cc #Rectangle_77,
.theme-nightly > .top .accepted-cc #Path_346 {
fill: rgb(29, 29, 29);
}
.content {
width: 97vw;
height: 55vh;
display: flex;
align-items: center;
}
.content-text {
align-items: center;
display: flex;
height: 100%;
margin-left: 20px;
}
.content-text > svg {
margin-bottom: 4px;
height: 112%;
width: 100%;
}
.footer {
height: 2em;
font-size: 5.9vw;
text-align: center;
}
@media only screen and (max-width: 400px) {
.footer {
font-size: 5.3vw;
}
.wrapper > .content {
border-width: 1px;
width: 95vw;
}
}
@media only screen and (max-width: 300px) {
.sub-title {
top: -5px;
}
}
@media only screen and (min-width: 800px) {
.wrapper > .content {
border-width: 3px;
}
}
/* FONT FAMILY */
@font-face {
font-family: "PayPal Sans Big";
font-weight: 500;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.svg")
format("svg");
}
@font-face {
font-family: "PayPal Sans Big";
font-weight: 400;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.svg")
format("svg");
}
@font-face {
font-family: "PayPal Sans Big";
font-weight: 300;
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot");
src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot?#iefix")
format("embedded-opentype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.woff")
format("woff"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf")
format("truetype"),
url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.svg")
format("svg");
}
/* ANIMATIONS */
.first-card {
position: absolute;
line-height: 1.45;
animation-duration: 21s;
animation-delay: 0s;
}
.second-card {
position: absolute;
line-height: 1.45;
opacity: 0;
animation-duration: 21s;
animation-delay: 7s;
}
.third-card {
position: absolute;
line-height: 1.45;
opacity: 0;
animation-duration: 21s;
animation-delay: 14s;
}
.fade-in-out {
animation-name: fade;
animation-iteration-count: infinite;
}
.bg-stroke-animation {
opacity: 0;
stroke-dasharray: 366;
animation-name: stroke;
animation-iteration-count: infinite;
}
.fade-in {
animation-name: fade-in;
animation-duration: 800ms;
}
@keyframes stroke {
0% {
stroke-dashoffset: 366;
}
20% {
opacity: 1;
}
30% {
stroke-dashoffset: 0;
opacity: 1;
}
35% {
stroke-dashoffset: 366;
opacity: 0;
}
100% {
stroke-dashoffset: 366;
opacity: 0;
}
}
@keyframes fade {
0% {
opacity: 0;
}
5% {
opacity: 1;
}
30% {
opacity: 1;
}
35% {
opacity: 0;
}
100% {
opacity: 0;
}
}
#ppsb_initial_line {
stroke-dasharray: 376;
stroke-dashoffset: 376;
animation-name: dash-line;
animation-duration: 4s;
animation-fill-mode: forwards;
}
@keyframes dash-line {
0% {
stroke-dashoffset: 376;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | 0.46223 | 0.161684 |
.header {
background: #fff;
box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
}
/* --- Login --- */
.mainContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: 380px;
margin: 0 auto;
text-align: center;
padding: 35px 75px;
box-shadow: 0 4px 12px rgb(0 0 0 / 24%);
background: #fff;
}
.mainsecContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: 380px;
margin: 0 auto;
text-align: center;
padding: 35px 75px;
box-shadow: 0 4px 12px rgb(0 0 0 / 24%);
background: #fff;
}
.mv-h, .mv-huge, .mv\+ {
margin-top: 32px!important;
margin-bottom: 32px!important;
}
.form__or {
margin: 32px 0;
text-align: center;
overflow: visible;
}
hr {
clear: both;
border: 0;
border-bottom: 1px solid #ccc;
width: 100%;
margin: 32px 0;
text-align: center;
overflow: visible;
}
.form__or:after {
content: "or";
position: relative;
top: -.7em;
display: inline-block;
padding: 0 8px;
background-color: #fff;
}
label {
display: block;
text-align: left;
}
/* button,
form,
input {
width: 100%;
}
form button {
display: block;
text-align: center;
} */
/* --- Classes --- */
.footer{
width:100%;
height:auto;
margin:1%;
padding:2%;
background-color: #ccc;
text-align: center;
}
.classes h1 {
margin-bottom: 35px;
}
.classes .card {
margin-bottom: 24px;
}
.classes.container {
margin: 100px auto;
}
.app {
background-color: #f6f6f6;
min-height: 100vh;
}
select {
margin-bottom: 10px;
height: 30px;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
width: 100%;
padding: 0 10px;
width: 300px;
}
.inputGroup {
display: flex;
flex-direction: column;
margin-bottom: 10px;
width: 300px;
}
.inputGroup label {
margin-bottom: 3px;
}
.inputGroup input {
height: 30px;
border-radius: 5px;
width: 100%;
padding: 0 10px;
font-size: 1.1rem;
}
button {
height: 30px;
background-color: white;
border: white;
border-radius: 5px;
padding: 0 20px;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
button:hover {
height: 30px;
background-color: rgb(184, 184, 184);
}
.button {
margin: 0 10px 10px 0;
}
#nav{
width:100%;
background-color:#ccc;
height:auto;
padding:20px;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
font-size:25px;
margin:1%;
}
#links{
color: #741522 !important;
text-decoration: none;
} | anywhere-fitness/src/App.css |
.header {
background: #fff;
box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
}
/* --- Login --- */
.mainContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: 380px;
margin: 0 auto;
text-align: center;
padding: 35px 75px;
box-shadow: 0 4px 12px rgb(0 0 0 / 24%);
background: #fff;
}
.mainsecContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: 380px;
margin: 0 auto;
text-align: center;
padding: 35px 75px;
box-shadow: 0 4px 12px rgb(0 0 0 / 24%);
background: #fff;
}
.mv-h, .mv-huge, .mv\+ {
margin-top: 32px!important;
margin-bottom: 32px!important;
}
.form__or {
margin: 32px 0;
text-align: center;
overflow: visible;
}
hr {
clear: both;
border: 0;
border-bottom: 1px solid #ccc;
width: 100%;
margin: 32px 0;
text-align: center;
overflow: visible;
}
.form__or:after {
content: "or";
position: relative;
top: -.7em;
display: inline-block;
padding: 0 8px;
background-color: #fff;
}
label {
display: block;
text-align: left;
}
/* button,
form,
input {
width: 100%;
}
form button {
display: block;
text-align: center;
} */
/* --- Classes --- */
.footer{
width:100%;
height:auto;
margin:1%;
padding:2%;
background-color: #ccc;
text-align: center;
}
.classes h1 {
margin-bottom: 35px;
}
.classes .card {
margin-bottom: 24px;
}
.classes.container {
margin: 100px auto;
}
.app {
background-color: #f6f6f6;
min-height: 100vh;
}
select {
margin-bottom: 10px;
height: 30px;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
width: 100%;
padding: 0 10px;
width: 300px;
}
.inputGroup {
display: flex;
flex-direction: column;
margin-bottom: 10px;
width: 300px;
}
.inputGroup label {
margin-bottom: 3px;
}
.inputGroup input {
height: 30px;
border-radius: 5px;
width: 100%;
padding: 0 10px;
font-size: 1.1rem;
}
button {
height: 30px;
background-color: white;
border: white;
border-radius: 5px;
padding: 0 20px;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
button:hover {
height: 30px;
background-color: rgb(184, 184, 184);
}
.button {
margin: 0 10px 10px 0;
}
#nav{
width:100%;
background-color:#ccc;
height:auto;
padding:20px;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
font-size:25px;
margin:1%;
}
#links{
color: #741522 !important;
text-decoration: none;
} | 0.376165 | 0.080069 |
* {
padding: 0;
margin: 0;
}
::-webkit-scrollbar{
width: 0px;
}
body::-webkit-scrollbar {
width: 0px;
}
body{
margin:0;
padding: 0;
font-family: "montserrat",sans-serif;
}
.navbar_ {
display: flex;
align-items: center;
font-size: 2.5rem;
width: 100%;
height: 70px;
background-color: #000000;
position: fixed;
top: 0%;
z-index: 99999;
box-shadow: 0px 1px 10px #999;
}
.navbar_ > span {
color: white;
margin-left: 35px;
}
.post_container {
width: 100vw;
height: 80vh;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
justify-content: center;
justify-self: center;
position: absolute;
top: 100px;
justify-items: center;
padding: 0px 50px 0px 50px;
overflow: scroll;
/* row-gap: 40px; */
gap: 1rem;
/* column-gap: 20px; */
/* grid-auto-columns: repeat(1fr,4); */
}
.sell_now_btn {
position: fixed;
right: 2%;
font-size: 20px;
z-index: 9999;
/* background-color:black;
width: 100px;
height: 100px;
border: 2px solid white; */
display: flex;
align-items: center;
justify-content: center;
}
.sell_now_btn>a{
text-align: center;
text-decoration: none;
padding: 10px;
width: 150px;
background-color:black;
color:white;
/* box-shadow: 1px 2px rgba(255, 255, 255, 0.3); */
transition: background-color , box-shadow 100ms;
}
.sell_now_btn > a:hover{
background-color: white;
color:black;
border: 2px solid rgb(255, 36, 36);
/* box-shadow: 12px 12px rgba(130, 255, 238, 1); */
/* border: 2px solid black; */
}
/* card */
a{
transition: all 0.5s;
text-decoration: none;
color: #fff;
}
img {
width: 100%;
transition: all 0.5s;
}
.card{
position: relative;
overflow: hidden;
max-height: 580px;
/* height: 100%; */
box-shadow: 0 2px 10px #ccc;
transition: all 0.5s;
}
.card:hover{
box-shadow: 0 2px 10px #ccc;
transition: all 0.5s;
}
.card:hover img {
transform: scale(1,1);
transition: all 0.4s;
}
.blogcontent{
position: absolute;
left: 0;
bottom: -45px;
width: 100%;
color: rgb(10, 5, 5);
padding: 10px 5px;
background: linear-gradient(
45deg,
rgb( 149, 21, 153) 0%, rgba(144, 192, 229, 0.4) 100%
);
transition: all 0.5s;
}
.blogcontent h3{
font-size: 20px;
font-weight: 500;
margin: 0;
}
.blogcontent h3 span{
display: block;
font-size: 60%;
margin-top: 5px;
font-weight: 600;
color: rgb(6, 29, 53);
}
.card:hover .blogcontent{
bottom:0;
transition: all 0.5s;
}
.blogcontent a{
font-size: 14px;
font-weight: 500;
}
.blogcontent.btn{
display: block;
padding: 5px 10px;
border: 1px solid #fff;
border-radius: 3px;
font-weight: 400;
font-family: montserrat;
}
.blogcontent .btn:hover{
background: rgba(52, 152, 219, 1);
transition: all 0.5s;
text-decoration: none;
}
.blogcontent.a:hover{
text-decoration: underline;
}
/* footer container */
.footer_container{
width: 100%;
box-shadow: 0px 1px 10px #999;
height: 60px;
background-color: white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
position:fixed;
bottom: 0px;
} | public/css/buy.css | * {
padding: 0;
margin: 0;
}
::-webkit-scrollbar{
width: 0px;
}
body::-webkit-scrollbar {
width: 0px;
}
body{
margin:0;
padding: 0;
font-family: "montserrat",sans-serif;
}
.navbar_ {
display: flex;
align-items: center;
font-size: 2.5rem;
width: 100%;
height: 70px;
background-color: #000000;
position: fixed;
top: 0%;
z-index: 99999;
box-shadow: 0px 1px 10px #999;
}
.navbar_ > span {
color: white;
margin-left: 35px;
}
.post_container {
width: 100vw;
height: 80vh;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
justify-content: center;
justify-self: center;
position: absolute;
top: 100px;
justify-items: center;
padding: 0px 50px 0px 50px;
overflow: scroll;
/* row-gap: 40px; */
gap: 1rem;
/* column-gap: 20px; */
/* grid-auto-columns: repeat(1fr,4); */
}
.sell_now_btn {
position: fixed;
right: 2%;
font-size: 20px;
z-index: 9999;
/* background-color:black;
width: 100px;
height: 100px;
border: 2px solid white; */
display: flex;
align-items: center;
justify-content: center;
}
.sell_now_btn>a{
text-align: center;
text-decoration: none;
padding: 10px;
width: 150px;
background-color:black;
color:white;
/* box-shadow: 1px 2px rgba(255, 255, 255, 0.3); */
transition: background-color , box-shadow 100ms;
}
.sell_now_btn > a:hover{
background-color: white;
color:black;
border: 2px solid rgb(255, 36, 36);
/* box-shadow: 12px 12px rgba(130, 255, 238, 1); */
/* border: 2px solid black; */
}
/* card */
a{
transition: all 0.5s;
text-decoration: none;
color: #fff;
}
img {
width: 100%;
transition: all 0.5s;
}
.card{
position: relative;
overflow: hidden;
max-height: 580px;
/* height: 100%; */
box-shadow: 0 2px 10px #ccc;
transition: all 0.5s;
}
.card:hover{
box-shadow: 0 2px 10px #ccc;
transition: all 0.5s;
}
.card:hover img {
transform: scale(1,1);
transition: all 0.4s;
}
.blogcontent{
position: absolute;
left: 0;
bottom: -45px;
width: 100%;
color: rgb(10, 5, 5);
padding: 10px 5px;
background: linear-gradient(
45deg,
rgb( 149, 21, 153) 0%, rgba(144, 192, 229, 0.4) 100%
);
transition: all 0.5s;
}
.blogcontent h3{
font-size: 20px;
font-weight: 500;
margin: 0;
}
.blogcontent h3 span{
display: block;
font-size: 60%;
margin-top: 5px;
font-weight: 600;
color: rgb(6, 29, 53);
}
.card:hover .blogcontent{
bottom:0;
transition: all 0.5s;
}
.blogcontent a{
font-size: 14px;
font-weight: 500;
}
.blogcontent.btn{
display: block;
padding: 5px 10px;
border: 1px solid #fff;
border-radius: 3px;
font-weight: 400;
font-family: montserrat;
}
.blogcontent .btn:hover{
background: rgba(52, 152, 219, 1);
transition: all 0.5s;
text-decoration: none;
}
.blogcontent.a:hover{
text-decoration: underline;
}
/* footer container */
.footer_container{
width: 100%;
box-shadow: 0px 1px 10px #999;
height: 60px;
background-color: white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
position:fixed;
bottom: 0px;
} | 0.216798 | 0.08292 |
a {
color: #00ff21;
}
a:hover {
text-decoration: none;
}
/* Team Starts */
.team-members {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.team-members li > div {
float: left;
width: 20%;
}
.team-members li:nth-child(2) > div:first-child {
margin-left: 20%;
}
.team-members li:last-child > div:first-child {
margin-left: 40%;
}
.member-details > div {
background-color: #ddd;
margin: 5px;
}
.member-details img {
-webkit-transform: rotate(45deg) translate(0, 15px) scale(1.2);
transform: rotate(45deg) translate(0, 15px) scale(1.2);
display: block;
width: 100%;
height: 100%;
}
/* hover content - style */
.member-details > div {
position: relative;
overflow: hidden;
}
.member-info {
position: absolute;
top: 50%;
-webkit-transform: rotate(45deg) translate(-12px, 15px);
transform: rotate(45deg) translate(-12px, 15px);
left: 0;
right: 0;
z-index: 2;
text-align: center;
}
.member-info h3,
.member-info p {
margin: 0;
color: #fff;
position: relative;
opacity: 0;
visibility: hidden;
}
.member-info h3 {
text-transform: uppercase;
font-size: 14px;
/*font-size: 12px;*/
font-weight: 400;
top: -90px;
}
.member-info p {
font-weight: 300;
font-size: 12px;
bottom: -150px;
}
.member-details > div:after {
content: '';
background-image: linear-gradient(45deg, rgba(228, 82, 69, .8) 50%, transparent 50%);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
opacity: 0;
visibility: hidden;
}
/* hover content - onhover */
.member-details *,
.member-details > div:after {
cursor: pointer;
transition: all .4s ease;
}
.member-details:hover *,
.member-details:hover > div:after {
opacity: 1;
visibility: visible;
}
.member-details:hover .member-info h3 {
top: 0;
}
.member-details:hover .member-info p {
bottom: 0;
}
/* Team overview */
.team-overview {
padding-right: 15px;
}
.team-overview h2 {
text-transform: uppercase;
font-size: 22px;
font-weight: 700;
margin-bottom: 5px;
}
.team-overview > a {
margin-bottom: 30px;
display: block;
}
.team-overview > a:before {
content: '';
width: 10px;
height: 2px;
position: relative;
top: -3px;
margin-right: 5px;
background-color: #ccc;
display: inline-block;
}
/* For centering elements - optional - Can use table,tablecell instead */
.flex-center {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.flex-center > div:first-child {
order: 2;
}
/* RESPONSIVE */
@media only screen and (max-width : 992px) {
.sm-no-flex {
display: block;
}
.sm-no-float {
float: none !important;
}
.sm-text-center {
text-align: center;
}
}
@media only screen and (max-width : 550px) {
.team-members li {
text-align: center;
}
.team-members li > div {
float: none;
display: inline-block;
width: 30%;
margin: 0 !important;
}
.team-members {
-webkit-transform: rotate(0);
transform: rotate(0);
}
.member-details img {
-webkit-transform: rotate(0) translate(0, 0);
transform: rotate(0) translate(0, 0);
}
.team-overview {
padding: 15px;
}
}
@media only screen and (max-width : 399px) {
.team-members li > div {
width: 48%;
}
} | AspNetExtendingIdentityRoles/Content/teamStyle.css | a {
color: #00ff21;
}
a:hover {
text-decoration: none;
}
/* Team Starts */
.team-members {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.team-members li > div {
float: left;
width: 20%;
}
.team-members li:nth-child(2) > div:first-child {
margin-left: 20%;
}
.team-members li:last-child > div:first-child {
margin-left: 40%;
}
.member-details > div {
background-color: #ddd;
margin: 5px;
}
.member-details img {
-webkit-transform: rotate(45deg) translate(0, 15px) scale(1.2);
transform: rotate(45deg) translate(0, 15px) scale(1.2);
display: block;
width: 100%;
height: 100%;
}
/* hover content - style */
.member-details > div {
position: relative;
overflow: hidden;
}
.member-info {
position: absolute;
top: 50%;
-webkit-transform: rotate(45deg) translate(-12px, 15px);
transform: rotate(45deg) translate(-12px, 15px);
left: 0;
right: 0;
z-index: 2;
text-align: center;
}
.member-info h3,
.member-info p {
margin: 0;
color: #fff;
position: relative;
opacity: 0;
visibility: hidden;
}
.member-info h3 {
text-transform: uppercase;
font-size: 14px;
/*font-size: 12px;*/
font-weight: 400;
top: -90px;
}
.member-info p {
font-weight: 300;
font-size: 12px;
bottom: -150px;
}
.member-details > div:after {
content: '';
background-image: linear-gradient(45deg, rgba(228, 82, 69, .8) 50%, transparent 50%);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
opacity: 0;
visibility: hidden;
}
/* hover content - onhover */
.member-details *,
.member-details > div:after {
cursor: pointer;
transition: all .4s ease;
}
.member-details:hover *,
.member-details:hover > div:after {
opacity: 1;
visibility: visible;
}
.member-details:hover .member-info h3 {
top: 0;
}
.member-details:hover .member-info p {
bottom: 0;
}
/* Team overview */
.team-overview {
padding-right: 15px;
}
.team-overview h2 {
text-transform: uppercase;
font-size: 22px;
font-weight: 700;
margin-bottom: 5px;
}
.team-overview > a {
margin-bottom: 30px;
display: block;
}
.team-overview > a:before {
content: '';
width: 10px;
height: 2px;
position: relative;
top: -3px;
margin-right: 5px;
background-color: #ccc;
display: inline-block;
}
/* For centering elements - optional - Can use table,tablecell instead */
.flex-center {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.flex-center > div:first-child {
order: 2;
}
/* RESPONSIVE */
@media only screen and (max-width : 992px) {
.sm-no-flex {
display: block;
}
.sm-no-float {
float: none !important;
}
.sm-text-center {
text-align: center;
}
}
@media only screen and (max-width : 550px) {
.team-members li {
text-align: center;
}
.team-members li > div {
float: none;
display: inline-block;
width: 30%;
margin: 0 !important;
}
.team-members {
-webkit-transform: rotate(0);
transform: rotate(0);
}
.member-details img {
-webkit-transform: rotate(0) translate(0, 0);
transform: rotate(0) translate(0, 0);
}
.team-overview {
padding: 15px;
}
}
@media only screen and (max-width : 399px) {
.team-members li > div {
width: 48%;
}
} | 0.466603 | 0.157914 |
.bigLogo
{
font-family: 'Helvetica Neue';
text-align: center;
font-size: 350%;
}
p.sign-title
{
font-family: 'Open Sans' , sans-serif;
font-size: 18px;
font-weight: 400;
text-align: center;
margin-top: 20px;
-webkit-font-smoothing: antialiased;
}
.egle-light > .part1, .egle-light > .part2{
font-weight: 400;
}
.help-block {
margin-bottom: 0;
}
form.login input
{
height: 44px!important;
font-size: 16px;
}
form.login button
{
width: 100%;
font-size: 14px;
letter-spacing: 1px;
}
form.login .remember-forgot
{
float: left;
width: 100%;
margin: 10px 0 0 0;
}
form.login .forgot-pass-content
{
min-height: 20px;
margin-bottom: 10px;
text-align: right;
}
form.login a
{
transition: color 0.5s ease;
}
.show-pass-reset
{
display: block !important;
}
.pass-reset
{
margin: 0 auto;
width: 250px;
position: relative;
margin-top: 22%;
z-index: 999;
padding: 20px 15px;
}
.sign-card {
padding: 40px 40px;
margin: 0 auto 25px;
margin-bottom: 20px;
width: 304px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #f7f7f7;
}
.sign-more{
margin: 0 0 10px;
color: #555;
font-size: 14px;
text-align: center;
}
@media (min-height: 400px) {
.signin{
margin-top: 30px;
}
}
@media (min-height: 527px) {
.signin{
margin-top: 60px;
}
}
@media (min-height: 600px) {
.signin{
margin-top: 99px;
}
}
@media (min-height: 700px) {
.signin{
margin-top: 119px;
}
}
.captcha > div > div > div{
width: inherit!important;
}
/* <register> */
form.register input[type="text"], form.register input[type="password"]
{
width: 100%;
margin: 0;
outline: 0;
height: 32px;
font-size: 14px;
font-family: Arial, sans-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
form.register button[type="submit"]
{
width: 100%;
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
margin-top: 16px;
outline: 0;
cursor: pointer;
letter-spacing: 1px;
}
form.register label, form.register a
{
font-size: 12px;
font-weight: 400;
}
form.register a
{
transition: color 0.5s ease;
}
.register-card {
padding: 20px 30px;
margin: 0 auto 25px;
margin-bottom: 20px;
width: 304px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #f7f7f7;
}
.form-inline .dropdown-menu > li > a {
padding: 1px 20px!important;
}
/* </register> */
/* <loading> */
/*
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
/**************************/
/* STYLES FOR THE SPINNER */
/**************************/
/*
* Constants:
* STROKEWIDTH = 3px
* ARCSIZE = 270 degrees (amount of circle the arc takes up)
* ARCTIME = 1333ms (time it takes to expand and contract arc)
* ARCSTARTROT = 216 degrees (how much the start location of the arc
* should rotate each time, 216 gives us a
* 5 pointed star shape (it's 360/5 * 3).
* For a 7 pointed star, we might do
* 360/7 * 3 = 154.286)
* CONTAINERWIDTH = 28px
* SHRINK_TIME = 400ms
*/
.preloader-wrapper {
display: inline-block;
position: relative;
width: 48px;
height: 48px; }
.preloader-wrapper.small {
width: 36px;
height: 36px; }
.preloader-wrapper.xs {
width: 20px;
height: 20px; }
.preloader-wrapper.big {
width: 64px;
height: 64px; }
.preloader-wrapper.active {
/* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
-webkit-animation: container-rotate 1568ms linear infinite;
animation: container-rotate 1568ms linear infinite; }
@-webkit-keyframes container-rotate {
to {
-webkit-transform: rotate(360deg); } }
@keyframes container-rotate {
to {
transform: rotate(360deg); } }
.spinner-layer {
position: absolute;
width: 100%;
height: 100%;
opacity: 0; }
.spinner-blue, .spinner-blue-only {
border-color: #4285f4; }
.spinner-red, .spinner-red-only {
border-color: #db4437; }
.spinner-yellow, .spinner-yellow-only {
border-color: #f4b400; }
.spinner-green, .spinner-green-only {
border-color: #0f9d58; }
.spinner-white, .spinner-white-only {
border-color: #fff; }
/**
* IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
*
* iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
* guarantee that the animation will start _exactly_ after that value. So we avoid using
* animation-delay and instead set custom keyframes for each color (as redundant as it
* seems).
*
* We write out each animation in full (instead of separating animation-name,
* animation-duration, etc.) because under the polyfill, Safari does not recognize those
* specific properties properly, treats them as -webkit-animation, and overrides the
* other animation rules. See https://github.com/Polymer/platform/issues/53.
*/
.active .spinner-layer.spinner-blue {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-red {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-yellow {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-green {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-white {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, white-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, white-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-blue-only, .active .spinner-layer.spinner-red-only, .active .spinner-layer.spinner-yellow-only, .active .spinner-layer.spinner-green-only, .active .spinner-layer.spinner-white-only {
/* durations: 4 * ARCTIME */
opacity: 1;
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
@-webkit-keyframes fill-unfill-rotate {
/* 0.5 * ARCSIZE */
/* 1 * ARCSIZE */
/* 1.5 * ARCSIZE */
/* 2 * ARCSIZE */
/* 2.5 * ARCSIZE */
/* 3 * ARCSIZE */
/* 3.5 * ARCSIZE */
/* 4 * ARCSIZE */
12.5% {
-webkit-transform: rotate(135deg); }
25% {
-webkit-transform: rotate(270deg); }
37.5% {
-webkit-transform: rotate(405deg); }
50% {
-webkit-transform: rotate(540deg); }
62.5% {
-webkit-transform: rotate(675deg); }
75% {
-webkit-transform: rotate(810deg); }
87.5% {
-webkit-transform: rotate(945deg); }
to {
-webkit-transform: rotate(1080deg); } }
@keyframes fill-unfill-rotate {
/* 0.5 * ARCSIZE */
/* 1 * ARCSIZE */
/* 1.5 * ARCSIZE */
/* 2 * ARCSIZE */
/* 2.5 * ARCSIZE */
/* 3 * ARCSIZE */
/* 3.5 * ARCSIZE */
/* 4 * ARCSIZE */
12.5% {
transform: rotate(135deg); }
25% {
transform: rotate(270deg); }
37.5% {
transform: rotate(405deg); }
50% {
transform: rotate(540deg); }
62.5% {
transform: rotate(675deg); }
75% {
transform: rotate(810deg); }
87.5% {
transform: rotate(945deg); }
to {
transform: rotate(1080deg); } }
@-webkit-keyframes blue-fade-in-out {
from {
opacity: 1; }
25% {
opacity: 1; }
26% {
opacity: 0; }
89% {
opacity: 0; }
90% {
opacity: 1; }
100% {
opacity: 1; } }
@keyframes blue-fade-in-out {
from {
opacity: 1; }
25% {
opacity: 1; }
26% {
opacity: 0; }
89% {
opacity: 0; }
90% {
opacity: 1; }
100% {
opacity: 1; } }
@-webkit-keyframes red-fade-in-out {
from {
opacity: 0; }
15% {
opacity: 0; }
25% {
opacity: 1; }
50% {
opacity: 1; }
51% {
opacity: 0; } }
@keyframes red-fade-in-out {
from {
opacity: 0; }
15% {
opacity: 0; }
25% {
opacity: 1; }
50% {
opacity: 1; }
51% {
opacity: 0; } }
@-webkit-keyframes yellow-fade-in-out {
from {
opacity: 0; }
40% {
opacity: 0; }
50% {
opacity: 1; }
75% {
opacity: 1; }
76% {
opacity: 0; } }
@keyframes yellow-fade-in-out {
from {
opacity: 0; }
40% {
opacity: 0; }
50% {
opacity: 1; }
75% {
opacity: 1; }
76% {
opacity: 0; } }
@-webkit-keyframes green-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes green-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@-webkit-keyframes white-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes white-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
/**
* Patch the gap that appear between the two adjacent div.circle-clipper while the
* spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
*/
.gap-patch {
position: absolute;
top: 0;
left: 45%;
width: 10%;
height: 100%;
overflow: hidden;
border-color: inherit; }
.gap-patch .circle {
width: 1000%;
left: -450%; }
.circle-clipper {
display: inline-block;
position: relative;
width: 50%;
height: 100%;
overflow: hidden;
border-color: inherit; }
.circle-clipper .circle {
width: 200%;
height: 100%;
border-width: 2px;
/* STROKEWIDTH */
border-style: solid;
border-color: inherit;
border-bottom-color: transparent !important;
border-radius: 50%;
-webkit-animation: none;
animation: none;
position: absolute;
top: 0;
right: 0;
bottom: 0; }
.circle-clipper.left .circle {
left: 0;
border-right-color: transparent !important;
-webkit-transform: rotate(129deg);
transform: rotate(129deg); }
.circle-clipper.right .circle {
left: -100%;
border-left-color: transparent !important;
-webkit-transform: rotate(-129deg);
transform: rotate(-129deg); }
.active .circle-clipper.left .circle {
/* duration: ARCTIME */
-webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .circle-clipper.right .circle {
/* duration: ARCTIME */
-webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
@-webkit-keyframes left-spin {
from {
-webkit-transform: rotate(130deg); }
50% {
-webkit-transform: rotate(-5deg); }
to {
-webkit-transform: rotate(130deg); } }
@keyframes left-spin {
from {
transform: rotate(130deg); }
50% {
transform: rotate(-5deg); }
to {
transform: rotate(130deg); } }
@-webkit-keyframes right-spin {
from {
-webkit-transform: rotate(-130deg); }
50% {
-webkit-transform: rotate(5deg); }
to {
-webkit-transform: rotate(-130deg); } }
@keyframes right-spin {
from {
transform: rotate(-130deg); }
50% {
transform: rotate(5deg); }
to {
transform: rotate(-130deg); } }
#spinnerContainer.cooldown {
/* duration: SHRINK_TIME */
-webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }
@-webkit-keyframes fade-out {
from {
opacity: 1; }
to {
opacity: 0; } }
@keyframes fade-out {
from {
opacity: 1; }
to {
opacity: 0; } }
/* </loading> */ | server/public/css/templates/sign.css | .bigLogo
{
font-family: 'Helvetica Neue';
text-align: center;
font-size: 350%;
}
p.sign-title
{
font-family: 'Open Sans' , sans-serif;
font-size: 18px;
font-weight: 400;
text-align: center;
margin-top: 20px;
-webkit-font-smoothing: antialiased;
}
.egle-light > .part1, .egle-light > .part2{
font-weight: 400;
}
.help-block {
margin-bottom: 0;
}
form.login input
{
height: 44px!important;
font-size: 16px;
}
form.login button
{
width: 100%;
font-size: 14px;
letter-spacing: 1px;
}
form.login .remember-forgot
{
float: left;
width: 100%;
margin: 10px 0 0 0;
}
form.login .forgot-pass-content
{
min-height: 20px;
margin-bottom: 10px;
text-align: right;
}
form.login a
{
transition: color 0.5s ease;
}
.show-pass-reset
{
display: block !important;
}
.pass-reset
{
margin: 0 auto;
width: 250px;
position: relative;
margin-top: 22%;
z-index: 999;
padding: 20px 15px;
}
.sign-card {
padding: 40px 40px;
margin: 0 auto 25px;
margin-bottom: 20px;
width: 304px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #f7f7f7;
}
.sign-more{
margin: 0 0 10px;
color: #555;
font-size: 14px;
text-align: center;
}
@media (min-height: 400px) {
.signin{
margin-top: 30px;
}
}
@media (min-height: 527px) {
.signin{
margin-top: 60px;
}
}
@media (min-height: 600px) {
.signin{
margin-top: 99px;
}
}
@media (min-height: 700px) {
.signin{
margin-top: 119px;
}
}
.captcha > div > div > div{
width: inherit!important;
}
/* <register> */
form.register input[type="text"], form.register input[type="password"]
{
width: 100%;
margin: 0;
outline: 0;
height: 32px;
font-size: 14px;
font-family: Arial, sans-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
form.register button[type="submit"]
{
width: 100%;
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
margin-top: 16px;
outline: 0;
cursor: pointer;
letter-spacing: 1px;
}
form.register label, form.register a
{
font-size: 12px;
font-weight: 400;
}
form.register a
{
transition: color 0.5s ease;
}
.register-card {
padding: 20px 30px;
margin: 0 auto 25px;
margin-bottom: 20px;
width: 304px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #f7f7f7;
}
.form-inline .dropdown-menu > li > a {
padding: 1px 20px!important;
}
/* </register> */
/* <loading> */
/*
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
/**************************/
/* STYLES FOR THE SPINNER */
/**************************/
/*
* Constants:
* STROKEWIDTH = 3px
* ARCSIZE = 270 degrees (amount of circle the arc takes up)
* ARCTIME = 1333ms (time it takes to expand and contract arc)
* ARCSTARTROT = 216 degrees (how much the start location of the arc
* should rotate each time, 216 gives us a
* 5 pointed star shape (it's 360/5 * 3).
* For a 7 pointed star, we might do
* 360/7 * 3 = 154.286)
* CONTAINERWIDTH = 28px
* SHRINK_TIME = 400ms
*/
.preloader-wrapper {
display: inline-block;
position: relative;
width: 48px;
height: 48px; }
.preloader-wrapper.small {
width: 36px;
height: 36px; }
.preloader-wrapper.xs {
width: 20px;
height: 20px; }
.preloader-wrapper.big {
width: 64px;
height: 64px; }
.preloader-wrapper.active {
/* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
-webkit-animation: container-rotate 1568ms linear infinite;
animation: container-rotate 1568ms linear infinite; }
@-webkit-keyframes container-rotate {
to {
-webkit-transform: rotate(360deg); } }
@keyframes container-rotate {
to {
transform: rotate(360deg); } }
.spinner-layer {
position: absolute;
width: 100%;
height: 100%;
opacity: 0; }
.spinner-blue, .spinner-blue-only {
border-color: #4285f4; }
.spinner-red, .spinner-red-only {
border-color: #db4437; }
.spinner-yellow, .spinner-yellow-only {
border-color: #f4b400; }
.spinner-green, .spinner-green-only {
border-color: #0f9d58; }
.spinner-white, .spinner-white-only {
border-color: #fff; }
/**
* IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
*
* iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
* guarantee that the animation will start _exactly_ after that value. So we avoid using
* animation-delay and instead set custom keyframes for each color (as redundant as it
* seems).
*
* We write out each animation in full (instead of separating animation-name,
* animation-duration, etc.) because under the polyfill, Safari does not recognize those
* specific properties properly, treats them as -webkit-animation, and overrides the
* other animation rules. See https://github.com/Polymer/platform/issues/53.
*/
.active .spinner-layer.spinner-blue {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-red {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-yellow {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-green {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-white {
/* durations: 4 * ARCTIME */
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, white-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, white-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .spinner-layer.spinner-blue-only, .active .spinner-layer.spinner-red-only, .active .spinner-layer.spinner-yellow-only, .active .spinner-layer.spinner-green-only, .active .spinner-layer.spinner-white-only {
/* durations: 4 * ARCTIME */
opacity: 1;
-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
@-webkit-keyframes fill-unfill-rotate {
/* 0.5 * ARCSIZE */
/* 1 * ARCSIZE */
/* 1.5 * ARCSIZE */
/* 2 * ARCSIZE */
/* 2.5 * ARCSIZE */
/* 3 * ARCSIZE */
/* 3.5 * ARCSIZE */
/* 4 * ARCSIZE */
12.5% {
-webkit-transform: rotate(135deg); }
25% {
-webkit-transform: rotate(270deg); }
37.5% {
-webkit-transform: rotate(405deg); }
50% {
-webkit-transform: rotate(540deg); }
62.5% {
-webkit-transform: rotate(675deg); }
75% {
-webkit-transform: rotate(810deg); }
87.5% {
-webkit-transform: rotate(945deg); }
to {
-webkit-transform: rotate(1080deg); } }
@keyframes fill-unfill-rotate {
/* 0.5 * ARCSIZE */
/* 1 * ARCSIZE */
/* 1.5 * ARCSIZE */
/* 2 * ARCSIZE */
/* 2.5 * ARCSIZE */
/* 3 * ARCSIZE */
/* 3.5 * ARCSIZE */
/* 4 * ARCSIZE */
12.5% {
transform: rotate(135deg); }
25% {
transform: rotate(270deg); }
37.5% {
transform: rotate(405deg); }
50% {
transform: rotate(540deg); }
62.5% {
transform: rotate(675deg); }
75% {
transform: rotate(810deg); }
87.5% {
transform: rotate(945deg); }
to {
transform: rotate(1080deg); } }
@-webkit-keyframes blue-fade-in-out {
from {
opacity: 1; }
25% {
opacity: 1; }
26% {
opacity: 0; }
89% {
opacity: 0; }
90% {
opacity: 1; }
100% {
opacity: 1; } }
@keyframes blue-fade-in-out {
from {
opacity: 1; }
25% {
opacity: 1; }
26% {
opacity: 0; }
89% {
opacity: 0; }
90% {
opacity: 1; }
100% {
opacity: 1; } }
@-webkit-keyframes red-fade-in-out {
from {
opacity: 0; }
15% {
opacity: 0; }
25% {
opacity: 1; }
50% {
opacity: 1; }
51% {
opacity: 0; } }
@keyframes red-fade-in-out {
from {
opacity: 0; }
15% {
opacity: 0; }
25% {
opacity: 1; }
50% {
opacity: 1; }
51% {
opacity: 0; } }
@-webkit-keyframes yellow-fade-in-out {
from {
opacity: 0; }
40% {
opacity: 0; }
50% {
opacity: 1; }
75% {
opacity: 1; }
76% {
opacity: 0; } }
@keyframes yellow-fade-in-out {
from {
opacity: 0; }
40% {
opacity: 0; }
50% {
opacity: 1; }
75% {
opacity: 1; }
76% {
opacity: 0; } }
@-webkit-keyframes green-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes green-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@-webkit-keyframes white-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes white-fade-in-out {
from {
opacity: 0; }
65% {
opacity: 0; }
75% {
opacity: 1; }
90% {
opacity: 1; }
100% {
opacity: 0; } }
/**
* Patch the gap that appear between the two adjacent div.circle-clipper while the
* spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
*/
.gap-patch {
position: absolute;
top: 0;
left: 45%;
width: 10%;
height: 100%;
overflow: hidden;
border-color: inherit; }
.gap-patch .circle {
width: 1000%;
left: -450%; }
.circle-clipper {
display: inline-block;
position: relative;
width: 50%;
height: 100%;
overflow: hidden;
border-color: inherit; }
.circle-clipper .circle {
width: 200%;
height: 100%;
border-width: 2px;
/* STROKEWIDTH */
border-style: solid;
border-color: inherit;
border-bottom-color: transparent !important;
border-radius: 50%;
-webkit-animation: none;
animation: none;
position: absolute;
top: 0;
right: 0;
bottom: 0; }
.circle-clipper.left .circle {
left: 0;
border-right-color: transparent !important;
-webkit-transform: rotate(129deg);
transform: rotate(129deg); }
.circle-clipper.right .circle {
left: -100%;
border-left-color: transparent !important;
-webkit-transform: rotate(-129deg);
transform: rotate(-129deg); }
.active .circle-clipper.left .circle {
/* duration: ARCTIME */
-webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
.active .circle-clipper.right .circle {
/* duration: ARCTIME */
-webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
@-webkit-keyframes left-spin {
from {
-webkit-transform: rotate(130deg); }
50% {
-webkit-transform: rotate(-5deg); }
to {
-webkit-transform: rotate(130deg); } }
@keyframes left-spin {
from {
transform: rotate(130deg); }
50% {
transform: rotate(-5deg); }
to {
transform: rotate(130deg); } }
@-webkit-keyframes right-spin {
from {
-webkit-transform: rotate(-130deg); }
50% {
-webkit-transform: rotate(5deg); }
to {
-webkit-transform: rotate(-130deg); } }
@keyframes right-spin {
from {
transform: rotate(-130deg); }
50% {
transform: rotate(5deg); }
to {
transform: rotate(-130deg); } }
#spinnerContainer.cooldown {
/* duration: SHRINK_TIME */
-webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }
@-webkit-keyframes fade-out {
from {
opacity: 1; }
to {
opacity: 0; } }
@keyframes fade-out {
from {
opacity: 1; }
to {
opacity: 0; } }
/* </loading> */ | 0.315736 | 0.112942 |
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 0;
background-color: #F0EEEE;
line-height: 1.5;
font-family: sans-serif;
overflow-x: hidden;
}
.main-grid {
margin: 1rem auto;
margin-top: 0;
max-width: 1600px;
}
img {
max-width: 100%;
}
.company_name {
display: flex;
flex-direction: column;
text-transform: uppercase;
margin-top: 1.6rem;
margin-bottom: 0.9rem;
font-size: 1.5rem;
letter-spacing: 3px;
line-height: 1.1em;
position: relative;
transition: 540ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.company_name > div {
margin: auto;
}
.company_name .sub {
display: flex;
align-items: center;
}
.company_name__sport {
width: 10px;
height: 10px;
background-color: #000;
display: inline-block;
margin: auto 0.6rem;
position: relative;
top: 2px;
border-radius: 50%;
}
.icon {
font-family: "Sansita", sans-serif;
text-align: center;
padding-top: 1rem;
margin-bottom: 2rem;
position: relative;
}
.icon h3 {
font-size: 2.02rem;
line-height: 20px;
}
@media (max-width: 477px) {
.icon::before {
content: "";
background-color: #000;
width: 60%;
height: 3px;
position: absolute;
top: 0;
left: 20%;
border-radius: 10px;
}
}
.header {
font-family: "Sansita", sans-serif;
background-color: #F0EEEE;
padding-top: 1rem;
width: 100%;
display: grid;
grid-template-columns: minmax(3rem, 4rem) 1fr 2fr minmax(3rem, 4rem);
z-index: 2;
}
.header .logo {
padding-left: 0.8rem;
}
.header .company_name {
grid-row: 2;
grid-column: span 5;
}
.header .company_name::before {
content: "";
width: 100%;
height: 3px;
background-color: #000;
position: absolute;
top: -0.9rem;
}
.header .nav__icon {
grid-column: -1;
padding: 0.3rem 0.2rem;
width: 72px;
}
.header .nav__icon svg {
display: block;
}
.header .nav__icon svg:not(:first-child) {
margin-top: 0.8rem;
}
@media (min-width: 475px) {
.header {
position: relative;
padding-left: 0.8rem;
}
.header::after {
content: "";
width: calc(100vw);
height: 3px;
background-color: #000;
position: absolute;
bottom: 1.2rem;
left: -2vw;
}
.header .company_name {
grid-row: 1;
grid-column: 2/5;
margin-bottom: 2.5rem;
margin-top: 0;
max-width: 290px;
}
.header .company_name::before {
display: none;
}
}
@media (min-width: 780px) {
.header {
position: unset;
}
.header::after {
width: calc(100vw);
left: 0;
right: 0;
top: 89px;
}
}
.nav {
font-family: "Sansita", sans-serif;
font-size: 1.2rem;
height: fit-content;
}
.nav, .nav__info {
display: none;
}
.nav li {
list-style: none;
}
.nav li a {
text-decoration: none;
color: #000;
opacity: 0.6;
}
.nav .nav__links {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
}
.nav .nav__links .nav__item {
position: relative;
padding: 0.5rem 1rem;
min-width: max-content;
}
.nav .nav__links .nav__item svg {
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.nav .nav__links .nav__item rect {
fill: none;
stroke: inherit;
stroke-width: 2;
stroke-dasharray: 22, 69;
transition: all 0.75s linear;
}
.nav .active.nav__link {
opacity: 1;
}
.nav .active.nav__link + svg rect,
.nav .nav__link:hover + svg rect {
stroke: #F89595;
stroke-width: 7px;
stroke-dashoffset: 48;
transition: all 1.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav .active.nav__link-home + svg rect,
.nav .nav__link-home:hover + svg rect {
stroke-dasharray: 35, 155;
}
.nav .active.nav__link-about + svg rect,
.nav .nav__link-about:hover + svg rect {
stroke-dasharray: 40, 181;
}
.nav .active.nav__link-services + svg rect,
.nav .nav__link-services:hover + svg rect {
stroke-dasharray: 40, 175;
}
@media (min-width: 830px) {
.nav {
grid-row: 1;
grid-column: 3/5;
display: inline;
z-index: 1;
}
}
@media (min-width: 1038px) {
.header .nav ul.nav__links {
gap: 5rem;
}
}
footer {
margin-top: 2rem;
display: grid;
grid-template-columns: minmax(3rem, 4rem) 1fr 2fr minmax(3rem, 4rem);
}
footer:after {
content: "";
width: 100%;
height: 140px;
background: #373737;
position: relative;
left: 0;
right: 0;
z-index: -1;
grid-column: 1/-1;
grid-row: 1;
}
footer .footer__info {
grid-column: 1/-1;
grid-row: 1;
display: grid !important;
grid-template-columns: 1fr 1fr 1fr;
width: -webkit-fill-available;
height: 115px;
margin: 0px 2rem;
margin-top: -14px;
padding: 0;
background: #F0EEEE;
border-radius: 0 0 20px 20px;
align-items: baseline;
justify-items: center;
box-shadow: -1px 12px 10px black;
}
footer .footer__info li {
list-style-type: none;
width: min-content;
text-align: center;
height: 100px;
}
footer .footer__info li div {
font-weight: 900;
}
@media (max-width: 525px) {
footer .company_name,
footer .copyright {
display: none;
}
footer .nav {
display: flex !important;
grid-column: 1/-1;
margin: 0 auto;
}
}
@media (min-width: 525px) {
footer {
grid-template-columns: 0.5fr 1fr 3fr 1fr 0.5fr;
grid-template-rows: 80px 125px 80px 125px 20px;
background-color: white;
padding-bottom: 3rem;
}
footer::after {
height: 81px;
z-index: 2;
}
footer .company_name,
footer .footer__info,
footer .copyright {
display: flex;
grid-column: 3;
}
footer .footer__info {
margin-top: 0px;
box-shadow: none;
}
footer .nav {
grid-column: 2/5;
grid-row: 2;
display: inline;
position: relative;
padding: 20px 0;
z-index: 2;
}
footer .nav::after {
content: "";
border-bottom: 2px solid;
width: 100%;
position: absolute;
bottom: 0;
}
footer .nav .nav__links {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 100%;
justify-items: center;
align-content: flex-end;
}
footer .company_name {
font-family: "Sansita", sans-serif;
grid-row: 3;
margin-top: 0;
align-self: flex-start;
}
footer .footer__info {
grid-column: 2/5;
grid-row: 4;
background-color: inherit;
justify-items: center;
align-items: baseline;
}
footer .copyright {
grid-row: 5;
justify-self: center;
}
}
@media (min-width: 830px) {
.footer__info {
grid-column: 3 !important;
}
}
.slider {
font-family: "Saira Condensed", sans-serif;
position: relative;
margin-bottom: 7rem;
}
.slider__nav {
display: grid;
grid-template-columns: 1fr 3fr 1fr;
font-size: 1.5rem;
}
.slider__nav span {
text-align: center;
}
.slider__nav .nav-arrow {
display: flex;
gap: 1rem;
}
.slider__nav .nav-arrow img {
max-width: 50%;
}
.slider__nav .nav-arrow__left {
justify-content: flex-end;
}
.slider__nav .nav-arrow__left img {
transform-origin: center center;
transform: rotate(180deg);
}
.slider__items {
display: flex;
overflow-x: scroll;
margin-top: 3rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.slider__items .item {
display: flex;
flex-direction: column;
min-width: 190px;
max-width: 300px;
margin: 0 1.2rem;
background: #f0eeee;
position: relative;
}
.slider__items .item img {
width: 60%;
height: 100px;
margin: 0 auto;
}
.slider__items .item span {
font-size: 1.5rem;
text-align: center;
line-height: 3rem;
}
.slider .descriptions {
background-color: #C4C4C4;
padding-top: 7rem;
z-index: -1;
position: absolute;
margin-top: -90px;
left: 0;
right: 0;
height: 500px;
}
.slider .old {
display: none;
}
.slider .text {
padding: 1px 1rem 2rem;
margin-top: 1rem;
z-index: 2;
font-size: 1.5rem;
height: 333px;
overflow-y: scroll;
}
.slider .text .header-wrapper {
background-color: #c4c4c4;
position: sticky;
top: -1.7px;
padding-bottom: 0.1rem;
}
.slider .text h4 {
margin: 0 auto;
width: fit-content;
margin-bottom: 1.5rem;
position: relative;
}
.slider .text h4::after {
content: "";
background-color: white;
width: 7ch;
height: 3px;
position: absolute;
left: calc(50% - 4ch);
bottom: -2px;
}
.slider .text p {
max-width: 70ch;
margin: 0 auto;
margin-bottom: 1rem;
}
/*# sourceMappingURL=services.css.map */ | css/services.css | *,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 0;
background-color: #F0EEEE;
line-height: 1.5;
font-family: sans-serif;
overflow-x: hidden;
}
.main-grid {
margin: 1rem auto;
margin-top: 0;
max-width: 1600px;
}
img {
max-width: 100%;
}
.company_name {
display: flex;
flex-direction: column;
text-transform: uppercase;
margin-top: 1.6rem;
margin-bottom: 0.9rem;
font-size: 1.5rem;
letter-spacing: 3px;
line-height: 1.1em;
position: relative;
transition: 540ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.company_name > div {
margin: auto;
}
.company_name .sub {
display: flex;
align-items: center;
}
.company_name__sport {
width: 10px;
height: 10px;
background-color: #000;
display: inline-block;
margin: auto 0.6rem;
position: relative;
top: 2px;
border-radius: 50%;
}
.icon {
font-family: "Sansita", sans-serif;
text-align: center;
padding-top: 1rem;
margin-bottom: 2rem;
position: relative;
}
.icon h3 {
font-size: 2.02rem;
line-height: 20px;
}
@media (max-width: 477px) {
.icon::before {
content: "";
background-color: #000;
width: 60%;
height: 3px;
position: absolute;
top: 0;
left: 20%;
border-radius: 10px;
}
}
.header {
font-family: "Sansita", sans-serif;
background-color: #F0EEEE;
padding-top: 1rem;
width: 100%;
display: grid;
grid-template-columns: minmax(3rem, 4rem) 1fr 2fr minmax(3rem, 4rem);
z-index: 2;
}
.header .logo {
padding-left: 0.8rem;
}
.header .company_name {
grid-row: 2;
grid-column: span 5;
}
.header .company_name::before {
content: "";
width: 100%;
height: 3px;
background-color: #000;
position: absolute;
top: -0.9rem;
}
.header .nav__icon {
grid-column: -1;
padding: 0.3rem 0.2rem;
width: 72px;
}
.header .nav__icon svg {
display: block;
}
.header .nav__icon svg:not(:first-child) {
margin-top: 0.8rem;
}
@media (min-width: 475px) {
.header {
position: relative;
padding-left: 0.8rem;
}
.header::after {
content: "";
width: calc(100vw);
height: 3px;
background-color: #000;
position: absolute;
bottom: 1.2rem;
left: -2vw;
}
.header .company_name {
grid-row: 1;
grid-column: 2/5;
margin-bottom: 2.5rem;
margin-top: 0;
max-width: 290px;
}
.header .company_name::before {
display: none;
}
}
@media (min-width: 780px) {
.header {
position: unset;
}
.header::after {
width: calc(100vw);
left: 0;
right: 0;
top: 89px;
}
}
.nav {
font-family: "Sansita", sans-serif;
font-size: 1.2rem;
height: fit-content;
}
.nav, .nav__info {
display: none;
}
.nav li {
list-style: none;
}
.nav li a {
text-decoration: none;
color: #000;
opacity: 0.6;
}
.nav .nav__links {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
}
.nav .nav__links .nav__item {
position: relative;
padding: 0.5rem 1rem;
min-width: max-content;
}
.nav .nav__links .nav__item svg {
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.nav .nav__links .nav__item rect {
fill: none;
stroke: inherit;
stroke-width: 2;
stroke-dasharray: 22, 69;
transition: all 0.75s linear;
}
.nav .active.nav__link {
opacity: 1;
}
.nav .active.nav__link + svg rect,
.nav .nav__link:hover + svg rect {
stroke: #F89595;
stroke-width: 7px;
stroke-dashoffset: 48;
transition: all 1.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav .active.nav__link-home + svg rect,
.nav .nav__link-home:hover + svg rect {
stroke-dasharray: 35, 155;
}
.nav .active.nav__link-about + svg rect,
.nav .nav__link-about:hover + svg rect {
stroke-dasharray: 40, 181;
}
.nav .active.nav__link-services + svg rect,
.nav .nav__link-services:hover + svg rect {
stroke-dasharray: 40, 175;
}
@media (min-width: 830px) {
.nav {
grid-row: 1;
grid-column: 3/5;
display: inline;
z-index: 1;
}
}
@media (min-width: 1038px) {
.header .nav ul.nav__links {
gap: 5rem;
}
}
footer {
margin-top: 2rem;
display: grid;
grid-template-columns: minmax(3rem, 4rem) 1fr 2fr minmax(3rem, 4rem);
}
footer:after {
content: "";
width: 100%;
height: 140px;
background: #373737;
position: relative;
left: 0;
right: 0;
z-index: -1;
grid-column: 1/-1;
grid-row: 1;
}
footer .footer__info {
grid-column: 1/-1;
grid-row: 1;
display: grid !important;
grid-template-columns: 1fr 1fr 1fr;
width: -webkit-fill-available;
height: 115px;
margin: 0px 2rem;
margin-top: -14px;
padding: 0;
background: #F0EEEE;
border-radius: 0 0 20px 20px;
align-items: baseline;
justify-items: center;
box-shadow: -1px 12px 10px black;
}
footer .footer__info li {
list-style-type: none;
width: min-content;
text-align: center;
height: 100px;
}
footer .footer__info li div {
font-weight: 900;
}
@media (max-width: 525px) {
footer .company_name,
footer .copyright {
display: none;
}
footer .nav {
display: flex !important;
grid-column: 1/-1;
margin: 0 auto;
}
}
@media (min-width: 525px) {
footer {
grid-template-columns: 0.5fr 1fr 3fr 1fr 0.5fr;
grid-template-rows: 80px 125px 80px 125px 20px;
background-color: white;
padding-bottom: 3rem;
}
footer::after {
height: 81px;
z-index: 2;
}
footer .company_name,
footer .footer__info,
footer .copyright {
display: flex;
grid-column: 3;
}
footer .footer__info {
margin-top: 0px;
box-shadow: none;
}
footer .nav {
grid-column: 2/5;
grid-row: 2;
display: inline;
position: relative;
padding: 20px 0;
z-index: 2;
}
footer .nav::after {
content: "";
border-bottom: 2px solid;
width: 100%;
position: absolute;
bottom: 0;
}
footer .nav .nav__links {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 100%;
justify-items: center;
align-content: flex-end;
}
footer .company_name {
font-family: "Sansita", sans-serif;
grid-row: 3;
margin-top: 0;
align-self: flex-start;
}
footer .footer__info {
grid-column: 2/5;
grid-row: 4;
background-color: inherit;
justify-items: center;
align-items: baseline;
}
footer .copyright {
grid-row: 5;
justify-self: center;
}
}
@media (min-width: 830px) {
.footer__info {
grid-column: 3 !important;
}
}
.slider {
font-family: "Saira Condensed", sans-serif;
position: relative;
margin-bottom: 7rem;
}
.slider__nav {
display: grid;
grid-template-columns: 1fr 3fr 1fr;
font-size: 1.5rem;
}
.slider__nav span {
text-align: center;
}
.slider__nav .nav-arrow {
display: flex;
gap: 1rem;
}
.slider__nav .nav-arrow img {
max-width: 50%;
}
.slider__nav .nav-arrow__left {
justify-content: flex-end;
}
.slider__nav .nav-arrow__left img {
transform-origin: center center;
transform: rotate(180deg);
}
.slider__items {
display: flex;
overflow-x: scroll;
margin-top: 3rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.slider__items .item {
display: flex;
flex-direction: column;
min-width: 190px;
max-width: 300px;
margin: 0 1.2rem;
background: #f0eeee;
position: relative;
}
.slider__items .item img {
width: 60%;
height: 100px;
margin: 0 auto;
}
.slider__items .item span {
font-size: 1.5rem;
text-align: center;
line-height: 3rem;
}
.slider .descriptions {
background-color: #C4C4C4;
padding-top: 7rem;
z-index: -1;
position: absolute;
margin-top: -90px;
left: 0;
right: 0;
height: 500px;
}
.slider .old {
display: none;
}
.slider .text {
padding: 1px 1rem 2rem;
margin-top: 1rem;
z-index: 2;
font-size: 1.5rem;
height: 333px;
overflow-y: scroll;
}
.slider .text .header-wrapper {
background-color: #c4c4c4;
position: sticky;
top: -1.7px;
padding-bottom: 0.1rem;
}
.slider .text h4 {
margin: 0 auto;
width: fit-content;
margin-bottom: 1.5rem;
position: relative;
}
.slider .text h4::after {
content: "";
background-color: white;
width: 7ch;
height: 3px;
position: absolute;
left: calc(50% - 4ch);
bottom: -2px;
}
.slider .text p {
max-width: 70ch;
margin: 0 auto;
margin-bottom: 1rem;
}
/*# sourceMappingURL=services.css.map */ | 0.526343 | 0.063424 |
* {
padding: 0;
margin: 0;
}
body {
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
/*tidak bisa scroll kanan*/
}
header {
position: fixed;
width: 100%;
z-index: 10;
}
nav {
display: flex;
background: rgb(101, 155, 255);
justify-content: space-around;
/* padding: 20px 0; */
color: black;
height: 70px;
align-items: center;
z-index: 6;
}
nav ul {
display: flex;
list-style: none;
width: 17%;
justify-content: space-between;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 0.65em;
font-family: 'M PLUS 1p', sans-serif;
font-style: normal;
}
a.active,
a:hover {
color: rgb(0, 0, 0);
}
.logo {
font-family: 'Pacifico', cursive;
font-size: 25px;
}
a {
text-decoration: none;
color: black;
}
/* -------------------------------------------------------------- */
/* Menu toggle */
.menu-toggle {
display: none;
/*display normal*/
align-items: center;
flex-direction: column;
height: 15px;
justify-content: space-between;
position: relative;
z-index: 6;
}
.menu-toggle input {
position: absolute;
width: 42px;
top: -3px;
height: 20px;
opacity: 0;
cursor: pointer;
}
.menu-toggle span {
display: block;
width: 20px;
height: 2px;
background-color: white;
}
/* -------------------------------------------------------------- */
/* Responsive Breakout */
/* Ukuran tablet*/
@media screen and (max-width: 768px) {
nav ul {
width: 150px;
}
}
/* Ukuran mobile */
@media screen and (max-width: 576px) {
.menu-toggle {
display: flex;
}
nav ul {
position: absolute;
/*memulai toggle*/
right: 0;
top: 0;
width: 60%;
/*lebar slidebar*/
height: 100vh;
/* Viewport Heigh / Tinggi layar yang kita lihat*/
flex-direction: column;
align-items: center;
justify-content: space-evenly;
background-color: rgb(101, 155, 255);
z-index: -1;
/*umpetin slide bar dari navbar*/
transform: translateX(100%);
/*awal slideBar ngumpet ke kanan dulu*/
/*--> LANJUT tambahakn di Body*/
transition: all 1s;
opacity: 0;
/* position: fixed; */
}
nav ul.slide {
opacity: 1;
transform: translateX(0);
/*jika UL terkenal kelas slide/navigasi BALIKIN lagi ke posisi awal (0)*/
z-index: 5;
}
}
/* Mode */
.checkbox {
opacity: 0%;
position: absolute;
}
.checkbox:checked+.label .ball {
transform: translateX(24px);
}
/* .checkbox {
opacity: 0%;
} */
body.dark {
background-color: #292C35;
color: white;
}
.label {
background: #111;
display: flex;
border-radius: 50px;
height: 26px;
width: 50px;
justify-content: space-between;
position: relative;
align-items: center;
margin-left: 10px;
padding: 5px;
border: 2px solid #fff;
}
.ball {
background-color: #fff;
border-radius: 50%;
position: absolute;
top: 2px;
left: 2px;
height: 31px;
width: 31px;
transition: 0.4s;
}
.fa-moon {
color: #f1c40f;
}
.fa-sun {
color: #f39c12;
}
/* -------- BANNER --------- */
.banner {
width: 100%;
height: 100vh;
background-image: url(/imgfront/nusa-penida.jpg);
background-size: cover;
z-index: -1;
}
.namaPembuka {
font-family: 'Lobster', cursive;
color: rgb(255, 226, 199);
font-size: 36px;
width: 100%;
height: 100vh;
align-items: center;
justify-content: center;
display: flex;
}
/* Section */
/* JUDUL */
section {
width: 100%;
height: 45vh;
}
.judul {
display: flex;
width: 100%;
height: 5vh;
/* Font */
color: rgb(0, 0, 0, );
font-family: 'M PLUS 1p', sans-serif;
justify-content: center;
padding: 20px 0;
letter-spacing: 3px;
}
/* ----------------------------------------- */
.kiriBan {
display: flex;
width: 33.2%;
height: 77%;
float: left;
/* border: 1px solid; */
}
.gambar1 {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
font-size: 100px;
}
/* ----------------------------------------- */
.tengahBan {
width: 33.3%;
height: 34.5%;
background-size: cover;
position: absolute;
left: 33.3%;
/* border: 1px solid; */
}
.gambar2 {
display: flex;
width: 100%;
justify-content: center;
font-size: 100px;
height: 35.5vh;
align-items: center;
}
/* ----------------------------------------- */
.kananBan {
width: 33.2%;
height: 77%;
background-size: cover;
float: right;
/* border: 1px solid; */
}
.gambar3 {
display: flex;
width: 100%;
justify-content: center;
font-size: 100px;
height: 34.5vh;
align-items: center;
}
/* --------------- IKLAN --------------- */
.containerIklan {
width: 100%;
height: 50vh;
background-size: cover;
background-image: url(/imgfront/code.jpg);
}
.judulIklan {
font-family: serif;
color: rgb(255, 226, 199);
font-size: 28px;
width: 100%;
height: 50vh;
align-items: center;
justify-content: center;
display: flex;
}
/* --------------- MAIN / ISI --------------- */
/* main {
width: 100%;
height: 100vh;
} */
/* ########### ISI KIRI ########### */
.kiri {
width: 19%;
height: 100%;
float: left;
position: absolute;
/* border-style: dashed; */
}
/* Kategori */
.judulKategori {
width: 100%;
height: 10%;
position: absolute;
display: flex;
justify-content: center;
/* Font */
font-family: cursive;
font-size: 17px;
}
.kategori {
display: flex;
width: 100%;
height: 10%;
padding: 30px 0;
position: absolute;
justify-content: center;
/* Font */
font-family: serif;
font-size: 14px;
}
.kat {
font-family: cursive;
}
/* ########### ISI TENGAH ########### */
.tengah {
width: 61%;
height: 25%;
float: right;
position: absolute;
left: 20%;
/* border-style: dashed; */
}
.logoIsi {
display: flex;
width: 100%;
height: 5vh;
color: rgb(0, 0, 0, );
font-family: 'M PLUS 1p', sans-serif;
justify-content: center;
padding: 20px 0;
letter-spacing: 3px;
}
/* to do list */
.containerToDoList {
width: 90%;
height: 90%;
/* background-color: salmon; */
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px 100px;
}
/* ########### ISI KANAN ########### */
.kanan {
width: 17%;
height: 100vh;
float: right;
position: relative;
top: -23%;
/* border-style: dashed; */
top: 0px;
}
/* Pencarian */
.pencarian {
display: flexbox;
width: 70%;
height: 5%;
justify-content: center;
padding: 70px 0;
/* border: 1px solid; */
margin: -20px 0;
}
form {
padding-top: 29px;
display: flexbox;
width: calc(150% -50px);
}
input {
display: flexbox;
width: calc(150% - 50px);
}
.trending {
display: flexbox;
width: 100%;
height: 21%;
justify-content: center;
padding: 0px 0;
margin: 20px 0;
/* border: 1px solid; */
}
.judulTrending {
width: 100%;
display: flex;
justify-content: center;
padding: 8px 0;
/* Font */
font-family: cursive;
font-size: 17px;
}
.katTrending {
display: flex;
width: 100%;
height: 10%;
justify-content: center;
padding-left: 10px;
/* Font */
font-family: serif;
font-size: 14px;
}
/* ---------------------------------- FOOTER ----------------------------------*/
footer {
background-color: rgb(101, 155, 255);
position: relative;
height: 276px;
text-align: center;
clear: both;
left: 47px;
margin-left: -43px;
}
.ContainerLogoFot {
width: 100%;
height: 30%;
/* border-style: dashed; */
align-items: center;
margin-left: -24px;
}
.logoFot {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: black;
/* Font */
font-family: 'Pacifico', cursive;
font-size: 20px;
}
.aboutFot {
font-size: 17px;
font-family: 'Roboto', sans-serif;
color: black;
}
a {
color: inherit;
}
.ContainerSosmedFot {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 60px;
top: 20px;
}
.sosmed {
display: flex;
color: white;
letter-spacing: 50px;
list-style-type: none;
} | public/css/frontend/style3.css | * {
padding: 0;
margin: 0;
}
body {
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
/*tidak bisa scroll kanan*/
}
header {
position: fixed;
width: 100%;
z-index: 10;
}
nav {
display: flex;
background: rgb(101, 155, 255);
justify-content: space-around;
/* padding: 20px 0; */
color: black;
height: 70px;
align-items: center;
z-index: 6;
}
nav ul {
display: flex;
list-style: none;
width: 17%;
justify-content: space-between;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 0.65em;
font-family: 'M PLUS 1p', sans-serif;
font-style: normal;
}
a.active,
a:hover {
color: rgb(0, 0, 0);
}
.logo {
font-family: 'Pacifico', cursive;
font-size: 25px;
}
a {
text-decoration: none;
color: black;
}
/* -------------------------------------------------------------- */
/* Menu toggle */
.menu-toggle {
display: none;
/*display normal*/
align-items: center;
flex-direction: column;
height: 15px;
justify-content: space-between;
position: relative;
z-index: 6;
}
.menu-toggle input {
position: absolute;
width: 42px;
top: -3px;
height: 20px;
opacity: 0;
cursor: pointer;
}
.menu-toggle span {
display: block;
width: 20px;
height: 2px;
background-color: white;
}
/* -------------------------------------------------------------- */
/* Responsive Breakout */
/* Ukuran tablet*/
@media screen and (max-width: 768px) {
nav ul {
width: 150px;
}
}
/* Ukuran mobile */
@media screen and (max-width: 576px) {
.menu-toggle {
display: flex;
}
nav ul {
position: absolute;
/*memulai toggle*/
right: 0;
top: 0;
width: 60%;
/*lebar slidebar*/
height: 100vh;
/* Viewport Heigh / Tinggi layar yang kita lihat*/
flex-direction: column;
align-items: center;
justify-content: space-evenly;
background-color: rgb(101, 155, 255);
z-index: -1;
/*umpetin slide bar dari navbar*/
transform: translateX(100%);
/*awal slideBar ngumpet ke kanan dulu*/
/*--> LANJUT tambahakn di Body*/
transition: all 1s;
opacity: 0;
/* position: fixed; */
}
nav ul.slide {
opacity: 1;
transform: translateX(0);
/*jika UL terkenal kelas slide/navigasi BALIKIN lagi ke posisi awal (0)*/
z-index: 5;
}
}
/* Mode */
.checkbox {
opacity: 0%;
position: absolute;
}
.checkbox:checked+.label .ball {
transform: translateX(24px);
}
/* .checkbox {
opacity: 0%;
} */
body.dark {
background-color: #292C35;
color: white;
}
.label {
background: #111;
display: flex;
border-radius: 50px;
height: 26px;
width: 50px;
justify-content: space-between;
position: relative;
align-items: center;
margin-left: 10px;
padding: 5px;
border: 2px solid #fff;
}
.ball {
background-color: #fff;
border-radius: 50%;
position: absolute;
top: 2px;
left: 2px;
height: 31px;
width: 31px;
transition: 0.4s;
}
.fa-moon {
color: #f1c40f;
}
.fa-sun {
color: #f39c12;
}
/* -------- BANNER --------- */
.banner {
width: 100%;
height: 100vh;
background-image: url(/imgfront/nusa-penida.jpg);
background-size: cover;
z-index: -1;
}
.namaPembuka {
font-family: 'Lobster', cursive;
color: rgb(255, 226, 199);
font-size: 36px;
width: 100%;
height: 100vh;
align-items: center;
justify-content: center;
display: flex;
}
/* Section */
/* JUDUL */
section {
width: 100%;
height: 45vh;
}
.judul {
display: flex;
width: 100%;
height: 5vh;
/* Font */
color: rgb(0, 0, 0, );
font-family: 'M PLUS 1p', sans-serif;
justify-content: center;
padding: 20px 0;
letter-spacing: 3px;
}
/* ----------------------------------------- */
.kiriBan {
display: flex;
width: 33.2%;
height: 77%;
float: left;
/* border: 1px solid; */
}
.gambar1 {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
font-size: 100px;
}
/* ----------------------------------------- */
.tengahBan {
width: 33.3%;
height: 34.5%;
background-size: cover;
position: absolute;
left: 33.3%;
/* border: 1px solid; */
}
.gambar2 {
display: flex;
width: 100%;
justify-content: center;
font-size: 100px;
height: 35.5vh;
align-items: center;
}
/* ----------------------------------------- */
.kananBan {
width: 33.2%;
height: 77%;
background-size: cover;
float: right;
/* border: 1px solid; */
}
.gambar3 {
display: flex;
width: 100%;
justify-content: center;
font-size: 100px;
height: 34.5vh;
align-items: center;
}
/* --------------- IKLAN --------------- */
.containerIklan {
width: 100%;
height: 50vh;
background-size: cover;
background-image: url(/imgfront/code.jpg);
}
.judulIklan {
font-family: serif;
color: rgb(255, 226, 199);
font-size: 28px;
width: 100%;
height: 50vh;
align-items: center;
justify-content: center;
display: flex;
}
/* --------------- MAIN / ISI --------------- */
/* main {
width: 100%;
height: 100vh;
} */
/* ########### ISI KIRI ########### */
.kiri {
width: 19%;
height: 100%;
float: left;
position: absolute;
/* border-style: dashed; */
}
/* Kategori */
.judulKategori {
width: 100%;
height: 10%;
position: absolute;
display: flex;
justify-content: center;
/* Font */
font-family: cursive;
font-size: 17px;
}
.kategori {
display: flex;
width: 100%;
height: 10%;
padding: 30px 0;
position: absolute;
justify-content: center;
/* Font */
font-family: serif;
font-size: 14px;
}
.kat {
font-family: cursive;
}
/* ########### ISI TENGAH ########### */
.tengah {
width: 61%;
height: 25%;
float: right;
position: absolute;
left: 20%;
/* border-style: dashed; */
}
.logoIsi {
display: flex;
width: 100%;
height: 5vh;
color: rgb(0, 0, 0, );
font-family: 'M PLUS 1p', sans-serif;
justify-content: center;
padding: 20px 0;
letter-spacing: 3px;
}
/* to do list */
.containerToDoList {
width: 90%;
height: 90%;
/* background-color: salmon; */
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px 100px;
}
/* ########### ISI KANAN ########### */
.kanan {
width: 17%;
height: 100vh;
float: right;
position: relative;
top: -23%;
/* border-style: dashed; */
top: 0px;
}
/* Pencarian */
.pencarian {
display: flexbox;
width: 70%;
height: 5%;
justify-content: center;
padding: 70px 0;
/* border: 1px solid; */
margin: -20px 0;
}
form {
padding-top: 29px;
display: flexbox;
width: calc(150% -50px);
}
input {
display: flexbox;
width: calc(150% - 50px);
}
.trending {
display: flexbox;
width: 100%;
height: 21%;
justify-content: center;
padding: 0px 0;
margin: 20px 0;
/* border: 1px solid; */
}
.judulTrending {
width: 100%;
display: flex;
justify-content: center;
padding: 8px 0;
/* Font */
font-family: cursive;
font-size: 17px;
}
.katTrending {
display: flex;
width: 100%;
height: 10%;
justify-content: center;
padding-left: 10px;
/* Font */
font-family: serif;
font-size: 14px;
}
/* ---------------------------------- FOOTER ----------------------------------*/
footer {
background-color: rgb(101, 155, 255);
position: relative;
height: 276px;
text-align: center;
clear: both;
left: 47px;
margin-left: -43px;
}
.ContainerLogoFot {
width: 100%;
height: 30%;
/* border-style: dashed; */
align-items: center;
margin-left: -24px;
}
.logoFot {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: black;
/* Font */
font-family: 'Pacifico', cursive;
font-size: 20px;
}
.aboutFot {
font-size: 17px;
font-family: 'Roboto', sans-serif;
color: black;
}
a {
color: inherit;
}
.ContainerSosmedFot {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 60px;
top: 20px;
}
.sosmed {
display: flex;
color: white;
letter-spacing: 50px;
list-style-type: none;
} | 0.319652 | 0.099339 |
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body, html {
height: 100%;
background-image: url("https://images.pexels.com/photos/1001914/pexels-photo-1001914.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260");
background-repeat: no-repeat;
background-size: cover;
}
a {
font-family: SourceSansPro-Regular;
font-size: 16px;
line-height: 1.7;
color: #002e5b;
margin: 0px;
transition: all 0.4s;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
}
a:focus {
outline: none !important;
}
a:hover {
text-decoration: none;
color: #4b2354;
}
input {
outline: none;
border: none;
}
button {
outline: none !important;
border: none;
background: transparent;
}
button:hover {
cursor: pointer;
}
iframe {
border: none !important;
}
.container-login100 {
width: 100%;
min-height: 0vh;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
z-index: 1;
}
.wrap-login100 {
width: 390px;
background: #FFF;
padding: 0 20px 20px 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}
.login100-form {
width: 100%;
}
.login100-form-title {
display: block;
font-family: SourceSansPro-Bold;
font-size: 30px;
color: #5d91f1;
line-height: 1.2;
text-align: center;
}
/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {
width: 100%;
position: relative;
background-color: #fff;
border-radius: 20px;
}
.input100 {
font-family: SourceSansPro-Bold;
font-size: 16px;
color: #4b2354;
line-height: 1.2;
height: 62px;
background: transparent;
padding: 0 0px 0 23px;
}
/*------------------------------------------------------------------
[ Focus Input ]*/
.focus-input100 {
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
border-radius: 20px;
box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.login100-form-btn {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
align-items: center;
padding: 0 20px;
min-width: 160px;
height: 50px;
background-color:#5d91f1;
border-radius: 25px;
font-family: SourceSansPro-SemiBold;
font-size: 14px;
color: #fff;
line-height: 1.2;
text-transform: uppercase;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
@media (max-width: 480px) {
.wrap-login100 {
padding-left: 15px;
padding-right: 15px;
}
} | public/assets/css/create.css | * {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body, html {
height: 100%;
background-image: url("https://images.pexels.com/photos/1001914/pexels-photo-1001914.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260");
background-repeat: no-repeat;
background-size: cover;
}
a {
font-family: SourceSansPro-Regular;
font-size: 16px;
line-height: 1.7;
color: #002e5b;
margin: 0px;
transition: all 0.4s;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
}
a:focus {
outline: none !important;
}
a:hover {
text-decoration: none;
color: #4b2354;
}
input {
outline: none;
border: none;
}
button {
outline: none !important;
border: none;
background: transparent;
}
button:hover {
cursor: pointer;
}
iframe {
border: none !important;
}
.container-login100 {
width: 100%;
min-height: 0vh;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
z-index: 1;
}
.wrap-login100 {
width: 390px;
background: #FFF;
padding: 0 20px 20px 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}
.login100-form {
width: 100%;
}
.login100-form-title {
display: block;
font-family: SourceSansPro-Bold;
font-size: 30px;
color: #5d91f1;
line-height: 1.2;
text-align: center;
}
/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {
width: 100%;
position: relative;
background-color: #fff;
border-radius: 20px;
}
.input100 {
font-family: SourceSansPro-Bold;
font-size: 16px;
color: #4b2354;
line-height: 1.2;
height: 62px;
background: transparent;
padding: 0 0px 0 23px;
}
/*------------------------------------------------------------------
[ Focus Input ]*/
.focus-input100 {
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
border-radius: 20px;
box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.login100-form-btn {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
align-items: center;
padding: 0 20px;
min-width: 160px;
height: 50px;
background-color:#5d91f1;
border-radius: 25px;
font-family: SourceSansPro-SemiBold;
font-size: 14px;
color: #fff;
line-height: 1.2;
text-transform: uppercase;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
@media (max-width: 480px) {
.wrap-login100 {
padding-left: 15px;
padding-right: 15px;
}
} | 0.274157 | 0.086323 |
* {
box-sizing: border-box;
}
body {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
height: 100%;
background: url(../assets/forest-landscape.jpg);
background-repeat: no-repeat;
background-size: inherit;
}
header {
width: 95%;
background-color: rgb(230, 218, 222);
margin: 0 auto;
margin-top: 20px;
height: 100px;
color: white;
border-radius: 20px;
margin-bottom: 50px;
}
main {
width: 100%;
height: 100%;
text-align: center;
margin-bottom: 20px;
}
.modal {
color: rgb(147, 135, 135);
margin: 5%;
font-size: 1em;
line-height: 2em;
}
footer{
background-color: #1f1433;
width: 60%;
margin-left: 20%;
margin-right: 20%;
height: 65px;
color: white;
position: fixed;
bottom: 50px;
border-radius: 15px;
text-align: center;
}
/* Header styles */
header > ul {
height: 100px;
width: 100%;
display: flex;
align-items: center;
}
ul > li {
margin: 0 auto;
float: left;
}
header > ul > li:nth-child(2){
background-color: #1f1433;
margin-top: 30px;
border: dashed white 3px;
border-radius: 50%;
height: 150px;
width: 150px;
}
header > ul > li:nth-child(2) > p {
text-align: center;
line-height: 60px;
}
header > ul > li:nth-child(2) > p:nth-child(2) > h1{
margin: 0 auto;
}
.links {
color: rgb(85, 58, 64);
}
/* Modal styles */
.modal-content > p {
margin-bottom: 20px;
}
.modal-content > button {
margin-right: 10px;
margin-bottom: 10px;
background-color: rgb(121, 168, 160);
color: white;
padding: 10px;
position: relative;
border: 1px dashed #1f1433;
}
#easy:after, #medium:after, #impossible:after, #ludicrous:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: rgba(255,255,255,0.4);
transition: none;
-webkit-transition: none;
-moz-transition: none;
}
#easy:hover:after, #medium:hover:after, #impossible:hover:after, #ludicrous:hover:after {
width: 120%;
background-color: rgba(255,255,255,0);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
/* Game board styles */
.game-board {
display: grid;
grid-template-rows: 30% 30% 30%;
grid-template-columns: 30% 30% 30%;
}
.box {
display: flex;
align-items: center;
justify-content: center;
}
#cards{
justify-content: center;
min-height: 400px;
max-width: 600px;
max-height: 500px;
margin: auto;
}
.card.box {
border-radius: 15px;
background-color: rgb(235, 240, 232, 0.5);
font-size: 2.2em;
color: rgb(92, 112, 129);
box-shadow: inset 0 0 10px #000000;
margin: 10px 10px;
/* position: relative; */
}
.card.box:active {
background-color: rgb(182, 231, 182);
}
#currentValue {
background-color: rgb(110, 88, 93, 0.7);
color: white;
border-radius: 200px;
font-size: 2.2em;
}
/* Footer styles */
footer > ul {
height: 65px;
display: flex;
align-items: center;
}
footer > p > a {
color: white;
text-decoration: none;
font-size: 1.6em;
}
footer > ul > li > a, footer > ul > li > p, footer > p > a {
color: antiquewhite;
}
footer > p > a {
line-height: 50px;
font-size: 1em;
}
#raptors {
position: fixed;
bottom: 0;
left: 0;
background-color: rgb(240, 231, 220, 0.5);
}
/* About Page */
header > h1 {
color: #1f1433;
text-align: center;
line-height: 100px;
font-size: 2.2em;
}
section#teamInfo > p {
margin-bottom: 20px;
color: #1f1433;
}
#teampic{
border-radius: 15px;
border: 1px solid #1f1433;;
margin-bottom: 20px;
}
section#individualInfo {
margin: 0 auto;
display: flex;
justify-content: space-around;
color: green;
}
section#individualInfo > div {
border: 1px dashed #1f1433;
padding: 15px;
background-color: rgb(230, 218, 222, 0.5);
border-radius: 50%;
}
section#individualInfo > div > h2 {
margin: 8px 8px;
text-transform: uppercase;
}
section#individualInfo > div > a {
color: #1f1433;
margin: 5px 5px;
}
section#individualInfo > div > a:hover {
color: green;
}
/* Desktop view */
@media screen and (min-width: 768px){
body {
background-size: cover;
}
header {
margin-bottom: 90px;
}
#teampic {
width: 40%;
height: 350px;
}
main > section > p {
font-size: 26px;
}
section#individualInfo {
margin: 0 18%;
}
}
/* Mobile view */
@media screen and (min-width: 480px) and (max-width: 767px){
body {
background-size: inherit;
}
#teampic {
width: 40%;
height: 100px;
}
main > section > p {
font-size: 20px;
}
} | css/style.css |
* {
box-sizing: border-box;
}
body {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
height: 100%;
background: url(../assets/forest-landscape.jpg);
background-repeat: no-repeat;
background-size: inherit;
}
header {
width: 95%;
background-color: rgb(230, 218, 222);
margin: 0 auto;
margin-top: 20px;
height: 100px;
color: white;
border-radius: 20px;
margin-bottom: 50px;
}
main {
width: 100%;
height: 100%;
text-align: center;
margin-bottom: 20px;
}
.modal {
color: rgb(147, 135, 135);
margin: 5%;
font-size: 1em;
line-height: 2em;
}
footer{
background-color: #1f1433;
width: 60%;
margin-left: 20%;
margin-right: 20%;
height: 65px;
color: white;
position: fixed;
bottom: 50px;
border-radius: 15px;
text-align: center;
}
/* Header styles */
header > ul {
height: 100px;
width: 100%;
display: flex;
align-items: center;
}
ul > li {
margin: 0 auto;
float: left;
}
header > ul > li:nth-child(2){
background-color: #1f1433;
margin-top: 30px;
border: dashed white 3px;
border-radius: 50%;
height: 150px;
width: 150px;
}
header > ul > li:nth-child(2) > p {
text-align: center;
line-height: 60px;
}
header > ul > li:nth-child(2) > p:nth-child(2) > h1{
margin: 0 auto;
}
.links {
color: rgb(85, 58, 64);
}
/* Modal styles */
.modal-content > p {
margin-bottom: 20px;
}
.modal-content > button {
margin-right: 10px;
margin-bottom: 10px;
background-color: rgb(121, 168, 160);
color: white;
padding: 10px;
position: relative;
border: 1px dashed #1f1433;
}
#easy:after, #medium:after, #impossible:after, #ludicrous:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: rgba(255,255,255,0.4);
transition: none;
-webkit-transition: none;
-moz-transition: none;
}
#easy:hover:after, #medium:hover:after, #impossible:hover:after, #ludicrous:hover:after {
width: 120%;
background-color: rgba(255,255,255,0);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
/* Game board styles */
.game-board {
display: grid;
grid-template-rows: 30% 30% 30%;
grid-template-columns: 30% 30% 30%;
}
.box {
display: flex;
align-items: center;
justify-content: center;
}
#cards{
justify-content: center;
min-height: 400px;
max-width: 600px;
max-height: 500px;
margin: auto;
}
.card.box {
border-radius: 15px;
background-color: rgb(235, 240, 232, 0.5);
font-size: 2.2em;
color: rgb(92, 112, 129);
box-shadow: inset 0 0 10px #000000;
margin: 10px 10px;
/* position: relative; */
}
.card.box:active {
background-color: rgb(182, 231, 182);
}
#currentValue {
background-color: rgb(110, 88, 93, 0.7);
color: white;
border-radius: 200px;
font-size: 2.2em;
}
/* Footer styles */
footer > ul {
height: 65px;
display: flex;
align-items: center;
}
footer > p > a {
color: white;
text-decoration: none;
font-size: 1.6em;
}
footer > ul > li > a, footer > ul > li > p, footer > p > a {
color: antiquewhite;
}
footer > p > a {
line-height: 50px;
font-size: 1em;
}
#raptors {
position: fixed;
bottom: 0;
left: 0;
background-color: rgb(240, 231, 220, 0.5);
}
/* About Page */
header > h1 {
color: #1f1433;
text-align: center;
line-height: 100px;
font-size: 2.2em;
}
section#teamInfo > p {
margin-bottom: 20px;
color: #1f1433;
}
#teampic{
border-radius: 15px;
border: 1px solid #1f1433;;
margin-bottom: 20px;
}
section#individualInfo {
margin: 0 auto;
display: flex;
justify-content: space-around;
color: green;
}
section#individualInfo > div {
border: 1px dashed #1f1433;
padding: 15px;
background-color: rgb(230, 218, 222, 0.5);
border-radius: 50%;
}
section#individualInfo > div > h2 {
margin: 8px 8px;
text-transform: uppercase;
}
section#individualInfo > div > a {
color: #1f1433;
margin: 5px 5px;
}
section#individualInfo > div > a:hover {
color: green;
}
/* Desktop view */
@media screen and (min-width: 768px){
body {
background-size: cover;
}
header {
margin-bottom: 90px;
}
#teampic {
width: 40%;
height: 350px;
}
main > section > p {
font-size: 26px;
}
section#individualInfo {
margin: 0 18%;
}
}
/* Mobile view */
@media screen and (min-width: 480px) and (max-width: 767px){
body {
background-size: inherit;
}
#teampic {
width: 40%;
height: 100px;
}
main > section > p {
font-size: 20px;
}
} | 0.369201 | 0.088269 |
:root {
--cinza: #2a2a2a;
}
#planos .plano .card {
background-color: var(--cinza);
border-radius: 15px;
transition: .2s ease-in-out;
transform: scale(.9);
border: 0;
}
#planos .plano .card.ativo {
transform: scale(1);
box-shadow: 0px 0px 25px 5px var(--mar);
}
@media (max-width: 768px) {
#planos .plano .card {
transform: scale(1);
box-shadow: none!important;
}
}
#planos .plano .card .card-header {
background-color: #666666;
height: 100px;
padding: 15px;
text-align: center;
filter: drop-shadow(0px 10px 5px rgba(0,0,0,.6));
display: flex;
justify-content: center;
align-items: center;
border: 0;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-top: 1px solid #8e8e8e;
}
#planos .plano .card .card-header span {
color: #e0e0e0;
font-weight: 800;
font-style: italic;
font-family: "Barlow";
filter: drop-shadow(2.5px 4.33px 4px rgba(0,0,0,0.58));
font-size: 20px;
text-transform: uppercase;
line-height: 1;
}
#planos .plano .card .card-body {
background-color: var(--cinza);
padding: 15px 20px;
border: 5px solid #fff;
border-top: 0;
border-bottom: 0;
margin-bottom: -5px;
}
#planos .plano .card .card-body hr {
border-color: #666666;
}
#planos .plano .card .card-body .desc {
border: 1px solid #666666;
border-left: 0;
border-right: 0;
padding: 15px 0;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 30px;
min-height: 400px;
}
#planos .plano .card .card-body h5 {
color: #e0e0e0;
text-transform: uppercase;
font-weight: 700;
font-family: "Barlow";
text-align: center;
font-size: 15px;
}
#planos .plano .card .card-body ul {
padding: 0;
margin: 0;
list-style: none;
}
#planos .plano .card .card-body ul li {
color: #e1e1e1;
font-weight: 400;
font-family: "Barlow";
text-align: center;
font-size: 15px;
margin: 0px;
margin-bottom: 10px;
}
#planos .plano .card .card-body ul li::before {
content: "\f054";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
color: var(--mar);
}
#planos .plano .card .card-footer {
border: 5px solid #fff;
border-top: 0;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
#planos .plano .card .card-footer .btn {
background-color: var(--mar);
color: var(--cinza);
text-transform: uppercase;
font-weight: 800;
font-family: "Barlow";
padding: 10px 30px;
border-radius: 10px;
box-shadow: 15px 15px 15px rgba(0,0,0,.4);
} | assets_old/css/pages/planos.css | :root {
--cinza: #2a2a2a;
}
#planos .plano .card {
background-color: var(--cinza);
border-radius: 15px;
transition: .2s ease-in-out;
transform: scale(.9);
border: 0;
}
#planos .plano .card.ativo {
transform: scale(1);
box-shadow: 0px 0px 25px 5px var(--mar);
}
@media (max-width: 768px) {
#planos .plano .card {
transform: scale(1);
box-shadow: none!important;
}
}
#planos .plano .card .card-header {
background-color: #666666;
height: 100px;
padding: 15px;
text-align: center;
filter: drop-shadow(0px 10px 5px rgba(0,0,0,.6));
display: flex;
justify-content: center;
align-items: center;
border: 0;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-top: 1px solid #8e8e8e;
}
#planos .plano .card .card-header span {
color: #e0e0e0;
font-weight: 800;
font-style: italic;
font-family: "Barlow";
filter: drop-shadow(2.5px 4.33px 4px rgba(0,0,0,0.58));
font-size: 20px;
text-transform: uppercase;
line-height: 1;
}
#planos .plano .card .card-body {
background-color: var(--cinza);
padding: 15px 20px;
border: 5px solid #fff;
border-top: 0;
border-bottom: 0;
margin-bottom: -5px;
}
#planos .plano .card .card-body hr {
border-color: #666666;
}
#planos .plano .card .card-body .desc {
border: 1px solid #666666;
border-left: 0;
border-right: 0;
padding: 15px 0;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 30px;
min-height: 400px;
}
#planos .plano .card .card-body h5 {
color: #e0e0e0;
text-transform: uppercase;
font-weight: 700;
font-family: "Barlow";
text-align: center;
font-size: 15px;
}
#planos .plano .card .card-body ul {
padding: 0;
margin: 0;
list-style: none;
}
#planos .plano .card .card-body ul li {
color: #e1e1e1;
font-weight: 400;
font-family: "Barlow";
text-align: center;
font-size: 15px;
margin: 0px;
margin-bottom: 10px;
}
#planos .plano .card .card-body ul li::before {
content: "\f054";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
color: var(--mar);
}
#planos .plano .card .card-footer {
border: 5px solid #fff;
border-top: 0;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
#planos .plano .card .card-footer .btn {
background-color: var(--mar);
color: var(--cinza);
text-transform: uppercase;
font-weight: 800;
font-family: "Barlow";
padding: 10px 30px;
border-radius: 10px;
box-shadow: 15px 15px 15px rgba(0,0,0,.4);
} | 0.339937 | 0.126839 |
main {
display: flex;
flex-direction: column;
position: absolute;
margin-top: 4rem; margin-bottom: 3rem;
padding: 1rem;
min-width: calc(100% - 18rem); min-height: calc(100% - 6rem);
z-index: -1;
left: 16rem;
}
.loader {
display: flex; flex-direction: column;
align-items: center; justify-content: center;
background-color: #fff;
position: fixed;
height: 100%; width: 100%;
z-index: 999;
}
.loader-main {
display: flex; flex-direction: column;
align-items: center; justify-content: center;
position: fixed;
background-color: var(--background-primary);
width: 100vw; height: 100vh;
z-index: 1000;
}
.loader-page {
position: absolute;
left: 0rem;
width: calc(100% - 0rem); height: calc(100% - 2rem);
}
.loader-visible {
opacity: 1;
transition: 0.25s ease;
}
.loader-visible .loader-container {
transform: scale(1);
transition: 0.5s ease;
}
.loader-not-visible {
opacity: 0;
transition: 0.25s ease;
pointer-events: none;
}
.loader-not-visible .loader-container {
transform: scale(0);
transition: 0.5s ease;
}
.main-content {
flex: 1 1 auto;
}
.fill-height { height: auto; }
.fill-width { width: auto; }
.fill { flex: 1 1 auto; }
.center-to-screen {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.flex {
display: flex;
}
.flex-row {
flex-direction: row;
}
.flex-column {
flex-direction: column;
}
.flex-align-center {
align-items: center; justify-content: center;
}
.flex-align-center-h {
justify-content: center;
}
.flex-align-center-v {
align-items: center;
}
.flex-align-left-h {
justify-content: flex-start;
}
.flex-align-left-h {
justify-content: flex-start;
}
.flex-align-top-h {
align-items: flex-start;
}
.flex-align-bottom-h {
align-items: flex-start;
}
.reactEasyCrop_Container {
position: relative;
object-fit: cover;
width: 100%; height: 100%;
user-select: none;
touch-action: none;
cursor: move;
display: flex;
justify-content: center;
align-items: center;
}
.reactEasyCrop_Image,
.reactEasyCrop_Video {
will-change: transform; /* this improves performances and prevent painting issues on iOS Chrome */
}
.reactEasyCrop_Contain {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.reactEasyCrop_Cover_Horizontal {
width: 100%;
height: auto;
}
.reactEasyCrop_Cover_Vertical {
width: auto;
height: 100%;
}
.reactEasyCrop_CropArea {
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
box-sizing: border-box;
box-shadow: 0 0 0 9999em;
color: rgba(0, 0, 0, 0);
overflow: hidden;
}
.reactEasyCrop_CropAreaRound {
border-radius: 50%;
}
.reactEasyCrop_CropAreaGrid::before {
content: ' ';
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
top: 0;
bottom: 0;
left: 33.33%;
right: 33.33%;
border-top: 0;
border-bottom: 0;
}
.reactEasyCrop_CropAreaGrid::after {
content: ' ';
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
top: 33.33%;
bottom: 33.33%;
left: 0;
right: 0;
border-left: 0;
border-right: 0;
} | src/css/main.css | main {
display: flex;
flex-direction: column;
position: absolute;
margin-top: 4rem; margin-bottom: 3rem;
padding: 1rem;
min-width: calc(100% - 18rem); min-height: calc(100% - 6rem);
z-index: -1;
left: 16rem;
}
.loader {
display: flex; flex-direction: column;
align-items: center; justify-content: center;
background-color: #fff;
position: fixed;
height: 100%; width: 100%;
z-index: 999;
}
.loader-main {
display: flex; flex-direction: column;
align-items: center; justify-content: center;
position: fixed;
background-color: var(--background-primary);
width: 100vw; height: 100vh;
z-index: 1000;
}
.loader-page {
position: absolute;
left: 0rem;
width: calc(100% - 0rem); height: calc(100% - 2rem);
}
.loader-visible {
opacity: 1;
transition: 0.25s ease;
}
.loader-visible .loader-container {
transform: scale(1);
transition: 0.5s ease;
}
.loader-not-visible {
opacity: 0;
transition: 0.25s ease;
pointer-events: none;
}
.loader-not-visible .loader-container {
transform: scale(0);
transition: 0.5s ease;
}
.main-content {
flex: 1 1 auto;
}
.fill-height { height: auto; }
.fill-width { width: auto; }
.fill { flex: 1 1 auto; }
.center-to-screen {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.flex {
display: flex;
}
.flex-row {
flex-direction: row;
}
.flex-column {
flex-direction: column;
}
.flex-align-center {
align-items: center; justify-content: center;
}
.flex-align-center-h {
justify-content: center;
}
.flex-align-center-v {
align-items: center;
}
.flex-align-left-h {
justify-content: flex-start;
}
.flex-align-left-h {
justify-content: flex-start;
}
.flex-align-top-h {
align-items: flex-start;
}
.flex-align-bottom-h {
align-items: flex-start;
}
.reactEasyCrop_Container {
position: relative;
object-fit: cover;
width: 100%; height: 100%;
user-select: none;
touch-action: none;
cursor: move;
display: flex;
justify-content: center;
align-items: center;
}
.reactEasyCrop_Image,
.reactEasyCrop_Video {
will-change: transform; /* this improves performances and prevent painting issues on iOS Chrome */
}
.reactEasyCrop_Contain {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.reactEasyCrop_Cover_Horizontal {
width: 100%;
height: auto;
}
.reactEasyCrop_Cover_Vertical {
width: auto;
height: 100%;
}
.reactEasyCrop_CropArea {
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
box-sizing: border-box;
box-shadow: 0 0 0 9999em;
color: rgba(0, 0, 0, 0);
overflow: hidden;
}
.reactEasyCrop_CropAreaRound {
border-radius: 50%;
}
.reactEasyCrop_CropAreaGrid::before {
content: ' ';
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
top: 0;
bottom: 0;
left: 33.33%;
right: 33.33%;
border-top: 0;
border-bottom: 0;
}
.reactEasyCrop_CropAreaGrid::after {
content: ' ';
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.5);
top: 33.33%;
bottom: 33.33%;
left: 0;
right: 0;
border-left: 0;
border-right: 0;
} | 0.669745 | 0.074467 |
body {
font-family: "Roboto", sans-serif;
}
a {
text-decoration: none;
}
a:visited {
color: #4c9a2a;
}
label {
display: block;
}
nav a {
display: inline-block;
margin: 1em;
color: #4c9a2a;
}
form div {
margin: 1em;
display: inline-block;
}
.recipesPage {
margin-left: auto;
margin-right: auto;
}
#loadingImg {
width: 400px;
height: 400px;
object-fit: cover;
/* object-position: : ; */
}
.recipesContainer {
display: flex;
/* justify-content: center; */
flex-direction: column;
justify-content: space-around;
margin: -10px;
}
.recipe {
display: flex;
flex-direction: column;
border-color: #a4de02;
border-style: solid;
border-radius: 10px;
margin: 10px;
padding: 10px;
}
#recipeImg {
display: flex;
justify-self: center;
}
#addTitle {
padding-bottom: 0px;
margin-bottom: 0px;
}
.authForm {
display: flex;
flex-direction: column;
align-items: center;
}
.form {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
/* background-color: red; */
border-color: #a4de02;
border-style: solid;
padding: 20px;
border-radius: 10px;
box-shadow: 4px 4px #4c9a2a;
}
#submitButton {
background-color: #a4de02;
border: none;
width: 100px;
height: 30px;
border-radius: 5px;
color: white;
}
/* .addForm{
display: flex;
align-items: center;
} */
.formGrid {
width: 200px;
height: 30px;
border-radius: 5px;
border-color: #a4de02;
}
.addGrid {
width: 200px;
height: 40px;
border-radius: 5px;
border-color: #a4de02;
}
#addButton {
background-color: #a4de02;
border: none;
width: 100px;
height: 40px;
border-radius: 5px;
/* font-size: medium; */
color: white;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
}
.ingredientsContainer {
display: flex;
flex-direction: column;
align-items: center;
}
#welcome {
display: flex;
align-self: flex-start;
}
.singlesContainer {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
margin: -10px;
}
.singleIngredient {
border-radius: 5px;
border-color: #4c9a2a;
border-style: solid;
border-width: 2px;
padding-left: 10px;
padding-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
margin: 10px;
}
.footer {
background-color: #4c9a2a;
/* padding: 0.5rem 0rem 0.5rem; */
position: fixed;
bottom: 0pt;
left: 0pt;
width: 100%;
background-attachment: scroll;
color: white;
font-size: large;
/* z-index: 10; */
}
.footerContainer {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-around;
width: 100vw;
padding-top: 10px;
z-index: 10;
}
.footerItem {
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
/* margin: 0 auto; */
}
.footerItem p {
color: white;
font-size: medium;
} | public/style.css | body {
font-family: "Roboto", sans-serif;
}
a {
text-decoration: none;
}
a:visited {
color: #4c9a2a;
}
label {
display: block;
}
nav a {
display: inline-block;
margin: 1em;
color: #4c9a2a;
}
form div {
margin: 1em;
display: inline-block;
}
.recipesPage {
margin-left: auto;
margin-right: auto;
}
#loadingImg {
width: 400px;
height: 400px;
object-fit: cover;
/* object-position: : ; */
}
.recipesContainer {
display: flex;
/* justify-content: center; */
flex-direction: column;
justify-content: space-around;
margin: -10px;
}
.recipe {
display: flex;
flex-direction: column;
border-color: #a4de02;
border-style: solid;
border-radius: 10px;
margin: 10px;
padding: 10px;
}
#recipeImg {
display: flex;
justify-self: center;
}
#addTitle {
padding-bottom: 0px;
margin-bottom: 0px;
}
.authForm {
display: flex;
flex-direction: column;
align-items: center;
}
.form {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
/* background-color: red; */
border-color: #a4de02;
border-style: solid;
padding: 20px;
border-radius: 10px;
box-shadow: 4px 4px #4c9a2a;
}
#submitButton {
background-color: #a4de02;
border: none;
width: 100px;
height: 30px;
border-radius: 5px;
color: white;
}
/* .addForm{
display: flex;
align-items: center;
} */
.formGrid {
width: 200px;
height: 30px;
border-radius: 5px;
border-color: #a4de02;
}
.addGrid {
width: 200px;
height: 40px;
border-radius: 5px;
border-color: #a4de02;
}
#addButton {
background-color: #a4de02;
border: none;
width: 100px;
height: 40px;
border-radius: 5px;
/* font-size: medium; */
color: white;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
}
.ingredientsContainer {
display: flex;
flex-direction: column;
align-items: center;
}
#welcome {
display: flex;
align-self: flex-start;
}
.singlesContainer {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
margin: -10px;
}
.singleIngredient {
border-radius: 5px;
border-color: #4c9a2a;
border-style: solid;
border-width: 2px;
padding-left: 10px;
padding-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
margin: 10px;
}
.footer {
background-color: #4c9a2a;
/* padding: 0.5rem 0rem 0.5rem; */
position: fixed;
bottom: 0pt;
left: 0pt;
width: 100%;
background-attachment: scroll;
color: white;
font-size: large;
/* z-index: 10; */
}
.footerContainer {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-around;
width: 100vw;
padding-top: 10px;
z-index: 10;
}
.footerItem {
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
/* margin: 0 auto; */
}
.footerItem p {
color: white;
font-size: medium;
} | 0.329176 | 0.084985 |
@charset "UTF-8";
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background: #fafafa;
font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
font-size: 14px;
line-height: 14px;
font-weight: 300;
color: #333333;
margin: 0;
direction: ltr;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
outline: none;
color: #7092fe;
}
a:hover {
outline: none;
color: #7092fe;
text-decoration: underline;
}
.container-wrapper {
max-width: 1200px;
min-width: 320px;
margin: 0 auto;
}
/**
* FORM
*/
.hide-pc {
display: none;
}
.carousel-container {
position: relative;
overflow: hidden;
padding: 0;
z-index: 1;
height: auto;
}
.carousel-container.carousel-initialized {
overflow: unset;
flex-wrap: wrap;
}
.carousel-list {
overflow: hidden;
height: 100%;
}
.carousel-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
box-sizing: content-box;
}
.carousel-vertical .carousel-wrapper {
flex-wrap: wrap;
}
.carousel-slide {
}
.carousel-fade .carousel-slide {
transition: opacity 300ms ease 0s;
}
.carousel-arrow {
width: 32px;
height: 32px;
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0xNS42MzUgMTIuMDIybC03LjU4LTcuMjYuNjktLjcyMyA4LjMzNSA3Ljk4Mi04LjMzNCA3Ljk5NS0uNjkyLS43MjJ6Ij48L3BhdGg+PC9zdmc+') no-repeat center center;
border-radius: 8px;
border: none;
box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 8px 0px;
font-size: 0;
line-height: 0;
position: absolute;
top: calc(50% - 20px);
display: block;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none !important;
z-index: 2;
}
.carousel-arrow:hover {
}
.carousel-button-prev {
left: 10px;
transform: rotate(180deg);
}
.carousel-button-next {
right: 10px;
}
.carousel-arrow:hover:before {
color: #fff;
}
.carousel-dots {
list-style: none;
padding: 0;
margin: 0;
position: absolute;
left: 0;
bottom: -20px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
width: 100%;
justify-content: center;
}
.__carouselVertical .carousel-dots {
flex-direction: column;
width: 5px;
top: 0;
bottom: inherit;
left: -20px;
height: 100%;
}
.carousel-dots-bullet {
width: 50px;
height: 5px;
background: #eee;
cursor: pointer;
margin-right: 3px;
position: relative;
transition: background 0.2s;
}
.__carouselVertical .carousel-dots-bullet {
width: 5px;
height: 50px;
margin-right: 0;
margin-bottom: 3px;
}
.carousel-dots-bullet::before {
content: '';
position: absolute;
left: 0;
top: -15px;
width: 100%;
height: 30px;
background: transparent;
}
.__carouselVertical .carousel-dots-bullet::before {
left: -10px;
top: 0;
width: 30px;
height: 100%;
}
.carousel-dots-bullet:hover,
.carousel-dots-bullet-active {
background: #2879FE;
}
.carousel-dots-bullet button {
display: none;
}
/*
* Slick
*/
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
}
.slick-slide {
float: left;
min-height: 1px;
}
.default_btn {
display: inline-flex;
align-items: center;
height: 32px;
padding: 4px 16px;
border: none;
cursor: pointer;
border-radius: 8px;
background: #ebebeb;
color: #333333;
text-decoration: none;
transition: all 0.2s;
outline: none;
}
.default_btn:hover {
color: #333333;
text-decoration: none;
box-shadow: rgba(51, 51, 51, 0.035) 0px 4px 8px 0px;
background: rgb(237, 237, 237);
}
.hidden {
display: none;
}
.avatar {
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.top-panel {
height: 28px;
background: #f5f5f5;
}
.top-panel__list {
list-style-type: none;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin: 0;
padding: 0 0 0 14px;
height: 100%;
}
.top-panel__item {
display: block;
height: 100%;
}
.top-panel__link {
display: flex;
height: 100%;
align-items: center;
padding: 0 6px;
font-size: 12px;
line-height: 12px;
font-family: 'Helvetica', 'Arial', sans-serif;
margin-right: 6px;
color: #005bd1;
}
.top-panel__link:hover {
color: #ff9e00;
text-decoration: none;
}
.header {
position: relative;
height: 96px;
padding: 8px 0 0;
background: #fff;
}
.header__top {
position: relative;
}
.header__top > .container-wrapper {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
height: 100%;
}
.header__top_location {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
}
.header__top_location_title {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
margin-right: 4px;
}
.header__top_location_value {
display: inline-flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
color: #333;
}
.header__top_location_value:hover {
color: #7092fe;
}
.header__top_location_value > svg {
margin-right: 4px;
}
.header__top_location_value > span {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
text-decoration: underline;
}
.header__top_menu {
}
.header__top_menu_list {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
}
.header__top_menu_item {
display: flex;
flex-direction: row;
align-items: center;
margin-left: 24px;
}
.header__top_menu_link {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
color: #333;
}
.header__top_menu_link:hover {
color: #7092fe;
}
.header__top_menu_link > svg {
margin-right: 4px;
}
.header__top_menu_link > span {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
text-decoration: underline;
}
.header__content {
position: absolute;
left: 0;
top: 32px;
height: 64px;
width: 100%;
}
.header.isStuck .header__content {
position: fixed;
left: 0;
top: 0px;
height: 64px;
width: 100%;
background: #fff;
box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 16px 0px;
z-index: 10;
}
.modal-popup__body_scroll .header.isStuck .header__content {
padding-right: 17px;
}
.header__content > .container-wrapper {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
height: 100%;
}
.header__logo {
}
.header__logo_link {
display: block;
margin-top: 0px;
}
.header__logo_img {
max-width: 100%;
max-height: 50px;
}
.header__categories {
margin-left: 16px;
}
.header__categories_btn {
background: #cbd2fe;
color: #fff;
}
.header__categories_btn > svg {
}
.header__categories_btn > span {
margin-left: 10px;
}
.header__categories_btn:hover {
background: #ff9a60;
color: #fff;
}
.header__search {
width: 100%;
margin-left: 16px;
}
.header__search_form {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.header__search_query {
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xNS4yOSAxNC41ODRsNS43MiA1LjcyLS43MDcuNzA2LTUuNzItNS43MmE3IDcgMCAxIDEgLjcwNy0uNzA3ek0xMCAxNmE2IDYgMCAxIDAgMC0xMiA2IDYgMCAwIDAgMCAxMnoiPjwvcGF0aD48L3N2Zz4=') no-repeat 5px 3px;
width: 100%;
border: 1px solid #ebebeb;
border-radius: 8px 0 0 8px;
border-right: none;
padding-left: 40px;
outline: none;
}
.header__search_btn {
border-radius: 0 8px 8px 0;
}
.header__options {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.header__options > .default_btn {
white-space: nowrap;
margin-left: 16px;
}
.header__options_addoffer {
background: #b0dbf7;
color: #fff;
}
.header__options_addoffer:hover {
background: #ff9a60;
color: #fff;
}
.header__options_auth {
}
.content_page {
padding: 16px 0 32px;
}
.main_slider {
}
.main_slider__wrapper {
overflow: hidden;
height: 240px;
flex-wrap: nowrap;
margin: 0;
}
.main_slider__slide {
transform: translate(-50%, 0);
height: 200px;
}
.main_slider__item {
display: block;
width: 100%;
height: 100%;
position: relative;
background-size: cover;
border-radius: 8px;
background-repeat: no-repeat;
background-position: center center;
color: #333;
transition: all 0.2s;
}
.main_slider__item:hover {
box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 16px 0px;
color: #333;
text-decoration: none;
}
.main_slider__img {
display: none !important;
max-width: 100%;
max-height: 100%;
position: absolute;
right: 0;
top: 0;
}
.main_slider__descr {
position: absolute;
left: 30px;
bottom: 25px;
}
.main_slider__title {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 32px;
font-size: 20px;
white-space: nowrap;
}
.main_slider__subtitle {
font-size: 16px;
line-height: 24px;
display: block;
color: #777;
}
.category_slider {
}
.category_slider__wrapper {
height: 140px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
overflow: hidden;
margin: 16px 0 0;
}
.category_slider__slide {
height: 100%;
padding: 0 10px;
}
.category_slider__item {
display: block;
width: 135px;
height: 100%;
text-align: center;
color: #333;
font-weight: 600;
}
.category_slider__item:hover {
color: #333;
text-decoration: none;
}
.category_slider__item::before {
}
.category_slider__image {
position: relative;
display: flex;
align-items: center;
margin: 0 auto;
}
.category_slider__image::before {
content: '';
width: 100px;
height: 100px;
border-radius: 100%;
background: #ebebeb;
position: absolute;
left: 50%;
top: 0;
z-index: 1;
transform: translate(-50%, 0px);
transition: all 0.2s;
}
.category_slider__slide:hover .category_slider__image::before {
background: #d0d8fa;
}
.category_slider__slide:nth-of-type(2n+1):hover .category_slider__image::before {
background: #d0edfa;
}
.category_slider__slide:nth-of-type(3n+1):hover .category_slider__image::before {
background: #f0e1d7;
}
.category_slider__slide:nth-of-type(4n+1):hover .category_slider__image::before {
background: #e6f0d7;
}
.category_slider__img {
max-width: 100%;
max-height: 100%;
position: relative;
z-index: 2;
}
.category_slider__title {
opacity: 0.8;
display: block;
text-align: center;
position: relative;
z-index: 2;
}
.category_slider__title::before {
content: '';
width: 100%;
height: 15px;
background: #fff;
position: absolute;
left: 0;
top: -15px;
}
.content_page__row {
margin-top: 40px;
}
.product-list {
}
.product-list__item {
margin-bottom: 20px;
}
.product-item {
box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
border-radius: 10px;
transition: box-shadow 0.4s ease-in-out 0s;
height: 100%;
}
.product-item.__vip {
border: 2px solid #01bbe9;
}
.product-item__header {
height: 210px;
position: relative;
overflow: hidden;
border-radius: 8px 8px 0 0;
}
.product-item_image {
display: block;
width: 100%;
height: 100%;
background-size: cover;
border-radius: 8px 8px 0 0;
background-repeat: no-repeat;
background-position: center center;
}
.product-item__img {
display: none !important;
}
.product-item__location {
position: absolute;
left: 15px;
bottom: 15px;
}
.product-item__location_item {
color: #fff;
background: rgba(51, 51, 51, 0.24);
padding: 4px 8px;
display: inline-flex;
flex-direction: row;
align-items: center;
margin-right: 5px;
border-radius: 4px;
font-weight: 400;
}
.product-item__action {
position: absolute;
left: 0;
top: 0;
color: #fff;
width: 91px;
height: 91px;
text-align: center;
vertical-align: text-bottom;
transform: rotate(-45deg);
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.product-item__action::before {
content: '';
position: absolute;
left: 0;
top: -65px;
background: #8c98fe;
width: 91px;
height: 91px;
z-index: -1;
}
.product-item__promo {
display: block;
position: absolute;
left: 15px;
top: 15px;
color: #333;
background: #ffcd4b;
padding: 7px 11px;
border-radius: 4px;
}
.product-item__content {
width: 100%;
height: calc(100% - 210px);
padding: 16px;
position: relative;
}
.product-item__favorite {
position: absolute;
right: 15px;
top: -15px;
background: #fff;
color: #333;
width: 34px;
height: 32px;
padding: 3px 5px 5px;
border-radius: 25px 26px 34px 34px;
z-index: 3;
}
.product-item__content_block {
display: block;
color: #333;
}
.product-item__content_block:hover {
text-decoration: none;
color: #333;
}
.product-item__price {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 32px;
display: block;
}
.product-item__price_value {
}
.product-item__price_currency {
}
.product-item__title {
display: block;
font-weight: 400;
line-height: 24px;
font-size: 16px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.content_page__content {
}
.section-title {
display: flex;
justify-content: space-between;
margin-bottom: 16px;
align-items: center;
}
.section-title__value {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 40px;
font-size: 30px;
color: #333;
padding: 0;
margin: 0;
}
.section-title__options {
}
.product-sort__select {
font-size: 14px;
border: none;
background: #fafafa;
padding: 0 20px;
color: #666;
}
.product_slider {
margin-bottom: 12px;
}
.product_slider__wrapper {
}
.product_slider__slide {
margin-bottom: 20px;
}
.content_page__sidebar {
}
.sidebar-social {
}
.sidebar-social__title {
margin: 110px 0 22px;
text-align: center;
color: #858585;
font-weight: 400;
}
.sidebar-social__list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-evenly;
}
.sidebar-social__item {
}
.sidebar-social__link {
display: block;
position: relative;
color: #fff;
}
.sidebar-social__link:hover {
color: #fff;
text-decoration: none;
}
.sidebar-social__link::before {
content: '';
width: 32px;
height: 32px;
border-radius: 32px;
position: absolute;
left: 0;
top: 0;
z-index: -1;
}
.sidebar-social__link._vk {
}
.sidebar-social__link._vk::before {
background: #4680c2;
}
.sidebar-social__link._vk:hover::before {
background: #548ac6;
}
.sidebar-social__link._ok {
}
.sidebar-social__link._ok::before {
background: #f2720d;
}
.sidebar-social__link._ok:hover::before {
background: #f37d20;
}
.sidebar-social__link._facebook {
}
.sidebar-social__link._facebook::before {
background: #3e5b9b;
}
.sidebar-social__link._facebook:hover::before {
background: #4d68a3;
}
.sidebar-social__link._twitter {
}
.sidebar-social__link._twitter::before {
background: #55acee;
}
.sidebar-social__link._twitter:hover::before {
background: #62b2ef;
}
.sidebar-social__link._youtube {
color: #ff0000;
}
.sidebar-social__link._youtube::before {
}
.sidebar-social__link._youtube:hover::before {
}
.sidebar-menu {
margin-top: 40px;
}
.sidebar-menu__list {
list-style-type: none;
padding: 0;
margin: 0;
}
.sidebar-menu__item {
display: block;
}
.sidebar-menu__link {
display: block;
text-align: center;
line-height: 24px;
color: #bbb;
font-weight: 400;
text-decoration: underline;
margin-bottom: 10px;
}
.footer {
margin-top: 80px;
margin-bottom: 40px;
}
.footer__content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.location-list {
list-style-type: none;
margin: 0 0 30px;
padding: 0 0 15px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex: 0 0 100%;
border-bottom: 1px solid #ebebeb;
}
.location-list__item {
flex: 0 0 25%;
margin: 0 0 15px;
}
.location-list__link {
color: #858585;
font-weight: 400;
line-height: 24px;
}
.footer__block {
flex: 0 0 25%;
}
.footer__block_title {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
line-height: 14px;
color: #858585;
margin-bottom: 16px;
padding: 0;
}
.footer__block_menu {
}
.footer-menu {
list-style-type: none;
padding: 0;
margin: 0;
}
.footer-menu__item {
display: block;
margin-bottom: 10px;
}
.footer-menu__link {
display: block;
color: #333;
font-weight: 400;
line-height: 24px;
text-decoration: underline;
}
.footer__block_social {
}
.footer__block_social .sidebar-social__list {
justify-content: normal;
}
.footer__block_social .sidebar-social__item {
margin-right: 16px;
}
.footer__block_app {
}
.app-download__list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.app-download__item {
display: block;
margin-right: 10px;
}
.app-download__link {
display: block;
}
.footer__block_copyright {
}
/**
* ะะพะฑะธะปัะฝะพะต ะผะตะฝั
*/
.mobile-menu__back {
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1LjYzNSAxMi4wMjJsLTcuNTgtNy4yNi42OS0uNzIzIDguMzM1IDcuOTgyLTguMzM0IDcuOTk1LS42OTItLjcyMnoiPjwvcGF0aD4KPC9zdmc+Cg==') no-repeat 0 0;
transform: rotate(-180deg);
width: 24px;
height: 24px;
text-indent: -99999px;
margin: 10px 10px 10px;
}
#mobileMenuHeader {
display: none;
}
#mobileMenu {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #fff;
z-index: 11;
opacity: 0;
transition: all 0.4s;
}
#mobileMenu #mobileMenuHeader {
display: flex;
}
#mobileMenu ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#mobileMenu ul .sub_image {
display: none;
}
#mobileMenu li {
display: block;
height: 50px;
border-bottom: 1px solid #E9E7E7;
}
#mobileMenu li.header-close {
display: flex;
height: 50px;
border-bottom: 1px solid #E9E7E7;
font-size: 16px;
font-weight: 400;
align-items: center;
justify-content: center;
}
#mobileMenu li.header-close::before {
content: '';
width: 24px;
height: 1px;
background: #999;
position: absolute;
left: 15px;
top: 25px;
transform: rotate(-45deg);
}
#mobileMenu li.header-close::after {
content: '';
width: 24px;
height: 1px;
background: #999;
position: absolute;
left: 15px;
top: 25px;
transform: rotate(45deg);
}
#mobileMenu li.title {
display: none;
}
#mobileMenu li.mobileMenu__black {
border-bottom: 1px solid #638ba9;
}
#mobileMenu li.mobileMenu__cols {
height: 80px;
}
.mobileMenu__col_list {
height: 100%;
margin: 0;
}
.mobileMenu__col {
border-right: 1px solid #E9E7E7;
padding: 0;
}
.mobileMenu__col:last-child {
border-right: none;
}
#mobileMenu ul.sublist-active > li:not(.list-active) {
display: none;
}
#mobileMenu li.header-submenu {
height: auto;
border: none;
}
#mobileMenu li.header-submenu .mobile-box__title__back {
padding: 0 20px 0 50px;
}
#mobileMenu li.header-submenu .mobile-box__title__back::before {
content: '\e903';
font-family: "tugle";
speak: none;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
position: absolute;
left: 20px;
top: 4px;
pointer-events: none;
}
#mobileMenu li a {
display: flex;
height: 100%;
width: 100%;
align-items: center;
padding: 0;
color: #000;
font-weight: 500;
font-size: 14px;
position: relative;
padding: 0 15px;
}
#mobileMenu li a img {
max-height: 25px;
margin-right: 10px;
}
#mobileMenu .mobileMenu__col > a {
padding: 0;
justify-content: center;
}
#mobileMenu .mobileMenu__col > a > span {
padding: 0 0 0 5px;
}
#mobileMenu li.mobileMenu__grey > a {
background: #eee;
}
#mobileMenu li.mobileMenu__black > a {
background: #7099bd;
color: #fff;
}
#mobileMenu li > a > [class^="icon-"],
#mobileMenu li > a > [class*=" icon-"] {
position: absolute;
left: 20px;
top: 0;
display: flex;
align-items: center;
height: 100%;
}
#mobileMenu li > a > span {
padding-left: 50px;
}
#mobileMenu li a.submenu-link::before {
content: '';
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1LjYzNSAxMi4wMjJsLTcuNTgtNy4yNi42OS0uNzIzIDguMzM1IDcuOTgyLTguMzM0IDcuOTk1LS42OTItLjcyMnoiPjwvcGF0aD4KPC9zdmc+Cg==') no-repeat 0 0;
position: absolute;
right: 20px;
top: 12px;
width: 24px;
height: 24px;
}
#mobileMenu li.active-submenu-link a {
background: rgba(219, 227, 243, 0.5);
}
#mobileMenu li.active-submenu-link a::before {
display: none;
}
#mobileMenu li ul {
display: block;
background: #fff;
width: 100%;
height: 100%;
position: absolute;
left: 0;
transform: translate3d(100%, 0, 0);
top: 0;
z-index: 2;
transition: all 0.2s;
overflow-y: auto;
overflow-x: hidden;
}
#mobileMenu li ul.active {
transform: translate3d(0, 0, 0);
}
#mobileMenu ul.sublist-active {
}
/**
* Popup ะพะบะฝะฐ
*/
.modal-popup {
display: flex !important;
position: fixed;
left: -100px;
top: -100px;
z-index: 1001;
width: 1px;
height: 1px;
padding: 50px 0;
overflow: hidden;
overflow-y: scroll;
opacity: 0;
transition: opacity 0.3s;
}
.modal-popup.show {
left: 0;
top: 0;
z-index: 1001;
width: 100%;
height: 100%;
opacity: 1;
}
.modal-popup__body {
overflow: hidden;
}
.modal-popup__body_scroll {
padding-right: 17px;
}
.modal-popup__bg {
display: block !important;
left: -100px;
top: -100px;
position: fixed;
width: 1px;
height: 1px;
background: rgba(0,0,0,0.3);
z-index: 1000;
opacity: 0;
transition: opacity 0.3s;
}
.modal-popup__bg.show {
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 1;
}
.modal-popup__content {
background: #fafafa;
padding: 30px;
position: relative;
border-radius: 8px;
width: 757px;
margin: auto;
}
.modal-popup__close {
position: absolute;
right: -10px;
top: -10px;
width: 32px;
height: 32px;
cursor: pointer;
z-index: 2;
background: #fff;
border-radius: 32px;
box-shadow: rgba(51, 51, 51, 0.13) 0px 4px 12px 0px;
}
.modal-popup__close::before {
content: '';
position: absolute;
left: 8px;
top: 15px;
width: 16px;
height: 2px;
background: #c4c4c4;
border-radius: 1px;
transform: rotate(45deg);
transition: all 0.2s;
}
.modal-popup__close::after {
content: '';
position: absolute;
left: 8px;
top: 15px;
width: 16px;
height: 2px;
background: #c4c4c4;
border-radius: 1px;
transform: rotate(135deg);
transition: all 0.2s;
}
.modal-popup__close:hover::before,
.modal-popup__close:hover::after {
background: #333;
}
/**
* Popup ะฐะฒัะพัะธะทะฐัะธั
*/
.modal-auth .modal-popup__content {
padding: 0;
width: 596px;
}
.modal-auth__content {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.modal-auth__benefits {
flex: 0 0 50%;
background-image: linear-gradient(45deg, rgba(51, 51, 51, 0.88), rgba(51, 51, 51, 0.88)), url('../images/modal-auth.png');
padding: 40px 32px 30px;
border-radius: 8px 0 0 8px;
}
.modal-auth__benefits_list {
list-style-type: none;
padding: 0;
margin: 0;
}
.modal-auth__benefits_item {
color: #fff;
display: block;
margin: 0 0 30px;
position: relative;
padding: 0 0 0 40px;
}
.modal-auth__benefits_item > svg {
position: absolute;
left: 0;
top: 0;
}
.modal-auth__benefits_title {
display: block;
font-size: 16px;
font-weight: 600;
margin: 0 0 10px;
}
.modal-auth__benefits_descr {
color: #ccc;
font-weight: 400;
line-height: 24px;
}
.modal-auth__form {
flex: 0 0 50%;
padding: 40px 32px 30px;
position: relative;
}
.modal-auth__form_title {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 32px;
font-size: 20px;
text-align: center;
}
.modal-auth__form_descr {
margin-top: 8px;
text-align: center;
color: #858585;
font-weight: 400;
}
.modal-auth__form_input {
margin: 16px 0px 12px;
}
.auth__form_input_phone {
height: 40px;
width: 100%;
border: 1px solid #ebebeb;
border-radius: 8px;
padding: 0 10px;
}
.modal-auth__form_submit {
}
.auth__form_input_submit {
color: #fff;
background: #7092fe;
width: 100%;
height: 40px;
justify-content: center;
}
.auth__form_input_submit:hover {
color: #fff;
background: #7b9afe;
}
.modal-auth__social {
margin: 24px auto 24px;
}
.modal-auth__social_title {
text-align: center;
color: #999;
font-weight: 400;
margin: 0 0 20px;
}
.modal-auth__social_list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
}
.modal-auth__social_item {
flex: 0 0 50%;
}
.modal-auth__social_link {
display: flex;
border-radius: 8px;
margin-right: 4px;
height: 40px;
align-items: center;
justify-content: center;
box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}
.modal-auth__social_item:last-child .modal-auth__social_link {
margin-left: 4px;
margin-right: 0;
}
.modal-auth__social_link.__vk {
color: #4680c2;
border: 1px solid #4680c2;
}
.modal-auth__social_link.__ok {
color: #f2720d;
border: 1px solid #f2720d;
}
.modal-auth__login {
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
text-align: center;
font-weight: 400;
}
/**
* Popup ะผะตััะพะฟะพะปะพะถะตะฝะธะต
*/
.default-tabs {
}
.default-nav-tabs {
list-style-type: none;
padding: 0;
margin: 0;
border-bottom: 1px solid #ebebeb;
margin-bottom: 15px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.default-nav-item {
display: block;
}
.default-nav-link {
display: flex;
height: 48px;
padding: 0;
position: relative;
align-items: center;
color: #333;
font-weight: 400;
font-size: 14px;
margin-right: 30px;
}
.default-nav-link:hover {
color: #333;
text-decoration: none;
}
.default-nav-link.active {
}
.default-nav-link.active::before {
content: '';
width: 100%;
height: 2px;
background: #7092fe;
position: absolute;
left: 0;
bottom: -1px;
}
.tab-content {
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}
.modal-location {
}
.modal-location .modal-popup__content {
width: 980px;
padding: 0;
}
.modal-location__content {
}
#tab-location {
padding: 0;
margin-top: -15px;
}
.modal-location__map {
width: 100%;
height: 400px
}
.modal-location__groupbtn {
display: flex;
padding: 15px 10px 10px;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.modal-location__groupbtn_cancel {
display: block;
width: 100%;
color: #7092fe;
border: 1px solid #7092fe;
border-radius: 8px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: 400;
font-size: 16px;
margin-right: 4px;
}
.modal-location__groupbtn_cancel:hover {
text-decoration: none;
}
.modal-location__groupbtn_select {
display: block;
width: 100%;
color: #fff;
background: #7092fe;
border-radius: 8px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: 400;
font-size: 16px;
margin-left: 4px;
}
.modal-location__groupbtn_select:hover {
color: #fff;
text-decoration: none;
}
.modal-location__content .default-nav-item:first-child {
padding-left: 30px;
}
.modal-location__content .tab-pane {
padding: 0 30px;
}
.modal-location__form {
display: flex;
align-items: center;
}
.modal-location__input {
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSI<KEY>aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xNS4yOSAxNC41ODRsNS43MiA1LjcyLS<KEY>LTUuNzItNS43MmE3IDcgMCAxIDEgLjcwNy0uNzA3ek0xMCAxNmE2IDYgMCAxID<KEY>IDYgMCAwIDAgMCAxMnoiPjwvcGF0aD48L3N2Zz4=') no-repeat 8px 8px;
width: 40%;
border: 1px solid #ebebeb;
border-radius: 8px;
padding-left: 40px;
outline: none;
height: 40px;
}
.modal-location__submit {
margin-left: 15px;
height: 40px;
color: #fff;
background: #7092fe;
padding: 0 80px;
}
.modal-location__submit:hover {
color: #fff;
background: #7a99fe;
}
.modal-location__list {
margin-top: 16px;
}
.modal-location__list_descr {
font-size: 12px;
line-height: 16px;
color: #8f8f8f;
}
.modal-location__sities {
list-style-type: none;
padding: 0;
margin: 32px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.modal-location__city {
flex: 0 0 33.333334%;
}
.modal-location__city_link {
display: flex;
height: 38px;
color: #333;
font-weight: 400;
align-items: center;
padding: 0 15px;
}
.modal-location__city_link:hover {
color: #333;
text-decoration: none;
background: #f5f5f5;
}
.modal-location__city_link.__bold {
font-weight: 600;
}
.modal-location__city_link.__active {
color: #7092fe;
}
.modal-location__cancel {
display: block;
text-align: center;
color: #333;
font-size: 16px;
height: 40px;
line-height: 40px;
border: 1px solid #ebebeb;
border-radius: 8px;
margin: 0 -20px 10px;
font-weight: 400;
}
.modal-location__cancel:hover {
color: #333;
text-decoration: none;
} | web/css/style.css | @charset "UTF-8";
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background: #fafafa;
font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
font-size: 14px;
line-height: 14px;
font-weight: 300;
color: #333333;
margin: 0;
direction: ltr;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
outline: none;
color: #7092fe;
}
a:hover {
outline: none;
color: #7092fe;
text-decoration: underline;
}
.container-wrapper {
max-width: 1200px;
min-width: 320px;
margin: 0 auto;
}
/**
* FORM
*/
.hide-pc {
display: none;
}
.carousel-container {
position: relative;
overflow: hidden;
padding: 0;
z-index: 1;
height: auto;
}
.carousel-container.carousel-initialized {
overflow: unset;
flex-wrap: wrap;
}
.carousel-list {
overflow: hidden;
height: 100%;
}
.carousel-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
box-sizing: content-box;
}
.carousel-vertical .carousel-wrapper {
flex-wrap: wrap;
}
.carousel-slide {
}
.carousel-fade .carousel-slide {
transition: opacity 300ms ease 0s;
}
.carousel-arrow {
width: 32px;
height: 32px;
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0xNS42MzUgMTIuMDIybC03LjU4LTcuMjYuNjktLjcyMyA4LjMzNSA3Ljk4Mi04LjMzNCA3Ljk5NS0uNjkyLS43MjJ6Ij48L3BhdGg+PC9zdmc+') no-repeat center center;
border-radius: 8px;
border: none;
box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 8px 0px;
font-size: 0;
line-height: 0;
position: absolute;
top: calc(50% - 20px);
display: block;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none !important;
z-index: 2;
}
.carousel-arrow:hover {
}
.carousel-button-prev {
left: 10px;
transform: rotate(180deg);
}
.carousel-button-next {
right: 10px;
}
.carousel-arrow:hover:before {
color: #fff;
}
.carousel-dots {
list-style: none;
padding: 0;
margin: 0;
position: absolute;
left: 0;
bottom: -20px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
width: 100%;
justify-content: center;
}
.__carouselVertical .carousel-dots {
flex-direction: column;
width: 5px;
top: 0;
bottom: inherit;
left: -20px;
height: 100%;
}
.carousel-dots-bullet {
width: 50px;
height: 5px;
background: #eee;
cursor: pointer;
margin-right: 3px;
position: relative;
transition: background 0.2s;
}
.__carouselVertical .carousel-dots-bullet {
width: 5px;
height: 50px;
margin-right: 0;
margin-bottom: 3px;
}
.carousel-dots-bullet::before {
content: '';
position: absolute;
left: 0;
top: -15px;
width: 100%;
height: 30px;
background: transparent;
}
.__carouselVertical .carousel-dots-bullet::before {
left: -10px;
top: 0;
width: 30px;
height: 100%;
}
.carousel-dots-bullet:hover,
.carousel-dots-bullet-active {
background: #2879FE;
}
.carousel-dots-bullet button {
display: none;
}
/*
* Slick
*/
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
}
.slick-slide {
float: left;
min-height: 1px;
}
.default_btn {
display: inline-flex;
align-items: center;
height: 32px;
padding: 4px 16px;
border: none;
cursor: pointer;
border-radius: 8px;
background: #ebebeb;
color: #333333;
text-decoration: none;
transition: all 0.2s;
outline: none;
}
.default_btn:hover {
color: #333333;
text-decoration: none;
box-shadow: rgba(51, 51, 51, 0.035) 0px 4px 8px 0px;
background: rgb(237, 237, 237);
}
.hidden {
display: none;
}
.avatar {
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.top-panel {
height: 28px;
background: #f5f5f5;
}
.top-panel__list {
list-style-type: none;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin: 0;
padding: 0 0 0 14px;
height: 100%;
}
.top-panel__item {
display: block;
height: 100%;
}
.top-panel__link {
display: flex;
height: 100%;
align-items: center;
padding: 0 6px;
font-size: 12px;
line-height: 12px;
font-family: 'Helvetica', 'Arial', sans-serif;
margin-right: 6px;
color: #005bd1;
}
.top-panel__link:hover {
color: #ff9e00;
text-decoration: none;
}
.header {
position: relative;
height: 96px;
padding: 8px 0 0;
background: #fff;
}
.header__top {
position: relative;
}
.header__top > .container-wrapper {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
height: 100%;
}
.header__top_location {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
}
.header__top_location_title {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
margin-right: 4px;
}
.header__top_location_value {
display: inline-flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
color: #333;
}
.header__top_location_value:hover {
color: #7092fe;
}
.header__top_location_value > svg {
margin-right: 4px;
}
.header__top_location_value > span {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
text-decoration: underline;
}
.header__top_menu {
}
.header__top_menu_list {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
}
.header__top_menu_item {
display: flex;
flex-direction: row;
align-items: center;
margin-left: 24px;
}
.header__top_menu_link {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
color: #333;
}
.header__top_menu_link:hover {
color: #7092fe;
}
.header__top_menu_link > svg {
margin-right: 4px;
}
.header__top_menu_link > span {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
text-decoration: underline;
}
.header__content {
position: absolute;
left: 0;
top: 32px;
height: 64px;
width: 100%;
}
.header.isStuck .header__content {
position: fixed;
left: 0;
top: 0px;
height: 64px;
width: 100%;
background: #fff;
box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 16px 0px;
z-index: 10;
}
.modal-popup__body_scroll .header.isStuck .header__content {
padding-right: 17px;
}
.header__content > .container-wrapper {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
height: 100%;
}
.header__logo {
}
.header__logo_link {
display: block;
margin-top: 0px;
}
.header__logo_img {
max-width: 100%;
max-height: 50px;
}
.header__categories {
margin-left: 16px;
}
.header__categories_btn {
background: #cbd2fe;
color: #fff;
}
.header__categories_btn > svg {
}
.header__categories_btn > span {
margin-left: 10px;
}
.header__categories_btn:hover {
background: #ff9a60;
color: #fff;
}
.header__search {
width: 100%;
margin-left: 16px;
}
.header__search_form {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.header__search_query {
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xNS4yOSAxNC41ODRsNS43MiA1LjcyLS43MDcuNzA2LTUuNzItNS43MmE3IDcgMCAxIDEgLjcwNy0uNzA3ek0xMCAxNmE2IDYgMCAxIDAgMC0xMiA2IDYgMCAwIDAgMCAxMnoiPjwvcGF0aD48L3N2Zz4=') no-repeat 5px 3px;
width: 100%;
border: 1px solid #ebebeb;
border-radius: 8px 0 0 8px;
border-right: none;
padding-left: 40px;
outline: none;
}
.header__search_btn {
border-radius: 0 8px 8px 0;
}
.header__options {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.header__options > .default_btn {
white-space: nowrap;
margin-left: 16px;
}
.header__options_addoffer {
background: #b0dbf7;
color: #fff;
}
.header__options_addoffer:hover {
background: #ff9a60;
color: #fff;
}
.header__options_auth {
}
.content_page {
padding: 16px 0 32px;
}
.main_slider {
}
.main_slider__wrapper {
overflow: hidden;
height: 240px;
flex-wrap: nowrap;
margin: 0;
}
.main_slider__slide {
transform: translate(-50%, 0);
height: 200px;
}
.main_slider__item {
display: block;
width: 100%;
height: 100%;
position: relative;
background-size: cover;
border-radius: 8px;
background-repeat: no-repeat;
background-position: center center;
color: #333;
transition: all 0.2s;
}
.main_slider__item:hover {
box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 16px 0px;
color: #333;
text-decoration: none;
}
.main_slider__img {
display: none !important;
max-width: 100%;
max-height: 100%;
position: absolute;
right: 0;
top: 0;
}
.main_slider__descr {
position: absolute;
left: 30px;
bottom: 25px;
}
.main_slider__title {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 32px;
font-size: 20px;
white-space: nowrap;
}
.main_slider__subtitle {
font-size: 16px;
line-height: 24px;
display: block;
color: #777;
}
.category_slider {
}
.category_slider__wrapper {
height: 140px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
overflow: hidden;
margin: 16px 0 0;
}
.category_slider__slide {
height: 100%;
padding: 0 10px;
}
.category_slider__item {
display: block;
width: 135px;
height: 100%;
text-align: center;
color: #333;
font-weight: 600;
}
.category_slider__item:hover {
color: #333;
text-decoration: none;
}
.category_slider__item::before {
}
.category_slider__image {
position: relative;
display: flex;
align-items: center;
margin: 0 auto;
}
.category_slider__image::before {
content: '';
width: 100px;
height: 100px;
border-radius: 100%;
background: #ebebeb;
position: absolute;
left: 50%;
top: 0;
z-index: 1;
transform: translate(-50%, 0px);
transition: all 0.2s;
}
.category_slider__slide:hover .category_slider__image::before {
background: #d0d8fa;
}
.category_slider__slide:nth-of-type(2n+1):hover .category_slider__image::before {
background: #d0edfa;
}
.category_slider__slide:nth-of-type(3n+1):hover .category_slider__image::before {
background: #f0e1d7;
}
.category_slider__slide:nth-of-type(4n+1):hover .category_slider__image::before {
background: #e6f0d7;
}
.category_slider__img {
max-width: 100%;
max-height: 100%;
position: relative;
z-index: 2;
}
.category_slider__title {
opacity: 0.8;
display: block;
text-align: center;
position: relative;
z-index: 2;
}
.category_slider__title::before {
content: '';
width: 100%;
height: 15px;
background: #fff;
position: absolute;
left: 0;
top: -15px;
}
.content_page__row {
margin-top: 40px;
}
.product-list {
}
.product-list__item {
margin-bottom: 20px;
}
.product-item {
box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
border-radius: 10px;
transition: box-shadow 0.4s ease-in-out 0s;
height: 100%;
}
.product-item.__vip {
border: 2px solid #01bbe9;
}
.product-item__header {
height: 210px;
position: relative;
overflow: hidden;
border-radius: 8px 8px 0 0;
}
.product-item_image {
display: block;
width: 100%;
height: 100%;
background-size: cover;
border-radius: 8px 8px 0 0;
background-repeat: no-repeat;
background-position: center center;
}
.product-item__img {
display: none !important;
}
.product-item__location {
position: absolute;
left: 15px;
bottom: 15px;
}
.product-item__location_item {
color: #fff;
background: rgba(51, 51, 51, 0.24);
padding: 4px 8px;
display: inline-flex;
flex-direction: row;
align-items: center;
margin-right: 5px;
border-radius: 4px;
font-weight: 400;
}
.product-item__action {
position: absolute;
left: 0;
top: 0;
color: #fff;
width: 91px;
height: 91px;
text-align: center;
vertical-align: text-bottom;
transform: rotate(-45deg);
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.product-item__action::before {
content: '';
position: absolute;
left: 0;
top: -65px;
background: #8c98fe;
width: 91px;
height: 91px;
z-index: -1;
}
.product-item__promo {
display: block;
position: absolute;
left: 15px;
top: 15px;
color: #333;
background: #ffcd4b;
padding: 7px 11px;
border-radius: 4px;
}
.product-item__content {
width: 100%;
height: calc(100% - 210px);
padding: 16px;
position: relative;
}
.product-item__favorite {
position: absolute;
right: 15px;
top: -15px;
background: #fff;
color: #333;
width: 34px;
height: 32px;
padding: 3px 5px 5px;
border-radius: 25px 26px 34px 34px;
z-index: 3;
}
.product-item__content_block {
display: block;
color: #333;
}
.product-item__content_block:hover {
text-decoration: none;
color: #333;
}
.product-item__price {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 32px;
display: block;
}
.product-item__price_value {
}
.product-item__price_currency {
}
.product-item__title {
display: block;
font-weight: 400;
line-height: 24px;
font-size: 16px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.content_page__content {
}
.section-title {
display: flex;
justify-content: space-between;
margin-bottom: 16px;
align-items: center;
}
.section-title__value {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 40px;
font-size: 30px;
color: #333;
padding: 0;
margin: 0;
}
.section-title__options {
}
.product-sort__select {
font-size: 14px;
border: none;
background: #fafafa;
padding: 0 20px;
color: #666;
}
.product_slider {
margin-bottom: 12px;
}
.product_slider__wrapper {
}
.product_slider__slide {
margin-bottom: 20px;
}
.content_page__sidebar {
}
.sidebar-social {
}
.sidebar-social__title {
margin: 110px 0 22px;
text-align: center;
color: #858585;
font-weight: 400;
}
.sidebar-social__list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-evenly;
}
.sidebar-social__item {
}
.sidebar-social__link {
display: block;
position: relative;
color: #fff;
}
.sidebar-social__link:hover {
color: #fff;
text-decoration: none;
}
.sidebar-social__link::before {
content: '';
width: 32px;
height: 32px;
border-radius: 32px;
position: absolute;
left: 0;
top: 0;
z-index: -1;
}
.sidebar-social__link._vk {
}
.sidebar-social__link._vk::before {
background: #4680c2;
}
.sidebar-social__link._vk:hover::before {
background: #548ac6;
}
.sidebar-social__link._ok {
}
.sidebar-social__link._ok::before {
background: #f2720d;
}
.sidebar-social__link._ok:hover::before {
background: #f37d20;
}
.sidebar-social__link._facebook {
}
.sidebar-social__link._facebook::before {
background: #3e5b9b;
}
.sidebar-social__link._facebook:hover::before {
background: #4d68a3;
}
.sidebar-social__link._twitter {
}
.sidebar-social__link._twitter::before {
background: #55acee;
}
.sidebar-social__link._twitter:hover::before {
background: #62b2ef;
}
.sidebar-social__link._youtube {
color: #ff0000;
}
.sidebar-social__link._youtube::before {
}
.sidebar-social__link._youtube:hover::before {
}
.sidebar-menu {
margin-top: 40px;
}
.sidebar-menu__list {
list-style-type: none;
padding: 0;
margin: 0;
}
.sidebar-menu__item {
display: block;
}
.sidebar-menu__link {
display: block;
text-align: center;
line-height: 24px;
color: #bbb;
font-weight: 400;
text-decoration: underline;
margin-bottom: 10px;
}
.footer {
margin-top: 80px;
margin-bottom: 40px;
}
.footer__content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.location-list {
list-style-type: none;
margin: 0 0 30px;
padding: 0 0 15px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex: 0 0 100%;
border-bottom: 1px solid #ebebeb;
}
.location-list__item {
flex: 0 0 25%;
margin: 0 0 15px;
}
.location-list__link {
color: #858585;
font-weight: 400;
line-height: 24px;
}
.footer__block {
flex: 0 0 25%;
}
.footer__block_title {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2px;
line-height: 14px;
color: #858585;
margin-bottom: 16px;
padding: 0;
}
.footer__block_menu {
}
.footer-menu {
list-style-type: none;
padding: 0;
margin: 0;
}
.footer-menu__item {
display: block;
margin-bottom: 10px;
}
.footer-menu__link {
display: block;
color: #333;
font-weight: 400;
line-height: 24px;
text-decoration: underline;
}
.footer__block_social {
}
.footer__block_social .sidebar-social__list {
justify-content: normal;
}
.footer__block_social .sidebar-social__item {
margin-right: 16px;
}
.footer__block_app {
}
.app-download__list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.app-download__item {
display: block;
margin-right: 10px;
}
.app-download__link {
display: block;
}
.footer__block_copyright {
}
/**
* ะะพะฑะธะปัะฝะพะต ะผะตะฝั
*/
.mobile-menu__back {
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1LjYzNSAxMi4wMjJsLTcuNTgtNy4yNi42OS0uNzIzIDguMzM1IDcuOTgyLTguMzM0IDcuOTk1LS42OTItLjcyMnoiPjwvcGF0aD4KPC9zdmc+Cg==') no-repeat 0 0;
transform: rotate(-180deg);
width: 24px;
height: 24px;
text-indent: -99999px;
margin: 10px 10px 10px;
}
#mobileMenuHeader {
display: none;
}
#mobileMenu {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #fff;
z-index: 11;
opacity: 0;
transition: all 0.4s;
}
#mobileMenu #mobileMenuHeader {
display: flex;
}
#mobileMenu ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#mobileMenu ul .sub_image {
display: none;
}
#mobileMenu li {
display: block;
height: 50px;
border-bottom: 1px solid #E9E7E7;
}
#mobileMenu li.header-close {
display: flex;
height: 50px;
border-bottom: 1px solid #E9E7E7;
font-size: 16px;
font-weight: 400;
align-items: center;
justify-content: center;
}
#mobileMenu li.header-close::before {
content: '';
width: 24px;
height: 1px;
background: #999;
position: absolute;
left: 15px;
top: 25px;
transform: rotate(-45deg);
}
#mobileMenu li.header-close::after {
content: '';
width: 24px;
height: 1px;
background: #999;
position: absolute;
left: 15px;
top: 25px;
transform: rotate(45deg);
}
#mobileMenu li.title {
display: none;
}
#mobileMenu li.mobileMenu__black {
border-bottom: 1px solid #638ba9;
}
#mobileMenu li.mobileMenu__cols {
height: 80px;
}
.mobileMenu__col_list {
height: 100%;
margin: 0;
}
.mobileMenu__col {
border-right: 1px solid #E9E7E7;
padding: 0;
}
.mobileMenu__col:last-child {
border-right: none;
}
#mobileMenu ul.sublist-active > li:not(.list-active) {
display: none;
}
#mobileMenu li.header-submenu {
height: auto;
border: none;
}
#mobileMenu li.header-submenu .mobile-box__title__back {
padding: 0 20px 0 50px;
}
#mobileMenu li.header-submenu .mobile-box__title__back::before {
content: '\e903';
font-family: "tugle";
speak: none;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
position: absolute;
left: 20px;
top: 4px;
pointer-events: none;
}
#mobileMenu li a {
display: flex;
height: 100%;
width: 100%;
align-items: center;
padding: 0;
color: #000;
font-weight: 500;
font-size: 14px;
position: relative;
padding: 0 15px;
}
#mobileMenu li a img {
max-height: 25px;
margin-right: 10px;
}
#mobileMenu .mobileMenu__col > a {
padding: 0;
justify-content: center;
}
#mobileMenu .mobileMenu__col > a > span {
padding: 0 0 0 5px;
}
#mobileMenu li.mobileMenu__grey > a {
background: #eee;
}
#mobileMenu li.mobileMenu__black > a {
background: #7099bd;
color: #fff;
}
#mobileMenu li > a > [class^="icon-"],
#mobileMenu li > a > [class*=" icon-"] {
position: absolute;
left: 20px;
top: 0;
display: flex;
align-items: center;
height: 100%;
}
#mobileMenu li > a > span {
padding-left: 50px;
}
#mobileMenu li a.submenu-link::before {
content: '';
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1LjYzNSAxMi4wMjJsLTcuNTgtNy4yNi42OS0uNzIzIDguMzM1IDcuOTgyLTguMzM0IDcuOTk1LS42OTItLjcyMnoiPjwvcGF0aD4KPC9zdmc+Cg==') no-repeat 0 0;
position: absolute;
right: 20px;
top: 12px;
width: 24px;
height: 24px;
}
#mobileMenu li.active-submenu-link a {
background: rgba(219, 227, 243, 0.5);
}
#mobileMenu li.active-submenu-link a::before {
display: none;
}
#mobileMenu li ul {
display: block;
background: #fff;
width: 100%;
height: 100%;
position: absolute;
left: 0;
transform: translate3d(100%, 0, 0);
top: 0;
z-index: 2;
transition: all 0.2s;
overflow-y: auto;
overflow-x: hidden;
}
#mobileMenu li ul.active {
transform: translate3d(0, 0, 0);
}
#mobileMenu ul.sublist-active {
}
/**
* Popup ะพะบะฝะฐ
*/
.modal-popup {
display: flex !important;
position: fixed;
left: -100px;
top: -100px;
z-index: 1001;
width: 1px;
height: 1px;
padding: 50px 0;
overflow: hidden;
overflow-y: scroll;
opacity: 0;
transition: opacity 0.3s;
}
.modal-popup.show {
left: 0;
top: 0;
z-index: 1001;
width: 100%;
height: 100%;
opacity: 1;
}
.modal-popup__body {
overflow: hidden;
}
.modal-popup__body_scroll {
padding-right: 17px;
}
.modal-popup__bg {
display: block !important;
left: -100px;
top: -100px;
position: fixed;
width: 1px;
height: 1px;
background: rgba(0,0,0,0.3);
z-index: 1000;
opacity: 0;
transition: opacity 0.3s;
}
.modal-popup__bg.show {
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 1;
}
.modal-popup__content {
background: #fafafa;
padding: 30px;
position: relative;
border-radius: 8px;
width: 757px;
margin: auto;
}
.modal-popup__close {
position: absolute;
right: -10px;
top: -10px;
width: 32px;
height: 32px;
cursor: pointer;
z-index: 2;
background: #fff;
border-radius: 32px;
box-shadow: rgba(51, 51, 51, 0.13) 0px 4px 12px 0px;
}
.modal-popup__close::before {
content: '';
position: absolute;
left: 8px;
top: 15px;
width: 16px;
height: 2px;
background: #c4c4c4;
border-radius: 1px;
transform: rotate(45deg);
transition: all 0.2s;
}
.modal-popup__close::after {
content: '';
position: absolute;
left: 8px;
top: 15px;
width: 16px;
height: 2px;
background: #c4c4c4;
border-radius: 1px;
transform: rotate(135deg);
transition: all 0.2s;
}
.modal-popup__close:hover::before,
.modal-popup__close:hover::after {
background: #333;
}
/**
* Popup ะฐะฒัะพัะธะทะฐัะธั
*/
.modal-auth .modal-popup__content {
padding: 0;
width: 596px;
}
.modal-auth__content {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.modal-auth__benefits {
flex: 0 0 50%;
background-image: linear-gradient(45deg, rgba(51, 51, 51, 0.88), rgba(51, 51, 51, 0.88)), url('../images/modal-auth.png');
padding: 40px 32px 30px;
border-radius: 8px 0 0 8px;
}
.modal-auth__benefits_list {
list-style-type: none;
padding: 0;
margin: 0;
}
.modal-auth__benefits_item {
color: #fff;
display: block;
margin: 0 0 30px;
position: relative;
padding: 0 0 0 40px;
}
.modal-auth__benefits_item > svg {
position: absolute;
left: 0;
top: 0;
}
.modal-auth__benefits_title {
display: block;
font-size: 16px;
font-weight: 600;
margin: 0 0 10px;
}
.modal-auth__benefits_descr {
color: #ccc;
font-weight: 400;
line-height: 24px;
}
.modal-auth__form {
flex: 0 0 50%;
padding: 40px 32px 30px;
position: relative;
}
.modal-auth__form_title {
font-family: "Fira Sans", 'Helvetica', 'Arial', sans-serif;
font-weight: 500;
line-height: 32px;
font-size: 20px;
text-align: center;
}
.modal-auth__form_descr {
margin-top: 8px;
text-align: center;
color: #858585;
font-weight: 400;
}
.modal-auth__form_input {
margin: 16px 0px 12px;
}
.auth__form_input_phone {
height: 40px;
width: 100%;
border: 1px solid #ebebeb;
border-radius: 8px;
padding: 0 10px;
}
.modal-auth__form_submit {
}
.auth__form_input_submit {
color: #fff;
background: #7092fe;
width: 100%;
height: 40px;
justify-content: center;
}
.auth__form_input_submit:hover {
color: #fff;
background: #7b9afe;
}
.modal-auth__social {
margin: 24px auto 24px;
}
.modal-auth__social_title {
text-align: center;
color: #999;
font-weight: 400;
margin: 0 0 20px;
}
.modal-auth__social_list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
}
.modal-auth__social_item {
flex: 0 0 50%;
}
.modal-auth__social_link {
display: flex;
border-radius: 8px;
margin-right: 4px;
height: 40px;
align-items: center;
justify-content: center;
box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}
.modal-auth__social_item:last-child .modal-auth__social_link {
margin-left: 4px;
margin-right: 0;
}
.modal-auth__social_link.__vk {
color: #4680c2;
border: 1px solid #4680c2;
}
.modal-auth__social_link.__ok {
color: #f2720d;
border: 1px solid #f2720d;
}
.modal-auth__login {
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
text-align: center;
font-weight: 400;
}
/**
* Popup ะผะตััะพะฟะพะปะพะถะตะฝะธะต
*/
.default-tabs {
}
.default-nav-tabs {
list-style-type: none;
padding: 0;
margin: 0;
border-bottom: 1px solid #ebebeb;
margin-bottom: 15px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.default-nav-item {
display: block;
}
.default-nav-link {
display: flex;
height: 48px;
padding: 0;
position: relative;
align-items: center;
color: #333;
font-weight: 400;
font-size: 14px;
margin-right: 30px;
}
.default-nav-link:hover {
color: #333;
text-decoration: none;
}
.default-nav-link.active {
}
.default-nav-link.active::before {
content: '';
width: 100%;
height: 2px;
background: #7092fe;
position: absolute;
left: 0;
bottom: -1px;
}
.tab-content {
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}
.modal-location {
}
.modal-location .modal-popup__content {
width: 980px;
padding: 0;
}
.modal-location__content {
}
#tab-location {
padding: 0;
margin-top: -15px;
}
.modal-location__map {
width: 100%;
height: 400px
}
.modal-location__groupbtn {
display: flex;
padding: 15px 10px 10px;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.modal-location__groupbtn_cancel {
display: block;
width: 100%;
color: #7092fe;
border: 1px solid #7092fe;
border-radius: 8px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: 400;
font-size: 16px;
margin-right: 4px;
}
.modal-location__groupbtn_cancel:hover {
text-decoration: none;
}
.modal-location__groupbtn_select {
display: block;
width: 100%;
color: #fff;
background: #7092fe;
border-radius: 8px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: 400;
font-size: 16px;
margin-left: 4px;
}
.modal-location__groupbtn_select:hover {
color: #fff;
text-decoration: none;
}
.modal-location__content .default-nav-item:first-child {
padding-left: 30px;
}
.modal-location__content .tab-pane {
padding: 0 30px;
}
.modal-location__form {
display: flex;
align-items: center;
}
.modal-location__input {
background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSI<KEY>aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xNS4yOSAxNC41ODRsNS43MiA1LjcyLS<KEY>LTUuNzItNS43MmE3IDcgMCAxIDEgLjcwNy0uNzA3ek0xMCAxNmE2IDYgMCAxID<KEY>IDYgMCAwIDAgMCAxMnoiPjwvcGF0aD48L3N2Zz4=') no-repeat 8px 8px;
width: 40%;
border: 1px solid #ebebeb;
border-radius: 8px;
padding-left: 40px;
outline: none;
height: 40px;
}
.modal-location__submit {
margin-left: 15px;
height: 40px;
color: #fff;
background: #7092fe;
padding: 0 80px;
}
.modal-location__submit:hover {
color: #fff;
background: #7a99fe;
}
.modal-location__list {
margin-top: 16px;
}
.modal-location__list_descr {
font-size: 12px;
line-height: 16px;
color: #8f8f8f;
}
.modal-location__sities {
list-style-type: none;
padding: 0;
margin: 32px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.modal-location__city {
flex: 0 0 33.333334%;
}
.modal-location__city_link {
display: flex;
height: 38px;
color: #333;
font-weight: 400;
align-items: center;
padding: 0 15px;
}
.modal-location__city_link:hover {
color: #333;
text-decoration: none;
background: #f5f5f5;
}
.modal-location__city_link.__bold {
font-weight: 600;
}
.modal-location__city_link.__active {
color: #7092fe;
}
.modal-location__cancel {
display: block;
text-align: center;
color: #333;
font-size: 16px;
height: 40px;
line-height: 40px;
border: 1px solid #ebebeb;
border-radius: 8px;
margin: 0 -20px 10px;
font-weight: 400;
}
.modal-location__cancel:hover {
color: #333;
text-decoration: none;
} | 0.358016 | 0.05163 |
body{
margin:0;
color:#444;
/*background:#C0C0C0;*/
font:400 16px/18px Roboto, sans-serif;
}
nav {
display:inline-block;
position:relative;
margin:0;
padding:0;
text-align:center;
}
nav ul {
margin:0;
padding:0;
}
nav ul li {
display:inline-block;
list-style:none;
}
nav ul li a {
display:block;
margin: 0;
padding:15px 15px;
color:#999;
font-family:'roboto', sans-serif;
font-size: 15px;
letter-spacing: 1px;
font-family: Helvetica Neue,Comic Sans MS, sans-serif;
text-decoration:none;
border-bottom:2px solid transparent;
box-shadow:0px 2px 0px transparent;
transition:all .20s ease;
-webkit-transition:all .20s ease;
-moz-transition:all .20s ease;
-o-transition:all .20s ease;
}
nav ul li a:hover {
border-bottom: 2px solid #777;
color: #333;
}
*,:after,:before{box-sizing:border-box}
.pull-left{float:left}
.pull-right{float:right}
.clearfix:after,.clearfix:before{content:'';display:table}
.clearfix:after{clear:both;display:block}
.accordion-wrap{
top:5em;
left:0;
right:0;
bottom:0;
padding:15px;
position:fixed;
background:-webkit-linear-gradient(90deg, ,);
background:-moz-linear-gradient(90deg, , );
background:-ms-linear-gradient(90deg, , );
background:-o-linear-gradient(90deg, , );
background:linear-gradient(90deg, , );
}
.accordion{
width:100%;
margin:auto;
max-width:280px;
overflow:hidden;
border-radius:3px;
background:#B7AFA3;
box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24);
}
.accordion>a{
color:#374046;
padding:15px;
display:block;
text-decoration:none;
transition:all .3s ease-in-out 0s;
}
.accordion>a:not(:last-child){
border-bottom:1px solid rgba(0,0,0,.2);
}
.accordion>a:hover,
.accordion>a.active{
background:#E8D0A9;
}
.accordion>a.active{
color:#B77F24;
}
.accordion>a>.alert-numb,
.accordion>.sub-nav>a>.alert-numb{
color:#eee;
right:10px;
height:22px;
min-width:40px;
font-size:12px;
font-weight:600;
line-height:22px;
border-radius:15px;
text-align:center;
background:#665e51;
}
.accordion>a.active>.alert-numb,
.accordion>.sub-nav>a.active>.alert-numb{
background:#d0a051;
}
.accordion .sub-nav{
display:none;
color:#374046;
overflow:hidden;
background:#ecf0f1;
}
.accordion .sub-nav.open{
display:block;
}
.accordion .sub-nav a{
display:block;
color:inherit;
font-weight:300;
padding:10px 15px;
text-decoration:none;
transition:all .2s ease-in-out 0s;
}
.accordion .sub-nav a:not(:last-child){
border-bottom:1px solid rgba(0,0,0,.1);
}
.accordion .sub-nav a:hover{
background:#c2ced1;
box-shadow:5px 0 0 #8ca3a8 inset;
}
.accordion .html{
padding:15px;
}
.accordion .about-me{
text-align:center;
position:relative;
}
.accordion .about-me h4{
margin-bottom:0;
}
.accordion .about-me p{
font-size:14px;
font-weight:300;
margin-bottom:0;
}
.accordion .about-me .photo{
width:95px;
height:95px;
margin:auto;
overflow:hidden;
border-radius:50%;
position:relative;
border:4px solid #fff;
box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2);
/* background-image:url('../img/img9.jpg') no-repeat center;*/
}
.accordion .about-me .photo .photo-overlay{
top:0;
left:0;
right:0;
bottom:0;
opacity:0;
visibility:hidden;
position:absolute;
background:rgba(0,0,0,.4);
}
.accordion .about-me .photo .photo-overlay .plus{
top:50%;
left:50%;
width:30px;
height:30px;
color:#1a1a1b;
cursor:pointer;
font-size:24px;
font-weight:100;
margin-top:-15px;
margin-left:-15px;
position:absolute;
line-height:30px;
border-radius:50%;
text-align:center;
background:#e8d0a9;
transform:scale(0) rotate(0);
transition:all .1s ease-in-out 0s;
}
.accordion .about-me .photo:hover .photo-overlay{
opacity:1;
visibility:visible;
}
.accordion .about-me .photo:hover .photo-overlay .plus{
transform:scale(1) rotate(90deg);
}
.accordion .about-me .social-link{
top:0;
left:0;
right:0;
bottom:0;
opacity:0;
padding-top:48px;
visibility:hidden;
position:absolute;
background:rgba(0,0,0,.3);
transition:opacity .5s ease-in-out 0s;
}
.accordion .about-me .social-link.active{
opacity:1;
visibility:visible;
}
.accordion .about-me .social-link .link{
width:30px;
padding:0;
color:#eee;
height:30px;
margin:0 4px;
line-height:28px;
border-radius:50%;
display:inline-block;
transform:translateY(-80px) scale(0);
border:1px solid rgba(0,0,0,.2);
}
.accordion .about-me .social-link .link-twitter{
background:#55acce;
}
.accordion .about-me .social-link .link-codepen{
background:#1a1a1b;
}
.accordion .about-me .social-link .link-facebook{
background:#3b5998;
}
.accordion .about-me .social-link .link-dribbble{
background:#ea4c89;
}
.accordion .about-me .social-link .link:hover{
box-shadow:none;
}
.accordion .about-me .social-link.active .link{
transform:translateY(0) scale(1);
}
.accordion .about-me .social-link.active .link:nth-child(1){
transition-duration:.1s;
}
.accordion .about-me .social-link.active .link:nth-child(2){
transition-duration:.2s;
}
.accordion .about-me .social-link.active .link:nth-child(3){
transition-duration:.3s;
}
.accordion .about-me .social-link.active .link:nth-child(4){
transition-duration:.4s;
}
.accordion .about-me .social-link.active .link:nth-child(5){
transition-duration:5s;
}
.accordion .about-me.blur p,
.accordion .about-me.blur h4,
.accordion .about-me.blur .photo{
-webkit-filter:blur(2px);
filter:blur(2px);
}
.accordion .chat .user:not(:last-child){
margin-bottom:10px;
}
.accordion .chat .user .photo{
width:40px;
height:40px;
font-size:24px;
line-height:36px;
text-align:center;
position:relative;
border-radius:3px;
display:inline-block;
border:1px solid rgba(0,0,0,.2);
}
.accordion .chat .user .photo:before,
.accordion .chat .user .photo:after{
content:'';
opacity:0;
visibility:hidden;
position:absolute;
transition:opacity .4s ease-in-out 0s;
}
.accordion .chat .user .photo:before{
left:50%;
width:60px;
bottom:50px;
padding:4px;
font-size:12px;
line-height:14px;
margin-left:-30px;
text-align:center;
background:#333333;
border-radius:4px;
word-break:break-all;
content:attr(data-username);
}
.accordion .chat .user .photo:after{
left:50%;
bottom:35px;
margin-left:-8px;
border:8px solid transparent;
border-top:8px solid #333333;
}
.accordion .chat .user .photo:hover:before,
.accordion .chat .user .photo:hover:after{
opacity:1;
visibility:visible;
}
.accordion .chat .user.user-dribble .photo{
color:#fff;
margin-right:5px;
background:#f15e95;
}
.accordion .chat .user .text-msg{
max-width:70%;
font-size:13px;
padding:4px 8px;
background:#fff;
border-radius:4px;
display:inline-block;
border:1px solid #cdd6d8;
}
.accordion .chat .user.user-khadkamhn .text-msg{
background:#dce2e4;
}
.accordion .invite{
text-align:center;
}
.accordion .invite .dribbble{
display:block;
color:#c33269;
margin:10px 0;
font-size:24px;
font-family:Pacifico;
}
.accordion .invite .btn{
color:#eee;
font-weight:500;
background:#ccc;
padding:10px 15px;
border-radius:2px;
background:#f15e95;
display:inline-block;
text-transform:uppercase;
}
.accordion .invite .btn:hover{
box-shadow:none;
background:#cb386f;
} | app/views/profile.css | body{
margin:0;
color:#444;
/*background:#C0C0C0;*/
font:400 16px/18px Roboto, sans-serif;
}
nav {
display:inline-block;
position:relative;
margin:0;
padding:0;
text-align:center;
}
nav ul {
margin:0;
padding:0;
}
nav ul li {
display:inline-block;
list-style:none;
}
nav ul li a {
display:block;
margin: 0;
padding:15px 15px;
color:#999;
font-family:'roboto', sans-serif;
font-size: 15px;
letter-spacing: 1px;
font-family: Helvetica Neue,Comic Sans MS, sans-serif;
text-decoration:none;
border-bottom:2px solid transparent;
box-shadow:0px 2px 0px transparent;
transition:all .20s ease;
-webkit-transition:all .20s ease;
-moz-transition:all .20s ease;
-o-transition:all .20s ease;
}
nav ul li a:hover {
border-bottom: 2px solid #777;
color: #333;
}
*,:after,:before{box-sizing:border-box}
.pull-left{float:left}
.pull-right{float:right}
.clearfix:after,.clearfix:before{content:'';display:table}
.clearfix:after{clear:both;display:block}
.accordion-wrap{
top:5em;
left:0;
right:0;
bottom:0;
padding:15px;
position:fixed;
background:-webkit-linear-gradient(90deg, ,);
background:-moz-linear-gradient(90deg, , );
background:-ms-linear-gradient(90deg, , );
background:-o-linear-gradient(90deg, , );
background:linear-gradient(90deg, , );
}
.accordion{
width:100%;
margin:auto;
max-width:280px;
overflow:hidden;
border-radius:3px;
background:#B7AFA3;
box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24);
}
.accordion>a{
color:#374046;
padding:15px;
display:block;
text-decoration:none;
transition:all .3s ease-in-out 0s;
}
.accordion>a:not(:last-child){
border-bottom:1px solid rgba(0,0,0,.2);
}
.accordion>a:hover,
.accordion>a.active{
background:#E8D0A9;
}
.accordion>a.active{
color:#B77F24;
}
.accordion>a>.alert-numb,
.accordion>.sub-nav>a>.alert-numb{
color:#eee;
right:10px;
height:22px;
min-width:40px;
font-size:12px;
font-weight:600;
line-height:22px;
border-radius:15px;
text-align:center;
background:#665e51;
}
.accordion>a.active>.alert-numb,
.accordion>.sub-nav>a.active>.alert-numb{
background:#d0a051;
}
.accordion .sub-nav{
display:none;
color:#374046;
overflow:hidden;
background:#ecf0f1;
}
.accordion .sub-nav.open{
display:block;
}
.accordion .sub-nav a{
display:block;
color:inherit;
font-weight:300;
padding:10px 15px;
text-decoration:none;
transition:all .2s ease-in-out 0s;
}
.accordion .sub-nav a:not(:last-child){
border-bottom:1px solid rgba(0,0,0,.1);
}
.accordion .sub-nav a:hover{
background:#c2ced1;
box-shadow:5px 0 0 #8ca3a8 inset;
}
.accordion .html{
padding:15px;
}
.accordion .about-me{
text-align:center;
position:relative;
}
.accordion .about-me h4{
margin-bottom:0;
}
.accordion .about-me p{
font-size:14px;
font-weight:300;
margin-bottom:0;
}
.accordion .about-me .photo{
width:95px;
height:95px;
margin:auto;
overflow:hidden;
border-radius:50%;
position:relative;
border:4px solid #fff;
box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2);
/* background-image:url('../img/img9.jpg') no-repeat center;*/
}
.accordion .about-me .photo .photo-overlay{
top:0;
left:0;
right:0;
bottom:0;
opacity:0;
visibility:hidden;
position:absolute;
background:rgba(0,0,0,.4);
}
.accordion .about-me .photo .photo-overlay .plus{
top:50%;
left:50%;
width:30px;
height:30px;
color:#1a1a1b;
cursor:pointer;
font-size:24px;
font-weight:100;
margin-top:-15px;
margin-left:-15px;
position:absolute;
line-height:30px;
border-radius:50%;
text-align:center;
background:#e8d0a9;
transform:scale(0) rotate(0);
transition:all .1s ease-in-out 0s;
}
.accordion .about-me .photo:hover .photo-overlay{
opacity:1;
visibility:visible;
}
.accordion .about-me .photo:hover .photo-overlay .plus{
transform:scale(1) rotate(90deg);
}
.accordion .about-me .social-link{
top:0;
left:0;
right:0;
bottom:0;
opacity:0;
padding-top:48px;
visibility:hidden;
position:absolute;
background:rgba(0,0,0,.3);
transition:opacity .5s ease-in-out 0s;
}
.accordion .about-me .social-link.active{
opacity:1;
visibility:visible;
}
.accordion .about-me .social-link .link{
width:30px;
padding:0;
color:#eee;
height:30px;
margin:0 4px;
line-height:28px;
border-radius:50%;
display:inline-block;
transform:translateY(-80px) scale(0);
border:1px solid rgba(0,0,0,.2);
}
.accordion .about-me .social-link .link-twitter{
background:#55acce;
}
.accordion .about-me .social-link .link-codepen{
background:#1a1a1b;
}
.accordion .about-me .social-link .link-facebook{
background:#3b5998;
}
.accordion .about-me .social-link .link-dribbble{
background:#ea4c89;
}
.accordion .about-me .social-link .link:hover{
box-shadow:none;
}
.accordion .about-me .social-link.active .link{
transform:translateY(0) scale(1);
}
.accordion .about-me .social-link.active .link:nth-child(1){
transition-duration:.1s;
}
.accordion .about-me .social-link.active .link:nth-child(2){
transition-duration:.2s;
}
.accordion .about-me .social-link.active .link:nth-child(3){
transition-duration:.3s;
}
.accordion .about-me .social-link.active .link:nth-child(4){
transition-duration:.4s;
}
.accordion .about-me .social-link.active .link:nth-child(5){
transition-duration:5s;
}
.accordion .about-me.blur p,
.accordion .about-me.blur h4,
.accordion .about-me.blur .photo{
-webkit-filter:blur(2px);
filter:blur(2px);
}
.accordion .chat .user:not(:last-child){
margin-bottom:10px;
}
.accordion .chat .user .photo{
width:40px;
height:40px;
font-size:24px;
line-height:36px;
text-align:center;
position:relative;
border-radius:3px;
display:inline-block;
border:1px solid rgba(0,0,0,.2);
}
.accordion .chat .user .photo:before,
.accordion .chat .user .photo:after{
content:'';
opacity:0;
visibility:hidden;
position:absolute;
transition:opacity .4s ease-in-out 0s;
}
.accordion .chat .user .photo:before{
left:50%;
width:60px;
bottom:50px;
padding:4px;
font-size:12px;
line-height:14px;
margin-left:-30px;
text-align:center;
background:#333333;
border-radius:4px;
word-break:break-all;
content:attr(data-username);
}
.accordion .chat .user .photo:after{
left:50%;
bottom:35px;
margin-left:-8px;
border:8px solid transparent;
border-top:8px solid #333333;
}
.accordion .chat .user .photo:hover:before,
.accordion .chat .user .photo:hover:after{
opacity:1;
visibility:visible;
}
.accordion .chat .user.user-dribble .photo{
color:#fff;
margin-right:5px;
background:#f15e95;
}
.accordion .chat .user .text-msg{
max-width:70%;
font-size:13px;
padding:4px 8px;
background:#fff;
border-radius:4px;
display:inline-block;
border:1px solid #cdd6d8;
}
.accordion .chat .user.user-khadkamhn .text-msg{
background:#dce2e4;
}
.accordion .invite{
text-align:center;
}
.accordion .invite .dribbble{
display:block;
color:#c33269;
margin:10px 0;
font-size:24px;
font-family:Pacifico;
}
.accordion .invite .btn{
color:#eee;
font-weight:500;
background:#ccc;
padding:10px 15px;
border-radius:2px;
background:#f15e95;
display:inline-block;
text-transform:uppercase;
}
.accordion .invite .btn:hover{
box-shadow:none;
background:#cb386f;
} | 0.245266 | 0.043732 |
.titulo *{
-webkit-animation: fadeInUp 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadeInUp 1s; /* Firefox < 16 */
-ms-animation: fadeInUp 1s; /* Internet Explorer */
-o-animation: fadeInUp 1s; /* Opera < 12.1 */
animation: fadeInUp 1s;
}
@media (min-width: 1001px) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
#fondo {
background-size: cover;
display: block;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
flex: 1;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
height:100vh;
display:flex;
align-items: flex-end;
justify-content: center;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 3%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 2.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 20vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol input[type="text"],
#cajaArbol label,
#cajaArbol select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover,
.global_report:hover, .btn_pag:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#caja {
display: flex;
}
.btn_buscar {
position: relative;
text-align: left;
top: 6px;
cursor: pointer;
right: 30px;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 3vh;
}
#buscadorA input {
text-align: center;
width: 100px;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
}
#tablaArboles {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
margin: 0px;
font-size: 2.5vh;
border-collapse: unset;
min-width: 60vw !important;
min-height: 65vh !important;
max-height: 65vh !important;
border: none;
caption-side: top;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgray;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 0px;
z-index: 7;
border-radius: 0px 0px 20px 20px;
}
#paginacion {
margin-left: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 1000px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.tableForm {
width: 100%;
overflow: hidden;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
#fondo {
background-size: cover;
display: flex;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: center !important;
justify-content: center !important;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
height: 100vh;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
}
.tituloRA label {
font-size: 40px;
font-weight: bold;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 5%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 17px;
height: auto;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 80%;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol input[type="text"],
#cajaArbol label,
#cajaArbol select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.btn_buscar {
text-align: left;
cursor: pointer;
height: 40px;
width: 40px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 3vh;
}
#buscadorA input {
align-items: center;
justify-content: center;
text-align: center;
width: 60vw;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
margin-left: 0px !important;
}
#buscadorA label {
margin-left: 0px !important;
}
#tablaArboles {
padding: 5%;
padding-top: 3%;
background: white;
white-space: pre-line;
margin: 0px;
min-height: 65vh !important;
box-shadow: -1px -0px 25px lightgray;
font-size: 12px;
border-collapse: unset;
border: none;
caption-side: top;
flex: 1;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
padding: 2vh 0vh 2vh 0vh;
border-radius: 0px 0px 20px 20px;
min-width: 85vw;
}
#paginacion {
margin-left: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: 5px;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 360px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 10px;
border-radius: 0px 0px 20px 20px;
z-index: 7;
min-width: 86vw;
}
.btn_arboles {
margin-left: 10%;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 7vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
}
@media all and (max-width: 330px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 10px;
border-radius: 0px 0px 20px 20px;
z-index: 7;
min-width: 95vw;
}
.btn_arboles {
margin-left: 5px;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 7vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
}
@media all and (max-width: 1000px) and (orientation: landscape) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vw;
width: 8vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 4vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
.tableForm {
width: 100%;
overflow: hidden;
}
#fondo {
background-size: cover;
display: flex;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: center !important;
justify-content: center !important;
display: flex;
flex-direction: column;
color: white;
text-shadow: 0px 0px 5px yellowgreen;
height: 100vh;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
}
.tituloRA label {
font-size: 40px;
font-weight: bold;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 5%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 17px;
height: auto;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
width: 30%;
font-size: 15px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 80%;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol label {
margin-left: 8vw;
margin-right: 20px;
}
#cajaArbol input[type="text"],
#cajaArbol select {
margin-left: auto;
margin-right: auto;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 5.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.btn_buscar {
text-align: left;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 5vh;
}
#buscadorA input {
align-items: center;
justify-content: center;
text-align: center;
width: 60vw;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
margin-left: 0px !important;
}
#buscadorA label {
margin-left: 0px !important;
}
#tablaArboles {
padding: 5%;
flex: 1;
padding-top: 3%;
background: white;
white-space: pre-line;
min-width: 90% !important;
min-height: 65vh !important;
box-shadow: 0px 8px 20px grey;
font-size: 12px;
border-collapse: unset;
border: none;
caption-side: top;
margin: 0px;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vw;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
padding: 10px 0px 10px 50px;
border-radius: 0px 0px 10px 20px;
}
#paginacion {
margin-left: auto;
margin-right: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: 10%;
margin-right: 5px;
cursor: pointer;
height: 5vw;
width: 12vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 5.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vw;
width: 8vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 4vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
#subText {
font-size: 15px;
}
}
/*Registro รกrboles individuales*/
@media (min-width: 1001px) {
#fondoRAI {
background-size: cover;
display: block;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
flex: 1;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRAI {
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
height:100vh;
display:flex;
align-items: flex-end;
justify-content: center;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 2.5vh;
height: 100vh;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
}
#treeheadermascaraRAI {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 20vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover,
.btn_arbolesRAI:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#subText {
font-size: 25px;
}
#caja {
display: flex;
flex-direction: row;
}
.btn_buscarRAI {
position: relative;
text-align: left;
top: 6px;
cursor: pointer;
right: 30px;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 2.5vh;
margin-left: 20px;
border-collapse: unset;
min-height: 65vh !important;
max-height: 65vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgray;
background: white;
padding: 10px 0px 10px 0px;
border-radius: 0px 0px 20px 20px;
}
.action {
padding-right: 1%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
/*css movil*/
@media all and (max-width: 1000px) and (orientation: portrait) {
#fondoRAI {
background-size: cover;
display: flex;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
padding: 5%;
}
.tituloRAI {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
}
.tituloRAI label {
font-size: 40px;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
font-size: 2.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
}
#treeheadermascaraRAI {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
width: 90vw;
display: flex;
flex-direction: column;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 80vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#subText {
font-size: 15px;
font-weight: none !important;
}
#caja {
display: flex;
flex-direction: column;
align-content: center;
}
.btn_buscarRAI {
text-align: center;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
width: 60vw;
background-color: white;
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 15px;
border-collapse: unset;
min-height: 45vh !important;
max-height: 40vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 20px;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
word-break: break-word;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10vh 0vh 10vh 0vh;
border-radius: 0px 0px 20px 20px;
z-index: 7;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
margin-right: auto;
cursor: pointer;
height: 5vh;
width: 15vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 3vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vw;
border: none;
padding-left: 1vh;
border-radius: 5px;
background: #6000a3;
color: white;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 1000px) and (orientation: landscape) {
#fondoRAI {
background-size: cover;
display: flex;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRAI {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
}
.tituloRAI label {
font-size: 40px;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
font-size: 4.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
width: 100%;
}
#treeheadermascaraRAI {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 80vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vw;
width: 20vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 4.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#caja {
display: flex;
flex-direction: column;
align-content: center;
}
.btn_buscarRAI {
text-align: center;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
width: 60vw;
background-color: white;
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 15px;
border-collapse: unset;
min-height: 45vh !important;
max-height: 40vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 20px;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
word-break: break-word;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
position: relative;
bottom: 5px;
box-shadow: 0px 6px 20px lightgray;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 0px;
z-index: 7;
width: 92vw;
border-radius: 0px 0px 20px 20px;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
cursor: pointer;
height: 5vw;
width: 15vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 6vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
background: #6000a3;
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vw;
width: 8vw;
font-size: 4vh;
border: none;
border-radius: 5px;
color: white;
text-decoration: none;
outline-style: none;
border-style: none !important;
text-align: center;
padding: 4px 22px 5px 22px;
font-family: "Quicksand";
font-weight: 900;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
.global_report:hover {
color: white;
}
.btn_pag:hover {
color: white;
} | public/css/registroArboles.css | .titulo *{
-webkit-animation: fadeInUp 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadeInUp 1s; /* Firefox < 16 */
-ms-animation: fadeInUp 1s; /* Internet Explorer */
-o-animation: fadeInUp 1s; /* Opera < 12.1 */
animation: fadeInUp 1s;
}
@media (min-width: 1001px) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
#fondo {
background-size: cover;
display: block;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
flex: 1;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
height:100vh;
display:flex;
align-items: flex-end;
justify-content: center;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 3%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 2.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 20vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol input[type="text"],
#cajaArbol label,
#cajaArbol select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover,
.global_report:hover, .btn_pag:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#caja {
display: flex;
}
.btn_buscar {
position: relative;
text-align: left;
top: 6px;
cursor: pointer;
right: 30px;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 3vh;
}
#buscadorA input {
text-align: center;
width: 100px;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
}
#tablaArboles {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
margin: 0px;
font-size: 2.5vh;
border-collapse: unset;
min-width: 60vw !important;
min-height: 65vh !important;
max-height: 65vh !important;
border: none;
caption-side: top;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgray;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 0px;
z-index: 7;
border-radius: 0px 0px 20px 20px;
}
#paginacion {
margin-left: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 1000px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.tableForm {
width: 100%;
overflow: hidden;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
#fondo {
background-size: cover;
display: flex;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: center !important;
justify-content: center !important;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
height: 100vh;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
}
.tituloRA label {
font-size: 40px;
font-weight: bold;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 5%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 17px;
height: auto;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 80%;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol input[type="text"],
#cajaArbol label,
#cajaArbol select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.btn_buscar {
text-align: left;
cursor: pointer;
height: 40px;
width: 40px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 3vh;
}
#buscadorA input {
align-items: center;
justify-content: center;
text-align: center;
width: 60vw;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
margin-left: 0px !important;
}
#buscadorA label {
margin-left: 0px !important;
}
#tablaArboles {
padding: 5%;
padding-top: 3%;
background: white;
white-space: pre-line;
margin: 0px;
min-height: 65vh !important;
box-shadow: -1px -0px 25px lightgray;
font-size: 12px;
border-collapse: unset;
border: none;
caption-side: top;
flex: 1;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
padding: 2vh 0vh 2vh 0vh;
border-radius: 0px 0px 20px 20px;
min-width: 85vw;
}
#paginacion {
margin-left: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: 5px;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 360px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 10px;
border-radius: 0px 0px 20px 20px;
z-index: 7;
min-width: 86vw;
}
.btn_arboles {
margin-left: 10%;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 7vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
}
@media all and (max-width: 330px) and (orientation: portrait) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 10px;
border-radius: 0px 0px 20px 20px;
z-index: 7;
min-width: 95vw;
}
.btn_arboles {
margin-left: 5px;
margin-right: 5px;
cursor: pointer;
height: 5vh;
width: 8vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vh;
width: 7vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
}
@media all and (max-width: 1000px) and (orientation: landscape) {
.global_report {
margin-left: 5%;
cursor: pointer;
height: 5vw;
width: 8vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 4vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
.beforeTable {
display: flex;
overflow-x: auto;
scrollbar-width: auto;
}
.tableForm {
width: 100%;
overflow: hidden;
}
#fondo {
background-size: cover;
display: flex;
background-image: url("/img/b1.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: center !important;
justify-content: center !important;
display: flex;
flex-direction: column;
color: white;
text-shadow: 0px 0px 5px yellowgreen;
height: 100vh;
padding: 5%;
}
.tituloRA {
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.9164040616246498) 0%,
rgba(0, 138, 2, 0.7539390756302521) 100%
);
}
.tituloRA label {
font-size: 40px;
font-weight: bold;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbol {
padding-bottom: 5%;
margin-top: 5%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #008a00;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 17px;
height: auto;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbol button {
text-align: center;
margin: auto;
margin-top: 20px;
width: 30%;
font-size: 15px;
}
#treeheader {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
flex: 1;
}
#treeheadermascara {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
flex: 1;
background: linear-gradient(
180deg,
rgba(0, 138, 0, 0.7707457983193278) 25%,
rgba(89, 179, 89, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbol input[type="text"],
#cajaArbol select {
width: 80%;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbol label {
margin-left: 8vw;
margin-right: 20px;
}
#cajaArbol input[type="text"],
#cajaArbol select {
margin-left: auto;
margin-right: auto;
}
#cajaArbol select > * {
background-color: white;
color: green;
}
.btn_registrar {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 5.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: transparent;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.btn_buscar {
text-align: left;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscar:hover {
color: #008a00;
}
#buscadorA {
margin-bottom: 4%;
font-size: 5vh;
}
#buscadorA input {
align-items: center;
justify-content: center;
text-align: center;
width: 60vw;
height: 34px;
border: none;
border-bottom: 1px gray solid;
outline: none;
margin-left: 0px !important;
}
#buscadorA label {
margin-left: 0px !important;
}
#tablaArboles {
padding: 5%;
flex: 1;
padding-top: 3%;
background: white;
white-space: pre-line;
min-width: 90% !important;
min-height: 65vh !important;
box-shadow: 0px 8px 20px grey;
font-size: 12px;
border-collapse: unset;
border: none;
caption-side: top;
margin: 0px;
}
#tablaArboles caption {
background: #008a00;
color: white;
text-align: center;
font-size: 3vw;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArboles > thead > tr > th {
color: #008a00;
}
#tablaArboles tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArboles {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
padding: 10px 0px 10px 50px;
border-radius: 0px 0px 10px 20px;
}
#paginacion {
margin-left: auto;
margin-right: auto;
align-items: center;
justify-content: flex-end;
display: flex;
word-spacing: 20px;
flex-direction: row;
}
.delete {
color: red;
}
.delete,
.edit,
.report {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arboles {
margin-left: 10%;
margin-right: 5px;
cursor: pointer;
height: 5vw;
width: 12vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
font-size: 5.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pag {
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vw;
width: 8vw;
border: none;
border-radius: 5px;
background: #008a00;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 4vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
#subText {
font-size: 15px;
}
}
/*Registro รกrboles individuales*/
@media (min-width: 1001px) {
#fondoRAI {
background-size: cover;
display: block;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
flex: 1;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRAI {
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
height:100vh;
display:flex;
align-items: flex-end;
justify-content: center;
}
#titulo label {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: 0.15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation: typing 5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
flex: 0;
font-size: 2.5vh;
height: 100vh;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
}
#treeheadermascaraRAI {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 20vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover,
.btn_arbolesRAI:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#subText {
font-size: 25px;
}
#caja {
display: flex;
flex-direction: row;
}
.btn_buscarRAI {
position: relative;
text-align: left;
top: 6px;
cursor: pointer;
right: 30px;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
border-radius: 0px 10px 10px 0px;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 2.5vh;
margin-left: 20px;
border-collapse: unset;
min-height: 65vh !important;
max-height: 65vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 3vh;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgray;
background: white;
padding: 10px 0px 10px 0px;
border-radius: 0px 0px 20px 20px;
}
.action {
padding-right: 1%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 3.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
padding: 4px 22px 5px 22px;
font-size: 2vh;
font-family: "Quicksand";
font-weight: 900;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
/*css movil*/
@media all and (max-width: 1000px) and (orientation: portrait) {
#fondoRAI {
background-size: cover;
display: flex;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
padding: 5%;
}
.tituloRAI {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
}
.tituloRAI label {
font-size: 40px;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
font-size: 2.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
}
#treeheadermascaraRAI {
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
width: 90vw;
display: flex;
flex-direction: column;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 80vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vh;
width: 20vh;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 2.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
#RegArbol {
text-align: center;
font-weight: bold;
font-size: 3.5vh;
color: white;
text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#subText {
font-size: 15px;
font-weight: none !important;
}
#caja {
display: flex;
flex-direction: column;
align-content: center;
}
.btn_buscarRAI {
text-align: center;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
width: 60vw;
background-color: white;
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 15px;
border-collapse: unset;
min-height: 45vh !important;
max-height: 40vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 20px;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
word-break: break-word;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
box-shadow: 0px 6px 20px lightgrey;
background: white;
letter-spacing: 60px;
padding: 10vh 0vh 10vh 0vh;
border-radius: 0px 0px 20px 20px;
z-index: 7;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
margin-right: auto;
cursor: pointer;
height: 5vh;
width: 15vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 3vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
margin-left: 10%;
margin-right: 20%;
cursor: pointer;
height: 5vh;
width: 10vw;
border: none;
padding-left: 1vh;
border-radius: 5px;
background: #6000a3;
color: white;
text-decoration: none;
outline-style: none;
border-style: none !important;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
@media all and (max-width: 1000px) and (orientation: landscape) {
#fondoRAI {
background-size: cover;
display: flex;
background-image: url("/img/b2.jpg");
background-repeat: no-repeat;
font-family: "Quicksand", sans-serif;
flex-direction: column;
text-align: center;
height: 100vh;
}
.titulo,
#textovs {
align-items: flex-end;
display: flex;
flex-direction: column;
color: white;
font-size: 5vw;
text-shadow: 0px 0px 5px yellowgreen;
flex: 1;
padding: 5%;
}
.tituloRAI {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: rgb(0, 0, 0);
background: linear-gradient(
90deg,
rgba(0, 0, 0, 1) 0%,
rgba(96, 0, 163, 0.5466561624649859) 100%
);
}
.tituloRAI label {
font-size: 40px;
}
#titulo > a {
color: white;
font-size: 2vw;
}
#cajaArbolRAI {
padding-bottom: 2%;
margin-top: 9%;
font-weight: bold;
border-radius: 10px;
display: flex;
align-items: flex-start;
justify-content: center;
text-align: left;
flex-direction: column;
color: #6000a3;
box-shadow: 0px 8px 20px gray;
font-size: 4.5vh;
height: auto;
}
.overflow-hidden {
max-width: 5vw;
overflow: hidden;
}
#cajaArbolRAI button {
text-align: center;
margin: auto;
margin-top: 20px;
}
#treeheaderRAI {
display: flex;
text-align: center;
background-image: url("/img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
border-radius: 10px 10px 0px 0px;
width: 100%;
}
#treeheadermascaraRAI {
display: flex;
flex-direction: column;
padding: 20px;
padding-top: 50px;
text-align: center;
padding-bottom: 20px;
border-radius: 10px 10px 0px 0px;
background: linear-gradient(
180deg,
rgba(96, 0, 163, 0.7707457983193278) 25%,
rgba(96, 0, 163, 0.7147233893557423) 54%,
rgba(255, 255, 255, 1) 100%
);
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI select {
width: 80vw;
padding-left: 3px;
outline: none;
border: none;
border-bottom: 1px gray solid;
background: rgba(255, 255, 255, 0.7);
margin-bottom: 2%;
}
#cajaArbolRAI input[type="text"],
#cajaArbolRAI label,
#cajaArbolRAI select {
margin-left: 20px;
margin-right: 20px;
}
#cajaArbolRAI select > * {
background-color: white;
color: green;
}
.btn_registrarRAI {
margin-left: auto;
cursor: pointer;
height: 5vw;
width: 20vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 4.5vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_registrar:hover,
.btn_arboles:hover {
transition: 0.2s;
transform: translateY(-3px);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.TextReg {
text-align: center;
margin: auto;
margin-top: 3%;
margin-bottom: 3%;
font-size: 6vh;
font-weight: bold;
}
.blanco {
color: white;
}
#caja {
display: flex;
flex-direction: column;
align-content: center;
}
.btn_buscarRAI {
text-align: center;
cursor: pointer;
height: 40px;
width: 70px;
border: none;
background: white;
color: black;
font-size: 20px;
font-family: "Quicksand";
outline: none;
}
.btn_buscarRAI:hover {
color: #6000a3;
}
.centrar {
align-items: center;
justify-content: center;
}
#buscadorA select {
width: 60vw;
background-color: white;
border: none;
outline: none;
border-bottom: 1px solid gray;
}
#tablaArbolesRAI {
padding: 5%;
padding-top: 3%;
background: white;
white-space: nowrap;
flex: 1;
box-shadow: -1px -0px 25px lightgray;
font-size: 15px;
border-collapse: unset;
min-height: 45vh !important;
max-height: 40vh !important;
border: none;
caption-side: top;
margin: 0;
}
#tablaArbolesRAI caption {
background: #6000a3;
color: white;
text-align: center;
font-size: 20px;
font-weight: bold;
border-radius: 20px 20px 0% 0%;
}
#tablaArbolesRAI > thead > tr > th {
color: #6000a3;
}
#tablaArbolesRAI tbody tr > .fila {
color: black;
font-weight: bold;
cursor: pointer;
text-align: center;
padding-right: 1%;
word-break: break-word;
}
#botonesEdicionArbolesRAI {
display: flex;
flex-direction: row;
position: relative;
bottom: 5px;
box-shadow: 0px 6px 20px lightgray;
background: white;
letter-spacing: 60px;
padding: 10px 0px 10px 0px;
z-index: 7;
width: 92vw;
border-radius: 0px 0px 20px 20px;
}
.delete {
color: red;
}
.delete,
.edit {
padding: 6px;
border-radius: 15px;
cursor: pointer;
}
.edit {
color: blue;
}
.btn_arbolesRAI {
margin-left: auto;
cursor: pointer;
height: 5vw;
width: 15vw;
border: none;
border-radius: 5px;
background: #6000a3;
color: white;
text-align: center;
font-size: 6vh;
font-family: "Quicksand";
font-weight: 900;
outline-style: none;
border-style: none !important;
}
.btn_pagRAI {
background: #6000a3;
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
height: 5vw;
width: 8vw;
font-size: 4vh;
border: none;
border-radius: 5px;
color: white;
text-decoration: none;
outline-style: none;
border-style: none !important;
text-align: center;
padding: 4px 22px 5px 22px;
font-family: "Quicksand";
font-weight: 900;
}
#pictureTree {
display: none;
}
#lblpictree {
display: flex;
justify-content: space-between;
align-items: center;
}
#lblpictree > i {
margin-top: 1%;
cursor: pointer;
font-size: 1.6rem;
}
}
.global_report:hover {
color: white;
}
.btn_pag:hover {
color: white;
} | 0.556882 | 0.079854 |
FREEFORMATTER.COM
HTTPS
Contact
Formatters
JSON Formatter
HTML Formatter
XML Formatter
SQL Formatter
Batch Formatter (new!)
Validators
JSON Validator
HTML Validator
XML Validator - XSD
XPath Tester
Credit Card Number Generator & Validator
Regular Expression Tester
Java Regular Expression Tester
Cron Expression Generator - Quartz
Encoders & Decoders
Url Encoder & Decoder
Base 64 Encoder & Decoder
QR Code Generator
Code Minifiers / Beautifier
JavaScript Beautifier
CSS Beautifier
JavaScript Minifier
CSS Minifier
Converters
XSD Generator
XSLT (XSL Transformer)
XML to JSON Converter
JSON to XML Converter
CSV to XML Converter
CSV to JSON Converter
Epoch Timestamp To Date
Cryptography & Security
Message Digester (MD5, SHA-256, SHA-512)
HMAC Generator
MD5 Generator
SHA-256 Generator
SHA-512 Generator
String Escaper & Utilities
String Utilities
HTML Escape
XML Escape
Java and .Net Escape
JavaScript Escape
JSON Escape
CSV Escape
SQL Escape
Web Resources
Lorem Ipsum Generator
LESS Compiler
List of MIME types
HTML Entities
Url Parser / Query String Splitter
i18n - Formatting standards & code snippets
ISO country list - HTML select snippet
USA state list - HTML select snippet
Canada province list - HTML select snippet
Mexico state list - HTML select snippet
Time zone list - HTML select snippet
CSS Beautifier
Formats a CSS files with the chosen indentation level for optimal readability. Supports 4 indentation levels: 2 spaces, 3 spaces, 4 spaces and tabs.
*The maximum size limit for file upload is 2 megabytes. All files bigger than 500k will be formatted to a new window for performance reason and to prevent your browser from being unresponsive.
Option 1: Copy-paste your CSS string here
/* INDEX TOP HEADER */
.mdl-layout {
background-color: #faf7f7;
}
.mdl-layout-coment {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-layout__container {
position: static;
height: auto;
}
.demo-container.mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.mdl-blog-main, .mdl-blog-list {
overflow-y: unset;
}
.mdl-top {
padding: 0 40px 0 40px;
margin-bottom: 25.1px;
margin-top: 28.4px;
height: 72.5px;
}
.mdl-top__wrapper {
position: relative;
margin: 0 auto;
width: 1001px;
height: 72px;
}
#mdl_lang {
display: none;
}
.select {
position: absolute;
right: 19px;
top: 5px;
border: none !important;
outline: none !important;
background: transparent !important;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 500;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.1px;
text-align: left;
color: #000000;
cursor: pointer;
display: inline-block;
width: 75px;
height: 40px;
text-transform: uppercase;
}
.mdl-top.single .select {
right: 8px;
}
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px;
}
.select-styled {
border-radius: 50%;
position: absolute;
z-index: 1000;
background-color: white;
background-image: url(../images/round_lang.svg);
background-size: 100%;
background-position: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding-top: 19px;
width: 58px;
text-align: center;
height: 39px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.select-styled:after {
content: "";
width: 9px;
height: 9px;
background-image: url(../images/triangle.svg);
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 40px;
right: 25px;
}
.select-options {
display: none;
position: absolute;
top: 12px;
width: 59px;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #783387;
color: white;
border-radius: 29.5px;
padding-bottom: 25px;
}
.select-options li {
text-align: center;
margin: 0;
padding: 2px 0 0 0;
-moz-transition: all 0.15s ease-in;
-o-transition: all 0.15s ease-in;
-webkit-transition: all 0.15s ease-in;
transition: all 0.15s ease-in;
}
.select-options li > a {
color: white;
text-decoration: none;
display: block;
width: 100%;
}
.select-options li:first-child {
padding-top: 52px;
}
/*.select-options li:last-child{
padding-bottom: 25px;
}*/
.select-options li > a:hover {
color: #783387;
background: #fff;
}
.select-options li[rel="hide"] {
display: none;
}
#mdl_lang option {
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
border: none !important;
outline: none !important;
background: transparent !important;
}
.mdl-top__teleg {
position: absolute;
left: 30px;
top: 5px;
}
.mdl-top__teleg-item {
width: 58px;
}
.mdl_logo-link {
left: 50%;
margin-left: -125px;
position: absolute;
}
.mdl_logo {
display: block;
width: 250px;
height: 60px;
margin: 0 auto;
}
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper {
width: 1001px;
background-color: white;
margin: 0 auto;
}
.mdl-picture__post.top .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: unset;
bottom: 30px;
width: 75%;
height: 88px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 264px;
bottom: 20px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
}
.mdl-picture__post.top {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post-image {
position: relative;
width: 745px;
height: 305px;
object-fit: cover;
}
.mdl-picture__post.top .mdl-picture__post-image-wrapper {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask3.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.mdl-picture__posts {
width: 745px;
margin: 0 auto;
}
.mdl-picture__post {
position: relative;
width: 253px;
height: 229px;
margin-top: 14px;
margin-right: 12px;
display: inline-block;
}
.mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
bottom: 10px;
left: 12px;
width: 135.5px;
height: 22px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 105px;
left: 12px;
width: 186.8px;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.mdl-picture__post:last-child {
margin-right: 0;
}
.mdl-picture__post-image-wrapper {
position: relative;
width: 253px;
height: 229px;
}
.mdl-picture__post-image {
position: relative;
width: 253px;
height: 229px;
object-fit: cover;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 100%;
}
.mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
/* INDEX MAIN CONTENT */
.mdl-text__posts-wrapper {
padding-top: 15px;
padding-bottom: 100px;
}
.mdl-text__posts {
width: 745px;
margin: 0 auto 0;
}
.mdl-text__post {
height: 216px;
margin-top: 13.1px;
}
.mdl-text__post a {
text-decoration: none;
}
.mdl-text__post-i-wrapper {
overflow: hidden;
vertical-align: top;
width: 374.6px;
height: 215.9px;
display: inline-block;
margin-right: 14px;
}
.mdl-text__post-image {
width: 374.6px;
height: 215.9px;
object-fit: cover;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.mdl-text__post-t-wrapper {
position: relative;
vertical-align: top;
width: 348px;
height: 216px;
display: inline-block;
}
.mdl-text__post-title {
position: relative;
z-index: 1;
margin: 0 0 0 0;
width: 281px;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #4a4a4a;
}
.mdl-text__post-title-wrapper {
position: relative;
width: 281px;
}
.mdl-text__post-date {
margin: 3px 0 0 0;
height: 19px;
opacity: 0.47;
position: relative;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #000000;
}
.mdl-text__post-date:hover.mdl-text__post-date:after {
width: 100%;
}
.mdl-text__post-date:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 8px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-text__post-text {
margin: 17px 0 0 0;
width: 344px;
height: 108px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 21px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-text__post-read-more {
display: block;
position: absolute;
bottom: 0;
margin: 11px 0 0 0;
width: 171px;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #cc2a76;
}
/* SINGLE POST PAGE */
.mdl-picture__post.top-post {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
position: relative;
width: 791px;
height: 380px;
object-fit: cover;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__posts.top-posts {
width: 791px;
}
.mdl-single-posts__wrapper {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-single-posts {
width: 791px;
margin: 0 auto;
}
.mdl-single-posts video {
display: block;
margin: 0 auto;
}
.mdl-single-posts img {
width: 100%;
}
.mdl-single-posts blockquote:after, .mdl-single-posts blockquote:before {
display: none;
}
.mdl-single-posts a {
color: #662f8f;
text-decoration: none;
}
.mdl-single-posts h2:first-child {
margin-top: 0;
}
.mdl-single-posts h2 {
margin-top: 30px;
margin-bottom: 0;
font-family: "Open Sans", sans-serif;
font-size: 20px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-single-posts p {
margin-top: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 22px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 260px;
width: 75%;
height: 70px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 342px;
bottom: 1px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'OpenSans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
text-align: left;
}
.next_wrapper {
position: relative;
width: 96px;
float: right;
}
.prv_wrapper {
position: relative;
width: 132px;
}
.next_wrapper:hover.next_wrapper:after, .prv_wrapper:hover.prv_wrapper:after {
width: 100%;
}
.next_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 53px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.prv_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 13px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-random_post {
display: block;
margin-top: 40px;
width: 100%;
height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: right;
color: #000000 !important;
text-decoration: none;
}
.mdl-picture__posts.top-post {
width: 791px;
}
.mdl-picture__posts.top-post .mdl-picture__post {
margin-top: 17px;
vertical-align: top;
}
.mdl-picture__posts.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
top: unset;
bottom: 10px;
left: 14px;
width: 96%;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__posts.top-posts .mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 125px;
left: 14px;
width: 90%;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.view-all-posts {
margin-top: 14px;
display: block;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000 !important;
text-decoration: none;
}
/* Footer */
@font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal; }
footer {
padding: 35px 20px;
border-top: 5px solid #662f8f;
text-align: center;
background-color: #150526; }
@media (max-width: 768px) {
footer {
width: 100%;
margin: 0;
padding: 35px 0; } }
footer ul {
padding: 0;
list-style: none; }
footer li {
display: inline-block;
margin: 20px; }
footer .f-t {
margin-top: 10px;
text-align: left; }
@media (max-width: 768px) {
footer .f-t {
text-align: center; } }
footer .f-t a {
font-family: "Gilroy-ExtraBold";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer; }
footer .f-g {
margin-top: 10px;
position: relative;
left: 15px;
font-family: "Gilroy-Light";
font-size: 16px;
color: white;
text-decoration: none;
outline: none; }
@media (max-width: 768px) {
footer .f-g {
left: 0; } }
footer h2 {
margin-top: 50px;
margin-bottom: 0;
width: 100%; }
footer h2 a {
font-family: "Gilroy-Light";
font-size: 45px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer; }
footer a:hover, footer a:focus, footer a:active {
color: white;
text-decoration: none; }
footer h2 a span {
position: relative;
left: 10px;
font-size: 35px;
font-family: "Gilroy-Light"; }
footer object {
width: 40px;
height: 40px; }
.link-f--wrapper {
width: 100%; }
.link-f {
margin-top: 5px;
padding-top: 15px;
width: 163px;
height: 49px;
-webkit-border-radius: 24.5px;
border-radius: 24.5px;
text-align: center;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 700;
color: white;
background: #c72897;
display: inline-block;
cursor: pointer;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s; }
footer ul {
width: 100%; }
footer .community-link {
margin-top: 20px;
width: 40px;
position: relative; }
footer .community-link:hover img.one {
opacity: 0.5; }
footer .community-link:hover img.two {
opacity: 0; }
footer .community-link img {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out; }
footer .community-link img.one {
opacity: 1; }
footer .community-link img.two {
opacity: 0; }
footer .media-banner {
margin-top: 35px;
margin-bottom: 15px;
width: 100%;
text-align: center; }
footer .media-banner img {
width: 270px; }
footer li:nth-child(2) img.community-link {
width: 48px; }
/* FOOTER SUBSCRIBE */
#subscribe {
overflow: hidden;
position: relative;
height: 200px;
}
#subscribe .s-el {
position: absolute; }
#subscribe .s-el:nth-child(1) {
right: 90px;
bottom: 50px; }
#subscribe .s-el:nth-child(2) {
right: 74px;
top: -100px; }
#subscribe .s-el:nth-child(3) {
left: 94px;
bottom: -100px; }
#subscribe #sib_embed_signup {
position: absolute;
left: 50%;
margin-left: -285px;
width: 570px;
opacity: 1; }
#subscribe #sib_embed_signup .subscribe-label {
text-align: center;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 22px;
margin-bottom: 50px; }
#subscribe #sib_embed_signup .message_area {
position: absolute !important;
bottom: -40px;
background-color: transparent !important;
border: none !important;
font-family: "Open Sans", sans-serif !important;
font-weight: 400 !important;
font-size: 14px !important;
width: 100% !important;
text-align: center !important; }
#subscribe #sib_embed_signup .message_area .close {
display: none !important; }
#subscribe #sib_embed_signup .mandatory-email {
position: relative;
left: 20px;
width: 100%; }
#subscribe #sib_embed_signup #email {
position: relative;
left: 0;
top: 0;
padding-left: 31px;
display: block;
margin: 0 auto;
width: 380px;
height: 42px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: solid 1px #c72897;
outline: none;
-webkit-appearence: none;
font-size: 14px;
color: white;
font-family: "Open Sans", sans-serif;
background-color: transparent; }
#subscribe #sib_embed_signup .button {
position: absolute;
top: 0;
right: 60px;
height: 46px;
width: 130px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: none;
outline: none;
-webkit-appearence: none;
background-color: #c72897;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
color: white; }
@media (max-width: 768px) {
#subscribe #sib_embed_signup {
width: 300px;
}
}
/* MAIN BLOG PAGE RESPONSIVE */
@media (max-width: 1200px) {
.mdl-top__wrapper {
width: 100%;
}
}
@media (max-width: 991px) {
.mdl-top__teleg {
left: 0;
}
.select {
right: 0;
}
}
@media (max-width: 768px) {
.mdl-single-posts video {
width: 100%;
}
.mdl-layout__container {
margin-top: 70px;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mdl-text__post-title-wrapper:hover.mdl-text__post-title-wrapper:after {
width: 0;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-top {
position: fixed;
z-index: 10001;
background-color: white;
width: 100%;
left: 0;
top: 0;
padding: 14px 0px 12px 0px;
margin-bottom: 21px;
margin-top: 0;
height: auto;
-o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.mdl_logo {
width: 150px;
height: 29px;
}
.mdl_logo-link {
left: 50%;
margin-left: -75px;
}
.mdl-blog-main .demo-container.mdl-grid, .mdl-blog-main .mdl-cell, .mdl-text__posts-wrapper {
padding: 0;
margin: 0;
width: 100%;
}
.mdl-picture__posts {
width: 100%;
}
.mdl-picture__post.top, .mdl-picture__post.top .mdl-picture__post-image-wrapper, .mdl-picture__post.top .mdl-picture__post-image, .mdl-picture__post,
.mdl-picture__post-image-wrapper, .mdl-picture__post-image {
width: 100%;
height: 175px;
}
.mdl-picture__post {
margin-top: 3px;
margin-right: 0;
}
.mdl-picture__post.top .mdl-picture__post-title, .mdl-picture__post .mdl-picture__post-title {
font-size: 22px;
line-height: 1.25;
left: 5px;
top: 73px;
width: 95%;
height: auto;
}
.mdl-picture__post.tp_three .mdl-picture__post-title, .mdl-picture__post.tp_two .mdl-picture__post-title, .mdl-picture__post.tp_one .mdl-picture__post-title {
top: 114px;
}
.mdl-picture__post.top .mdl-picture__post-date, .mdl-picture__post .mdl-picture__post-date {
font-size: 14px;
left: 5px;
bottom: 13px;
top: 150px;
width: 95%;
}
.mdl-text__post-text, .mdl-text__post-read-more, .mdl-text__post-i-wrapper {
display: none;
}
.mdl-text__posts, .mdl-text__post-t-wrapper {
width: 100%;
height: auto;
}
.mdl-text__posts {
padding-left: 11px;
}
.mdl-text__post {
height: auto;
margin-top: 17px;
padding-bottom: 19px;
border-bottom: solid 1px rgba(0, 0, 0, 0.09);
}
.mdl-text__post-title {
margin-top: 0;
font-size: 14px;
}
.mdl-text__post-date {
margin: 6px 0 0 0;
font-size: 10px;
height: auto;
}
.mdl-top__teleg-item {
width: 29px;
}
.mdl-top__wrapper {
height: 29px;
}
.mdl-top__teleg {
top: 0;
left: 10px;
}
.select {
right: 10px;
top: 0;
width: 29px;
height: 29px;
font-size: 13px;
}
.select:before {
display: none;
}
.select-styled {
width: 27px;
padding: 6px 0 0 0;
height: 21px;
}
.select-styled:after {
display: none;
}
.select-options {
width: 29px;
top: 5px;
}
.select-options li:first-child {
padding-top: 35px;
}
.select-options li {
font-size: 12px;
}
}
/* SINGLE POST RESPONISVE */
@media (max-width: 1200px) {
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-single-posts__wrapper {
width: 980px;
}
}
@media (max-width: 991px) {
.mdl-layout {
background-color: white;
}
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-picture__posts.top-posts, .mdl-picture__post.top-post {
width: 740px;
}
.mdl-single-posts__wrapper {
width: 100%;
}
.mdl-single-posts {
width: 740px;
}
.mdl-picture__post.top-post, .mdl-picture__posts.top-post {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 740px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 229px;
height: 216px;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
top: 114px;
font-size: 16px;
width: 94%;
}
/* .mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
width: 96%;
top: 138px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 100%;
height: 216px;
}*/
.mdl-picture__post-image-wrapper
.mdl-picture__post {
margin-right: 10px;
}
.mdl-single-posts img {
height: 100%;
}
.view-all-posts {
margin-right: 0;
}
}
@media (max-width: 768px) {
.mdl-picture__post.top-post .mdl-picture__post-title {
font-size: 22px;
top: 265px;
}
.mdl-single-posts {
width: 95%;
}
.mdl-picture__post.top-post .mdl-picture__post-image, .mdl-picture__post.top-post, .mdl-picture__posts.top-post,
.mdl-single-posts, .mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-picture__posts.top-posts, .mdl-picture__post.top-post {
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 100%;
}
.mdl-picture__posts.top-post .mdl-picture__post {
display: block;
margin: 17px auto 0;
}
.mdl-single-posts__wrapper {
width: 95%;
}
.next_wrapper:hover.next_wrapper:after, .prv_wrapper:hover.prv_wrapper:after {
width: 0;
}
}
@media (max-width: 480px) {
.mdl-picture__posts.top-posts {
height: auto;
text-align: center;
}
.mdl-picture__post.top-post {
width: 100%;
height: 175px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
left: 5px;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
top: 69px;
width: 96%;
font-size: 20px;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
top: unset;
bottom: 5px;
}
}
Option 2: Or upload your CSS file
Indentation level:
BEAUTIFY CSS BEAUTIFY CSS IN NEW WINDOW
Beautified CSS:
/* INDEX TOP HEADER */
.mdl-layout {
background-color: #faf7f7;
}
.mdl-layout-coment {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-layout__container {
position: static;
height: auto;
}
.demo-container.mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.mdl-blog-main,
.mdl-blog-list {
overflow-y: unset;
}
.mdl-top {
padding: 0 40px 0 40px;
margin-bottom: 25.1px;
margin-top: 28.4px;
height: 72.5px;
}
.mdl-top__wrapper {
position: relative;
margin: 0 auto;
width: 1001px;
height: 72px;
}
#mdl_lang {
display: none;
}
.select {
position: absolute;
right: 19px;
top: 5px;
border: none !important;
outline: none !important;
background: transparent !important;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 500;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.1px;
text-align: left;
color: #000000;
cursor: pointer;
display: inline-block;
width: 75px;
height: 40px;
text-transform: uppercase;
}
.mdl-top.single .select {
right: 8px;
}
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px;
}
.select-styled {
border-radius: 50%;
position: absolute;
z-index: 1000;
background-color: white;
background-image: url(../images/round_lang.svg);
background-size: 100%;
background-position: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding-top: 19px;
width: 58px;
text-align: center;
height: 39px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.select-styled:after {
content: "";
width: 9px;
height: 9px;
background-image: url(../images/triangle.svg);
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 40px;
right: 25px;
}
.select-options {
display: none;
position: absolute;
top: 12px;
width: 59px;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #783387;
color: white;
border-radius: 29.5px;
padding-bottom: 25px;
}
.select-options li {
text-align: center;
margin: 0;
padding: 2px 0 0 0;
-moz-transition: all 0.15s ease-in;
-o-transition: all 0.15s ease-in;
-webkit-transition: all 0.15s ease-in;
transition: all 0.15s ease-in;
}
.select-options li>a {
color: white;
text-decoration: none;
display: block;
width: 100%;
}
.select-options li:first-child {
padding-top: 52px;
}
/*.select-options li:last-child{
padding-bottom: 25px;
}*/
.select-options li>a:hover {
color: #783387;
background: #fff;
}
.select-options li[rel="hide"] {
display: none;
}
#mdl_lang option {
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
border: none !important;
outline: none !important;
background: transparent !important;
}
.mdl-top__teleg {
position: absolute;
left: 30px;
top: 5px;
}
.mdl-top__teleg-item {
width: 58px;
}
.mdl_logo-link {
left: 50%;
margin-left: -125px;
position: absolute;
}
.mdl_logo {
display: block;
width: 250px;
height: 60px;
margin: 0 auto;
}
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper {
width: 1001px;
background-color: white;
margin: 0 auto;
}
.mdl-picture__post.top .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: unset;
bottom: 30px;
width: 75%;
height: 88px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 264px;
bottom: 20px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
}
.mdl-picture__post.top {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post-image {
position: relative;
width: 745px;
height: 305px;
object-fit: cover;
}
.mdl-picture__post.top .mdl-picture__post-image-wrapper {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask3.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.mdl-picture__posts {
width: 745px;
margin: 0 auto;
}
.mdl-picture__post {
position: relative;
width: 253px;
height: 229px;
margin-top: 14px;
margin-right: 12px;
display: inline-block;
}
.mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
bottom: 10px;
left: 12px;
width: 135.5px;
height: 22px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 105px;
left: 12px;
width: 186.8px;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.mdl-picture__post:last-child {
margin-right: 0;
}
.mdl-picture__post-image-wrapper {
position: relative;
width: 253px;
height: 229px;
}
.mdl-picture__post-image {
position: relative;
width: 253px;
height: 229px;
object-fit: cover;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 100%;
}
.mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
/* INDEX MAIN CONTENT */
.mdl-text__posts-wrapper {
padding-top: 15px;
padding-bottom: 100px;
}
.mdl-text__posts {
width: 745px;
margin: 0 auto 0;
}
.mdl-text__post {
height: 216px;
margin-top: 13.1px;
}
.mdl-text__post a {
text-decoration: none;
}
.mdl-text__post-i-wrapper {
overflow: hidden;
vertical-align: top;
width: 374.6px;
height: 215.9px;
display: inline-block;
margin-right: 14px;
}
.mdl-text__post-image {
width: 374.6px;
height: 215.9px;
object-fit: cover;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.mdl-text__post-t-wrapper {
position: relative;
vertical-align: top;
width: 348px;
height: 216px;
display: inline-block;
}
.mdl-text__post-title {
position: relative;
z-index: 1;
margin: 0 0 0 0;
width: 281px;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #4a4a4a;
}
.mdl-text__post-title-wrapper {
position: relative;
width: 281px;
}
.mdl-text__post-date {
margin: 3px 0 0 0;
height: 19px;
opacity: 0.47;
position: relative;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #000000;
}
.mdl-text__post-date:hover.mdl-text__post-date:after {
width: 100%;
}
.mdl-text__post-date:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 8px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-text__post-text {
margin: 17px 0 0 0;
width: 344px;
height: 108px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 21px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-text__post-read-more {
display: block;
position: absolute;
bottom: 0;
margin: 11px 0 0 0;
width: 171px;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #cc2a76;
}
/* SINGLE POST PAGE */
.mdl-picture__post.top-post {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
position: relative;
width: 791px;
height: 380px;
object-fit: cover;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__posts.top-posts {
width: 791px;
}
.mdl-single-posts__wrapper {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-single-posts {
width: 791px;
margin: 0 auto;
}
.mdl-single-posts video {
display: block;
margin: 0 auto;
}
.mdl-single-posts img {
width: 100%;
}
.mdl-single-posts blockquote:after,
.mdl-single-posts blockquote:before {
display: none;
}
.mdl-single-posts a {
color: #662f8f;
text-decoration: none;
}
.mdl-single-posts h2:first-child {
margin-top: 0;
}
.mdl-single-posts h2 {
margin-top: 30px;
margin-bottom: 0;
font-family: "Open Sans", sans-serif;
font-size: 20px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-single-posts p {
margin-top: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 22px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 260px;
width: 75%;
height: 70px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 342px;
bottom: 1px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'OpenSans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
text-align: left;
}
.next_wrapper {
position: relative;
width: 96px;
float: right;
}
.prv_wrapper {
position: relative;
width: 132px;
}
.next_wrapper:hover.next_wrapper:after,
.prv_wrapper:hover.prv_wrapper:after {
width: 100%;
}
.next_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 53px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.prv_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 13px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-random_post {
display: block;
margin-top: 40px;
width: 100%;
height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: right;
color: #000000 !important;
text-decoration: none;
}
.mdl-picture__posts.top-post {
width: 791px;
}
.mdl-picture__posts.top-post .mdl-picture__post {
margin-top: 17px;
vertical-align: top;
}
.mdl-picture__posts.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
top: unset;
bottom: 10px;
left: 14px;
width: 96%;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__posts.top-posts .mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 125px;
left: 14px;
width: 90%;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.view-all-posts {
margin-top: 14px;
display: block;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000 !important;
text-decoration: none;
}
/* Footer */
@font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal;
}
footer {
padding: 35px 20px;
border-top: 5px solid #662f8f;
text-align: center;
background-color: #150526;
}
@media (max-width: 768px) {
footer {
width: 100%;
margin: 0;
padding: 35px 0;
}
}
footer ul {
padding: 0;
list-style: none;
}
footer li {
display: inline-block;
margin: 20px;
}
footer .f-t {
margin-top: 10px;
text-align: left;
}
@media (max-width: 768px) {
footer .f-t {
text-align: center;
}
}
footer .f-t a {
font-family: "Gilroy-ExtraBold";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer;
}
footer .f-g {
margin-top: 10px;
position: relative;
left: 15px;
font-family: "Gilroy-Light";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
}
@media (max-width: 768px) {
footer .f-g {
left: 0;
}
}
footer h2 {
margin-top: 50px;
margin-bottom: 0;
width: 100%;
}
footer h2 a {
font-family: "Gilroy-Light";
font-size: 45px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer;
}
footer a:hover,
footer a:focus,
footer a:active {
color: white;
text-decoration: none;
}
footer h2 a span {
position: relative;
left: 10px;
font-size: 35px;
font-family: "Gilroy-Light";
}
footer object {
width: 40px;
height: 40px;
}
.link-f--wrapper {
width: 100%;
}
.link-f {
margin-top: 5px;
padding-top: 15px;
width: 163px;
height: 49px;
-webkit-border-radius: 24.5px;
border-radius: 24.5px;
text-align: center;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 700;
color: white;
background: #c72897;
display: inline-block;
cursor: pointer;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
footer ul {
width: 100%;
}
footer .community-link {
margin-top: 20px;
width: 40px;
position: relative;
}
footer .community-link:hover img.one {
opacity: 0.5;
}
footer .community-link:hover img.two {
opacity: 0;
}
footer .community-link img {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
footer .community-link img.one {
opacity: 1;
}
footer .community-link img.two {
opacity: 0;
}
footer .media-banner {
margin-top: 35px;
margin-bottom: 15px;
width: 100%;
text-align: center;
}
footer .media-banner img {
width: 270px;
}
footer li:nth-child(2) img.community-link {
width: 48px;
}
/* FOOTER SUBSCRIBE */
#subscribe {
overflow: hidden;
position: relative;
height: 200px;
}
#subscribe .s-el {
position: absolute;
}
#subscribe .s-el:nth-child(1) {
right: 90px;
bottom: 50px;
}
#subscribe .s-el:nth-child(2) {
right: 74px;
top: -100px;
}
#subscribe .s-el:nth-child(3) {
left: 94px;
bottom: -100px;
}
#subscribe #sib_embed_signup {
position: absolute;
left: 50%;
margin-left: -285px;
width: 570px;
opacity: 1;
}
#subscribe #sib_embed_signup .subscribe-label {
text-align: center;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 22px;
margin-bottom: 50px;
}
#subscribe #sib_embed_signup .message_area {
position: absolute !important;
bottom: -40px;
background-color: transparent !important;
border: none !important;
font-family: "Open Sans", sans-serif !important;
font-weight: 400 !important;
font-size: 14px !important;
width: 100% !important;
text-align: center !important;
}
#subscribe #sib_embed_signup .message_area .close {
display: none !important;
}
#subscribe #sib_embed_signup .mandatory-email {
position: relative;
left: 20px;
width: 100%;
}
#subscribe #sib_embed_signup #email {
position: relative;
left: 0;
top: 0;
padding-left: 31px;
display: block;
margin: 0 auto;
width: 380px;
height: 42px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: solid 1px #c72897;
outline: none;
-webkit-appearence: none;
font-size: 14px;
color: white;
font-family: "Open Sans", sans-serif;
background-color: transparent;
}
#subscribe #sib_embed_signup .button {
position: absolute;
top: 0;
right: 60px;
height: 46px;
width: 130px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: none;
outline: none;
-webkit-appearence: none;
background-color: #c72897;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
color: white;
}
@media (max-width: 768px) {
#subscribe {
height: 250px;
}
#subscribe #sib_embed_signup {
width: 300px;
position: relative;
left: 0;
margin: 0 auto;
}
#subscribe #sib_embed_signup .mandatory-email{
left: 0;
}
#subscribe #sib_embed_signup #email {
width: 265px;
}
#subscribe #sib_embed_signup .button {
right: 0;
}
}
/* MAIN BLOG PAGE RESPONSIVE */
@media (max-width: 1200px) {
.mdl-top__wrapper {
width: 100%;
}
}
@media (max-width: 991px) {
.mdl-top__teleg {
left: 0;
}
.select {
right: 0;
}
}
@media (max-width: 768px) {
.mdl-single-posts video {
width: 100%;
}
.mdl-layout__container {
margin-top: 70px;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mdl-text__post-title-wrapper:hover.mdl-text__post-title-wrapper:after {
width: 0;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-top {
position: fixed;
z-index: 10001;
background-color: white;
width: 100%;
left: 0;
top: 0;
padding: 14px 0px 12px 0px;
margin-bottom: 21px;
margin-top: 0;
height: auto;
-o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.mdl_logo {
width: 150px;
height: 29px;
}
.mdl_logo-link {
left: 50%;
margin-left: -75px;
}
.mdl-blog-main .demo-container.mdl-grid,
.mdl-blog-main .mdl-cell,
.mdl-text__posts-wrapper {
padding: 0;
margin: 0;
width: 100%;
}
.mdl-picture__posts {
width: 100%;
}
.mdl-picture__post.top,
.mdl-picture__post.top .mdl-picture__post-image-wrapper,
.mdl-picture__post.top .mdl-picture__post-image,
.mdl-picture__post,
.mdl-picture__post-image-wrapper,
.mdl-picture__post-image {
width: 100%;
height: 175px;
}
.mdl-picture__post {
margin-top: 3px;
margin-right: 0;
}
.mdl-picture__post.top .mdl-picture__post-title,
.mdl-picture__post .mdl-picture__post-title {
font-size: 22px;
line-height: 1.25;
left: 5px;
top: 73px;
width: 95%;
height: auto;
}
.mdl-picture__post.tp_three .mdl-picture__post-title,
.mdl-picture__post.tp_two .mdl-picture__post-title,
.mdl-picture__post.tp_one .mdl-picture__post-title {
top: 114px;
}
.mdl-picture__post.top .mdl-picture__post-date,
.mdl-picture__post .mdl-picture__post-date {
font-size: 14px;
left: 5px;
bottom: 13px;
top: 150px;
width: 95%;
}
.mdl-text__post-text,
.mdl-text__post-read-more,
.mdl-text__post-i-wrapper {
display: none;
}
.mdl-text__posts,
.mdl-text__post-t-wrapper {
width: 100%;
height: auto;
}
.mdl-text__posts {
padding-left: 11px;
}
.mdl-text__post {
height: auto;
margin-top: 17px;
padding-bottom: 19px;
border-bottom: solid 1px rgba(0, 0, 0, 0.09);
}
.mdl-text__post-title {
margin-top: 0;
font-size: 14px;
}
.mdl-text__post-date {
margin: 6px 0 0 0;
font-size: 10px;
height: auto;
}
.mdl-top__teleg-item {
width: 29px;
}
.mdl-top__wrapper {
height: 29px;
}
.mdl-top__teleg {
top: 0;
left: 10px;
}
.select {
right: 10px;
top: 0;
width: 29px;
height: 29px;
font-size: 13px;
}
.select:before {
display: none;
}
.select-styled {
width: 27px;
padding: 6px 0 0 0;
height: 21px;
}
.select-styled:after {
display: none;
}
.select-options {
width: 29px;
top: 5px;
}
.select-options li:first-child {
padding-top: 35px;
}
.select-options li {
font-size: 12px;
}
}
/* SINGLE POST RESPONISVE */
@media (max-width: 1200px) {
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-single-posts__wrapper {
width: 980px;
}
}
@media (max-width: 991px) {
.mdl-layout {
background-color: white;
}
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-picture__posts.top-posts,
.mdl-picture__post.top-post {
width: 740px;
}
.mdl-single-posts__wrapper {
width: 100%;
}
.mdl-single-posts {
width: 740px;
}
.mdl-picture__post.top-post,
.mdl-picture__posts.top-post {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 740px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper,
.mdl-picture__posts.top-post .mdl-picture__post {
width: 229px;
height: 216px;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
top: 114px;
font-size: 16px;
width: 94%;
}
/* .mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
width: 96%;
top: 138px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 100%;
height: 216px;
}*/
.mdl-picture__post-image-wrapper .mdl-picture__post {
margin-right: 10px;
}
.mdl-single-posts img {
height: 100%;
}
.view-all-posts {
margin-right: 0;
}
}
@media (max-width: 768px) {
.mdl-picture__post.top-post .mdl-picture__post-title {
font-size: 22px;
top: 265px;
}
.mdl-single-posts {
width: 95%;
}
.mdl-picture__post.top-post .mdl-picture__post-image,
.mdl-picture__post.top-post,
.mdl-picture__posts.top-post,
.mdl-single-posts,
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-picture__posts.top-posts,
.mdl-picture__post.top-post {
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 100%;
}
.mdl-picture__posts.top-post .mdl-picture__post {
display: block;
margin: 17px auto 0;
}
.mdl-single-posts__wrapper {
width: 95%;
}
.next_wrapper:hover.next_wrapper:after,
.prv_wrapper:hover.prv_wrapper:after {
width: 0;
}
}
@media (max-width: 480px) {
.mdl-picture__posts.top-posts {
height: auto;
text-align: center;
}
.mdl-picture__post.top-post {
width: 100%;
height: 175px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-title,
.mdl-picture__post.top-post .mdl-picture__post-date {
left: 5px;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
top: 69px;
width: 96%;
font-size: 20px;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
top: unset;
bottom: 5px;
}
} | static/css/style.css | FREEFORMATTER.COM
HTTPS
Contact
Formatters
JSON Formatter
HTML Formatter
XML Formatter
SQL Formatter
Batch Formatter (new!)
Validators
JSON Validator
HTML Validator
XML Validator - XSD
XPath Tester
Credit Card Number Generator & Validator
Regular Expression Tester
Java Regular Expression Tester
Cron Expression Generator - Quartz
Encoders & Decoders
Url Encoder & Decoder
Base 64 Encoder & Decoder
QR Code Generator
Code Minifiers / Beautifier
JavaScript Beautifier
CSS Beautifier
JavaScript Minifier
CSS Minifier
Converters
XSD Generator
XSLT (XSL Transformer)
XML to JSON Converter
JSON to XML Converter
CSV to XML Converter
CSV to JSON Converter
Epoch Timestamp To Date
Cryptography & Security
Message Digester (MD5, SHA-256, SHA-512)
HMAC Generator
MD5 Generator
SHA-256 Generator
SHA-512 Generator
String Escaper & Utilities
String Utilities
HTML Escape
XML Escape
Java and .Net Escape
JavaScript Escape
JSON Escape
CSV Escape
SQL Escape
Web Resources
Lorem Ipsum Generator
LESS Compiler
List of MIME types
HTML Entities
Url Parser / Query String Splitter
i18n - Formatting standards & code snippets
ISO country list - HTML select snippet
USA state list - HTML select snippet
Canada province list - HTML select snippet
Mexico state list - HTML select snippet
Time zone list - HTML select snippet
CSS Beautifier
Formats a CSS files with the chosen indentation level for optimal readability. Supports 4 indentation levels: 2 spaces, 3 spaces, 4 spaces and tabs.
*The maximum size limit for file upload is 2 megabytes. All files bigger than 500k will be formatted to a new window for performance reason and to prevent your browser from being unresponsive.
Option 1: Copy-paste your CSS string here
/* INDEX TOP HEADER */
.mdl-layout {
background-color: #faf7f7;
}
.mdl-layout-coment {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-layout__container {
position: static;
height: auto;
}
.demo-container.mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.mdl-blog-main, .mdl-blog-list {
overflow-y: unset;
}
.mdl-top {
padding: 0 40px 0 40px;
margin-bottom: 25.1px;
margin-top: 28.4px;
height: 72.5px;
}
.mdl-top__wrapper {
position: relative;
margin: 0 auto;
width: 1001px;
height: 72px;
}
#mdl_lang {
display: none;
}
.select {
position: absolute;
right: 19px;
top: 5px;
border: none !important;
outline: none !important;
background: transparent !important;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 500;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.1px;
text-align: left;
color: #000000;
cursor: pointer;
display: inline-block;
width: 75px;
height: 40px;
text-transform: uppercase;
}
.mdl-top.single .select {
right: 8px;
}
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px;
}
.select-styled {
border-radius: 50%;
position: absolute;
z-index: 1000;
background-color: white;
background-image: url(../images/round_lang.svg);
background-size: 100%;
background-position: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding-top: 19px;
width: 58px;
text-align: center;
height: 39px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.select-styled:after {
content: "";
width: 9px;
height: 9px;
background-image: url(../images/triangle.svg);
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 40px;
right: 25px;
}
.select-options {
display: none;
position: absolute;
top: 12px;
width: 59px;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #783387;
color: white;
border-radius: 29.5px;
padding-bottom: 25px;
}
.select-options li {
text-align: center;
margin: 0;
padding: 2px 0 0 0;
-moz-transition: all 0.15s ease-in;
-o-transition: all 0.15s ease-in;
-webkit-transition: all 0.15s ease-in;
transition: all 0.15s ease-in;
}
.select-options li > a {
color: white;
text-decoration: none;
display: block;
width: 100%;
}
.select-options li:first-child {
padding-top: 52px;
}
/*.select-options li:last-child{
padding-bottom: 25px;
}*/
.select-options li > a:hover {
color: #783387;
background: #fff;
}
.select-options li[rel="hide"] {
display: none;
}
#mdl_lang option {
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
border: none !important;
outline: none !important;
background: transparent !important;
}
.mdl-top__teleg {
position: absolute;
left: 30px;
top: 5px;
}
.mdl-top__teleg-item {
width: 58px;
}
.mdl_logo-link {
left: 50%;
margin-left: -125px;
position: absolute;
}
.mdl_logo {
display: block;
width: 250px;
height: 60px;
margin: 0 auto;
}
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper {
width: 1001px;
background-color: white;
margin: 0 auto;
}
.mdl-picture__post.top .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: unset;
bottom: 30px;
width: 75%;
height: 88px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 264px;
bottom: 20px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
}
.mdl-picture__post.top {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post-image {
position: relative;
width: 745px;
height: 305px;
object-fit: cover;
}
.mdl-picture__post.top .mdl-picture__post-image-wrapper {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask3.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.mdl-picture__posts {
width: 745px;
margin: 0 auto;
}
.mdl-picture__post {
position: relative;
width: 253px;
height: 229px;
margin-top: 14px;
margin-right: 12px;
display: inline-block;
}
.mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
bottom: 10px;
left: 12px;
width: 135.5px;
height: 22px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 105px;
left: 12px;
width: 186.8px;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.mdl-picture__post:last-child {
margin-right: 0;
}
.mdl-picture__post-image-wrapper {
position: relative;
width: 253px;
height: 229px;
}
.mdl-picture__post-image {
position: relative;
width: 253px;
height: 229px;
object-fit: cover;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 100%;
}
.mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
/* INDEX MAIN CONTENT */
.mdl-text__posts-wrapper {
padding-top: 15px;
padding-bottom: 100px;
}
.mdl-text__posts {
width: 745px;
margin: 0 auto 0;
}
.mdl-text__post {
height: 216px;
margin-top: 13.1px;
}
.mdl-text__post a {
text-decoration: none;
}
.mdl-text__post-i-wrapper {
overflow: hidden;
vertical-align: top;
width: 374.6px;
height: 215.9px;
display: inline-block;
margin-right: 14px;
}
.mdl-text__post-image {
width: 374.6px;
height: 215.9px;
object-fit: cover;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.mdl-text__post-t-wrapper {
position: relative;
vertical-align: top;
width: 348px;
height: 216px;
display: inline-block;
}
.mdl-text__post-title {
position: relative;
z-index: 1;
margin: 0 0 0 0;
width: 281px;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #4a4a4a;
}
.mdl-text__post-title-wrapper {
position: relative;
width: 281px;
}
.mdl-text__post-date {
margin: 3px 0 0 0;
height: 19px;
opacity: 0.47;
position: relative;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #000000;
}
.mdl-text__post-date:hover.mdl-text__post-date:after {
width: 100%;
}
.mdl-text__post-date:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 8px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-text__post-text {
margin: 17px 0 0 0;
width: 344px;
height: 108px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 21px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-text__post-read-more {
display: block;
position: absolute;
bottom: 0;
margin: 11px 0 0 0;
width: 171px;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #cc2a76;
}
/* SINGLE POST PAGE */
.mdl-picture__post.top-post {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
position: relative;
width: 791px;
height: 380px;
object-fit: cover;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__posts.top-posts {
width: 791px;
}
.mdl-single-posts__wrapper {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-single-posts {
width: 791px;
margin: 0 auto;
}
.mdl-single-posts video {
display: block;
margin: 0 auto;
}
.mdl-single-posts img {
width: 100%;
}
.mdl-single-posts blockquote:after, .mdl-single-posts blockquote:before {
display: none;
}
.mdl-single-posts a {
color: #662f8f;
text-decoration: none;
}
.mdl-single-posts h2:first-child {
margin-top: 0;
}
.mdl-single-posts h2 {
margin-top: 30px;
margin-bottom: 0;
font-family: "Open Sans", sans-serif;
font-size: 20px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-single-posts p {
margin-top: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 22px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 260px;
width: 75%;
height: 70px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 342px;
bottom: 1px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'OpenSans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
text-align: left;
}
.next_wrapper {
position: relative;
width: 96px;
float: right;
}
.prv_wrapper {
position: relative;
width: 132px;
}
.next_wrapper:hover.next_wrapper:after, .prv_wrapper:hover.prv_wrapper:after {
width: 100%;
}
.next_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 53px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.prv_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 13px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-random_post {
display: block;
margin-top: 40px;
width: 100%;
height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: right;
color: #000000 !important;
text-decoration: none;
}
.mdl-picture__posts.top-post {
width: 791px;
}
.mdl-picture__posts.top-post .mdl-picture__post {
margin-top: 17px;
vertical-align: top;
}
.mdl-picture__posts.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
top: unset;
bottom: 10px;
left: 14px;
width: 96%;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__posts.top-posts .mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 125px;
left: 14px;
width: 90%;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.view-all-posts {
margin-top: 14px;
display: block;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000 !important;
text-decoration: none;
}
/* Footer */
@font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal; }
footer {
padding: 35px 20px;
border-top: 5px solid #662f8f;
text-align: center;
background-color: #150526; }
@media (max-width: 768px) {
footer {
width: 100%;
margin: 0;
padding: 35px 0; } }
footer ul {
padding: 0;
list-style: none; }
footer li {
display: inline-block;
margin: 20px; }
footer .f-t {
margin-top: 10px;
text-align: left; }
@media (max-width: 768px) {
footer .f-t {
text-align: center; } }
footer .f-t a {
font-family: "Gilroy-ExtraBold";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer; }
footer .f-g {
margin-top: 10px;
position: relative;
left: 15px;
font-family: "Gilroy-Light";
font-size: 16px;
color: white;
text-decoration: none;
outline: none; }
@media (max-width: 768px) {
footer .f-g {
left: 0; } }
footer h2 {
margin-top: 50px;
margin-bottom: 0;
width: 100%; }
footer h2 a {
font-family: "Gilroy-Light";
font-size: 45px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer; }
footer a:hover, footer a:focus, footer a:active {
color: white;
text-decoration: none; }
footer h2 a span {
position: relative;
left: 10px;
font-size: 35px;
font-family: "Gilroy-Light"; }
footer object {
width: 40px;
height: 40px; }
.link-f--wrapper {
width: 100%; }
.link-f {
margin-top: 5px;
padding-top: 15px;
width: 163px;
height: 49px;
-webkit-border-radius: 24.5px;
border-radius: 24.5px;
text-align: center;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 700;
color: white;
background: #c72897;
display: inline-block;
cursor: pointer;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s; }
footer ul {
width: 100%; }
footer .community-link {
margin-top: 20px;
width: 40px;
position: relative; }
footer .community-link:hover img.one {
opacity: 0.5; }
footer .community-link:hover img.two {
opacity: 0; }
footer .community-link img {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out; }
footer .community-link img.one {
opacity: 1; }
footer .community-link img.two {
opacity: 0; }
footer .media-banner {
margin-top: 35px;
margin-bottom: 15px;
width: 100%;
text-align: center; }
footer .media-banner img {
width: 270px; }
footer li:nth-child(2) img.community-link {
width: 48px; }
/* FOOTER SUBSCRIBE */
#subscribe {
overflow: hidden;
position: relative;
height: 200px;
}
#subscribe .s-el {
position: absolute; }
#subscribe .s-el:nth-child(1) {
right: 90px;
bottom: 50px; }
#subscribe .s-el:nth-child(2) {
right: 74px;
top: -100px; }
#subscribe .s-el:nth-child(3) {
left: 94px;
bottom: -100px; }
#subscribe #sib_embed_signup {
position: absolute;
left: 50%;
margin-left: -285px;
width: 570px;
opacity: 1; }
#subscribe #sib_embed_signup .subscribe-label {
text-align: center;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 22px;
margin-bottom: 50px; }
#subscribe #sib_embed_signup .message_area {
position: absolute !important;
bottom: -40px;
background-color: transparent !important;
border: none !important;
font-family: "Open Sans", sans-serif !important;
font-weight: 400 !important;
font-size: 14px !important;
width: 100% !important;
text-align: center !important; }
#subscribe #sib_embed_signup .message_area .close {
display: none !important; }
#subscribe #sib_embed_signup .mandatory-email {
position: relative;
left: 20px;
width: 100%; }
#subscribe #sib_embed_signup #email {
position: relative;
left: 0;
top: 0;
padding-left: 31px;
display: block;
margin: 0 auto;
width: 380px;
height: 42px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: solid 1px #c72897;
outline: none;
-webkit-appearence: none;
font-size: 14px;
color: white;
font-family: "Open Sans", sans-serif;
background-color: transparent; }
#subscribe #sib_embed_signup .button {
position: absolute;
top: 0;
right: 60px;
height: 46px;
width: 130px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: none;
outline: none;
-webkit-appearence: none;
background-color: #c72897;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
color: white; }
@media (max-width: 768px) {
#subscribe #sib_embed_signup {
width: 300px;
}
}
/* MAIN BLOG PAGE RESPONSIVE */
@media (max-width: 1200px) {
.mdl-top__wrapper {
width: 100%;
}
}
@media (max-width: 991px) {
.mdl-top__teleg {
left: 0;
}
.select {
right: 0;
}
}
@media (max-width: 768px) {
.mdl-single-posts video {
width: 100%;
}
.mdl-layout__container {
margin-top: 70px;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mdl-text__post-title-wrapper:hover.mdl-text__post-title-wrapper:after {
width: 0;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-top {
position: fixed;
z-index: 10001;
background-color: white;
width: 100%;
left: 0;
top: 0;
padding: 14px 0px 12px 0px;
margin-bottom: 21px;
margin-top: 0;
height: auto;
-o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.mdl_logo {
width: 150px;
height: 29px;
}
.mdl_logo-link {
left: 50%;
margin-left: -75px;
}
.mdl-blog-main .demo-container.mdl-grid, .mdl-blog-main .mdl-cell, .mdl-text__posts-wrapper {
padding: 0;
margin: 0;
width: 100%;
}
.mdl-picture__posts {
width: 100%;
}
.mdl-picture__post.top, .mdl-picture__post.top .mdl-picture__post-image-wrapper, .mdl-picture__post.top .mdl-picture__post-image, .mdl-picture__post,
.mdl-picture__post-image-wrapper, .mdl-picture__post-image {
width: 100%;
height: 175px;
}
.mdl-picture__post {
margin-top: 3px;
margin-right: 0;
}
.mdl-picture__post.top .mdl-picture__post-title, .mdl-picture__post .mdl-picture__post-title {
font-size: 22px;
line-height: 1.25;
left: 5px;
top: 73px;
width: 95%;
height: auto;
}
.mdl-picture__post.tp_three .mdl-picture__post-title, .mdl-picture__post.tp_two .mdl-picture__post-title, .mdl-picture__post.tp_one .mdl-picture__post-title {
top: 114px;
}
.mdl-picture__post.top .mdl-picture__post-date, .mdl-picture__post .mdl-picture__post-date {
font-size: 14px;
left: 5px;
bottom: 13px;
top: 150px;
width: 95%;
}
.mdl-text__post-text, .mdl-text__post-read-more, .mdl-text__post-i-wrapper {
display: none;
}
.mdl-text__posts, .mdl-text__post-t-wrapper {
width: 100%;
height: auto;
}
.mdl-text__posts {
padding-left: 11px;
}
.mdl-text__post {
height: auto;
margin-top: 17px;
padding-bottom: 19px;
border-bottom: solid 1px rgba(0, 0, 0, 0.09);
}
.mdl-text__post-title {
margin-top: 0;
font-size: 14px;
}
.mdl-text__post-date {
margin: 6px 0 0 0;
font-size: 10px;
height: auto;
}
.mdl-top__teleg-item {
width: 29px;
}
.mdl-top__wrapper {
height: 29px;
}
.mdl-top__teleg {
top: 0;
left: 10px;
}
.select {
right: 10px;
top: 0;
width: 29px;
height: 29px;
font-size: 13px;
}
.select:before {
display: none;
}
.select-styled {
width: 27px;
padding: 6px 0 0 0;
height: 21px;
}
.select-styled:after {
display: none;
}
.select-options {
width: 29px;
top: 5px;
}
.select-options li:first-child {
padding-top: 35px;
}
.select-options li {
font-size: 12px;
}
}
/* SINGLE POST RESPONISVE */
@media (max-width: 1200px) {
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-single-posts__wrapper {
width: 980px;
}
}
@media (max-width: 991px) {
.mdl-layout {
background-color: white;
}
.mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-picture__posts.top-posts, .mdl-picture__post.top-post {
width: 740px;
}
.mdl-single-posts__wrapper {
width: 100%;
}
.mdl-single-posts {
width: 740px;
}
.mdl-picture__post.top-post, .mdl-picture__posts.top-post {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 740px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 229px;
height: 216px;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
top: 114px;
font-size: 16px;
width: 94%;
}
/* .mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
width: 96%;
top: 138px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 100%;
height: 216px;
}*/
.mdl-picture__post-image-wrapper
.mdl-picture__post {
margin-right: 10px;
}
.mdl-single-posts img {
height: 100%;
}
.view-all-posts {
margin-right: 0;
}
}
@media (max-width: 768px) {
.mdl-picture__post.top-post .mdl-picture__post-title {
font-size: 22px;
top: 265px;
}
.mdl-single-posts {
width: 95%;
}
.mdl-picture__post.top-post .mdl-picture__post-image, .mdl-picture__post.top-post, .mdl-picture__posts.top-post,
.mdl-single-posts, .mdl-picture__posts-wrapper, .mdl-text__posts-wrapper, .mdl-picture__posts.top-posts, .mdl-picture__post.top-post {
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 100%;
}
.mdl-picture__posts.top-post .mdl-picture__post {
display: block;
margin: 17px auto 0;
}
.mdl-single-posts__wrapper {
width: 95%;
}
.next_wrapper:hover.next_wrapper:after, .prv_wrapper:hover.prv_wrapper:after {
width: 0;
}
}
@media (max-width: 480px) {
.mdl-picture__posts.top-posts {
height: auto;
text-align: center;
}
.mdl-picture__post.top-post {
width: 100%;
height: 175px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
left: 5px;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
top: 69px;
width: 96%;
font-size: 20px;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
top: unset;
bottom: 5px;
}
}
Option 2: Or upload your CSS file
Indentation level:
BEAUTIFY CSS BEAUTIFY CSS IN NEW WINDOW
Beautified CSS:
/* INDEX TOP HEADER */
.mdl-layout {
background-color: #faf7f7;
}
.mdl-layout-coment {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-layout__container {
position: static;
height: auto;
}
.demo-container.mdl-grid {
padding-top: 0;
padding-bottom: 0;
}
.mdl-cell {
margin-top: 0;
margin-bottom: 0;
}
.mdl-blog-main,
.mdl-blog-list {
overflow-y: unset;
}
.mdl-top {
padding: 0 40px 0 40px;
margin-bottom: 25.1px;
margin-top: 28.4px;
height: 72.5px;
}
.mdl-top__wrapper {
position: relative;
margin: 0 auto;
width: 1001px;
height: 72px;
}
#mdl_lang {
display: none;
}
.select {
position: absolute;
right: 19px;
top: 5px;
border: none !important;
outline: none !important;
background: transparent !important;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 500;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.1px;
text-align: left;
color: #000000;
cursor: pointer;
display: inline-block;
width: 75px;
height: 40px;
text-transform: uppercase;
}
.mdl-top.single .select {
right: 8px;
}
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px;
}
.select-styled {
border-radius: 50%;
position: absolute;
z-index: 1000;
background-color: white;
background-image: url(../images/round_lang.svg);
background-size: 100%;
background-position: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding-top: 19px;
width: 58px;
text-align: center;
height: 39px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.select-styled:after {
content: "";
width: 9px;
height: 9px;
background-image: url(../images/triangle.svg);
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 40px;
right: 25px;
}
.select-options {
display: none;
position: absolute;
top: 12px;
width: 59px;
right: 0;
left: 0;
z-index: 999;
margin: 0;
padding: 0;
list-style: none;
background-color: #783387;
color: white;
border-radius: 29.5px;
padding-bottom: 25px;
}
.select-options li {
text-align: center;
margin: 0;
padding: 2px 0 0 0;
-moz-transition: all 0.15s ease-in;
-o-transition: all 0.15s ease-in;
-webkit-transition: all 0.15s ease-in;
transition: all 0.15s ease-in;
}
.select-options li>a {
color: white;
text-decoration: none;
display: block;
width: 100%;
}
.select-options li:first-child {
padding-top: 52px;
}
/*.select-options li:last-child{
padding-bottom: 25px;
}*/
.select-options li>a:hover {
color: #783387;
background: #fff;
}
.select-options li[rel="hide"] {
display: none;
}
#mdl_lang option {
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
border: none !important;
outline: none !important;
background: transparent !important;
}
.mdl-top__teleg {
position: absolute;
left: 30px;
top: 5px;
}
.mdl-top__teleg-item {
width: 58px;
}
.mdl_logo-link {
left: 50%;
margin-left: -125px;
position: absolute;
}
.mdl_logo {
display: block;
width: 250px;
height: 60px;
margin: 0 auto;
}
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper {
width: 1001px;
background-color: white;
margin: 0 auto;
}
.mdl-picture__post.top .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: unset;
bottom: 30px;
width: 75%;
height: 88px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 264px;
bottom: 20px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
}
.mdl-picture__post.top {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post-image {
position: relative;
width: 745px;
height: 305px;
object-fit: cover;
}
.mdl-picture__post.top .mdl-picture__post-image-wrapper {
position: relative;
width: 745px;
height: 305px;
}
.mdl-picture__post.top .mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask3.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.mdl-picture__posts {
width: 745px;
margin: 0 auto;
}
.mdl-picture__post {
position: relative;
width: 253px;
height: 229px;
margin-top: 14px;
margin-right: 12px;
display: inline-block;
}
.mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
bottom: 10px;
left: 12px;
width: 135.5px;
height: 22px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 105px;
left: 12px;
width: 186.8px;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.mdl-picture__post:last-child {
margin-right: 0;
}
.mdl-picture__post-image-wrapper {
position: relative;
width: 253px;
height: 229px;
}
.mdl-picture__post-image {
position: relative;
width: 253px;
height: 229px;
object-fit: cover;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 100%;
}
.mdl-picture__post .mdl-picture__post-image-wrapper:before {
display: block;
content: "";
bottom: 0;
left: 0;
position: absolute;
z-index: 1;
width: 100%;
height: 0;
background-image: url(../images/Mask2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
/* INDEX MAIN CONTENT */
.mdl-text__posts-wrapper {
padding-top: 15px;
padding-bottom: 100px;
}
.mdl-text__posts {
width: 745px;
margin: 0 auto 0;
}
.mdl-text__post {
height: 216px;
margin-top: 13.1px;
}
.mdl-text__post a {
text-decoration: none;
}
.mdl-text__post-i-wrapper {
overflow: hidden;
vertical-align: top;
width: 374.6px;
height: 215.9px;
display: inline-block;
margin-right: 14px;
}
.mdl-text__post-image {
width: 374.6px;
height: 215.9px;
object-fit: cover;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.mdl-text__post-t-wrapper {
position: relative;
vertical-align: top;
width: 348px;
height: 216px;
display: inline-block;
}
.mdl-text__post-title {
position: relative;
z-index: 1;
margin: 0 0 0 0;
width: 281px;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #4a4a4a;
}
.mdl-text__post-title-wrapper {
position: relative;
width: 281px;
}
.mdl-text__post-date {
margin: 3px 0 0 0;
height: 19px;
opacity: 0.47;
position: relative;
font-size: 16px;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #000000;
}
.mdl-text__post-date:hover.mdl-text__post-date:after {
width: 100%;
}
.mdl-text__post-date:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 8px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-text__post-text {
margin: 17px 0 0 0;
width: 344px;
height: 108px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 21px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-text__post-read-more {
display: block;
position: absolute;
bottom: 0;
margin: 11px 0 0 0;
width: 171px;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #cc2a76;
}
/* SINGLE POST PAGE */
.mdl-picture__post.top-post {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
position: relative;
width: 791px;
height: 380px;
object-fit: cover;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
position: relative;
width: 791px;
height: 380px;
}
.mdl-picture__posts.top-posts {
width: 791px;
}
.mdl-single-posts__wrapper {
position: relative;
width: 1001px;
margin: 0 auto;
background-color: white;
padding-top: 30px;
padding-bottom: 100px;
}
.mdl-single-posts {
width: 791px;
margin: 0 auto;
}
.mdl-single-posts video {
display: block;
margin: 0 auto;
}
.mdl-single-posts img {
width: 100%;
}
.mdl-single-posts blockquote:after,
.mdl-single-posts blockquote:before {
display: none;
}
.mdl-single-posts a {
color: #662f8f;
text-decoration: none;
}
.mdl-single-posts h2:first-child {
margin-top: 0;
}
.mdl-single-posts h2 {
margin-top: 30px;
margin-bottom: 0;
font-family: "Open Sans", sans-serif;
font-size: 20px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-single-posts p {
margin-top: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 22px;
letter-spacing: normal;
text-align: left;
color: #000000;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 260px;
width: 75%;
height: 70px;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: 1.22;
letter-spacing: normal;
text-align: left;
color: #ffffff;
text-decoration: none;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
left: 45px;
top: 342px;
bottom: 1px;
width: 75%;
height: 22px;
opacity: 0.47;
font-family: 'OpenSans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
text-align: left;
}
.next_wrapper {
position: relative;
width: 96px;
float: right;
}
.prv_wrapper {
position: relative;
width: 132px;
}
.next_wrapper:hover.next_wrapper:after,
.prv_wrapper:hover.prv_wrapper:after {
width: 100%;
}
.next_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 53px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.prv_wrapper:after {
content: '';
position: absolute;
width: 0;
height: 3px;
border-top: solid 1px #ef4184;
top: 13px;
left: 0;
-webkit-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.mdl-random_post {
display: block;
margin-top: 40px;
width: 100%;
height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: right;
color: #000000 !important;
text-decoration: none;
}
.mdl-picture__posts.top-post {
width: 791px;
}
.mdl-picture__posts.top-post .mdl-picture__post {
margin-top: 17px;
vertical-align: top;
}
.mdl-picture__posts.top-post .mdl-picture__post-date {
margin: 0;
position: absolute;
z-index: 2;
top: unset;
bottom: 10px;
left: 14px;
width: 96%;
height: 19px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 600;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #e2dddd;
}
.mdl-picture__posts.top-posts .mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
vertical-align: bottom;
margin: 0;
position: absolute;
z-index: 2;
top: 125px;
left: 14px;
width: 90%;
height: 72px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
text-align: left;
color: #ffffff;
}
.view-all-posts {
margin-top: 14px;
display: block;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
color: #000000 !important;
text-decoration: none;
}
/* Footer */
@font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal;
}
footer {
padding: 35px 20px;
border-top: 5px solid #662f8f;
text-align: center;
background-color: #150526;
}
@media (max-width: 768px) {
footer {
width: 100%;
margin: 0;
padding: 35px 0;
}
}
footer ul {
padding: 0;
list-style: none;
}
footer li {
display: inline-block;
margin: 20px;
}
footer .f-t {
margin-top: 10px;
text-align: left;
}
@media (max-width: 768px) {
footer .f-t {
text-align: center;
}
}
footer .f-t a {
font-family: "Gilroy-ExtraBold";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer;
}
footer .f-g {
margin-top: 10px;
position: relative;
left: 15px;
font-family: "Gilroy-Light";
font-size: 16px;
color: white;
text-decoration: none;
outline: none;
}
@media (max-width: 768px) {
footer .f-g {
left: 0;
}
}
footer h2 {
margin-top: 50px;
margin-bottom: 0;
width: 100%;
}
footer h2 a {
font-family: "Gilroy-Light";
font-size: 45px;
color: white;
text-decoration: none;
outline: none;
cursor: pointer;
}
footer a:hover,
footer a:focus,
footer a:active {
color: white;
text-decoration: none;
}
footer h2 a span {
position: relative;
left: 10px;
font-size: 35px;
font-family: "Gilroy-Light";
}
footer object {
width: 40px;
height: 40px;
}
.link-f--wrapper {
width: 100%;
}
.link-f {
margin-top: 5px;
padding-top: 15px;
width: 163px;
height: 49px;
-webkit-border-radius: 24.5px;
border-radius: 24.5px;
text-align: center;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 700;
color: white;
background: #c72897;
display: inline-block;
cursor: pointer;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
footer ul {
width: 100%;
}
footer .community-link {
margin-top: 20px;
width: 40px;
position: relative;
}
footer .community-link:hover img.one {
opacity: 0.5;
}
footer .community-link:hover img.two {
opacity: 0;
}
footer .community-link img {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
footer .community-link img.one {
opacity: 1;
}
footer .community-link img.two {
opacity: 0;
}
footer .media-banner {
margin-top: 35px;
margin-bottom: 15px;
width: 100%;
text-align: center;
}
footer .media-banner img {
width: 270px;
}
footer li:nth-child(2) img.community-link {
width: 48px;
}
/* FOOTER SUBSCRIBE */
#subscribe {
overflow: hidden;
position: relative;
height: 200px;
}
#subscribe .s-el {
position: absolute;
}
#subscribe .s-el:nth-child(1) {
right: 90px;
bottom: 50px;
}
#subscribe .s-el:nth-child(2) {
right: 74px;
top: -100px;
}
#subscribe .s-el:nth-child(3) {
left: 94px;
bottom: -100px;
}
#subscribe #sib_embed_signup {
position: absolute;
left: 50%;
margin-left: -285px;
width: 570px;
opacity: 1;
}
#subscribe #sib_embed_signup .subscribe-label {
text-align: center;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 22px;
margin-bottom: 50px;
}
#subscribe #sib_embed_signup .message_area {
position: absolute !important;
bottom: -40px;
background-color: transparent !important;
border: none !important;
font-family: "Open Sans", sans-serif !important;
font-weight: 400 !important;
font-size: 14px !important;
width: 100% !important;
text-align: center !important;
}
#subscribe #sib_embed_signup .message_area .close {
display: none !important;
}
#subscribe #sib_embed_signup .mandatory-email {
position: relative;
left: 20px;
width: 100%;
}
#subscribe #sib_embed_signup #email {
position: relative;
left: 0;
top: 0;
padding-left: 31px;
display: block;
margin: 0 auto;
width: 380px;
height: 42px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: solid 1px #c72897;
outline: none;
-webkit-appearence: none;
font-size: 14px;
color: white;
font-family: "Open Sans", sans-serif;
background-color: transparent;
}
#subscribe #sib_embed_signup .button {
position: absolute;
top: 0;
right: 60px;
height: 46px;
width: 130px;
-webkit-border-radius: 33px;
border-radius: 33px;
border: none;
outline: none;
-webkit-appearence: none;
background-color: #c72897;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: bold;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
color: white;
}
@media (max-width: 768px) {
#subscribe {
height: 250px;
}
#subscribe #sib_embed_signup {
width: 300px;
position: relative;
left: 0;
margin: 0 auto;
}
#subscribe #sib_embed_signup .mandatory-email{
left: 0;
}
#subscribe #sib_embed_signup #email {
width: 265px;
}
#subscribe #sib_embed_signup .button {
right: 0;
}
}
/* MAIN BLOG PAGE RESPONSIVE */
@media (max-width: 1200px) {
.mdl-top__wrapper {
width: 100%;
}
}
@media (max-width: 991px) {
.mdl-top__teleg {
left: 0;
}
.select {
right: 0;
}
}
@media (max-width: 768px) {
.mdl-single-posts video {
width: 100%;
}
.mdl-layout__container {
margin-top: 70px;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-text__post-image:hover {
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mdl-text__post-title-wrapper:hover.mdl-text__post-title-wrapper:after {
width: 0;
}
.mdl-picture__post:hover .mdl-picture__post-image-wrapper:before {
height: 0;
}
.mdl-top {
position: fixed;
z-index: 10001;
background-color: white;
width: 100%;
left: 0;
top: 0;
padding: 14px 0px 12px 0px;
margin-bottom: 21px;
margin-top: 0;
height: auto;
-o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.mdl_logo {
width: 150px;
height: 29px;
}
.mdl_logo-link {
left: 50%;
margin-left: -75px;
}
.mdl-blog-main .demo-container.mdl-grid,
.mdl-blog-main .mdl-cell,
.mdl-text__posts-wrapper {
padding: 0;
margin: 0;
width: 100%;
}
.mdl-picture__posts {
width: 100%;
}
.mdl-picture__post.top,
.mdl-picture__post.top .mdl-picture__post-image-wrapper,
.mdl-picture__post.top .mdl-picture__post-image,
.mdl-picture__post,
.mdl-picture__post-image-wrapper,
.mdl-picture__post-image {
width: 100%;
height: 175px;
}
.mdl-picture__post {
margin-top: 3px;
margin-right: 0;
}
.mdl-picture__post.top .mdl-picture__post-title,
.mdl-picture__post .mdl-picture__post-title {
font-size: 22px;
line-height: 1.25;
left: 5px;
top: 73px;
width: 95%;
height: auto;
}
.mdl-picture__post.tp_three .mdl-picture__post-title,
.mdl-picture__post.tp_two .mdl-picture__post-title,
.mdl-picture__post.tp_one .mdl-picture__post-title {
top: 114px;
}
.mdl-picture__post.top .mdl-picture__post-date,
.mdl-picture__post .mdl-picture__post-date {
font-size: 14px;
left: 5px;
bottom: 13px;
top: 150px;
width: 95%;
}
.mdl-text__post-text,
.mdl-text__post-read-more,
.mdl-text__post-i-wrapper {
display: none;
}
.mdl-text__posts,
.mdl-text__post-t-wrapper {
width: 100%;
height: auto;
}
.mdl-text__posts {
padding-left: 11px;
}
.mdl-text__post {
height: auto;
margin-top: 17px;
padding-bottom: 19px;
border-bottom: solid 1px rgba(0, 0, 0, 0.09);
}
.mdl-text__post-title {
margin-top: 0;
font-size: 14px;
}
.mdl-text__post-date {
margin: 6px 0 0 0;
font-size: 10px;
height: auto;
}
.mdl-top__teleg-item {
width: 29px;
}
.mdl-top__wrapper {
height: 29px;
}
.mdl-top__teleg {
top: 0;
left: 10px;
}
.select {
right: 10px;
top: 0;
width: 29px;
height: 29px;
font-size: 13px;
}
.select:before {
display: none;
}
.select-styled {
width: 27px;
padding: 6px 0 0 0;
height: 21px;
}
.select-styled:after {
display: none;
}
.select-options {
width: 29px;
top: 5px;
}
.select-options li:first-child {
padding-top: 35px;
}
.select-options li {
font-size: 12px;
}
}
/* SINGLE POST RESPONISVE */
@media (max-width: 1200px) {
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-single-posts__wrapper {
width: 980px;
}
}
@media (max-width: 991px) {
.mdl-layout {
background-color: white;
}
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-picture__posts.top-posts,
.mdl-picture__post.top-post {
width: 740px;
}
.mdl-single-posts__wrapper {
width: 100%;
}
.mdl-single-posts {
width: 740px;
}
.mdl-picture__post.top-post,
.mdl-picture__posts.top-post {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
width: 740px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 740px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper,
.mdl-picture__posts.top-post .mdl-picture__post {
width: 229px;
height: 216px;
}
.mdl-picture__posts.top-post .mdl-picture__post-title {
top: 114px;
font-size: 16px;
width: 94%;
}
/* .mdl-picture__post.top-post .mdl-picture__post-title, .mdl-picture__post.top-post .mdl-picture__post-date {
width: 96%;
top: 138px;
}
.mdl-picture__posts.top-post .mdl-picture__post-image-wrapper, .mdl-picture__posts.top-post .mdl-picture__post {
width: 100%;
height: 216px;
}*/
.mdl-picture__post-image-wrapper .mdl-picture__post {
margin-right: 10px;
}
.mdl-single-posts img {
height: 100%;
}
.view-all-posts {
margin-right: 0;
}
}
@media (max-width: 768px) {
.mdl-picture__post.top-post .mdl-picture__post-title {
font-size: 22px;
top: 265px;
}
.mdl-single-posts {
width: 95%;
}
.mdl-picture__post.top-post .mdl-picture__post-image,
.mdl-picture__post.top-post,
.mdl-picture__posts.top-post,
.mdl-single-posts,
.mdl-picture__posts-wrapper,
.mdl-text__posts-wrapper,
.mdl-picture__posts.top-posts,
.mdl-picture__post.top-post {
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
margin: 0 auto;
width: 100%;
}
.mdl-picture__posts.top-post .mdl-picture__post {
display: block;
margin: 17px auto 0;
}
.mdl-single-posts__wrapper {
width: 95%;
}
.next_wrapper:hover.next_wrapper:after,
.prv_wrapper:hover.prv_wrapper:after {
width: 0;
}
}
@media (max-width: 480px) {
.mdl-picture__posts.top-posts {
height: auto;
text-align: center;
}
.mdl-picture__post.top-post {
width: 100%;
height: 175px;
}
.mdl-picture__post.top-post .mdl-picture__post-image-wrapper {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-image {
height: 175px;
width: 100%;
}
.mdl-picture__post.top-post .mdl-picture__post-title,
.mdl-picture__post.top-post .mdl-picture__post-date {
left: 5px;
}
.mdl-picture__post.top-post .mdl-picture__post-title {
top: 69px;
width: 96%;
font-size: 20px;
}
.mdl-picture__post.top-post .mdl-picture__post-date {
top: unset;
bottom: 5px;
}
} | 0.419291 | 0.051582 |
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
height: 100vh;
overflow: hidden;
}
/* unauthorized page */
#body {
width: 100vw;
height: 100vh;
}
.wrapper {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
border: 3px solid black;
align-content: center;
}
.unauthorized {
display: flex;
flex-direction: column;
margin: 50px auto;
padding: 30px 30px;
border-radius: 10px;
max-width: 600px;
text-align: center;
}
.stop {
font-size: 100px;
color: brown;
}
.unauthorized h2 {
font-size: 3em;
color: #1a1a1a;
}
.unauthorized p {
color: green;
font-size: 1.5em;
font-style: italic;
transition: 1s;
transition-timing-function: ease-out;
}
.spinner {
border: 5px solid #cccccc;
border-radius: 50%;
border-top: 5px solid green;
width: 30px;
height: 30px;
margin-left: 5px;
animation: spin 2s linear infinite;
display: none;
position: absolute;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Main container */
.container {
display: flex;
height: 100%;
flex-direction: column;
padding: 20px;
background-color: green; /* For browsers that do not support gradients replace with an image */
background-image: linear-gradient(green, white, white, white, green);
width: 100vw;
opacity: .8;
overflow: auto;
}
/* Header section */
header {
display: flex;
display: -webkit-flex;
flex-basis: content;
justify-content: space-between;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
margin: 20px;
height: 100px;
}
header #head-text a {
color: white;
font-size: 1.5em;
font-weight: bolder;
}
.head-login-ul {
margin-left: auto;
margin-right: 40px;
}
.head-span {
color: white;
margin-left: 0px;
padding-left: 0px;
}
/* Main body */
.home-section:before {
content: "";
position: fixed;
left: 0;
right: 0;
z-index: -1;
display: block;
background-image: url(../images/coat_arm.png);
background-repeat: no-repeat;
height: 400px;
background-position: center;
-webkit-filter: blur(10px);
-moz-filter: blur(10px);
-o-filter: blur(10px);
-ms-filter: blur(10px);
filter: blur(10px);
}
.home-section {
margin-top: -5px;
width: 100%;
height: 400px;
background-position: center;
align-self: center;
align-items: center;
left: 0;
right: 0;
z-index: 0;
padding-bottom:40px;
opacity: 1;
}
.home-section-home {
display: flex;
flex-direction: column;
flex: 1 1 100%;
margin-top: 0px;
/* justify-content: center; */
flex-wrap: wrap;
}
#action-word {
/* margin-top: -2px; */
margin-bottom: 20px;
color: rgba(1, 51, 1, 0.808);
}
#action-word span {
font-style: oblique;
text-shadow: 2px 2px 8px rgb(158, 214, 67);
}
#signup-btn {
margin-right: 10px;
background: white;
padding: 7px;
font-weight: bold;
font-size: 1.2em;
color: rgb(75, 73, 73);
box-shadow: 0px 2px 3px 2px whitesmoke;
border-radius: 3px;
}
button:hover, .head-login-ul a:hover {
opacity: .8;;
font-weight: bolder;
}
/* Signup page */
.signup-div {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
}
.signup-flex-column {
display: flex;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
}
.signup-flex-row {
display: flex;
flex-direction: row;
}
.signup-flex {
display: flex;
/* border: 2px solid white; */
justify-content: space-between;
flex: 1 1 0;
}
.signup-flex #phone, .signup-flex #othername, .signup-flex #name {
margin-right: 5px;
}
.signup-form {
padding: 20px;
width: 40%;
margin-top: 0px;
height: fit-content;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.16) 0 15px 25px;
align-self: center;
font-family: Arial, Helvetica, sans-serif;
border:1px solid #ccc;
background: rgba(1, 51, 1, 0.671);
}
.signup-form-candidate {
margin-top: 60px;
}
.signup-form p {
color: white;
text-align: center;
margin-top: -2px;
margin-bottom: 2px;
}
/* Full-width input fields */
input[type=text], input[type=password], input[type=email], input[type=number] {
width: 100%;
padding: 10px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
color: black;
font-size: 1em;
}
input[type=file] {
width: 50%;
padding: 10px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus, input[type=file]:focus {
outline: none;
cursor: text;
}
.signup-div {
text-align: center;
padding-bottom: 5px;
color: rgb(1, 27, 27);
font-size: 1.2em;
font-weight: bolder;
}
.fill-up {
text-align: center;
padding-bottom: 5px;
color: rgb(244, 248, 248);
font-size: 1em;
font-weight: bold;
}
.fill-up2 {
color: black;
}
.hr {
color: rgb(84, 84, 168);
font-weight: normal;
}
.sp-red {
color: brown;
padding-bottom: 5px;
padding-top: 5px;
}
.white-div {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background: rgb(218, 218, 218);
height: max-content;
}
#upload-label {
text-align: start;
}
.signupbtn {
background-color: rgb(12, 241, 12);
color: rgb(75, 73, 73);
padding: 10px;
margin: 8px 0;
border: none;
cursor: pointer;
outline: none;
border-radius: 5px;
align-self: center;
text-align: center;
font-weight: bold;
font-size: 1.2em;
}
.signupbtn1 {
font-size: 1em;
}
.signupbtn-center {
font-size: 1em;
}
/* Login page */
#login-fillup {
color: black;
}
#forgot-psw {
font-size: .9em;
}
.white-div2 {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background: white;
height: max-content;
}
#forgot-btn {
outline: 0;
background: none;
border: 0;
cursor: pointer;
font-size: 1em;
color: white;margin-top: 5px;
}
/* Reset password */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 200px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(110, 131, 114, 0.973);
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
border-radius: 10px;
padding: 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0 6px 25px;
border: 1px solid #888;
margin-top: 20px;
width: 40%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
#reset-psw {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
flex: 1;
width: 100%;
text-align: center;
}
#reset-psw p {
color: black;
display: block;
}
input[type=email] {
padding: 10px;
margin: 5px 0 22px 0;
border: none;
outline: none;
display: block;
align-self: center;
background: #f1f1f1;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
#send-link {
background: green;
color: white;
font-size: 1em;
}
/* Countdown */
.ema-number1 {
font-size: 1em;
font-family: sans-serif;
font-weight: bolder;
border-radius: 5px;
color: green;
margin-top: -10px;
text-align: center;
}
.demo {
color: white;
border-left: 1px dotted;
border-right: 1px dotted;
border-radius: 2px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
display: inline-block;
background: rgba(1, 51, 1, 0.671);
font-size: 1.3em;
width: fit-content;
}
.ul-login li {
font-size: 1em;
}
.count-span {
display: inline-block;
font-size: .5em;
padding-left: 2px;
/* border-top: 1px solid white; */
}
.countdown-div{
/* margin-top: 120px; */
align-self: baseline;
/* font-size: 1em; */
}
.countdown-di-login {
margin-top: 0px;
}
/* Profile */
#user-desc {
padding: 2px;
border-bottom: 1px solid rgba(112, 112, 112, 0.27);
border-right: none;
}
#main-content-page {
max-width: 900px;
margin: auto;
}
#user-cont {
border-radius: 6px;
width: 100%;
}
#user-img {
width: 140px;
height: auto;
}
#user-desc h4 {
margin-bottom: 1.5rem;
margin-top: 2rem;
}
#user-desc > img {
margin: auto;
display: block;
}
#user-info {
flex: 0 1 70%;
padding: 20px 40px;
}
#user-info h4 {
margin: 0;
}
.text-center {
text-align: center;
color: black;
font-size: 1em;
}
.mb-6 {
margin-bottom: 6rem;
}
.content-between {
justify-content: space-between;
}
.btn {
display: inline-block;
outline: none;
border-radius: 4px;
font-size: 0.8rem;
}
/* Remove default formats */
a {
text-decoration: none;
}
li {
list-style: none;
}
.red-err {
color: yellow;
font-style: italic;
}
#email-error {
float: right;
margin-top: -15px;
margin-right: 10px;
}
#email-div {
display: flex;
margin-left: 5px;
flex-direction: column;
/* min-width: 50%; */
flex: 1;
/* justify-content: space-around; */
}
#other-div {
/* min-width: 50%; */
flex: 1;
}
/* Footer */
footer {
text-align: center;
position:absolute;
bottom:0;
color: whitesmoke;
font-style: italic;
font-weight: bolder;
width:100%;
height:40px; /* Height of the footer */
}
/* Handle ui elements on small screens */
@media screen and (max-width: 300px) {
header {
margin-top: 0px;
justify-content: flex-start;
}
.home-header {
display: flex;
justify-content: space-between;
}
#head-text-div {
margin-top: -4px;
}
#head-text a {
font-size: 1em;
}
#signup-btn {
padding: 5px;
font-size: 1em;
}
.head-login-div {
align-self: flex-end;
margin-top: 0px;
}
#countdown-div{
width: 300px;
}
#countdown-div li{
font-size: 1.2em;
margin-top: 2px;
/* margin-left: 10px; */
}
#ul {
margin-left: 15px;
}
.ema-number1 p {
font-size: .8em;
font-weight: bolder;
text-align: start;
margin-top: 20px;
}
#action-word h2 {
font-size: .9em;
text-align: center;
}
.login-form {
padding: 20px;
width: 80%;
margin-top: 0px;
height: fit-content;
}
.signupbtn {
font-size: .9em;
padding: 7px;
}
#forgot-psw-small,#forgot-btn {
font-size: .9em;
}
footer {
font-size: .8em;
margin-left: 0px;
}
}
@media all and (max-width:1000px) {
}
@media all and (max-width: 500px) {
header {
margin-top: 0px;
justify-content: flex-start;
}
#head-text-div {
margin-top: -4px;
}
#head-text a {
font-size: 1em;
}
.home-header {
display: flex;
justify-content: space-between;
}
.head-login {
display: flex;
justify-content: space-between;
}
#signup-btn {
padding: 5px;
font-size: 1em;
}
.head-login-div {
align-self: flex-end;
margin-top: 4px;
}
#countdown-div{
order: 1;
width: 300px;
}
#countdown-div li{
font-size: 1.2em;
margin-top: 2px;
}
#ul {
margin-left: 15px;
}
.ema-number1 p {
font-size: .8em;
font-weight: bolder;
text-align: start;
margin-top: 20px;
}
#action-word h2 {
font-size: .9em;
text-align: center;
}
.signup-form {
padding: 20px;
width: 80%;
margin-top: 0px;
height: fit-content;
}
.signupbtn {
font-size: .9em;
padding: 7px;
}
#forgot-psw-small,#forgot-btn {
font-size: .9em;
}
footer {
font-size: .8em;
margin-left: 0px;
}
} | pages/css/main.css | *{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
height: 100vh;
overflow: hidden;
}
/* unauthorized page */
#body {
width: 100vw;
height: 100vh;
}
.wrapper {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
border: 3px solid black;
align-content: center;
}
.unauthorized {
display: flex;
flex-direction: column;
margin: 50px auto;
padding: 30px 30px;
border-radius: 10px;
max-width: 600px;
text-align: center;
}
.stop {
font-size: 100px;
color: brown;
}
.unauthorized h2 {
font-size: 3em;
color: #1a1a1a;
}
.unauthorized p {
color: green;
font-size: 1.5em;
font-style: italic;
transition: 1s;
transition-timing-function: ease-out;
}
.spinner {
border: 5px solid #cccccc;
border-radius: 50%;
border-top: 5px solid green;
width: 30px;
height: 30px;
margin-left: 5px;
animation: spin 2s linear infinite;
display: none;
position: absolute;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Main container */
.container {
display: flex;
height: 100%;
flex-direction: column;
padding: 20px;
background-color: green; /* For browsers that do not support gradients replace with an image */
background-image: linear-gradient(green, white, white, white, green);
width: 100vw;
opacity: .8;
overflow: auto;
}
/* Header section */
header {
display: flex;
display: -webkit-flex;
flex-basis: content;
justify-content: space-between;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
margin: 20px;
height: 100px;
}
header #head-text a {
color: white;
font-size: 1.5em;
font-weight: bolder;
}
.head-login-ul {
margin-left: auto;
margin-right: 40px;
}
.head-span {
color: white;
margin-left: 0px;
padding-left: 0px;
}
/* Main body */
.home-section:before {
content: "";
position: fixed;
left: 0;
right: 0;
z-index: -1;
display: block;
background-image: url(../images/coat_arm.png);
background-repeat: no-repeat;
height: 400px;
background-position: center;
-webkit-filter: blur(10px);
-moz-filter: blur(10px);
-o-filter: blur(10px);
-ms-filter: blur(10px);
filter: blur(10px);
}
.home-section {
margin-top: -5px;
width: 100%;
height: 400px;
background-position: center;
align-self: center;
align-items: center;
left: 0;
right: 0;
z-index: 0;
padding-bottom:40px;
opacity: 1;
}
.home-section-home {
display: flex;
flex-direction: column;
flex: 1 1 100%;
margin-top: 0px;
/* justify-content: center; */
flex-wrap: wrap;
}
#action-word {
/* margin-top: -2px; */
margin-bottom: 20px;
color: rgba(1, 51, 1, 0.808);
}
#action-word span {
font-style: oblique;
text-shadow: 2px 2px 8px rgb(158, 214, 67);
}
#signup-btn {
margin-right: 10px;
background: white;
padding: 7px;
font-weight: bold;
font-size: 1.2em;
color: rgb(75, 73, 73);
box-shadow: 0px 2px 3px 2px whitesmoke;
border-radius: 3px;
}
button:hover, .head-login-ul a:hover {
opacity: .8;;
font-weight: bolder;
}
/* Signup page */
.signup-div {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
}
.signup-flex-column {
display: flex;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
}
.signup-flex-row {
display: flex;
flex-direction: row;
}
.signup-flex {
display: flex;
/* border: 2px solid white; */
justify-content: space-between;
flex: 1 1 0;
}
.signup-flex #phone, .signup-flex #othername, .signup-flex #name {
margin-right: 5px;
}
.signup-form {
padding: 20px;
width: 40%;
margin-top: 0px;
height: fit-content;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.16) 0 15px 25px;
align-self: center;
font-family: Arial, Helvetica, sans-serif;
border:1px solid #ccc;
background: rgba(1, 51, 1, 0.671);
}
.signup-form-candidate {
margin-top: 60px;
}
.signup-form p {
color: white;
text-align: center;
margin-top: -2px;
margin-bottom: 2px;
}
/* Full-width input fields */
input[type=text], input[type=password], input[type=email], input[type=number] {
width: 100%;
padding: 10px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
color: black;
font-size: 1em;
}
input[type=file] {
width: 50%;
padding: 10px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus, input[type=file]:focus {
outline: none;
cursor: text;
}
.signup-div {
text-align: center;
padding-bottom: 5px;
color: rgb(1, 27, 27);
font-size: 1.2em;
font-weight: bolder;
}
.fill-up {
text-align: center;
padding-bottom: 5px;
color: rgb(244, 248, 248);
font-size: 1em;
font-weight: bold;
}
.fill-up2 {
color: black;
}
.hr {
color: rgb(84, 84, 168);
font-weight: normal;
}
.sp-red {
color: brown;
padding-bottom: 5px;
padding-top: 5px;
}
.white-div {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background: rgb(218, 218, 218);
height: max-content;
}
#upload-label {
text-align: start;
}
.signupbtn {
background-color: rgb(12, 241, 12);
color: rgb(75, 73, 73);
padding: 10px;
margin: 8px 0;
border: none;
cursor: pointer;
outline: none;
border-radius: 5px;
align-self: center;
text-align: center;
font-weight: bold;
font-size: 1.2em;
}
.signupbtn1 {
font-size: 1em;
}
.signupbtn-center {
font-size: 1em;
}
/* Login page */
#login-fillup {
color: black;
}
#forgot-psw {
font-size: .9em;
}
.white-div2 {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background: white;
height: max-content;
}
#forgot-btn {
outline: 0;
background: none;
border: 0;
cursor: pointer;
font-size: 1em;
color: white;margin-top: 5px;
}
/* Reset password */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 200px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(110, 131, 114, 0.973);
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
border-radius: 10px;
padding: 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0 6px 25px;
border: 1px solid #888;
margin-top: 20px;
width: 40%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
#reset-psw {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
flex: 1;
width: 100%;
text-align: center;
}
#reset-psw p {
color: black;
display: block;
}
input[type=email] {
padding: 10px;
margin: 5px 0 22px 0;
border: none;
outline: none;
display: block;
align-self: center;
background: #f1f1f1;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
#send-link {
background: green;
color: white;
font-size: 1em;
}
/* Countdown */
.ema-number1 {
font-size: 1em;
font-family: sans-serif;
font-weight: bolder;
border-radius: 5px;
color: green;
margin-top: -10px;
text-align: center;
}
.demo {
color: white;
border-left: 1px dotted;
border-right: 1px dotted;
border-radius: 2px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
display: inline-block;
background: rgba(1, 51, 1, 0.671);
font-size: 1.3em;
width: fit-content;
}
.ul-login li {
font-size: 1em;
}
.count-span {
display: inline-block;
font-size: .5em;
padding-left: 2px;
/* border-top: 1px solid white; */
}
.countdown-div{
/* margin-top: 120px; */
align-self: baseline;
/* font-size: 1em; */
}
.countdown-di-login {
margin-top: 0px;
}
/* Profile */
#user-desc {
padding: 2px;
border-bottom: 1px solid rgba(112, 112, 112, 0.27);
border-right: none;
}
#main-content-page {
max-width: 900px;
margin: auto;
}
#user-cont {
border-radius: 6px;
width: 100%;
}
#user-img {
width: 140px;
height: auto;
}
#user-desc h4 {
margin-bottom: 1.5rem;
margin-top: 2rem;
}
#user-desc > img {
margin: auto;
display: block;
}
#user-info {
flex: 0 1 70%;
padding: 20px 40px;
}
#user-info h4 {
margin: 0;
}
.text-center {
text-align: center;
color: black;
font-size: 1em;
}
.mb-6 {
margin-bottom: 6rem;
}
.content-between {
justify-content: space-between;
}
.btn {
display: inline-block;
outline: none;
border-radius: 4px;
font-size: 0.8rem;
}
/* Remove default formats */
a {
text-decoration: none;
}
li {
list-style: none;
}
.red-err {
color: yellow;
font-style: italic;
}
#email-error {
float: right;
margin-top: -15px;
margin-right: 10px;
}
#email-div {
display: flex;
margin-left: 5px;
flex-direction: column;
/* min-width: 50%; */
flex: 1;
/* justify-content: space-around; */
}
#other-div {
/* min-width: 50%; */
flex: 1;
}
/* Footer */
footer {
text-align: center;
position:absolute;
bottom:0;
color: whitesmoke;
font-style: italic;
font-weight: bolder;
width:100%;
height:40px; /* Height of the footer */
}
/* Handle ui elements on small screens */
@media screen and (max-width: 300px) {
header {
margin-top: 0px;
justify-content: flex-start;
}
.home-header {
display: flex;
justify-content: space-between;
}
#head-text-div {
margin-top: -4px;
}
#head-text a {
font-size: 1em;
}
#signup-btn {
padding: 5px;
font-size: 1em;
}
.head-login-div {
align-self: flex-end;
margin-top: 0px;
}
#countdown-div{
width: 300px;
}
#countdown-div li{
font-size: 1.2em;
margin-top: 2px;
/* margin-left: 10px; */
}
#ul {
margin-left: 15px;
}
.ema-number1 p {
font-size: .8em;
font-weight: bolder;
text-align: start;
margin-top: 20px;
}
#action-word h2 {
font-size: .9em;
text-align: center;
}
.login-form {
padding: 20px;
width: 80%;
margin-top: 0px;
height: fit-content;
}
.signupbtn {
font-size: .9em;
padding: 7px;
}
#forgot-psw-small,#forgot-btn {
font-size: .9em;
}
footer {
font-size: .8em;
margin-left: 0px;
}
}
@media all and (max-width:1000px) {
}
@media all and (max-width: 500px) {
header {
margin-top: 0px;
justify-content: flex-start;
}
#head-text-div {
margin-top: -4px;
}
#head-text a {
font-size: 1em;
}
.home-header {
display: flex;
justify-content: space-between;
}
.head-login {
display: flex;
justify-content: space-between;
}
#signup-btn {
padding: 5px;
font-size: 1em;
}
.head-login-div {
align-self: flex-end;
margin-top: 4px;
}
#countdown-div{
order: 1;
width: 300px;
}
#countdown-div li{
font-size: 1.2em;
margin-top: 2px;
}
#ul {
margin-left: 15px;
}
.ema-number1 p {
font-size: .8em;
font-weight: bolder;
text-align: start;
margin-top: 20px;
}
#action-word h2 {
font-size: .9em;
text-align: center;
}
.signup-form {
padding: 20px;
width: 80%;
margin-top: 0px;
height: fit-content;
}
.signupbtn {
font-size: .9em;
padding: 7px;
}
#forgot-psw-small,#forgot-btn {
font-size: .9em;
}
footer {
font-size: .8em;
margin-left: 0px;
}
} | 0.47244 | 0.067979 |
.np-container {
height: 100%;
width: 100%;
max-width: 800px;
position: relative;
overflow: hidden;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
margin: 0 auto;
}
.np-overlay {
font-size: 1em;
font-weight: bold;
text-align: center;
padding-top: 1em;
box-sizing: border-box;
}
.blur {
background: rgba(181, 211, 231, 0.6);
width: 100%;
height: 100%;
top: 0px;
position: absolute;
z-index: 50;
}
.np-overlay-content {
position: relative;
z-index: 101;
width: 80%;
margin: 0 auto;
}
#nano-button {
position: relative;
z-index: 100;
padding-top: 1em;
padding-bottom: 1em;
}
.np-backdrop {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
text-align: left;
padding: 1em;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
/* Center BB setup after opening QR code */
.xcomponent-tag-brainblocks-button {
margin: 0 auto;
}
/*
.np-info-button:after {
content: ' \2754';
line-height: 1em;
width: 1em;
border-radius: 50%;
background-color: #4a90e2;
text-align: center;
vertical-align: middle;
position: absolute;
top: 0.1em;
margin-left: 0.5em;
}
.np-info-button {
position:relative;
line-height: 1em;
width: 1em;
cursor: pointer;
font-size: 0.8em;
}*/
a.np-info-button {
vertical-align: bottom;
position:relative; /* Anything but static */
width: 1.5em;
height: 1.5em;
text-indent: -9999em;
display: inline-block;
color: white;
font-weight:bold;
font-size:1em;
line-height:1em;
background-color: #4a90e2;
margin-left: .25em;
-webkit-border-radius:.75em;
-moz-border-radius:.75em;
border-radius:.75em;
margin-bottom: 0.25em;
}
a.np-info-button:hover {
background-color:#ffffff;
color:#4a90e2;
cursor: hand;
cursor: pointer;
}
a.np-info-button:before {
content:"?";
position: absolute;
top: .25em;
left:0;
text-indent: 0;
display:block;
width:1.5em;
text-align:center;
}
label a.info,
label div.popover.fade.in {
opacity: 0;
-webkit-transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
transition: opacity 0.2s ease;
}
label:hover a.info,
label:hover div.popover.fade.in {
opacity: 1; }
.np-info {
position: relative;
z-index: 101;
background-color: #f2f2f2;
border: 1px solid #4a90e2;
width: 80%;
margin: 0 auto;
font-weight: normal;
font-size: 0.8em;
padding: 0.5em;
display: none;
} | css/nano-paywall.css | .np-container {
height: 100%;
width: 100%;
max-width: 800px;
position: relative;
overflow: hidden;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
margin: 0 auto;
}
.np-overlay {
font-size: 1em;
font-weight: bold;
text-align: center;
padding-top: 1em;
box-sizing: border-box;
}
.blur {
background: rgba(181, 211, 231, 0.6);
width: 100%;
height: 100%;
top: 0px;
position: absolute;
z-index: 50;
}
.np-overlay-content {
position: relative;
z-index: 101;
width: 80%;
margin: 0 auto;
}
#nano-button {
position: relative;
z-index: 100;
padding-top: 1em;
padding-bottom: 1em;
}
.np-backdrop {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
text-align: left;
padding: 1em;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
/* Center BB setup after opening QR code */
.xcomponent-tag-brainblocks-button {
margin: 0 auto;
}
/*
.np-info-button:after {
content: ' \2754';
line-height: 1em;
width: 1em;
border-radius: 50%;
background-color: #4a90e2;
text-align: center;
vertical-align: middle;
position: absolute;
top: 0.1em;
margin-left: 0.5em;
}
.np-info-button {
position:relative;
line-height: 1em;
width: 1em;
cursor: pointer;
font-size: 0.8em;
}*/
a.np-info-button {
vertical-align: bottom;
position:relative; /* Anything but static */
width: 1.5em;
height: 1.5em;
text-indent: -9999em;
display: inline-block;
color: white;
font-weight:bold;
font-size:1em;
line-height:1em;
background-color: #4a90e2;
margin-left: .25em;
-webkit-border-radius:.75em;
-moz-border-radius:.75em;
border-radius:.75em;
margin-bottom: 0.25em;
}
a.np-info-button:hover {
background-color:#ffffff;
color:#4a90e2;
cursor: hand;
cursor: pointer;
}
a.np-info-button:before {
content:"?";
position: absolute;
top: .25em;
left:0;
text-indent: 0;
display:block;
width:1.5em;
text-align:center;
}
label a.info,
label div.popover.fade.in {
opacity: 0;
-webkit-transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
transition: opacity 0.2s ease;
}
label:hover a.info,
label:hover div.popover.fade.in {
opacity: 1; }
.np-info {
position: relative;
z-index: 101;
background-color: #f2f2f2;
border: 1px solid #4a90e2;
width: 80%;
margin: 0 auto;
font-weight: normal;
font-size: 0.8em;
padding: 0.5em;
display: none;
} | 0.489748 | 0.098773 |
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
position: relative;
}
html,body {
height: 100%;
min-height: 100%;
}
.clear {
clear: both;
float: none!important;
font-size: 0;
margin: 0;
padding: 0;
height: 0;
display: block;
}
.header{
width: 100%;
padding: 15px 0 ;
margin-bottom: 45px;
box-shadow: 0 1px 2px rgba(0,0,0,0.15);
background: #f7f7f7;
}
.header img{
float: left;
}
.header h2{
float: left;
width: 500px;
margin: 0;
margin-left: 30px;
color: #111;
font-weight: 500;
border-left: 1px solid #ddd;
padding: 0 0 0 20px;
color: #222933;
font-weight: 200;
}
#description .text-right{
color: #888;
margin-bottom: 20px;
}
.content {
margin: 0 auto;
width: 900px;
}
.wrapper{
padding-bottom: 140px;
position: relative;
}
.box_form{
background: #fff;
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
padding: 5px 10px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.box_form h3{
color: #999;
text-align: center;
padding-bottom: 8px;
}
.calcule{
float: right;
margin: 148px 0 0 0;
position: relative;
}
.btn.btn-primary{
border: 1px solid #aac51d;
background: #9cbd10;
font-weight: bold;
color: #293a43;
text-shadow: 0 1px 0 rgba(255,255,255,0.3);
border-radius: 20px;
-ms-border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
padding-left: 40px;
padding-right: 40px;
outline: none;
}
.btn.btn-primary:focus{
outline: none;
}
.btn.btn-primary:hover{
background: #aac51d;
}
.btn.btn-primary.disabled{
background: #eee;
color: #ddd;
border: #eee;
cursor: default;
opacity: 1;
}
.btn.btn-primary.disabled:hover{
background: #eee;
color: #ddd;
border: #eee;
cursor: default;
}
.calcule.loading span{
position: absolute;
display: block;
width: 16px;
height: 16px;
top: 14px;
left: 12px;
background: url(../images/button_loader.gif) no-repeat 0 0;
}
#result{
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
margin-top: 40px;
background: #f1f1f1;
padding: 10px 20px;
position: relative;
}
#result .alert{
position: absolute;
top: -25px;
left: 0;
margin: 0;
padding: 6px 15px;
width: 100%;
display: none;
}
.arrow{
background: url(../images/arrows.png) no-repeat 50% 145%;
height: 180px;
}
.arrow.up{
background: url(../images/arrows_green.png) no-repeat 50% 145%;
}
.arrow.down{
background: url(../images/arrows_red.png) no-repeat 50% 145%;
}
.arrow.up.down{
background: url(../images/arrows_green_red.png) no-repeat 50% 145%;
}
.arrow h3{
color: #999;
}
.confidence{
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
background: #f7f7f7;
text-align: center;
padding: 14px 10px;
margin-top: 70px;
}
.confidence span{
font-size: 16px;
font-weight: 200;
display: block;
color: #888;
}
.confidence strong{
font-size: 18px;
font-weight: 800;
display: block;
}
.footer{
width: 100%;
position: absolute;
bottom: 0;
left: 0;
height: 80px;
background: #373737;
color: #eee;
text-align: center;
padding-top: 30px;
}
.footer a{
text-decoration: none;
color: #eee;
font-weight: 300;
font-size: 12px;
padding: 10px 70px 10px 0;
background: url(../images/logo_bigml.png) no-repeat 100% 50%;
opacity: 0.8;
}
.footer a:hover{
opacity: 1;
} | app/css/app.css | body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
position: relative;
}
html,body {
height: 100%;
min-height: 100%;
}
.clear {
clear: both;
float: none!important;
font-size: 0;
margin: 0;
padding: 0;
height: 0;
display: block;
}
.header{
width: 100%;
padding: 15px 0 ;
margin-bottom: 45px;
box-shadow: 0 1px 2px rgba(0,0,0,0.15);
background: #f7f7f7;
}
.header img{
float: left;
}
.header h2{
float: left;
width: 500px;
margin: 0;
margin-left: 30px;
color: #111;
font-weight: 500;
border-left: 1px solid #ddd;
padding: 0 0 0 20px;
color: #222933;
font-weight: 200;
}
#description .text-right{
color: #888;
margin-bottom: 20px;
}
.content {
margin: 0 auto;
width: 900px;
}
.wrapper{
padding-bottom: 140px;
position: relative;
}
.box_form{
background: #fff;
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
padding: 5px 10px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.box_form h3{
color: #999;
text-align: center;
padding-bottom: 8px;
}
.calcule{
float: right;
margin: 148px 0 0 0;
position: relative;
}
.btn.btn-primary{
border: 1px solid #aac51d;
background: #9cbd10;
font-weight: bold;
color: #293a43;
text-shadow: 0 1px 0 rgba(255,255,255,0.3);
border-radius: 20px;
-ms-border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
padding-left: 40px;
padding-right: 40px;
outline: none;
}
.btn.btn-primary:focus{
outline: none;
}
.btn.btn-primary:hover{
background: #aac51d;
}
.btn.btn-primary.disabled{
background: #eee;
color: #ddd;
border: #eee;
cursor: default;
opacity: 1;
}
.btn.btn-primary.disabled:hover{
background: #eee;
color: #ddd;
border: #eee;
cursor: default;
}
.calcule.loading span{
position: absolute;
display: block;
width: 16px;
height: 16px;
top: 14px;
left: 12px;
background: url(../images/button_loader.gif) no-repeat 0 0;
}
#result{
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
margin-top: 40px;
background: #f1f1f1;
padding: 10px 20px;
position: relative;
}
#result .alert{
position: absolute;
top: -25px;
left: 0;
margin: 0;
padding: 6px 15px;
width: 100%;
display: none;
}
.arrow{
background: url(../images/arrows.png) no-repeat 50% 145%;
height: 180px;
}
.arrow.up{
background: url(../images/arrows_green.png) no-repeat 50% 145%;
}
.arrow.down{
background: url(../images/arrows_red.png) no-repeat 50% 145%;
}
.arrow.up.down{
background: url(../images/arrows_green_red.png) no-repeat 50% 145%;
}
.arrow h3{
color: #999;
}
.confidence{
-ms-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
background: #f7f7f7;
text-align: center;
padding: 14px 10px;
margin-top: 70px;
}
.confidence span{
font-size: 16px;
font-weight: 200;
display: block;
color: #888;
}
.confidence strong{
font-size: 18px;
font-weight: 800;
display: block;
}
.footer{
width: 100%;
position: absolute;
bottom: 0;
left: 0;
height: 80px;
background: #373737;
color: #eee;
text-align: center;
padding-top: 30px;
}
.footer a{
text-decoration: none;
color: #eee;
font-weight: 300;
font-size: 12px;
padding: 10px 70px 10px 0;
background: url(../images/logo_bigml.png) no-repeat 100% 50%;
opacity: 0.8;
}
.footer a:hover{
opacity: 1;
} | 0.379034 | 0.074703 |
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");
body {
overflow-x: hidden;
line-height: 1.6em;
letter-spacing: -0.020em;
font-family: 'Source Sans Pro', sans-serif;
font-size: 14pt;
font-weight: 320;
background: #CCCCCC;
color: #FFFFFF;
}
@keyframes frame-animation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#frame {
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
animation: frame-animation 3s forwards;
}
#background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#contentLocator {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-align: center;
}
#contentLocator:before {
content: '';
display: inline-block;
width: 1px;
height: 100%;
margin-right: 0;
vertical-align: middle;
}
@keyframes contentArea-animation {
0% {
transform: translate3d(0, 1em, 0);
opacity: 0;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
#contentArea {
display: inline-block;
position: relative;
width: 90%;
top: -1em;
vertical-align: middle;
text-align: center;
opacity: 0;
animation: contentArea-animation 0.8s 2.0s forwards;
}
#contentArea h1 {
margin-block-end: 0.4em;
line-height: 1em;
letter-spacing: -0.032em;
font-size: 4.4em;
font-weight: 920;
}
#contentArea p {
margin: 0.75em 0 0.25em 0;
font-size: 1.25em;
opacity: 0.75;
}
@keyframes nav-icon-animation {
0% {
transform: translate3d(0, 1em, 0);
opacity: 0;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.icon {
position: relative;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
nav {
margin: 0;
}
nav ul {
padding: 0px;
}
nav li {
display: inline-block;
position: relative;
width: 5.3em;
height: 5.3em;
top: 0;
backface-visibility: hidden;
line-height: 5.885em;
opacity: 0;
animation-delay: 1.5s;
animation: nav-icon-animation 0.5s ease-in-out forwards;
}
nav a {
display: inline-block;
text-decoration: none;
color: white;
}
nav a:before {
display: block;
position: relative;
width: 2.5em;
height: 2.5em;
border-radius: 100%;
line-height: 2.5em;
font-size: 1.7em;
text-align: center;
transition: all 0.2s ease-in-out;
}
nav a:hover {
font-size: 1.1em;
}
nav a:hover:before {
background-color: rgba(255, 255, 255, 0.2);
}
nav a:active {
font-size: 0.95em;
}
nav a:active:before {
background-color: rgba(255, 255, 255, 0.3);
}
nav a span {
display: none;
} | input/styles.css | @import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");
body {
overflow-x: hidden;
line-height: 1.6em;
letter-spacing: -0.020em;
font-family: 'Source Sans Pro', sans-serif;
font-size: 14pt;
font-weight: 320;
background: #CCCCCC;
color: #FFFFFF;
}
@keyframes frame-animation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#frame {
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
animation: frame-animation 3s forwards;
}
#background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#contentLocator {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-align: center;
}
#contentLocator:before {
content: '';
display: inline-block;
width: 1px;
height: 100%;
margin-right: 0;
vertical-align: middle;
}
@keyframes contentArea-animation {
0% {
transform: translate3d(0, 1em, 0);
opacity: 0;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
#contentArea {
display: inline-block;
position: relative;
width: 90%;
top: -1em;
vertical-align: middle;
text-align: center;
opacity: 0;
animation: contentArea-animation 0.8s 2.0s forwards;
}
#contentArea h1 {
margin-block-end: 0.4em;
line-height: 1em;
letter-spacing: -0.032em;
font-size: 4.4em;
font-weight: 920;
}
#contentArea p {
margin: 0.75em 0 0.25em 0;
font-size: 1.25em;
opacity: 0.75;
}
@keyframes nav-icon-animation {
0% {
transform: translate3d(0, 1em, 0);
opacity: 0;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.icon {
position: relative;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
nav {
margin: 0;
}
nav ul {
padding: 0px;
}
nav li {
display: inline-block;
position: relative;
width: 5.3em;
height: 5.3em;
top: 0;
backface-visibility: hidden;
line-height: 5.885em;
opacity: 0;
animation-delay: 1.5s;
animation: nav-icon-animation 0.5s ease-in-out forwards;
}
nav a {
display: inline-block;
text-decoration: none;
color: white;
}
nav a:before {
display: block;
position: relative;
width: 2.5em;
height: 2.5em;
border-radius: 100%;
line-height: 2.5em;
font-size: 1.7em;
text-align: center;
transition: all 0.2s ease-in-out;
}
nav a:hover {
font-size: 1.1em;
}
nav a:hover:before {
background-color: rgba(255, 255, 255, 0.2);
}
nav a:active {
font-size: 0.95em;
}
nav a:active:before {
background-color: rgba(255, 255, 255, 0.3);
}
nav a span {
display: none;
} | 0.542621 | 0.078289 |
.editor {
float: left;
width: 49%;
margin: 0;
padding: 0;
height: 100%;
}
.user-code {
width: 100%;
height: 80em;
resize: none;
overflow: scroll;
font-family: monospace;
}
.interactions {
float: right;
width: 49%;
margin-left: 1em;
padding: 0;
/* height: 100%; */
}
.headers {
font-family: monospace;
}
.descriptors {
font-family: monospace;
color: #484848;
font-size: 80%;
}
.repl-code {
height: 2em;
width: 30em;
text-align: left;
font-family: monospace;
}
.prompt {
vertical-align: middle;
}
.output pre {
max-width: 100%;
white-space: break-spaces;
line-break: anywhere;
}
.runbtn {
font-size: 16px;
border: none;
outline: none;
color: black;
padding: 10px 10px;
margin: 4px 4px;
background-color: inherit;
margin: 0;
}
.runbtn:hover {
background-color: #ddd;
}
/**************************/
/* Dropdown button ********/
/**************************/
/* The dropdown container */
.dropdown {
float: left;
overflow: hidden;
z-index: 999;
}
/* Dropdown button */
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: 1px;
color: black;
padding: 10px 10px;
margin: 4px 4px;
background-color: inherit;
/* font-family: inherit; /\* Important for vertical align on mobile phones *\/ */
margin: 0; /* Important for vertical align on mobile phones */
border-right:2px dotted gainsboro;
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: gainsboro;
}
/* 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: 999;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 10; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 60%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} | style.css | .editor {
float: left;
width: 49%;
margin: 0;
padding: 0;
height: 100%;
}
.user-code {
width: 100%;
height: 80em;
resize: none;
overflow: scroll;
font-family: monospace;
}
.interactions {
float: right;
width: 49%;
margin-left: 1em;
padding: 0;
/* height: 100%; */
}
.headers {
font-family: monospace;
}
.descriptors {
font-family: monospace;
color: #484848;
font-size: 80%;
}
.repl-code {
height: 2em;
width: 30em;
text-align: left;
font-family: monospace;
}
.prompt {
vertical-align: middle;
}
.output pre {
max-width: 100%;
white-space: break-spaces;
line-break: anywhere;
}
.runbtn {
font-size: 16px;
border: none;
outline: none;
color: black;
padding: 10px 10px;
margin: 4px 4px;
background-color: inherit;
margin: 0;
}
.runbtn:hover {
background-color: #ddd;
}
/**************************/
/* Dropdown button ********/
/**************************/
/* The dropdown container */
.dropdown {
float: left;
overflow: hidden;
z-index: 999;
}
/* Dropdown button */
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: 1px;
color: black;
padding: 10px 10px;
margin: 4px 4px;
background-color: inherit;
/* font-family: inherit; /\* Important for vertical align on mobile phones *\/ */
margin: 0; /* Important for vertical align on mobile phones */
border-right:2px dotted gainsboro;
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: gainsboro;
}
/* 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: 999;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 10; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 60%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} | 0.517815 | 0.158793 |
color: #fff;
font-family: Montserrat;
margin: auto;
margin-top: 10vh;
text-transform: uppercase;
width: 122vh;
}
#inventory p {
color: #fff;
}
#inventory #feet-items {
height: 7vh;
width: 67%;
}
#inventory #feet-items .health {
background: linear-gradient(to right, #0fa04b 10%, #1a5932 10%);
margin-top: 1vh;
}
#inventory #feet-items .satiety {
background: linear-gradient(to right, #a67d10 100%, #493d20 100%);
}
#inventory #feet-items .thirst {
background: linear-gradient(to right, #1070a0 100%, #1b475c 100%);
}
#inventory #feet-items .info {
border: none;
font-size: 1vh;
text-align: right;
}
#inventory #feet-items .info p {
font-size: 1.2vh;
margin: 0;
}
#inventory #feet-items .progress {
height: 1.2vh;
margin-bottom: 0.8vh;
width: 10vh;
}
#inventory #feet-items .progress img {
height: 1.1vh;
opacity: 0.8;
position: relative;
right: -1.7vh;
}
#inventory #head-items {
height: 7vh;
margin-top: 4vh;
}
#inventory #legs-items {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
height: 12vh;
}
#inventory #top-items {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
height: 12vh;
}
#inventory .bank {
color: #06ca5a;
}
#inventory .block {
background: #000;
height: 60vh;
margin: auto;
width: 40vh;
}
#inventory .container .items {
display: grid;
height: 20vh;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(5, 1fr);
opacity: 0.9;
margin-bottom: 0.5vh;
margin-top: 0.2vh;
}
#inventory .container .items .column {
background: #222;
border-bottom: 1px solid #5c5c5d;
border-right: 1px solid #5c5c5d;
display: flex;
}
#inventory .container .items .filled {
background: #000;
}
#inventory .container .items .item {
height: 3vh;
width: 3vh;
}
#inventory .container .header {
background: #000;
margin: 0;
padding: 1vh;
}
#inventory .container .header .name {
color: #06ca5a;
}
#inventory .hands {
background: #000;
height: 11vh;
margin: 0.5vh auto;
opacity: 0.9;
width: 40vh;
}
#inventory .hands .hands_name {
color: #3a3a3a;
}
#inventory .hands .header {
padding: 1vh 0vh;
}
#inventory .hands .left-hand {
float: left;
margin-left: 10vh;
width: 3vh;
}
#inventory .hands .right-hand {
float: right;
margin-right: 10vh;
transform: scaleX(-1);
width: 3vh;
}
#inventory .header {
margin: 0 1vh;
}
#inventory .inventory_menu {
background: #000;
color: #fff;
min-width: 15vh;
position: absolute;
/*top: 10vh;
right: 11vh;*/
}
#inventory .inventory_menu .menu-item {
border-bottom: 1px solid #222;
border-left: 1px solid #000;
font-weight: bold;
padding: 1vh;
}
#inventory .inventory_menu .menu-item:hover {
background: #fff;
border-left: 2px solid #196;
color: #000;
}
#inventory .item {
background-image: url("../img/items/1.png");
background-repeat: no-repeat;
background-position-y: center;
background-position-x: center;
background-size: contain;
height: 4vh;
margin: auto;
width: 4vh;
}
#inventory .item_name {
background: #000;
border-right: 2px solid #196;
color: #fff;
font-weight: bold;
padding: 0.5vh;
position: absolute;
}
#inventory .left-block {
background: none;
float: left;
height: 72.5vh;
margin-right: 0.5vh;
}
#inventory .left-block .container .header {
text-align: right;
}
#inventory .left-block .container .items {
/* position: relative; */
}
#inventory .main {
opacity: 0.9;
padding-top: 1vh;
}
#inventory .bottom_info {
bottom: -2vh;
margin-right: 1vh;
position: relative;
text-align: right;
}
#inventory .main .center {
grid-column-start: 2;
grid-column-end: span 1;
grid-row-start: 1;
grid-row-end: span 2;
width: 9vh;
}
#inventory .main .column {
border: 2px solid #5c5c5d;
display: flex;
background-size: 3vh;
background-repeat: no-repeat;
background-position-y: center;
background-position-x: center;
}
#inventory .main .items {
border-collapse: separate;
border-spacing: 1vh 1vh;
display: grid;
grid-gap: 1vh;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(1, 1fr);
margin: 3vh auto;
width: 53%;
}
#inventory .right-block {
background: none;
float: right;
height: 72.5vh;
margin-right: 1vh;
}
#inventory .money {
color: #06ca5a;
}
#inventory .playerName {
color: #06ca5a;
} | AppReact/src/assets/css/inventory.css | color: #fff;
font-family: Montserrat;
margin: auto;
margin-top: 10vh;
text-transform: uppercase;
width: 122vh;
}
#inventory p {
color: #fff;
}
#inventory #feet-items {
height: 7vh;
width: 67%;
}
#inventory #feet-items .health {
background: linear-gradient(to right, #0fa04b 10%, #1a5932 10%);
margin-top: 1vh;
}
#inventory #feet-items .satiety {
background: linear-gradient(to right, #a67d10 100%, #493d20 100%);
}
#inventory #feet-items .thirst {
background: linear-gradient(to right, #1070a0 100%, #1b475c 100%);
}
#inventory #feet-items .info {
border: none;
font-size: 1vh;
text-align: right;
}
#inventory #feet-items .info p {
font-size: 1.2vh;
margin: 0;
}
#inventory #feet-items .progress {
height: 1.2vh;
margin-bottom: 0.8vh;
width: 10vh;
}
#inventory #feet-items .progress img {
height: 1.1vh;
opacity: 0.8;
position: relative;
right: -1.7vh;
}
#inventory #head-items {
height: 7vh;
margin-top: 4vh;
}
#inventory #legs-items {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
height: 12vh;
}
#inventory #top-items {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
height: 12vh;
}
#inventory .bank {
color: #06ca5a;
}
#inventory .block {
background: #000;
height: 60vh;
margin: auto;
width: 40vh;
}
#inventory .container .items {
display: grid;
height: 20vh;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(5, 1fr);
opacity: 0.9;
margin-bottom: 0.5vh;
margin-top: 0.2vh;
}
#inventory .container .items .column {
background: #222;
border-bottom: 1px solid #5c5c5d;
border-right: 1px solid #5c5c5d;
display: flex;
}
#inventory .container .items .filled {
background: #000;
}
#inventory .container .items .item {
height: 3vh;
width: 3vh;
}
#inventory .container .header {
background: #000;
margin: 0;
padding: 1vh;
}
#inventory .container .header .name {
color: #06ca5a;
}
#inventory .hands {
background: #000;
height: 11vh;
margin: 0.5vh auto;
opacity: 0.9;
width: 40vh;
}
#inventory .hands .hands_name {
color: #3a3a3a;
}
#inventory .hands .header {
padding: 1vh 0vh;
}
#inventory .hands .left-hand {
float: left;
margin-left: 10vh;
width: 3vh;
}
#inventory .hands .right-hand {
float: right;
margin-right: 10vh;
transform: scaleX(-1);
width: 3vh;
}
#inventory .header {
margin: 0 1vh;
}
#inventory .inventory_menu {
background: #000;
color: #fff;
min-width: 15vh;
position: absolute;
/*top: 10vh;
right: 11vh;*/
}
#inventory .inventory_menu .menu-item {
border-bottom: 1px solid #222;
border-left: 1px solid #000;
font-weight: bold;
padding: 1vh;
}
#inventory .inventory_menu .menu-item:hover {
background: #fff;
border-left: 2px solid #196;
color: #000;
}
#inventory .item {
background-image: url("../img/items/1.png");
background-repeat: no-repeat;
background-position-y: center;
background-position-x: center;
background-size: contain;
height: 4vh;
margin: auto;
width: 4vh;
}
#inventory .item_name {
background: #000;
border-right: 2px solid #196;
color: #fff;
font-weight: bold;
padding: 0.5vh;
position: absolute;
}
#inventory .left-block {
background: none;
float: left;
height: 72.5vh;
margin-right: 0.5vh;
}
#inventory .left-block .container .header {
text-align: right;
}
#inventory .left-block .container .items {
/* position: relative; */
}
#inventory .main {
opacity: 0.9;
padding-top: 1vh;
}
#inventory .bottom_info {
bottom: -2vh;
margin-right: 1vh;
position: relative;
text-align: right;
}
#inventory .main .center {
grid-column-start: 2;
grid-column-end: span 1;
grid-row-start: 1;
grid-row-end: span 2;
width: 9vh;
}
#inventory .main .column {
border: 2px solid #5c5c5d;
display: flex;
background-size: 3vh;
background-repeat: no-repeat;
background-position-y: center;
background-position-x: center;
}
#inventory .main .items {
border-collapse: separate;
border-spacing: 1vh 1vh;
display: grid;
grid-gap: 1vh;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(1, 1fr);
margin: 3vh auto;
width: 53%;
}
#inventory .right-block {
background: none;
float: right;
height: 72.5vh;
margin-right: 1vh;
}
#inventory .money {
color: #06ca5a;
}
#inventory .playerName {
color: #06ca5a;
} | 0.464173 | 0.101367 |
.artist_portal {
margin-top: 70px;
}
/* ----- PORTAL HEADER COMPONENT STYLES ----- */
.portal_header {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
column-gap: 70px;
row-gap: 20px;
}
.flex_separator {
flex: 1;
}
.greetings h5 {
font-weight: 400;
margin-top: 10px;
}
.profile {
width: 35%;
}
.profile img {
width: 100%;
}
.album_amount {
background-color: #d3c655;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.album_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.album_amount h2 {
font-size: 200%;
}
.songs_amount {
background-color: #48dbfb;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.songs_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.songs_amount h2 {
font-size: 200%;
}
.downloads_amount {
background-color: #ff8686;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.downloads_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.downloads_amount h2 {
font-size: 200%;
}
.cash_amount {
background-color: #ff9ff3;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.cash_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.cash_amount h2 {
font-size: 200%;
}
/* ------ PORTAL MAIN STYLES ----- */
.main_portal h2 {
margin-top: 5%;
margin-left: 20%;
font-size: 180%;
font-weight: 400;
}
.type_action {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
width: 60%;
margin: 0 auto;
align-items: center;
}
.add_music_btn {
border: 1px solid #5f27cd;
padding: 8px 17px;
text-decoration: none;
background-color: #5f27cd;
color: #ffffff;
border-radius: 7px;
transition: 0.4s;
}
.add_music_btn:active {
background-color: #3f119b;
}
.add_music_btn i {
margin-left: 20px;
font-size: 90%;
}
/* ------ ALBUM STYLES ------ */
.albums {
width: 60%;
margin: 20px auto;
}
.album_details {
display: flex;
background-color: #692df5;
color: #ffffff;
padding: 5px 15px;
margin: 5px 0;
}
.album__item {
position: relative;
}
.album_details .third .song_details:nth-child(even) {
background-color: #ffffff;
}
.album_details i {
font-size: 130%;
padding-right: 5px;
}
.flex_separator_one {
flex: 1;
}
.price_label {
padding-top: 5px;
margin-right: 30px;
}
.album_action_edit {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #0e0c0c;
color: #ffffff;
font-weight: bold;
}
.album_action {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #ff2d2d;
color: #ffffff;
font-weight: bold;
}
.song_action_edit {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #3e3891;
color: #ffffff;
font-weight: bold;
}
.song_action {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #ff2d2d;
color: #ffffff;
font-weight: bold;
}
.album_action:focus,
.song_action:focus {
outline: none;
}
.song_action {
padding: 0 20px;
}
.disabled {
background-color: #eba0a0;
}
.song_details {
display: flex;
background-color: #86aada;
color: #000000;
padding: 5px 15px;
margin: 5px 10px;
transition: display 20.7s cubic-bezier(0.6, -0.28, 0, 0.62);
}
.song_details.closed {
display: none;
}
.song_details:nth-child(odd) {
background-color: #ffffff;
margin: 0 10px;
}
.btn_paragraph {
display: flex;
align-items: center;
}
.toggle_down_btn,
.play_pause_btn {
background-color: transparent;
border: none;
padding: 1px 5px;
font-size: 16px;
cursor: pointer;
}
.toggle_down_btn:focus,
.play_pause_btn:focus {
outline: none;
}
.toggle_down_btn i {
color: #ffffff;
padding: 0;
}
@media (max-width: 812px) {
.album {
width: 100%;
}
.main_portal h2 {
margin-left: 10px;
}
.type_action {
width: 100%;
}
}
@media (max-width: 414px) {
.album_details,
.song_details {
flex-direction: column;
}
.album_action,
.album_action_edit,
.song_action,
.song_action_edit {
margin: 2px 0;
padding: 5px 0;
}
} | src/components/Artist Portal/artistportal.css |
.artist_portal {
margin-top: 70px;
}
/* ----- PORTAL HEADER COMPONENT STYLES ----- */
.portal_header {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
column-gap: 70px;
row-gap: 20px;
}
.flex_separator {
flex: 1;
}
.greetings h5 {
font-weight: 400;
margin-top: 10px;
}
.profile {
width: 35%;
}
.profile img {
width: 100%;
}
.album_amount {
background-color: #d3c655;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.album_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.album_amount h2 {
font-size: 200%;
}
.songs_amount {
background-color: #48dbfb;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.songs_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.songs_amount h2 {
font-size: 200%;
}
.downloads_amount {
background-color: #ff8686;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.downloads_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.downloads_amount h2 {
font-size: 200%;
}
.cash_amount {
background-color: #ff9ff3;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.cash_amount span {
font-weight: 500;
font-size: 120%;
padding-bottom: 20px;
}
.cash_amount h2 {
font-size: 200%;
}
/* ------ PORTAL MAIN STYLES ----- */
.main_portal h2 {
margin-top: 5%;
margin-left: 20%;
font-size: 180%;
font-weight: 400;
}
.type_action {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
width: 60%;
margin: 0 auto;
align-items: center;
}
.add_music_btn {
border: 1px solid #5f27cd;
padding: 8px 17px;
text-decoration: none;
background-color: #5f27cd;
color: #ffffff;
border-radius: 7px;
transition: 0.4s;
}
.add_music_btn:active {
background-color: #3f119b;
}
.add_music_btn i {
margin-left: 20px;
font-size: 90%;
}
/* ------ ALBUM STYLES ------ */
.albums {
width: 60%;
margin: 20px auto;
}
.album_details {
display: flex;
background-color: #692df5;
color: #ffffff;
padding: 5px 15px;
margin: 5px 0;
}
.album__item {
position: relative;
}
.album_details .third .song_details:nth-child(even) {
background-color: #ffffff;
}
.album_details i {
font-size: 130%;
padding-right: 5px;
}
.flex_separator_one {
flex: 1;
}
.price_label {
padding-top: 5px;
margin-right: 30px;
}
.album_action_edit {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #0e0c0c;
color: #ffffff;
font-weight: bold;
}
.album_action {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #ff2d2d;
color: #ffffff;
font-weight: bold;
}
.song_action_edit {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #3e3891;
color: #ffffff;
font-weight: bold;
}
.song_action {
padding: 2px 10px;
border: transparent;
border-radius: 5px;
margin: 0 7px;
background-color: #ff2d2d;
color: #ffffff;
font-weight: bold;
}
.album_action:focus,
.song_action:focus {
outline: none;
}
.song_action {
padding: 0 20px;
}
.disabled {
background-color: #eba0a0;
}
.song_details {
display: flex;
background-color: #86aada;
color: #000000;
padding: 5px 15px;
margin: 5px 10px;
transition: display 20.7s cubic-bezier(0.6, -0.28, 0, 0.62);
}
.song_details.closed {
display: none;
}
.song_details:nth-child(odd) {
background-color: #ffffff;
margin: 0 10px;
}
.btn_paragraph {
display: flex;
align-items: center;
}
.toggle_down_btn,
.play_pause_btn {
background-color: transparent;
border: none;
padding: 1px 5px;
font-size: 16px;
cursor: pointer;
}
.toggle_down_btn:focus,
.play_pause_btn:focus {
outline: none;
}
.toggle_down_btn i {
color: #ffffff;
padding: 0;
}
@media (max-width: 812px) {
.album {
width: 100%;
}
.main_portal h2 {
margin-left: 10px;
}
.type_action {
width: 100%;
}
}
@media (max-width: 414px) {
.album_details,
.song_details {
flex-direction: column;
}
.album_action,
.album_action_edit,
.song_action,
.song_action_edit {
margin: 2px 0;
padding: 5px 0;
}
} | 0.448426 | 0.101233 |
:root {
--white-color: #fff;
--main-color: #08f7fe;
--accent-color: #ff008d;
--bg-color: #000018;
}
body {
font-family: 'Quicksand', sans-serif;
margin: 0;
background-image: url(".././img/bg.jpg");
background-size: cover;
}
img {
max-width: 100%;
}
p {
margin: 0;
padding: 0;
}
ul, ol {
margin: 0;
padding: 0;
list-style: none;
}
a {
color: var(--white-color);
text-decoration: none;
}
.navigation {
margin: 10px;
color: var(--white-color);
float: right;
display: flex;
align-items: center;
}
.social {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: flex-start;
}
.nav-item {
list-style: none;
border: solid 1px transparent;
}
.nav-item:not(:last-child) {
margin-right: 6px;
}
.popup-item {
padding: 6px;
opacity: 0.7;
}
.popup-item:hover, .more-label:hover {
opacity: 1;
}
.nav-item:focus, .input:focus + label {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px;
}
.social__item:focus {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px
}
.popup-item:focus {
outline: none;
opacity: 1;
border: solid 1px var(--accent-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px
}
.bell, .user {
width: 20px;
height: 20px;
}
.item__link:focus, input:focus + label {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px;
}
.social__item:not(.menu) {
display: block;
border: solid 1px transparent;
padding: 8px;
}
.nav-item:hover {
cursor: pointer;
border: solid 1px var(--main-color);
border-radius: 6px;
box-shadow: 0 0 10px var(--main-color);
}
.popup-input, .more-input {
position: absolute;
z-index: -1;
opacity: 0;
}
.popup-label {
padding: 8px;
position: relative;
display: block;
width: 20px;
height: 20px;
cursor: pointer;
background: url(".././img/popup-button.png") no-repeat center;
}
.menu {
position: relative;
}
.popup-menu {
justify-content: center;
display: none;
flex-wrap: wrap;
position: absolute;
right: -280%;
margin-top: 20px;
align-self: flex-end;
width: 250px;
height: 250px;
padding: 10px;
border-radius: 6px;
background-color: var(--bg-color);
box-shadow: 0 0 10px var(--main-color);
border: solid 1px var(--main-color);
overflow-y: scroll;
z-index: 1;
}
.popup-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 4px;
height: 80px;
width: 24%;
border: solid 1px transparent;
}
.popup-item > img {
width: 50px;
}
.popup-item > p {
font-size: 14px;
margin-top: 10px;
}
.hidden {
display: none;
}
.more-label {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
opacity: 0.7;
border: solid 1px var(--white-color);
border-radius: 6px;
width: 50px;
height: 26px;
cursor: pointer;
}
.popup-input[type="checkbox"]:checked ~ .popup-menu {
display: flex;
}
.more-input[type="checkbox"]:checked ~ .hidden {
display: flex;
}
.more-input[type="checkbox"]:checked ~ .more-label {
display: none;
}
.popup-menu::-webkit-scrollbar {
width: 3px;
}
.popup-menu::-webkit-scrollbar-thumb {
background-color: var(--accent-color);
} | submissions/natashafir/html-css-popup/css/style.css | :root {
--white-color: #fff;
--main-color: #08f7fe;
--accent-color: #ff008d;
--bg-color: #000018;
}
body {
font-family: 'Quicksand', sans-serif;
margin: 0;
background-image: url(".././img/bg.jpg");
background-size: cover;
}
img {
max-width: 100%;
}
p {
margin: 0;
padding: 0;
}
ul, ol {
margin: 0;
padding: 0;
list-style: none;
}
a {
color: var(--white-color);
text-decoration: none;
}
.navigation {
margin: 10px;
color: var(--white-color);
float: right;
display: flex;
align-items: center;
}
.social {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: flex-start;
}
.nav-item {
list-style: none;
border: solid 1px transparent;
}
.nav-item:not(:last-child) {
margin-right: 6px;
}
.popup-item {
padding: 6px;
opacity: 0.7;
}
.popup-item:hover, .more-label:hover {
opacity: 1;
}
.nav-item:focus, .input:focus + label {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px;
}
.social__item:focus {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px
}
.popup-item:focus {
outline: none;
opacity: 1;
border: solid 1px var(--accent-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px
}
.bell, .user {
width: 20px;
height: 20px;
}
.item__link:focus, input:focus + label {
outline: none;
background-color: var(--accent-color);
color: var(--white-color);
box-shadow: 0 0 14px var(--accent-color);
border-radius: 6px;
}
.social__item:not(.menu) {
display: block;
border: solid 1px transparent;
padding: 8px;
}
.nav-item:hover {
cursor: pointer;
border: solid 1px var(--main-color);
border-radius: 6px;
box-shadow: 0 0 10px var(--main-color);
}
.popup-input, .more-input {
position: absolute;
z-index: -1;
opacity: 0;
}
.popup-label {
padding: 8px;
position: relative;
display: block;
width: 20px;
height: 20px;
cursor: pointer;
background: url(".././img/popup-button.png") no-repeat center;
}
.menu {
position: relative;
}
.popup-menu {
justify-content: center;
display: none;
flex-wrap: wrap;
position: absolute;
right: -280%;
margin-top: 20px;
align-self: flex-end;
width: 250px;
height: 250px;
padding: 10px;
border-radius: 6px;
background-color: var(--bg-color);
box-shadow: 0 0 10px var(--main-color);
border: solid 1px var(--main-color);
overflow-y: scroll;
z-index: 1;
}
.popup-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 4px;
height: 80px;
width: 24%;
border: solid 1px transparent;
}
.popup-item > img {
width: 50px;
}
.popup-item > p {
font-size: 14px;
margin-top: 10px;
}
.hidden {
display: none;
}
.more-label {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
opacity: 0.7;
border: solid 1px var(--white-color);
border-radius: 6px;
width: 50px;
height: 26px;
cursor: pointer;
}
.popup-input[type="checkbox"]:checked ~ .popup-menu {
display: flex;
}
.more-input[type="checkbox"]:checked ~ .hidden {
display: flex;
}
.more-input[type="checkbox"]:checked ~ .more-label {
display: none;
}
.popup-menu::-webkit-scrollbar {
width: 3px;
}
.popup-menu::-webkit-scrollbar-thumb {
background-color: var(--accent-color);
} | 0.437583 | 0.141193 |
* Internal self contained modules, save in directory module/.
*/
/*!
* Stylesheet for design kmom01.
*
* This stylesheet is for the design course and kmom01. Fill it with style
* to style up the website so it is useable.
*/
/**
* Style for the stylechooser.
*/
/**
* Variables
*/
/**
* Style
*/
/**
* Base style to affect HTML elements on a general scale.
*/
/**
* Base style to affect HTML elements on a general scale.
*/
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 900;
src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdr.ttf) format('truetype');
}
* {
box-sizing: border-box;
}
html {
overflow-y: scroll;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #fff;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
}
img {
max-width: 100%;
}
a {
color: #478979;
}
a:hover {
text-decoration: none;
}
/**
* Layout style for general structure of header, navbar, main, footer
* and other regions of the page including route specific styles.
*/
/**
* Layout style for general structure of header, navbar, main, footer
* and other regions of the page including route specific styles.
*/
/**
* Variables
*/
/**
* General layout
*/
/* Hide submenu, leave this to kmom02 */
.rm-navbar-max {
display: none;
}
.right {
float: right;
}
.left {
float: left;
}
.wrap-all {
width: 100%;
margin: 0;
padding: 0;
}
/* ---------- Header ---------- */
.region-header {
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1em;
background-color: #fff;
}
.rm-default a {
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
color: #242426;
padding-bottom: 0.25em;
font-size: 1em;
letter-spacing: 0.04em;
}
.rm-default a:hover {
border-bottom: 1px solid black;
}
.site-logo {
display: none;
}
.site-logo-text a {
font-size: 2em;
color: #242426;
text-decoration: none;
text-transform: uppercase;
}
.my-navbar {
display: inline-block;
padding: 0;
list-style: none;
margin: 0;
}
.my-navbar > li {
display: inline-block;
margin: 5px;
padding: 5px;
}
.region-header-col-1 {
display: inline;
float: left;
}
.region-header-col-2 {
display: inline;
float: right;
}
.region-header-col-3 {
display: none;
}
.region-flash img {
width: 100%;
}
/* ---------- Main content ---------- */
.outer-wrap-main {
width: 80%;
min-height: 600px;
margin: 0 auto;
padding-bottom: 2.5em;
overflow: auto;
}
.region-main {
width: 100%;
margin: 0 auto;
padding: 1.5em;
float: left;
}
.region-main.has-sidebar {
width: 70%;
}
.region-main.has-sidebar-left.has-sidebar-right {
width: 60%;
}
.region-sidebar-left,
.region-sidebar-right {
width: 30%;
float: left;
padding: 1.5em;
}
.region-sidebar-left.has-sidebar-right,
.region-sidebar-right.has-sidebar-left {
width: 20%;
}
.outer-wrap-breadcrumb {
width: 80%;
margin: 0 auto;
padding: 1.5em;
}
.row::after {
content: "";
display: block;
clear: both;
}
/* ---------- Breadcrumb and navigation ---------- */
.next-previous {
margin-bottom: 24px;
}
.next-previous .next {
float: right;
text-align: right;
}
.breadcrumb-list a {
font-size: 0.75em;
text-decoration: none;
color: black;
margin-bottom: 1.5em;
}
.breadcrumb-list a:hover {
text-decoration: underline;
color: #bdc3c7;
}
.breadcrumb-list ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.breadcrumb-list li {
display: inline;
margin: 0;
padding: 0;
}
.breadcrumb-list li::after {
content: " > ";
}
.toc ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.toc a,
.next-previous a {
color: black;
line-height: 1.75;
text-decoration: none;
}
.toc a:hover,
.next-previous a:hover {
text-decoration: underline;
color: #bdc3c7;
}
/* ---------- Flashmessage ---------- */
.flashmessage {
background-color: #bdc3c7;
padding: 1em;
width: 80%;
margin: 1em auto;
}
.flashmessage .flashmessage-icon {
float: right;
font-size: 3em;
}
.flashmessage p {
margin-top: 25px;
margin-bottom: 25px;
}
/* ---------- Byline ---------- */
.author-byline {
background-color: #41588A;
clear: both;
width: auto;
overflow: auto;
padding: 1em;
margin: 1.5em 0;
color: white;
font-weight: 300;
font-size: 18px;
}
.author-byline a {
color: white;
}
.author-byline img {
width: 100px;
float: left;
margin-right: 1em;
}
/* ---------- Footer ---------- */
.outer-wrap-footer {
background-color: #242426;
color: white;
padding: 1em;
clear: both;
}
.inner-wrap-footer {
width: 80%;
margin: 0 auto;
}
.footer-column {
width: 25%;
float: left;
padding: 1em;
}
.site-footer {
text-align: center;
clear: both;
display: block;
}
/**
* Layout for responsive style through media queries.
*/
@media screen and (max-width: 1500px) {
.site-logo {
display: none;
}
}
@media screen and (max-width: 900px) {
.rm-desktop li {
margin-left: 0;
margin-right: 0;
}
.site-header a {
padding-left: 0;
padding-right: 0;
}
.outer-wrap-main,
.outer-wrap-breadcrumb,
.inner-wrap-footer {
width: 90%;
}
.figure {
max-width: 50%;
}
}
@media screen and (max-width: 810px) {
.region-header-col-2 {
display: none;
}
.region-header-col-3,
.region-header-col-1 {
display: inline;
width: 50%;
float: right;
}
.rm-small {
display: block;
}
.rm-navbar-max {
display: block;
}
.rm-desktop {
display: none;
}
.rm-max .rm-mobile a {
padding: 1em !important;
}
a.rm-button {
margin-top: 0.75em;
}
.rm-max .rm-mobile .rm-submenu-button {
margin-right: 1.5em;
margin-top: 0.75em;
background-color: #478979;
box-shadow: none;
padding: 5px !important;
}
.rm-max .rm-mobile .rm-submenu-button:hover {
background-color: #478979;
}
.rm-default li li {
background-color: #478979;
box-shadow: none;
}
}
@media screen and (max-width: 680px) {
.rm-small {
display: none;
}
.wrap-sidebar,
.region-main,
.region-main.has-sidebar,
.region-sidebar-right.has-sidebar-left,
.region-sidebar-left.has-sidebar-right,
.region-main.has-sidebar-left.has-sidebar-right {
width: 100%;
padding: 0.5em;
}
.footer-column {
width: 100%;
padding: 0;
}
.footer-column ul {
padding-left: 0;
}
.footer-column li {
list-style-type: none;
display: inline-block;
padding-right: 0.5em;
}
.site-footer {
text-align: left;
}
.figure {
max-width: 100%;
margin: 0;
}
}
/**
* Show off the regions used in the website, to ease styling.
*/
.regions .outer-wrap {
background-color: #f4e3c9;
border: 1px solid #e3b774;
}
.regions .inner-wrap {
background-color: #f4e0e9;
border: 1px solid #d995b4;
}
.regions .region-header-col-1,
.regions .region-header-col-2,
.regions .region-header-col-3,
.regions .region-flash,
.regions .region-breadcrumb,
.regions .region-flash-message,
.regions .region-columns-above,
.regions .region-main,
.regions .region-after-main,
.regions .region-columns-below,
.regions .region-sidebar-left,
.regions .region-sidebar-right,
.regions .region-footer,
.regions .region-footer-column-1,
.regions .region-footer-column-2,
.regions .region-footer-column-3 {
background-color: #b5dce1;
border: 1px solid #6cbac4;
color: #111;
}
/**
* My own settings, not currently in their own module.
*/
/* Hide submenu, leave this to kmom02 */
.rm-desktop ul {
display: none;
}
/* Hide responsive/mobile menu, leave this to kmom02 */
.rm-navbar-max {
display: none;
} | theme/htdocs/css/kmom01_v2.css | * Internal self contained modules, save in directory module/.
*/
/*!
* Stylesheet for design kmom01.
*
* This stylesheet is for the design course and kmom01. Fill it with style
* to style up the website so it is useable.
*/
/**
* Style for the stylechooser.
*/
/**
* Variables
*/
/**
* Style
*/
/**
* Base style to affect HTML elements on a general scale.
*/
/**
* Base style to affect HTML elements on a general scale.
*/
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 900;
src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdr.ttf) format('truetype');
}
* {
box-sizing: border-box;
}
html {
overflow-y: scroll;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #fff;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
}
img {
max-width: 100%;
}
a {
color: #478979;
}
a:hover {
text-decoration: none;
}
/**
* Layout style for general structure of header, navbar, main, footer
* and other regions of the page including route specific styles.
*/
/**
* Layout style for general structure of header, navbar, main, footer
* and other regions of the page including route specific styles.
*/
/**
* Variables
*/
/**
* General layout
*/
/* Hide submenu, leave this to kmom02 */
.rm-navbar-max {
display: none;
}
.right {
float: right;
}
.left {
float: left;
}
.wrap-all {
width: 100%;
margin: 0;
padding: 0;
}
/* ---------- Header ---------- */
.region-header {
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1em;
background-color: #fff;
}
.rm-default a {
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
color: #242426;
padding-bottom: 0.25em;
font-size: 1em;
letter-spacing: 0.04em;
}
.rm-default a:hover {
border-bottom: 1px solid black;
}
.site-logo {
display: none;
}
.site-logo-text a {
font-size: 2em;
color: #242426;
text-decoration: none;
text-transform: uppercase;
}
.my-navbar {
display: inline-block;
padding: 0;
list-style: none;
margin: 0;
}
.my-navbar > li {
display: inline-block;
margin: 5px;
padding: 5px;
}
.region-header-col-1 {
display: inline;
float: left;
}
.region-header-col-2 {
display: inline;
float: right;
}
.region-header-col-3 {
display: none;
}
.region-flash img {
width: 100%;
}
/* ---------- Main content ---------- */
.outer-wrap-main {
width: 80%;
min-height: 600px;
margin: 0 auto;
padding-bottom: 2.5em;
overflow: auto;
}
.region-main {
width: 100%;
margin: 0 auto;
padding: 1.5em;
float: left;
}
.region-main.has-sidebar {
width: 70%;
}
.region-main.has-sidebar-left.has-sidebar-right {
width: 60%;
}
.region-sidebar-left,
.region-sidebar-right {
width: 30%;
float: left;
padding: 1.5em;
}
.region-sidebar-left.has-sidebar-right,
.region-sidebar-right.has-sidebar-left {
width: 20%;
}
.outer-wrap-breadcrumb {
width: 80%;
margin: 0 auto;
padding: 1.5em;
}
.row::after {
content: "";
display: block;
clear: both;
}
/* ---------- Breadcrumb and navigation ---------- */
.next-previous {
margin-bottom: 24px;
}
.next-previous .next {
float: right;
text-align: right;
}
.breadcrumb-list a {
font-size: 0.75em;
text-decoration: none;
color: black;
margin-bottom: 1.5em;
}
.breadcrumb-list a:hover {
text-decoration: underline;
color: #bdc3c7;
}
.breadcrumb-list ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.breadcrumb-list li {
display: inline;
margin: 0;
padding: 0;
}
.breadcrumb-list li::after {
content: " > ";
}
.toc ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.toc a,
.next-previous a {
color: black;
line-height: 1.75;
text-decoration: none;
}
.toc a:hover,
.next-previous a:hover {
text-decoration: underline;
color: #bdc3c7;
}
/* ---------- Flashmessage ---------- */
.flashmessage {
background-color: #bdc3c7;
padding: 1em;
width: 80%;
margin: 1em auto;
}
.flashmessage .flashmessage-icon {
float: right;
font-size: 3em;
}
.flashmessage p {
margin-top: 25px;
margin-bottom: 25px;
}
/* ---------- Byline ---------- */
.author-byline {
background-color: #41588A;
clear: both;
width: auto;
overflow: auto;
padding: 1em;
margin: 1.5em 0;
color: white;
font-weight: 300;
font-size: 18px;
}
.author-byline a {
color: white;
}
.author-byline img {
width: 100px;
float: left;
margin-right: 1em;
}
/* ---------- Footer ---------- */
.outer-wrap-footer {
background-color: #242426;
color: white;
padding: 1em;
clear: both;
}
.inner-wrap-footer {
width: 80%;
margin: 0 auto;
}
.footer-column {
width: 25%;
float: left;
padding: 1em;
}
.site-footer {
text-align: center;
clear: both;
display: block;
}
/**
* Layout for responsive style through media queries.
*/
@media screen and (max-width: 1500px) {
.site-logo {
display: none;
}
}
@media screen and (max-width: 900px) {
.rm-desktop li {
margin-left: 0;
margin-right: 0;
}
.site-header a {
padding-left: 0;
padding-right: 0;
}
.outer-wrap-main,
.outer-wrap-breadcrumb,
.inner-wrap-footer {
width: 90%;
}
.figure {
max-width: 50%;
}
}
@media screen and (max-width: 810px) {
.region-header-col-2 {
display: none;
}
.region-header-col-3,
.region-header-col-1 {
display: inline;
width: 50%;
float: right;
}
.rm-small {
display: block;
}
.rm-navbar-max {
display: block;
}
.rm-desktop {
display: none;
}
.rm-max .rm-mobile a {
padding: 1em !important;
}
a.rm-button {
margin-top: 0.75em;
}
.rm-max .rm-mobile .rm-submenu-button {
margin-right: 1.5em;
margin-top: 0.75em;
background-color: #478979;
box-shadow: none;
padding: 5px !important;
}
.rm-max .rm-mobile .rm-submenu-button:hover {
background-color: #478979;
}
.rm-default li li {
background-color: #478979;
box-shadow: none;
}
}
@media screen and (max-width: 680px) {
.rm-small {
display: none;
}
.wrap-sidebar,
.region-main,
.region-main.has-sidebar,
.region-sidebar-right.has-sidebar-left,
.region-sidebar-left.has-sidebar-right,
.region-main.has-sidebar-left.has-sidebar-right {
width: 100%;
padding: 0.5em;
}
.footer-column {
width: 100%;
padding: 0;
}
.footer-column ul {
padding-left: 0;
}
.footer-column li {
list-style-type: none;
display: inline-block;
padding-right: 0.5em;
}
.site-footer {
text-align: left;
}
.figure {
max-width: 100%;
margin: 0;
}
}
/**
* Show off the regions used in the website, to ease styling.
*/
.regions .outer-wrap {
background-color: #f4e3c9;
border: 1px solid #e3b774;
}
.regions .inner-wrap {
background-color: #f4e0e9;
border: 1px solid #d995b4;
}
.regions .region-header-col-1,
.regions .region-header-col-2,
.regions .region-header-col-3,
.regions .region-flash,
.regions .region-breadcrumb,
.regions .region-flash-message,
.regions .region-columns-above,
.regions .region-main,
.regions .region-after-main,
.regions .region-columns-below,
.regions .region-sidebar-left,
.regions .region-sidebar-right,
.regions .region-footer,
.regions .region-footer-column-1,
.regions .region-footer-column-2,
.regions .region-footer-column-3 {
background-color: #b5dce1;
border: 1px solid #6cbac4;
color: #111;
}
/**
* My own settings, not currently in their own module.
*/
/* Hide submenu, leave this to kmom02 */
.rm-desktop ul {
display: none;
}
/* Hide responsive/mobile menu, leave this to kmom02 */
.rm-navbar-max {
display: none;
} | 0.620966 | 0.103295 |
.colorpickle {
position: relative;
min-width: 220px;
width: auto;
box-sizing: border-box;
padding: 10px;
font-size: 80%;
color: #fff;
background-color: #333;
z-index: 1;
}
.colorpickleOnTop {
position: absolute;
z-index: 9999;
}
.colorpickle .sliderWrapper {
position: relative;
height: 30px;
}
.colorpickle .sliderWrapper label {
line-height: 28px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.colorpickle input[type="text"] {
color: #fff;
background-color: #222;
border: 1px solid #444;
padding: 1px 2px;
}
.colorpickle .sliderValue {
width: 18px;
margin-top: 4px;
text-align: right;
font-size: inherit;
float: right;
}
.colorpickle .sliderDiv {
position: absolute;
top: 0;
left: 26px;
right: 28px;
width: auto;
}
.colorpickle .slider {
width: 100%;
margin-top: 4px;
cursor: ew-resize;
}
.colorpickle .sliderBg {
position: absolute;
top: 7px;
left: 30px;
right: 30px;
width: auto;
height: 10px;
border: 1px solid #666;
}
.colorpickle .colorPickerWrapper {
position: relative;
width: auto;
height: 200px;
margin-top: 20px;
border: 1px solid #666;
cursor: crosshair;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.colorpickle .colorPickerBg {
width: 100%;
height: 100%;
}
.colorpickle .colorPicker {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.colorpickle .colorPicker .gradientTp2Black {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle .colorPicker .gradientTp2White {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle .colorPickerIndicator {
position: absolute;
top: 0;
left: 0;
padding: 0;
margin: 0;
width: 13px;
height: 13px;
border-radius: 50%;
border: 1px solid #000;
}
.colorpickle .colorPickerIndicator:before, .colorpickle .colorPickerIndicator:after {
content: " ";
position: absolute;
z-index: 0;
border-radius: 50%;
}
.colorpickle .colorPickerIndicator:before {
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
border: 1px solid #000;
}
.colorpickle .colorPickerIndicator:after {
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #fff;
}
.colorPickerIcon {
width: 22px;
height: 22px;
margin: 0 0 0 2px;
background-color: #f00;
background-image: url('images/icon-ui-color-picker.png');
background-repeat: no-repeat;
border: none;
position: relative;
cursor: pointer;
}
.colorpickle .swatchHex {
margin-top: 20px;
margin-bottom:20px;
}
.colorpickle .swatch {
width: 100%;
height: 50px;
border: 1px solid #666;
margin: 0 0 5px 0;
}
.colorpickle .hexValue {
width:100%;
font-size: 8em;
text-transform: uppercase;
text-align: center;
}
.colorpickle .bWrapper {
margin-bottom: 20px;
}
.colorpickle .hWrapper .sliderBg {
background: -moz-linear-gradient(left, #f00 0%, #ff0 16%, #0f0 33%, #0ff 50%, #00f 66%, #f0f 83%, #f00 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #f00 0%,#ff0 16%,#0f0 33%,#0ff 50%,#00f 66%,#f0f 83%,#f00 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #f00 0%,#ff0 16%,#0f0 33%,#0ff 50%,#00f 66%,#f0f 83%,#f00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle div.clear {
clear: both;
}
.colorpickle .buttonsWrapper {
position: absolute;
bottom: 10px;
right: 10px;
}
.colorpickle button {
background-color: #666;
border: none;
color: #fff;
padding: 5px 10px;
margin-left: 5px;
}
.colorpickle button:hover {
background-color: #999;
}
.colorpickleModalOverlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
position: fixed;
top: 0px;
left: 0px;
z-index: 9998;
display: none;
}
.colorpickle .dragHandle {
border-top: 1px solid #999;
border-bottom: 1px solid #666;
margin-bottom: 10px;
cursor: move;
}
.colorpickle .dragHandle:before, .colorpickle .dragHandle:after {
content: "";
display: block;
border-top: 1px solid #666;
border-bottom: 1px solid #999;
height: 3px;
}
input[type=range] {
-webkit-appearance: none;
background-color: transparent;
margin: 10px 0;
width: 100%;
}
input[type=range]:focus {
outline: none;
}
/**
* Range slider styles for Webkit
*/
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 100px;
animate: 0.2s;
background-color: transparent;
border-radius: 5px;
border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
height: 28px;
width: 9px;
-webkit-appearance: none;
margin-top: -5px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
}
input[type=range]:focus::-webkit-slider-runnable-track {
background-color: transparent;
}
/**
* Range slider styles for Mozilla
*/
input[type=range]::-moz-range-track {
width: 100%;
height: 10px;
animate: 0.2s;
background-color: transparent;
border-radius: 5px;
border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
height: 30px;
width: 9px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
background-repeat: no-repeat;
}
/**
* Range slider styles for IE
*/
input[type=range]::-ms-track {
width: 100%;
height: 10px;
animate: 0.2s;
background-color: transparent;
border-color: transparent;
border-width: 10px 0;
color: transparent;
}
input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper,
input[type=range]:focus::-ms-fill-lower,
input[type=range]:focus::-ms-fill-upper {
background-color: transparent;
border: 0px solid #000101;
border-radius: 5px;
}
input[type=range]::-ms-thumb {
height: 28px;
width: 9px;
margin-top: -36px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
} | Ressource/Color Picker/js/colorpickle/jquery.colorpickle.css | .colorpickle {
position: relative;
min-width: 220px;
width: auto;
box-sizing: border-box;
padding: 10px;
font-size: 80%;
color: #fff;
background-color: #333;
z-index: 1;
}
.colorpickleOnTop {
position: absolute;
z-index: 9999;
}
.colorpickle .sliderWrapper {
position: relative;
height: 30px;
}
.colorpickle .sliderWrapper label {
line-height: 28px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.colorpickle input[type="text"] {
color: #fff;
background-color: #222;
border: 1px solid #444;
padding: 1px 2px;
}
.colorpickle .sliderValue {
width: 18px;
margin-top: 4px;
text-align: right;
font-size: inherit;
float: right;
}
.colorpickle .sliderDiv {
position: absolute;
top: 0;
left: 26px;
right: 28px;
width: auto;
}
.colorpickle .slider {
width: 100%;
margin-top: 4px;
cursor: ew-resize;
}
.colorpickle .sliderBg {
position: absolute;
top: 7px;
left: 30px;
right: 30px;
width: auto;
height: 10px;
border: 1px solid #666;
}
.colorpickle .colorPickerWrapper {
position: relative;
width: auto;
height: 200px;
margin-top: 20px;
border: 1px solid #666;
cursor: crosshair;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.colorpickle .colorPickerBg {
width: 100%;
height: 100%;
}
.colorpickle .colorPicker {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.colorpickle .colorPicker .gradientTp2Black {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle .colorPicker .gradientTp2White {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle .colorPickerIndicator {
position: absolute;
top: 0;
left: 0;
padding: 0;
margin: 0;
width: 13px;
height: 13px;
border-radius: 50%;
border: 1px solid #000;
}
.colorpickle .colorPickerIndicator:before, .colorpickle .colorPickerIndicator:after {
content: " ";
position: absolute;
z-index: 0;
border-radius: 50%;
}
.colorpickle .colorPickerIndicator:before {
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
border: 1px solid #000;
}
.colorpickle .colorPickerIndicator:after {
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #fff;
}
.colorPickerIcon {
width: 22px;
height: 22px;
margin: 0 0 0 2px;
background-color: #f00;
background-image: url('images/icon-ui-color-picker.png');
background-repeat: no-repeat;
border: none;
position: relative;
cursor: pointer;
}
.colorpickle .swatchHex {
margin-top: 20px;
margin-bottom:20px;
}
.colorpickle .swatch {
width: 100%;
height: 50px;
border: 1px solid #666;
margin: 0 0 5px 0;
}
.colorpickle .hexValue {
width:100%;
font-size: 8em;
text-transform: uppercase;
text-align: center;
}
.colorpickle .bWrapper {
margin-bottom: 20px;
}
.colorpickle .hWrapper .sliderBg {
background: -moz-linear-gradient(left, #f00 0%, #ff0 16%, #0f0 33%, #0ff 50%, #00f 66%, #f0f 83%, #f00 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #f00 0%,#ff0 16%,#0f0 33%,#0ff 50%,#00f 66%,#f0f 83%,#f00 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #f00 0%,#ff0 16%,#0f0 33%,#0ff 50%,#00f 66%,#f0f 83%,#f00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.colorpickle div.clear {
clear: both;
}
.colorpickle .buttonsWrapper {
position: absolute;
bottom: 10px;
right: 10px;
}
.colorpickle button {
background-color: #666;
border: none;
color: #fff;
padding: 5px 10px;
margin-left: 5px;
}
.colorpickle button:hover {
background-color: #999;
}
.colorpickleModalOverlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
position: fixed;
top: 0px;
left: 0px;
z-index: 9998;
display: none;
}
.colorpickle .dragHandle {
border-top: 1px solid #999;
border-bottom: 1px solid #666;
margin-bottom: 10px;
cursor: move;
}
.colorpickle .dragHandle:before, .colorpickle .dragHandle:after {
content: "";
display: block;
border-top: 1px solid #666;
border-bottom: 1px solid #999;
height: 3px;
}
input[type=range] {
-webkit-appearance: none;
background-color: transparent;
margin: 10px 0;
width: 100%;
}
input[type=range]:focus {
outline: none;
}
/**
* Range slider styles for Webkit
*/
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 100px;
animate: 0.2s;
background-color: transparent;
border-radius: 5px;
border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
height: 28px;
width: 9px;
-webkit-appearance: none;
margin-top: -5px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
}
input[type=range]:focus::-webkit-slider-runnable-track {
background-color: transparent;
}
/**
* Range slider styles for Mozilla
*/
input[type=range]::-moz-range-track {
width: 100%;
height: 10px;
animate: 0.2s;
background-color: transparent;
border-radius: 5px;
border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
height: 30px;
width: 9px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
background-repeat: no-repeat;
}
/**
* Range slider styles for IE
*/
input[type=range]::-ms-track {
width: 100%;
height: 10px;
animate: 0.2s;
background-color: transparent;
border-color: transparent;
border-width: 10px 0;
color: transparent;
}
input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper,
input[type=range]:focus::-ms-fill-lower,
input[type=range]:focus::-ms-fill-upper {
background-color: transparent;
border: 0px solid #000101;
border-radius: 5px;
}
input[type=range]::-ms-thumb {
height: 28px;
width: 9px;
margin-top: -36px;
border: none;
border-radius: 0;
background-color: transparent;
background-image: url('images/slider-thumb.png');
} | 0.239349 | 0.05151 |
@charset "utf-8";
/* ESTRUTURA */
body { margin: 0; padding: 0; }
* { outline: none; }
.e_trans { display: none !important; }
#conteudo_esquerda { width: 100% !important; padding-bottom: 10px; padding-top:20px; min-height: calc(100vh - 485px); }
#cont_conteudo_site_interna { width:100% !important; }
#e_centralizar {width: 100%; width: calc(100% - 40px); max-width: 1200px; margin: 0 auto;}
/* RESET */
a, li, ol, ul { border: none; text-decoration: none; list-style: none; color: inherit; margin: 0; padding: 0; }
a:active, a:link, a:hover, a:focus { text-decoration: inherit; }
/* RESET DOS ESPAรAMENTOS */
#e_cont_topo, #e_cont_topo *, #e_cont_topo *:before, #e_cont_topo *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
#e_conteudo, #e_conteudo *, #e_conteudo *:before, #e_conteudo *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
#e_cont_rodape, #e_cont_rodape *, #e_cont_rodape *:before, #e_cont_rodape *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
/* RESET DAS SELEรรES */
.unselect *::selection { background: inherit; color: inherit; }
.unselect *::-webkit-selection { background: inherit; color: inherit; }
.unselect *::-moz-selection { background: inherit; color: inherit; }
.unselect *::-ms-selection { background: inherit; color: inherit; }
/* TรTULOS */
.e_titulo_principal {margin: 20px 0;}
.e_titulo_principal .e_titulo_p {display: inline-block; vertical-align: middle; font-size: 24px; color: #666; letter-spacing: -0.7px;}
.e_titulo_principal .e_link_ver_mais {width: 100px; height: 30px; display: inline-block; vertical-align: middle; background: #fff; border: solid 1px #e3e8f1; border-radius: 15px; text-align: center; margin: 0 20px; transition: transform .3s ease, background .4s ease, border .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais {transform: rotateX(360deg); background: #00adef; border-color: #00adef;}
.e_titulo_principal .e_link_ver_mais span {font-size: 11px; color: #7f8890; text-transform: uppercase; line-height: 25px; transition: .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais span {color: #fff;}
.e_titulo_principal .e_link_ver_mais .fa-angle-double-right {font-size: 16px; color: #00adef; padding-right: 7px; transition: .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais .fa-angle-double-right {color: #fff;}
.e_titulo_secundario {width: 70%; display: table; font-size: 18px; color: #6e7886; text-transform: uppercase; padding-bottom: 20px; border-bottom: solid 1px #cbd5e3; text-align: center; margin: 0 auto; margin-bottom: 30px;}
/* IMAGENS */
img { border: 0; margin: 0; }
.e_imgcentralizar { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* VIDEOS */
.sw_video_capa { background: #000 !important; }
/* ESTILO DAS BARRAS DE ROLAGEM */
body *::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 3px; }
body *::-webkit-scrollbar { width: 10px; background: rgba(0,0,0,0.05); height: 10px; margin: 5px; border-radius: 3px; }
body *::-webkit-scrollbar-thumb { background: #d5d9df; border-radius: 3px; }
body *::-webkit-scrollbar-thumb:hover {background: #0299d3;}
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno {width: 100%; max-width: 1200px; display: table; margin: 0 auto;}
/* **************************** CABEรALHO **************************** */
#e_cont_topo {width: 100%; float: left; background: #fff;}
/* Barra do topo */
#e_cont_topo .e_barra_topo {width: 100%; height: 40px; position: relative; float: left; background: #fff; box-shadow: 0 2px 10px 0 rgba(217,225,234,0.45); z-index: 1;}
#e_cont_topo .e_barra_topo .e_cont_barra_topo {width: 100%; max-width: 1200px; display: table; padding: 0 20px; margin: 0 auto;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade {float: left; margin: 8px 0; font-size: 0;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_titulo_acessibilidade {display: inline-block; vertical-align: middle; font-size: 12px; color: #7d8287; padding: 0 10px;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade {display: inline-block; vertical-align: middle;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade .e_btn_acessibilidade {width: 25px; height: 25px; display: inline-block; vertical-align: middle; background: #fff; border: solid 1px #d2d7de; border-radius: 3px; text-align: center; line-height: 23px; font-size: 12px; color: #b6bbc0; margin-right: 5px; transition: .3s ease-out;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade .e_btn_acessibilidade:hover {background: #00adef; color: #fff; border-color: #00adef; cursor: pointer;}
/* Busca */
#e_cont_topo .e_barra_topo .e_area_busca {float: right; position: relative; margin: 5px 0; margin-right: 20px;}
#e_cont_topo .e_barra_topo .e_area_busca .e_campo_busca {width: 180px; height: 30px; background: #f0f0f1; border: 0; border-radius: 4px; font-size: 12px; color: #7d8287; line-height: 30px; padding-left: 20px;}
#e_cont_topo .e_barra_topo .e_area_busca form:focus-within .e_campo_busca {width: 250px; background: #fff; border: solid 1px #f8f8f8;}
#e_cont_topo .e_barra_topo .e_area_busca input::placeholder {color: #959da1;}
#e_cont_topo .e_barra_topo .e_area_busca .e_btn_busca {position: absolute; right: 20px; font-size: 15px; color: #7d8287; background: none; line-height: 30px; border: 0; transition: .2s ease-in;}
#e_cont_topo .e_barra_topo .e_area_busca:hover .e_btn_busca {color: #00adef; cursor: pointer;}
#e_cont_topo .e_barra_topo .e_area_busca form:focus-within .e_btn_busca {color: #00adef;}
/* REDES SOCIAIS */
#e_cont_topo .e_barra_topo .e_area_redes_sociais {float: right; position: relative; margin: 5px 0; font-size: 0;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_titulo_redes_sociais {display: inline-block; vertical-align: middle; font-size: 12px; color: #7d8287; padding: 0 10px;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais {display: inline-block; vertical-align: middle;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social {width: 30px; height: 30px; display: inline-block; vertical-align: middle; border-radius: 3px; overflow: hidden; margin-right: 5px; transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social img {}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social:hover {transform: scale(1.1);}
/* CONTEรDO CABEรALHO */
#e_cont_topo #e_banner_topo_dinamico {width: 100%; height: 100px; background-repeat: no-repeat; background-position: top left; position: relative;}
#e_cont_topo #e_banner_topo_dinamico #e_banner_topo_dinamico_clique {width: 235px; height: 70px; float: left; margin-left: 22px; margin-top: 15px;}
/* SIC */
#e_cont_topo .e_box_cabecalho {width: 920px; width: calc(100% - 270px); float: right; margin-top: 25px; padding-right: 20px; font-size: 0;}
#e_cont_topo .e_box_cabecalho .e_area_sic {width: 175px; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_img_sic {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1;}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_img_sic img {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_area_sic:hover .e_img_sic img {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_text_sic {display: inline-block; vertical-align: middle; font-size: 12px; color: #7b8490; padding-left: 10px;}
/* Portal transparรชncia */
#e_cont_topo .e_box_cabecalho .e_area_transparencia {width: 180px; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_img_transparencia {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1;}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_img_transparencia img {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_area_transparencia:hover .e_img_transparencia img {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_text_transparencia {display: inline-block; vertical-align: middle; font-size: 12px; color: #7b8490; padding-left: 10px;}
/* SESSรO LEGISLATIVA */
#e_cont_topo .e_box_cabecalho .e_cont_sessao {white-space: nowrap; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_icone_sessao {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1; text-align: center; color: #00adef; font-size: 18px; line-height: 48px;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_icone_sessao .fa-university {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_cont_sessao:hover .e_icone_sessao .fa-university {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao {display: inline-block; vertical-align: middle; text-align: center;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao .e_titulo_sessao {display: block; font-size: 12px; color: #7b8490; text-transform: uppercase; padding: 3px 0; padding-top: 6px;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao .e_data_sessao {display: block; background: #e2e7ec; font-size: 12px; color: #7b8490; padding: 5px 34px;}
/* MENU PRINCIPAL */
#e_cont_topo .e_menu_principal {position: relative; z-index: 100; border-bottom: solid 1px #e0e4e8; margin-top: -5px; margin-bottom: 10px;}
#e_cont_topo .e_menu_principal ul {width: 100%; max-width: 1300px; position: relative; text-align: center; display: table; margin: 0 auto;}
#e_cont_topo .e_menu_principal ul li {position: relative; display: inline-block; vertical-align: middle; text-align: left;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p {height: 60px; position: relative; font-size: 12px; color: #777; text-transform: uppercase; line-height: 60px; padding: 0 20px; cursor: pointer; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p::after {content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: #00adef; border-radius: 2px; visibility: hidden; opacity: 0; transition: .5s cubic-bezier(0.88, 0.87, 0.24, 1.46);}
#e_cont_topo .e_menu_principal ul li:hover .e_link_menu_p::after {width: 100%; visibility: visible; opacity: 1;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p {position: absolute; top: 100%; right: 0; background: none; visibility: hidden; z-index: 0;}
#e_cont_topo .e_menu_principal ul li:hover .e_submenu_p {visibility: visible; z-index: 1;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul {width: 240px; background: #f8f8f8; border-bottom: solid 5px #00adef; z-index: 120; transform: scaleY(0); transform-origin: top; padding: 10px 0; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li:hover .e_submenu_p ul {z-index: 121; transform: scaleY(1);}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li {position: relative; display: block; z-index: 50; margin: 0 5px;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li .e_link_submenu_p {position: relative; padding: 13px; font-size: 12px; color: #888; text-transform: uppercase; border-bottom: solid 1px rgba(0,0,0,0.04); border-radius: 4px; transition: .4s ease-out;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li:hover .e_link_submenu_p {background: #fff; color: #00adef; padding-left: 16px;}
/* MENU TODOS */
#e_cont_topo .e_menu_principal ul li.e_li_menu_p {position: static;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p {height: 60px; position: relative; font-size: 14px; color: #777; text-transform: uppercase; line-height: 60px; padding: 0 20px; cursor: pointer; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p::after {content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: #00adef; border-radius: 2px; visibility: hidden; opacity: 0; transition: .5s cubic-bezier(0.88, 0.87, 0.24, 1.46);}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_icone_menu_p::after {width: 100%; visibility: visible; opacity: 1;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos {width: 100%; max-width: 1300px; position: absolute; top: 100%; right: 0; visibility: hidden; overflow: hidden; z-index: 2; transition-delay: .2s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_menu_todos {visibility: visible; z-index: 4; transition-delay: 0s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos {height: 450px; position: relative; background: #f8f8f8;border-bottom: solid 4px #00adef; transform: translateY(-100%); transition: .4s ease; transition-delay: .3s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_menu_todos .e_cont_menu_todos {transform: translateY(0); transition-delay: 0s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos .e_cont_barra_menu_todos {position: absolute; left: 20px; right: 20px; top: 20px; bottom: 20px; overflow: auto;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul {width: 100%; height: 100%; display: flex; flex-flow: column wrap; background: none;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li {width: 230px; display: block; margin-right: 20px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_cabecalho_menu {background: #e2e7ec; padding: 13px; font-size: 13px; color: #777; text-transform: uppercase; letter-spacing: -0.5px; border-bottom: solid 2px rgba(0,0,0,0.04); border-radius: 3px; margin-bottom: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_cabecalho_menu .fa {padding: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_link_menu_todos {padding: 13px; color: #888; font-size: 13px; border-bottom: solid 1px rgba(0,0,0,0.04); padding-left: 25px; transition: .4s ease-out;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_link_menu_todos .fa {padding-right: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li:hover .e_link_menu_todos {color: #00adef; background: #fff; padding-left: 15px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_titulo_subitem {background: #ebebeb; padding: 10px; font-size: 12px; text-transform: uppercase; color: #777; border-bottom: solid 2px rgba(0,0,0,0.04); border-radius: 3px; margin-top: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_titulo_subitem .fa {padding: 10px; font-size: 8px; position: relative; bottom: 1px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_subitem_menu {background: rgba(235,235,235,0.5); padding-left: 20px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_ultimo_subitem {margin-bottom: 10px;}
/* ATALHOS LATERAIS */
#e_cont_topo .e_area_atalhos_laterais {position: fixed; left: 0; top: 25%; z-index: 1000; font-size: 0;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho {width: 170px; height: 40px; position: absolute; left: -130px; top: 0; border-bottom: solid 1px #ccc; border-radius: 0 3px 3px 0; overflow: hidden; transition: .4s ease-out;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho:hover {left: 0;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_sic {background: #31da74; border-color: #27c964;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_diario {top: 40px; background: #fd9644; border-color: #fa8231;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_transparencia {top: 80px; background: #45aaf2; border-color: #409adb;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_webmail {top: 120px; background: #3e70e7; border-color: #3867d6;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho .e_titulo_btn_atalho {width: 130px; height: 40px; text-align: center; display: inline-block; vertical-align: middle; font-size: 12px; color: #fff; line-height: 40px;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho .e_img_btn_atalho {width: 40px; height: 40px; display: inline-block; vertical-align: middle;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_sic .e_img_btn_atalho {background: #27c964;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_diario .e_img_btn_atalho {background: #fa8231;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_transparencia .e_img_btn_atalho {background: #2d98da;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_webmail .e_img_btn_atalho {background: #3867d6;}
/* **************************** FIM CABEรALHO **************************** */
/* **************************** CONTEรDO **************************** */
#e_conteudo {width: 100%; float: left; background: #f0f0f1;}
/* BANNER ROTATIVO */
/* #e_conteudo .p_area_banner {} */
/* BANNER MEIO */
#e_conteudo .p_area_banner_meio {margin: 3% 0; overflow: hidden;}
#e_conteudo .p_area_banner_meio .e_conteudo_interno {overflow: hidden; max-width: 1160px;}
#e_conteudo .p_area_banner_meio .e_conteudo_interno * {max-height: 200px;}
#e_conteudo .p_area_banner_meio img {width: 100%; height: auto; max-width: 1160px; display: block; margin: 0 auto !important; border: none !important;}
/* **************************** FIM CONTEรDO **************************** */
/* **************************** RODAPร **************************** */
#e_cont_rodape {width: 100%; float: left; background: #f0f0f1;}
/* NEWSLETTER */
#e_cont_rodape .e_newsletter {width: 100%; border-bottom: solid 1px #dfdfe8; font-size: 0;}
#e_cont_rodape .e_newsletter .e_cont_newsletter {padding: 30px 20px; text-align: center;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_titulo_newsletter {font-size: 22px; color: #5b6b80;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_descricao_news {font-size: 15px; color: #97a1b2;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news {width: 40%; display: inline-table; margin-top: 15px; margin-bottom: 5px;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news input {width: 70%; height: 35px; display: inline-block; vertical-align: top; background: #fff; border-radius: 3px; border: 0; font-size: 13px; color: #777; line-height: 35px; padding-left: 20px; margin-right: 10px;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news input::placeholder {color: #97a1b2;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news .e_btn_news {width: 100px; height: 34px; display: inline-block; vertical-align: top; background: #00adef; border: 0; border-bottom: solid 1px #0299d3; border-radius: 3px; text-align: center; font-size: 10px; color: #fff; text-transform: uppercase; line-height: 34px; transition: .4s ease-in-out;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news .e_btn_news:hover {background: #059bd4; cursor: pointer;}
/* CONTEรDO RODAPร */
#e_cont_rodape .e_content_rodape {width: 100%; border-bottom: solid 1px #dfdfe8; text-align: center; padding: 10px 0; font-size: 0;}
#e_cont_rodape .e_content_rodape .e_box_informacao {width: 350px; width: calc(33% - 50px); display: inline-block; vertical-align: middle; padding: 20px 0;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam {width: 100%; text-align: left; margin-bottom: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_img_info {width: 70px; height: 70px; display: inline-block; vertical-align: middle; background: #dee9f0; border-radius: 100%; }
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_texto_info {width: 250px; width: calc(100% - 70px); display: inline-block; vertical-align: middle; font-size: 13px; color: #747981; padding-left: 15px;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_texto_info a:hover {text-decoration: underline;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 {width: 350px; width: calc(33% - 50px); display: inline-block; vertical-align: middle; padding: 20px 0; padding-left: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam {width: 100%; text-align: left; margin-bottom: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_img_info {width: 70px; height: 70px; display: inline-block; vertical-align: middle; background: #dee9f0; border-radius: 100%; }
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info {width: 250px; width: calc(100% - 70px); display: inline-block; vertical-align: middle; font-size: 13px; color: #747981; padding-left: 15px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape {margin-top: 5px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape .e_img_rede_social_rodape {width: 30px; height: 30px; display: inline-block; vertical-align: middle; border-radius: 3px; overflow: hidden; margin-right: 5px; transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape .e_img_rede_social_rodape:hover {transform: scale(1.1);}
#e_cont_rodape .e_content_rodape .e_box_brasao_rodape {width: 185px; display: inline-block; vertical-align: middle; margin: 0 5%;}
/* INSTAR */
#e_cont_rodape .e_area_instar {font-size: 12px; color: #747981; text-align: center;}
#e_cont_rodape .e_area_instar .e_conteudo_interno {height: 70px; line-height: 70px; position: relative;}
#e_cont_rodape .e_area_instar a .e_over_b {transition: .25s;}
#e_cont_rodape .e_area_instar a:hover .e_over_b {color: #00adef;}
#e_cont_rodape .e_area_instar img {position: absolute; right: 30px; top: 31%;}
/* **************************** FIM RODAPร **************************** */
/* *** MรDIAS *** */
@media (min-width: 1001px) and (max-width: 1200px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 1200px;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p {padding: 0 13px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p {padding: 0 13px;}
}
@media (min-width: 801px) and (max-width: 1000px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 1000px;}
}
@media (max-width: 800px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 800px;}
}
@media (max-width: 600px) {
/* DEFININDO CONTEUDO INTERNO */
.e_contudo_interno { max-width: 600px;}
}
@media (max-width: 480px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 480px;}
.e_titulo_principal {text-align: center;}
.e_titulo_principal .e_titulo_p {margin-bottom: 10px;}
.e_titulo_principal .e_link_ver_mais {display: table; margin: 0 auto;}
} | public/css/estrutura.css | @charset "utf-8";
/* ESTRUTURA */
body { margin: 0; padding: 0; }
* { outline: none; }
.e_trans { display: none !important; }
#conteudo_esquerda { width: 100% !important; padding-bottom: 10px; padding-top:20px; min-height: calc(100vh - 485px); }
#cont_conteudo_site_interna { width:100% !important; }
#e_centralizar {width: 100%; width: calc(100% - 40px); max-width: 1200px; margin: 0 auto;}
/* RESET */
a, li, ol, ul { border: none; text-decoration: none; list-style: none; color: inherit; margin: 0; padding: 0; }
a:active, a:link, a:hover, a:focus { text-decoration: inherit; }
/* RESET DOS ESPAรAMENTOS */
#e_cont_topo, #e_cont_topo *, #e_cont_topo *:before, #e_cont_topo *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
#e_conteudo, #e_conteudo *, #e_conteudo *:before, #e_conteudo *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
#e_cont_rodape, #e_cont_rodape *, #e_cont_rodape *:before, #e_cont_rodape *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
/* RESET DAS SELEรรES */
.unselect *::selection { background: inherit; color: inherit; }
.unselect *::-webkit-selection { background: inherit; color: inherit; }
.unselect *::-moz-selection { background: inherit; color: inherit; }
.unselect *::-ms-selection { background: inherit; color: inherit; }
/* TรTULOS */
.e_titulo_principal {margin: 20px 0;}
.e_titulo_principal .e_titulo_p {display: inline-block; vertical-align: middle; font-size: 24px; color: #666; letter-spacing: -0.7px;}
.e_titulo_principal .e_link_ver_mais {width: 100px; height: 30px; display: inline-block; vertical-align: middle; background: #fff; border: solid 1px #e3e8f1; border-radius: 15px; text-align: center; margin: 0 20px; transition: transform .3s ease, background .4s ease, border .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais {transform: rotateX(360deg); background: #00adef; border-color: #00adef;}
.e_titulo_principal .e_link_ver_mais span {font-size: 11px; color: #7f8890; text-transform: uppercase; line-height: 25px; transition: .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais span {color: #fff;}
.e_titulo_principal .e_link_ver_mais .fa-angle-double-right {font-size: 16px; color: #00adef; padding-right: 7px; transition: .3s ease;}
.e_titulo_principal:hover .e_link_ver_mais .fa-angle-double-right {color: #fff;}
.e_titulo_secundario {width: 70%; display: table; font-size: 18px; color: #6e7886; text-transform: uppercase; padding-bottom: 20px; border-bottom: solid 1px #cbd5e3; text-align: center; margin: 0 auto; margin-bottom: 30px;}
/* IMAGENS */
img { border: 0; margin: 0; }
.e_imgcentralizar { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* VIDEOS */
.sw_video_capa { background: #000 !important; }
/* ESTILO DAS BARRAS DE ROLAGEM */
body *::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 3px; }
body *::-webkit-scrollbar { width: 10px; background: rgba(0,0,0,0.05); height: 10px; margin: 5px; border-radius: 3px; }
body *::-webkit-scrollbar-thumb { background: #d5d9df; border-radius: 3px; }
body *::-webkit-scrollbar-thumb:hover {background: #0299d3;}
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno {width: 100%; max-width: 1200px; display: table; margin: 0 auto;}
/* **************************** CABEรALHO **************************** */
#e_cont_topo {width: 100%; float: left; background: #fff;}
/* Barra do topo */
#e_cont_topo .e_barra_topo {width: 100%; height: 40px; position: relative; float: left; background: #fff; box-shadow: 0 2px 10px 0 rgba(217,225,234,0.45); z-index: 1;}
#e_cont_topo .e_barra_topo .e_cont_barra_topo {width: 100%; max-width: 1200px; display: table; padding: 0 20px; margin: 0 auto;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade {float: left; margin: 8px 0; font-size: 0;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_titulo_acessibilidade {display: inline-block; vertical-align: middle; font-size: 12px; color: #7d8287; padding: 0 10px;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade {display: inline-block; vertical-align: middle;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade .e_btn_acessibilidade {width: 25px; height: 25px; display: inline-block; vertical-align: middle; background: #fff; border: solid 1px #d2d7de; border-radius: 3px; text-align: center; line-height: 23px; font-size: 12px; color: #b6bbc0; margin-right: 5px; transition: .3s ease-out;}
#e_cont_topo .e_barra_topo .e_area_acessibilidade .e_cont_acessibilidade .e_btn_acessibilidade:hover {background: #00adef; color: #fff; border-color: #00adef; cursor: pointer;}
/* Busca */
#e_cont_topo .e_barra_topo .e_area_busca {float: right; position: relative; margin: 5px 0; margin-right: 20px;}
#e_cont_topo .e_barra_topo .e_area_busca .e_campo_busca {width: 180px; height: 30px; background: #f0f0f1; border: 0; border-radius: 4px; font-size: 12px; color: #7d8287; line-height: 30px; padding-left: 20px;}
#e_cont_topo .e_barra_topo .e_area_busca form:focus-within .e_campo_busca {width: 250px; background: #fff; border: solid 1px #f8f8f8;}
#e_cont_topo .e_barra_topo .e_area_busca input::placeholder {color: #959da1;}
#e_cont_topo .e_barra_topo .e_area_busca .e_btn_busca {position: absolute; right: 20px; font-size: 15px; color: #7d8287; background: none; line-height: 30px; border: 0; transition: .2s ease-in;}
#e_cont_topo .e_barra_topo .e_area_busca:hover .e_btn_busca {color: #00adef; cursor: pointer;}
#e_cont_topo .e_barra_topo .e_area_busca form:focus-within .e_btn_busca {color: #00adef;}
/* REDES SOCIAIS */
#e_cont_topo .e_barra_topo .e_area_redes_sociais {float: right; position: relative; margin: 5px 0; font-size: 0;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_titulo_redes_sociais {display: inline-block; vertical-align: middle; font-size: 12px; color: #7d8287; padding: 0 10px;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais {display: inline-block; vertical-align: middle;}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social {width: 30px; height: 30px; display: inline-block; vertical-align: middle; border-radius: 3px; overflow: hidden; margin-right: 5px; transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social img {}
#e_cont_topo .e_barra_topo .e_area_redes_sociais .e_cont_redes_sociais .e_img_rede_social:hover {transform: scale(1.1);}
/* CONTEรDO CABEรALHO */
#e_cont_topo #e_banner_topo_dinamico {width: 100%; height: 100px; background-repeat: no-repeat; background-position: top left; position: relative;}
#e_cont_topo #e_banner_topo_dinamico #e_banner_topo_dinamico_clique {width: 235px; height: 70px; float: left; margin-left: 22px; margin-top: 15px;}
/* SIC */
#e_cont_topo .e_box_cabecalho {width: 920px; width: calc(100% - 270px); float: right; margin-top: 25px; padding-right: 20px; font-size: 0;}
#e_cont_topo .e_box_cabecalho .e_area_sic {width: 175px; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_img_sic {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1;}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_img_sic img {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_area_sic:hover .e_img_sic img {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_area_sic .e_text_sic {display: inline-block; vertical-align: middle; font-size: 12px; color: #7b8490; padding-left: 10px;}
/* Portal transparรชncia */
#e_cont_topo .e_box_cabecalho .e_area_transparencia {width: 180px; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_img_transparencia {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1;}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_img_transparencia img {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_area_transparencia:hover .e_img_transparencia img {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_area_transparencia .e_text_transparencia {display: inline-block; vertical-align: middle; font-size: 12px; color: #7b8490; padding-left: 10px;}
/* SESSรO LEGISLATIVA */
#e_cont_topo .e_box_cabecalho .e_cont_sessao {white-space: nowrap; height: 50px; float: right; background: #f0f0f1; border-radius: 3px; overflow: hidden; margin-left: 4%;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_icone_sessao {width: 55px; height: 50px; display: inline-block; vertical-align: middle; background: #f8f8f8; border: solid 1px #f0f0f1; text-align: center; color: #00adef; font-size: 18px; line-height: 48px;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_icone_sessao .fa-university {transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_topo .e_box_cabecalho .e_cont_sessao:hover .e_icone_sessao .fa-university {transform: scale(1.2);}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao {display: inline-block; vertical-align: middle; text-align: center;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao .e_titulo_sessao {display: block; font-size: 12px; color: #7b8490; text-transform: uppercase; padding: 3px 0; padding-top: 6px;}
#e_cont_topo .e_box_cabecalho .e_cont_sessao .e_area_texto_sessao .e_data_sessao {display: block; background: #e2e7ec; font-size: 12px; color: #7b8490; padding: 5px 34px;}
/* MENU PRINCIPAL */
#e_cont_topo .e_menu_principal {position: relative; z-index: 100; border-bottom: solid 1px #e0e4e8; margin-top: -5px; margin-bottom: 10px;}
#e_cont_topo .e_menu_principal ul {width: 100%; max-width: 1300px; position: relative; text-align: center; display: table; margin: 0 auto;}
#e_cont_topo .e_menu_principal ul li {position: relative; display: inline-block; vertical-align: middle; text-align: left;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p {height: 60px; position: relative; font-size: 12px; color: #777; text-transform: uppercase; line-height: 60px; padding: 0 20px; cursor: pointer; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p::after {content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: #00adef; border-radius: 2px; visibility: hidden; opacity: 0; transition: .5s cubic-bezier(0.88, 0.87, 0.24, 1.46);}
#e_cont_topo .e_menu_principal ul li:hover .e_link_menu_p::after {width: 100%; visibility: visible; opacity: 1;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p {position: absolute; top: 100%; right: 0; background: none; visibility: hidden; z-index: 0;}
#e_cont_topo .e_menu_principal ul li:hover .e_submenu_p {visibility: visible; z-index: 1;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul {width: 240px; background: #f8f8f8; border-bottom: solid 5px #00adef; z-index: 120; transform: scaleY(0); transform-origin: top; padding: 10px 0; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li:hover .e_submenu_p ul {z-index: 121; transform: scaleY(1);}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li {position: relative; display: block; z-index: 50; margin: 0 5px;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li .e_link_submenu_p {position: relative; padding: 13px; font-size: 12px; color: #888; text-transform: uppercase; border-bottom: solid 1px rgba(0,0,0,0.04); border-radius: 4px; transition: .4s ease-out;}
#e_cont_topo .e_menu_principal ul li .e_submenu_p ul li:hover .e_link_submenu_p {background: #fff; color: #00adef; padding-left: 16px;}
/* MENU TODOS */
#e_cont_topo .e_menu_principal ul li.e_li_menu_p {position: static;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p {height: 60px; position: relative; font-size: 14px; color: #777; text-transform: uppercase; line-height: 60px; padding: 0 20px; cursor: pointer; transition: .3s ease-out;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p::after {content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: #00adef; border-radius: 2px; visibility: hidden; opacity: 0; transition: .5s cubic-bezier(0.88, 0.87, 0.24, 1.46);}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_icone_menu_p::after {width: 100%; visibility: visible; opacity: 1;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos {width: 100%; max-width: 1300px; position: absolute; top: 100%; right: 0; visibility: hidden; overflow: hidden; z-index: 2; transition-delay: .2s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_menu_todos {visibility: visible; z-index: 4; transition-delay: 0s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos {height: 450px; position: relative; background: #f8f8f8;border-bottom: solid 4px #00adef; transform: translateY(-100%); transition: .4s ease; transition-delay: .3s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p:hover .e_menu_todos .e_cont_menu_todos {transform: translateY(0); transition-delay: 0s;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos .e_cont_barra_menu_todos {position: absolute; left: 20px; right: 20px; top: 20px; bottom: 20px; overflow: auto;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul {width: 100%; height: 100%; display: flex; flex-flow: column wrap; background: none;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li {width: 230px; display: block; margin-right: 20px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_cabecalho_menu {background: #e2e7ec; padding: 13px; font-size: 13px; color: #777; text-transform: uppercase; letter-spacing: -0.5px; border-bottom: solid 2px rgba(0,0,0,0.04); border-radius: 3px; margin-bottom: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_cabecalho_menu .fa {padding: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_link_menu_todos {padding: 13px; color: #888; font-size: 13px; border-bottom: solid 1px rgba(0,0,0,0.04); padding-left: 25px; transition: .4s ease-out;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_link_menu_todos .fa {padding-right: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li:hover .e_link_menu_todos {color: #00adef; background: #fff; padding-left: 15px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_titulo_subitem {background: #ebebeb; padding: 10px; font-size: 12px; text-transform: uppercase; color: #777; border-bottom: solid 2px rgba(0,0,0,0.04); border-radius: 3px; margin-top: 10px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_titulo_subitem .fa {padding: 10px; font-size: 8px; position: relative; bottom: 1px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_subitem_menu {background: rgba(235,235,235,0.5); padding-left: 20px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_menu_todos .e_cont_menu_todos ul li .e_ultimo_subitem {margin-bottom: 10px;}
/* ATALHOS LATERAIS */
#e_cont_topo .e_area_atalhos_laterais {position: fixed; left: 0; top: 25%; z-index: 1000; font-size: 0;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho {width: 170px; height: 40px; position: absolute; left: -130px; top: 0; border-bottom: solid 1px #ccc; border-radius: 0 3px 3px 0; overflow: hidden; transition: .4s ease-out;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho:hover {left: 0;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_sic {background: #31da74; border-color: #27c964;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_diario {top: 40px; background: #fd9644; border-color: #fa8231;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_transparencia {top: 80px; background: #45aaf2; border-color: #409adb;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_webmail {top: 120px; background: #3e70e7; border-color: #3867d6;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho .e_titulo_btn_atalho {width: 130px; height: 40px; text-align: center; display: inline-block; vertical-align: middle; font-size: 12px; color: #fff; line-height: 40px;}
#e_cont_topo .e_area_atalhos_laterais .e_cont_btn_atalho .e_img_btn_atalho {width: 40px; height: 40px; display: inline-block; vertical-align: middle;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_sic .e_img_btn_atalho {background: #27c964;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_diario .e_img_btn_atalho {background: #fa8231;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_transparencia .e_img_btn_atalho {background: #2d98da;}
#e_cont_topo .e_area_atalhos_laterais #e_cont_btn_webmail .e_img_btn_atalho {background: #3867d6;}
/* **************************** FIM CABEรALHO **************************** */
/* **************************** CONTEรDO **************************** */
#e_conteudo {width: 100%; float: left; background: #f0f0f1;}
/* BANNER ROTATIVO */
/* #e_conteudo .p_area_banner {} */
/* BANNER MEIO */
#e_conteudo .p_area_banner_meio {margin: 3% 0; overflow: hidden;}
#e_conteudo .p_area_banner_meio .e_conteudo_interno {overflow: hidden; max-width: 1160px;}
#e_conteudo .p_area_banner_meio .e_conteudo_interno * {max-height: 200px;}
#e_conteudo .p_area_banner_meio img {width: 100%; height: auto; max-width: 1160px; display: block; margin: 0 auto !important; border: none !important;}
/* **************************** FIM CONTEรDO **************************** */
/* **************************** RODAPร **************************** */
#e_cont_rodape {width: 100%; float: left; background: #f0f0f1;}
/* NEWSLETTER */
#e_cont_rodape .e_newsletter {width: 100%; border-bottom: solid 1px #dfdfe8; font-size: 0;}
#e_cont_rodape .e_newsletter .e_cont_newsletter {padding: 30px 20px; text-align: center;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_titulo_newsletter {font-size: 22px; color: #5b6b80;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_descricao_news {font-size: 15px; color: #97a1b2;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news {width: 40%; display: inline-table; margin-top: 15px; margin-bottom: 5px;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news input {width: 70%; height: 35px; display: inline-block; vertical-align: top; background: #fff; border-radius: 3px; border: 0; font-size: 13px; color: #777; line-height: 35px; padding-left: 20px; margin-right: 10px;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news input::placeholder {color: #97a1b2;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news .e_btn_news {width: 100px; height: 34px; display: inline-block; vertical-align: top; background: #00adef; border: 0; border-bottom: solid 1px #0299d3; border-radius: 3px; text-align: center; font-size: 10px; color: #fff; text-transform: uppercase; line-height: 34px; transition: .4s ease-in-out;}
#e_cont_rodape .e_newsletter .e_cont_newsletter .e_cont_input_news .e_btn_news:hover {background: #059bd4; cursor: pointer;}
/* CONTEรDO RODAPร */
#e_cont_rodape .e_content_rodape {width: 100%; border-bottom: solid 1px #dfdfe8; text-align: center; padding: 10px 0; font-size: 0;}
#e_cont_rodape .e_content_rodape .e_box_informacao {width: 350px; width: calc(33% - 50px); display: inline-block; vertical-align: middle; padding: 20px 0;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam {width: 100%; text-align: left; margin-bottom: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_img_info {width: 70px; height: 70px; display: inline-block; vertical-align: middle; background: #dee9f0; border-radius: 100%; }
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_texto_info {width: 250px; width: calc(100% - 70px); display: inline-block; vertical-align: middle; font-size: 13px; color: #747981; padding-left: 15px;}
#e_cont_rodape .e_content_rodape .e_box_informacao .e_informacao_cam .e_texto_info a:hover {text-decoration: underline;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 {width: 350px; width: calc(33% - 50px); display: inline-block; vertical-align: middle; padding: 20px 0; padding-left: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam {width: 100%; text-align: left; margin-bottom: 20px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_img_info {width: 70px; height: 70px; display: inline-block; vertical-align: middle; background: #dee9f0; border-radius: 100%; }
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info {width: 250px; width: calc(100% - 70px); display: inline-block; vertical-align: middle; font-size: 13px; color: #747981; padding-left: 15px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape {margin-top: 5px;}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape .e_img_rede_social_rodape {width: 30px; height: 30px; display: inline-block; vertical-align: middle; border-radius: 3px; overflow: hidden; margin-right: 5px; transition: .3s cubic-bezier(0.25,-0.3, 0.01, 0.63);}
#e_cont_rodape .e_content_rodape .e_box_informacao_2 .e_informacao_cam .e_texto_info .e_redes_sociais_rodape .e_img_rede_social_rodape:hover {transform: scale(1.1);}
#e_cont_rodape .e_content_rodape .e_box_brasao_rodape {width: 185px; display: inline-block; vertical-align: middle; margin: 0 5%;}
/* INSTAR */
#e_cont_rodape .e_area_instar {font-size: 12px; color: #747981; text-align: center;}
#e_cont_rodape .e_area_instar .e_conteudo_interno {height: 70px; line-height: 70px; position: relative;}
#e_cont_rodape .e_area_instar a .e_over_b {transition: .25s;}
#e_cont_rodape .e_area_instar a:hover .e_over_b {color: #00adef;}
#e_cont_rodape .e_area_instar img {position: absolute; right: 30px; top: 31%;}
/* **************************** FIM RODAPร **************************** */
/* *** MรDIAS *** */
@media (min-width: 1001px) and (max-width: 1200px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 1200px;}
#e_cont_topo .e_menu_principal ul li .e_link_menu_p {padding: 0 13px;}
#e_cont_topo .e_menu_principal ul li.e_li_menu_p .e_icone_menu_p {padding: 0 13px;}
}
@media (min-width: 801px) and (max-width: 1000px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 1000px;}
}
@media (max-width: 800px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 800px;}
}
@media (max-width: 600px) {
/* DEFININDO CONTEUDO INTERNO */
.e_contudo_interno { max-width: 600px;}
}
@media (max-width: 480px) {
/* DEFININDO CONTEรDO INTERNO */
.e_conteudo_interno { max-width: 480px;}
.e_titulo_principal {text-align: center;}
.e_titulo_principal .e_titulo_p {margin-bottom: 10px;}
.e_titulo_principal .e_link_ver_mais {display: table; margin: 0 auto;}
} | 0.298594 | 0.107297 |
/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */
/*
## Shortcodes
-- PhotoSlider Section
-- PhotoSlider2
- Welcome Section
- Welcome2
-- Parallax Section
-- Event Section
-- EventBlock
-- Event2 section
-- Search Courses
-- Video Testimonial Section
-- CoursesDetail Section
-- Team Section
-- Testimonial2
-- WhyChooseUs Section
-- Accordiaon Section
-- CallOut
-- LatestBlog Section
-- LatestBlog2
-- Blog
-- BlogPost
-- ContactUs Section
-- Map
-- GetInTouch
-- ContactUs Form
-- ContactDetail Block
## Responsive
-- min-width: 992
-- min-width: 992 to max-width: 1199
-- max-width: 991
-- max-width: 767
-- max-width: 639
-- max-width: 479
*/
/* ## Shortcodes */
/* -- PhotoSlider Section */
.photoslider-section {
position: relative;
display: inline-block;
width: 100%;
}
.photoslider-section .item::before{
background-color: rgba(0, 0, 0, 0.4);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
}
.photoslider-section .item:nth-child(2)::before{
background-color: rgba(0, 0, 0, 0.15);
}
.photoslider-section .carousel-caption{
bottom: 0;
left: 0;
position: absolute;
right: 0;
text-align: left;
text-shadow: none;
top: 54.5%;
transform: translate(0px, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
}
.photoslider-section .item h3,
.photoslider-section .item h4 {
animation-delay: 1s;
font-family: "Roboto Slab",serif;
font-size: 70px;
font-weight: 700;
line-height: 70px;
margin: 0;
word-wrap: break-word;
-webkit-animation-delay: 1s;
}
.photoslider-section .item h3 span {
color: #ffc722;
margin-left: 9px;
}
.photoslider-section .item h3{
margin-bottom: 19px;
}
.photoslider-section .item p {
animation-delay: 2s;
font-size: 30px;
font-family: 'Niconne', cursive;
padding-right: 20px;
line-height: 35px;
-webkit-animation-delay: 2s;
}
.photoslider-section .item a {
animation-delay: 3s;
background-color: #ffc722;
color: #333;
display: inline-block;
font-family: "robotoblack";
font-size: 12px;
line-height: 28px;
margin-top: 13px;
padding: 5px 32px;
text-decoration: none;
text-transform: uppercase;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
-webkit-animation-delay: 3s;
z-index: 1;
}
.photoslider-section .item a::before {
position: absolute;
content: "";
left: 0;
right: 0;
width: 0;
bottom: 0;
top: 0;
background-color: rgba(255,255,255,1);
transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
z-index: -1;
}
.photoslider-section .item a:hover::before {
width: 100%;
}
.photoslider-section .item a:hover {
color: #000;
}
.photoslider-section .carousel-control {
background: rgba(94, 93, 94, 0.8);
border-radius: 100%;
height: 53px;
line-height: 53px;
margin: 0 10px;
opacity: 1;
text-align: center;
text-shadow: none;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
width: 53px;
z-index: 999;
}
.photoslider-section .carousel-control:hover {
background: rgba(255, 199, 34, 0.8);
color: #333;
}
.photoslider-section .carousel-control.left{
left: 53px;
}
.photoslider-section .carousel-control.right{
right: 5px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .item::before {
background-color: rgba(17, 17, 17, 0.6);
}
.photoslider2.photoslider-section .carousel-caption {
left: 120px;
}
.photoslider2.photoslider-section .carousel-control {
background: rgba(59, 63, 66, 0.6);
}
.photoslider2.photoslider-section .carousel-control:hover {
background: rgba(255, 199, 34, 0.6);
}
.photoslider2.photoslider-section .item a {
color: #fff;
padding: 10px 37px;
}
.photoslider2.photoslider-section .item a:hover {
color: #333;
}
.photoslider2.photoslider-section .item a::before {
background-color: #fff;
}
/* -- Welcome Courses */
.welcome-section .section-padding:first-of-type{
padding-top: 40px;
pdding-bottom: 40px;
}
.welcome-section .section-padding:last-of-type {
padding-top: 40px;
padding-bottom: 40px;
}
.welcome-box{
position: relative;
margin-bottom: 30px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
overflow: hidden;
}
.welcome-title{
position: absolute;
top: auto;
bottom: 50px;
left: 0;
right: 0;
display: inline-block;
width: 100%;
padding-right: 49px;
/*transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;*/
}
.welcome-box:hover .welcome-title {
/*position: absolute;
left: 0;
right: 0;
top: 40px;
bottom: auto;
margin-top: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;*/
}
.welcome-title::before{
position: absolute;
content: "";
left: 0;
right: 49px;
bottom: 0;
top: 0;
background-color: rgba(54,53,51,0.95);
display: inline-block;
border-right: 2px solid #ffc722;
}
.welcome-title h3{
position: relative;
font-size: 16px;
color: #fefefe;
text-transform: capitalize;
line-height: 24px;
letter-spacing: 0.48px;
font-family: 'Roboto Slab', serif;
padding-left: 30px;
padding-top: 25px;
padding-bottom: 25px;
margin: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 3px;
padding-top: 33px;
}*/
.welcome-content{
background-color: rgba(54, 53, 51, 0.95);
border-right: 2px solid #ffc722;
left: 0;
margin-right: 49px;
padding-bottom: 5px;
padding-left: 30px;
padding-right: 55px;
position: absolute;
right: 0;
top:0;
opacity: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.welcome-box:hover .welcome-content{
/*opacity: 1;
top: 100px;*/
}
.welcome-content > span{
color: #ffc722;
font-size: 12px;
line-height: 24px;
letter-spacing: 0.6px;
text-transform: capitalize;
display: block;
margin-bottom: 9px;
}
.welcome-content p {
font-size: 14px;
color: #bbb;
line-height: 24px;
letter-spacing: 0.14px;
}
.welcome-content .course-detail {
padding-left: 0;
margin-bottom: 15px;
}
.welcome-content .course-detail li{
display: inline-block;
color: #fff;
font-size: 14px;
line-height: 24px;
width: 100%;
margin-bottom: 8px;
font-weight: 300;
text-transform: capitalize;
}
.welcome-content .course-detail li:last-of-type{
margin-bottom: 0;
}
.welcome-content .course-detail li i{
margin-right: 10px;
}
.welcome-content .course-detail li i.fa-graduation-cap{
transform: scaleX(-1);
-ms-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
}
.course-rating {
padding-left: 0;
margin-bottom: 33px;
}
.course-rating li{
display: inline-block;
}
.course-rating li a{
font-size: 12px;
color: #ffc722;
line-height: 24px;
text-decoration: none;
margin-right: 5px;
font-weight: 700;
}
.course-rating li:last-of-type a{
color: #bbb;
margin-right: 0;
}
.welcome-content > a {
text-decoration: none;
text-transform: uppercase;
text-decoration: none;
font-size: 12px;
letter-spacing: 0.48px;
line-height: 26px;
padding: 9px 22px;
background-color: #ffc722;
color: #fff;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
border: 2px solid transparent;
}
.welcome-content > a:hover {
background-color: transparent;
border-color: #ffc722;
}
/* -- Welcome2 */
.welcome2 .search-result {
display: inline-block;
width: 100%;
border-bottom: 1px dotted #ddd;
padding-bottom: 20px;
margin-bottom: 66px;
position: relative;
}
.welcome2 .search-result > span{
font-size: 14px;
color: #aaa;
line-height: 24px;
}
.welcome2 .search-result .input-group{
position: relative;
display: inline-block;
float: right;
max-width: 187px;
}
.welcome2 .search-result .input-group .form-control {
color:#aaa;
border: 1px solid #ececec;
border-radius: 15px;
box-shadow: none;
-webkit-box-shadow: none;
min-height: 36px;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.65px;
padding-left: 18px;
padding-right: 45px;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.welcome2 .search-result .input-group-btn{
position: absolute;
right: 0;
}
.welcome2 .search-result .input-group-btn > .btn {
background-color: transparent;
border: none;
color: #777;
font-size: 15px;
box-shadow: none;
min-height: 36px;
outline: none;
position: absolute;
right: 7px;
z-index: 15;
top: 0;
}
/* -- OW Pagination */
.ow-pagination {
margin-top: 41px;
margin-bottom: 11px;
display: inline-block;
width: 100%;
text-align: center;
}
.ow-pagination .pagination{
margin: 0;
border-radius: 0;
}
.ow-pagination .pagination > li:last-of-type a{
margin-right: 0;
}
.ow-pagination .pagination > li > a{
border-radius: 100%;
line-height: 40px;
height: 40px;
width: 40px;
padding: 0;
text-align: center;
border: none;
color: #333;
font-size: 14px;
text-transform: capitalize;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-right: 6px;
text-decoration: none;
}
.ow-pagination .pagination > li > a:hover,
.ow-pagination .pagination > li.active > a{
background-color: #ffc722;
color: #fff;
}
.ow-pagination .pagination > li:first-child > a,
.ow-pagination .pagination > li:first-child > span{
border-radius: 100%;
text-decoration: none;
}
.ow-pagination .pagination > li:last-child > a{
border: 1px solid #eaeaea;
height: 36px;
display: inline-block;
width: 105px;
padding: 0;
border-radius: 30px;
line-height: 34px;
text-decoration: none;
}
.ow-pagination .pagination > li:last-child > a:hover{
border-color: #ffc722;
}
/* -- Parallax Section */
.parallax-section {
position: relative;
}
.parallax-box{
position: relative;
}
.parallax-box::before{
background-color: rgba(0, 0, 0, 0.1);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
}
.parallax-content h3{
font-size: 24px;
font-weight: 700;
color: #fff;
letter-spacing: 0.24px;
line-height: 30px;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
margin: 0 0 2px;
}
.parallax-content h3:last-of-type{
margin-bottom: 26px;
}
.parallax-content h3 span{
color: #ffc722;
}
.parallax-content p {
font-size: 15px;
line-height: 26px;
letter-spacing: 0.45px;
font-weight: 300;
font-family: 'Roboto', sans-serif;
color: #aaa;
}
.parallax-content a {
text-decoration: none;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 0.65px;
line-height: 26px;
color: #ffc722;
font-weight: 600;
font-family: 'Poppins', sans-serif;
margin-top: 7px;
margin-bottom: 33px;
display: inline-block;
width: 100%;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.parallax-content a:hover {
color: #fff;
margin-left: 5px;
}
.parallax-content ul{
padding-left: 0;
}
.parallax-content ul li{
display: inline-block;
}
/* -- PhotoSlider OwlCarousel Genral Setting */
.parallax-section .owl-carousel .owl-item img {
width: auto;
}
.parallax-section .owl-dots {
position: absolute;
right: 0;
top: 50%;
left: 40px;
right: 0;
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
bottom: auto;
margin-top: 0;
max-width: 15px;
}
.parallax-section .owl-theme .owl-dots .owl-dot {
display: block;
max-width: 15px;
}
.parallax-section .owl-theme .owl-dots .owl-dot span{
background-color: #fff;
margin-bottom: 10px;
margin-left: 0;
margin-right: 0;
width: 10px;
height: 10px;
}
.parallax-section .owl-theme .owl-controls {
margin-top: 0;
}
.parallax-section .owl-theme .owl-dots .owl-dot.active span {
background-color: #ffc722;
}
/* -- Event Section */
.event-section{
position: relative;
}
.event-section .section-padding:last-of-type{
padding-top: 45px;
padding-bottom: 45px;
}
.section-header-block{
position: relative;
}
.section-header-block > a {
position: absolute;
right: 0;
text-decoration: none;
font-size: 14px;
color: #333;
line-height: 28px;
padding: 5px 30px;
border: 1px solid #dfdfdf;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.section-header-block > a:hover {
background-color: #ffc722;
border-color: #ffc722;
}
.event-section .section-header {
display: inline-block;
text-align: left;
float: left;
}
.event-section .event-box{
position: relative;
display: inline-block;
width: 100%;
padding-bottom: 50px;
margin-bottom: 50px;
border-bottom: 1px solid #e5eaef;
}
.event-section .event-block .event-box:last-of-type {
border-bottom: none;
padding-bottom: 10px;
margin-bottom: 11px;
}
.event-box .col-md-7{
padding-left: 37px;
position: relative;
}
.event-box .col-md-7::after{
position: absolute;
content: "";
right: -42px;
top: 0;
bottom: 17px;
background-color: #e5eaef;
width: 1px;
}
.event-box h3 a,
.event-box h3{
font-size: 20px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
color: #333;
line-height: 24px;
margin-top: 18px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
text-decoration: none;
}
.event-box h3:hover a,
.event-box h3:hover{
color: #ffc722;
}
.event-box .event-meta {
display: block;
margin-bottom: 20px;
}
.event-box .event-meta span {
color: #777;
font-size: 13px;
line-height: 20px;
margin-right: 20px;
text-transform: uppercase;
}
.event-box .event-meta span i{
margin-right: 10px;
}
.event-box .event-meta span:last-of-type {
margin-right: 0;
}
.event-box p{
color:#999;
letter-spacing: 0.15px;
line-height: 26px;
font-size: 15px;
}
.event-box .readmore {
color: #333;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.26px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
text-decoration: none;
text-transform: capitalize;
display: inline-block;
text-align: center;
right: 48px;
position: absolute;
padding-top: 50px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.event-box .readmore:hover {
color: #ffc722;
}
.event-box .readmore::before {
position: absolute;
content: "";
left: 0;
bottom: 0;
border-bottom: 1px dotted #ffc722;
width: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event-box .readmore:hover::before {
width: 100%;
}
/* -- EventBlock */
.eventcourse-categories .section-header {
text-align: left;
margin-bottom: 15px;
}
.eventcourse-categories{
padding-right: 10px;
}
.eventcourse-categories .section-header h3{
margin: 0 0 10px;
}
.eventcourse-categories p {
color: #777;
font-size: 16px;
line-height: 28px;
}
.eventcourse-categories > a {
text-decoration: none;
border: 1px solid #dedede;
text-align: center;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
line-height: 28px;
color: #777;
padding: 9px 38px;
margin-top: 22px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
z-index: 1;
}
.eventcourse-categories > a::before {
position: absolute;
content: "";
background-color: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 100%;
width: 0;
z-index: -1;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.eventcourse-categories > a:hover::before {
width: 100%;
}
.eventcourse-categories > a:hover {
border-color: #000;
color: #fff;
}
/* -- Video Block */
.video-block{
position: relative;
display: inline-block;
}
.video-block.video-small{
max-width: 480px;
margin-top: 50px;
}
.video-content{
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: inline-block;
width: 100%;
z-index: 2;
padding-left: 30px;
padding-bottom: 10px;
}
.video-content::before{
position: absolute;
content: "";
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: rgba(54,53,51,0.95);
}
.video-content h3 {
font-size: 16px;
color: #fff;
letter-spacing: -0.32px;
line-height: 26px;
position: relative;
z-index: 1;
font-family: 'Roboto Slab', serif;
margin-bottom: 0;
font-weight: 400;
}
.video-content p {
color: #fff;
font-size: 14px;
line-height: 26px;
position: relative;
z-index: 1;
}
.video-block .popup-youtube {
position: absolute;
top: 43%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
height: 68px;
width: 68px;
line-height: 65px;
text-align: center;
background-color: #ffc722;
color: #fff;
font-size: 26px;
border-radius: 2px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
display: inline-block;
}
.video-block .popup-youtube::before {
position: absolute;
content: "";
background-color: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 0%;
width: 100%;
z-index: -1;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.video-block .popup-youtube:hover::before {
background-color: #000;
height: 100%
}
/* -- Event2 section */
.event-section.event2-section{
margin-left: 60px;
}
.event2-section.event-section .event-box {
position: relative;
display: inline-block;
width: 100%;
counter-increment: event-box;
border-bottom: none;
overflow: hidden;
margin-bottom: 23px;
padding-bottom: 33px;
}
.event2-section.event-section .event-block .event-box:last-of-type {
padding-bottom: 32px;
margin-bottom: 20px;
}
.event2-section.event-section .event-box::after {
position: absolute;
content: "";
left: 55px;
right: 0;
bottom: 0;
background-color: #e5eaef;
height: 1px;
width: 100%;
}
.event2-section.event-section .event-box .event-index{
position: absolute;
left: 0;
top: 22px;
font-size: 40px;
color: #f0f0f0;
line-height: 26px;
font-family: 'Roboto Slab', serif;
font-weight: 700;
}
.event2-section.event-section .event-box .eventcontent-box {
display: inline-block;
max-width: 300px;
margin-left: 73px;
}
.event2-section.event-section .event-box .eventcontent-box p {
font-size: 14px;
}
.event2-section.event-section .event-box .event-meta{
margin-bottom: 15px;
}
.event2-section.event-section .event-box > img {
position: absolute;
right: 0;
top: 12px;
}
.event2-section.event-section .event-block > a{
display: inline-block;
text-decoration: none;
text-transform: capitalize;
color: #333;
font-size: 14px;
line-height: 28px;
font-family: 'Roboto Slab', serif;
position: relative;
padding-bottom: 5px;
margin-left: 55px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event2-section.event-section .event-block > a:hover{
color: #ffc722;
}
.event2-section.event-section .event-block >a::before{
position: absolute;
content: "";
left: 0;
bottom: 0;
border-bottom: 1px dotted #ffc722;
width: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event2-section.event-section .event-block > a:hover::before{
width: 100%;
}
/* -- Search Courses */
.searchcourses{
background: url("../images/searchcourses-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding-top: 100px;
padding-bottom: 116px;
}
.searchcourses::before{
background-color: rgba(255, 199, 34, 0.94);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.searchcourses .container{
padding-left: 50px;
padding-right: 50px;
}
.searchcourses-block{
position: relative;
z-index: 1;
text-align: center;
}
.searchcourses-block h3{
margin: 0 0 42px;
color: #fff;
font-size: 28px;
line-height: 40px;
font-weight: 400;
font-family: 'Roboto Slab', serif;
padding: 0 20%;
display: inline-block;
margin-bottom: 44px;
}
.course-search-block{
display: inline-block;
width: 100%;
padding-bottom: 50px;
margin-bottom: 32px;
border-bottom: 1px solid rgba(255,255,255,0.5);
position: relative;
z-index: 1;
}
.course-search-block .col-md-3{
margin-right: 20px;
max-width: 240px;
padding-left: 0;
padding-right: 10px;
}
.course-search-block .col-md-6.search_box{
padding-left: 0;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
min-width: 240px;
max-width: 240px;
}
.course-search-block .btn-group.open .dropdown-toggle{
box-shadow: none;
}
.course-search-block .btn-default{
background-color: #fff;
border: none;
color: #acacac;
font-size: 14px;
line-height: 24px;
}
.course-search-block .btn{
border-radius: 0;
height: 49px;
padding: 10px 16px;
box-shadow: none;
}
.course-search-block .bootstrap-select.btn-group .dropdown-toggle .caret{
right: 18px;
}
.course-search-block .bootstrap-select .dropdown-toggle:focus{
outline: none !important;
}
.course-search-block .btn-default.active,
.course-search-block .btn-default:active,
.course-search-block .open > .dropdown-toggle.btn-default{
background-color: #fff;
border-color: transparent;
}
.course-search-block .btn-default.active.focus,
.course-search-block .btn-default.active:focus,
.course-search-block .btn-default.active:hover,
.course-search-block .btn-default.focus:active,
.course-search-block .btn-default:active:focus,
.course-search-block .btn-default:active:hover,
.course-search-block .open > .dropdown-toggle.btn-default.focus,
.course-search-block .open > .dropdown-toggle.btn-default:focus,
.course-search-block .open > .dropdown-toggle.btn-default:hover{
background-color: #fff;
}
.course-search-block .dropdown-menu{
border-radius: 0;
box-shadow: none;
border: none;
padding: 0;
margin-bottom: 0;
}
.course-search-block .dropdown-menu > li > a{
padding: 10px 20px;
}
.course-search-block .search_box .form-control{
height: 50px;
border: none;
box-shadow: none;
border-radius: 0;
max-width: 360px;
min-width: 360px;
padding-left: 18px;
padding-right: 20px;
text-transform: capitalize;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.course-search-block .search_box .btn{
background-color: #363533;
height: 50px;
font-size: 12px;
color: #fff;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
outline: none;
padding: 10px 40px;
font-weight: 400;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
right: -23px;
border: 2px solid transparent;
}
.course-search-block .search_box .btn:hover{
background-color: #ffc277;
color: #000;
border-color: #333;
}
.search-categories p {
position: relative;
}
.search-categories p i {
position: absolute;
left: 0;
top: 5px;
font-size: 20px;
color: #333;
}
.search-categories p span {
display: inline-block;
padding-left: 40px;
font-size: 15px;
color: #333;
text-transform: capitalize;
line-height: 24px;
}
/* -- Video Testimonial Section */
.video-testimonial-section {
background: url("../images/testimonial-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
z-index: 2;
}
.video-testimonial-section::before {
background-color: rgba(249, 249, 249, 0.98);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.video-testimonial-section .section-header{
text-align: center;
display: block;
position: relative;
z-index: 2;
}
.video-testimonial-section .section-padding:last-of-type{
padding-bottom: 29px;
padding-top: 29px;
}
/* -- Testimonial Block */
.video-testimonial-section .testimonial-block{
padding-left: 10px;
}
.testimonial-block .testimonial-box{
display:inline-block;
width: 100%;
margin-bottom: 8px;
}
.testimonial-block .testimonial-box:last-of-type {
margin-bottom: 0;
}
.testimonial-box .testimonial-content{
background-color: #fff;
border: 1px solid #e9e9e9;
padding: 30px 36px 26px;
display: inline-block;
width: 100%;
}
.testimonial-box .testimonial-content p{
font-size: 15px;
line-height: 26px;
color: #777;
font-weight: 400;
font-family: 'Roboto', sans-serif;
}
.testimonial-box .testimonial-author{
position: relative;
display: inline-block;
margin-left: 23px;
top: -21px;
}
.testimonial-author img{
float: left;
border-radius: 100%;
}
.testimonial-author p{
padding-left: 107px;
top: 31px;
color: #333;
font-size: 15px;
line-height: 22px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
text-transform: capitalize;
position: relative;
}
.testimonial-author p span{
display: block;
font-size: 13px;
line-height: 22px;
color: #777;
font-family: 'Roboto', sans-serif;
font-weight: 400;
position: relative;
top: 3px;
}
.testimonial-block .carousel-indicators {
bottom: 0;
}
.testimonial-block .carousel-indicators li{
background-color: #000;
box-shadow: none;
border: none;
}
.testimonial-block .carousel-indicators li.active{
background-color: #ffc722;
}
/* -- CoursesDetail Section */
.coursesdetail-block{
display: inline-block;
width: 100%;
border-bottom: 1px solid #ececec;
padding-bottom: 52px;
}
.coursesdetail-block img{
margin-bottom: 33px;
}
.course-title {
color: #333;
font-size: 22px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
line-height: 26px;
margin: 0 0 30px;
}
/* -- CoursesDetail */
.course-description {
display: inline-block;
margin-bottom: 18px;
}
.course-description p{
color: #777;
font-size: 15px;
line-height: 26px;
}
/* -- Courses Summary */
.courses-summary ul{
border-bottom: 1px solid #ececec;
padding-bottom: 10px;
margin-bottom: 35px;
}
.courses-summary ul{
padding-left: 0;
}
.courses-summary ul li{
display: inline-block;
width: 34.5%;
margin-bottom: 35px;
}
.courses-summary ul li a{
color: #777;
font-size: 15px;
line-height: 26px;
text-decoration: none;
position: relative;
padding-left: 30px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.courses-summary ul li a:hover{
color: #ffc277;
margin-left: 5px;
}
.courses-summary ul li a::before{
position: absolute;
content: "L";
left: 0;
top: -5px;
font-family: "ElegantIcons";
color: #ffc277;
}
/* -- Courses Sections Block */
.courses-sections-block {
display: inline-block;
width: 100%;
margin-bottom: 25px;
}
.courses-sections-block h3{
margin: 0;
color: #333;
font-size: 16px;
line-height: 26px;
font-weight: 400;
display: block;
margin: 0 0 25px;
text-transform: capitalize;
}
.courses-lecture-box {
display: inline-block;
width: 100%;
border-top: 1px solid #ececec;
font-size: 14px;
color: #777;
line-height: 26px;
padding-top: 15px;
padding-bottom: 15px;
line-height: 45px;
}
.courses-lecture-box:last-of-type {
border-bottom: 1px solid #ececec;
}
.courses-lecture-box i {
color: #ffc722;
font-size: 14px;
margin-right: 10px;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
font-size: 14px;
color: #777;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 15px;
}
.courses-lecture-box .lecture-tag{
padding: 2px 20px;
font-size: 14px;
color: #fff;
text-transform: capitalize;
background-color: #ffc722;
border-radius: 5px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.courses-lecture-box .lecture-tag a{
text-decoration: none;
color: #fff;
}
.courses-lecture-box .lecture-tag:hover {
background-color: #000;
}
.courses-lecture-box .lecture-time{
float: right;
color: #ffc722;
}
/* -- Courses Review */
.reviewbox{
display: inline-block;
margin-right: 49px;
float: left;
}
.reviewbox h3{
margin: 0 0 18px;
font-size: 15px;
color:#777;
line-height: 26px;
font-weight: 400;
}
/* -- Average Review */
.average-review {
display: inline-block;
border: 1px solid #ececec;
border-radius: 5px;
padding: 35px 40px 39px 46px;
text-align: center;
}
.average-review h2 {
font-size: 70px;
line-height: 26px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
color: #ffc722;
margin-bottom: 32px;
}
.average-review ul {
padding-left: 0;
}
.average-review ul li {
display: inline-block;
}
.average-review ul li a {
text-decoration: none;
color: #ffc722;
}
.average-review span{
display: block;
color: #777;
font-size: 15px;
line-height: 26px;
}
/* -- Detail Review */
.detail-review{
display: inline-block;
border: 1px solid #ececec;
border-radius: 5px;
border-radius: 5px;
}
.detail-review ul{
padding-left: 0;
padding-left: 33px;
padding-top: 21px;
padding-right: 25px;
}
.detail-review ul li {
display: inline-block;
width: 100%;
position: relative;
margin-bottom: 10px;
}
.detail-review ul li::after {
position: absolute;
content: "";
background-color: #f7f7f7;
height: 5px;
width: 66%;
right: 0;
top: 10px;
left: 22%;
}
.detail-review ul li a{
text-decoration: none;
font-size: 14px;
font-weight: 500;
line-height: 26px;
color: #333;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.detail-review ul li a:hover{
color: #ffc722;
}
.detail-review ul li span{
float: right;
font-size: 14px;
line-height: 26px;
color: #777;
position: relative;
right: 7px;
}
.event-contentarea .ow-pagination .pagination,
.event-contentarea .ow-pagination{
display: inline-block;
width: 100%;
}
/* -- Event Pagination */
.event-contentarea .ow-pagination li:first-of-type {
float: left;
}
.event-contentarea .ow-pagination li span{
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.event-contentarea .ow-pagination li:first-of-type span{
margin-right: 10px;
}
.event-contentarea .ow-pagination li:last-of-type{
float: right;
}
.event-contentarea .ow-pagination li:last-of-type span{
margin-left: 10px;
}
.event-contentarea .ow-pagination .pagination > li > a,
.event-contentarea .ow-pagination .pagination > li > span{
border: none;
padding: 0;
width: auto;
height: auto;
color: #777;
font-size: 15px;
line-height: 24px;
}
.event-contentarea .ow-pagination .pagination > li:hover span,
.event-contentarea .ow-pagination .pagination > li > a:hover,
.event-contentarea .ow-pagination .pagination > li.active > a{
background-color: transparent;
color: #222;
}
/* -- Courses Features */
.courses-features{
display: inline-block;
width: 100%;
border: 1px solid #ececec;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
margin-bottom: 41px;
}
.courses-features > h3{
font-size: 15px;
line-height: 26px;
color: #333;
text-transform: capitalize;
font-weight: 700;
font-family: 'Roboto Slab', serif;
margin-bottom: 0;
margin-top: 0;
}
.courses-features > h3:last-of-type{
margin-bottom: 10px;
}
.courses-features ul {
padding-left: 0;
float: left;
margin-bottom: 0;
}
.courses-features ul li {
display: inline-block;
}
.courses-features ul li a {
text-decoration: none;
color: #ffc722;
}
.courses-features> span{
color: #777;
font-size: 13px;
line-height: 20px;
margin-left: 10px;
top: -2px;
position: relative;
}
.featuresbox{
display: inline-block;
width: 100%;
position: relative;
line-height: 60px;
border-bottom: 1px solid #ececec;
}
.featuresbox h3{
font-size: 14px;
color: #777;
font-size: 14px;
text-transform: capitalize;
line-height: 26px;
font-weight: 400;
margin: 0 0 0 17px;
display: inline-block;
}
.featuresbox span{
color: #333;
font-size: 14px;
line-height: 26px;
}
/* -- Course Staff */
.courses-staff img{
margin-bottom: 20px;
}
.courses-staff h3{
font-size: 18px;
color: #333;
line-height: 26px;
font-weight: 700;
text-transform: capitalize;
margin: 0;
}
.courses-staff span{
color: #ffc722;
font-size: 14px;
line-height: 26px;
text-transform: capitalize;
display: block;
margin-bottom: 1px;
}
.courses-staff p{
color: #777;
font-size: 15px;
}
/* -- Team Section */
.team-section{
width: 100%;
background-color: #f9f9f9;
}
.team-section .section-padding:last-of-type {
padding-top: 39px;
padding-bottom: 39px;
}
.team-section .section-header{
text-align: left;
margin-bottom: 10px;
}
.team-section .team-intro p{
color: #777;
font-size: 16px;
line-height: 28px;
display: inline-block;
width: 100%;
padding-right: 70px;
}
.team-section .carousel-control{
background-color: transparent;
width: 0;
text-shadow: none;
opacity: 1;
font-size: 13px;
color: #777;
text-transform: capitalize;
line-height: 24px;
top: auto;
bottom: -52px;
font-family: 'Roboto Slab', serif;
left: 60px;
}
.team-section .carousel-control:focus,
.team-section .carousel-control:hover{
color: #333;
opacity: 1;
}
.team-section .carousel-control.right,
.team-section .carousel-control.left{
background-image: none;
}
.team-section .carousel-control.right{
left: 15px;
right: auto;
}
.team-section .carousel-control.right::before{
position: absolute;
content: "/";
left: 35px;
color: #222;
}
.team-section .team-box {
position: relative;
text-align: center;
}
.team-box ul{
padding-left: 0;
text-align: center;
display: inline-block;
background-color: #ffc722;
padding-top: 11px;
padding-bottom: 11px;
position: absolute;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
max-width: 290px;
margin: 0 auto;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.team-box:hover ul{
bottom: 73px;
opacity: 1;
}
.team-box ul li{
display: inline-block;
}
.team-box ul li a {
color: #fff;
margin-right: 20px;
font-size: 14px;
color: #f9f9f9;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.team-box ul li a:hover {
color: #000;
}
.team-box ul li:last-of-type a {
margin-right: 0;
}
.team-box .team-content h3{
margin: 0 0 2px;
color: #333;
font-size: 16px;
text-transform: capitalize;
line-height: 24px;
font-weight: 400;
font-family: 'Roboto Slab', serif;
}
.team-box .team-content span{
font-size: 13px;
color: #ffc722;
line-height: 24px;
letter-spacing: 0.65px;
}
.team-content {
position: relative;
display: inline-block;
margin-top: 23px;
}
/* -- Testimonial2 */
.testimonial2-section{
text-align: center;
}
.testimonial2-section .testimonialbox {
width: 52%;
margin: 0 auto;
}
.testimonial2-section img {
border-radius: 100%;
margin-bottom: 20px;
}
.testimonial2-section .testimonialbox p {
font-family: 'Roboto Slab', serif;
font-size: 16px;
line-height: 30px;
text-align: center;
color: #333;
}
.testimonial2-section .testimonial-author-box i {
position: relative;
font-weight: 300;
font-size: 20px;
color: #d2d2d2;
margin-top: 11px;
}
.testimonial2-section .testimonial-author-box h3 {
font-size: 16px;
font-weight: 700;
color: #333;
font-family: 'Roboto Slab', serif;
text-transform: capitalize;
line-height: 24px;
text-align: center;
margin: 10px 0 5px;
}
.testimonial2-section .testimonial-author-box span {
display: block;
font-size: 14px;
font-style: italic;
letter-spacing: 0.42px;
line-height: 24px;
color: #f7c51d;
text-transform: capitalize;
}
.testimonial2-section .carousel-indicators{
bottom: -30px;
left: 0;
right: 0;
margin: 0 auto;
width: 50%;
}
.testimonial2-section .carousel-indicators li{
background-color: #e4e4e4;
border: none;
width: 8px;
height: 8px;
border-radius: 2px;
margin-right: 6px;
}
.testimonial2-section .carousel-indicators li.active{
background-color: #ffc722;
width: 8px;
height: 8px;
position: relative;
top: -1px;
}
/* -- Testimonial2 Section:: Carousel contro setting */
.testimonial2-section .carousel-control {
width: 0;
opacity: 1;
text-shadow: none;
font-size: 30px;
top: 25%;
color: #dbdbdb;
margin: 0 72px;
}
.testimonial2-section .carousel-control:focus,
.testimonial2-section .carousel-control:hover {
color: #ffc722;
}
.testimonial2-section .carousel-control.right .index{
right: 2px;
}
.testimonial2-section .carousel-control.left .index{
left: 5px;
}
.testimonial2-section .carousel-control.right{
right: 15px;
}
.testimonial2-section .carousel-control .index {
display: inline-block;
margin-bottom: 0;
position: relative;
top: 8px;
color: #6d6d6d;
font-size: 13px;
line-height: 17px;
}
.testimonial2-section .carousel-control .total_index{
font-size: 16px;
font-weight: 300;
line-height: 17px;
position: relative;
padding-left: 9px;
}
.testimonial2-section .carousel-control .total_index::before {
position: absolute;
content: "/";
left: 2px;
top: 1px;
color: #6d6d6d;
font-size: 17px;
}
.testimonial2-section .carousel-control .index_next,
.testimonial2-section .carousel-control .index_prev {
font-size: 16px;
font-weight: 300;
line-height: 17px;
}
/* -- Accordiaon Section */
.accordion-section .section-header {
margin-bottom: 42px;
}
.accordion-section .panel-group .panel{
border-radius: 0;
margin-bottom: 5px;
padding: 0 0 6px 32px;
box-shadow: none;
border: none;
}
.accordion-section .panel-default > .panel-heading{
background-color: transparent;
padding: 5px 33px;
border: 1px solid #e9e9e9;
border-radius: 0;
}
.accordion-section .panel-title {
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
position: relative;
font-family: 'Roboto Slab', serif;
position: relative;
}
.accordion-section .panel-title::after {
position: absolute;
content: "";
background-color: #ddd;
width: 1px;
height: 28px;
top: 10px;
bottom: 0;
right: 20px;
}
.accordion-section .panel-title a{
text-decoration: none;
display: inline-block;
width: 100%;
line-height: 50px;
position: relative;
color: #333;
}
.accordion-section .panel-title a::before {
position: absolute;
content: "\f068";
font-family: "FontAwesome";
right: -7px;
top: 0;
font-size: 7px;
font-weight: 300;
color: #f7c51d;
}
.accordion-section .panel-title a.collapsed::before {
position: absolute;
content: "\f067";
font-family: "FontAwesome";
right: -7px;
top: 0;
font-size: 8px;
font-weight: 100;
color: #000;
}
.accordion-section .panel-body{
display: inline-block;
margin: 0 33px;
}
.accordion-section .panel-group .panel-heading + .panel-collapse > .list-group,
.accordion-section .panel-group .panel-heading + .panel-collapse > .panel-body{
border-top: none;
}
.accordion-section .panel-body p{
font-size: 15px;
color: #777;
line-height: 26px;
font-weight: 300;
}
.accordion-section .panel-default > .panel-heading + .panel-collapse > .panel-body{
padding: 19px 0 14px;
}
/* -- CallOut */
.callout{
background: url("../images/callout-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding-top: 50px;
padding-bottom: 27px;
}
.callout::before{
background-color: rgba(255, 199, 34, 0.98);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.callout .callout-content {
float: left;
}
.callout .callout-content h3 {
color: #fff;
font-weight: 700;
font-size: 26px;
line-height: 28px;
letter-spacing: -0.52px;
font-family: 'Roboto Slab', serif;
margin: 0 0 5px;
}
.callout .callout-content p {
font-size: 16px;
line-height: 28px;
color: #fff;
}
.callout a {
float: right;
text-decoration: none;
padding: 12px 49px;
background-color: #363533;
text-align: center;
text-transform: capitalize;
font-size: 16px;
color: #fff;
border: 2px solid transparent;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.callout a:hover {
background-color: transparent;
border-color: #363533;
color: #363533;
}
/* -- LatestBlog Section */
.type-post{
display: inline-block;
width: 100%;
margin-bottom: 30px;
}
.type-post .entry-cover{
position: relative;
}
.type-post .entry-block{
position: relative;
display: inline-block;
width: 100%;
}
.type-post .entry-contentblock{
background-color: #fefefe;
display: inline-block;
width: 100%;
text-align: center;
padding-top: 20px;
position: relative;
right: 0;
left: 0;
top: -30px;
max-width: 310px;
}
.type-post .entry-contentblock .postdate{
font-size: 13px;
text-transform: capitalize;
color: #ffc722;
display: block;
margin-bottom: 5px;
}
.type-post .entry-contentblock .postby {
color: #777;
font-size: 13px;
position: relative;
padding-bottom: 17px;
}
.type-post .entry-contentblock .postby::after {
position: absolute;
content: "";
left: 0;
bottom: 0;
right: 0;
width: 38px;
height: 1px;
background-color: #ffc722;
margin: 0 auto;
}
.type-post .entry-contentblock .postby a {
color: #777;
font-size: 13px;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.type-post .entry-contentblock .postby a:hover {
color: #000;
}
.type-post .entry-title a{
text-decoration: none;
}
.type-post .entry-title h3,
.type-post .entry-title a{
color: #333;
font-size: 15px;
line-height: 24px;
font-family: 'Roboto Slab', serif;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
word-wrap: break-word;
display: block;
margin-top: 30px;
}
.type-post .entry-title h3:hover,
.type-post .entry-title a:hover{
color: #ffc722;
}
.type-post .entry-block .post-ic{
position: absolute;
right: 4px;
top: 0;
width: 56px;
height: 56px;
line-height: 56px;
text-align: center;
color: #333;
background-color: #f6f7f8;
font-size: 18px;
}
.latestblog-section .post-viewall{
display: inline-block;
width: 100%;
margin-top: 7px;
text-align: center;
}
.latestblog-section .post-viewall a {
text-align: center;
margin: 0 auto;
text-decoration: none;
padding: 8px 36px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.36px;
line-height: 30px;
font-size: 12px;
color: #232323;
border: 2px solid #dedede;
display: inline-block;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.latestblog-section .post-viewall a:hover {
background-color: #000;
color: #fff;
border-color: #000;
}
/* -- LatestBlog2 */
.latestblog2.latestblog-section{
padding-bottom: 45px;
}
.latestblog-section.latestblog2{
background: url("../images/latestblog-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.latestblog-section.latestblog2::before{
background-color: rgba(17,17,17, 0.9);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.latestblog-section.latestblog2 .section-header{
position: relative;
z-index: 1;
}
.latestblog-section.latestblog2 .section-header h3{
color: #fff;
}
.latestblog-section.latestblog2 .section-header p{
color: #999;
}
.latestblog-section.latestblog2 .type-post .entry-contentblock{
padding-bottom: 27px;
}
/* -- Blog */
.blog .type-post{
margin-bottom: 7px;
}
.blog .type-post .entry-contentblock{
max-width: 805px;
top: -55px;
border: 1px solid #f8f8f8;
padding-left: 41px;
padding-bottom: 40px;
padding-top: 38px;
text-align: left;
}
.blog .type-post .entry-meta span{
margin-right: 20px;
font-size: 14px;
color: #333;
line-height: 30px;
text-transform: capitalize;
}
.blog .type-post .entry-meta span:last-of-type{
margin-right: 0;
}
.blog .type-post .entry-meta span a{
color: #ffc722;
text-decoration: none;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.39px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.blog .type-post .entry-meta span a:hover{
color: #000;
}
.blog .type-post .entry-meta .postdate{
display: inline-block;
padding-bottom: 0;
}
.blog .type-post .entry-contentblock .postby::after{
width: 0;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a{
font-weight: 700;
font-size: 20px;
line-height: 24px;
letter-spacing: 0.6px;
font-family: 'Roboto Slab', serif;
margin-top: 3px;
margin-bottom: 22px;
}
.blog .type-post .entry-content p{
color: #777;
font-size: 15px;
letter-spacing: 0.45px;
line-height: 26px;
padding-right: 30px;
}
.blog .type-post .entry-contentblock > a{
text-align: center;
margin-top: 23px;
text-decoration: none;
padding: 10px 47px;
text-transform: capitalize;
letter-spacing: 0.345px;
line-height: 26px;
font-weight: 400;
font-size: 15px;
color: #777;
border: 2px solid #dedede;
display: inline-block;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.blog .type-post .entry-contentblock > a:hover {
background-color: #000;
color: #fff;
border-color: #000;
}
.blog .type-post .entry-block .post-ic{
right: 9px;
}
.blog .ow-pagination{
margin-top: 10px;
}
.blog .section-padding:last-of-type{
padding-top: 45px;
padding-bottom: 45px;
}
/* -- Widget Area */
.widget-area .widget {
border: 1px solid #ececec;
padding-left: 20px;
padding-top: 28px;
padding-right: 20px;
display: inline-block;
width: 100%;
margin-bottom: 49px;
}
.widget-title{
position: relative;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
padding-bottom: 9px;
margin-top: 0;
}
.widget-title::after{
position: absolute;
content: "";
left: 0;
bottom: 0;
background-color: #ffc722;
height: 2px;
width: 40px;
}
/* -- Widget:: Categories */
.widget_categories ul{
padding-left: 0;
margin-bottom: 0;
}
.widget_categories ul li {
display: inline-block;
width: 100%;
border-bottom: 1px solid #ececec;
position: relative;
padding-top: 18px;
padding-bottom: 18px;
}
.widget_categories ul li:last-of-type{
border-bottom: none;
}
.widget_categories ul li a{
text-decoration: none;
font-size: 14px;
color: #777;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_categories ul li span{
font-size: 13px;
color: #777;
position: absolute;
right: 0;
top: 23px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_categories ul li:hover span,
.widget_categories ul li a:hover{
color: #ffc722;
margin-left: 5px;
}
/* -- Widget:: LatestNews */
.widget_latestnews .widget-title {
margin-bottom: 23px;
}
.widget_latestnews .latestnews-box{
border-bottom: 1px solid #ececec;
padding-bottom: 19px;
margin-bottom: 21px;
display: block;
}
.widget_latestnews .latestnews-box:last-of-type{
border-bottom: none;
margin-bottom: 5px;
}
.widget_latestnews .latestnews-box a{
text-decoration: none;
display: inline-block;
width: 100%;
font-size: 14px;
color: #777;
text-transform: capitalize;
letter-spacing: 0.42px;
line-height: 24px;
margin-bottom: 7px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_latestnews .latestnews-box a:hover{
color: #000;
}
.widget_latestnews .latestnews-box span{
display: block;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.39px;
color: #ffc722;
}
.widget.courses-staff{
border: none;
padding: 0;
}
/* -- BlogPost */
.blog.blogpost .container .section-padding:last-of-type{
padding-top: 40px;
padding-bottom: 40px;
}
.blog.blogpost .type-post .entry-contentblock{
padding-bottom: 25px;
}
.blog.blogpost .type-post .entry-title h3:hover{
color: #333;
}
.blog.blogpost .type-post .entry-content p {
font-weight: 300;
font-size: 14px;
line-height: 28px;
letter-spacing: 0.42px;
}
.blogpost blockquote {
background-color: #f7f7f7;
border-left: 4px solid #ffc722;
padding-top: 25px;
padding-bottom: 36px;
padding-left: 58px;
padding-top: 36px;
margin-top: 30px;
margin-bottom: 29px;
}
.blogpost blockquote p{
color: #777;
font-style: italic;
font-size: 15px;
line-height: 28px;
font-weight: 400;
letter-spacing: 0.15px;
display: inline-block;
font-family: 'Roboto', sans-serif;
}
.blogpost .entry-contentblock > ul {
padding-left: 0;
display: block;
text-align: center;
border-top: 1px solid #ececec;
padding-top: 25px;
margin-top: 23px;
margin-bottom: 0;
}
.blogpost .entry-contentblock > ul li{
display: inline-block;
}
.blogpost .entry-contentblock > ul li a{
color: #333;
font-size: 14px;
letter-spacing: 2.8px;
line-height: 26px;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-right: 17px;
}
.blogpost .entry-contentblock > ul li a:hover{
color: #ffc722;
}
.blogpost .entry-contentblock > ul li:last-of-type a{
margin-right: 0;
}
/* -- Post Comment */
.post-comments {
display: block;
margin-bottom: 56px;
}
.block-title{
font-size: 22px;
font-weight: 700;
margin: 0;
font-weight: 700;
font-family: 'Roboto Slab', serif;
}
.post-comments .media {
position: relative;
overflow: visible;
margin-top: 40px;
}
.post-comments .media-left {
position: absolute;
left: 0;
top: 41px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
border-radius: 100%;
padding-right: 0;
padding: 6px 6px 6px 5px;
z-index: 5;
background-color: #fff;
}
.post-comments .media-left::before {
position: absolute;
content: "";
left: 0;
right: 0;
bottom: 0;
top: 0;
-webkit-transform:rotate(-45deg);
transform: rotate(-45deg);
border: 2px solid #f7f7f7;
border-radius: 100%;
border-top: none;
border-left: none;
}
.post-comments .media-object {
border-radius: 100%;
}
.post-comments .media-body {
overflow: visible;
}
.post-comments .media-body .media-content {
margin-left: 60px;
border: 1px solid #dedede;
padding: 41px 41px 60px 100px;
background-color: #fefefe;
}
.post-comments .media-body .media-heading {
font-size: 16px;
font-weight: 700;
margin-top: 0;
color: #333;
line-height: 28px;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
margin-bottom: 11px;
}
.post-comments .media-body .media-heading span {
color: #ffc722;
font-size: 13px;
letter-spacing: 0.6px;
line-height: 28px;
float: right;
text-transform: capitalize;
font-weight: 400;
word-wrap: break-word;
padding-right: 15px;
}
.post-comments .media-body .media-heading a {
color: #232323;
float: right;
letter-spacing: 1.1px;
font-weight: 300;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.post-comments .media-body .media-heading a:hover {
color: #feca16;
}
.post-comments .media-body .media-heading a i {
margin-right: 5px;
}
.post-comments .media .media-body .media {
margin-left: 90px;
position: relative;
}
.post-comments .media-content > p {
color: #777;
font-size: 14px;
font-weight: 300;
letter-spacing: 0.42px;
line-height: 25px;
margin-bottom: 8px;
}
.post-comments .media-content > a {
float: right;
color: #333;
font-size: 11px;
letter-spacing: 0.44px;
font-family: 'Roboto Slab', serif;
font-weight: 700;
line-height: 28px;
text-transform: uppercase;
position: relative;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-left: 10px;
margin-right: 15px;
}
.post-comments .media-content > a::after {
position: absolute;
content: "";
bottom: 0;
background-color: #ddd;
width: 100%;
height: 1px;
left: 0;
right: 0;
}
.post-comments .media-content > a:hover {
color: #f7c51d;
}
.post-comments .media-content > a:hover::before {
background-color: #f7c51d;
}
/* -- Comment Form */
.blogpost .comment-form .block-title{
margin-bottom: 30px;
}
.blogpost .comment-form .form-group {
margin-bottom: 30px;
}
.blogpost .comment-form .form-group:last-of-type {
margin-bottom: 10px;
}
.blogpost .comment-form .form-control{
border-radius: 0;
font-weight: 300;
font-size: 14px;
color: #999;
min-height: 50px;
padding: 0 29px;
box-shadow: none;
border-color: #ececec;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.blogpost .comment-form .form-control:focus{
border-color: #000;
}
.blogpost .comment-form .form-control.msg{
padding-top: 26px;
padding-bottom: 26px;
height: 170px;
}
.comment-form input[type="submit"] {
background-color: #ffc722;
border: medium none;
color: #333;
display: inline-block;
font-size: 13px;
font-weight: 700;
line-height: 26px;
letter-spacing: 0.65px;
padding: 9px 46px;
text-decoration: none;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.comment-form input[type="submit"]:hover {
background-color: #333;
color: #ffc722;
}
/* -- ContactUs Section */
.contactus-section .container .section-padding:last-of-type{
padding-top: 27px;
padding-bottom: 27px;
}
/* -- Map */
.map-canvas {
height: 580px;
width: 100%;
}
/* -- GetInTouch */
.getintouch {
padding-left: 19px;
}
.getintouch h3{
color: #333;
font-weight: 700;
font-family: 'Roboto Slab', serif;
position: relative;
text-transform: capitalize;
line-height: 28px;
margin: 9px 0 23px;
padding-bottom: 17px;
}
.getintouch h3::after{
position: absolute;
content: "";
left: 0;
bottom: 0;
background-color: #ffc722;
width: 40px;
height: 2px;
}
.getintouch p{
color: #777;
font-size: 15px;
line-height: 26px;
padding-right: 25px;
}
/* -- ContactUs Form */
.contactus-form {
display: inline-block;
margin-top: 15px;
}
.contactus-form .form-group {
margin-bottom: 30px;
}
.contactus-form .form-control {
font-weight: 300;
font-size: 14px;
border-radius: 0;
min-height: 50px;
box-shadow: none;
-webkit-box-shadow: none;
-webkit-appearance: none;
line-height: 26px;
padding-left: 19px;
color: #777;
letter-spacing: 0.52px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactus-form .form-control:focus {
border-color: #000;
}
.contactus-form input[type="submit"] {
padding: 8px 47px;
border-radius: 0;
background-color: #ffc722;
border: none;
color: #333;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
font-weight: 700;
letter-spacing: 0.65px;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactus-form input[type="submit"]:hover {
background-color: #333;
color: #fff;
}
/* -- Alert Msg */
.alert-msg {
color: #ccc;
width: 100%;
margin: 10px 15px;
text-align: left;
z-index: 1;
display: inline-block;
}
.alert-msg-success {
color: #50B948;
}
.alert-msg-failure {
color: #FF0000;
}
/* -- ContactDetail Block */
.contactdetail-block{
width: 100%;
background-color: #f9f9f9;
padding-top: 84px;
padding-bottom: 40px;
}
.contactinfo-box{
text-align: center;
margin-bottom: 30px;
}
.contactinfo-box span{
color: #ffc722;
font-size: 35px;
display: block;
margin-bottom: 14px;
}
.contactinfo-box h3 {
color: #333;
font-size: 20px;
font-weight: 700;
text-transform: capitalize;
font-size: 20px;
line-height: 26px;
margin: 0 0 12px;
font-family: 'Roboto Slab', serif;
}
.contactinfo-box p {
color: #777;
font-size: 15px;
line-height: 26px;
padding-right: 10px;
margin-bottom: 14px;
}
.contactinfo-box> a {
text-decoration: none;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
font-weight: 700;
color: #ffc722;
font-size: 13px;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactinfo-box> a:hover {
color: #000;
}
/* ========================================================================== */
/* ========================================================================== */
/* [Responsive] */
/* ========================================================================== */
/* ========================================================================== */
/* -- min-width: 1366 to max-width: 1651 */
@media only screen and (min-width: 1366px) and (max-width: 1651px) {
/* -- Parallax Section */
.parallax-content{
padding-left: 8%;
padding-right: 8%;
padding-top: 5%;
}
}
/* -- min-width: 1200 to max-width: 1365 */
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
/* -- Parallax Section */
.parallax-content{
padding-left: 8%;
padding-top: 2%;
padding-right: 4%;
}
}
/* -- min-width: 992 */
@media (min-width: 992px) {
/* -- Welcome Section */
.welcome-section .col-md-4:nth-child(3n+1){
clear: both;
}
/* -- LatestBlog Section */
.latestblog-section .col-md-4:nth-child(3n+1){
clear: both;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3:nth-child(4n+1){
clear: both;
}
.parallax-content{
position: absolute;
top: 0;
background-color: #363533;
height: 100%;
background: -webkit-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: -o-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: -moz-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background-size: 100% 340%;
width: 56.3%;
padding-left: 5%;
padding-right: 15%;
padding-top: 7.4%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
}
/* -- min-width: 992 to max-width: 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption {
top: 45%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 45px;
line-height: 45px;
}
.photoslider-section .item p{
font-size: 28px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .carousel-caption {
left: 20px;
}
/* -- Welcome Section */
.welcome-title h3{
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 0;
padding-top: 15px;
}
.welcome-box:hover .welcome-title{
top: 24px;
}
.welcome-content{
padding-left: 15px;
padding-right: 15px;
padding-bottom: 2px;
}
.welcome-box:hover .welcome-content{
top: 63px;
}*/
.welcome-content .course-detail li,
.welcome-content p{
font-size: 13px;
}
.course-rating{
margin-bottom: 15px;
}
.welcome-content > a{
padding: 5px 20px;
}
/* -- Parallax Section */
.parallax-content{
padding-left: 5%;
padding-right: 2%;
padding-top: 2%;
width: 60%;
}
.parallax-content h3{
font-size: 20px;
line-height: 28px;
}
.parallax-content h3:last-of-type{
margin-bottom: 5px;
}
.parallax-section .owl-dots{
left: 15px;
}
.parallax-content a{
margin-bottom: 10px;
}
.parallax-content{
width: 70%;
padding-right: 10%;
}
/* -- Event Section */
.event-box .col-md-7{
padding-left: 15px;
}
.event-box .col-md-7::after{
right: 0;
}
.event-box h3 a,
.event-box h3{
margin-top: 0;
}
/* -- Event2 Block */
.eventcourse-categories .section-header{
margin-bottom: 0;
}
.eventcourse-categories .section-header h3{
font-size: 26px;
}
.eventcourse-categories p{
font-size: 15px;
}
.video-content{
padding-left: 15px;
padding-bottom: 0;
}
.video-content h3{
font-size: 15px;
margin-top: 10px;
}
.video-content p{
font-size: 14px;
}
.video-block .popup-youtube{
width: 50px;
height: 50px;
line-height: 50px;
font-size: 20px;
top: 38%;
}
.event-section.event2-section{
margin-left: 0;
}
.event2-section.event-section .event-box .event-index{
top: 0;
font-size: 32px;
}
.event2-section.event-section .event-box .eventcontent-box{
margin-left: 50px;
}
.event2-section.event-section .event-box::before{
top: 6px;
}
/* -- Search Courses */
.searchcourses .container{
padding-left: 15px;
padding-right: 15px;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
min-width: 200px;
max-width: 200px;
}
.course-search-block .col-md-6.search_box{
max-width: 400px;
}
.course-search-block .search_box .form-control{
min-width: 270px;
}
.course-search-block .search_box .btn{
padding: 10px 30px;
right: -18px;
}
/* -- Video Testimonial Section */
.video-block.video-block-lg .video-content {
padding-left: 15px;
}
.testimonial-block .carousel-indicators{
bottom: -20px;
}
/* -- CoursesDetail Section */
.courses-features{
padding-left: 10px;
padding-right: 10px;
}
.featuresbox h3{
font-size: 13px;
}
.courses-summary ul li a{
font-size: 14px;
padding-left: 25px;
}
/* -- LatestBlog Section */
.type-post .entry-contentblock{
max-width: 235px;
}
/* -- Blog */
.widget_categories ul li a{
font-size: 13px;
}
.widget_categories ul li span{
font-size: 12px;
}
.blog .type-post .entry-contentblock{
top: 0;
}
.blog .type-post .entry-block .post-ic{
right: 0;
}
}
/* -- max-width: 991 */
@media (max-width: 991px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption {
top: 40%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 38px;
line-height: 40px;
}
.photoslider-section .item h3{
margin-bottom: 10px;
}
.photoslider-section .item p{
font-size: 27px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .carousel-caption {
left:0;
}
/* -- Welcome Section */
.welcome-title h3{
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 0;
padding-top: 16px;
}
.welcome-box:hover .welcome-title{
top: 45px;
}
.welcome-content{
padding-left: 15px;
padding-right: 15px;
padding-bottom: 2px;
}
.welcome-box:hover .welcome-content{
top: 85px;
}*/
.welcome-content > span{
margin-bottom: 5px;
}
.welcome-content .course-detail li,
.welcome-content p{
font-size: 13px;
}
.welcome-content .course-detail{
margin-bottom: 18px;
}
.course-rating{
margin-bottom: 25px;
}
.welcome-content > a{
padding: 5px 20px;
}
/* -- Parallax Section */
.parallax-content{
position: relative;
width: 100%;
background-color: #363533;
padding: 22px 7% 20px 10%;
}
.parallax-section .owl-dots{
left: 25px;
}
.parallax-content h3{
font-size: 18px;
}
.parallax-content h3:last-of-type{
margin-bottom: 10px;
}
.parallax-content a{
margin-bottom: 15px;
}
/* -- Event Section */
.event-box .col-md-7{
padding-left: 8px;
}
.event-box .col-md-7::after{
right: 0;
}
.event-box h3 a,
.event-box h3{
margin-top: 0;
font-size: 18px;
}
.event-box .event-meta{
margin-bottom: 5px;
}
.event-box .readmore{
right: 25px;
}
/* -- Event2 Section */
.eventcourse-categories .section-header,
.eventcourse-categories{
text-align: center;
}
.video-block{
display: block;
margin: 50px auto;
float: none;
text-align: center;
}
.event-section.event2-section{
margin-left: 0;
}
.event2-section.event-section .event-box .eventcontent-box{
max-width: 420px;
}
.event2-section.event-section .event-box .event-index{
top: 3px;
font-size: 32px;
}
.event2-section.event-section .event-box > img{
top: 0;
}
/* -- Search Courses */
.searchcourses .container{
padding-left: 15px;
padding-right: 15px;
}
.course-search-block .col-md-3,
.course-search-block .btn{
max-width: 150px;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
width: 150px;
width: 150px;
}
.course-search-block .col-md-6.search_box{
max-width: 330px;
}
.course-search-block .search_box .form-control{
min-width: 220px;
}
.course-search-block .search_box .btn{
padding: 10px 25px;
right: -18px;
}
/* -- Video Testimonial Section */
.video-testimonial-section .video-block{
max-width: 570px;
}
.video-block.video-block-lg .video-content {
padding-left: 0;
}
/* -- CoursesDetail Section */
.courses-features{
padding-left: 10px;
padding-right: 10px;
}
.featuresbox h3{
font-size: 13px;
}
.courses-summary ul li{
width: 100%;
margin-bottom: 15px;
}
.reviewbox{
margin-right: 20px;
}
.average-review{
padding: 32px 20px 39px 20px;
}
.average-review h2{
font-size: 60px;
}
.detail-review ul{
padding-left: 15px;
padding-right: 10px;
padding-top: 21px;
}
/* -- Team Section */
.team-gallary{
display: inline-block;
margin-top: 120px;
}
.team-content-block{
padding-left: 15px;
}
.team-section .team-intro p{
padding-right: 0;
}
/* -- Testimonial2 Section */
.testimonial2-section .testimonialbox{
width: 75%;
}
/* -- Testimonial2 Section:: Carousel contro setting */
.testimonial2-section .carousel-control {
margin: 0 20px 0 0;
}
/* -- WhyChooseUs Section */
.whychooseus-section .video-block{
max-width: 570px;
}
.whychooseus-section .accordion-section{
max-width: 590px;
float: none;
margin: 0 auto;
}
.whychooseus-section .accordion-section .panel-group .panel{
padding: 0 0 6px;
}
/* -- LatestBlog Section */
.latestblog-section .col-md-4:nth-child(2n+1){
clear: both;
}
.type-post .entry-contentblock{
max-width: 285px;
}
/* -- Blog */
.blog .type-post .entry-contentblock{
top: 0;
}
.blog .type-post .entry-contentblock{
padding-top: 5px;
padding-left: 20px;
padding-bottom: 25px;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a {
font-size: 18px;
margin-bottom: 10px;
}
.blog .type-post .entry-contentblock > a{
font-size: 14px;
padding: 5px 24px;
margin-top: 5px;
}
.blog .type-post .entry-block .post-ic{
right: 0;
}
.blog .type-post{
margin-bottom: 40px;
}
/* -- ContactDetail */
.getintouch{
margin-top: 50px;
display: block;
}
.contactdetail-block .col-md-3:nth-child(4n+1){
clear: both;
}
.getintouch p{
padding-right: 0;
}
/* -- CallOut */
.callout a{
padding: 12px 40px;
}
}
/* -- max-width: 767 */
@media (max-width: 767px) {
/* -- PhotoSlider Section */
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 32px;
line-height: 32px;
}
.photoslider-section .item p{
font-size: 22px;
line-height: 24px;
}
.photoslider-section .carousel-control{
height: 38px;
line-height: 38px;
top: auto;
width: 38px;
}
/* -- Welcome Section */
.welcome-title{
bottom: 80px;
}
/*.welcome-box:hover .welcome-title{
top: 25px;
}
.welcome-box:hover .welcome-content{
top: 65px;
}*/
/* -- Event Section */
.event-section .event-box{
margin-bottom: 25px;
padding-bottom: 25px;
}
.event-box p{
font-size: 14px;
}
.event-box .readmore{
position: relative;
float: right;
right: 15px;
padding-top: 0;
}
/* -- Event2 Section */
.event2-section.event-section .event-box .eventcontent-box{
max-width: 350px;
}
/* -- Search Courses */
.searchcourses-block h3{
padding: 0;
font-size: 24px;
line-height: 30px;
margin-bottom: 30px;
}
.course-search-block .col-md-3, .course-search-block .btn{
max-width: 135px;
}
.course-search-block .col-md-6.search_box{
max-width: 280px;
}
.course-search-block .search_box .form-control{
min-width: 160px;
}
.course-search-block .search_box .btn{
padding: 10px 15px;
}
/* -- Video Testimonial Section */
.video-block .popup-youtube{
width: 50px;
height: 50px;
line-height: 50px;
font-size: 20px;
top: 35%;
}
/* -- CoursesDetail Section */
.event-sidebar{
margin-top: 25px;
display: inline-block;
}
/* -- CallOut */
.callout .callout-content h3{
font-size: 22px;
}
.callout .callout-content p{
font-size: 15px;
}
.callout a{
font-size: 15px;
padding: 8px 20px;
}
/* -- LatestBlog Section */
.type-post .entry-contentblock{
max-width: 100%;
top: 0;
}
.type-post .entry-block .post-ic{
right: 0;
}
/* -- Blog */
.widget-area {
margin-top: 30px;
}
.blog .type-post .entry-contentblock{
padding-left: 15px;
}
.blog .type-post .entry-content p{
padding-right: 10px;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3:nth-child(2n+1){
clear: both;
}
}
/* -- max-width: 639 */
@media (max-width: 639px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption{
top: 36%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 24px;
line-height: 24px;
}
.photoslider-section .item p{
font-size: 20px;
line-height: 22px;
padding-right: 0;
}
.photoslider-section .item a{
font-size: 11px;
padding: 1px 20px;
margin-top: 2px;
}
.photoslider-section .carousel-control{
height: 38px;
line-height: 38px;
top: auto;
width: 38px;
}
/* -- Parallax */
/* -- Welcome Section */
.welcome-section .col-md-4{
float: none;
margin: 0 auto;
max-width: 370px;
text-align: center;
width: 100%;
}
/* -- Event2 Section */
.video-content {
position: relative;
padding-left: 0;
}
.event-section.event2-section{
text-align: center;
}
.event2-section.event-section .event-box .eventcontent-box{
margin-left: 0;
width: 100%;
max-width: 100%;
margin-top: 40px;
margin-bottom: 10px;
}
.event2-section.event-section .event-box > img{
position: relative;
top: auto;
}
.event2-section.event-section .event-box .event-index{
right: 0;
}
.event2-section.event-section .event-box::before{
right: 0;
}
.event2-section.event-section .event-box::after{
left: 0;
}
.event2-section.event-section .event-block > a{
margin-left: 0;
}
/* -- Search Courses */
.course-search-block .col-xs-6{
width: 100%;
max-width: 100%;
}
.searchcourses-block h3{
font-size: 20px;
}
.course-search-block .col-md-3, .course-search-block .btn{
max-width: 640px;
padding-right: 0;
margin-right: 0;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
max-width: 100%;
width: 100%;
margin-bottom: 20px;
}
.course-search-block .col-md-6.search_box{
max-width: 640px;
}
.course-search-block .search_box .form-control{
max-width: 470px;
}
.course-search-block .search_box .btn{
right: -15px;
}
/* -- CoursesDetail Section */
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 5px;
}
.reviewbox{
margin-right: 10px;
}
/* -- LatestBlog Section */
.type-post .entry-block .post-ic{
height: 40px;
width: 40px;
line-height: 40px;
font-size: 16px;
}
/* -- BlogPost */
.post-comments .media .media-body .media{
margin-left: 30px;
}
}
/* -- max-width: 479 */
@media (max-width: 479px) {
/* -- PhotoSlider Section */
.photoslider-section .item .col-xs-8{
width: 100%;
}
.photoslider-section .carousel-caption{
position: relative;
transform: none;
background-color: #333;
text-align: center;
-moz-transform: none;
-webkit-transform: none;
transform: none;
top: 0;
}
.photoslider-section .item a{
margin-top: 5px;
}
.photoslider-section .carousel-control{
font-size: 14px;
height: 30px;
line-height: 30px;
width: 30px;
}
.photoslider-section .carousel-control.left{
left: 15px;
}
.photoslider-section .carousel-control.right{
right: -10px;
}
/* -- Parallax Section */
.parallax-content{
padding: 22px 7% 20px 15%;
}
.parallax-section .owl-dots{
left: 15px;
}
.parallax-section ul img {
max-width: 80px;
}
/* -- Event Section */
.event-section .section-header {
text-align: center;
}
.section-header-block{
text-align: center;
}
.event-section .section-header{
margin-bottom: 5px;
}
.section-header-block > a{
position: relative;
margin-bottom: 20px;
display: inline-block;
}
.event-section [class*="col-xs-"]{
width: 100%;
float: none;
margin: 0 auto 10px;
text-align: center;
max-width: 300px;
}
.event-section .event-box{
padding-bottom: 7px;
}
.event-box .col-md-7{
padding-left: 15px;
}
.event-box .col-md-7::after{
width: 0;
}
.event-box .readmore{
float: none;
}
/* -- Search Courses */
.search-categories .col-xs-6{
width: 100%;
}
/* -- Video Testimonial Section */
.testimonial-box .testimonial-content{
padding: 20px 20px 25px;
}
/* -- CoursesDetail Section */
.courses-lecture-box .lecture-title, .courses-lecture-box .lecture-no{
margin-right: 15px;
}
.courses-lecture-box{
line-height: 35px;
}
.courses-lecture-box i{
margin-right: 5px;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 0;
}
.lecture-time,
.lecture-title{
width: 100%;
display: inline-block;
margin-left: 20px;
}
.lecture-tag{
margin-left: 20px;
}
.lecture-tag,
.courses-lecture-box .lecture-time {
float: none;
}
.reviewbox
.average-review{
padding: 32px 40px 39px;
max-width: 200px;
float: none;
margin: 0 auto;
}
/* -- Team Section */
.team-gallary{
width: 100%;
}
.team-gallary .col-xs-6{
width: 100%;
float: none;
margin: 10px auto 40px;
max-width: 300px;
}
/* -- Testimonial2 Section */
.testimonial2-section .testimonialbox{
width: 64%;
}
.testimonial2-section .testimonialbox p{
font-size: 15px;
}
/* -- WhyChooseUs Section */
.accordion-section .panel-default > .panel-heading{
padding: 0 15px;
}
.accordion-section .panel-title a.collapsed::before,
.accordion-section .panel-title a::before{
right: 0;
}
.accordion-section .panel-body{
margin: 0 15px;
}
/* -- CallOut */
.callout [class*="col-xs-"]{
width: 100%;
text-align: center;
float: none;
}
.callout a{
float: none;
margin-top: 10px;
display: inline-block;
padding: 8px 30px;
}
/* -- LatestBlog Section */
.latestblog-section .col-xs-6{
width: 100%;
float: none;
max-width: 365px;
margin: 0 auto;
}
/* -- Blog */
.blog .type-post .entry-meta span{
display: block;
margin-right: 0;
}
.type-post .entry-contentblock .postby{
padding-bottom: 0;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a{
font-size: 16px;
}
/* -- BlogPost */
.post-comments .media-left{
max-width: 85px;
}
.post-comments .media-body .media-content{
margin-left: 45px;
padding: 15px 5px 45px 50px;
}
.post-comments .media-body .media-heading span{
float:left;
width: 100%;
display: block;
}
.post-comments .media .media-body .media{
margin-left: 15px;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3{
width: 100%;
}
.contactdetail-block{
padding-top: 30px;
padding-bottom: 0;
}
} | css/shortcode.css | /* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */
/*
## Shortcodes
-- PhotoSlider Section
-- PhotoSlider2
- Welcome Section
- Welcome2
-- Parallax Section
-- Event Section
-- EventBlock
-- Event2 section
-- Search Courses
-- Video Testimonial Section
-- CoursesDetail Section
-- Team Section
-- Testimonial2
-- WhyChooseUs Section
-- Accordiaon Section
-- CallOut
-- LatestBlog Section
-- LatestBlog2
-- Blog
-- BlogPost
-- ContactUs Section
-- Map
-- GetInTouch
-- ContactUs Form
-- ContactDetail Block
## Responsive
-- min-width: 992
-- min-width: 992 to max-width: 1199
-- max-width: 991
-- max-width: 767
-- max-width: 639
-- max-width: 479
*/
/* ## Shortcodes */
/* -- PhotoSlider Section */
.photoslider-section {
position: relative;
display: inline-block;
width: 100%;
}
.photoslider-section .item::before{
background-color: rgba(0, 0, 0, 0.4);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
}
.photoslider-section .item:nth-child(2)::before{
background-color: rgba(0, 0, 0, 0.15);
}
.photoslider-section .carousel-caption{
bottom: 0;
left: 0;
position: absolute;
right: 0;
text-align: left;
text-shadow: none;
top: 54.5%;
transform: translate(0px, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
}
.photoslider-section .item h3,
.photoslider-section .item h4 {
animation-delay: 1s;
font-family: "Roboto Slab",serif;
font-size: 70px;
font-weight: 700;
line-height: 70px;
margin: 0;
word-wrap: break-word;
-webkit-animation-delay: 1s;
}
.photoslider-section .item h3 span {
color: #ffc722;
margin-left: 9px;
}
.photoslider-section .item h3{
margin-bottom: 19px;
}
.photoslider-section .item p {
animation-delay: 2s;
font-size: 30px;
font-family: 'Niconne', cursive;
padding-right: 20px;
line-height: 35px;
-webkit-animation-delay: 2s;
}
.photoslider-section .item a {
animation-delay: 3s;
background-color: #ffc722;
color: #333;
display: inline-block;
font-family: "robotoblack";
font-size: 12px;
line-height: 28px;
margin-top: 13px;
padding: 5px 32px;
text-decoration: none;
text-transform: uppercase;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
-webkit-animation-delay: 3s;
z-index: 1;
}
.photoslider-section .item a::before {
position: absolute;
content: "";
left: 0;
right: 0;
width: 0;
bottom: 0;
top: 0;
background-color: rgba(255,255,255,1);
transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
z-index: -1;
}
.photoslider-section .item a:hover::before {
width: 100%;
}
.photoslider-section .item a:hover {
color: #000;
}
.photoslider-section .carousel-control {
background: rgba(94, 93, 94, 0.8);
border-radius: 100%;
height: 53px;
line-height: 53px;
margin: 0 10px;
opacity: 1;
text-align: center;
text-shadow: none;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
width: 53px;
z-index: 999;
}
.photoslider-section .carousel-control:hover {
background: rgba(255, 199, 34, 0.8);
color: #333;
}
.photoslider-section .carousel-control.left{
left: 53px;
}
.photoslider-section .carousel-control.right{
right: 5px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .item::before {
background-color: rgba(17, 17, 17, 0.6);
}
.photoslider2.photoslider-section .carousel-caption {
left: 120px;
}
.photoslider2.photoslider-section .carousel-control {
background: rgba(59, 63, 66, 0.6);
}
.photoslider2.photoslider-section .carousel-control:hover {
background: rgba(255, 199, 34, 0.6);
}
.photoslider2.photoslider-section .item a {
color: #fff;
padding: 10px 37px;
}
.photoslider2.photoslider-section .item a:hover {
color: #333;
}
.photoslider2.photoslider-section .item a::before {
background-color: #fff;
}
/* -- Welcome Courses */
.welcome-section .section-padding:first-of-type{
padding-top: 40px;
pdding-bottom: 40px;
}
.welcome-section .section-padding:last-of-type {
padding-top: 40px;
padding-bottom: 40px;
}
.welcome-box{
position: relative;
margin-bottom: 30px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
overflow: hidden;
}
.welcome-title{
position: absolute;
top: auto;
bottom: 50px;
left: 0;
right: 0;
display: inline-block;
width: 100%;
padding-right: 49px;
/*transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;*/
}
.welcome-box:hover .welcome-title {
/*position: absolute;
left: 0;
right: 0;
top: 40px;
bottom: auto;
margin-top: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;*/
}
.welcome-title::before{
position: absolute;
content: "";
left: 0;
right: 49px;
bottom: 0;
top: 0;
background-color: rgba(54,53,51,0.95);
display: inline-block;
border-right: 2px solid #ffc722;
}
.welcome-title h3{
position: relative;
font-size: 16px;
color: #fefefe;
text-transform: capitalize;
line-height: 24px;
letter-spacing: 0.48px;
font-family: 'Roboto Slab', serif;
padding-left: 30px;
padding-top: 25px;
padding-bottom: 25px;
margin: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 3px;
padding-top: 33px;
}*/
.welcome-content{
background-color: rgba(54, 53, 51, 0.95);
border-right: 2px solid #ffc722;
left: 0;
margin-right: 49px;
padding-bottom: 5px;
padding-left: 30px;
padding-right: 55px;
position: absolute;
right: 0;
top:0;
opacity: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.welcome-box:hover .welcome-content{
/*opacity: 1;
top: 100px;*/
}
.welcome-content > span{
color: #ffc722;
font-size: 12px;
line-height: 24px;
letter-spacing: 0.6px;
text-transform: capitalize;
display: block;
margin-bottom: 9px;
}
.welcome-content p {
font-size: 14px;
color: #bbb;
line-height: 24px;
letter-spacing: 0.14px;
}
.welcome-content .course-detail {
padding-left: 0;
margin-bottom: 15px;
}
.welcome-content .course-detail li{
display: inline-block;
color: #fff;
font-size: 14px;
line-height: 24px;
width: 100%;
margin-bottom: 8px;
font-weight: 300;
text-transform: capitalize;
}
.welcome-content .course-detail li:last-of-type{
margin-bottom: 0;
}
.welcome-content .course-detail li i{
margin-right: 10px;
}
.welcome-content .course-detail li i.fa-graduation-cap{
transform: scaleX(-1);
-ms-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
}
.course-rating {
padding-left: 0;
margin-bottom: 33px;
}
.course-rating li{
display: inline-block;
}
.course-rating li a{
font-size: 12px;
color: #ffc722;
line-height: 24px;
text-decoration: none;
margin-right: 5px;
font-weight: 700;
}
.course-rating li:last-of-type a{
color: #bbb;
margin-right: 0;
}
.welcome-content > a {
text-decoration: none;
text-transform: uppercase;
text-decoration: none;
font-size: 12px;
letter-spacing: 0.48px;
line-height: 26px;
padding: 9px 22px;
background-color: #ffc722;
color: #fff;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
border: 2px solid transparent;
}
.welcome-content > a:hover {
background-color: transparent;
border-color: #ffc722;
}
/* -- Welcome2 */
.welcome2 .search-result {
display: inline-block;
width: 100%;
border-bottom: 1px dotted #ddd;
padding-bottom: 20px;
margin-bottom: 66px;
position: relative;
}
.welcome2 .search-result > span{
font-size: 14px;
color: #aaa;
line-height: 24px;
}
.welcome2 .search-result .input-group{
position: relative;
display: inline-block;
float: right;
max-width: 187px;
}
.welcome2 .search-result .input-group .form-control {
color:#aaa;
border: 1px solid #ececec;
border-radius: 15px;
box-shadow: none;
-webkit-box-shadow: none;
min-height: 36px;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.65px;
padding-left: 18px;
padding-right: 45px;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.welcome2 .search-result .input-group-btn{
position: absolute;
right: 0;
}
.welcome2 .search-result .input-group-btn > .btn {
background-color: transparent;
border: none;
color: #777;
font-size: 15px;
box-shadow: none;
min-height: 36px;
outline: none;
position: absolute;
right: 7px;
z-index: 15;
top: 0;
}
/* -- OW Pagination */
.ow-pagination {
margin-top: 41px;
margin-bottom: 11px;
display: inline-block;
width: 100%;
text-align: center;
}
.ow-pagination .pagination{
margin: 0;
border-radius: 0;
}
.ow-pagination .pagination > li:last-of-type a{
margin-right: 0;
}
.ow-pagination .pagination > li > a{
border-radius: 100%;
line-height: 40px;
height: 40px;
width: 40px;
padding: 0;
text-align: center;
border: none;
color: #333;
font-size: 14px;
text-transform: capitalize;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-right: 6px;
text-decoration: none;
}
.ow-pagination .pagination > li > a:hover,
.ow-pagination .pagination > li.active > a{
background-color: #ffc722;
color: #fff;
}
.ow-pagination .pagination > li:first-child > a,
.ow-pagination .pagination > li:first-child > span{
border-radius: 100%;
text-decoration: none;
}
.ow-pagination .pagination > li:last-child > a{
border: 1px solid #eaeaea;
height: 36px;
display: inline-block;
width: 105px;
padding: 0;
border-radius: 30px;
line-height: 34px;
text-decoration: none;
}
.ow-pagination .pagination > li:last-child > a:hover{
border-color: #ffc722;
}
/* -- Parallax Section */
.parallax-section {
position: relative;
}
.parallax-box{
position: relative;
}
.parallax-box::before{
background-color: rgba(0, 0, 0, 0.1);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0;
}
.parallax-content h3{
font-size: 24px;
font-weight: 700;
color: #fff;
letter-spacing: 0.24px;
line-height: 30px;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
margin: 0 0 2px;
}
.parallax-content h3:last-of-type{
margin-bottom: 26px;
}
.parallax-content h3 span{
color: #ffc722;
}
.parallax-content p {
font-size: 15px;
line-height: 26px;
letter-spacing: 0.45px;
font-weight: 300;
font-family: 'Roboto', sans-serif;
color: #aaa;
}
.parallax-content a {
text-decoration: none;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 0.65px;
line-height: 26px;
color: #ffc722;
font-weight: 600;
font-family: 'Poppins', sans-serif;
margin-top: 7px;
margin-bottom: 33px;
display: inline-block;
width: 100%;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.parallax-content a:hover {
color: #fff;
margin-left: 5px;
}
.parallax-content ul{
padding-left: 0;
}
.parallax-content ul li{
display: inline-block;
}
/* -- PhotoSlider OwlCarousel Genral Setting */
.parallax-section .owl-carousel .owl-item img {
width: auto;
}
.parallax-section .owl-dots {
position: absolute;
right: 0;
top: 50%;
left: 40px;
right: 0;
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
bottom: auto;
margin-top: 0;
max-width: 15px;
}
.parallax-section .owl-theme .owl-dots .owl-dot {
display: block;
max-width: 15px;
}
.parallax-section .owl-theme .owl-dots .owl-dot span{
background-color: #fff;
margin-bottom: 10px;
margin-left: 0;
margin-right: 0;
width: 10px;
height: 10px;
}
.parallax-section .owl-theme .owl-controls {
margin-top: 0;
}
.parallax-section .owl-theme .owl-dots .owl-dot.active span {
background-color: #ffc722;
}
/* -- Event Section */
.event-section{
position: relative;
}
.event-section .section-padding:last-of-type{
padding-top: 45px;
padding-bottom: 45px;
}
.section-header-block{
position: relative;
}
.section-header-block > a {
position: absolute;
right: 0;
text-decoration: none;
font-size: 14px;
color: #333;
line-height: 28px;
padding: 5px 30px;
border: 1px solid #dfdfdf;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.section-header-block > a:hover {
background-color: #ffc722;
border-color: #ffc722;
}
.event-section .section-header {
display: inline-block;
text-align: left;
float: left;
}
.event-section .event-box{
position: relative;
display: inline-block;
width: 100%;
padding-bottom: 50px;
margin-bottom: 50px;
border-bottom: 1px solid #e5eaef;
}
.event-section .event-block .event-box:last-of-type {
border-bottom: none;
padding-bottom: 10px;
margin-bottom: 11px;
}
.event-box .col-md-7{
padding-left: 37px;
position: relative;
}
.event-box .col-md-7::after{
position: absolute;
content: "";
right: -42px;
top: 0;
bottom: 17px;
background-color: #e5eaef;
width: 1px;
}
.event-box h3 a,
.event-box h3{
font-size: 20px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
color: #333;
line-height: 24px;
margin-top: 18px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
text-decoration: none;
}
.event-box h3:hover a,
.event-box h3:hover{
color: #ffc722;
}
.event-box .event-meta {
display: block;
margin-bottom: 20px;
}
.event-box .event-meta span {
color: #777;
font-size: 13px;
line-height: 20px;
margin-right: 20px;
text-transform: uppercase;
}
.event-box .event-meta span i{
margin-right: 10px;
}
.event-box .event-meta span:last-of-type {
margin-right: 0;
}
.event-box p{
color:#999;
letter-spacing: 0.15px;
line-height: 26px;
font-size: 15px;
}
.event-box .readmore {
color: #333;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.26px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
text-decoration: none;
text-transform: capitalize;
display: inline-block;
text-align: center;
right: 48px;
position: absolute;
padding-top: 50px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.event-box .readmore:hover {
color: #ffc722;
}
.event-box .readmore::before {
position: absolute;
content: "";
left: 0;
bottom: 0;
border-bottom: 1px dotted #ffc722;
width: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event-box .readmore:hover::before {
width: 100%;
}
/* -- EventBlock */
.eventcourse-categories .section-header {
text-align: left;
margin-bottom: 15px;
}
.eventcourse-categories{
padding-right: 10px;
}
.eventcourse-categories .section-header h3{
margin: 0 0 10px;
}
.eventcourse-categories p {
color: #777;
font-size: 16px;
line-height: 28px;
}
.eventcourse-categories > a {
text-decoration: none;
border: 1px solid #dedede;
text-align: center;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
line-height: 28px;
color: #777;
padding: 9px 38px;
margin-top: 22px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
z-index: 1;
}
.eventcourse-categories > a::before {
position: absolute;
content: "";
background-color: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 100%;
width: 0;
z-index: -1;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.eventcourse-categories > a:hover::before {
width: 100%;
}
.eventcourse-categories > a:hover {
border-color: #000;
color: #fff;
}
/* -- Video Block */
.video-block{
position: relative;
display: inline-block;
}
.video-block.video-small{
max-width: 480px;
margin-top: 50px;
}
.video-content{
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: inline-block;
width: 100%;
z-index: 2;
padding-left: 30px;
padding-bottom: 10px;
}
.video-content::before{
position: absolute;
content: "";
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: rgba(54,53,51,0.95);
}
.video-content h3 {
font-size: 16px;
color: #fff;
letter-spacing: -0.32px;
line-height: 26px;
position: relative;
z-index: 1;
font-family: 'Roboto Slab', serif;
margin-bottom: 0;
font-weight: 400;
}
.video-content p {
color: #fff;
font-size: 14px;
line-height: 26px;
position: relative;
z-index: 1;
}
.video-block .popup-youtube {
position: absolute;
top: 43%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
height: 68px;
width: 68px;
line-height: 65px;
text-align: center;
background-color: #ffc722;
color: #fff;
font-size: 26px;
border-radius: 2px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
display: inline-block;
}
.video-block .popup-youtube::before {
position: absolute;
content: "";
background-color: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 0%;
width: 100%;
z-index: -1;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.video-block .popup-youtube:hover::before {
background-color: #000;
height: 100%
}
/* -- Event2 section */
.event-section.event2-section{
margin-left: 60px;
}
.event2-section.event-section .event-box {
position: relative;
display: inline-block;
width: 100%;
counter-increment: event-box;
border-bottom: none;
overflow: hidden;
margin-bottom: 23px;
padding-bottom: 33px;
}
.event2-section.event-section .event-block .event-box:last-of-type {
padding-bottom: 32px;
margin-bottom: 20px;
}
.event2-section.event-section .event-box::after {
position: absolute;
content: "";
left: 55px;
right: 0;
bottom: 0;
background-color: #e5eaef;
height: 1px;
width: 100%;
}
.event2-section.event-section .event-box .event-index{
position: absolute;
left: 0;
top: 22px;
font-size: 40px;
color: #f0f0f0;
line-height: 26px;
font-family: 'Roboto Slab', serif;
font-weight: 700;
}
.event2-section.event-section .event-box .eventcontent-box {
display: inline-block;
max-width: 300px;
margin-left: 73px;
}
.event2-section.event-section .event-box .eventcontent-box p {
font-size: 14px;
}
.event2-section.event-section .event-box .event-meta{
margin-bottom: 15px;
}
.event2-section.event-section .event-box > img {
position: absolute;
right: 0;
top: 12px;
}
.event2-section.event-section .event-block > a{
display: inline-block;
text-decoration: none;
text-transform: capitalize;
color: #333;
font-size: 14px;
line-height: 28px;
font-family: 'Roboto Slab', serif;
position: relative;
padding-bottom: 5px;
margin-left: 55px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event2-section.event-section .event-block > a:hover{
color: #ffc722;
}
.event2-section.event-section .event-block >a::before{
position: absolute;
content: "";
left: 0;
bottom: 0;
border-bottom: 1px dotted #ffc722;
width: 0;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s
}
.event2-section.event-section .event-block > a:hover::before{
width: 100%;
}
/* -- Search Courses */
.searchcourses{
background: url("../images/searchcourses-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding-top: 100px;
padding-bottom: 116px;
}
.searchcourses::before{
background-color: rgba(255, 199, 34, 0.94);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.searchcourses .container{
padding-left: 50px;
padding-right: 50px;
}
.searchcourses-block{
position: relative;
z-index: 1;
text-align: center;
}
.searchcourses-block h3{
margin: 0 0 42px;
color: #fff;
font-size: 28px;
line-height: 40px;
font-weight: 400;
font-family: 'Roboto Slab', serif;
padding: 0 20%;
display: inline-block;
margin-bottom: 44px;
}
.course-search-block{
display: inline-block;
width: 100%;
padding-bottom: 50px;
margin-bottom: 32px;
border-bottom: 1px solid rgba(255,255,255,0.5);
position: relative;
z-index: 1;
}
.course-search-block .col-md-3{
margin-right: 20px;
max-width: 240px;
padding-left: 0;
padding-right: 10px;
}
.course-search-block .col-md-6.search_box{
padding-left: 0;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
min-width: 240px;
max-width: 240px;
}
.course-search-block .btn-group.open .dropdown-toggle{
box-shadow: none;
}
.course-search-block .btn-default{
background-color: #fff;
border: none;
color: #acacac;
font-size: 14px;
line-height: 24px;
}
.course-search-block .btn{
border-radius: 0;
height: 49px;
padding: 10px 16px;
box-shadow: none;
}
.course-search-block .bootstrap-select.btn-group .dropdown-toggle .caret{
right: 18px;
}
.course-search-block .bootstrap-select .dropdown-toggle:focus{
outline: none !important;
}
.course-search-block .btn-default.active,
.course-search-block .btn-default:active,
.course-search-block .open > .dropdown-toggle.btn-default{
background-color: #fff;
border-color: transparent;
}
.course-search-block .btn-default.active.focus,
.course-search-block .btn-default.active:focus,
.course-search-block .btn-default.active:hover,
.course-search-block .btn-default.focus:active,
.course-search-block .btn-default:active:focus,
.course-search-block .btn-default:active:hover,
.course-search-block .open > .dropdown-toggle.btn-default.focus,
.course-search-block .open > .dropdown-toggle.btn-default:focus,
.course-search-block .open > .dropdown-toggle.btn-default:hover{
background-color: #fff;
}
.course-search-block .dropdown-menu{
border-radius: 0;
box-shadow: none;
border: none;
padding: 0;
margin-bottom: 0;
}
.course-search-block .dropdown-menu > li > a{
padding: 10px 20px;
}
.course-search-block .search_box .form-control{
height: 50px;
border: none;
box-shadow: none;
border-radius: 0;
max-width: 360px;
min-width: 360px;
padding-left: 18px;
padding-right: 20px;
text-transform: capitalize;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.course-search-block .search_box .btn{
background-color: #363533;
height: 50px;
font-size: 12px;
color: #fff;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
outline: none;
padding: 10px 40px;
font-weight: 400;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
position: relative;
right: -23px;
border: 2px solid transparent;
}
.course-search-block .search_box .btn:hover{
background-color: #ffc277;
color: #000;
border-color: #333;
}
.search-categories p {
position: relative;
}
.search-categories p i {
position: absolute;
left: 0;
top: 5px;
font-size: 20px;
color: #333;
}
.search-categories p span {
display: inline-block;
padding-left: 40px;
font-size: 15px;
color: #333;
text-transform: capitalize;
line-height: 24px;
}
/* -- Video Testimonial Section */
.video-testimonial-section {
background: url("../images/testimonial-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
z-index: 2;
}
.video-testimonial-section::before {
background-color: rgba(249, 249, 249, 0.98);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.video-testimonial-section .section-header{
text-align: center;
display: block;
position: relative;
z-index: 2;
}
.video-testimonial-section .section-padding:last-of-type{
padding-bottom: 29px;
padding-top: 29px;
}
/* -- Testimonial Block */
.video-testimonial-section .testimonial-block{
padding-left: 10px;
}
.testimonial-block .testimonial-box{
display:inline-block;
width: 100%;
margin-bottom: 8px;
}
.testimonial-block .testimonial-box:last-of-type {
margin-bottom: 0;
}
.testimonial-box .testimonial-content{
background-color: #fff;
border: 1px solid #e9e9e9;
padding: 30px 36px 26px;
display: inline-block;
width: 100%;
}
.testimonial-box .testimonial-content p{
font-size: 15px;
line-height: 26px;
color: #777;
font-weight: 400;
font-family: 'Roboto', sans-serif;
}
.testimonial-box .testimonial-author{
position: relative;
display: inline-block;
margin-left: 23px;
top: -21px;
}
.testimonial-author img{
float: left;
border-radius: 100%;
}
.testimonial-author p{
padding-left: 107px;
top: 31px;
color: #333;
font-size: 15px;
line-height: 22px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
text-transform: capitalize;
position: relative;
}
.testimonial-author p span{
display: block;
font-size: 13px;
line-height: 22px;
color: #777;
font-family: 'Roboto', sans-serif;
font-weight: 400;
position: relative;
top: 3px;
}
.testimonial-block .carousel-indicators {
bottom: 0;
}
.testimonial-block .carousel-indicators li{
background-color: #000;
box-shadow: none;
border: none;
}
.testimonial-block .carousel-indicators li.active{
background-color: #ffc722;
}
/* -- CoursesDetail Section */
.coursesdetail-block{
display: inline-block;
width: 100%;
border-bottom: 1px solid #ececec;
padding-bottom: 52px;
}
.coursesdetail-block img{
margin-bottom: 33px;
}
.course-title {
color: #333;
font-size: 22px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
line-height: 26px;
margin: 0 0 30px;
}
/* -- CoursesDetail */
.course-description {
display: inline-block;
margin-bottom: 18px;
}
.course-description p{
color: #777;
font-size: 15px;
line-height: 26px;
}
/* -- Courses Summary */
.courses-summary ul{
border-bottom: 1px solid #ececec;
padding-bottom: 10px;
margin-bottom: 35px;
}
.courses-summary ul{
padding-left: 0;
}
.courses-summary ul li{
display: inline-block;
width: 34.5%;
margin-bottom: 35px;
}
.courses-summary ul li a{
color: #777;
font-size: 15px;
line-height: 26px;
text-decoration: none;
position: relative;
padding-left: 30px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.courses-summary ul li a:hover{
color: #ffc277;
margin-left: 5px;
}
.courses-summary ul li a::before{
position: absolute;
content: "L";
left: 0;
top: -5px;
font-family: "ElegantIcons";
color: #ffc277;
}
/* -- Courses Sections Block */
.courses-sections-block {
display: inline-block;
width: 100%;
margin-bottom: 25px;
}
.courses-sections-block h3{
margin: 0;
color: #333;
font-size: 16px;
line-height: 26px;
font-weight: 400;
display: block;
margin: 0 0 25px;
text-transform: capitalize;
}
.courses-lecture-box {
display: inline-block;
width: 100%;
border-top: 1px solid #ececec;
font-size: 14px;
color: #777;
line-height: 26px;
padding-top: 15px;
padding-bottom: 15px;
line-height: 45px;
}
.courses-lecture-box:last-of-type {
border-bottom: 1px solid #ececec;
}
.courses-lecture-box i {
color: #ffc722;
font-size: 14px;
margin-right: 10px;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
font-size: 14px;
color: #777;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 15px;
}
.courses-lecture-box .lecture-tag{
padding: 2px 20px;
font-size: 14px;
color: #fff;
text-transform: capitalize;
background-color: #ffc722;
border-radius: 5px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.courses-lecture-box .lecture-tag a{
text-decoration: none;
color: #fff;
}
.courses-lecture-box .lecture-tag:hover {
background-color: #000;
}
.courses-lecture-box .lecture-time{
float: right;
color: #ffc722;
}
/* -- Courses Review */
.reviewbox{
display: inline-block;
margin-right: 49px;
float: left;
}
.reviewbox h3{
margin: 0 0 18px;
font-size: 15px;
color:#777;
line-height: 26px;
font-weight: 400;
}
/* -- Average Review */
.average-review {
display: inline-block;
border: 1px solid #ececec;
border-radius: 5px;
padding: 35px 40px 39px 46px;
text-align: center;
}
.average-review h2 {
font-size: 70px;
line-height: 26px;
font-weight: 700;
font-family: 'Roboto Slab', serif;
color: #ffc722;
margin-bottom: 32px;
}
.average-review ul {
padding-left: 0;
}
.average-review ul li {
display: inline-block;
}
.average-review ul li a {
text-decoration: none;
color: #ffc722;
}
.average-review span{
display: block;
color: #777;
font-size: 15px;
line-height: 26px;
}
/* -- Detail Review */
.detail-review{
display: inline-block;
border: 1px solid #ececec;
border-radius: 5px;
border-radius: 5px;
}
.detail-review ul{
padding-left: 0;
padding-left: 33px;
padding-top: 21px;
padding-right: 25px;
}
.detail-review ul li {
display: inline-block;
width: 100%;
position: relative;
margin-bottom: 10px;
}
.detail-review ul li::after {
position: absolute;
content: "";
background-color: #f7f7f7;
height: 5px;
width: 66%;
right: 0;
top: 10px;
left: 22%;
}
.detail-review ul li a{
text-decoration: none;
font-size: 14px;
font-weight: 500;
line-height: 26px;
color: #333;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.detail-review ul li a:hover{
color: #ffc722;
}
.detail-review ul li span{
float: right;
font-size: 14px;
line-height: 26px;
color: #777;
position: relative;
right: 7px;
}
.event-contentarea .ow-pagination .pagination,
.event-contentarea .ow-pagination{
display: inline-block;
width: 100%;
}
/* -- Event Pagination */
.event-contentarea .ow-pagination li:first-of-type {
float: left;
}
.event-contentarea .ow-pagination li span{
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.event-contentarea .ow-pagination li:first-of-type span{
margin-right: 10px;
}
.event-contentarea .ow-pagination li:last-of-type{
float: right;
}
.event-contentarea .ow-pagination li:last-of-type span{
margin-left: 10px;
}
.event-contentarea .ow-pagination .pagination > li > a,
.event-contentarea .ow-pagination .pagination > li > span{
border: none;
padding: 0;
width: auto;
height: auto;
color: #777;
font-size: 15px;
line-height: 24px;
}
.event-contentarea .ow-pagination .pagination > li:hover span,
.event-contentarea .ow-pagination .pagination > li > a:hover,
.event-contentarea .ow-pagination .pagination > li.active > a{
background-color: transparent;
color: #222;
}
/* -- Courses Features */
.courses-features{
display: inline-block;
width: 100%;
border: 1px solid #ececec;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
margin-bottom: 41px;
}
.courses-features > h3{
font-size: 15px;
line-height: 26px;
color: #333;
text-transform: capitalize;
font-weight: 700;
font-family: 'Roboto Slab', serif;
margin-bottom: 0;
margin-top: 0;
}
.courses-features > h3:last-of-type{
margin-bottom: 10px;
}
.courses-features ul {
padding-left: 0;
float: left;
margin-bottom: 0;
}
.courses-features ul li {
display: inline-block;
}
.courses-features ul li a {
text-decoration: none;
color: #ffc722;
}
.courses-features> span{
color: #777;
font-size: 13px;
line-height: 20px;
margin-left: 10px;
top: -2px;
position: relative;
}
.featuresbox{
display: inline-block;
width: 100%;
position: relative;
line-height: 60px;
border-bottom: 1px solid #ececec;
}
.featuresbox h3{
font-size: 14px;
color: #777;
font-size: 14px;
text-transform: capitalize;
line-height: 26px;
font-weight: 400;
margin: 0 0 0 17px;
display: inline-block;
}
.featuresbox span{
color: #333;
font-size: 14px;
line-height: 26px;
}
/* -- Course Staff */
.courses-staff img{
margin-bottom: 20px;
}
.courses-staff h3{
font-size: 18px;
color: #333;
line-height: 26px;
font-weight: 700;
text-transform: capitalize;
margin: 0;
}
.courses-staff span{
color: #ffc722;
font-size: 14px;
line-height: 26px;
text-transform: capitalize;
display: block;
margin-bottom: 1px;
}
.courses-staff p{
color: #777;
font-size: 15px;
}
/* -- Team Section */
.team-section{
width: 100%;
background-color: #f9f9f9;
}
.team-section .section-padding:last-of-type {
padding-top: 39px;
padding-bottom: 39px;
}
.team-section .section-header{
text-align: left;
margin-bottom: 10px;
}
.team-section .team-intro p{
color: #777;
font-size: 16px;
line-height: 28px;
display: inline-block;
width: 100%;
padding-right: 70px;
}
.team-section .carousel-control{
background-color: transparent;
width: 0;
text-shadow: none;
opacity: 1;
font-size: 13px;
color: #777;
text-transform: capitalize;
line-height: 24px;
top: auto;
bottom: -52px;
font-family: 'Roboto Slab', serif;
left: 60px;
}
.team-section .carousel-control:focus,
.team-section .carousel-control:hover{
color: #333;
opacity: 1;
}
.team-section .carousel-control.right,
.team-section .carousel-control.left{
background-image: none;
}
.team-section .carousel-control.right{
left: 15px;
right: auto;
}
.team-section .carousel-control.right::before{
position: absolute;
content: "/";
left: 35px;
color: #222;
}
.team-section .team-box {
position: relative;
text-align: center;
}
.team-box ul{
padding-left: 0;
text-align: center;
display: inline-block;
background-color: #ffc722;
padding-top: 11px;
padding-bottom: 11px;
position: absolute;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
max-width: 290px;
margin: 0 auto;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.team-box:hover ul{
bottom: 73px;
opacity: 1;
}
.team-box ul li{
display: inline-block;
}
.team-box ul li a {
color: #fff;
margin-right: 20px;
font-size: 14px;
color: #f9f9f9;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.team-box ul li a:hover {
color: #000;
}
.team-box ul li:last-of-type a {
margin-right: 0;
}
.team-box .team-content h3{
margin: 0 0 2px;
color: #333;
font-size: 16px;
text-transform: capitalize;
line-height: 24px;
font-weight: 400;
font-family: 'Roboto Slab', serif;
}
.team-box .team-content span{
font-size: 13px;
color: #ffc722;
line-height: 24px;
letter-spacing: 0.65px;
}
.team-content {
position: relative;
display: inline-block;
margin-top: 23px;
}
/* -- Testimonial2 */
.testimonial2-section{
text-align: center;
}
.testimonial2-section .testimonialbox {
width: 52%;
margin: 0 auto;
}
.testimonial2-section img {
border-radius: 100%;
margin-bottom: 20px;
}
.testimonial2-section .testimonialbox p {
font-family: 'Roboto Slab', serif;
font-size: 16px;
line-height: 30px;
text-align: center;
color: #333;
}
.testimonial2-section .testimonial-author-box i {
position: relative;
font-weight: 300;
font-size: 20px;
color: #d2d2d2;
margin-top: 11px;
}
.testimonial2-section .testimonial-author-box h3 {
font-size: 16px;
font-weight: 700;
color: #333;
font-family: 'Roboto Slab', serif;
text-transform: capitalize;
line-height: 24px;
text-align: center;
margin: 10px 0 5px;
}
.testimonial2-section .testimonial-author-box span {
display: block;
font-size: 14px;
font-style: italic;
letter-spacing: 0.42px;
line-height: 24px;
color: #f7c51d;
text-transform: capitalize;
}
.testimonial2-section .carousel-indicators{
bottom: -30px;
left: 0;
right: 0;
margin: 0 auto;
width: 50%;
}
.testimonial2-section .carousel-indicators li{
background-color: #e4e4e4;
border: none;
width: 8px;
height: 8px;
border-radius: 2px;
margin-right: 6px;
}
.testimonial2-section .carousel-indicators li.active{
background-color: #ffc722;
width: 8px;
height: 8px;
position: relative;
top: -1px;
}
/* -- Testimonial2 Section:: Carousel contro setting */
.testimonial2-section .carousel-control {
width: 0;
opacity: 1;
text-shadow: none;
font-size: 30px;
top: 25%;
color: #dbdbdb;
margin: 0 72px;
}
.testimonial2-section .carousel-control:focus,
.testimonial2-section .carousel-control:hover {
color: #ffc722;
}
.testimonial2-section .carousel-control.right .index{
right: 2px;
}
.testimonial2-section .carousel-control.left .index{
left: 5px;
}
.testimonial2-section .carousel-control.right{
right: 15px;
}
.testimonial2-section .carousel-control .index {
display: inline-block;
margin-bottom: 0;
position: relative;
top: 8px;
color: #6d6d6d;
font-size: 13px;
line-height: 17px;
}
.testimonial2-section .carousel-control .total_index{
font-size: 16px;
font-weight: 300;
line-height: 17px;
position: relative;
padding-left: 9px;
}
.testimonial2-section .carousel-control .total_index::before {
position: absolute;
content: "/";
left: 2px;
top: 1px;
color: #6d6d6d;
font-size: 17px;
}
.testimonial2-section .carousel-control .index_next,
.testimonial2-section .carousel-control .index_prev {
font-size: 16px;
font-weight: 300;
line-height: 17px;
}
/* -- Accordiaon Section */
.accordion-section .section-header {
margin-bottom: 42px;
}
.accordion-section .panel-group .panel{
border-radius: 0;
margin-bottom: 5px;
padding: 0 0 6px 32px;
box-shadow: none;
border: none;
}
.accordion-section .panel-default > .panel-heading{
background-color: transparent;
padding: 5px 33px;
border: 1px solid #e9e9e9;
border-radius: 0;
}
.accordion-section .panel-title {
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
position: relative;
font-family: 'Roboto Slab', serif;
position: relative;
}
.accordion-section .panel-title::after {
position: absolute;
content: "";
background-color: #ddd;
width: 1px;
height: 28px;
top: 10px;
bottom: 0;
right: 20px;
}
.accordion-section .panel-title a{
text-decoration: none;
display: inline-block;
width: 100%;
line-height: 50px;
position: relative;
color: #333;
}
.accordion-section .panel-title a::before {
position: absolute;
content: "\f068";
font-family: "FontAwesome";
right: -7px;
top: 0;
font-size: 7px;
font-weight: 300;
color: #f7c51d;
}
.accordion-section .panel-title a.collapsed::before {
position: absolute;
content: "\f067";
font-family: "FontAwesome";
right: -7px;
top: 0;
font-size: 8px;
font-weight: 100;
color: #000;
}
.accordion-section .panel-body{
display: inline-block;
margin: 0 33px;
}
.accordion-section .panel-group .panel-heading + .panel-collapse > .list-group,
.accordion-section .panel-group .panel-heading + .panel-collapse > .panel-body{
border-top: none;
}
.accordion-section .panel-body p{
font-size: 15px;
color: #777;
line-height: 26px;
font-weight: 300;
}
.accordion-section .panel-default > .panel-heading + .panel-collapse > .panel-body{
padding: 19px 0 14px;
}
/* -- CallOut */
.callout{
background: url("../images/callout-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding-top: 50px;
padding-bottom: 27px;
}
.callout::before{
background-color: rgba(255, 199, 34, 0.98);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.callout .callout-content {
float: left;
}
.callout .callout-content h3 {
color: #fff;
font-weight: 700;
font-size: 26px;
line-height: 28px;
letter-spacing: -0.52px;
font-family: 'Roboto Slab', serif;
margin: 0 0 5px;
}
.callout .callout-content p {
font-size: 16px;
line-height: 28px;
color: #fff;
}
.callout a {
float: right;
text-decoration: none;
padding: 12px 49px;
background-color: #363533;
text-align: center;
text-transform: capitalize;
font-size: 16px;
color: #fff;
border: 2px solid transparent;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.callout a:hover {
background-color: transparent;
border-color: #363533;
color: #363533;
}
/* -- LatestBlog Section */
.type-post{
display: inline-block;
width: 100%;
margin-bottom: 30px;
}
.type-post .entry-cover{
position: relative;
}
.type-post .entry-block{
position: relative;
display: inline-block;
width: 100%;
}
.type-post .entry-contentblock{
background-color: #fefefe;
display: inline-block;
width: 100%;
text-align: center;
padding-top: 20px;
position: relative;
right: 0;
left: 0;
top: -30px;
max-width: 310px;
}
.type-post .entry-contentblock .postdate{
font-size: 13px;
text-transform: capitalize;
color: #ffc722;
display: block;
margin-bottom: 5px;
}
.type-post .entry-contentblock .postby {
color: #777;
font-size: 13px;
position: relative;
padding-bottom: 17px;
}
.type-post .entry-contentblock .postby::after {
position: absolute;
content: "";
left: 0;
bottom: 0;
right: 0;
width: 38px;
height: 1px;
background-color: #ffc722;
margin: 0 auto;
}
.type-post .entry-contentblock .postby a {
color: #777;
font-size: 13px;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.type-post .entry-contentblock .postby a:hover {
color: #000;
}
.type-post .entry-title a{
text-decoration: none;
}
.type-post .entry-title h3,
.type-post .entry-title a{
color: #333;
font-size: 15px;
line-height: 24px;
font-family: 'Roboto Slab', serif;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
word-wrap: break-word;
display: block;
margin-top: 30px;
}
.type-post .entry-title h3:hover,
.type-post .entry-title a:hover{
color: #ffc722;
}
.type-post .entry-block .post-ic{
position: absolute;
right: 4px;
top: 0;
width: 56px;
height: 56px;
line-height: 56px;
text-align: center;
color: #333;
background-color: #f6f7f8;
font-size: 18px;
}
.latestblog-section .post-viewall{
display: inline-block;
width: 100%;
margin-top: 7px;
text-align: center;
}
.latestblog-section .post-viewall a {
text-align: center;
margin: 0 auto;
text-decoration: none;
padding: 8px 36px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.36px;
line-height: 30px;
font-size: 12px;
color: #232323;
border: 2px solid #dedede;
display: inline-block;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.latestblog-section .post-viewall a:hover {
background-color: #000;
color: #fff;
border-color: #000;
}
/* -- LatestBlog2 */
.latestblog2.latestblog-section{
padding-bottom: 45px;
}
.latestblog-section.latestblog2{
background: url("../images/latestblog-bg.jpg");
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.latestblog-section.latestblog2::before{
background-color: rgba(17,17,17, 0.9);
bottom: 0;
content: "";
display: inline-block;
left: 0;
position: absolute;
right: 0;
top: 0
}
.latestblog-section.latestblog2 .section-header{
position: relative;
z-index: 1;
}
.latestblog-section.latestblog2 .section-header h3{
color: #fff;
}
.latestblog-section.latestblog2 .section-header p{
color: #999;
}
.latestblog-section.latestblog2 .type-post .entry-contentblock{
padding-bottom: 27px;
}
/* -- Blog */
.blog .type-post{
margin-bottom: 7px;
}
.blog .type-post .entry-contentblock{
max-width: 805px;
top: -55px;
border: 1px solid #f8f8f8;
padding-left: 41px;
padding-bottom: 40px;
padding-top: 38px;
text-align: left;
}
.blog .type-post .entry-meta span{
margin-right: 20px;
font-size: 14px;
color: #333;
line-height: 30px;
text-transform: capitalize;
}
.blog .type-post .entry-meta span:last-of-type{
margin-right: 0;
}
.blog .type-post .entry-meta span a{
color: #ffc722;
text-decoration: none;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.39px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.blog .type-post .entry-meta span a:hover{
color: #000;
}
.blog .type-post .entry-meta .postdate{
display: inline-block;
padding-bottom: 0;
}
.blog .type-post .entry-contentblock .postby::after{
width: 0;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a{
font-weight: 700;
font-size: 20px;
line-height: 24px;
letter-spacing: 0.6px;
font-family: 'Roboto Slab', serif;
margin-top: 3px;
margin-bottom: 22px;
}
.blog .type-post .entry-content p{
color: #777;
font-size: 15px;
letter-spacing: 0.45px;
line-height: 26px;
padding-right: 30px;
}
.blog .type-post .entry-contentblock > a{
text-align: center;
margin-top: 23px;
text-decoration: none;
padding: 10px 47px;
text-transform: capitalize;
letter-spacing: 0.345px;
line-height: 26px;
font-weight: 400;
font-size: 15px;
color: #777;
border: 2px solid #dedede;
display: inline-block;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.blog .type-post .entry-contentblock > a:hover {
background-color: #000;
color: #fff;
border-color: #000;
}
.blog .type-post .entry-block .post-ic{
right: 9px;
}
.blog .ow-pagination{
margin-top: 10px;
}
.blog .section-padding:last-of-type{
padding-top: 45px;
padding-bottom: 45px;
}
/* -- Widget Area */
.widget-area .widget {
border: 1px solid #ececec;
padding-left: 20px;
padding-top: 28px;
padding-right: 20px;
display: inline-block;
width: 100%;
margin-bottom: 49px;
}
.widget-title{
position: relative;
font-size: 18px;
line-height: 26px;
font-weight: 700;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
padding-bottom: 9px;
margin-top: 0;
}
.widget-title::after{
position: absolute;
content: "";
left: 0;
bottom: 0;
background-color: #ffc722;
height: 2px;
width: 40px;
}
/* -- Widget:: Categories */
.widget_categories ul{
padding-left: 0;
margin-bottom: 0;
}
.widget_categories ul li {
display: inline-block;
width: 100%;
border-bottom: 1px solid #ececec;
position: relative;
padding-top: 18px;
padding-bottom: 18px;
}
.widget_categories ul li:last-of-type{
border-bottom: none;
}
.widget_categories ul li a{
text-decoration: none;
font-size: 14px;
color: #777;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_categories ul li span{
font-size: 13px;
color: #777;
position: absolute;
right: 0;
top: 23px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_categories ul li:hover span,
.widget_categories ul li a:hover{
color: #ffc722;
margin-left: 5px;
}
/* -- Widget:: LatestNews */
.widget_latestnews .widget-title {
margin-bottom: 23px;
}
.widget_latestnews .latestnews-box{
border-bottom: 1px solid #ececec;
padding-bottom: 19px;
margin-bottom: 21px;
display: block;
}
.widget_latestnews .latestnews-box:last-of-type{
border-bottom: none;
margin-bottom: 5px;
}
.widget_latestnews .latestnews-box a{
text-decoration: none;
display: inline-block;
width: 100%;
font-size: 14px;
color: #777;
text-transform: capitalize;
letter-spacing: 0.42px;
line-height: 24px;
margin-bottom: 7px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.widget_latestnews .latestnews-box a:hover{
color: #000;
}
.widget_latestnews .latestnews-box span{
display: block;
font-size: 13px;
line-height: 24px;
letter-spacing: 0.39px;
color: #ffc722;
}
.widget.courses-staff{
border: none;
padding: 0;
}
/* -- BlogPost */
.blog.blogpost .container .section-padding:last-of-type{
padding-top: 40px;
padding-bottom: 40px;
}
.blog.blogpost .type-post .entry-contentblock{
padding-bottom: 25px;
}
.blog.blogpost .type-post .entry-title h3:hover{
color: #333;
}
.blog.blogpost .type-post .entry-content p {
font-weight: 300;
font-size: 14px;
line-height: 28px;
letter-spacing: 0.42px;
}
.blogpost blockquote {
background-color: #f7f7f7;
border-left: 4px solid #ffc722;
padding-top: 25px;
padding-bottom: 36px;
padding-left: 58px;
padding-top: 36px;
margin-top: 30px;
margin-bottom: 29px;
}
.blogpost blockquote p{
color: #777;
font-style: italic;
font-size: 15px;
line-height: 28px;
font-weight: 400;
letter-spacing: 0.15px;
display: inline-block;
font-family: 'Roboto', sans-serif;
}
.blogpost .entry-contentblock > ul {
padding-left: 0;
display: block;
text-align: center;
border-top: 1px solid #ececec;
padding-top: 25px;
margin-top: 23px;
margin-bottom: 0;
}
.blogpost .entry-contentblock > ul li{
display: inline-block;
}
.blogpost .entry-contentblock > ul li a{
color: #333;
font-size: 14px;
letter-spacing: 2.8px;
line-height: 26px;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-right: 17px;
}
.blogpost .entry-contentblock > ul li a:hover{
color: #ffc722;
}
.blogpost .entry-contentblock > ul li:last-of-type a{
margin-right: 0;
}
/* -- Post Comment */
.post-comments {
display: block;
margin-bottom: 56px;
}
.block-title{
font-size: 22px;
font-weight: 700;
margin: 0;
font-weight: 700;
font-family: 'Roboto Slab', serif;
}
.post-comments .media {
position: relative;
overflow: visible;
margin-top: 40px;
}
.post-comments .media-left {
position: absolute;
left: 0;
top: 41px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
border-radius: 100%;
padding-right: 0;
padding: 6px 6px 6px 5px;
z-index: 5;
background-color: #fff;
}
.post-comments .media-left::before {
position: absolute;
content: "";
left: 0;
right: 0;
bottom: 0;
top: 0;
-webkit-transform:rotate(-45deg);
transform: rotate(-45deg);
border: 2px solid #f7f7f7;
border-radius: 100%;
border-top: none;
border-left: none;
}
.post-comments .media-object {
border-radius: 100%;
}
.post-comments .media-body {
overflow: visible;
}
.post-comments .media-body .media-content {
margin-left: 60px;
border: 1px solid #dedede;
padding: 41px 41px 60px 100px;
background-color: #fefefe;
}
.post-comments .media-body .media-heading {
font-size: 16px;
font-weight: 700;
margin-top: 0;
color: #333;
line-height: 28px;
text-transform: capitalize;
font-family: 'Roboto Slab', serif;
margin-bottom: 11px;
}
.post-comments .media-body .media-heading span {
color: #ffc722;
font-size: 13px;
letter-spacing: 0.6px;
line-height: 28px;
float: right;
text-transform: capitalize;
font-weight: 400;
word-wrap: break-word;
padding-right: 15px;
}
.post-comments .media-body .media-heading a {
color: #232323;
float: right;
letter-spacing: 1.1px;
font-weight: 300;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.post-comments .media-body .media-heading a:hover {
color: #feca16;
}
.post-comments .media-body .media-heading a i {
margin-right: 5px;
}
.post-comments .media .media-body .media {
margin-left: 90px;
position: relative;
}
.post-comments .media-content > p {
color: #777;
font-size: 14px;
font-weight: 300;
letter-spacing: 0.42px;
line-height: 25px;
margin-bottom: 8px;
}
.post-comments .media-content > a {
float: right;
color: #333;
font-size: 11px;
letter-spacing: 0.44px;
font-family: 'Roboto Slab', serif;
font-weight: 700;
line-height: 28px;
text-transform: uppercase;
position: relative;
text-decoration: none;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
margin-left: 10px;
margin-right: 15px;
}
.post-comments .media-content > a::after {
position: absolute;
content: "";
bottom: 0;
background-color: #ddd;
width: 100%;
height: 1px;
left: 0;
right: 0;
}
.post-comments .media-content > a:hover {
color: #f7c51d;
}
.post-comments .media-content > a:hover::before {
background-color: #f7c51d;
}
/* -- Comment Form */
.blogpost .comment-form .block-title{
margin-bottom: 30px;
}
.blogpost .comment-form .form-group {
margin-bottom: 30px;
}
.blogpost .comment-form .form-group:last-of-type {
margin-bottom: 10px;
}
.blogpost .comment-form .form-control{
border-radius: 0;
font-weight: 300;
font-size: 14px;
color: #999;
min-height: 50px;
padding: 0 29px;
box-shadow: none;
border-color: #ececec;
-webkit-box-shadow: none;
-webkit-appearance: none;
}
.blogpost .comment-form .form-control:focus{
border-color: #000;
}
.blogpost .comment-form .form-control.msg{
padding-top: 26px;
padding-bottom: 26px;
height: 170px;
}
.comment-form input[type="submit"] {
background-color: #ffc722;
border: medium none;
color: #333;
display: inline-block;
font-size: 13px;
font-weight: 700;
line-height: 26px;
letter-spacing: 0.65px;
padding: 9px 46px;
text-decoration: none;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.comment-form input[type="submit"]:hover {
background-color: #333;
color: #ffc722;
}
/* -- ContactUs Section */
.contactus-section .container .section-padding:last-of-type{
padding-top: 27px;
padding-bottom: 27px;
}
/* -- Map */
.map-canvas {
height: 580px;
width: 100%;
}
/* -- GetInTouch */
.getintouch {
padding-left: 19px;
}
.getintouch h3{
color: #333;
font-weight: 700;
font-family: 'Roboto Slab', serif;
position: relative;
text-transform: capitalize;
line-height: 28px;
margin: 9px 0 23px;
padding-bottom: 17px;
}
.getintouch h3::after{
position: absolute;
content: "";
left: 0;
bottom: 0;
background-color: #ffc722;
width: 40px;
height: 2px;
}
.getintouch p{
color: #777;
font-size: 15px;
line-height: 26px;
padding-right: 25px;
}
/* -- ContactUs Form */
.contactus-form {
display: inline-block;
margin-top: 15px;
}
.contactus-form .form-group {
margin-bottom: 30px;
}
.contactus-form .form-control {
font-weight: 300;
font-size: 14px;
border-radius: 0;
min-height: 50px;
box-shadow: none;
-webkit-box-shadow: none;
-webkit-appearance: none;
line-height: 26px;
padding-left: 19px;
color: #777;
letter-spacing: 0.52px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactus-form .form-control:focus {
border-color: #000;
}
.contactus-form input[type="submit"] {
padding: 8px 47px;
border-radius: 0;
background-color: #ffc722;
border: none;
color: #333;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
font-weight: 700;
letter-spacing: 0.65px;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactus-form input[type="submit"]:hover {
background-color: #333;
color: #fff;
}
/* -- Alert Msg */
.alert-msg {
color: #ccc;
width: 100%;
margin: 10px 15px;
text-align: left;
z-index: 1;
display: inline-block;
}
.alert-msg-success {
color: #50B948;
}
.alert-msg-failure {
color: #FF0000;
}
/* -- ContactDetail Block */
.contactdetail-block{
width: 100%;
background-color: #f9f9f9;
padding-top: 84px;
padding-bottom: 40px;
}
.contactinfo-box{
text-align: center;
margin-bottom: 30px;
}
.contactinfo-box span{
color: #ffc722;
font-size: 35px;
display: block;
margin-bottom: 14px;
}
.contactinfo-box h3 {
color: #333;
font-size: 20px;
font-weight: 700;
text-transform: capitalize;
font-size: 20px;
line-height: 26px;
margin: 0 0 12px;
font-family: 'Roboto Slab', serif;
}
.contactinfo-box p {
color: #777;
font-size: 15px;
line-height: 26px;
padding-right: 10px;
margin-bottom: 14px;
}
.contactinfo-box> a {
text-decoration: none;
text-transform: uppercase;
font-family: 'Roboto Slab', serif;
font-weight: 700;
color: #ffc722;
font-size: 13px;
line-height: 26px;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
}
.contactinfo-box> a:hover {
color: #000;
}
/* ========================================================================== */
/* ========================================================================== */
/* [Responsive] */
/* ========================================================================== */
/* ========================================================================== */
/* -- min-width: 1366 to max-width: 1651 */
@media only screen and (min-width: 1366px) and (max-width: 1651px) {
/* -- Parallax Section */
.parallax-content{
padding-left: 8%;
padding-right: 8%;
padding-top: 5%;
}
}
/* -- min-width: 1200 to max-width: 1365 */
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
/* -- Parallax Section */
.parallax-content{
padding-left: 8%;
padding-top: 2%;
padding-right: 4%;
}
}
/* -- min-width: 992 */
@media (min-width: 992px) {
/* -- Welcome Section */
.welcome-section .col-md-4:nth-child(3n+1){
clear: both;
}
/* -- LatestBlog Section */
.latestblog-section .col-md-4:nth-child(3n+1){
clear: both;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3:nth-child(4n+1){
clear: both;
}
.parallax-content{
position: absolute;
top: 0;
background-color: #363533;
height: 100%;
background: -webkit-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: -o-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: -moz-radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background: radial-gradient(ellipse at 162% 14.5%, transparent 30%, #363533 30%);
background-size: 100% 340%;
width: 56.3%;
padding-left: 5%;
padding-right: 15%;
padding-top: 7.4%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
}
/* -- min-width: 992 to max-width: 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption {
top: 45%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 45px;
line-height: 45px;
}
.photoslider-section .item p{
font-size: 28px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .carousel-caption {
left: 20px;
}
/* -- Welcome Section */
.welcome-title h3{
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 0;
padding-top: 15px;
}
.welcome-box:hover .welcome-title{
top: 24px;
}
.welcome-content{
padding-left: 15px;
padding-right: 15px;
padding-bottom: 2px;
}
.welcome-box:hover .welcome-content{
top: 63px;
}*/
.welcome-content .course-detail li,
.welcome-content p{
font-size: 13px;
}
.course-rating{
margin-bottom: 15px;
}
.welcome-content > a{
padding: 5px 20px;
}
/* -- Parallax Section */
.parallax-content{
padding-left: 5%;
padding-right: 2%;
padding-top: 2%;
width: 60%;
}
.parallax-content h3{
font-size: 20px;
line-height: 28px;
}
.parallax-content h3:last-of-type{
margin-bottom: 5px;
}
.parallax-section .owl-dots{
left: 15px;
}
.parallax-content a{
margin-bottom: 10px;
}
.parallax-content{
width: 70%;
padding-right: 10%;
}
/* -- Event Section */
.event-box .col-md-7{
padding-left: 15px;
}
.event-box .col-md-7::after{
right: 0;
}
.event-box h3 a,
.event-box h3{
margin-top: 0;
}
/* -- Event2 Block */
.eventcourse-categories .section-header{
margin-bottom: 0;
}
.eventcourse-categories .section-header h3{
font-size: 26px;
}
.eventcourse-categories p{
font-size: 15px;
}
.video-content{
padding-left: 15px;
padding-bottom: 0;
}
.video-content h3{
font-size: 15px;
margin-top: 10px;
}
.video-content p{
font-size: 14px;
}
.video-block .popup-youtube{
width: 50px;
height: 50px;
line-height: 50px;
font-size: 20px;
top: 38%;
}
.event-section.event2-section{
margin-left: 0;
}
.event2-section.event-section .event-box .event-index{
top: 0;
font-size: 32px;
}
.event2-section.event-section .event-box .eventcontent-box{
margin-left: 50px;
}
.event2-section.event-section .event-box::before{
top: 6px;
}
/* -- Search Courses */
.searchcourses .container{
padding-left: 15px;
padding-right: 15px;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
min-width: 200px;
max-width: 200px;
}
.course-search-block .col-md-6.search_box{
max-width: 400px;
}
.course-search-block .search_box .form-control{
min-width: 270px;
}
.course-search-block .search_box .btn{
padding: 10px 30px;
right: -18px;
}
/* -- Video Testimonial Section */
.video-block.video-block-lg .video-content {
padding-left: 15px;
}
.testimonial-block .carousel-indicators{
bottom: -20px;
}
/* -- CoursesDetail Section */
.courses-features{
padding-left: 10px;
padding-right: 10px;
}
.featuresbox h3{
font-size: 13px;
}
.courses-summary ul li a{
font-size: 14px;
padding-left: 25px;
}
/* -- LatestBlog Section */
.type-post .entry-contentblock{
max-width: 235px;
}
/* -- Blog */
.widget_categories ul li a{
font-size: 13px;
}
.widget_categories ul li span{
font-size: 12px;
}
.blog .type-post .entry-contentblock{
top: 0;
}
.blog .type-post .entry-block .post-ic{
right: 0;
}
}
/* -- max-width: 991 */
@media (max-width: 991px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption {
top: 40%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 38px;
line-height: 40px;
}
.photoslider-section .item h3{
margin-bottom: 10px;
}
.photoslider-section .item p{
font-size: 27px;
}
/* -- PhotoSlider 2 */
.photoslider2.photoslider-section .carousel-caption {
left:0;
}
/* -- Welcome Section */
.welcome-title h3{
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
/*.welcome-box:hover .welcome-title h3{
padding-bottom: 0;
padding-top: 16px;
}
.welcome-box:hover .welcome-title{
top: 45px;
}
.welcome-content{
padding-left: 15px;
padding-right: 15px;
padding-bottom: 2px;
}
.welcome-box:hover .welcome-content{
top: 85px;
}*/
.welcome-content > span{
margin-bottom: 5px;
}
.welcome-content .course-detail li,
.welcome-content p{
font-size: 13px;
}
.welcome-content .course-detail{
margin-bottom: 18px;
}
.course-rating{
margin-bottom: 25px;
}
.welcome-content > a{
padding: 5px 20px;
}
/* -- Parallax Section */
.parallax-content{
position: relative;
width: 100%;
background-color: #363533;
padding: 22px 7% 20px 10%;
}
.parallax-section .owl-dots{
left: 25px;
}
.parallax-content h3{
font-size: 18px;
}
.parallax-content h3:last-of-type{
margin-bottom: 10px;
}
.parallax-content a{
margin-bottom: 15px;
}
/* -- Event Section */
.event-box .col-md-7{
padding-left: 8px;
}
.event-box .col-md-7::after{
right: 0;
}
.event-box h3 a,
.event-box h3{
margin-top: 0;
font-size: 18px;
}
.event-box .event-meta{
margin-bottom: 5px;
}
.event-box .readmore{
right: 25px;
}
/* -- Event2 Section */
.eventcourse-categories .section-header,
.eventcourse-categories{
text-align: center;
}
.video-block{
display: block;
margin: 50px auto;
float: none;
text-align: center;
}
.event-section.event2-section{
margin-left: 0;
}
.event2-section.event-section .event-box .eventcontent-box{
max-width: 420px;
}
.event2-section.event-section .event-box .event-index{
top: 3px;
font-size: 32px;
}
.event2-section.event-section .event-box > img{
top: 0;
}
/* -- Search Courses */
.searchcourses .container{
padding-left: 15px;
padding-right: 15px;
}
.course-search-block .col-md-3,
.course-search-block .btn{
max-width: 150px;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
width: 150px;
width: 150px;
}
.course-search-block .col-md-6.search_box{
max-width: 330px;
}
.course-search-block .search_box .form-control{
min-width: 220px;
}
.course-search-block .search_box .btn{
padding: 10px 25px;
right: -18px;
}
/* -- Video Testimonial Section */
.video-testimonial-section .video-block{
max-width: 570px;
}
.video-block.video-block-lg .video-content {
padding-left: 0;
}
/* -- CoursesDetail Section */
.courses-features{
padding-left: 10px;
padding-right: 10px;
}
.featuresbox h3{
font-size: 13px;
}
.courses-summary ul li{
width: 100%;
margin-bottom: 15px;
}
.reviewbox{
margin-right: 20px;
}
.average-review{
padding: 32px 20px 39px 20px;
}
.average-review h2{
font-size: 60px;
}
.detail-review ul{
padding-left: 15px;
padding-right: 10px;
padding-top: 21px;
}
/* -- Team Section */
.team-gallary{
display: inline-block;
margin-top: 120px;
}
.team-content-block{
padding-left: 15px;
}
.team-section .team-intro p{
padding-right: 0;
}
/* -- Testimonial2 Section */
.testimonial2-section .testimonialbox{
width: 75%;
}
/* -- Testimonial2 Section:: Carousel contro setting */
.testimonial2-section .carousel-control {
margin: 0 20px 0 0;
}
/* -- WhyChooseUs Section */
.whychooseus-section .video-block{
max-width: 570px;
}
.whychooseus-section .accordion-section{
max-width: 590px;
float: none;
margin: 0 auto;
}
.whychooseus-section .accordion-section .panel-group .panel{
padding: 0 0 6px;
}
/* -- LatestBlog Section */
.latestblog-section .col-md-4:nth-child(2n+1){
clear: both;
}
.type-post .entry-contentblock{
max-width: 285px;
}
/* -- Blog */
.blog .type-post .entry-contentblock{
top: 0;
}
.blog .type-post .entry-contentblock{
padding-top: 5px;
padding-left: 20px;
padding-bottom: 25px;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a {
font-size: 18px;
margin-bottom: 10px;
}
.blog .type-post .entry-contentblock > a{
font-size: 14px;
padding: 5px 24px;
margin-top: 5px;
}
.blog .type-post .entry-block .post-ic{
right: 0;
}
.blog .type-post{
margin-bottom: 40px;
}
/* -- ContactDetail */
.getintouch{
margin-top: 50px;
display: block;
}
.contactdetail-block .col-md-3:nth-child(4n+1){
clear: both;
}
.getintouch p{
padding-right: 0;
}
/* -- CallOut */
.callout a{
padding: 12px 40px;
}
}
/* -- max-width: 767 */
@media (max-width: 767px) {
/* -- PhotoSlider Section */
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 32px;
line-height: 32px;
}
.photoslider-section .item p{
font-size: 22px;
line-height: 24px;
}
.photoslider-section .carousel-control{
height: 38px;
line-height: 38px;
top: auto;
width: 38px;
}
/* -- Welcome Section */
.welcome-title{
bottom: 80px;
}
/*.welcome-box:hover .welcome-title{
top: 25px;
}
.welcome-box:hover .welcome-content{
top: 65px;
}*/
/* -- Event Section */
.event-section .event-box{
margin-bottom: 25px;
padding-bottom: 25px;
}
.event-box p{
font-size: 14px;
}
.event-box .readmore{
position: relative;
float: right;
right: 15px;
padding-top: 0;
}
/* -- Event2 Section */
.event2-section.event-section .event-box .eventcontent-box{
max-width: 350px;
}
/* -- Search Courses */
.searchcourses-block h3{
padding: 0;
font-size: 24px;
line-height: 30px;
margin-bottom: 30px;
}
.course-search-block .col-md-3, .course-search-block .btn{
max-width: 135px;
}
.course-search-block .col-md-6.search_box{
max-width: 280px;
}
.course-search-block .search_box .form-control{
min-width: 160px;
}
.course-search-block .search_box .btn{
padding: 10px 15px;
}
/* -- Video Testimonial Section */
.video-block .popup-youtube{
width: 50px;
height: 50px;
line-height: 50px;
font-size: 20px;
top: 35%;
}
/* -- CoursesDetail Section */
.event-sidebar{
margin-top: 25px;
display: inline-block;
}
/* -- CallOut */
.callout .callout-content h3{
font-size: 22px;
}
.callout .callout-content p{
font-size: 15px;
}
.callout a{
font-size: 15px;
padding: 8px 20px;
}
/* -- LatestBlog Section */
.type-post .entry-contentblock{
max-width: 100%;
top: 0;
}
.type-post .entry-block .post-ic{
right: 0;
}
/* -- Blog */
.widget-area {
margin-top: 30px;
}
.blog .type-post .entry-contentblock{
padding-left: 15px;
}
.blog .type-post .entry-content p{
padding-right: 10px;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3:nth-child(2n+1){
clear: both;
}
}
/* -- max-width: 639 */
@media (max-width: 639px) {
/* -- PhotoSlider Section */
.photoslider-section .carousel-caption{
top: 36%;
}
.photoslider-section .item h3,
.photoslider-section .item h4{
font-size: 24px;
line-height: 24px;
}
.photoslider-section .item p{
font-size: 20px;
line-height: 22px;
padding-right: 0;
}
.photoslider-section .item a{
font-size: 11px;
padding: 1px 20px;
margin-top: 2px;
}
.photoslider-section .carousel-control{
height: 38px;
line-height: 38px;
top: auto;
width: 38px;
}
/* -- Parallax */
/* -- Welcome Section */
.welcome-section .col-md-4{
float: none;
margin: 0 auto;
max-width: 370px;
text-align: center;
width: 100%;
}
/* -- Event2 Section */
.video-content {
position: relative;
padding-left: 0;
}
.event-section.event2-section{
text-align: center;
}
.event2-section.event-section .event-box .eventcontent-box{
margin-left: 0;
width: 100%;
max-width: 100%;
margin-top: 40px;
margin-bottom: 10px;
}
.event2-section.event-section .event-box > img{
position: relative;
top: auto;
}
.event2-section.event-section .event-box .event-index{
right: 0;
}
.event2-section.event-section .event-box::before{
right: 0;
}
.event2-section.event-section .event-box::after{
left: 0;
}
.event2-section.event-section .event-block > a{
margin-left: 0;
}
/* -- Search Courses */
.course-search-block .col-xs-6{
width: 100%;
max-width: 100%;
}
.searchcourses-block h3{
font-size: 20px;
}
.course-search-block .col-md-3, .course-search-block .btn{
max-width: 640px;
padding-right: 0;
margin-right: 0;
}
.course-search-block .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
max-width: 100%;
width: 100%;
margin-bottom: 20px;
}
.course-search-block .col-md-6.search_box{
max-width: 640px;
}
.course-search-block .search_box .form-control{
max-width: 470px;
}
.course-search-block .search_box .btn{
right: -15px;
}
/* -- CoursesDetail Section */
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 5px;
}
.reviewbox{
margin-right: 10px;
}
/* -- LatestBlog Section */
.type-post .entry-block .post-ic{
height: 40px;
width: 40px;
line-height: 40px;
font-size: 16px;
}
/* -- BlogPost */
.post-comments .media .media-body .media{
margin-left: 30px;
}
}
/* -- max-width: 479 */
@media (max-width: 479px) {
/* -- PhotoSlider Section */
.photoslider-section .item .col-xs-8{
width: 100%;
}
.photoslider-section .carousel-caption{
position: relative;
transform: none;
background-color: #333;
text-align: center;
-moz-transform: none;
-webkit-transform: none;
transform: none;
top: 0;
}
.photoslider-section .item a{
margin-top: 5px;
}
.photoslider-section .carousel-control{
font-size: 14px;
height: 30px;
line-height: 30px;
width: 30px;
}
.photoslider-section .carousel-control.left{
left: 15px;
}
.photoslider-section .carousel-control.right{
right: -10px;
}
/* -- Parallax Section */
.parallax-content{
padding: 22px 7% 20px 15%;
}
.parallax-section .owl-dots{
left: 15px;
}
.parallax-section ul img {
max-width: 80px;
}
/* -- Event Section */
.event-section .section-header {
text-align: center;
}
.section-header-block{
text-align: center;
}
.event-section .section-header{
margin-bottom: 5px;
}
.section-header-block > a{
position: relative;
margin-bottom: 20px;
display: inline-block;
}
.event-section [class*="col-xs-"]{
width: 100%;
float: none;
margin: 0 auto 10px;
text-align: center;
max-width: 300px;
}
.event-section .event-box{
padding-bottom: 7px;
}
.event-box .col-md-7{
padding-left: 15px;
}
.event-box .col-md-7::after{
width: 0;
}
.event-box .readmore{
float: none;
}
/* -- Search Courses */
.search-categories .col-xs-6{
width: 100%;
}
/* -- Video Testimonial Section */
.testimonial-box .testimonial-content{
padding: 20px 20px 25px;
}
/* -- CoursesDetail Section */
.courses-lecture-box .lecture-title, .courses-lecture-box .lecture-no{
margin-right: 15px;
}
.courses-lecture-box{
line-height: 35px;
}
.courses-lecture-box i{
margin-right: 5px;
}
.courses-lecture-box .lecture-title,
.courses-lecture-box .lecture-no{
margin-right: 0;
}
.lecture-time,
.lecture-title{
width: 100%;
display: inline-block;
margin-left: 20px;
}
.lecture-tag{
margin-left: 20px;
}
.lecture-tag,
.courses-lecture-box .lecture-time {
float: none;
}
.reviewbox
.average-review{
padding: 32px 40px 39px;
max-width: 200px;
float: none;
margin: 0 auto;
}
/* -- Team Section */
.team-gallary{
width: 100%;
}
.team-gallary .col-xs-6{
width: 100%;
float: none;
margin: 10px auto 40px;
max-width: 300px;
}
/* -- Testimonial2 Section */
.testimonial2-section .testimonialbox{
width: 64%;
}
.testimonial2-section .testimonialbox p{
font-size: 15px;
}
/* -- WhyChooseUs Section */
.accordion-section .panel-default > .panel-heading{
padding: 0 15px;
}
.accordion-section .panel-title a.collapsed::before,
.accordion-section .panel-title a::before{
right: 0;
}
.accordion-section .panel-body{
margin: 0 15px;
}
/* -- CallOut */
.callout [class*="col-xs-"]{
width: 100%;
text-align: center;
float: none;
}
.callout a{
float: none;
margin-top: 10px;
display: inline-block;
padding: 8px 30px;
}
/* -- LatestBlog Section */
.latestblog-section .col-xs-6{
width: 100%;
float: none;
max-width: 365px;
margin: 0 auto;
}
/* -- Blog */
.blog .type-post .entry-meta span{
display: block;
margin-right: 0;
}
.type-post .entry-contentblock .postby{
padding-bottom: 0;
}
.blog .type-post .entry-title h3,
.blog .type-post .entry-title a{
font-size: 16px;
}
/* -- BlogPost */
.post-comments .media-left{
max-width: 85px;
}
.post-comments .media-body .media-content{
margin-left: 45px;
padding: 15px 5px 45px 50px;
}
.post-comments .media-body .media-heading span{
float:left;
width: 100%;
display: block;
}
.post-comments .media .media-body .media{
margin-left: 15px;
}
/* -- ContactDetail */
.contactdetail-block .col-md-3{
width: 100%;
}
.contactdetail-block{
padding-top: 30px;
padding-bottom: 0;
}
} | 0.196055 | 0.074097 |
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&family=STIX+Two+Text:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box;
}
html {
background-color: #FBFAF6;
}
body {
color: #000;
background-color: #FBFAF6;
margin: 0;
padding: 0;
font-size: 16px;
font-family: 'Poppins', sans-serif;
}
section {
padding-top: 5rem;
}
/* Header */
.navbar {
background-color: rgba(0, 0, 0, 0.3);
}
.navbar-brand {
line-height: 0;
font-family: 'Questrial', sans-serif;
font-weight: bolder;
font-size: 1.5em;
text-shadow: 1px 1px 0.5px rgba(0, 0, 0, .7);
}
.navbar svg {
filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, .7));
}
.navbar-brand:hover {
text-shadow: 2px 2px 0.5px rgba(85, 81, 81, 0.7);
filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
}
.search-box {
border: 1px solid #202020;
border-radius: 5px;
}
.form-control:focus {
box-shadow: 0 0 0 0.1rem black;
}
.nav-item {
padding: 0 5px 0 5px;
font-size: 18px;
}
.nav-item:hover {
background-color: rgba(355, 355, 355, 0.2);
}
/* Jumbotron */
.jumbotron {
padding-top: 7rem;
background-color: #CA9456;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(https://images.unsplash.com/photo-1483695028939-5bb13f8648b0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80) no-repeat;
background-size: contain, cover;
background-attachment: fixed;
min-height: 680px;
}
h1 {
color: #FBFAF6;
font-family: 'STIX Two Text', serif;
text-transform: capitalize;
font-size: 40px;
width: 100%;
height: max-content;
margin: auto;
position: relative;
top: 4rem;
}
.divider {
width: 40%;
height: 0px;
border: 1px solid rgba(355, 355, 355, 0.7);
position: relative;
top: 4.5rem;
margin: auto;
}
.description {
color: #FBFAF6;
position: relative;
top: 5rem;
margin: auto;
width: 38%;
}
/* Menu */
.col {
padding: 2rem 0;
}
.card-img-top {
height: auto;
}
.card .badges svg {
transform: translate(-50%,-50%);
position: absolute;
top: 0%;
left: 90%;
width: auto;
fill: orange;
}
.badges {
z-index: 1;
}
iframe {
display: block;
width: 600px;
height: 480px;
margin: auto;
}
/* About */
#about {
width: 100%;
padding-top: 7rem;
background-color: #f5cf8e;
min-height: 680px;
}
.our-bakery {
width: -webkit-fill-available
}
#about button {
position: relative;
bottom: auto;
left: 18%;
}
/* Contact */
#contact {
padding-top: 0;
background-color: #CA9456;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(https://images.pexels.com/photos/7629782/pexels-photo-7629782.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940) no-repeat;
background-size: contain, cover;
background-attachment: fixed;
}
#contact h2, #contact label {
color: white;
}
#submit {
background-color: #dc3545;
border: none;
}
#submit:hover {
background-color: #fff;
}
.search-container, .search-box {
margin-left: auto;
}
/* media */
@media (min-width : 300px) and (max-width: 700px) {
.description{
width: 85%;
}
.card p {
width: 100%;
padding: 0 20px;
}
iframe {
width: 90%;
}
.card .badges svg {
width: 30%;
position: absolute;
top: 3%;
left: 90%;
}
#menu {
width: 90%;
margin: auto;
}
#about{
height: 1050px;
}
#about button {
top: 20px;
left: 33%;
}
}
@media (min-width: 300px) and (max-width: 1000px) {
.navbar {
background-color: rgba(0, 0, 0);
}
.search-container,
.search-box {
margin-left: 0;
}
.search-box .btn {
background-color: white;
position: fixed;
}
.search-box .form-control {
margin-left: 40px;
}
} ;
footer {
background-color: #af762f;
}
footer a, footer i{
color: black;
padding-left: 5px;
text-shadow: 0 0 5px #22a1d3;
}
#header img {
width:0;
height: 0;
position: absolute;
z-index: -999;
} | Build-a-responsive-product-landing-page/style.css | @import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&family=STIX+Two+Text:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box;
}
html {
background-color: #FBFAF6;
}
body {
color: #000;
background-color: #FBFAF6;
margin: 0;
padding: 0;
font-size: 16px;
font-family: 'Poppins', sans-serif;
}
section {
padding-top: 5rem;
}
/* Header */
.navbar {
background-color: rgba(0, 0, 0, 0.3);
}
.navbar-brand {
line-height: 0;
font-family: 'Questrial', sans-serif;
font-weight: bolder;
font-size: 1.5em;
text-shadow: 1px 1px 0.5px rgba(0, 0, 0, .7);
}
.navbar svg {
filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, .7));
}
.navbar-brand:hover {
text-shadow: 2px 2px 0.5px rgba(85, 81, 81, 0.7);
filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
}
.search-box {
border: 1px solid #202020;
border-radius: 5px;
}
.form-control:focus {
box-shadow: 0 0 0 0.1rem black;
}
.nav-item {
padding: 0 5px 0 5px;
font-size: 18px;
}
.nav-item:hover {
background-color: rgba(355, 355, 355, 0.2);
}
/* Jumbotron */
.jumbotron {
padding-top: 7rem;
background-color: #CA9456;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(https://images.unsplash.com/photo-1483695028939-5bb13f8648b0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80) no-repeat;
background-size: contain, cover;
background-attachment: fixed;
min-height: 680px;
}
h1 {
color: #FBFAF6;
font-family: 'STIX Two Text', serif;
text-transform: capitalize;
font-size: 40px;
width: 100%;
height: max-content;
margin: auto;
position: relative;
top: 4rem;
}
.divider {
width: 40%;
height: 0px;
border: 1px solid rgba(355, 355, 355, 0.7);
position: relative;
top: 4.5rem;
margin: auto;
}
.description {
color: #FBFAF6;
position: relative;
top: 5rem;
margin: auto;
width: 38%;
}
/* Menu */
.col {
padding: 2rem 0;
}
.card-img-top {
height: auto;
}
.card .badges svg {
transform: translate(-50%,-50%);
position: absolute;
top: 0%;
left: 90%;
width: auto;
fill: orange;
}
.badges {
z-index: 1;
}
iframe {
display: block;
width: 600px;
height: 480px;
margin: auto;
}
/* About */
#about {
width: 100%;
padding-top: 7rem;
background-color: #f5cf8e;
min-height: 680px;
}
.our-bakery {
width: -webkit-fill-available
}
#about button {
position: relative;
bottom: auto;
left: 18%;
}
/* Contact */
#contact {
padding-top: 0;
background-color: #CA9456;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(https://images.pexels.com/photos/7629782/pexels-photo-7629782.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940) no-repeat;
background-size: contain, cover;
background-attachment: fixed;
}
#contact h2, #contact label {
color: white;
}
#submit {
background-color: #dc3545;
border: none;
}
#submit:hover {
background-color: #fff;
}
.search-container, .search-box {
margin-left: auto;
}
/* media */
@media (min-width : 300px) and (max-width: 700px) {
.description{
width: 85%;
}
.card p {
width: 100%;
padding: 0 20px;
}
iframe {
width: 90%;
}
.card .badges svg {
width: 30%;
position: absolute;
top: 3%;
left: 90%;
}
#menu {
width: 90%;
margin: auto;
}
#about{
height: 1050px;
}
#about button {
top: 20px;
left: 33%;
}
}
@media (min-width: 300px) and (max-width: 1000px) {
.navbar {
background-color: rgba(0, 0, 0);
}
.search-container,
.search-box {
margin-left: 0;
}
.search-box .btn {
background-color: white;
position: fixed;
}
.search-box .form-control {
margin-left: 40px;
}
} ;
footer {
background-color: #af762f;
}
footer a, footer i{
color: black;
padding-left: 5px;
text-shadow: 0 0 5px #22a1d3;
}
#header img {
width:0;
height: 0;
position: absolute;
z-index: -999;
} | 0.390243 | 0.132346 |
.pagewrap{
min-height: 100%;
width:100%;
position:absolute;
left:0;
top:47px;
z-index:6;
background-color:white;
display:none;
}
.pagewrap .rowz{
width:100%;
overflow: hidden;
}
.pagewrap .rowz .label{
width:100px;
float:left;
font-size:16px;
color:#333333;
text-align: right;
line-height: 36px;
}
.pagewrap .rowz .contentz{
overflow: hidden;
color:#333333;
}
.ke-container{
width:auto!important;
margin-top:5px!important;
}
.pagewrap .rowz .contentz >input[type="text"]{
width:400px;
height:24px;
line-height:24px;
border:1px solid #d1d1d1;
margin:5px 0;
padding-left:5px;
}
.pagewrap .rowz .contentz >input[type="text"]:focus{
outline:none;
}
.pagewrap .rowz .contentz >.colorbtn{
display: inline-block;
width:20px;
height:26px;
position: relative;
vertical-align: middle;
overflow: hidden;
cursor:pointer;
background-image:url(../../image/content/color.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin:5px 0 5px 10px;
}
.pagewrap .rowz .contentz >.colorbtn input{
position: absolute;
left: 0;
top:0;
width:100%;
height:100%;
opacity: 0;
cursor:pointer;
}
.pagewrap .rowz .contentz >.weightbtn{
display: inline-block;
vertical-align: middle;
width:20px;
height:26px;
position: relative;
cursor:pointer;
background-image:url(../../image/content/bold.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin:5px 0 5px 5px;
}
.pagewrap .rowz .contentz >span{
margin-left:10px;
font-size:14px;
color:#333333;
text-align: left;
line-height: 34px;
}
.pagewrap .rowz .contentz .btn{
width:74px;
height:32px;
border:1px solid #188fc3;
padding:4px;
border-radius:16px;
box-sizing: border-box;
background-color:#188fc3;
text-align: center;
line-height: 22px;
color:white;
background-clip: content-box;
cursor:pointer;
position:relative;
transition: all 0.3s;
margin-top:30px;
top:0;
left:0;
}
.pagewrap .rowz .contentz .btn:hover{
opacity:0.8;
}
.panel-body{
position:relative;
} | hunt-web/src/main/webapp/static/css/content/travel.css | .pagewrap{
min-height: 100%;
width:100%;
position:absolute;
left:0;
top:47px;
z-index:6;
background-color:white;
display:none;
}
.pagewrap .rowz{
width:100%;
overflow: hidden;
}
.pagewrap .rowz .label{
width:100px;
float:left;
font-size:16px;
color:#333333;
text-align: right;
line-height: 36px;
}
.pagewrap .rowz .contentz{
overflow: hidden;
color:#333333;
}
.ke-container{
width:auto!important;
margin-top:5px!important;
}
.pagewrap .rowz .contentz >input[type="text"]{
width:400px;
height:24px;
line-height:24px;
border:1px solid #d1d1d1;
margin:5px 0;
padding-left:5px;
}
.pagewrap .rowz .contentz >input[type="text"]:focus{
outline:none;
}
.pagewrap .rowz .contentz >.colorbtn{
display: inline-block;
width:20px;
height:26px;
position: relative;
vertical-align: middle;
overflow: hidden;
cursor:pointer;
background-image:url(../../image/content/color.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin:5px 0 5px 10px;
}
.pagewrap .rowz .contentz >.colorbtn input{
position: absolute;
left: 0;
top:0;
width:100%;
height:100%;
opacity: 0;
cursor:pointer;
}
.pagewrap .rowz .contentz >.weightbtn{
display: inline-block;
vertical-align: middle;
width:20px;
height:26px;
position: relative;
cursor:pointer;
background-image:url(../../image/content/bold.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin:5px 0 5px 5px;
}
.pagewrap .rowz .contentz >span{
margin-left:10px;
font-size:14px;
color:#333333;
text-align: left;
line-height: 34px;
}
.pagewrap .rowz .contentz .btn{
width:74px;
height:32px;
border:1px solid #188fc3;
padding:4px;
border-radius:16px;
box-sizing: border-box;
background-color:#188fc3;
text-align: center;
line-height: 22px;
color:white;
background-clip: content-box;
cursor:pointer;
position:relative;
transition: all 0.3s;
margin-top:30px;
top:0;
left:0;
}
.pagewrap .rowz .contentz .btn:hover{
opacity:0.8;
}
.panel-body{
position:relative;
} | 0.356335 | 0.036084 |
body,p,b,dl,dd,table,td,th,input,button,textarea,xmp,pre,img,form,div,ul,ol,li,h1,h2,h3,h4,h5,h6 {
margin: 0;
padding: 0;
}
img,iframe,acronym {
border: 0;
}
ol,ul,li {
list-style: none;
}
img,input,label,button {
vertical-align: middle;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
address,caption,cite,code,dfn,em,strong,th,var,b,i {
font-style: normal;
font-weight: normal;
}
button,input,select,textarea {
font-size: 100%;
}
body {
_zoom: expression(function(el) {
document.execCommand('BackgroundImageCache',false,true);
el.style.zoom = "1";
}
(this));
}
button {
cursor: pointer;
}
: : -moz-focus-inner {
border: 0;
padding: 0;
margin: 0;
}
: focus {
outline: none;
}
body {
font: 14px/1.14 Arial;
background: #F5F5F8 url(images/body_bg.png) repeat-x 0 27px;
}
a {
color: #1C1C1C;
text-decoration: none;
}
a:hover {
color: #f30;
text-decoration: underline;
}
b {
font-size: 0;
display: block;
overflow: hidden;
-moz-user-select: none;
}
i {
display: inline-block;
_display: inline;
zoom: 1;
cursor: pointer;
position: relative;
width: 16px;
height: 16px;
background: url(images/main1.png) no-repeat;
}
.i-home {
background-position: 0 -147px;
}
.i-tool {
background-position: 0 -165px;
}
.i-tv {
background-position: 0 -195px;
}
.i-movie {
background-position: 0 -225px;
}
.i-caipiao {
background-position: 0 -284px;
}
.i-music {
background-position: 0 -254px;
}
.i-tuan {
background-position: 0 -315px;
}
.i-game {
background-position: 0 -345px;
}
.i-papers {
background-position: 0 -131px;
}
.tc-red,.tc-red a {
color: #F85050!important;
}
.tc-green,.tc-green a {
color: #1EAC1E!important;
}
.tc-blue,.tc-blue a {
color: #0053a5!important;
}
b.space {
display: inline-block;
_display: inline;
zoom: 1;
height: 13px;
width: 0;
position: relative;
top: 2px;
border-left: 1px solid #999;
}
.ft-l {
float: left;
}
.ft-r {
float: right;
}
.clearfix {
zoom: 1;
}
.clearfix:before,.clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.corner b {
width: 5px;
height: 5px;
}
.corner .l {
float: left;
_margin-right: -3px;
}
.corner .r {
float: right;
_margin-left: -3px;
}
.corner .m {
width: auto;
}
.span-rows {
letter-spacing: -.3em;
*letter-spacing: normal;
word-spacing: -.5em;
}
.span-rows span {
display: inline-block;
_display: inline;
zoom: 1;
vertical-align: top;
letter-spacing: normal;
}
.span-rows span a {
letter-spacing: normal;
word-spacing: normal;
vertical-align: baseline;
}
.sug-wrap {
position: absolute;
white-space: nowrap;
overflow: hidden;
top: 30px;
left: -1px;
border: 1px solid #817F82;
background: #fff;
width: 418px;
color: #1C1C1C;
z-index: 999;
}
.sug-shim {
position: absolute;
top: -1px;
left: -1px;
z-index: -1;
filter: alpha(opacity="0");
width: 420px;
height: 232px;
}
.sug-wrap ol {
font: bold 14px/21px verdana;
cursor: default;
}
.sug-wrap li {
padding: 1px 6px;
padding-left: 8px;
}
.sug-wrap .sug-sub {
color: #999;
font-size: 12px;
font-weight: normal;
padding-left: 5px;
}
.sug-wrap .sug-select {
background: #E2EAFF;
}
.sug-wrap .sug-query {
font-weight: normal;
}
.sug-wrap .sug-querynull {
font-weight: normal;
}
.l-header {
overflow: hidden;
}
.l-header_l,.l-header_m,.l-header_r,.box-weather,.box-date {
height: 80px;
}
.l-header_l {
_margin-right: -3px;
}
.l-header_r {
_margin-left: -3px;
}
.l-article_l {
float: left;
width: 220px;
margin-right: 10px;
_margin-right: 7px;
}
.l-article_r {
overflow: hidden;
zoom: 1;
}
.l-footer {
text-align: center;
font-size: 12px;
padding-top: 20px;
}
.box {
width: 960px;
margin: 0 auto;
}
.box-userbar {
height: 27px;
font-size: 12px;
min-width: 960px;
overflow: hidden;
color: #666;
background: #F7F7F7 url(images/main1.png) repeat-x 0 0;
border-bottom: 1px solid #E8E8E9;
}
.box-userbar .box {
line-height: 27px;
}
.box-userbar_link {
line-height: 28px;
margin-right: -9px;
}
.box-userbar_link span {
margin: 0 9px;
vertical-align: baseline;
}
.box-userbar_link a {
color: #1C1C1C;
}
.box-userbar_link a: hover {
color: #f30;
}
.box-userbar_link .i-home {
float: left;
margin-right: 3px;
_margin-right: 0;
top: 4px;
}
@-moz-document url-prefix() {
.box-userbar_link .i-home {
top: 5px;
}
}.box-banner {
border: 1px solid #E8E8E8;
margin-top: 9px;
display: inline-block;
}
.box-logo {
display: inline-block;
width: 210px;
height: 80px;
}
.box-logo img {
margin-top: 7px;
}
.box-weather {
float: left;
width: 289px;
height: 65px;
font-size: 12px;
font-family: Arial;
white-space: nowrap;
line-height: 21px;
padding: 15px 0 0 10px;
}
.box-weather_tip {
display: none;
}
#forecast_content {
position: relative;
}
.box-weather_city {
width: 65px;
float: left;
margin-top: 5px;
position: absolute;
left: 0;
top: 0;
}
.box-weather_city a: hover {
color: red;
}
.box-weather_city .change-city {
display: block;
height: 24px;
}
.box-weather_city .change-city a {
cursor: pointer;
}
.box-weather_city .change-city a: hover {
text-decoration: none;
}
.box-weather_city span {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.box-weather_city .change-city a .cityName,.box-weather_city .change-city a:link .cityName,.box-weather_city .change-city a:visited .cityName {
width: 24px;
width: auto!important;
max-width: 52px;
overflow: hidden;
font-weight: bold;
}
.box-weather_city .change-city a: hover .cityName {
color: red;
text-decoration: underline;
}
.box-weather_city .change-city a .city_edit {
display: inline-block;
height: 100%;
width: 15px;
background: url(images/edit.png) no-repeat right 5px;
}
.box-weather_city .change-city a:hover .city_edit {
background: url(images/edit.png) no-repeat right -32px;
}
.box-weather_info {
width: 224px;
float: right;
overflow: hidden;
position: relative;
}
.box-weather_info a {
cursor: pointer;
zoom: 1;
}
.box-weather_info a:hover p {
text-decoration: underline;
}
.box-weather_info_item {
width: 112px;
float: left;
position: relative;
}
.box-weather_info_item .weather_day {
font-weight: bold;
}
.box-weather_info_item_icon {
height: 48px;
width: 48px;
position: absolute;
top: 0;
left: 0;
}
.box-weather_info_item p {
padding-left: 55px;
height: 18px;
padding-top: 5px;
}
.box-weather_setCity {
display: none;
padding-top: 5px;
}
.box-weather_setCity_cancel {
cursor: pointer;
margin-left: 15px;
background: none;
border: none;
cursor: pointer;
padding: 1px;
}
.box-weather_setCity p {
text-align: center;
height: 30px;
}
.box-weather_setCity select {
margin-right: 3px;
}
.box-weather_setCity_btn {
vertical-align: middle;
line-height: 1.2;
width: 50px;
height: 24px;
}
.box-weather_setCity_prov {
width: 79px;
}
.box-weather_setCity_city,.box-weather_setCity_county {
width: 96px;
}
.box-date {
width: 142px;
text-align: center;
white-space: nowrap;
font-size: 12px;
font-family: Arial;
line-height: 23px;
}
.box-date_ymd {
margin-top: 3px;
}
.box-date a:hover {
border: none;
text-decoration: none;
color: #1C1C1C;
}
.box-date a:hover * {
text-decoration: underline;
color: #1C1C1C;
}
.box-date ul {
cursor: pointer;
display: inline-block;
_display: inline;
zoom: 1;
}
.box-date_ymd span {
font-size: 14px;
}
.box-search {
border: 1px solid #CBE6BD;
margin-bottom: 10px;
_overflow: hidden;
background: #F5F5F5 url(../images/images/search2.png) repeat-x 0 -29px;
padding-top: 6px;
width: 958px;
height: 67px;
}
.box-search_l {
float: left;
overflow: hidden;
position: relative;
width: 220px;
height: 58px;
margin-right: 9px;
}
.box-search_l img {
position: absolute;
right: 0;
bottom: 0;
}
.box-search_c {
float: left;
}
.box-search_tabs a {
float: left;
text-align: center;
line-height: 25px;
width: 49px;
height: 28px;
margin-right: -1px;
}
.box-search_tabs a:hover {
text-decoration: none;
color: #1C1C1C;
}
.box-search_tabs a.cur {
background: url(../images/search2.png) no-repeat 0 0;
color: #fff!important;
font-weight: bold;
cursor: default;
}
.box-search_input {
float: left;
position: relative;
background: #fff;
z-index: 99;
cursor: text;
height: 30px;
border: 1px solid #ABABAB;
border-right-color: #D9D9D9;
border-bottom-color: #D9D9D9;
}
.box-search_input input {
border: none;
background: none;
width: 411px;
height: 18px;
margin-top: 6px;
*margin-top: 5px;
font: 16px arial;
padding-left: 7px;
}
.box-search_input b {
font-size: 0;
display: block;
position: absolute;
-moz-user-select: none;
}
.box-search_input .shadow-x {
border-left: 1px solid #CFCFCF;
border-right: 1px solid #EFEFEF;
height: 100%;
}
.box-search_input .shadow-y {
left: 1px;
border-top: 1px solid #CFCFCF;
border-bottom: 1px solid #EFEFEF;
width: 417px;
}
.box-search_btn {
_display: inline;
zoom: 1;
overflow: hidden;
float: left;
width: 96px;
margin-left: 5px;
background: #DBDBDB url(images/search2.png) repeat-x 0 -104px;
}
.box-search_btn .l,.box-search_btn .r {
margin-right: 0;
background: #DBDBDB url(images/search2.png) no-repeat -43px -172px;
width: 3px;
height: 33px;
}
.box-search_btn .r {
background-position: -39px -172px;
}
.box-search_btn .m {
border: none;
background: none;
float: left;
width: 90px;
height: 33px;
line-height: 33px;
}
.box-search_btn_click .l {
background-position: -35px -172px;
}
.box-search_btn_click .r {
background-position: -39px -172px;
}
.box-search_btn_click {
background-position: 0 -138px;
}
.box-search_more {
overflow: hidden;
_margin-left: -3px;
_display: inline;
zoom: 1;
width: 56px;
background: url(images/search2.png) no-repeat 43px -174px;
position: relative;
z-index: 99;
}
.box-search_more a {
text-align: left;
margin-left: 8px;
}
.box-search_more_wrap {
position: absolute;
z-index: 99;
width: 60px;
line-height: 23px;
text-align: center;
_overflow-y: hidden;
_padding-bottom: 2px;
}
.box-search_more_wrap .shadow {
background: #000;
opacity: .15;
filter: alpha(opacity=15);
position: absolute;
top: 2px;
left: 2px;
position: absolute;
width: 60px;
z-index: -1;
height: 60px;
display: block;
position: absolute;
z-index: 99;
width: 100%;
height: 100%;
_height: 3000px;
}
.box-search_more_wrap .content {
position: relative;
z-index: 100;
border: 1px solid #817F82;
background: #fff;
}
.box-search_more_wrap a {
zoom: 1;
display: block;
}
.box-search_more_wrap a:hover {
background: #E2EAFF;
color: #1C1C1C;
font-weight: bold;
text-decoration: none;
}
.box-search_r {
float: right;
position: relative;
overflow: hidden;
width: 207px;
height: 58px;
}
.box-search_notice {
font-size: 12px;
text-align: right;
margin-top: 6px;
padding-right: 5px;
}
.box-hotword {
display: inline;
vertical-align: bottom;
position: absolute;
bottom: 5px;
white-space: nowrap;
font: normal 12px/1.231 ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ!important;
margin-left: 15px;
}
.box-hotword span {
margin: 0 9px;
}
.box-hotword a {
color: #666;
}
.box-leftbar {
border: 1px solid #CBE6BD;
padding: 2px;
background: #ECF5E8;
height: auto;
overflow: hidden;
}
.box-leftbar_inner {
background: #F9FEF4;
overflow: hidden;
width: 214px;
}
.box-sidebar {
background: #F9FEF4;
padding: 12px 0 11px 9px;
margin: 0 5px;
width: 214px;
}
.box-sidebar_title {
display: block;
line-height: 30px;
}
.box-sidebar_title a {
font-weight: bold;
color: #498949;
}
.box-sidebar_content {
line-height: 28px;
}
.box-sidebar_content span {
width: 24.9%;
}
.box-sidebar_last {
height: 216px;
}
.box-starbar {
background: #F9FEF4;
padding: 5px 5px 13px;
white-space: nowrap;
height: 205px;
}
.box-starbar li {
height: 30px;
*margin-bottom: -3px;
line-height: 1.2;
padding: 0 10px;
position: relative;
}
.box-starbar li em a {
position: absolute;
top: 9px;
*top: 10px;
}
.box-starbar li.hover {
background: url(images/hot.png) no-repeat 0 4px;
}
.box-starbar i {
float: left;
left: -1px;
margin-right: 5px;
}
.box-hotspot {
width: auto;
padding-top: 7px;
}
.box-hotspot li a {
font-family: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ;
}
.box-hotspot .box-sidebar_title {
color: #498949;
font-size: 14px;
}
.box-hotspot li {
height: 22px;
line-height: 24px;
font-size: 12px;
overflow: hidden;
}
.box-hotspot .em {
color: red;
}
.box-hotspot .hot-video {
padding-right: 20px;
background: url(images/hot.png) no-repeat right -38px;
}
.box-hotspot .hot-title {
color: #666;
}
.box-starbar acronym {
position: absolute;
right: 8px;
top: 9px;
/*top: 11px;*/
height: 14px;
line-height: 14px;
}
.box-starbar acronym a {
font-size: 12px;
color: #666;
}
.box-starbar acronym a:hover {
color: #f30;
}
.box-hot {
border: 2px solid #97c853;
overflow: hidden;
/*height: 208px;*/
background: #FEFEFB;
}
.box-hot_content {
width: 100%;
margin-left: 15px;
margin-top: 6px;
line-height: 31px;
}
.box-hot_content span {
text-align: center;
width: 115px;
overflow: hidden;
height: 30px;
}
.box-hot_content span em {
color: #999;
margin: 3px;
}
.box-adbar {
overflow: hidden;
height: 25px;
line-height: 25px;
font-size: 12px;
text-align: center;
padding-left: 5px;
}
.box-adbar span {
margin: 0 10px;
}
.box-adbar a {
color: #3b5998;
}
.box-adbar a: hover {
color: #f30;
text-decoration: underline;
}
.box-sort {
position: relative;
margin-bottom: 0;
border: 1px solid #97c853;
background: #ECF5E8;
padding: 2px;
overflow: hidden;
z-index: 10;
}
.box-sort_title {
position: absolute;
left: 3px;
z-index: 10;
}
.box-sort_title a {
color: #108410;
}
.box-sort_title a:hover {
color: #f30;
}
.box-sort_content .box-sort_more {
position: absolute;
right: -3px;
line-height: 29px;
z-index: 10;
display: block;
}
.box-sort_more a {
color: #666;
font-size: 12px;
font-family: \5B8B\4F53;
}
.box-sort_content {
overflow: hidden;
white-space: nowrap;
padding: 5px 0;
line-height: 32px;
background: #fff;
text-align: center;
border-bottom: 5px solid #E5EFDB;
background: #FBFEF7;
}
.box-sort_last {
border: 0;
}
.box-sort_content span {
margin: 0 11px;
}
.box-sort_content span em {
color: #999;
margin: 3px;
}
.box-tools {
margin-top: 10px;
border: 1px solid #CBE6BD;
padding: 2px;
background: #ECF5E8;
overflow: hidden;
/*height: 82px;*/
position: relative;
}
.box-tools_content {
white-space: nowrap;
line-height: 26px;
font-size: 12px;
padding-top: 2px;
padding-bottom: 2px;
background: #F9FEF4;
}
.box-tools_content li {
overflow: hidden;
position: relative;
zoom: 1;
}
.box-tools_content span {
margin-right: 18px;
}
span.box-tools_title {
float: left;
overflow: hidden;
margin-left: 15px;
margin-right: 3px;
_margin-right: -3px;
width: 60px;
}
.box-tools_content a {
color: #1C1C1C;
}
.box-tools_content a: hover {
color: #f30;
text-decoration: underline;
}
.box-tools_title a {
color: #205001;
font-weight: bold;
}
.box-tools_content .box-tools_more {
position: absolute;
top: 0;
right: 6px;
margin: 0;
}
.box-tools_more a {
color: #666;
font-family: \5B8B\4F53;
}
.box-about span {
padding: 0 20px;
}
.box-about b {
top: 0;
}
span.box-about_first {
border: none;
}
.box-copyright {
margin-top: 10px;
_margin-top: 12px;
margin-bottom: 10px;
line-height: 16px;
}
.box-copyright span {
margin: 0 14px;
}
.box-copyright .i-papers {
left: 3px;
top: -1px;
vertical-align: top;
_vertical-align: baseline;
}
.box-copyright a,.box-copyright a:hover,.box-about a,.box-about a: hover {
color: #1C1C1C;
}
.box-mail {
font-size: 12px;
color: #666;
width: 190px;
}
.box-mail ul {
margin-top: 15px;
}
.box-mail li {
margin-top: 10px;
}
.box-mail_input,.box-mail_select,.box-mail_btn {
display: inline-block;
_display: inline;
zoom: 1;
vertical-align: middle;
border: 1px solid #A1BCD1;
}
.box-mail_input {
background: #fff;
border-color: #A1BCD1;
border-bottom-color: #A1BCD1;
border-right-color: #A1BCD1;
margin-right: 2px;
height: 17px;
overflow: hidden;
}
.box-mail_input input {
background: none;
border: 1px solid #E9E9E9;
padding-left: -5px;
border-bottom: none;
border-right: none;
width: 88px;
height: 16px;
line-height: 17px;
font-family: arial;
vertical-align: top;
*margin-top: -1px;
padding-left: 1px;
padding-left: 2px\9;
}
.box-mail_input_passwd,.box-mail_input_passwd input {
width: 129px;
_width: 130px;
}
.box-mail_select span,.box-mail_btn button {
float: left;
overflow: hidden;
line-height: 17px;
height: 17px;
_height: 16px;
}
.box-mail_select,.box-mail_btn button {
background: #F1F1F4 url(images/main1.png) repeat-x 0 -28px;
}
.box-mail_select {
font-family: Tahoma;
margin-left: -10px;
height: 17px;
line-height: 17px;
margin-right: 5px;
cursor: pointer;
}
.box-mail_select span {
width: 88px;
padding-left: 3px;
background: url(images/main1.png) no-repeat right -108px;
}
.box-mail_select_click {
background: #DDD;
}
.box-mail_btn button {
width: 39px;
line-height: 18px;
line-height: 20px\9;
border: none;
color: #666;
}
.box-mail_layer {
z-index: 99;
font-size: 12px;
line-height: 19px;
vertical-align: baseline;
cursor: default;
border: 1px solid #817F82;
background: #fff;
width: 91px;
position: absolute;
overflow: hidden;
}
.box-mail_layer li {
padding-left: 3px;
}
.box-mail_layer .hover {
background: #E2EAFF;
cursor: pointer;
}
.box-mail_layer .no {
color: #999;
}
.box-mail_layer a {
zoom: 1;
display: block;
}
.box-mail_layer a:hover {
color: #1C1C1C;
text-decoration: none;
}
@media not screen and(1) {
.box-mail {
margin-top: 0;
}
}.box-fav {
margin: 0 auto;
margin: 0 auto;
width: 960px;
margin-top: -10px;
}
.b-edit {
margin-bottom: 0;
padding-bottom: 0;
}
.box-fav .site {
width: 100%;
}
.box-fav .s-edit {
height: 34px;
position: relative;
overflow: hidden;
}
.box-fav .s-list {
float: left;
width: 960px;
height: 34px;
}
.box-sites .haoMySite dt {
padding-left: 0;
}
.haoMySite {
font-size: 14px;
height: 34px;
line-height: 34px;
overflow: hidden;
}
.haoMySite dt {
float: left;
padding-right: 5px;
}
.haoMySite dd {
display: inline-block;
float: left;
position: relative;
}
.haoMySite a {
margin-right: 20px;
position: relative;
}
.tc-orange,.tc-orange a {
color: #f30;
}
.box-banner {
vertical-align: middle\0;
}
.box-tools_title a {
color: #498949;
}
.recommend{
color: #108410;
}
#ft, #bd, .masthead-con {
margin: 0 auto;
width: 960px;
clear: both;
}
#ft .ft_link {
text-align: center;
padding-top: 17px;
margin-left: -35px;
} | Public/css/index.css | body,p,b,dl,dd,table,td,th,input,button,textarea,xmp,pre,img,form,div,ul,ol,li,h1,h2,h3,h4,h5,h6 {
margin: 0;
padding: 0;
}
img,iframe,acronym {
border: 0;
}
ol,ul,li {
list-style: none;
}
img,input,label,button {
vertical-align: middle;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
address,caption,cite,code,dfn,em,strong,th,var,b,i {
font-style: normal;
font-weight: normal;
}
button,input,select,textarea {
font-size: 100%;
}
body {
_zoom: expression(function(el) {
document.execCommand('BackgroundImageCache',false,true);
el.style.zoom = "1";
}
(this));
}
button {
cursor: pointer;
}
: : -moz-focus-inner {
border: 0;
padding: 0;
margin: 0;
}
: focus {
outline: none;
}
body {
font: 14px/1.14 Arial;
background: #F5F5F8 url(images/body_bg.png) repeat-x 0 27px;
}
a {
color: #1C1C1C;
text-decoration: none;
}
a:hover {
color: #f30;
text-decoration: underline;
}
b {
font-size: 0;
display: block;
overflow: hidden;
-moz-user-select: none;
}
i {
display: inline-block;
_display: inline;
zoom: 1;
cursor: pointer;
position: relative;
width: 16px;
height: 16px;
background: url(images/main1.png) no-repeat;
}
.i-home {
background-position: 0 -147px;
}
.i-tool {
background-position: 0 -165px;
}
.i-tv {
background-position: 0 -195px;
}
.i-movie {
background-position: 0 -225px;
}
.i-caipiao {
background-position: 0 -284px;
}
.i-music {
background-position: 0 -254px;
}
.i-tuan {
background-position: 0 -315px;
}
.i-game {
background-position: 0 -345px;
}
.i-papers {
background-position: 0 -131px;
}
.tc-red,.tc-red a {
color: #F85050!important;
}
.tc-green,.tc-green a {
color: #1EAC1E!important;
}
.tc-blue,.tc-blue a {
color: #0053a5!important;
}
b.space {
display: inline-block;
_display: inline;
zoom: 1;
height: 13px;
width: 0;
position: relative;
top: 2px;
border-left: 1px solid #999;
}
.ft-l {
float: left;
}
.ft-r {
float: right;
}
.clearfix {
zoom: 1;
}
.clearfix:before,.clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.corner b {
width: 5px;
height: 5px;
}
.corner .l {
float: left;
_margin-right: -3px;
}
.corner .r {
float: right;
_margin-left: -3px;
}
.corner .m {
width: auto;
}
.span-rows {
letter-spacing: -.3em;
*letter-spacing: normal;
word-spacing: -.5em;
}
.span-rows span {
display: inline-block;
_display: inline;
zoom: 1;
vertical-align: top;
letter-spacing: normal;
}
.span-rows span a {
letter-spacing: normal;
word-spacing: normal;
vertical-align: baseline;
}
.sug-wrap {
position: absolute;
white-space: nowrap;
overflow: hidden;
top: 30px;
left: -1px;
border: 1px solid #817F82;
background: #fff;
width: 418px;
color: #1C1C1C;
z-index: 999;
}
.sug-shim {
position: absolute;
top: -1px;
left: -1px;
z-index: -1;
filter: alpha(opacity="0");
width: 420px;
height: 232px;
}
.sug-wrap ol {
font: bold 14px/21px verdana;
cursor: default;
}
.sug-wrap li {
padding: 1px 6px;
padding-left: 8px;
}
.sug-wrap .sug-sub {
color: #999;
font-size: 12px;
font-weight: normal;
padding-left: 5px;
}
.sug-wrap .sug-select {
background: #E2EAFF;
}
.sug-wrap .sug-query {
font-weight: normal;
}
.sug-wrap .sug-querynull {
font-weight: normal;
}
.l-header {
overflow: hidden;
}
.l-header_l,.l-header_m,.l-header_r,.box-weather,.box-date {
height: 80px;
}
.l-header_l {
_margin-right: -3px;
}
.l-header_r {
_margin-left: -3px;
}
.l-article_l {
float: left;
width: 220px;
margin-right: 10px;
_margin-right: 7px;
}
.l-article_r {
overflow: hidden;
zoom: 1;
}
.l-footer {
text-align: center;
font-size: 12px;
padding-top: 20px;
}
.box {
width: 960px;
margin: 0 auto;
}
.box-userbar {
height: 27px;
font-size: 12px;
min-width: 960px;
overflow: hidden;
color: #666;
background: #F7F7F7 url(images/main1.png) repeat-x 0 0;
border-bottom: 1px solid #E8E8E9;
}
.box-userbar .box {
line-height: 27px;
}
.box-userbar_link {
line-height: 28px;
margin-right: -9px;
}
.box-userbar_link span {
margin: 0 9px;
vertical-align: baseline;
}
.box-userbar_link a {
color: #1C1C1C;
}
.box-userbar_link a: hover {
color: #f30;
}
.box-userbar_link .i-home {
float: left;
margin-right: 3px;
_margin-right: 0;
top: 4px;
}
@-moz-document url-prefix() {
.box-userbar_link .i-home {
top: 5px;
}
}.box-banner {
border: 1px solid #E8E8E8;
margin-top: 9px;
display: inline-block;
}
.box-logo {
display: inline-block;
width: 210px;
height: 80px;
}
.box-logo img {
margin-top: 7px;
}
.box-weather {
float: left;
width: 289px;
height: 65px;
font-size: 12px;
font-family: Arial;
white-space: nowrap;
line-height: 21px;
padding: 15px 0 0 10px;
}
.box-weather_tip {
display: none;
}
#forecast_content {
position: relative;
}
.box-weather_city {
width: 65px;
float: left;
margin-top: 5px;
position: absolute;
left: 0;
top: 0;
}
.box-weather_city a: hover {
color: red;
}
.box-weather_city .change-city {
display: block;
height: 24px;
}
.box-weather_city .change-city a {
cursor: pointer;
}
.box-weather_city .change-city a: hover {
text-decoration: none;
}
.box-weather_city span {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.box-weather_city .change-city a .cityName,.box-weather_city .change-city a:link .cityName,.box-weather_city .change-city a:visited .cityName {
width: 24px;
width: auto!important;
max-width: 52px;
overflow: hidden;
font-weight: bold;
}
.box-weather_city .change-city a: hover .cityName {
color: red;
text-decoration: underline;
}
.box-weather_city .change-city a .city_edit {
display: inline-block;
height: 100%;
width: 15px;
background: url(images/edit.png) no-repeat right 5px;
}
.box-weather_city .change-city a:hover .city_edit {
background: url(images/edit.png) no-repeat right -32px;
}
.box-weather_info {
width: 224px;
float: right;
overflow: hidden;
position: relative;
}
.box-weather_info a {
cursor: pointer;
zoom: 1;
}
.box-weather_info a:hover p {
text-decoration: underline;
}
.box-weather_info_item {
width: 112px;
float: left;
position: relative;
}
.box-weather_info_item .weather_day {
font-weight: bold;
}
.box-weather_info_item_icon {
height: 48px;
width: 48px;
position: absolute;
top: 0;
left: 0;
}
.box-weather_info_item p {
padding-left: 55px;
height: 18px;
padding-top: 5px;
}
.box-weather_setCity {
display: none;
padding-top: 5px;
}
.box-weather_setCity_cancel {
cursor: pointer;
margin-left: 15px;
background: none;
border: none;
cursor: pointer;
padding: 1px;
}
.box-weather_setCity p {
text-align: center;
height: 30px;
}
.box-weather_setCity select {
margin-right: 3px;
}
.box-weather_setCity_btn {
vertical-align: middle;
line-height: 1.2;
width: 50px;
height: 24px;
}
.box-weather_setCity_prov {
width: 79px;
}
.box-weather_setCity_city,.box-weather_setCity_county {
width: 96px;
}
.box-date {
width: 142px;
text-align: center;
white-space: nowrap;
font-size: 12px;
font-family: Arial;
line-height: 23px;
}
.box-date_ymd {
margin-top: 3px;
}
.box-date a:hover {
border: none;
text-decoration: none;
color: #1C1C1C;
}
.box-date a:hover * {
text-decoration: underline;
color: #1C1C1C;
}
.box-date ul {
cursor: pointer;
display: inline-block;
_display: inline;
zoom: 1;
}
.box-date_ymd span {
font-size: 14px;
}
.box-search {
border: 1px solid #CBE6BD;
margin-bottom: 10px;
_overflow: hidden;
background: #F5F5F5 url(../images/images/search2.png) repeat-x 0 -29px;
padding-top: 6px;
width: 958px;
height: 67px;
}
.box-search_l {
float: left;
overflow: hidden;
position: relative;
width: 220px;
height: 58px;
margin-right: 9px;
}
.box-search_l img {
position: absolute;
right: 0;
bottom: 0;
}
.box-search_c {
float: left;
}
.box-search_tabs a {
float: left;
text-align: center;
line-height: 25px;
width: 49px;
height: 28px;
margin-right: -1px;
}
.box-search_tabs a:hover {
text-decoration: none;
color: #1C1C1C;
}
.box-search_tabs a.cur {
background: url(../images/search2.png) no-repeat 0 0;
color: #fff!important;
font-weight: bold;
cursor: default;
}
.box-search_input {
float: left;
position: relative;
background: #fff;
z-index: 99;
cursor: text;
height: 30px;
border: 1px solid #ABABAB;
border-right-color: #D9D9D9;
border-bottom-color: #D9D9D9;
}
.box-search_input input {
border: none;
background: none;
width: 411px;
height: 18px;
margin-top: 6px;
*margin-top: 5px;
font: 16px arial;
padding-left: 7px;
}
.box-search_input b {
font-size: 0;
display: block;
position: absolute;
-moz-user-select: none;
}
.box-search_input .shadow-x {
border-left: 1px solid #CFCFCF;
border-right: 1px solid #EFEFEF;
height: 100%;
}
.box-search_input .shadow-y {
left: 1px;
border-top: 1px solid #CFCFCF;
border-bottom: 1px solid #EFEFEF;
width: 417px;
}
.box-search_btn {
_display: inline;
zoom: 1;
overflow: hidden;
float: left;
width: 96px;
margin-left: 5px;
background: #DBDBDB url(images/search2.png) repeat-x 0 -104px;
}
.box-search_btn .l,.box-search_btn .r {
margin-right: 0;
background: #DBDBDB url(images/search2.png) no-repeat -43px -172px;
width: 3px;
height: 33px;
}
.box-search_btn .r {
background-position: -39px -172px;
}
.box-search_btn .m {
border: none;
background: none;
float: left;
width: 90px;
height: 33px;
line-height: 33px;
}
.box-search_btn_click .l {
background-position: -35px -172px;
}
.box-search_btn_click .r {
background-position: -39px -172px;
}
.box-search_btn_click {
background-position: 0 -138px;
}
.box-search_more {
overflow: hidden;
_margin-left: -3px;
_display: inline;
zoom: 1;
width: 56px;
background: url(images/search2.png) no-repeat 43px -174px;
position: relative;
z-index: 99;
}
.box-search_more a {
text-align: left;
margin-left: 8px;
}
.box-search_more_wrap {
position: absolute;
z-index: 99;
width: 60px;
line-height: 23px;
text-align: center;
_overflow-y: hidden;
_padding-bottom: 2px;
}
.box-search_more_wrap .shadow {
background: #000;
opacity: .15;
filter: alpha(opacity=15);
position: absolute;
top: 2px;
left: 2px;
position: absolute;
width: 60px;
z-index: -1;
height: 60px;
display: block;
position: absolute;
z-index: 99;
width: 100%;
height: 100%;
_height: 3000px;
}
.box-search_more_wrap .content {
position: relative;
z-index: 100;
border: 1px solid #817F82;
background: #fff;
}
.box-search_more_wrap a {
zoom: 1;
display: block;
}
.box-search_more_wrap a:hover {
background: #E2EAFF;
color: #1C1C1C;
font-weight: bold;
text-decoration: none;
}
.box-search_r {
float: right;
position: relative;
overflow: hidden;
width: 207px;
height: 58px;
}
.box-search_notice {
font-size: 12px;
text-align: right;
margin-top: 6px;
padding-right: 5px;
}
.box-hotword {
display: inline;
vertical-align: bottom;
position: absolute;
bottom: 5px;
white-space: nowrap;
font: normal 12px/1.231 ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ!important;
margin-left: 15px;
}
.box-hotword span {
margin: 0 9px;
}
.box-hotword a {
color: #666;
}
.box-leftbar {
border: 1px solid #CBE6BD;
padding: 2px;
background: #ECF5E8;
height: auto;
overflow: hidden;
}
.box-leftbar_inner {
background: #F9FEF4;
overflow: hidden;
width: 214px;
}
.box-sidebar {
background: #F9FEF4;
padding: 12px 0 11px 9px;
margin: 0 5px;
width: 214px;
}
.box-sidebar_title {
display: block;
line-height: 30px;
}
.box-sidebar_title a {
font-weight: bold;
color: #498949;
}
.box-sidebar_content {
line-height: 28px;
}
.box-sidebar_content span {
width: 24.9%;
}
.box-sidebar_last {
height: 216px;
}
.box-starbar {
background: #F9FEF4;
padding: 5px 5px 13px;
white-space: nowrap;
height: 205px;
}
.box-starbar li {
height: 30px;
*margin-bottom: -3px;
line-height: 1.2;
padding: 0 10px;
position: relative;
}
.box-starbar li em a {
position: absolute;
top: 9px;
*top: 10px;
}
.box-starbar li.hover {
background: url(images/hot.png) no-repeat 0 4px;
}
.box-starbar i {
float: left;
left: -1px;
margin-right: 5px;
}
.box-hotspot {
width: auto;
padding-top: 7px;
}
.box-hotspot li a {
font-family: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ;
}
.box-hotspot .box-sidebar_title {
color: #498949;
font-size: 14px;
}
.box-hotspot li {
height: 22px;
line-height: 24px;
font-size: 12px;
overflow: hidden;
}
.box-hotspot .em {
color: red;
}
.box-hotspot .hot-video {
padding-right: 20px;
background: url(images/hot.png) no-repeat right -38px;
}
.box-hotspot .hot-title {
color: #666;
}
.box-starbar acronym {
position: absolute;
right: 8px;
top: 9px;
/*top: 11px;*/
height: 14px;
line-height: 14px;
}
.box-starbar acronym a {
font-size: 12px;
color: #666;
}
.box-starbar acronym a:hover {
color: #f30;
}
.box-hot {
border: 2px solid #97c853;
overflow: hidden;
/*height: 208px;*/
background: #FEFEFB;
}
.box-hot_content {
width: 100%;
margin-left: 15px;
margin-top: 6px;
line-height: 31px;
}
.box-hot_content span {
text-align: center;
width: 115px;
overflow: hidden;
height: 30px;
}
.box-hot_content span em {
color: #999;
margin: 3px;
}
.box-adbar {
overflow: hidden;
height: 25px;
line-height: 25px;
font-size: 12px;
text-align: center;
padding-left: 5px;
}
.box-adbar span {
margin: 0 10px;
}
.box-adbar a {
color: #3b5998;
}
.box-adbar a: hover {
color: #f30;
text-decoration: underline;
}
.box-sort {
position: relative;
margin-bottom: 0;
border: 1px solid #97c853;
background: #ECF5E8;
padding: 2px;
overflow: hidden;
z-index: 10;
}
.box-sort_title {
position: absolute;
left: 3px;
z-index: 10;
}
.box-sort_title a {
color: #108410;
}
.box-sort_title a:hover {
color: #f30;
}
.box-sort_content .box-sort_more {
position: absolute;
right: -3px;
line-height: 29px;
z-index: 10;
display: block;
}
.box-sort_more a {
color: #666;
font-size: 12px;
font-family: \5B8B\4F53;
}
.box-sort_content {
overflow: hidden;
white-space: nowrap;
padding: 5px 0;
line-height: 32px;
background: #fff;
text-align: center;
border-bottom: 5px solid #E5EFDB;
background: #FBFEF7;
}
.box-sort_last {
border: 0;
}
.box-sort_content span {
margin: 0 11px;
}
.box-sort_content span em {
color: #999;
margin: 3px;
}
.box-tools {
margin-top: 10px;
border: 1px solid #CBE6BD;
padding: 2px;
background: #ECF5E8;
overflow: hidden;
/*height: 82px;*/
position: relative;
}
.box-tools_content {
white-space: nowrap;
line-height: 26px;
font-size: 12px;
padding-top: 2px;
padding-bottom: 2px;
background: #F9FEF4;
}
.box-tools_content li {
overflow: hidden;
position: relative;
zoom: 1;
}
.box-tools_content span {
margin-right: 18px;
}
span.box-tools_title {
float: left;
overflow: hidden;
margin-left: 15px;
margin-right: 3px;
_margin-right: -3px;
width: 60px;
}
.box-tools_content a {
color: #1C1C1C;
}
.box-tools_content a: hover {
color: #f30;
text-decoration: underline;
}
.box-tools_title a {
color: #205001;
font-weight: bold;
}
.box-tools_content .box-tools_more {
position: absolute;
top: 0;
right: 6px;
margin: 0;
}
.box-tools_more a {
color: #666;
font-family: \5B8B\4F53;
}
.box-about span {
padding: 0 20px;
}
.box-about b {
top: 0;
}
span.box-about_first {
border: none;
}
.box-copyright {
margin-top: 10px;
_margin-top: 12px;
margin-bottom: 10px;
line-height: 16px;
}
.box-copyright span {
margin: 0 14px;
}
.box-copyright .i-papers {
left: 3px;
top: -1px;
vertical-align: top;
_vertical-align: baseline;
}
.box-copyright a,.box-copyright a:hover,.box-about a,.box-about a: hover {
color: #1C1C1C;
}
.box-mail {
font-size: 12px;
color: #666;
width: 190px;
}
.box-mail ul {
margin-top: 15px;
}
.box-mail li {
margin-top: 10px;
}
.box-mail_input,.box-mail_select,.box-mail_btn {
display: inline-block;
_display: inline;
zoom: 1;
vertical-align: middle;
border: 1px solid #A1BCD1;
}
.box-mail_input {
background: #fff;
border-color: #A1BCD1;
border-bottom-color: #A1BCD1;
border-right-color: #A1BCD1;
margin-right: 2px;
height: 17px;
overflow: hidden;
}
.box-mail_input input {
background: none;
border: 1px solid #E9E9E9;
padding-left: -5px;
border-bottom: none;
border-right: none;
width: 88px;
height: 16px;
line-height: 17px;
font-family: arial;
vertical-align: top;
*margin-top: -1px;
padding-left: 1px;
padding-left: 2px\9;
}
.box-mail_input_passwd,.box-mail_input_passwd input {
width: 129px;
_width: 130px;
}
.box-mail_select span,.box-mail_btn button {
float: left;
overflow: hidden;
line-height: 17px;
height: 17px;
_height: 16px;
}
.box-mail_select,.box-mail_btn button {
background: #F1F1F4 url(images/main1.png) repeat-x 0 -28px;
}
.box-mail_select {
font-family: Tahoma;
margin-left: -10px;
height: 17px;
line-height: 17px;
margin-right: 5px;
cursor: pointer;
}
.box-mail_select span {
width: 88px;
padding-left: 3px;
background: url(images/main1.png) no-repeat right -108px;
}
.box-mail_select_click {
background: #DDD;
}
.box-mail_btn button {
width: 39px;
line-height: 18px;
line-height: 20px\9;
border: none;
color: #666;
}
.box-mail_layer {
z-index: 99;
font-size: 12px;
line-height: 19px;
vertical-align: baseline;
cursor: default;
border: 1px solid #817F82;
background: #fff;
width: 91px;
position: absolute;
overflow: hidden;
}
.box-mail_layer li {
padding-left: 3px;
}
.box-mail_layer .hover {
background: #E2EAFF;
cursor: pointer;
}
.box-mail_layer .no {
color: #999;
}
.box-mail_layer a {
zoom: 1;
display: block;
}
.box-mail_layer a:hover {
color: #1C1C1C;
text-decoration: none;
}
@media not screen and(1) {
.box-mail {
margin-top: 0;
}
}.box-fav {
margin: 0 auto;
margin: 0 auto;
width: 960px;
margin-top: -10px;
}
.b-edit {
margin-bottom: 0;
padding-bottom: 0;
}
.box-fav .site {
width: 100%;
}
.box-fav .s-edit {
height: 34px;
position: relative;
overflow: hidden;
}
.box-fav .s-list {
float: left;
width: 960px;
height: 34px;
}
.box-sites .haoMySite dt {
padding-left: 0;
}
.haoMySite {
font-size: 14px;
height: 34px;
line-height: 34px;
overflow: hidden;
}
.haoMySite dt {
float: left;
padding-right: 5px;
}
.haoMySite dd {
display: inline-block;
float: left;
position: relative;
}
.haoMySite a {
margin-right: 20px;
position: relative;
}
.tc-orange,.tc-orange a {
color: #f30;
}
.box-banner {
vertical-align: middle\0;
}
.box-tools_title a {
color: #498949;
}
.recommend{
color: #108410;
}
#ft, #bd, .masthead-con {
margin: 0 auto;
width: 960px;
clear: both;
}
#ft .ft_link {
text-align: center;
padding-top: 17px;
margin-left: -35px;
} | 0.396886 | 0.122996 |
@charset 'UTF-8';
@font-face {
font-family: 'Elsie';
src: url(fonts/ElsieSwashCaps-Regular.otf);
}
@import url('https://fonts.googleapis.com/css2?family=Inspiration&display=swap');
:root {
--rosa1: #CA32DB;
--rosa2: #9532DB;
--cor_complementar: #EBCC22;
--cor1: #2E19DB;
--cor2: #18D2F0;
--font_padrao: Arial, Helvetica, sans-serif;
--fonte_tema: 'Elsie';
--fonte_destaque: 'Inspiration', cursive;
--marg_baixo: 0.5em
}
* {
font-family: var(--font_padrao);
text-align: justify;
margin: 0;
padding: 0;
}
h1 {
font-family: var(--fonte_tema);
}
h2 {
font-family: var(--fonte_destaque);
}
p {
font-family: var(--font_padrao);
text-align: justify;
text-indent: 1em;
line-height: 1.5em;
}
a {
color: #fff;
text-decoration: none;
padding: 1em;
transition: 0.3s;
}
nav a{
font-family: var(--fonte_destaque);
}
a:hover {
opacity: 0.7;
}
.logo {
font-family: var(--fonte_tema);
font-size: 24px;
text-transform: uppercase;
letter-spacing: 4px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
background: var(--rosa2);
height: 8vh;
position: relative;
}
.nav-list {
list-style: none;
display: flex;
}
.nav-list li {
letter-spacing: 3px;
margin-left: 32px;
}
.mobile-menu {
display: none;
cursor: pointer;
position: absolute;
right: 10%;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
@media (max-width: 999px) {
body {
overflow-x: hidden;
}
.nav-list {
position: absolute;
top: 8vh;
right: 0;
width: 50vw;
height: 92vh;
background: var(--rosa2);
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(100%);
transition: transform 0.3s ease-in;
z-index: 6000;
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
}
}
.nav-list.active {
transform: translateX(0);
}
@keyframes navLinkFade {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
body {
background-color:
var(--rosa1);
}
main {
background-color: white;
min-width: 300px;
max-width: 900px;
padding-bottom: 0px;
margin: auto;
}
main h1 {
font-size: xx-large;
margin-bottom: var(--marg_baixo);
}
main p {
font-size: medium;
margin-bottom: var(--marg_baixo);
line-height: 2em;
}
div.imag {
width: 300px;
height: 300px;
border: 1px solid black;
margin: auto;
background-repeat: no-repeat;
}
div#mae {
width: 280px;
background-image: url(imagens/mae_completo.jpg);
}
article {
border-radius: 10px;
position: relative;
}
article#recepcao {
background-color: var(--cor2);
}
article#artigo {
background-color: var(--cor1);
}
article#artigo img {
padding-bottom: 1em;
}
article {
border-radius: 10px;
position: relative;
}
article#recepcao {
background-color: var(--cor2);
}
article#artigo {
background-color: var(--cor1);
}
article#artigo img {
padding-bottom: 1em;
}
article img {
width: 50%;
margin-left: 25%;
margin-right: 25%;
}
main div.box_video {
position: relative;
/* cor de fundo */
background-color: var(--rosa2);
/* 'รยกrea do vรยญdeo' */
margin: 0px -100vw;
padding: 2em;
padding-bottom: 50%;
}
main iframe#vd_canal1 {
position: absolute;
/* tmanho do vรยญdeo no box */
top: 5%;
left: 50%;
width: 7%;
height: 90%;
transform: translateX(-50%);
}
footer {
background-color: var(--cor1);
color: white;
text-align: center;
padding: 1em 0px;
} | style.css | @charset 'UTF-8';
@font-face {
font-family: 'Elsie';
src: url(fonts/ElsieSwashCaps-Regular.otf);
}
@import url('https://fonts.googleapis.com/css2?family=Inspiration&display=swap');
:root {
--rosa1: #CA32DB;
--rosa2: #9532DB;
--cor_complementar: #EBCC22;
--cor1: #2E19DB;
--cor2: #18D2F0;
--font_padrao: Arial, Helvetica, sans-serif;
--fonte_tema: 'Elsie';
--fonte_destaque: 'Inspiration', cursive;
--marg_baixo: 0.5em
}
* {
font-family: var(--font_padrao);
text-align: justify;
margin: 0;
padding: 0;
}
h1 {
font-family: var(--fonte_tema);
}
h2 {
font-family: var(--fonte_destaque);
}
p {
font-family: var(--font_padrao);
text-align: justify;
text-indent: 1em;
line-height: 1.5em;
}
a {
color: #fff;
text-decoration: none;
padding: 1em;
transition: 0.3s;
}
nav a{
font-family: var(--fonte_destaque);
}
a:hover {
opacity: 0.7;
}
.logo {
font-family: var(--fonte_tema);
font-size: 24px;
text-transform: uppercase;
letter-spacing: 4px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
background: var(--rosa2);
height: 8vh;
position: relative;
}
.nav-list {
list-style: none;
display: flex;
}
.nav-list li {
letter-spacing: 3px;
margin-left: 32px;
}
.mobile-menu {
display: none;
cursor: pointer;
position: absolute;
right: 10%;
}
.mobile-menu div {
width: 32px;
height: 2px;
background: #fff;
margin: 8px;
transition: 0.3s;
}
@media (max-width: 999px) {
body {
overflow-x: hidden;
}
.nav-list {
position: absolute;
top: 8vh;
right: 0;
width: 50vw;
height: 92vh;
background: var(--rosa2);
flex-direction: column;
align-items: center;
justify-content: space-around;
transform: translateX(100%);
transition: transform 0.3s ease-in;
z-index: 6000;
}
.nav-list li {
margin-left: 0;
opacity: 0;
}
.mobile-menu {
display: block;
}
}
.nav-list.active {
transform: translateX(0);
}
@keyframes navLinkFade {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.mobile-menu.active .line1 {
transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
opacity: 0;
}
.mobile-menu.active .line3 {
transform: rotate(45deg) translate(-5px, -7px);
}
body {
background-color:
var(--rosa1);
}
main {
background-color: white;
min-width: 300px;
max-width: 900px;
padding-bottom: 0px;
margin: auto;
}
main h1 {
font-size: xx-large;
margin-bottom: var(--marg_baixo);
}
main p {
font-size: medium;
margin-bottom: var(--marg_baixo);
line-height: 2em;
}
div.imag {
width: 300px;
height: 300px;
border: 1px solid black;
margin: auto;
background-repeat: no-repeat;
}
div#mae {
width: 280px;
background-image: url(imagens/mae_completo.jpg);
}
article {
border-radius: 10px;
position: relative;
}
article#recepcao {
background-color: var(--cor2);
}
article#artigo {
background-color: var(--cor1);
}
article#artigo img {
padding-bottom: 1em;
}
article {
border-radius: 10px;
position: relative;
}
article#recepcao {
background-color: var(--cor2);
}
article#artigo {
background-color: var(--cor1);
}
article#artigo img {
padding-bottom: 1em;
}
article img {
width: 50%;
margin-left: 25%;
margin-right: 25%;
}
main div.box_video {
position: relative;
/* cor de fundo */
background-color: var(--rosa2);
/* 'รยกrea do vรยญdeo' */
margin: 0px -100vw;
padding: 2em;
padding-bottom: 50%;
}
main iframe#vd_canal1 {
position: absolute;
/* tmanho do vรยญdeo no box */
top: 5%;
left: 50%;
width: 7%;
height: 90%;
transform: translateX(-50%);
}
footer {
background-color: var(--cor1);
color: white;
text-align: center;
padding: 1em 0px;
} | 0.453504 | 0.09187 |
body {
font-family: 'Roboto', sans-serif;
}
.list-admin-top > .header,
.create-top > .header {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 3em;
color: #000;
margin-bottom: 20px;
float: left;
}
.list-admin-top > .button-create,
.create-top > .button-delete {
float: right;
}
.list-admin-header > div {
font-weight: bold;
}
.sidebar {
z-index: 9999;
}
.right {
right: 0 !important;
left: 0 !important;
}
.navbar-main {
z-index: 1;
background-color: #333;
}
.list-top-header {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 3em;
color: #000;
margin-bottom: 20px;
float: left;
}
.select-order-by {
float: left;
margin-left: 40px;
}
.list-holder {
width: 100%;
box-sizing: border-box;
padding: 0 15px;
}
.article-body {
height: 310px;
background-size: cover;
box-sizing: border-box;
padding-top: 10px;
margin-bottom: 30px;
background-color: #ccc;
position: relative;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
overflow: hidden;
width: 100%;
}
.list-admin-contents {
margin-bottom: 10px;
line-height: 34px;
}
.list-title-content {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
color: #fff;
font-size: 2em;
}
.list-date-content {
color: #fff;
font-weight: bold;
position: absolute;
bottom: 10px;
}
.list-description-content {
color: #fff;
}
.list-admin-title,
.list-admin-description {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.navbar-brand {
box-sizing: border-box;
padding: 0 0 0 10px;
width: 70px;
}
.logo,
.logo-tmz {
width: 50px;
height: 100%;
}
.navbar {
border-radius: 0;
}
.navbar-inverse .navbar-nav>li>a {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
text-transform: uppercase;
color: #fff;
}
.edit-article-image-preview {
height: 310px;
background-size: cover;
}
@media only screen and (max-width: 767px) {
.navbar-collapse {
background-color: #c90202;
position: fixed;
top: 0;
transition: all 0.8s ease-out;
height: 100%;
width: 100%;
left: 767px;
}
} | styles/main.css | body {
font-family: 'Roboto', sans-serif;
}
.list-admin-top > .header,
.create-top > .header {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 3em;
color: #000;
margin-bottom: 20px;
float: left;
}
.list-admin-top > .button-create,
.create-top > .button-delete {
float: right;
}
.list-admin-header > div {
font-weight: bold;
}
.sidebar {
z-index: 9999;
}
.right {
right: 0 !important;
left: 0 !important;
}
.navbar-main {
z-index: 1;
background-color: #333;
}
.list-top-header {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 3em;
color: #000;
margin-bottom: 20px;
float: left;
}
.select-order-by {
float: left;
margin-left: 40px;
}
.list-holder {
width: 100%;
box-sizing: border-box;
padding: 0 15px;
}
.article-body {
height: 310px;
background-size: cover;
box-sizing: border-box;
padding-top: 10px;
margin-bottom: 30px;
background-color: #ccc;
position: relative;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
overflow: hidden;
width: 100%;
}
.list-admin-contents {
margin-bottom: 10px;
line-height: 34px;
}
.list-title-content {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
font-weight: bold;
color: #fff;
font-size: 2em;
}
.list-date-content {
color: #fff;
font-weight: bold;
position: absolute;
bottom: 10px;
}
.list-description-content {
color: #fff;
}
.list-admin-title,
.list-admin-description {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.navbar-brand {
box-sizing: border-box;
padding: 0 0 0 10px;
width: 70px;
}
.logo,
.logo-tmz {
width: 50px;
height: 100%;
}
.navbar {
border-radius: 0;
}
.navbar-inverse .navbar-nav>li>a {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
text-transform: uppercase;
color: #fff;
}
.edit-article-image-preview {
height: 310px;
background-size: cover;
}
@media only screen and (max-width: 767px) {
.navbar-collapse {
background-color: #c90202;
position: fixed;
top: 0;
transition: all 0.8s ease-out;
height: 100%;
width: 100%;
left: 767px;
}
} | 0.52975 | 0.092319 |
html {
height: 100%;
}
body {
background-color: #06305A;
margin: 0;
padding: 0;
}
.header {
width: 100%;
position: fixed;
height: 60px;
background: #55ABED;
top: 0px;
z-index: 1;
}
#banner_logo {
width: 60px;
height: 60px;
margin-left: 230px;
}
#banner_title {
font-size: 20px;
color: white;
position: absolute;
top: 20px;
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
}
#mainTop {
padding-top: 60px;
z-index: 0;
}
.profile {
float: right;
display: inline-block;
height: 60px;
font-size: 16px;
margin-right: 260px;
}
#avatar {
border-radius: 50%;
float: left;
margin-top: 15px;
width: 35px;
height: 35px;
}
#name {
text-decoration: none;
color: #fff;
margin-left: 10px;
margin-top: 20px;
float:left;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#singout {
text-decoration: none;
color: #fff;
margin-left: 10px;
margin-top: 20px;
float:left;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#mainTop {
padding-top: 100px;
width: 100%;
}
#addroom{
position: absolute;
top: -15px;
right: -15px;
}
#addroomlogo {
display: block;
color: #ffffff;
width: 30px;
height: 30px;
font-size: 30px;
font-weight: bolder;
background-color: #55ABED;
border-radius: 50%;
text-align: center;
margin-left: 5px;
box-shadow: 0px 0px 4px #567;
line-height: 30px;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#addroomlogo:hover {
display: block;
color: green;
width: 30px;
height: 30px;
font-size: 30px;
cursor: pointer;
font-weight: bolder;
background-color: #ffffff;
border-radius: 50%;
text-align: center;
margin-left: 5px;
line-height: 30px;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#square {
position: absolute;
left: -450px;
width: 880px;
margin-left: 50%;
background-color: #eee;
box-shadow: 0px 0px 4px #567;
}
.roomlist {
margin: 0;
padding: 0;
}
ul {
min-height: 221px;
}
ul li {
position: relative;
border-radius: 10px;
list-style: none;
display: block;
width: 180px;
margin: 20px;
margin-bottom: 30px;
box-shadow: 0px 0px 10px #22262B;;
float: left;
height: 200px;
background-image: url("../image/logo/room.png");
}
ul li a {
display: block;
text-decoration: none;
height: 100%;
widows: 100;
}
ul li a span {
display: inline-block;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
width: 180px;
text-align: center;
color: #22262B;
font-size: 16px;
margin-top: 205px;
}
.del {
display: block;
position: absolute;
width: 20px;
height: 20px;
color: white;;
font-size: 20px;
font-weight: bolder;
border-radius: 50%;
cursor:pointer ;
right: 5px;
top: 3px;
}
.del:hover {
background-color: white;
color: red;
}
#noroom {
display: inline-block;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
width: 200px;
text-align: center;
color: #22262B;
font-size: 16px;
margin-top: 100px;
margin-left: 200px;
margin-bottom: 100px;
} | web-server/public/css/square.css | html {
height: 100%;
}
body {
background-color: #06305A;
margin: 0;
padding: 0;
}
.header {
width: 100%;
position: fixed;
height: 60px;
background: #55ABED;
top: 0px;
z-index: 1;
}
#banner_logo {
width: 60px;
height: 60px;
margin-left: 230px;
}
#banner_title {
font-size: 20px;
color: white;
position: absolute;
top: 20px;
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
}
#mainTop {
padding-top: 60px;
z-index: 0;
}
.profile {
float: right;
display: inline-block;
height: 60px;
font-size: 16px;
margin-right: 260px;
}
#avatar {
border-radius: 50%;
float: left;
margin-top: 15px;
width: 35px;
height: 35px;
}
#name {
text-decoration: none;
color: #fff;
margin-left: 10px;
margin-top: 20px;
float:left;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#singout {
text-decoration: none;
color: #fff;
margin-left: 10px;
margin-top: 20px;
float:left;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#mainTop {
padding-top: 100px;
width: 100%;
}
#addroom{
position: absolute;
top: -15px;
right: -15px;
}
#addroomlogo {
display: block;
color: #ffffff;
width: 30px;
height: 30px;
font-size: 30px;
font-weight: bolder;
background-color: #55ABED;
border-radius: 50%;
text-align: center;
margin-left: 5px;
box-shadow: 0px 0px 4px #567;
line-height: 30px;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#addroomlogo:hover {
display: block;
color: green;
width: 30px;
height: 30px;
font-size: 30px;
cursor: pointer;
font-weight: bolder;
background-color: #ffffff;
border-radius: 50%;
text-align: center;
margin-left: 5px;
line-height: 30px;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
}
#square {
position: absolute;
left: -450px;
width: 880px;
margin-left: 50%;
background-color: #eee;
box-shadow: 0px 0px 4px #567;
}
.roomlist {
margin: 0;
padding: 0;
}
ul {
min-height: 221px;
}
ul li {
position: relative;
border-radius: 10px;
list-style: none;
display: block;
width: 180px;
margin: 20px;
margin-bottom: 30px;
box-shadow: 0px 0px 10px #22262B;;
float: left;
height: 200px;
background-image: url("../image/logo/room.png");
}
ul li a {
display: block;
text-decoration: none;
height: 100%;
widows: 100;
}
ul li a span {
display: inline-block;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
width: 180px;
text-align: center;
color: #22262B;
font-size: 16px;
margin-top: 205px;
}
.del {
display: block;
position: absolute;
width: 20px;
height: 20px;
color: white;;
font-size: 20px;
font-weight: bolder;
border-radius: 50%;
cursor:pointer ;
right: 5px;
top: 3px;
}
.del:hover {
background-color: white;
color: red;
}
#noroom {
display: inline-block;
font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
width: 200px;
text-align: center;
color: #22262B;
font-size: 16px;
margin-top: 100px;
margin-left: 200px;
margin-bottom: 100px;
} | 0.387806 | 0.063424 |
*{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body{
padding: 0;
margin: 0;
background:#d3e4e970;
}
.loading{
background:teal;
width:100%;
height:100vh;
position:fixed;
z-index: 100;
}
.page-load{
animation: animate 1.5s linear infinite;
clip: rect(0, 80px, 80px, 40px);
height: 80px;
width: 80px;
position: absolute;
left: calc(50% - 40px);
top: calc(50% - 40px);
}
@keyframes animate {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(220deg)
}
}
.page-load:after {
animation: animate2 1.5s ease-in-out infinite;
clip: rect(0, 80px, 80px, 40px);
content:'';
border-radius: 50%;
height: 80px;
width: 80px;
position: absolute;
}
@keyframes animate2 {
0% {
box-shadow: inset #fff 0 0 0 17px;
transform: rotate(-140deg);
}
50% {
box-shadow: inset #fff 0 0 0 2px;
}
100% {
box-shadow: inset #fff 0 0 0 17px;
transform: rotate(140deg);
}
}
.bx-loader{
display: none;
color:teal;
justify-content: center;
position: absolute;
z-index:-1;
transform: scale(5);
right: 50%;
bottom: 2rem;
}
.menu{
list-style:none;
justify-content: space-around;
width: 100%;
position:fixed;
height: 4rem;
margin-top: 0;
color:seashell;
background:#5f9ea0ad;
align-items: center;
float: right;
font-weight: bolder;
font-size:1.6rem;
display:flex;
display:-ms-flexbox;
border-radius:2px;
box-shadow: -20px 10px 20px #191b1b27;
z-index:2;
cursor: pointer;
transition: all .3s ease-in-out;
outline: none;
}
ul{
display:none;
}
.search{
width:50% ;
}
.search input{
width:100%;
height:2.3rem;
border-radius: 10px;
padding: 5px 5px;
border:0;
box-sizing: border-box;
align-items: center;
opacity:.8;
font-size:1rem;
outline:none;
}
/*@media only screen and (max-width:56rem){
ul{
display:flex;
}
.menu .search{
display:none;
}
}*/
.search i{
position: absolute;
right:25%;
bottom:auto;
transform: scale(1);
opacity:.5;
color:rgba(6, 14, 15, 0.781);
}
i{
transform:scale(2);
}
i:active{
transform:scale(0.9);
transition:all .3s ease;
}
.dots{
position:absolute;
left:0;
}
li{
padding:6pt;
}
li:hover{
background:#d3e4e980;
}
li:active{
transform: scale(.6);
transition:all .6s ease;
}
.head{
width: 100%;
height: 26vh;
background:teal;
box-shadow: 0 0 15px 5px rgba(0, 128, 128, 0.363);
border-radius: 0 0 50% 50%;
}
.head img{
width: 100%;
height:30vh;
display:flex;
position: relative;
border-radius: 0 0 50% 50%;
}
.criteria{
width: 100%;
height: 8rem;
display: flex;
float:left;
scroll-behavior: smooth;
overflow-y:hidden;
}
.criteria::-webkit-scrollbar{
visibility:hidden;
}
.category{
width: 100%;
height:4rem;
margin-top: 20px;
margin-right:6px;
/*border: 1px solid #ccc;*/
border-radius:15px;
box-shadow:1px 5px 6px #14202052;
display: flex;
align-content: center;
padding:2px;
cursor: pointer;
}
.category img{
max-width: 50px;
max-height: 50px;
}
h1{
color:#39474bca;
font-size: 1rem;
}
h2{
font-size: 2rem;
text-shadow:0 2px 2px #262c2c80;
color:rgba(5, 31, 36, 0.822);
}
.category:active{
transform: scale(.7);
transition:all .6s ease;
}
.container{
background:#d3e4e970;
margin:14px;
}
.img-con img{
max-width: 100%;
height: auto;
box-shadow: 1px 3px 6px #2c3335a6;
border-radius:10px;
transition:all .3s ease-in-out;
}
span{
color:rgb(84, 95, 109);
font-weight: bolder;
}
h3{
font-weight:bolder;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color:rgb(35, 46, 68);
}
i.bx-info-circle{
position:absolute;
opacity: .5;
left:0;
color:rgba(0, 128, 128, 0.507);
margin:20px;
}
.img-con .info-con{
background:#262c2c80;
color:rgb(198, 238, 250);
border-radius:4px;
position:absolute;
padding: 12px;
bottom: 10rem;
margin-left: 30px;
display: none;
}
.img-con.show{
display: block;
}
iframe{
width: 100%;
height:480px;
border-radius: 6px;
}
.img-con i.bx-play{
position: absolute;
left:40%;
justify-content: center;
color: teal;
transform: scale(3);
border:.6px solid teal;
border-radius: 50%;
margin-top: 50%;
opacity: .5;
}
@media only screen and (max-width:320px){
i.bx-play{
position: relative;
}
}
.img-con .bx-play:hover{
background:rgba(0, 128, 128, 0.24);
opacity:1;
animation:go .3s ease;
}
@keyframes go{
0% {
transform:scale(3);
}
50% {
transform:scale(5)
}
100% {
transform:scale(10)
}
} | styles.css | *{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body{
padding: 0;
margin: 0;
background:#d3e4e970;
}
.loading{
background:teal;
width:100%;
height:100vh;
position:fixed;
z-index: 100;
}
.page-load{
animation: animate 1.5s linear infinite;
clip: rect(0, 80px, 80px, 40px);
height: 80px;
width: 80px;
position: absolute;
left: calc(50% - 40px);
top: calc(50% - 40px);
}
@keyframes animate {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(220deg)
}
}
.page-load:after {
animation: animate2 1.5s ease-in-out infinite;
clip: rect(0, 80px, 80px, 40px);
content:'';
border-radius: 50%;
height: 80px;
width: 80px;
position: absolute;
}
@keyframes animate2 {
0% {
box-shadow: inset #fff 0 0 0 17px;
transform: rotate(-140deg);
}
50% {
box-shadow: inset #fff 0 0 0 2px;
}
100% {
box-shadow: inset #fff 0 0 0 17px;
transform: rotate(140deg);
}
}
.bx-loader{
display: none;
color:teal;
justify-content: center;
position: absolute;
z-index:-1;
transform: scale(5);
right: 50%;
bottom: 2rem;
}
.menu{
list-style:none;
justify-content: space-around;
width: 100%;
position:fixed;
height: 4rem;
margin-top: 0;
color:seashell;
background:#5f9ea0ad;
align-items: center;
float: right;
font-weight: bolder;
font-size:1.6rem;
display:flex;
display:-ms-flexbox;
border-radius:2px;
box-shadow: -20px 10px 20px #191b1b27;
z-index:2;
cursor: pointer;
transition: all .3s ease-in-out;
outline: none;
}
ul{
display:none;
}
.search{
width:50% ;
}
.search input{
width:100%;
height:2.3rem;
border-radius: 10px;
padding: 5px 5px;
border:0;
box-sizing: border-box;
align-items: center;
opacity:.8;
font-size:1rem;
outline:none;
}
/*@media only screen and (max-width:56rem){
ul{
display:flex;
}
.menu .search{
display:none;
}
}*/
.search i{
position: absolute;
right:25%;
bottom:auto;
transform: scale(1);
opacity:.5;
color:rgba(6, 14, 15, 0.781);
}
i{
transform:scale(2);
}
i:active{
transform:scale(0.9);
transition:all .3s ease;
}
.dots{
position:absolute;
left:0;
}
li{
padding:6pt;
}
li:hover{
background:#d3e4e980;
}
li:active{
transform: scale(.6);
transition:all .6s ease;
}
.head{
width: 100%;
height: 26vh;
background:teal;
box-shadow: 0 0 15px 5px rgba(0, 128, 128, 0.363);
border-radius: 0 0 50% 50%;
}
.head img{
width: 100%;
height:30vh;
display:flex;
position: relative;
border-radius: 0 0 50% 50%;
}
.criteria{
width: 100%;
height: 8rem;
display: flex;
float:left;
scroll-behavior: smooth;
overflow-y:hidden;
}
.criteria::-webkit-scrollbar{
visibility:hidden;
}
.category{
width: 100%;
height:4rem;
margin-top: 20px;
margin-right:6px;
/*border: 1px solid #ccc;*/
border-radius:15px;
box-shadow:1px 5px 6px #14202052;
display: flex;
align-content: center;
padding:2px;
cursor: pointer;
}
.category img{
max-width: 50px;
max-height: 50px;
}
h1{
color:#39474bca;
font-size: 1rem;
}
h2{
font-size: 2rem;
text-shadow:0 2px 2px #262c2c80;
color:rgba(5, 31, 36, 0.822);
}
.category:active{
transform: scale(.7);
transition:all .6s ease;
}
.container{
background:#d3e4e970;
margin:14px;
}
.img-con img{
max-width: 100%;
height: auto;
box-shadow: 1px 3px 6px #2c3335a6;
border-radius:10px;
transition:all .3s ease-in-out;
}
span{
color:rgb(84, 95, 109);
font-weight: bolder;
}
h3{
font-weight:bolder;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color:rgb(35, 46, 68);
}
i.bx-info-circle{
position:absolute;
opacity: .5;
left:0;
color:rgba(0, 128, 128, 0.507);
margin:20px;
}
.img-con .info-con{
background:#262c2c80;
color:rgb(198, 238, 250);
border-radius:4px;
position:absolute;
padding: 12px;
bottom: 10rem;
margin-left: 30px;
display: none;
}
.img-con.show{
display: block;
}
iframe{
width: 100%;
height:480px;
border-radius: 6px;
}
.img-con i.bx-play{
position: absolute;
left:40%;
justify-content: center;
color: teal;
transform: scale(3);
border:.6px solid teal;
border-radius: 50%;
margin-top: 50%;
opacity: .5;
}
@media only screen and (max-width:320px){
i.bx-play{
position: relative;
}
}
.img-con .bx-play:hover{
background:rgba(0, 128, 128, 0.24);
opacity:1;
animation:go .3s ease;
}
@keyframes go{
0% {
transform:scale(3);
}
50% {
transform:scale(5)
}
100% {
transform:scale(10)
}
} | 0.349977 | 0.064095 |
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* General Styles */
:root {
--peachy: #FFD6BA;
--whitish: #FAF9F9;
--pastelgreen: #BEE3DB;
--darkergreen: #89B0AE;
--greyish: #555B6E;
}
html {
font-size: 62.5%;
font-family: 'Noto Serif', serif;
}
body {
font-size: 1.3rem;
}
a {
color: var(--whitish);
text-decoration: none;
}
/* Header Styles - Desktop */
nav {
display: flex;
background-color: var(--greyish);
height: 10vh;
}
nav a {
color: var(--whitish);
}
nav a:hover {
color: var(--peachy);
transition-duration: 1s;
}
h1 {
width: 40%;
font-family: 'Courgette', cursive;
font-size: 3rem;
margin: auto 0;
padding-left: 2%;
color: var(--pastelgreen);
}
.links {
text-align: center;
margin: auto 0;
width: 100%;
color: var(--whitish);
}
.links a {
color: var(--whitish);
padding: 0 5%;
font-size: 2rem;
}
.login {
text-align: right;
color: var(--whitish);
font-size: 2rem;
margin: auto 0;
width: 40%;
padding-right: 2%;
}
.login a {
color: var(--pastelgreen);
padding:0 3%;
}
/* Main-Content Styles - Desktop */
.peachy {
background-color: var(--peachy);
padding:0.5;
height:2vh;
}
.main-content img {
-webkit-filter: brightness(0.7);
filter: brightness(0.7);
width: 100%;
}
.main-content p {
color: var(--whitish);
font-size: 6Rem;
font-family: 'Kumbh Sans', sans-serif;
margin: 0;
transform: translate(-50%,-50%);
text-align: center;
position: absolute;
top: 50%;
left: 50%;
line-height: 8rem;
width: 80%;
}
/* Intro-Content Styles - Desktop */
.intro-content {
background-color: var(--pastelgreen);
padding:0.5%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.intro-content p {
text-align: center;
padding:4%;
display: flex;
align-items: center;
justify-content: center;
color: var(--greyish);
font-size: 3rem;
font-family: 'Kumbh Sans', sans-serif;
font-style: italic;
}
h2 {
text-align: center;
padding: 3% 0;
font-size: 4rem;
color: var(--greyish);
}
/* Blog-Posts Styles - Desktop */
.blog-posts {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.blog-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
color: var(--greyish);
font-size: 1.5rem;
line-height: 2rem;
font-family: 'Kumbh Sans', sans-serif;
width: 90%;
}
.blog-container1-3 {
background-color: var(--peachy);
width: 90%;
border-radius: 50px;
display: flex;
align-items: center;
padding: 2% 3%;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-container2-4 {
background-color: var(--pastelgreen);
width: 90%;
border-radius: 50px;
display: flex;
align-items: center;
padding: 2% 3%;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-posts img {
width: 40%;
margin-left: auto;
margin-right: auto;
margin-top: 2%;
margin-bottom: 2%;
border-radius: 40px;
display: flex;
}
.blog-posts h3 {
font-size: 4rem;
color: var(--greyish);
font-family: 'Kumbh Sans', sans-serif;
line-height: 5rem;
padding-bottom: 3%;
margin-left: auto;
margin-right: auto;
}
.blog-posts p {
font-size: 2.5rem;
line-height: 3rem;
margin-left: auto;
margin-right: auto;
width: 90%;
margin-bottom: 3%;
}
.blog-posts ul {
font-family: 'Noto Serif', serif;
text-align: left;
margin-left: auto;
margin-right: auto;
padding: 2% 0;
font-size: 2rem;
line-height: 2.5rem;
}
button {
padding: 2% 5%;
background-color: var(--greyish);
color: var(--whitish);
border-radius: 10px;
font-size: 2rem;
margin-bottom: 3%;
}
.white-box {
padding: 2%;
}
/* Footer Styles - Desktop */
footer {
text-align: center;
background-color: var(--greyish);
height: 5vh;
padding: 2%;
color: var(--whitish);
}
footer a {
color: var(--whitish);
font-size: 2rem;
padding:0 1%;
transition-duration: 1s;
}
footer a:hover {
color: var(--peachy);
}
small {
display: block;
font-size: 1.2rem;
padding:1% 0;
color: var(--pastelgreen);
}
/* Desktop Styles - 2200px */
@media only screen and (max-width: 2200px){
/* Main-Content Styles - Desktop - 2200px */
.main-content p {
transform: translate(-50%,-50%);
}
}
/* Desktop Styles - 1900px */
@media only screen and (max-width: 1900px){
/* Main-Content Styles - Desktop - 1900px */
.main-content p {
transform: translate(-50%,-50%);
}
/* Blog-Posts Styles - Desktop - 1900px */
.blog-content ul {
padding: 0;
}
}
/* Desktop Styles - 1800px */
@media only screen and (max-width: 1800px){
/* Blog-Posts Styles - Desktop - 1800px */
.blog-container1-3 {
display: flex;
flex-direction: column;
padding: 2%;
}
.blog-container2-4 {
display: flex;
flex-direction: column;
padding: 2%;
}
.blog-posts img {
width:50%;
}
.blog-posts p{
width: 90%;
margin-bottom: 3%;
}
.blog-posts ul {
padding-bottom: 3%;
}
button {
font-size: 3rem;
}
}
/* Desktop Styles - 1700px */
@media only screen and (max-width: 1700px){
/* Main-Content Styles - Desktop - 1700px */
.main-content p {
transform: translate(-50%,-50%);
}
/* Blog-Posts Styles - Desktop - 1700px */
.blog-container1-3 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
}
.blog-container2-4 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
}
.blog-posts img {
width: 60%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
width: 90%;
}
.blog-posts p{
width: 90%;
}
.blog-posts ul {
padding-bottom: 4%;
}
button {
width: 30%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1500px */
@media only screen and (max-width: 1500px){
/* Blog-Posts Styles - Desktop - 1500px */
.blog-container1-3 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
width: 80%;
}
.blog-container2-4 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
width: 80%;
}
.blog-posts img {
width: 70%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
width: 90%;
}
.blog-posts p {
width: 100%;
}
.blog-posts ul {
padding-bottom: 5%;
}
button {
width: 30%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1400px */
@media only screen and (max-width: 1400px){
/* Main-Content Styles - Desktop - 1400px */
.main-content p {
transform: translate(-50%,-50%);
}
}
/* Desktop Styles - 1200px */
@media only screen and (max-width: 1200px){
/* Main-Content Styles - Desktop - 1200px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Blog-Posts Styles - Desktop - 1200px */
.blog-container1-3 {
border-radius: 50px;
width: 90%;
padding: 2% 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-container2-4 {
width: 90%;
border-radius: 50px;
padding: 2% 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-posts img {
width:70%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
margin-left: auto;
margin-right: auto;
}
.blog-posts p {
width: 90%;
}
.blog-posts ul {
padding-bottom: 5%;
margin-left: auto;
margin-right: auto;
}
button {
width: 30%;
margin-bottom: 3%;
margin-left: auto;
margin-right: auto;
}
}
/* Desktop Styles - 1100px */
@media only screen and (max-width: 1100px){
/* Main-Content Styles - Desktop - 1100px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Intro-Content Styles - Desktop - 1100px */
.intro-content p {
font-size: 2.5rem;
line-height: 2rem;
}
/* Blog-Posts Styles - Desktop - 1100px */
button {
width: 35%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1015px */
@media only screen and (max-width: 1015px){
/* Main-Content Styles - Desktop - 1100px */
.main-content p {
transform: translate(-50%,-75%);
width: 80%;
}
}
/* Desktop Styles - 1000px */
@media only screen and (max-width: 1000px) {
/* Header Styles - Desktop - 1000px */
.links a {
padding: 2%;
}
.login {
width: max-content;
}
h1 {
width: max-content;
}
/* Main-Content Styles - Desktop - 1000px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Intro-Content Styles - Desktop - 1000px */
.intro-content p {
font-size: 2rem;
}
/* Blog-Posts Styles - Desktop - 1000px */
.blog-posts h3 {
font-size: 3.5rem;
}
.blog-posts p{
font-size: 2rem;
}
.blog-posts ul {
font-size: 1.8rem;
}
button {
width: 26%;
padding: 1.5% 0;
font-size: 2.5rem;
}
}
/* Tablet Styles - 900px */
@media only screen and (max-width: 900px){
/* Main-Content Styles - Tablet - 900px */
.main-content p {
transform: translate(-50%,-100%);
}
/* Blog-Posts Styles - Tablet - 900px */
.blog-posts h2 {
font-size: 3.5rem;
}
.blog-posts h3 {
font-size: 3rem;
}
.blog-posts p {
font-size: 2rem;
}
}
/* Tablet Styles - 800px */
@media only screen and (max-width: 800px){
/* Header Styles - Tablet - 800px */
.links a {
font-size: 1.5rem;
}
h1 {
font-size: 2rem;
}
.login a {
font-size: 1.5rem;
}
/* Main-Content Styles - Tablet - 800px */
.main-content {
position: relative;
margin: 0;
padding: 0;
}
.main-content p {
font-size: 350%;
line-height: 6rem;
width: 80%;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Tablet - 800px */
.intro-content p {
line-height: 2.5rem;
}
/* Blog-Posts Styles - Tablet - 800px */
.blog-posts h2 {
font-size: 2.5rem;
}
.blog-posts img {
width: 60%;
border-radius: 40px;
}
.blog-container1-3 {
padding: 2% 0;
}
.blog-container2-4 {
padding: 2% 0;
}
.blog-content h3 {
font-size: 3rem;
}
button {
width: 30%;
}
}
/* Phone Styles - Portrait - 700px */
@media only screen and (max-width: 700px) and (orientation: portrait){
/* Blog-Posts Styles - Phone - Portrait - 700px */
.blog-container1-3 {
border-radius: 20px;
}
.blog-container2-4 {
border-radius: 20px;
}
.blog-posts img {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 5%;
border-radius: 20px;
}
.blog-posts h3 {
font-size: 3rem;
line-height: 4rem;
padding: 0;
}
.blog-posts p {
font-size: 2rem;
line-height: 3rem;
margin-top: 3%;
}
.blog-posts ul {
font-size: 1.8rem;
line-height: 3rem;
padding: 0;
width: 80%;
}
button {
border-radius: 10px;
font-size: 3rem;
margin: 5% 0;
padding: 3% 0;
width: 40%;
}
}
/* Phone Styles - Portrait - 500px */
@media only screen and (max-width: 500px) and (orientation: portrait){
/* Header Styles - Phone - Portrait - 500px */
html {
font-size: 30%;
}
nav {
padding: 3% 0;
display: flex;
flex-direction: column;
align-items: center;
height: 20vh;
}
h1 {
font-size: 5rem;
padding: 3% 0;
text-align: center;
width: 80%;
}
.links {
width: 90%;
}
.links a {
color: var(--whitish);
font-size: 2.8rem;
padding: 3%;
height: 100%;
width: 90%;
line-height: 6rem;
}
.login {
width: 90%;
text-align: center;
margin: 0;
padding: 3% 0;
}
.login a {
line-height: 4rem;
font-size: 3.5rem;
padding: 0 3%;
}
/* Main-Content Styles - Phone - Portrait - 500px */
.main-content p {
font-size: 7rem;
line-height: 9rem;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Phone - Portrait - 500px */
.intro-content {
padding: 3% 0;
}
.intro-content p {
font-size: 4rem;
line-height: 5rem;
width: 80%;
}
/* Blog-Posts Styles - Phone - Portrait - 500px */
.blog-posts h2 {
font-size: 4rem;
padding: 5% 0;
}
.blog-posts {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.blog-container1-3 {
background-color: var(--peachy);
width: 90%;
border-radius: 30px;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 2%;
padding-bottom: 5%;
}
.blog-container2-4 {
background-color: var(--pastelgreen);
width: 90%;
border-radius: 30px;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 2%;
padding-bottom: 5%;
}
.blog-posts img {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 5%;
border-radius: 20px;
}
.blog-posts h3 {
font-size: 4.5rem;
line-height: 6rem;
color: var(--greyish);
width: 90%;
}
.blog-posts p {
font-size: 3.3rem;
line-height: 4rem;
}
.blog-posts ul {
font-size: 2.5rem;
line-height: 4rem;
width: 80%;
}
button {
border-radius: 10px;
font-size: 3.5rem;
margin: 8% 0;
padding: 4% 6%;
width: 40%;
}
/* Footer Styles - Phone - Portrait - 500px */
footer {
height: 15vh;
padding: 3%;
}
footer a {
color: var(--whitish);
font-size: 2.8rem;
padding: 3%;
height: 100%;
max-width: 50%;
line-height: 5rem;
white-space: nowrap;
}
small {
font-size: 2.5rem;
padding-top: 5%;
color: var(--pastelgreen);
}
}
@media only screen and (max-width: 400px) and (orientation: portrait){
/* Main-Content Styles - Phone - Portrait - 400px */
.main-content p {
font-size: 5rem;
line-height: 6rem;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Phone - Portrait - 400px */
.intro-content p {
font-size: 3rem;
line-height: 4rem;
}
/* Blog-Posts Styles - Phone - Portrait - 500px */
.blog-container1-3 {
margin-bottom: 7%;
}
.blog-container2-4 {
margin-bottom: 7%;
}
.blog-posts h3 {
font-size: 4rem;
line-height: 5rem;
}
.blog-posts p {
font-size: 3rem;
line-height: 4rem;
}
.blog-posts ul {
font-size: 2.3rem;
line-height: 3rem;
}
button {
border-radius: 10px;
font-size: 3.5rem;
margin: 8% 0;
padding: 4% 6%;
width: 50%;
}
}
/* Phone Styles - Landscape - 800px */
@media (max-width: 800px) and (orientation: landscape){
/* Header Styles - Phone - Landscape - 800px */
nav {
height: 15vh;
}
h1 {
font-size: 2rem;
width: 20%;
}
.links a {
font-size: 1.3rem;
}
.login {
width: 20%;
}
.login a {
font-size: 1.5rem;
}
/* Footer Styles - Phone - Landscape - 800px */
footer {
height: 10vh;
}
footer a {
font-size: 1.5rem;
}
small {
font-size: .75rem;
}
} | blog.css | v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* General Styles */
:root {
--peachy: #FFD6BA;
--whitish: #FAF9F9;
--pastelgreen: #BEE3DB;
--darkergreen: #89B0AE;
--greyish: #555B6E;
}
html {
font-size: 62.5%;
font-family: 'Noto Serif', serif;
}
body {
font-size: 1.3rem;
}
a {
color: var(--whitish);
text-decoration: none;
}
/* Header Styles - Desktop */
nav {
display: flex;
background-color: var(--greyish);
height: 10vh;
}
nav a {
color: var(--whitish);
}
nav a:hover {
color: var(--peachy);
transition-duration: 1s;
}
h1 {
width: 40%;
font-family: 'Courgette', cursive;
font-size: 3rem;
margin: auto 0;
padding-left: 2%;
color: var(--pastelgreen);
}
.links {
text-align: center;
margin: auto 0;
width: 100%;
color: var(--whitish);
}
.links a {
color: var(--whitish);
padding: 0 5%;
font-size: 2rem;
}
.login {
text-align: right;
color: var(--whitish);
font-size: 2rem;
margin: auto 0;
width: 40%;
padding-right: 2%;
}
.login a {
color: var(--pastelgreen);
padding:0 3%;
}
/* Main-Content Styles - Desktop */
.peachy {
background-color: var(--peachy);
padding:0.5;
height:2vh;
}
.main-content img {
-webkit-filter: brightness(0.7);
filter: brightness(0.7);
width: 100%;
}
.main-content p {
color: var(--whitish);
font-size: 6Rem;
font-family: 'Kumbh Sans', sans-serif;
margin: 0;
transform: translate(-50%,-50%);
text-align: center;
position: absolute;
top: 50%;
left: 50%;
line-height: 8rem;
width: 80%;
}
/* Intro-Content Styles - Desktop */
.intro-content {
background-color: var(--pastelgreen);
padding:0.5%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.intro-content p {
text-align: center;
padding:4%;
display: flex;
align-items: center;
justify-content: center;
color: var(--greyish);
font-size: 3rem;
font-family: 'Kumbh Sans', sans-serif;
font-style: italic;
}
h2 {
text-align: center;
padding: 3% 0;
font-size: 4rem;
color: var(--greyish);
}
/* Blog-Posts Styles - Desktop */
.blog-posts {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.blog-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
color: var(--greyish);
font-size: 1.5rem;
line-height: 2rem;
font-family: 'Kumbh Sans', sans-serif;
width: 90%;
}
.blog-container1-3 {
background-color: var(--peachy);
width: 90%;
border-radius: 50px;
display: flex;
align-items: center;
padding: 2% 3%;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-container2-4 {
background-color: var(--pastelgreen);
width: 90%;
border-radius: 50px;
display: flex;
align-items: center;
padding: 2% 3%;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-posts img {
width: 40%;
margin-left: auto;
margin-right: auto;
margin-top: 2%;
margin-bottom: 2%;
border-radius: 40px;
display: flex;
}
.blog-posts h3 {
font-size: 4rem;
color: var(--greyish);
font-family: 'Kumbh Sans', sans-serif;
line-height: 5rem;
padding-bottom: 3%;
margin-left: auto;
margin-right: auto;
}
.blog-posts p {
font-size: 2.5rem;
line-height: 3rem;
margin-left: auto;
margin-right: auto;
width: 90%;
margin-bottom: 3%;
}
.blog-posts ul {
font-family: 'Noto Serif', serif;
text-align: left;
margin-left: auto;
margin-right: auto;
padding: 2% 0;
font-size: 2rem;
line-height: 2.5rem;
}
button {
padding: 2% 5%;
background-color: var(--greyish);
color: var(--whitish);
border-radius: 10px;
font-size: 2rem;
margin-bottom: 3%;
}
.white-box {
padding: 2%;
}
/* Footer Styles - Desktop */
footer {
text-align: center;
background-color: var(--greyish);
height: 5vh;
padding: 2%;
color: var(--whitish);
}
footer a {
color: var(--whitish);
font-size: 2rem;
padding:0 1%;
transition-duration: 1s;
}
footer a:hover {
color: var(--peachy);
}
small {
display: block;
font-size: 1.2rem;
padding:1% 0;
color: var(--pastelgreen);
}
/* Desktop Styles - 2200px */
@media only screen and (max-width: 2200px){
/* Main-Content Styles - Desktop - 2200px */
.main-content p {
transform: translate(-50%,-50%);
}
}
/* Desktop Styles - 1900px */
@media only screen and (max-width: 1900px){
/* Main-Content Styles - Desktop - 1900px */
.main-content p {
transform: translate(-50%,-50%);
}
/* Blog-Posts Styles - Desktop - 1900px */
.blog-content ul {
padding: 0;
}
}
/* Desktop Styles - 1800px */
@media only screen and (max-width: 1800px){
/* Blog-Posts Styles - Desktop - 1800px */
.blog-container1-3 {
display: flex;
flex-direction: column;
padding: 2%;
}
.blog-container2-4 {
display: flex;
flex-direction: column;
padding: 2%;
}
.blog-posts img {
width:50%;
}
.blog-posts p{
width: 90%;
margin-bottom: 3%;
}
.blog-posts ul {
padding-bottom: 3%;
}
button {
font-size: 3rem;
}
}
/* Desktop Styles - 1700px */
@media only screen and (max-width: 1700px){
/* Main-Content Styles - Desktop - 1700px */
.main-content p {
transform: translate(-50%,-50%);
}
/* Blog-Posts Styles - Desktop - 1700px */
.blog-container1-3 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
}
.blog-container2-4 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
}
.blog-posts img {
width: 60%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
width: 90%;
}
.blog-posts p{
width: 90%;
}
.blog-posts ul {
padding-bottom: 4%;
}
button {
width: 30%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1500px */
@media only screen and (max-width: 1500px){
/* Blog-Posts Styles - Desktop - 1500px */
.blog-container1-3 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
width: 80%;
}
.blog-container2-4 {
border-radius: 30px;
padding: 2% 3%;
margin-bottom: 3%;
width: 80%;
}
.blog-posts img {
width: 70%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
width: 90%;
}
.blog-posts p {
width: 100%;
}
.blog-posts ul {
padding-bottom: 5%;
}
button {
width: 30%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1400px */
@media only screen and (max-width: 1400px){
/* Main-Content Styles - Desktop - 1400px */
.main-content p {
transform: translate(-50%,-50%);
}
}
/* Desktop Styles - 1200px */
@media only screen and (max-width: 1200px){
/* Main-Content Styles - Desktop - 1200px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Blog-Posts Styles - Desktop - 1200px */
.blog-container1-3 {
border-radius: 50px;
width: 90%;
padding: 2% 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-container2-4 {
width: 90%;
border-radius: 50px;
padding: 2% 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 3%;
}
.blog-posts img {
width:70%;
margin-bottom: 3%;
border-radius: 30px;
}
.blog-posts h3 {
margin-left: auto;
margin-right: auto;
}
.blog-posts p {
width: 90%;
}
.blog-posts ul {
padding-bottom: 5%;
margin-left: auto;
margin-right: auto;
}
button {
width: 30%;
margin-bottom: 3%;
margin-left: auto;
margin-right: auto;
}
}
/* Desktop Styles - 1100px */
@media only screen and (max-width: 1100px){
/* Main-Content Styles - Desktop - 1100px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Intro-Content Styles - Desktop - 1100px */
.intro-content p {
font-size: 2.5rem;
line-height: 2rem;
}
/* Blog-Posts Styles - Desktop - 1100px */
button {
width: 35%;
margin-bottom: 3%;
}
}
/* Desktop Styles - 1015px */
@media only screen and (max-width: 1015px){
/* Main-Content Styles - Desktop - 1100px */
.main-content p {
transform: translate(-50%,-75%);
width: 80%;
}
}
/* Desktop Styles - 1000px */
@media only screen and (max-width: 1000px) {
/* Header Styles - Desktop - 1000px */
.links a {
padding: 2%;
}
.login {
width: max-content;
}
h1 {
width: max-content;
}
/* Main-Content Styles - Desktop - 1000px */
.main-content p {
transform: translate(-50%,-75%);
}
/* Intro-Content Styles - Desktop - 1000px */
.intro-content p {
font-size: 2rem;
}
/* Blog-Posts Styles - Desktop - 1000px */
.blog-posts h3 {
font-size: 3.5rem;
}
.blog-posts p{
font-size: 2rem;
}
.blog-posts ul {
font-size: 1.8rem;
}
button {
width: 26%;
padding: 1.5% 0;
font-size: 2.5rem;
}
}
/* Tablet Styles - 900px */
@media only screen and (max-width: 900px){
/* Main-Content Styles - Tablet - 900px */
.main-content p {
transform: translate(-50%,-100%);
}
/* Blog-Posts Styles - Tablet - 900px */
.blog-posts h2 {
font-size: 3.5rem;
}
.blog-posts h3 {
font-size: 3rem;
}
.blog-posts p {
font-size: 2rem;
}
}
/* Tablet Styles - 800px */
@media only screen and (max-width: 800px){
/* Header Styles - Tablet - 800px */
.links a {
font-size: 1.5rem;
}
h1 {
font-size: 2rem;
}
.login a {
font-size: 1.5rem;
}
/* Main-Content Styles - Tablet - 800px */
.main-content {
position: relative;
margin: 0;
padding: 0;
}
.main-content p {
font-size: 350%;
line-height: 6rem;
width: 80%;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Tablet - 800px */
.intro-content p {
line-height: 2.5rem;
}
/* Blog-Posts Styles - Tablet - 800px */
.blog-posts h2 {
font-size: 2.5rem;
}
.blog-posts img {
width: 60%;
border-radius: 40px;
}
.blog-container1-3 {
padding: 2% 0;
}
.blog-container2-4 {
padding: 2% 0;
}
.blog-content h3 {
font-size: 3rem;
}
button {
width: 30%;
}
}
/* Phone Styles - Portrait - 700px */
@media only screen and (max-width: 700px) and (orientation: portrait){
/* Blog-Posts Styles - Phone - Portrait - 700px */
.blog-container1-3 {
border-radius: 20px;
}
.blog-container2-4 {
border-radius: 20px;
}
.blog-posts img {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 5%;
border-radius: 20px;
}
.blog-posts h3 {
font-size: 3rem;
line-height: 4rem;
padding: 0;
}
.blog-posts p {
font-size: 2rem;
line-height: 3rem;
margin-top: 3%;
}
.blog-posts ul {
font-size: 1.8rem;
line-height: 3rem;
padding: 0;
width: 80%;
}
button {
border-radius: 10px;
font-size: 3rem;
margin: 5% 0;
padding: 3% 0;
width: 40%;
}
}
/* Phone Styles - Portrait - 500px */
@media only screen and (max-width: 500px) and (orientation: portrait){
/* Header Styles - Phone - Portrait - 500px */
html {
font-size: 30%;
}
nav {
padding: 3% 0;
display: flex;
flex-direction: column;
align-items: center;
height: 20vh;
}
h1 {
font-size: 5rem;
padding: 3% 0;
text-align: center;
width: 80%;
}
.links {
width: 90%;
}
.links a {
color: var(--whitish);
font-size: 2.8rem;
padding: 3%;
height: 100%;
width: 90%;
line-height: 6rem;
}
.login {
width: 90%;
text-align: center;
margin: 0;
padding: 3% 0;
}
.login a {
line-height: 4rem;
font-size: 3.5rem;
padding: 0 3%;
}
/* Main-Content Styles - Phone - Portrait - 500px */
.main-content p {
font-size: 7rem;
line-height: 9rem;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Phone - Portrait - 500px */
.intro-content {
padding: 3% 0;
}
.intro-content p {
font-size: 4rem;
line-height: 5rem;
width: 80%;
}
/* Blog-Posts Styles - Phone - Portrait - 500px */
.blog-posts h2 {
font-size: 4rem;
padding: 5% 0;
}
.blog-posts {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.blog-container1-3 {
background-color: var(--peachy);
width: 90%;
border-radius: 30px;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 2%;
padding-bottom: 5%;
}
.blog-container2-4 {
background-color: var(--pastelgreen);
width: 90%;
border-radius: 30px;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 2%;
padding-bottom: 5%;
}
.blog-posts img {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 5%;
border-radius: 20px;
}
.blog-posts h3 {
font-size: 4.5rem;
line-height: 6rem;
color: var(--greyish);
width: 90%;
}
.blog-posts p {
font-size: 3.3rem;
line-height: 4rem;
}
.blog-posts ul {
font-size: 2.5rem;
line-height: 4rem;
width: 80%;
}
button {
border-radius: 10px;
font-size: 3.5rem;
margin: 8% 0;
padding: 4% 6%;
width: 40%;
}
/* Footer Styles - Phone - Portrait - 500px */
footer {
height: 15vh;
padding: 3%;
}
footer a {
color: var(--whitish);
font-size: 2.8rem;
padding: 3%;
height: 100%;
max-width: 50%;
line-height: 5rem;
white-space: nowrap;
}
small {
font-size: 2.5rem;
padding-top: 5%;
color: var(--pastelgreen);
}
}
@media only screen and (max-width: 400px) and (orientation: portrait){
/* Main-Content Styles - Phone - Portrait - 400px */
.main-content p {
font-size: 5rem;
line-height: 6rem;
transform: translate(-50%,-50%);
}
/* Intro-Content Styles - Phone - Portrait - 400px */
.intro-content p {
font-size: 3rem;
line-height: 4rem;
}
/* Blog-Posts Styles - Phone - Portrait - 500px */
.blog-container1-3 {
margin-bottom: 7%;
}
.blog-container2-4 {
margin-bottom: 7%;
}
.blog-posts h3 {
font-size: 4rem;
line-height: 5rem;
}
.blog-posts p {
font-size: 3rem;
line-height: 4rem;
}
.blog-posts ul {
font-size: 2.3rem;
line-height: 3rem;
}
button {
border-radius: 10px;
font-size: 3.5rem;
margin: 8% 0;
padding: 4% 6%;
width: 50%;
}
}
/* Phone Styles - Landscape - 800px */
@media (max-width: 800px) and (orientation: landscape){
/* Header Styles - Phone - Landscape - 800px */
nav {
height: 15vh;
}
h1 {
font-size: 2rem;
width: 20%;
}
.links a {
font-size: 1.3rem;
}
.login {
width: 20%;
}
.login a {
font-size: 1.5rem;
}
/* Footer Styles - Phone - Landscape - 800px */
footer {
height: 10vh;
}
footer a {
font-size: 1.5rem;
}
small {
font-size: .75rem;
}
} | 0.378115 | 0.109753 |
.Main-Page {
grid-template-columns: minmax(10px, 1fr);
row-gap: calc(7px * 7);
}
.Main-Page a:hover {
text-decoration: none;
}
.Main-Page .carousel {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.Main-Page .carousel .carousel-indicators {
z-index: 3;
}
.Main-Page .carousel .carousel-indicators > li {
background-color: #fffcf9;
}
.Main-Page .carousel .carousel-control-prev, .Main-Page .carousel .carousel-control-next {
margin-inline: 20px;
width: 10%;
}
.Main-Page .B-M {
background-repeat: no-repeat;
background-position: center right;
}
.Main-Page .B-M > div {
row-gap: calc(7px * 10);
}
.Main-Page .B-M > div p {
text-indent: calc(7px * 5);
line-height: 2;
}
.Main-Page .B-B {
grid-area: 4/1/5/2;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.Main-Page .B-B .Ov-C > .Ov {
height: 100%;
}
@media only screen and (min-width: 1400px) {
.Main-Page {
grid-template-rows: 800px 850px 650px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 800px auto;
-webkit-background-size: 800px auto;
-moz-background-size: 800px auto;
-o-background-size: 800px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: 375px 600px 375px;
grid-template-rows: repeat(2, 350px);
grid-gap: 10px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 1/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/2/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 2/2/3/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 1/3/3/4;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.Main-Page {
grid-template-rows: 800px 850px 610px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 800px auto;
-webkit-background-size: 800px auto;
-moz-background-size: 800px auto;
-o-background-size: 800px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: 300px 520px 300px;
grid-template-rows: repeat(2, 310px);
grid-gap: 10px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 1/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/2/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 2/2/3/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 1/3/3/4;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.Main-Page {
grid-template-rows: 800px 850px 1250px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 380px);
grid-template-rows: 300px 610px 300px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
.Main-Page {
grid-template-rows: 800px 850px 880px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 500px auto;
-webkit-background-size: 500px auto;
-moz-background-size: 500px auto;
-o-background-size: 500px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 290px);
grid-template-rows: 240px 400px 240px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
.Main-Page {
grid-template-rows: 800px 880px 920px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 300px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 200px);
grid-template-rows: 240px 400px 240px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 321px) and (max-width: 480px) {
.Main-Page {
grid-template-rows: 800px 850px 730px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 230px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 145px);
grid-template-rows: 200px 310px 200px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (max-width: 320px) {
.Main-Page {
grid-template-rows: 800px 850px 640px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 200px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 140px);
grid-template-rows: 170px 280px 170px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
/*# sourceMappingURL=Main.css.map */ | src/web/main-page/Main.css | .Main-Page {
grid-template-columns: minmax(10px, 1fr);
row-gap: calc(7px * 7);
}
.Main-Page a:hover {
text-decoration: none;
}
.Main-Page .carousel {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.Main-Page .carousel .carousel-indicators {
z-index: 3;
}
.Main-Page .carousel .carousel-indicators > li {
background-color: #fffcf9;
}
.Main-Page .carousel .carousel-control-prev, .Main-Page .carousel .carousel-control-next {
margin-inline: 20px;
width: 10%;
}
.Main-Page .B-M {
background-repeat: no-repeat;
background-position: center right;
}
.Main-Page .B-M > div {
row-gap: calc(7px * 10);
}
.Main-Page .B-M > div p {
text-indent: calc(7px * 5);
line-height: 2;
}
.Main-Page .B-B {
grid-area: 4/1/5/2;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.Main-Page .B-B .Ov-C > .Ov {
height: 100%;
}
@media only screen and (min-width: 1400px) {
.Main-Page {
grid-template-rows: 800px 850px 650px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 800px auto;
-webkit-background-size: 800px auto;
-moz-background-size: 800px auto;
-o-background-size: 800px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: 375px 600px 375px;
grid-template-rows: repeat(2, 350px);
grid-gap: 10px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 1/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/2/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 2/2/3/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 1/3/3/4;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.Main-Page {
grid-template-rows: 800px 850px 610px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 800px auto;
-webkit-background-size: 800px auto;
-moz-background-size: 800px auto;
-o-background-size: 800px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: 300px 520px 300px;
grid-template-rows: repeat(2, 310px);
grid-gap: 10px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 1/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/2/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 2/2/3/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 1/3/3/4;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.Main-Page {
grid-template-rows: 800px 850px 1250px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 380px);
grid-template-rows: 300px 610px 300px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
.Main-Page {
grid-template-rows: 800px 850px 880px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 10);
grid-area: 2/1/3/2;
background-size: 500px auto;
-webkit-background-size: 500px auto;
-moz-background-size: 500px auto;
-o-background-size: 500px auto;
}
.Main-Page .B-M > div {
width: 400px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 290px);
grid-template-rows: 240px 400px 240px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
.Main-Page {
grid-template-rows: 800px 880px 920px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 300px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 200px);
grid-template-rows: 240px 400px 240px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (min-width: 321px) and (max-width: 480px) {
.Main-Page {
grid-template-rows: 800px 850px 730px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 230px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 145px);
grid-template-rows: 200px 310px 200px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
@media only screen and (max-width: 320px) {
.Main-Page {
grid-template-rows: 800px 850px 640px calc(7px * 10);
}
.Main-Page .B-T {
grid-area: 1/1/2/2;
}
.Main-Page .B-M {
padding: calc(7px * 5);
grid-area: 2/1/3/2;
background-size: 660px auto;
-webkit-background-size: 660px auto;
-moz-background-size: 660px auto;
-o-background-size: 660px auto;
}
.Main-Page .B-M > div {
width: 200px;
align-self: flex-end;
-webkit-align-self: flex-end;
}
.Main-Page .B-B {
grid-area: 3/1/4/2;
}
.Main-Page .carousel {
height: 750px;
}
.Main-Page .GridWrapper {
grid-template-columns: repeat(2, 140px);
grid-template-rows: 170px 280px 170px;
grid-gap: 20px;
}
.Main-Page .GridWrapper > #catering {
grid-area: 2/1/3/2;
}
.Main-Page .GridWrapper > #join_team {
grid-area: 1/1/2/3;
}
.Main-Page .GridWrapper > #shop_all {
grid-area: 3/1/4/3;
}
.Main-Page .GridWrapper > #locations {
grid-area: 2/2/3/3;
}
}
/*# sourceMappingURL=Main.css.map */ | 0.158891 | 0.091951 |
:root {
--blue: #007bff;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--white: #fff;
--gray: #6c757d;
--gray-dark: #343a40;
--gray-light: rgba(0,0,0,.125);
--gray-lighter: #a3b1bd;
--primary: #007bff;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
--logo: #3d4246;
--breakpoint-xs: 0;
--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;
--duration: .3s;
--article-parts-margin-bottom: 3.55rem;
}
@custom-media --xs screen and (max-width: 575px);
@custom-media --sm screen and (max-width: 767px);
@custom-media --md screen and (max-width: 991px);
@custom-media --lg screen and (max-width: 1199px);
/*********************
Font
*********************/
@font-face {
font-family: 'timeburnerbold';
src: url(../font/timeburnerbold.ttf);
}
@font-face {
font-family: 'timeburnernormal';
src: url(../font/timeburnernormal.ttf);
}
/*********************
Common Parts
*********************/
html {
font-size: 14px;
@media (--xs) {
font-size: 13px;
}
}
a {
color: inherit;
&:hover {
color:inherit;
@media (--sm) {
text-decoration: none;
}
}
}
img {
max-width: 100%;
}
[class*=logo] {
transition-duration: var(--duration);
&:hover {
color: var(--logo);
letter-spacing: .25em;
text-decoration: none;
transition-duration: var(--duration);
& .logo-hover-red {
color: var(--red);
transition-duration: var(--duration);
}
}
}
[class*=ttl] {
-webkit-font-smoothing: antialiased;
}
.ico-gray {
color: var(--gray-dark);
}
.ico-gray-light {
color: var(--gray-light);
}
.ico-red {
color: var(--red);
}
.tag {
color: var(--gray-dark);
padding-left: 1.05rem;
position: relative;
transition-duration: var(--duration);
&::before {
bottom: 0;
color: var(--gray-light);
content: '#';
font-family: 'timeburnerbold';
left: 0;
margin: auto;
position: absolute;
transition-duration: var(--duration);
top: 0;
}
&:hover {
padding-left: 1.15rem;
transition-duration: var(--duration);
&::before {
color: var(--red);
transition-duration: var(--duration);
}
}
}
.table-responsive {
& td,th {
white-space: nowrap;
}
}
/**** .header ****/
.header {
height: 85px;
border-bottom: 1px solid var(--gray-light);
@media (--xs) {
height: 45px;
}
}
.header-logo {
color: var(--logo);
font-family: 'timeburnerbold';
font-size: 3rem;
letter-spacing: .1em;
text-decoration: none;
vertical-align: text-top;
@media (--xs) {
font-size: 2rem;
}
}
.header-searchform {
width: 230px;
}
.header-searchform-input {
border-color: var(--secondary);
font-size: .8rem;
&:focus {
background-color: var(--light);
}
}
.header-currency {
font-size: .9rem;
}
/**** .footer ****/
.footer-top {
background-color: var(--light);
border-top: 1px solid var(--gray-light);
padding: 30px 0;
@media (--sm) {
padding: 0;
}
}
.footer-xs-menu {
@media (--sm) {
border-bottom: 1px solid var(--gray-light);
border-right: 1px solid var(--gray-light);
color: var(--secondary);
font-size: 1.1rem;
padding: 15px;
}
}
.footer-bottom {
background-color: var(--gray-light);
padding: 10px 0
}
.footer-bottom-logo {
color: var(--logo);
display: inline-block;
font-family: 'timeburnernormal';
font-size: 1.5rem;
letter-spacing: .1em;
margin-right: 5px;
text-decoration: none;
}
.footer-bottom-copyright {
color: var(--secondary);
font-size: .7rem;
}
/*********************
Main Parts
*********************/
/**** .band ****/
.band {
box-shadow: 0px 4px 10px -4px rgba(0,0,0,.5);
@media (--md) {
margin-bottom: 15px;
}
}
.band-catch {
background-position: center;
background-size: cover;
display: block;
margin: auto;
height: 300px;
overflow: hidden;
position: relative;
transition-duration: var(--duration);
width: 100%;
&:hover {
transition-duration: var(--duration);
opacity: .8;
}
@media (--xs) {
height: 200px;
}
}
.band-catch-info {
background-color: rgba(0, 0, 0, 0.1);
bottom: 0;
color: var(--white);
margin: 0;
padding: 15px;
position: absolute;
width: 100%;
@media (--xs) {
padding: 5px 10px 2px 10px;
}
}
.band-catch-info-ttl {
font-size: 1.4rem;
font-weight: bold;
line-height: 1.75rem;
margin-bottom: 3px;
@media (--xs) {
font-size: 1.15rem;
line-height: 1.5rem;
margin-bottom: 5px;
}
}
.band-catch-info-meta {
font-size: .8rem;
margin-bottom: 0;
text-align: right;
}
.band-catch-info-author {
font-family: 'timeburnernormal';
}
/**** .main ****/
.main {
padding: 35px 40px 80px 0;
@media (--md) {
padding: 25px 12px 12px 12px;
}
@media (--xs) {
padding: 12px 12px 0 12px;
}
}
/**** .sidebar ****/
.sidebar {
padding: 35px 0;
@media (--md) {
padding: 15px;
}
@media (--xs) {
padding: 0 15px;
}
}
/**** .media-list ****/
.media-list {
margin-bottom: 30px;
}
.media-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 0;
padding-bottom: 12px;
}
.media-list-list {
margin-bottom: 3rem;
@media (--sm) {
margin-bottom: 0;
}
}
/**** .media ****/
.media {
border-bottom: 1px solid var(--gray-light);
box-sizing: border-box;
height: 160px;
overflow: hidden;
padding: 20px 0;
@media (--xs) {
height: 120px;
}
}
.media-anchor {
position: relative;
width: 100%;
&:hover {
background-color: var(--light);
text-decoration: none;
}
}
.media-catch {
margin-right: 20px;
height: 120px;
overflow: hidden;
width: 170px;
& img {
height: 100%;
object-fit: cover;
object-position: center;
}
@media (--xs) {
height: 80px;
width: 80px;
}
}
.media-body-ttl {
color: var(--gray-dark);
font-size: 1.5rem;
font-weight: bold;
line-height: 1.3;
@media (--xs) {
font-size: 1.2rem;
}
}
.media-body-sub {
bottom: 0;
position: absolute;
}
.media-body-description {
color: var(--gray-lighter);
font-size: .9rem;
letter-spacing: .03rem;
margin-bottom: 3px;
}
.media-body-meta {
color: var(--gray-lighter);
font-size: .8rem;
letter-spacing: .03rem;
margin: 0;
}
.media-body-meta-author {
font-family: 'timeburnernormal';
}
/**** .pagination ****/
.pagination {
font-family: 'timeburnernormal';
}
.page-item {
@media (--sm) {
color: var(--gray);
font-size: 1.25rem;
}
}
.page-link {
border: none;
color: var(--gray-light);
&:hover:not(.active) {
background-color: inherit;
color: var(--gray);
}
@media (--sm) {
color: var(--gray);
}
}
.active {
border-bottom: 1px solid var(--gray);
color: var(--gray);
cursor: default !important;
font-weight: bold;
&:hover {
background-color: inherit;
border-bottom: 1px solid var(--gray);
}
}
/**** .pankuzu ****/
.header-pankuzu {
border-bottom: 1px solid var(--gray-light);
color: var(--secondary);
font-size: .85rem;
padding: 10px;
}
.footer-pankuzu {
border-top: 1px solid var(--gray-light);
color: var(--secondary);
font-size: .8rem;
padding: 10px;
}
.pankuzu {
&:not(:last-child) {
&::after {
color: var(--gray-light);
content: '>';
display: inline-block;
padding: 0 12px;
}
}
}
/**** .main-ad ****/
.main-ad {
margin-bottom: 40px;
}
.ad-img {
display: flex;
justify-content: center;
margin-bottom: 15px;
overflow: hidden;
}
/*********************
Widdget Parts
*********************/
/**** .widget ****/
.widget {
margin-bottom: 30px;
}
.widget-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
.widget-list {
border-bottom: 1px solid var(--gray-light);
margin-bottom: 15px;
padding-bottom: 15px;
}
.widget-list-catch {
border-radius: 50px;
height: 50px;
margin-right: 10px;
overflow: hidden;
width: 50px;
}
.widget-list-catch-square {
height: 70px;
margin-right: 15px;
overflow: hidden;
width: 70px;
}
.widget-list-catch-ranking {
position: relative;
&::before {
color: var(--white);
font-family: 'timeburnerbold';
height: 25px;
left: 0;
padding: 4px 0;
position: absolute;
text-align: center;
top: 0;
width: 25px;
}
&[data-ranking="1"] {
&::before {
background-color: var(--blue);
content: '1';
}
}
&[data-ranking="2"] {
&::before {
background-color: var(--yellow);
content: '2';
}
}
&[data-ranking="3"] {
&::before {
background-color: var(--red);
content: '3';
}
}
}
.widget-list-img {
height: 100%;
object-fit: cover;
width: 100%;
}
.widget-list-txt {
color: var(--gray-dark);
margin: 0;
}
.widget-tag {
font-size: 1.1rem;
padding: 0 12px 20px 3px;
}
.widget-more {
color: var(--gray);
}
/**** .widget-footer ****/
.widget-footer {
font-size: .95rem;
}
.widget-footer-ttl {
font-size: 1.05rem;
font-weight: bold;
margin-bottom: 10px;
}
.widget-footer-tag {
font-size: .95rem;
padding: 0 10px 5px 0;
}
.widget-footer-area {
padding: 0 10px 5px 0;
}
.widget-footer-about {
margin-bottom: 5px;
}
/**** .widget-main ****/
.widget-main {
margin-bottom: 35px;
}
/*********************
Article Parts
*********************/
.table {
margin-bottom: 3.55rem;
}
.article {
& p {
letter-spacing: .05rem;
}
}
.article-pc-flex {
display: flex;
& img {
max-width: 98%;
}
@media (--xs) {
display: block;
& img {
max-width: 100%;
}
}
}
.article-ttl {
color: var(--gray-dark);
font-size: 2.2rem;
font-weight: bold;
letter-spacing: .2rem;
line-height: 2.8rem;
margin-bottom: 15px;
@media (--xs) {
font-size: 1.5rem;
line-height: 1.7rem;
}
}
.article-ttl-sub--min {
border-left: 4px solid #ccc;
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 25px;
padding: 0 0 5px 10px;
}
.article-author {
color: var(--secondary);
font-size: .95rem;
margin-bottom: 30px;
@media (--xs) {
font-size: .8rem;
margin-bottom: 15px;
}
}
.article-author-catch {
border-radius: 35px;
color: var(--secondary);
height: 35px;
overflow: hidden;
width: 35px;
@media (--xs) {
border-radius: 20px;
height: 20px;
width: 20px;
}
& img {
height: 100%;
object-fit: cover;
}
}
.article-ttl-sub {
border-bottom: 3px solid var(--pink);
font-size: 1.55rem;
font-weight: bold;
letter-spacing: .15rem;
padding-bottom: 15px;
margin-bottom: 2rem;
@media (--xs) {
font-size: 1.3rem;
padding-bottom: 7px;
}
}
.article-txt {
font-size: 1.2rem;
margin-bottom: var(--article-parts-margin-bottom);
}
.article-description {
background-color: var(--light);
color: var(--gray);
font-size: 1.2rem;
margin-bottom: var(--article-parts-margin-bottom);
padding: 20px;
@media (--xs) {
font-size: 1rem;
margin-bottom: 20px;
}
}
.article-img {
margin-bottom: var(--article-parts-margin-bottom);
@media (--xs) {
margin-bottom: 15px;
}
& img {
display: block;
margin-bottom: 5px;
}
}
.article-img-source {
color: var(--gray-light);
font-size: .8rem;
margin-bottom: 0;
}
.article-catch {
@media (--xs) {
margin-bottom: 0;
& img {
height: 250px;
object-fit: cover;
width: 100%;
}
}
}
.article-ad-btn {
margin-bottom: var(--article-parts-margin-bottom);
text-align: center;
@media (--xs) {
margin-bottom: 15px;
}
& .btn {
padding: 10px;
}
}
.article-spot {
background-color: var(--light);
border: 1px solid var(--gray-light);
box-sizing: border-box;
height: 150px;
margin-bottom: var(--article-parts-margin-bottom);
overflow: hidden;
position: relative;
@media (--xs) {
height: 100%;
}
&::after {
bottom: 15px;
content: '>';
color: var(--gray-light);
font-size: 1.8rem;
height: 2rem;
right: -3px;
position: absolute;
width: 2rem;
}
}
.article-spot-img {
flex-shrink: 0;
height: 150px;
width: 150px;
@media (--xs) {
height: 170px;
width: 100%;
}
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
}
.article-spot-info {
padding: 20px;
@media (--xs) {
padding: 10px 20px;
}
}
.article-spot-info-ttl {
color: var(--gray-dark);
font-size: 1.35rem;
font-weight: bold;
margin-bottom: 12px;
@media (--xs) {
font-size: 1.1rem;
margin-bottom: 7px;
}
}
.article-spot-info-address {
color: var(--secondary);
}
.article-movie {
margin-bottom: var(--article-parts-margin-bottom);
overflow: hidden;
padding-top:56.25%;
position:relative;
width:100%;
@media (--xs) {
margin-bottom: 30px;
}
& iframe {
height:100%;
right:0;
position:absolute;
top:0;
width:100%;
}
}
/*********************
Category
*********************/
.header-category {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-category-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
text-align: center;
}
}
.category-list {
box-sizing: border-box;
margin-bottom: 25px;
width: 23%;
@media (--xs) {
width: 48%;
}
}
.category-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
/*********************
Tags
*********************/
.header-tags {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-tags-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
text-align: center;
}
}
.tags-list {
box-sizing: border-box;
margin-bottom: 25px;
width: 23%;
@media (--xs) {
width: 33%;
}
}
.tags-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
/*********************
Feature
*********************/
.feature {
padding: 35px 0 80px 0;
@media (--xs) {
padding: 0 0 15px 0;
}
}
.header-feature {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-feature-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 0;
padding: 10px;
text-align: center;
}
}
.feature-list-box {
border-bottom: 1px solid var(--gray);
box-sizing: border-box;
display: block;
margin-bottom: 40px;
width: 32%;
&:hover {
opacity: .8;
text-decoration: none;
}
@media (--md) {
width: 48%;
}
@media (--sm) {
border-bottom: 0;
margin-bottom: 0;
width: 100%;
}
}
.feature-list-box-img {
height: 230px;
margin-bottom: 20px;
overflow: hidden;
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
@media (--xs) {
height: 200px;
margin-bottom: 15px;
}
}
.feature-list-box-info {
padding-bottom: 25px;
@media (--xs) {
padding: 0 15px 20px 15px;
}
}
.feature-list-box-ttl {
font-size: 1.5rem;
font-weight: bold;
text-align: center;
@media (--xs) {
font-size: 1.35rem;
text-align: left;
}
}
.feature-list-box-txt {
font-size: .8rem;
margin-bottom: 0;
}
/*********************
Pages
*********************/
.header-pages {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 20px;
}
}
.header-pages-catch {
border-radius: 120px;
height: 120px;
margin-right: 2rem;
overflow: hidden;
width: 120px;
@media (--xs) {
border-radius: 0;
height: 220px;
width: 100%;
}
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
}
.header-pages-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
font-size: 1.6rem;
}
}
.header-pages-info-txt {
color: var(--secondary);
} | wordpress/wp-content/themes/baht/frontend/css/style.css | :root {
--blue: #007bff;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--white: #fff;
--gray: #6c757d;
--gray-dark: #343a40;
--gray-light: rgba(0,0,0,.125);
--gray-lighter: #a3b1bd;
--primary: #007bff;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
--logo: #3d4246;
--breakpoint-xs: 0;
--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;
--duration: .3s;
--article-parts-margin-bottom: 3.55rem;
}
@custom-media --xs screen and (max-width: 575px);
@custom-media --sm screen and (max-width: 767px);
@custom-media --md screen and (max-width: 991px);
@custom-media --lg screen and (max-width: 1199px);
/*********************
Font
*********************/
@font-face {
font-family: 'timeburnerbold';
src: url(../font/timeburnerbold.ttf);
}
@font-face {
font-family: 'timeburnernormal';
src: url(../font/timeburnernormal.ttf);
}
/*********************
Common Parts
*********************/
html {
font-size: 14px;
@media (--xs) {
font-size: 13px;
}
}
a {
color: inherit;
&:hover {
color:inherit;
@media (--sm) {
text-decoration: none;
}
}
}
img {
max-width: 100%;
}
[class*=logo] {
transition-duration: var(--duration);
&:hover {
color: var(--logo);
letter-spacing: .25em;
text-decoration: none;
transition-duration: var(--duration);
& .logo-hover-red {
color: var(--red);
transition-duration: var(--duration);
}
}
}
[class*=ttl] {
-webkit-font-smoothing: antialiased;
}
.ico-gray {
color: var(--gray-dark);
}
.ico-gray-light {
color: var(--gray-light);
}
.ico-red {
color: var(--red);
}
.tag {
color: var(--gray-dark);
padding-left: 1.05rem;
position: relative;
transition-duration: var(--duration);
&::before {
bottom: 0;
color: var(--gray-light);
content: '#';
font-family: 'timeburnerbold';
left: 0;
margin: auto;
position: absolute;
transition-duration: var(--duration);
top: 0;
}
&:hover {
padding-left: 1.15rem;
transition-duration: var(--duration);
&::before {
color: var(--red);
transition-duration: var(--duration);
}
}
}
.table-responsive {
& td,th {
white-space: nowrap;
}
}
/**** .header ****/
.header {
height: 85px;
border-bottom: 1px solid var(--gray-light);
@media (--xs) {
height: 45px;
}
}
.header-logo {
color: var(--logo);
font-family: 'timeburnerbold';
font-size: 3rem;
letter-spacing: .1em;
text-decoration: none;
vertical-align: text-top;
@media (--xs) {
font-size: 2rem;
}
}
.header-searchform {
width: 230px;
}
.header-searchform-input {
border-color: var(--secondary);
font-size: .8rem;
&:focus {
background-color: var(--light);
}
}
.header-currency {
font-size: .9rem;
}
/**** .footer ****/
.footer-top {
background-color: var(--light);
border-top: 1px solid var(--gray-light);
padding: 30px 0;
@media (--sm) {
padding: 0;
}
}
.footer-xs-menu {
@media (--sm) {
border-bottom: 1px solid var(--gray-light);
border-right: 1px solid var(--gray-light);
color: var(--secondary);
font-size: 1.1rem;
padding: 15px;
}
}
.footer-bottom {
background-color: var(--gray-light);
padding: 10px 0
}
.footer-bottom-logo {
color: var(--logo);
display: inline-block;
font-family: 'timeburnernormal';
font-size: 1.5rem;
letter-spacing: .1em;
margin-right: 5px;
text-decoration: none;
}
.footer-bottom-copyright {
color: var(--secondary);
font-size: .7rem;
}
/*********************
Main Parts
*********************/
/**** .band ****/
.band {
box-shadow: 0px 4px 10px -4px rgba(0,0,0,.5);
@media (--md) {
margin-bottom: 15px;
}
}
.band-catch {
background-position: center;
background-size: cover;
display: block;
margin: auto;
height: 300px;
overflow: hidden;
position: relative;
transition-duration: var(--duration);
width: 100%;
&:hover {
transition-duration: var(--duration);
opacity: .8;
}
@media (--xs) {
height: 200px;
}
}
.band-catch-info {
background-color: rgba(0, 0, 0, 0.1);
bottom: 0;
color: var(--white);
margin: 0;
padding: 15px;
position: absolute;
width: 100%;
@media (--xs) {
padding: 5px 10px 2px 10px;
}
}
.band-catch-info-ttl {
font-size: 1.4rem;
font-weight: bold;
line-height: 1.75rem;
margin-bottom: 3px;
@media (--xs) {
font-size: 1.15rem;
line-height: 1.5rem;
margin-bottom: 5px;
}
}
.band-catch-info-meta {
font-size: .8rem;
margin-bottom: 0;
text-align: right;
}
.band-catch-info-author {
font-family: 'timeburnernormal';
}
/**** .main ****/
.main {
padding: 35px 40px 80px 0;
@media (--md) {
padding: 25px 12px 12px 12px;
}
@media (--xs) {
padding: 12px 12px 0 12px;
}
}
/**** .sidebar ****/
.sidebar {
padding: 35px 0;
@media (--md) {
padding: 15px;
}
@media (--xs) {
padding: 0 15px;
}
}
/**** .media-list ****/
.media-list {
margin-bottom: 30px;
}
.media-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 0;
padding-bottom: 12px;
}
.media-list-list {
margin-bottom: 3rem;
@media (--sm) {
margin-bottom: 0;
}
}
/**** .media ****/
.media {
border-bottom: 1px solid var(--gray-light);
box-sizing: border-box;
height: 160px;
overflow: hidden;
padding: 20px 0;
@media (--xs) {
height: 120px;
}
}
.media-anchor {
position: relative;
width: 100%;
&:hover {
background-color: var(--light);
text-decoration: none;
}
}
.media-catch {
margin-right: 20px;
height: 120px;
overflow: hidden;
width: 170px;
& img {
height: 100%;
object-fit: cover;
object-position: center;
}
@media (--xs) {
height: 80px;
width: 80px;
}
}
.media-body-ttl {
color: var(--gray-dark);
font-size: 1.5rem;
font-weight: bold;
line-height: 1.3;
@media (--xs) {
font-size: 1.2rem;
}
}
.media-body-sub {
bottom: 0;
position: absolute;
}
.media-body-description {
color: var(--gray-lighter);
font-size: .9rem;
letter-spacing: .03rem;
margin-bottom: 3px;
}
.media-body-meta {
color: var(--gray-lighter);
font-size: .8rem;
letter-spacing: .03rem;
margin: 0;
}
.media-body-meta-author {
font-family: 'timeburnernormal';
}
/**** .pagination ****/
.pagination {
font-family: 'timeburnernormal';
}
.page-item {
@media (--sm) {
color: var(--gray);
font-size: 1.25rem;
}
}
.page-link {
border: none;
color: var(--gray-light);
&:hover:not(.active) {
background-color: inherit;
color: var(--gray);
}
@media (--sm) {
color: var(--gray);
}
}
.active {
border-bottom: 1px solid var(--gray);
color: var(--gray);
cursor: default !important;
font-weight: bold;
&:hover {
background-color: inherit;
border-bottom: 1px solid var(--gray);
}
}
/**** .pankuzu ****/
.header-pankuzu {
border-bottom: 1px solid var(--gray-light);
color: var(--secondary);
font-size: .85rem;
padding: 10px;
}
.footer-pankuzu {
border-top: 1px solid var(--gray-light);
color: var(--secondary);
font-size: .8rem;
padding: 10px;
}
.pankuzu {
&:not(:last-child) {
&::after {
color: var(--gray-light);
content: '>';
display: inline-block;
padding: 0 12px;
}
}
}
/**** .main-ad ****/
.main-ad {
margin-bottom: 40px;
}
.ad-img {
display: flex;
justify-content: center;
margin-bottom: 15px;
overflow: hidden;
}
/*********************
Widdget Parts
*********************/
/**** .widget ****/
.widget {
margin-bottom: 30px;
}
.widget-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
.widget-list {
border-bottom: 1px solid var(--gray-light);
margin-bottom: 15px;
padding-bottom: 15px;
}
.widget-list-catch {
border-radius: 50px;
height: 50px;
margin-right: 10px;
overflow: hidden;
width: 50px;
}
.widget-list-catch-square {
height: 70px;
margin-right: 15px;
overflow: hidden;
width: 70px;
}
.widget-list-catch-ranking {
position: relative;
&::before {
color: var(--white);
font-family: 'timeburnerbold';
height: 25px;
left: 0;
padding: 4px 0;
position: absolute;
text-align: center;
top: 0;
width: 25px;
}
&[data-ranking="1"] {
&::before {
background-color: var(--blue);
content: '1';
}
}
&[data-ranking="2"] {
&::before {
background-color: var(--yellow);
content: '2';
}
}
&[data-ranking="3"] {
&::before {
background-color: var(--red);
content: '3';
}
}
}
.widget-list-img {
height: 100%;
object-fit: cover;
width: 100%;
}
.widget-list-txt {
color: var(--gray-dark);
margin: 0;
}
.widget-tag {
font-size: 1.1rem;
padding: 0 12px 20px 3px;
}
.widget-more {
color: var(--gray);
}
/**** .widget-footer ****/
.widget-footer {
font-size: .95rem;
}
.widget-footer-ttl {
font-size: 1.05rem;
font-weight: bold;
margin-bottom: 10px;
}
.widget-footer-tag {
font-size: .95rem;
padding: 0 10px 5px 0;
}
.widget-footer-area {
padding: 0 10px 5px 0;
}
.widget-footer-about {
margin-bottom: 5px;
}
/**** .widget-main ****/
.widget-main {
margin-bottom: 35px;
}
/*********************
Article Parts
*********************/
.table {
margin-bottom: 3.55rem;
}
.article {
& p {
letter-spacing: .05rem;
}
}
.article-pc-flex {
display: flex;
& img {
max-width: 98%;
}
@media (--xs) {
display: block;
& img {
max-width: 100%;
}
}
}
.article-ttl {
color: var(--gray-dark);
font-size: 2.2rem;
font-weight: bold;
letter-spacing: .2rem;
line-height: 2.8rem;
margin-bottom: 15px;
@media (--xs) {
font-size: 1.5rem;
line-height: 1.7rem;
}
}
.article-ttl-sub--min {
border-left: 4px solid #ccc;
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 25px;
padding: 0 0 5px 10px;
}
.article-author {
color: var(--secondary);
font-size: .95rem;
margin-bottom: 30px;
@media (--xs) {
font-size: .8rem;
margin-bottom: 15px;
}
}
.article-author-catch {
border-radius: 35px;
color: var(--secondary);
height: 35px;
overflow: hidden;
width: 35px;
@media (--xs) {
border-radius: 20px;
height: 20px;
width: 20px;
}
& img {
height: 100%;
object-fit: cover;
}
}
.article-ttl-sub {
border-bottom: 3px solid var(--pink);
font-size: 1.55rem;
font-weight: bold;
letter-spacing: .15rem;
padding-bottom: 15px;
margin-bottom: 2rem;
@media (--xs) {
font-size: 1.3rem;
padding-bottom: 7px;
}
}
.article-txt {
font-size: 1.2rem;
margin-bottom: var(--article-parts-margin-bottom);
}
.article-description {
background-color: var(--light);
color: var(--gray);
font-size: 1.2rem;
margin-bottom: var(--article-parts-margin-bottom);
padding: 20px;
@media (--xs) {
font-size: 1rem;
margin-bottom: 20px;
}
}
.article-img {
margin-bottom: var(--article-parts-margin-bottom);
@media (--xs) {
margin-bottom: 15px;
}
& img {
display: block;
margin-bottom: 5px;
}
}
.article-img-source {
color: var(--gray-light);
font-size: .8rem;
margin-bottom: 0;
}
.article-catch {
@media (--xs) {
margin-bottom: 0;
& img {
height: 250px;
object-fit: cover;
width: 100%;
}
}
}
.article-ad-btn {
margin-bottom: var(--article-parts-margin-bottom);
text-align: center;
@media (--xs) {
margin-bottom: 15px;
}
& .btn {
padding: 10px;
}
}
.article-spot {
background-color: var(--light);
border: 1px solid var(--gray-light);
box-sizing: border-box;
height: 150px;
margin-bottom: var(--article-parts-margin-bottom);
overflow: hidden;
position: relative;
@media (--xs) {
height: 100%;
}
&::after {
bottom: 15px;
content: '>';
color: var(--gray-light);
font-size: 1.8rem;
height: 2rem;
right: -3px;
position: absolute;
width: 2rem;
}
}
.article-spot-img {
flex-shrink: 0;
height: 150px;
width: 150px;
@media (--xs) {
height: 170px;
width: 100%;
}
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
}
.article-spot-info {
padding: 20px;
@media (--xs) {
padding: 10px 20px;
}
}
.article-spot-info-ttl {
color: var(--gray-dark);
font-size: 1.35rem;
font-weight: bold;
margin-bottom: 12px;
@media (--xs) {
font-size: 1.1rem;
margin-bottom: 7px;
}
}
.article-spot-info-address {
color: var(--secondary);
}
.article-movie {
margin-bottom: var(--article-parts-margin-bottom);
overflow: hidden;
padding-top:56.25%;
position:relative;
width:100%;
@media (--xs) {
margin-bottom: 30px;
}
& iframe {
height:100%;
right:0;
position:absolute;
top:0;
width:100%;
}
}
/*********************
Category
*********************/
.header-category {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-category-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
text-align: center;
}
}
.category-list {
box-sizing: border-box;
margin-bottom: 25px;
width: 23%;
@media (--xs) {
width: 48%;
}
}
.category-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
/*********************
Tags
*********************/
.header-tags {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-tags-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
text-align: center;
}
}
.tags-list {
box-sizing: border-box;
margin-bottom: 25px;
width: 23%;
@media (--xs) {
width: 33%;
}
}
.tags-list-ttl {
border-bottom: 1px solid var(--gray-dark);
color: var(--gray-dark);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 12px;
}
/*********************
Feature
*********************/
.feature {
padding: 35px 0 80px 0;
@media (--xs) {
padding: 0 0 15px 0;
}
}
.header-feature {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 0;
}
}
.header-feature-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
background-color: var(--gray);
color: var(--white);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 0;
padding: 10px;
text-align: center;
}
}
.feature-list-box {
border-bottom: 1px solid var(--gray);
box-sizing: border-box;
display: block;
margin-bottom: 40px;
width: 32%;
&:hover {
opacity: .8;
text-decoration: none;
}
@media (--md) {
width: 48%;
}
@media (--sm) {
border-bottom: 0;
margin-bottom: 0;
width: 100%;
}
}
.feature-list-box-img {
height: 230px;
margin-bottom: 20px;
overflow: hidden;
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
@media (--xs) {
height: 200px;
margin-bottom: 15px;
}
}
.feature-list-box-info {
padding-bottom: 25px;
@media (--xs) {
padding: 0 15px 20px 15px;
}
}
.feature-list-box-ttl {
font-size: 1.5rem;
font-weight: bold;
text-align: center;
@media (--xs) {
font-size: 1.35rem;
text-align: left;
}
}
.feature-list-box-txt {
font-size: .8rem;
margin-bottom: 0;
}
/*********************
Pages
*********************/
.header-pages {
margin-bottom: 35px;
@media (--xs) {
margin-bottom: 20px;
}
}
.header-pages-catch {
border-radius: 120px;
height: 120px;
margin-right: 2rem;
overflow: hidden;
width: 120px;
@media (--xs) {
border-radius: 0;
height: 220px;
width: 100%;
}
& img {
height: 100%;
object-fit: cover;
width: 100%;
}
}
.header-pages-info-ttl {
color: var(--gray-dark);
font-size: 2rem;
margin-bottom: 10px;
@media (--xs) {
font-size: 1.6rem;
}
}
.header-pages-info-txt {
color: var(--secondary);
} | 0.371251 | 0.13733 |
@media (max-width: 1140px) {
.menu a {
font-size: 13px;
/* background-color: red; */
}
.container.main {
width: 1024px;
}
.domaines ul {
text-align: center;
margin-top: 0px;
}
.domaines .top-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 70px);
font-size: 14px;
}
.domaines .top-row li p {
padding-left: 5px;
padding-right: 5px;
}
.domaines .bottom-row {
margin-top: 100px;
}
.domaines .bottom-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(25% - 30px);
font-size: 14px;
}
.domaines .bottom-row li p {
padding-left: 10px;
padding-right: 10px;
}
footer.contact div {
display: inline-block;
vertical-align: top;
position: relative;
margin-top: 60px;
margin-right: 5px;
margin-left: 40px;
/*margin-left: 9.5%;*/
top: 0;
width: 230px;
text-align: left;
color: rgb(236, 236, 236);
font-size: 14px;
font-weight: 100;
}
}
@media (max-width: 1024px) {
.container.main {
width: 768px;
}
.menu > ul {
margin-left: 0px;
}
.rappel ul {
position: relative;
margin: auto;
margin-top: 70px;
width: 650px;
}
.rappel li {
position: relative;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 10px);
font-size: 14px;
padding-left: 20px;
padding-right: 20px;
left: inherit;
}
.rappel li:nth-child(2) {
margin-left: 8px;
}
.rappel li:last-of-type {
position: relative;
}
.domaines {
height: auto;
background-size: 768px 690px;
background-repeat: no-repeat;
}
.domaines ul {
text-align: center;
margin-top: 30px;
}
.domaines .top-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 30px);
font-size: 14px;
}
.domaines .top-row li p {
padding-left: 10px;
padding-right: 10px;
}
.domaines .bottom-row {
margin-top: 120px;
}
.domaines .bottom-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(25% - 10px);
font-size: 14px;
}
.domaines .bottom-row li p {
padding-left: 10px;
padding-right: 10px;
}
#overlay form {
width: 100%;
}
.postulation {
background-size: contain;
}
.postulation > .container {
position: relative;
margin: auto;
width: 768px;
height: 477px;
top: 120px;
}
footer.contact {
position:relative;
margin: auto;
margin-top: 90px;
padding-bottom: 30px;
height: 600px;
}
footer.contact iframe {
display: block;
position: relative;
margin: auto;
width: 600px;
height: 300px;
}
footer.contact div {
display: inline-block;
width: calc(40% - 30px);
padding: 5px;
vertical-align: top;
position: relative;
margin-left: 90px;
margin-top: 60px;
}
}
@media (max-width: 768px) {
#rendezvous { /*anchors*/
position:relative;
width: 1px;
height: 1px;
top: -70px;
}
#left-menu {
position: fixed;
margin-left: -330px;
width: 330px;
height: 100%;
background: rgba(250, 87, 70, 1);
opacity: 0;
}
.container.main {
width: 100%;
}
header {
width: 100%;
height: 50px;
}
.menu {
display:none;
}
.mobile-contact {
display: block;
font-weight: normal;
font-size: 14px;
cursor: pointer;
line-height: 23px;
text-decoration: none;
position: absolute;
right: 15px;
top: 15px;
z-index: 30000;
}
.mobile-contact a {
text-decoration: none;
color: inherit;
}
.burger-container {
height: 30px;
line-height: normal;
margin-top: 15px;
}
.burger-icon {
line-height: normal;
margin-left: 28px;
font-size: 22px;
cursor: pointer;
}
#left-menu .close-icon {
top: 15px;
font-size: 22px;
}
.content {
margin-top: 50px;
width: 100%;
}
.presentation > h1 {
font-size: 30px;
}
.orientation {
width: 100%;
height: auto;
padding-bottom: 30px;
}
.orientation > form {
text-transform: uppercase;
font-weight: 100;
font-size: 15px;
}
.orientation > form > div {
margin-bottom: 30px;
}
.orientation > form > label {
display: block;
margin-bottom: 10px;
}
.orientation select {
-webkit-appearance: none;
background: none;
border: none;
outline: none;
text-decoration: underline;
text-transform: uppercase;
font-weight: normal;
font-size: 15px;
color: rgb(236, 236, 236);
}
.rappel, .rappel ul {
width: 100%;
height: auto;
}
.rappel li, .rappel li:nth-child(2), .rappel li:last-of-type {
display: block;
width: 100%;
position: relative;
margin-left: 0px;
margin-bottom: 40px;
}
.calendrier {
margin-top: 50px;
width: 100%;
padding: 0px;
font-size: 14px;
}
.calendrier .fc-left {
padding-left: 20px;
}
.calendrier .fc-right {
margin-right: 5px;
}
.calendrier > h2 {
font-weight: 100;
font-size: 14px;
margin-bottom: 20px;
text-transform: uppercase;
}
#overlay {
width: 100%;
height: 100%;
}
#overlay form {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow-y: scroll;
}
#overlay form h2 {
font-size: 14px;
width: 100%;
text-align: left;
text-transform: uppercase;
font-weight: 100;
margin-bottom: 20px;
}
#overlay form h3 {
margin: auto;
width: 100%;
position: relative;
margin-bottom: 20px;
font-weight: 100;
font-size: 13px;
}
#overlay form .control {
position: relative;
margin: auto;
margin-top: 25px;
width: 100%;
display: block;
font-size: 12px;
text-transform: uppercase;
font-weight: 100;
}
#overlay form label {
display: block;
position: relative;
left:0px;
margin-bottom: 30px;
width: 100%;
}
#overlay form input {
display: block;
position: relative;
left: 0px;
width: inherit;
}
#overlay form textarea {
margin-top: 30px;
display: block;
width: 100%;
height: 170px;
resize: none;
font-size: 12px;
}
.domaines {
height: auto;
background-image: none;
}
.domaines .top-row li, .domaines .bottom-row li {
position: relative;
margin: auto;
margin-bottom: 70px;
display: block;
width: 50%;
}
.domaines .top-row li a {
color: white;
}
.domaines .bottom-row li a {
color: white;
}
.domaines .vanessa-landais, .domaines .julie-lehut {
width: 100%;
}
.postulation {
height: auto;
background-size: contain;
}
.postulation > .container {
width: 100%;
height: auto;
}
footer.contact {
margin-top: 130px;
height: auto;
}
footer.contact iframe {
left: 0px;
margin-left: 0px;
display: block;
top: 60px;
margin-top: 60px;
margin-bottom: 100px;
width: 100%;
}
footer.contact div {
display: block;
position: relative;
text-align: center;
margin: auto;
margin-top: 30px;
width: auto;
}
} | css/media-queries.css | @media (max-width: 1140px) {
.menu a {
font-size: 13px;
/* background-color: red; */
}
.container.main {
width: 1024px;
}
.domaines ul {
text-align: center;
margin-top: 0px;
}
.domaines .top-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 70px);
font-size: 14px;
}
.domaines .top-row li p {
padding-left: 5px;
padding-right: 5px;
}
.domaines .bottom-row {
margin-top: 100px;
}
.domaines .bottom-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(25% - 30px);
font-size: 14px;
}
.domaines .bottom-row li p {
padding-left: 10px;
padding-right: 10px;
}
footer.contact div {
display: inline-block;
vertical-align: top;
position: relative;
margin-top: 60px;
margin-right: 5px;
margin-left: 40px;
/*margin-left: 9.5%;*/
top: 0;
width: 230px;
text-align: left;
color: rgb(236, 236, 236);
font-size: 14px;
font-weight: 100;
}
}
@media (max-width: 1024px) {
.container.main {
width: 768px;
}
.menu > ul {
margin-left: 0px;
}
.rappel ul {
position: relative;
margin: auto;
margin-top: 70px;
width: 650px;
}
.rappel li {
position: relative;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 10px);
font-size: 14px;
padding-left: 20px;
padding-right: 20px;
left: inherit;
}
.rappel li:nth-child(2) {
margin-left: 8px;
}
.rappel li:last-of-type {
position: relative;
}
.domaines {
height: auto;
background-size: 768px 690px;
background-repeat: no-repeat;
}
.domaines ul {
text-align: center;
margin-top: 30px;
}
.domaines .top-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(33% - 30px);
font-size: 14px;
}
.domaines .top-row li p {
padding-left: 10px;
padding-right: 10px;
}
.domaines .bottom-row {
margin-top: 120px;
}
.domaines .bottom-row li {
margin: auto;
vertical-align: top;
display: inline-block;
font-weight: 100;
font-family: Helvetica;
width: calc(25% - 10px);
font-size: 14px;
}
.domaines .bottom-row li p {
padding-left: 10px;
padding-right: 10px;
}
#overlay form {
width: 100%;
}
.postulation {
background-size: contain;
}
.postulation > .container {
position: relative;
margin: auto;
width: 768px;
height: 477px;
top: 120px;
}
footer.contact {
position:relative;
margin: auto;
margin-top: 90px;
padding-bottom: 30px;
height: 600px;
}
footer.contact iframe {
display: block;
position: relative;
margin: auto;
width: 600px;
height: 300px;
}
footer.contact div {
display: inline-block;
width: calc(40% - 30px);
padding: 5px;
vertical-align: top;
position: relative;
margin-left: 90px;
margin-top: 60px;
}
}
@media (max-width: 768px) {
#rendezvous { /*anchors*/
position:relative;
width: 1px;
height: 1px;
top: -70px;
}
#left-menu {
position: fixed;
margin-left: -330px;
width: 330px;
height: 100%;
background: rgba(250, 87, 70, 1);
opacity: 0;
}
.container.main {
width: 100%;
}
header {
width: 100%;
height: 50px;
}
.menu {
display:none;
}
.mobile-contact {
display: block;
font-weight: normal;
font-size: 14px;
cursor: pointer;
line-height: 23px;
text-decoration: none;
position: absolute;
right: 15px;
top: 15px;
z-index: 30000;
}
.mobile-contact a {
text-decoration: none;
color: inherit;
}
.burger-container {
height: 30px;
line-height: normal;
margin-top: 15px;
}
.burger-icon {
line-height: normal;
margin-left: 28px;
font-size: 22px;
cursor: pointer;
}
#left-menu .close-icon {
top: 15px;
font-size: 22px;
}
.content {
margin-top: 50px;
width: 100%;
}
.presentation > h1 {
font-size: 30px;
}
.orientation {
width: 100%;
height: auto;
padding-bottom: 30px;
}
.orientation > form {
text-transform: uppercase;
font-weight: 100;
font-size: 15px;
}
.orientation > form > div {
margin-bottom: 30px;
}
.orientation > form > label {
display: block;
margin-bottom: 10px;
}
.orientation select {
-webkit-appearance: none;
background: none;
border: none;
outline: none;
text-decoration: underline;
text-transform: uppercase;
font-weight: normal;
font-size: 15px;
color: rgb(236, 236, 236);
}
.rappel, .rappel ul {
width: 100%;
height: auto;
}
.rappel li, .rappel li:nth-child(2), .rappel li:last-of-type {
display: block;
width: 100%;
position: relative;
margin-left: 0px;
margin-bottom: 40px;
}
.calendrier {
margin-top: 50px;
width: 100%;
padding: 0px;
font-size: 14px;
}
.calendrier .fc-left {
padding-left: 20px;
}
.calendrier .fc-right {
margin-right: 5px;
}
.calendrier > h2 {
font-weight: 100;
font-size: 14px;
margin-bottom: 20px;
text-transform: uppercase;
}
#overlay {
width: 100%;
height: 100%;
}
#overlay form {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow-y: scroll;
}
#overlay form h2 {
font-size: 14px;
width: 100%;
text-align: left;
text-transform: uppercase;
font-weight: 100;
margin-bottom: 20px;
}
#overlay form h3 {
margin: auto;
width: 100%;
position: relative;
margin-bottom: 20px;
font-weight: 100;
font-size: 13px;
}
#overlay form .control {
position: relative;
margin: auto;
margin-top: 25px;
width: 100%;
display: block;
font-size: 12px;
text-transform: uppercase;
font-weight: 100;
}
#overlay form label {
display: block;
position: relative;
left:0px;
margin-bottom: 30px;
width: 100%;
}
#overlay form input {
display: block;
position: relative;
left: 0px;
width: inherit;
}
#overlay form textarea {
margin-top: 30px;
display: block;
width: 100%;
height: 170px;
resize: none;
font-size: 12px;
}
.domaines {
height: auto;
background-image: none;
}
.domaines .top-row li, .domaines .bottom-row li {
position: relative;
margin: auto;
margin-bottom: 70px;
display: block;
width: 50%;
}
.domaines .top-row li a {
color: white;
}
.domaines .bottom-row li a {
color: white;
}
.domaines .vanessa-landais, .domaines .julie-lehut {
width: 100%;
}
.postulation {
height: auto;
background-size: contain;
}
.postulation > .container {
width: 100%;
height: auto;
}
footer.contact {
margin-top: 130px;
height: auto;
}
footer.contact iframe {
left: 0px;
margin-left: 0px;
display: block;
top: 60px;
margin-top: 60px;
margin-bottom: 100px;
width: 100%;
}
footer.contact div {
display: block;
position: relative;
text-align: center;
margin: auto;
margin-top: 30px;
width: auto;
}
} | 0.260954 | 0.095729 |
Developed by helloDigi
https://hellodigi.ru/
*/
/*
Developed by helloDigi
https://hellodigi.ru/
*/
.Regular {
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.Bold {
font-family: 'Roboto', sans-serif;
font-weight: 700;
}
.Medium {
font-family: 'Roboto', sans-serif;
font-weight: 500;
}
.pointer:hover {
cursor: pointer;
}
.pointer:hover * {
cursor: pointer;
}
.overflow {
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(white, black);
}
.image-cover {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center center;
object-position: center center;
display: block;
}
.block {
display: block;
float: left;
}
.block100 {
display: block;
float: left;
width: 100%;
}
.transition {
transition: all 0.2s linear;
}
.modal {
width: 460px;
position: relative;
}
.modal .title {
margin-bottom: 15px;
}
.modal .subtitle {
margin-bottom: 22px;
font-size: 14px;
line-height: 22px;
}
.modal-form {
float: left;
margin-top: 5px;
}
.modal_wrap {
float: left;
background: #fff;
border-radius: 13px;
padding: 44px 48px;
}
.modal .input-wrap {
margin-right: 0;
margin-bottom: 17px;
}
.modal .input {
background: #ebebeb;
border-color: #ebebeb;
}
.modal .agreement {
margin-top: 0;
margin-bottom: 17px;
}
.modal .footnote {
color: #8E8E8E;
text-align: center;
line-height: 24px;
margin-top: 20px;
}
.modal .footnote a {
color: #fff;
}
.modal .btn {
width: 100%;
}
.modal-info {
float: left;
border-top: 1px solid #DCDEE1;
margin-top: 36px;
padding-top: 40px;
text-align: center;
line-height: 1.4;
}
.modal-info p {
margin: 5px 0;
}
.modal-info p:first-child {
margin-top: 0;
}
.modal-info p:last-child {
margin-bottom: 0;
}
.modal-info a {
color: #0D84FB;
display: inline-block;
}
.modal_close {
background: rgba(255, 255, 255, 0.17);
border-radius: 50%;
position: absolute;
width: 32px;
height: 32px;
top: -32px;
right: -32px;
}
.modal_close:hover {
cursor: pointer;
}
.modal_close:hover * {
cursor: pointer;
}
.modal_close:before {
width: 12px;
height: 12px;
background: url(../img/close.svg) center center no-repeat;
background-size: contain;
position: absolute;
content: '';
left: 50%;
top: 50%;
margin-top: -6px;
margin-left: -6px;
}
.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover,
.modal input:-webkit-autofill:focus,
.modal textarea:-webkit-autofill,
.modal textarea:-webkit-autofill:hover,
.modal textarea:-webkit-autofill:focus,
.modal select:-webkit-autofill,
.modal select:-webkit-autofill:hover,
.modal select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #fff inset;
transition: background-color 5000s ease-in-out 0s;
}
.modal.modal_order {
width: 744px;
}
.modal.modal_order .input-wrap {
width: 48%;
}
.modal.modal_order .modal-form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: justify;
justify-content: space-between;
}
.success-icon {
width: 58px;
height: 58px;
background: #E1F0FF;
border-radius: 50%;
margin-bottom: 12px;
position: relative;
}
.success-icon:before {
width: 24px;
height: 24px;
background: url(../img/check-list-before.svg) center center no-repeat;
background-size: contain;
position: absolute;
content: '';
margin-top: -12px;
margin-left: -12px;
top: 50%;
left: 50%;
}
.authorization-socials {
float: left;
margin-top: 36px;
}
.authorization-socials ._title {
font-size: 19px;
font-family: 'Roboto', sans-serif;
font-weight: 500;
margin-bottom: 20px;
}
.authorization-socials-variants {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
}
.authorization-socials-variants .soc-link {
width: 38px;
height: 38px;
margin-right: 15px;
}
.authorization-socials-variants .soc-link:hover {
cursor: pointer;
}
.authorization-socials-variants .soc-link:hover * {
cursor: pointer;
}
.authorization-socials-variants .soc-link:last-child {
margin-right: 0;
}
.authorization-socials-variants .soc-link.active {
background: #0D84FB;
}
.authorization-socials-variants .soc-link.active:hover {
background: #1d1d1d;
}
.arcticmodal-overlay {
background: rgba(0, 0, 0, 0.8);
}
.dark .modal_wrap {
background: #2b2b2b;
}
.dark .modal .input {
background: #222;
border-color: #222;
}
.dark .modal .input-wrap.active label {
background: #2b2b2b;
}
.dark .modal .input-wrap.active .input {
background: none;
}
.dark .modal input:-webkit-autofill,
.dark .modal input:-webkit-autofill:hover,
.dark .modal input:-webkit-autofill:focus,
.dark .modal textarea:-webkit-autofill,
.dark .modal textarea:-webkit-autofill:hover,
.dark .modal textarea:-webkit-autofill:focus,
.dark .modal select:-webkit-autofill,
.dark .modal select:-webkit-autofill:hover,
.dark .modal select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #2b2b2b inset;
transition: background-color 5000s ease-in-out 0s;
-webkit-text-fill-color: white;
}
@media screen and (max-width: 1400px) {
.modal_close {
top: 0;
right: -43px;
}
}
@media screen and (max-width: 760px) {
.modal.modal_order {
width: 100%;
}
.modal.modal_order .input-wrap {
width: 100%;
}
}
@media screen and (max-width: 590px) {
.modal {
width: 100%;
}
.modal_wrap {
padding: 40px 20px;
}
.modal_close {
right: 10px;
top: 10px;
background: rgba(0, 0, 0, 0.77);
}
.authorization-socials {
margin-top: 28px;
}
.modal-info {
margin-top: 28px;
}
.modal-info {
padding-top: 30px;
}
} | public/css/modals.css | Developed by helloDigi
https://hellodigi.ru/
*/
/*
Developed by helloDigi
https://hellodigi.ru/
*/
.Regular {
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.Bold {
font-family: 'Roboto', sans-serif;
font-weight: 700;
}
.Medium {
font-family: 'Roboto', sans-serif;
font-weight: 500;
}
.pointer:hover {
cursor: pointer;
}
.pointer:hover * {
cursor: pointer;
}
.overflow {
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(white, black);
}
.image-cover {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center center;
object-position: center center;
display: block;
}
.block {
display: block;
float: left;
}
.block100 {
display: block;
float: left;
width: 100%;
}
.transition {
transition: all 0.2s linear;
}
.modal {
width: 460px;
position: relative;
}
.modal .title {
margin-bottom: 15px;
}
.modal .subtitle {
margin-bottom: 22px;
font-size: 14px;
line-height: 22px;
}
.modal-form {
float: left;
margin-top: 5px;
}
.modal_wrap {
float: left;
background: #fff;
border-radius: 13px;
padding: 44px 48px;
}
.modal .input-wrap {
margin-right: 0;
margin-bottom: 17px;
}
.modal .input {
background: #ebebeb;
border-color: #ebebeb;
}
.modal .agreement {
margin-top: 0;
margin-bottom: 17px;
}
.modal .footnote {
color: #8E8E8E;
text-align: center;
line-height: 24px;
margin-top: 20px;
}
.modal .footnote a {
color: #fff;
}
.modal .btn {
width: 100%;
}
.modal-info {
float: left;
border-top: 1px solid #DCDEE1;
margin-top: 36px;
padding-top: 40px;
text-align: center;
line-height: 1.4;
}
.modal-info p {
margin: 5px 0;
}
.modal-info p:first-child {
margin-top: 0;
}
.modal-info p:last-child {
margin-bottom: 0;
}
.modal-info a {
color: #0D84FB;
display: inline-block;
}
.modal_close {
background: rgba(255, 255, 255, 0.17);
border-radius: 50%;
position: absolute;
width: 32px;
height: 32px;
top: -32px;
right: -32px;
}
.modal_close:hover {
cursor: pointer;
}
.modal_close:hover * {
cursor: pointer;
}
.modal_close:before {
width: 12px;
height: 12px;
background: url(../img/close.svg) center center no-repeat;
background-size: contain;
position: absolute;
content: '';
left: 50%;
top: 50%;
margin-top: -6px;
margin-left: -6px;
}
.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover,
.modal input:-webkit-autofill:focus,
.modal textarea:-webkit-autofill,
.modal textarea:-webkit-autofill:hover,
.modal textarea:-webkit-autofill:focus,
.modal select:-webkit-autofill,
.modal select:-webkit-autofill:hover,
.modal select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #fff inset;
transition: background-color 5000s ease-in-out 0s;
}
.modal.modal_order {
width: 744px;
}
.modal.modal_order .input-wrap {
width: 48%;
}
.modal.modal_order .modal-form {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: justify;
justify-content: space-between;
}
.success-icon {
width: 58px;
height: 58px;
background: #E1F0FF;
border-radius: 50%;
margin-bottom: 12px;
position: relative;
}
.success-icon:before {
width: 24px;
height: 24px;
background: url(../img/check-list-before.svg) center center no-repeat;
background-size: contain;
position: absolute;
content: '';
margin-top: -12px;
margin-left: -12px;
top: 50%;
left: 50%;
}
.authorization-socials {
float: left;
margin-top: 36px;
}
.authorization-socials ._title {
font-size: 19px;
font-family: 'Roboto', sans-serif;
font-weight: 500;
margin-bottom: 20px;
}
.authorization-socials-variants {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
}
.authorization-socials-variants .soc-link {
width: 38px;
height: 38px;
margin-right: 15px;
}
.authorization-socials-variants .soc-link:hover {
cursor: pointer;
}
.authorization-socials-variants .soc-link:hover * {
cursor: pointer;
}
.authorization-socials-variants .soc-link:last-child {
margin-right: 0;
}
.authorization-socials-variants .soc-link.active {
background: #0D84FB;
}
.authorization-socials-variants .soc-link.active:hover {
background: #1d1d1d;
}
.arcticmodal-overlay {
background: rgba(0, 0, 0, 0.8);
}
.dark .modal_wrap {
background: #2b2b2b;
}
.dark .modal .input {
background: #222;
border-color: #222;
}
.dark .modal .input-wrap.active label {
background: #2b2b2b;
}
.dark .modal .input-wrap.active .input {
background: none;
}
.dark .modal input:-webkit-autofill,
.dark .modal input:-webkit-autofill:hover,
.dark .modal input:-webkit-autofill:focus,
.dark .modal textarea:-webkit-autofill,
.dark .modal textarea:-webkit-autofill:hover,
.dark .modal textarea:-webkit-autofill:focus,
.dark .modal select:-webkit-autofill,
.dark .modal select:-webkit-autofill:hover,
.dark .modal select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #2b2b2b inset;
transition: background-color 5000s ease-in-out 0s;
-webkit-text-fill-color: white;
}
@media screen and (max-width: 1400px) {
.modal_close {
top: 0;
right: -43px;
}
}
@media screen and (max-width: 760px) {
.modal.modal_order {
width: 100%;
}
.modal.modal_order .input-wrap {
width: 100%;
}
}
@media screen and (max-width: 590px) {
.modal {
width: 100%;
}
.modal_wrap {
padding: 40px 20px;
}
.modal_close {
right: 10px;
top: 10px;
background: rgba(0, 0, 0, 0.77);
}
.authorization-socials {
margin-top: 28px;
}
.modal-info {
margin-top: 28px;
}
.modal-info {
padding-top: 30px;
}
} | 0.314893 | 0.099558 |
.selectPage {
display: none;
}
.mainHeader {
-webkit-box-shadow: 0 7px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 7px 0 rgba(0,0,0,.1);
box-shadow: 0 0 7px rgba(0,0,0,.1);
position: relative;
z-index: 99999;
width: 100%;
font-weight: 500;
line-height: 23px;
transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out;
background: #fff 0 0;
margin: auto;
left: 0;
right: 0;
top: 10px;
display: block;
}
@media (max-width: 1080px) {
.mainHeader {
-webkit-transition: none;
-moz-transition: none;
transition: none;
position: relative;
}
}
.headerContainer {
top: 0;
position: fixed;
width: 100%;
margin: auto;
background: #ffffff;
box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%);
border-radius: 6px;
padding: 18px 25px 18px 25px;
z-index: 99;
text-align: left;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.headerContainer {
width: auto;
max-width: 100%;
padding: 9px 10px;
position: fixed;
left: 15px;
right: 15px;
transform: none;
}
}
@media only screen and (max-width: 1280px) and (min-width: 1081px) {
.headerContainer {
width: auto;
max-width: 100%;
left: 15px;
right: 15px;
}
}
.stickyHeaderContainer {
max-width: 100%;
left: 0;
border-radius: 0;
top: 0;
}
.topNavigation {
float: right;
padding-left: 0;
padding-top: 0;
transition: all .4s ease-in-out;
font-weight: 600;
}
@media (max-width: 980px) {
.topNavigation {
display: block;
transition: all .4s ease-in-out;
margin-right: 0;
}
}
.logoContainer {
position: absolute;
width: auto;
height: auto;
margin: auto;
top: 0px;
bottom: 0px;
left: 22px;
transition: all .4s ease-in-out;
}
@media only screen and (max-width: 1280px) and (min-width: 1081px) {
.logoContainer {
padding-left: 0;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.logoContainer {
left: 10px;
padding-left: 0;
}
}
.logoHelper {
display: inline-block;
width: 0;
height: 100%;
vertical-align: middle;
}
.logoImg {
height: auto;
display: inline-block;
float: none;
margin-bottom: 0;
vertical-align: middle;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-webkit-transform: translate3d(0,0,0);
padding-left: 4px;
}
@media only screen and (min-width: 0px) and (max-width: 1080px) {
.logoImg {
width: 125px;
height: auto;
max-width: 100%;
}
}
.topMenuNav {
float: left;
line-height: 0;
}
.hamburger {
display: none;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.hamburger {
width: 32px;
height: 32px;
cursor: pointer;
padding-bottom: 0;
position: relative;
z-index: 10;
background: url(../icons/hamberger.svg) no-repeat 50% 50% !important;
display: flex;
border-radius: 2px 2px 2px 2px;
line-height: 40px;
text-align: left;
user-select: none;
-webkit-tap-highlight-color: transparent;
outline: none;
white-space: nowrap;
border: 0;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.hamburgerClose {
position: relative;
background: url(../icons/cross.svg) no-repeat 50% 50%;
width: 32px;
height: 32px;
cursor: pointer;
z-index: 30;
display: none;
}
}
.menu {
padding: 0;
margin: 0;
list-style: none;
visibility: visible;
text-align: left;
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #666;
display: block;
float: none;
font-family: inherit;
font-size: 14px;
height: auto;
left: auto;
line-height: 1.7;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
outline: none;
overflow: visible;
position: relative;
pointer-events: auto;
right: auto;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
vertical-align: baseline;
width: auto;
word-wrap: break-word;
white-space: normal;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menu {
display: none;
width: 100%;
height: 100%;
padding: 85px 15px 0 35px;
border: 0;
box-shadow: none;
position: fixed;
top: 0;
z-index: 20;
left: 0;
background-color: #0E1738;
overflow-x: scroll;
}
}
.menuItem {
position: relative;
padding: 0;
margin: 0;
list-style: none;
display: inline-block;
height: auto;
vertical-align: middle;
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #666;
float: none;
font-family: inherit;
font-size: 14px;
left: auto;
line-height: 1.7;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
outline: none;
overflow: visible;
pointer-events: auto;
right: auto;
text-align: left;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
visibility: inherit;
width: auto;
word-wrap: break-word;
white-space: normal;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menuItem {
display: block;
margin: 0;
padding: 0 0 29px 0;
clear: both;
border: 0;
overflow: auto;
}
}
.menuLink {
color: #0E1738;
font-family: 'Work Sans', Arial, sans-serif;
font-size: 16px;
font-weight: 500;
letter-spacing: 0;
line-height: 20px;
padding: 12px 3px;
margin: 0 23px 0 23px;
position: relative;
height: 40px;
vertical-align: baseline;
width: auto;
display: block;
text-transform: none;
text-decoration: none;
text-align: left;
background: none;
border: 0;
border-radius: 0;
outline: none;
cursor: pointer;
transition: none;
box-shadow: none;
bottom: auto;
box-sizing: border-box;
clip: auto;
float: none;
left: auto;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
overflow: visible;
pointer-events: auto;
right: auto;
text-indent: 0;
transform: none;
top: auto;
visibility: inherit;
word-wrap: break-word;
white-space: normal;
list-style: none;
}
.menuLink:before {
content: "";
position: absolute;
left: 0;
bottom: 4px;
height: 2px;
width: 100%;
background-color: #0E1738;
border-radius: 5px;
-moz-transform: scale(0, 1);
-o-transform: scale(0, 1);
-ms-transform: scale(0, 1);
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
-moz-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
transition: transform 0.5s ease;
display: inline-block;
font: inherit;
margin: 0 6px 0 0px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: inherit;
top: auto;
}
.menuLink:hover {
text-decoration: none;
border-color: #fff;
}
.menuItem:hover a.menuLink:before {
transform: scale(1, 1);
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menuLink {
display: block;
padding: 0;
border-bottom: 0;
color: #fff;
font-size: 24px;
line-height: 24px;
text-decoration: none;
font-weight: 500;
cursor: pointer;
margin: 0;
}
}
.freeSignUpLink {
width: 163px;
padding: 10px 3px;
color: #ffffff !important;
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
font-weight: 700 !important;
letter-spacing: 0;
line-height: 19px;
text-align: center;
border-radius: 50px;
background: #232D54 !important;
margin-right: 0px;
transition: all 0.5s ease;
}
.freeSignUpLink:hover {
opacity: 0.85;
}
.dropdownIndicator {
display: inline;
height: auto;
width: auto;
background: transparent;
position: relative;
pointer-events: auto;
left: auto;
min-width: auto;
line-height: inherit;
color: inherit;
font-size: inherit;
padding: 0;
}
.dropdownIndicator:after {
content: '\f140';
font-family: dashicons;
font-weight: normal;
display: inline-block;
margin: 0 0 0 6px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: rotate(0);
color: inherit;
position: relative;
background: transparent;
height: auto;
width: auto;
right: auto;
line-height: inherit;
}
.open .dropdownIndicator:after {
content: '\f142';
}
.subMenu, .productSubMenu {
left: 0;
position: absolute;
background-color: #fff;
border-radius: 12px;
z-index: 100;
padding: 16px 16px 0px 0px;
border: 1px solid #E1E1E1;
margin-left: 25px;
max-width: none;
box-shadow: 0px 0px 20px 2px rgb(35 45 84 / 15%);
width: 525px;
}
.subMenu {
width: 700px;
}
@media only screen and (min-width: 1081px) {
.subMenu, .productSubMenu {
opacity: 1;
transform: translate(0, 10px);
transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
}
.subMenuItem {
color: #666;
font-family: inherit;
font-size: 14px;
display: block;
float: left;
clear: none;
padding: 0px 0px 16px 16px;
vertical-align: top;
width: 33.33333%;
}
.productSubMenu .subMenuItem {
width: 50%;
}
.subMenuItem p {
font-size: 12px;
color: #707a88;
font-style: normal;
margin: 5px 0;
transition: none;
line-height: 1.5;
display: block;
text-transform: none;
font-weight: normal;
padding-bottom: 0px;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.subMenu, .productSubMenu, .subMenuItem {
width: 100%;
height: 100%;
padding: 0px;
border: 0;
box-shadow: none;
top: 0;
z-index: 100;
left: 0;
background:none;
position: static;
margin: 0px;
}
.subMenu, .productSubMenu {
width: 100%;
}
.productSubMenu .subMenuItem, .subMenu .subMenuItem {
padding: 0px;
clear: both;
border: 0;
width: 100%;
margin: 0;
}
.dropdownIndicator:after {
right: 20px;
float: right;
}
}
.subMenuLink {
color: #000000;
font-size: 14px;
text-decoration: none;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 50px 12px 15px 12px;
vertical-align: top;
display: block;
width: 100%;
background: none;
line-height: 16px;
font-weight: 600;
text-transform: none;
border-radius: 8px;
font-family: "Noto Sans";
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.subMenuLink {
display: block;
border: 0;
color: #fff;
font-size: 24px;
text-decoration: none;
font-weight: 500;
cursor: pointer;
margin: 0;
font-family: "Noto Sans", Arial, sans-serif;
text-align: left;
height: auto;
line-height: 16px;
}
.subMenuItem p {
font-family: "Work Sans", Arial, sans-serif;
padding: 2px 0px 0px;
}
}
.rudderstackCloudLink {
background-image: url(../icons/cloud_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.rudderstackOpenSourceLink {
background-image: url(../icons/code.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 25px;
background-color: #f9f9f9;
min-height: 170px;
}
.blogLink {
background-image: url(../icons/cloud_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.videLibraryLink {
background-image: url(../icons/play_circle_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.migrationLink {
background-image: url(../icons/transfer.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.normalLink {
padding-top: 15px;
background-color: #f9f9f9;
font-weight: 600;
font-size: 15px;
color: #000000;
}
.documentationLink {
background-image: url("../icons/doc.png");
}
.rudderSegmentLink {
background-image: url("../icons/segment.png");
}
.rudderSnowplowLink {
background-image: url("../icons/snowplow.png");
}
.freeTrialRegion {
display: none;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.freeTrialRegion {
display: block;
float: right;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.rudderstackCloudLink,.rudderstackOpenSourceLink,.documentationLink,.rudderSegmentLink, .rudderSnowplowLink,
.blogLink, .videLibraryLink, .migrationLink {
font-size: 14px;
background: none;
padding: 13px 0px 15px;
font-weight: 600;
min-height: auto;
}
.freeTrialLink {
width: 140px;
display: inline-block;
vertical-align: middle;
cursor: pointer;
text-align: center;
font-size: 16px;
font-weight: 700;
margin-right: 20px;
padding: 10px 3px;
color: #fff;
font-family: 'Work Sans', Arial, sans-serif;
background: #232D54;
text-decoration: none;
line-height: 19px;
border-radius:50px;
}
.normalLink {
color: #FFFFFF;
background: none;
font-size: 14px;
padding-left: 0px;
}
.freeSignUpItem {
display: none;
}
} | src/assets/css/header.module.css | .selectPage {
display: none;
}
.mainHeader {
-webkit-box-shadow: 0 7px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 7px 0 rgba(0,0,0,.1);
box-shadow: 0 0 7px rgba(0,0,0,.1);
position: relative;
z-index: 99999;
width: 100%;
font-weight: 500;
line-height: 23px;
transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out;
background: #fff 0 0;
margin: auto;
left: 0;
right: 0;
top: 10px;
display: block;
}
@media (max-width: 1080px) {
.mainHeader {
-webkit-transition: none;
-moz-transition: none;
transition: none;
position: relative;
}
}
.headerContainer {
top: 0;
position: fixed;
width: 100%;
margin: auto;
background: #ffffff;
box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%);
border-radius: 6px;
padding: 18px 25px 18px 25px;
z-index: 99;
text-align: left;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.headerContainer {
width: auto;
max-width: 100%;
padding: 9px 10px;
position: fixed;
left: 15px;
right: 15px;
transform: none;
}
}
@media only screen and (max-width: 1280px) and (min-width: 1081px) {
.headerContainer {
width: auto;
max-width: 100%;
left: 15px;
right: 15px;
}
}
.stickyHeaderContainer {
max-width: 100%;
left: 0;
border-radius: 0;
top: 0;
}
.topNavigation {
float: right;
padding-left: 0;
padding-top: 0;
transition: all .4s ease-in-out;
font-weight: 600;
}
@media (max-width: 980px) {
.topNavigation {
display: block;
transition: all .4s ease-in-out;
margin-right: 0;
}
}
.logoContainer {
position: absolute;
width: auto;
height: auto;
margin: auto;
top: 0px;
bottom: 0px;
left: 22px;
transition: all .4s ease-in-out;
}
@media only screen and (max-width: 1280px) and (min-width: 1081px) {
.logoContainer {
padding-left: 0;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.logoContainer {
left: 10px;
padding-left: 0;
}
}
.logoHelper {
display: inline-block;
width: 0;
height: 100%;
vertical-align: middle;
}
.logoImg {
height: auto;
display: inline-block;
float: none;
margin-bottom: 0;
vertical-align: middle;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-webkit-transform: translate3d(0,0,0);
padding-left: 4px;
}
@media only screen and (min-width: 0px) and (max-width: 1080px) {
.logoImg {
width: 125px;
height: auto;
max-width: 100%;
}
}
.topMenuNav {
float: left;
line-height: 0;
}
.hamburger {
display: none;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.hamburger {
width: 32px;
height: 32px;
cursor: pointer;
padding-bottom: 0;
position: relative;
z-index: 10;
background: url(../icons/hamberger.svg) no-repeat 50% 50% !important;
display: flex;
border-radius: 2px 2px 2px 2px;
line-height: 40px;
text-align: left;
user-select: none;
-webkit-tap-highlight-color: transparent;
outline: none;
white-space: nowrap;
border: 0;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.hamburgerClose {
position: relative;
background: url(../icons/cross.svg) no-repeat 50% 50%;
width: 32px;
height: 32px;
cursor: pointer;
z-index: 30;
display: none;
}
}
.menu {
padding: 0;
margin: 0;
list-style: none;
visibility: visible;
text-align: left;
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #666;
display: block;
float: none;
font-family: inherit;
font-size: 14px;
height: auto;
left: auto;
line-height: 1.7;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
outline: none;
overflow: visible;
position: relative;
pointer-events: auto;
right: auto;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
vertical-align: baseline;
width: auto;
word-wrap: break-word;
white-space: normal;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menu {
display: none;
width: 100%;
height: 100%;
padding: 85px 15px 0 35px;
border: 0;
box-shadow: none;
position: fixed;
top: 0;
z-index: 20;
left: 0;
background-color: #0E1738;
overflow-x: scroll;
}
}
.menuItem {
position: relative;
padding: 0;
margin: 0;
list-style: none;
display: inline-block;
height: auto;
vertical-align: middle;
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #666;
float: none;
font-family: inherit;
font-size: 14px;
left: auto;
line-height: 1.7;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
outline: none;
overflow: visible;
pointer-events: auto;
right: auto;
text-align: left;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
visibility: inherit;
width: auto;
word-wrap: break-word;
white-space: normal;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menuItem {
display: block;
margin: 0;
padding: 0 0 29px 0;
clear: both;
border: 0;
overflow: auto;
}
}
.menuLink {
color: #0E1738;
font-family: 'Work Sans', Arial, sans-serif;
font-size: 16px;
font-weight: 500;
letter-spacing: 0;
line-height: 20px;
padding: 12px 3px;
margin: 0 23px 0 23px;
position: relative;
height: 40px;
vertical-align: baseline;
width: auto;
display: block;
text-transform: none;
text-decoration: none;
text-align: left;
background: none;
border: 0;
border-radius: 0;
outline: none;
cursor: pointer;
transition: none;
box-shadow: none;
bottom: auto;
box-sizing: border-box;
clip: auto;
float: none;
left: auto;
min-height: auto;
max-height: none;
min-width: auto;
opacity: 1;
overflow: visible;
pointer-events: auto;
right: auto;
text-indent: 0;
transform: none;
top: auto;
visibility: inherit;
word-wrap: break-word;
white-space: normal;
list-style: none;
}
.menuLink:before {
content: "";
position: absolute;
left: 0;
bottom: 4px;
height: 2px;
width: 100%;
background-color: #0E1738;
border-radius: 5px;
-moz-transform: scale(0, 1);
-o-transform: scale(0, 1);
-ms-transform: scale(0, 1);
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
-moz-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
transition: transform 0.5s ease;
display: inline-block;
font: inherit;
margin: 0 6px 0 0px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: inherit;
top: auto;
}
.menuLink:hover {
text-decoration: none;
border-color: #fff;
}
.menuItem:hover a.menuLink:before {
transform: scale(1, 1);
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.menuLink {
display: block;
padding: 0;
border-bottom: 0;
color: #fff;
font-size: 24px;
line-height: 24px;
text-decoration: none;
font-weight: 500;
cursor: pointer;
margin: 0;
}
}
.freeSignUpLink {
width: 163px;
padding: 10px 3px;
color: #ffffff !important;
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
font-weight: 700 !important;
letter-spacing: 0;
line-height: 19px;
text-align: center;
border-radius: 50px;
background: #232D54 !important;
margin-right: 0px;
transition: all 0.5s ease;
}
.freeSignUpLink:hover {
opacity: 0.85;
}
.dropdownIndicator {
display: inline;
height: auto;
width: auto;
background: transparent;
position: relative;
pointer-events: auto;
left: auto;
min-width: auto;
line-height: inherit;
color: inherit;
font-size: inherit;
padding: 0;
}
.dropdownIndicator:after {
content: '\f140';
font-family: dashicons;
font-weight: normal;
display: inline-block;
margin: 0 0 0 6px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: rotate(0);
color: inherit;
position: relative;
background: transparent;
height: auto;
width: auto;
right: auto;
line-height: inherit;
}
.open .dropdownIndicator:after {
content: '\f142';
}
.subMenu, .productSubMenu {
left: 0;
position: absolute;
background-color: #fff;
border-radius: 12px;
z-index: 100;
padding: 16px 16px 0px 0px;
border: 1px solid #E1E1E1;
margin-left: 25px;
max-width: none;
box-shadow: 0px 0px 20px 2px rgb(35 45 84 / 15%);
width: 525px;
}
.subMenu {
width: 700px;
}
@media only screen and (min-width: 1081px) {
.subMenu, .productSubMenu {
opacity: 1;
transform: translate(0, 10px);
transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
}
.subMenuItem {
color: #666;
font-family: inherit;
font-size: 14px;
display: block;
float: left;
clear: none;
padding: 0px 0px 16px 16px;
vertical-align: top;
width: 33.33333%;
}
.productSubMenu .subMenuItem {
width: 50%;
}
.subMenuItem p {
font-size: 12px;
color: #707a88;
font-style: normal;
margin: 5px 0;
transition: none;
line-height: 1.5;
display: block;
text-transform: none;
font-weight: normal;
padding-bottom: 0px;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.subMenu, .productSubMenu, .subMenuItem {
width: 100%;
height: 100%;
padding: 0px;
border: 0;
box-shadow: none;
top: 0;
z-index: 100;
left: 0;
background:none;
position: static;
margin: 0px;
}
.subMenu, .productSubMenu {
width: 100%;
}
.productSubMenu .subMenuItem, .subMenu .subMenuItem {
padding: 0px;
clear: both;
border: 0;
width: 100%;
margin: 0;
}
.dropdownIndicator:after {
right: 20px;
float: right;
}
}
.subMenuLink {
color: #000000;
font-size: 14px;
text-decoration: none;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 50px 12px 15px 12px;
vertical-align: top;
display: block;
width: 100%;
background: none;
line-height: 16px;
font-weight: 600;
text-transform: none;
border-radius: 8px;
font-family: "Noto Sans";
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.subMenuLink {
display: block;
border: 0;
color: #fff;
font-size: 24px;
text-decoration: none;
font-weight: 500;
cursor: pointer;
margin: 0;
font-family: "Noto Sans", Arial, sans-serif;
text-align: left;
height: auto;
line-height: 16px;
}
.subMenuItem p {
font-family: "Work Sans", Arial, sans-serif;
padding: 2px 0px 0px;
}
}
.rudderstackCloudLink {
background-image: url(../icons/cloud_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.rudderstackOpenSourceLink {
background-image: url(../icons/code.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 25px;
background-color: #f9f9f9;
min-height: 170px;
}
.blogLink {
background-image: url(../icons/cloud_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.videLibraryLink {
background-image: url(../icons/play_circle_outline.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.migrationLink {
background-image: url(../icons/transfer.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size: 30px;
background-color: #f9f9f9;
min-height: 170px;
}
.normalLink {
padding-top: 15px;
background-color: #f9f9f9;
font-weight: 600;
font-size: 15px;
color: #000000;
}
.documentationLink {
background-image: url("../icons/doc.png");
}
.rudderSegmentLink {
background-image: url("../icons/segment.png");
}
.rudderSnowplowLink {
background-image: url("../icons/snowplow.png");
}
.freeTrialRegion {
display: none;
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.freeTrialRegion {
display: block;
float: right;
}
}
@media only screen and (max-width: 1080px) and (min-width: 0px) {
.rudderstackCloudLink,.rudderstackOpenSourceLink,.documentationLink,.rudderSegmentLink, .rudderSnowplowLink,
.blogLink, .videLibraryLink, .migrationLink {
font-size: 14px;
background: none;
padding: 13px 0px 15px;
font-weight: 600;
min-height: auto;
}
.freeTrialLink {
width: 140px;
display: inline-block;
vertical-align: middle;
cursor: pointer;
text-align: center;
font-size: 16px;
font-weight: 700;
margin-right: 20px;
padding: 10px 3px;
color: #fff;
font-family: 'Work Sans', Arial, sans-serif;
background: #232D54;
text-decoration: none;
line-height: 19px;
border-radius:50px;
}
.normalLink {
color: #FFFFFF;
background: none;
font-size: 14px;
padding-left: 0px;
}
.freeSignUpItem {
display: none;
}
} | 0.393735 | 0.072637 |
.container {
width: 99%;
}
.topic, .topic a{
text-align: center;
background-color: #4db6ac;
color: #fff;
}
.description{
text-align: center;
color: #777;
margin-top: 30px;
}
#input,#output{
width: 100%;
padding: 10px;
}
#output{
background: #FCFCFC;
}
#legend,#legend2{
text-align:center;
font-weight: bold;
}
#legend2{
font-size: 26px;
color: #4db6ac;
}
#sendButton{
margin-left: 48%;
}
#table {
display: none;
}
#outputTable{
/*margin-left: 1%;*/
width: 100%;
}
#radio-btn {
text-align: center;
font-weight: bold;
color: #777;
}
#json-error{
color: red;
font-size: 24px;
font-style: italic;
margin-left: 18%;
font-weight: bold;
}
input[type=button]{
margin-left: 10%;
margin-top: 1%;
}
#tour {
font-size: 18px;
float: left;
margin-left: 8%;
}
#details {
color: #666;
font-size: 18px;
line-height: 28px;
font-family: 'Lato', sans-serif;
text-align:justify;
}
#social-media-cons {
margin-top: 10px;
}
#social-media-cons a {
text-decoration: none;
}
footer {
position: absolute;
font-size: 22px;
text-align: center;
height: 100px;
background: #fff;
width: 100%;
margin: 0 auto;
padding: 12px;
color: #636363;
line-height: 12px;
}
#footer_text {
font-size: 27px;
color: #37B78C;
}
a, a:active a:hover, a:focus{
outline: 0;
}
a .icon-stackexchange, .icon-github, .icon-linkedin, .icon-twitter {
text-decoration: none;
}
.icon-stackexchange, .icon-github, .icon-linkedin, .icon-twitter {
color: #C0C0C0;
margin-left: 15px;
transition: all 0.5s ease 0.2s;
text-decoration: none;
}
.icon-linkedin:hover {
color: #65B7D2;
text-decoration: none;
}
.icon-twitter:hover {
color: #45B0E3;
text-decoration: none;
}
.icon-stackexchange:hover {
color: #FF8A1B;
text-decoration: none;
}
.icon-github:hover {
color: #333333;
text-decoration: none;
}
:focus {
outline: 0;
}
::-moz-focus-inner {
border: 0;
}
@media (min-width: 1200px) {
#tour {
font-size: 18px;
}
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
#tour {
font-size: 16px;
}
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
#tour {
font-size: 11px;
margin-left:0px;
padding: 5px;
}
}
/* Landscape phones and down */
@media (max-width: 480px) {
#tour {
font-size: 9px;
margin-left:0px;
padding: 5px;
}
}
.github-corner:hover .octo-arm {
animation: octocat-wave 1000ms ease-in-out infinite;
}
@keyframes octocat-wave {
0%, 100% {
transform:rotate(0);
} 20%, 60% {
transform:rotate(-25deg);
} 40%, 80% {
transform:rotate(10deg);
}
} | static/main.css | .container {
width: 99%;
}
.topic, .topic a{
text-align: center;
background-color: #4db6ac;
color: #fff;
}
.description{
text-align: center;
color: #777;
margin-top: 30px;
}
#input,#output{
width: 100%;
padding: 10px;
}
#output{
background: #FCFCFC;
}
#legend,#legend2{
text-align:center;
font-weight: bold;
}
#legend2{
font-size: 26px;
color: #4db6ac;
}
#sendButton{
margin-left: 48%;
}
#table {
display: none;
}
#outputTable{
/*margin-left: 1%;*/
width: 100%;
}
#radio-btn {
text-align: center;
font-weight: bold;
color: #777;
}
#json-error{
color: red;
font-size: 24px;
font-style: italic;
margin-left: 18%;
font-weight: bold;
}
input[type=button]{
margin-left: 10%;
margin-top: 1%;
}
#tour {
font-size: 18px;
float: left;
margin-left: 8%;
}
#details {
color: #666;
font-size: 18px;
line-height: 28px;
font-family: 'Lato', sans-serif;
text-align:justify;
}
#social-media-cons {
margin-top: 10px;
}
#social-media-cons a {
text-decoration: none;
}
footer {
position: absolute;
font-size: 22px;
text-align: center;
height: 100px;
background: #fff;
width: 100%;
margin: 0 auto;
padding: 12px;
color: #636363;
line-height: 12px;
}
#footer_text {
font-size: 27px;
color: #37B78C;
}
a, a:active a:hover, a:focus{
outline: 0;
}
a .icon-stackexchange, .icon-github, .icon-linkedin, .icon-twitter {
text-decoration: none;
}
.icon-stackexchange, .icon-github, .icon-linkedin, .icon-twitter {
color: #C0C0C0;
margin-left: 15px;
transition: all 0.5s ease 0.2s;
text-decoration: none;
}
.icon-linkedin:hover {
color: #65B7D2;
text-decoration: none;
}
.icon-twitter:hover {
color: #45B0E3;
text-decoration: none;
}
.icon-stackexchange:hover {
color: #FF8A1B;
text-decoration: none;
}
.icon-github:hover {
color: #333333;
text-decoration: none;
}
:focus {
outline: 0;
}
::-moz-focus-inner {
border: 0;
}
@media (min-width: 1200px) {
#tour {
font-size: 18px;
}
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
#tour {
font-size: 16px;
}
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
#tour {
font-size: 11px;
margin-left:0px;
padding: 5px;
}
}
/* Landscape phones and down */
@media (max-width: 480px) {
#tour {
font-size: 9px;
margin-left:0px;
padding: 5px;
}
}
.github-corner:hover .octo-arm {
animation: octocat-wave 1000ms ease-in-out infinite;
}
@keyframes octocat-wave {
0%, 100% {
transform:rotate(0);
} 20%, 60% {
transform:rotate(-25deg);
} 40%, 80% {
transform:rotate(10deg);
}
} | 0.325092 | 0.056783 |
.yui-carousel {
visibility: hidden;
overflow: hidden;
position: relative;
text-align: left;
zoom: 1;
}
.yui-carousel.yui-carousel-visible {
visibility: visible;
}
.yui-carousel-content {
overflow: hidden;
position: relative;
}
.yui-carousel-element {
margin: 5px 0;
overflow: hidden;
padding: 0;
position: relative;
width: 32000px;
z-index: 1;
}
.yui-carousel-vertical .yui-carousel-element {
margin: 0 5px;
}
.yui-carousel-element li {
border: 1px solid #ccc;
float: left;
list-style: none;
margin: 1px;
overflow: hidden;
padding: 0;
text-align: center;
*float: none;
*display: inline-block;
*zoom: 1;
*display: inline;
}
.yui-carousel .yui-carousel-item-selected {
border: 1px dashed #000;
margin: 1px;
}
.yui-carousel-vertical {
height: 32000px;
margin: 0 5px;
width: auto;
}
.yui-carousel-vertical .yui-carousel-element li {
display: block;
float: none;
}
.yui-log .carousel {
background: #f2e886;
}
.yui-carousel-nav {
zoom: 1;
}
.yui-carousel-nav:after {
clear: both;
content: "";
display: block;
}
.yui-carousel-button-focus {
outline: 1px dotted #000;
}
.yui-carousel-min-width .yui-carousel-content {
margin: 0 auto;
}
.yui-skin-sam .yui-carousel, .yui-skin-sam .yui-carousel-vertical {
border: 1px solid #808080;
}
.yui-skin-sam .yui-carousel-nav {
background: url(sprite.png) repeat-x 0 0;
padding: 3px;
text-align: right;
}
.yui-skin-sam .yui-carousel-button {
background: url(sprite.png) no-repeat 0 -600px;
float: right;
height: 19px;
margin: 5px;
overflow: hidden;
width: 40px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-button {
background-position: 0 -800px;
}
.yui-skin-sam .yui-carousel-button-disabled {
background-position: 0 -2000px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled {
background-position: 0 -2100px;
}
.yui-skin-sam .yui-carousel-button input, .yui-skin-sam .yui-carousel-button button {
background-color: transparent;
border: 0;
cursor: pointer;
display: block;
height: 44px;
margin: -2px 0 0 -2px;
padding: 0 0 0 50px;
}
.yui-skin-sam span.yui-carousel-first-button {
background-position: 0 -550px;
margin-left: -100px;
margin-right: 50px;
*margin: 5px 5px 5px -90px;
}
.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button {
background-position: 0 -750px;
}
.yui-skin-sam span.yui-carousel-first-button-disabled {
background-position: 0 -1950px;
}
.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled {
background-position: 0 -2050px;
}
.yui-skin-sam .yui-carousel-nav ul {
float: right;
height: 19px;
margin: 0;
margin-left: -220px;
margin-right: 100px;
*margin-left: -160px;
*margin-right: 0;
padding: 0;
}
.yui-skin-sam .yui-carousel-min-width .yui-carousel-nav ul {
*margin-left: -170px;
}
.yui-skin-sam .yui-carousel-nav select {
position: relative;
*right: 50px;
top: 4px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul, .yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select {
float: none;
margin: 0;
*zoom: 1;
}
.yui-skin-sam .yui-carousel-nav ul li {
background: url(sprite.png) no-repeat 0 -650px;
cursor: pointer;
float: left;
height: 9px;
list-style: none;
margin: 10px 0 0 5px;
overflow: hidden;
padding: 0;
width: 9px;
}
.yui-skin-sam .yui-carousel-nav ul:after {
clear: both;
content: "";
display: block;
}
.yui-skin-sam .yui-carousel-nav ul li a {
left: -10000px;
position: absolute;
}
.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-focus {
outline: 1px dotted #000;
}
.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected {
background-position: 0 -700px;
}
.yui-skin-sam .yui-carousel-item-loading {
background: url(ajax-loader.gif) no-repeat 50% 50%;
position: relative;
text-indent: -150px;
} | udemy_8_7/public/typo3conf/ext/extension_builder/Resources/Public/jsDomainModeling/wireit/lib/yui/assets/skins/sam/carousel.css | .yui-carousel {
visibility: hidden;
overflow: hidden;
position: relative;
text-align: left;
zoom: 1;
}
.yui-carousel.yui-carousel-visible {
visibility: visible;
}
.yui-carousel-content {
overflow: hidden;
position: relative;
}
.yui-carousel-element {
margin: 5px 0;
overflow: hidden;
padding: 0;
position: relative;
width: 32000px;
z-index: 1;
}
.yui-carousel-vertical .yui-carousel-element {
margin: 0 5px;
}
.yui-carousel-element li {
border: 1px solid #ccc;
float: left;
list-style: none;
margin: 1px;
overflow: hidden;
padding: 0;
text-align: center;
*float: none;
*display: inline-block;
*zoom: 1;
*display: inline;
}
.yui-carousel .yui-carousel-item-selected {
border: 1px dashed #000;
margin: 1px;
}
.yui-carousel-vertical {
height: 32000px;
margin: 0 5px;
width: auto;
}
.yui-carousel-vertical .yui-carousel-element li {
display: block;
float: none;
}
.yui-log .carousel {
background: #f2e886;
}
.yui-carousel-nav {
zoom: 1;
}
.yui-carousel-nav:after {
clear: both;
content: "";
display: block;
}
.yui-carousel-button-focus {
outline: 1px dotted #000;
}
.yui-carousel-min-width .yui-carousel-content {
margin: 0 auto;
}
.yui-skin-sam .yui-carousel, .yui-skin-sam .yui-carousel-vertical {
border: 1px solid #808080;
}
.yui-skin-sam .yui-carousel-nav {
background: url(sprite.png) repeat-x 0 0;
padding: 3px;
text-align: right;
}
.yui-skin-sam .yui-carousel-button {
background: url(sprite.png) no-repeat 0 -600px;
float: right;
height: 19px;
margin: 5px;
overflow: hidden;
width: 40px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-button {
background-position: 0 -800px;
}
.yui-skin-sam .yui-carousel-button-disabled {
background-position: 0 -2000px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled {
background-position: 0 -2100px;
}
.yui-skin-sam .yui-carousel-button input, .yui-skin-sam .yui-carousel-button button {
background-color: transparent;
border: 0;
cursor: pointer;
display: block;
height: 44px;
margin: -2px 0 0 -2px;
padding: 0 0 0 50px;
}
.yui-skin-sam span.yui-carousel-first-button {
background-position: 0 -550px;
margin-left: -100px;
margin-right: 50px;
*margin: 5px 5px 5px -90px;
}
.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button {
background-position: 0 -750px;
}
.yui-skin-sam span.yui-carousel-first-button-disabled {
background-position: 0 -1950px;
}
.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled {
background-position: 0 -2050px;
}
.yui-skin-sam .yui-carousel-nav ul {
float: right;
height: 19px;
margin: 0;
margin-left: -220px;
margin-right: 100px;
*margin-left: -160px;
*margin-right: 0;
padding: 0;
}
.yui-skin-sam .yui-carousel-min-width .yui-carousel-nav ul {
*margin-left: -170px;
}
.yui-skin-sam .yui-carousel-nav select {
position: relative;
*right: 50px;
top: 4px;
}
.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul, .yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select {
float: none;
margin: 0;
*zoom: 1;
}
.yui-skin-sam .yui-carousel-nav ul li {
background: url(sprite.png) no-repeat 0 -650px;
cursor: pointer;
float: left;
height: 9px;
list-style: none;
margin: 10px 0 0 5px;
overflow: hidden;
padding: 0;
width: 9px;
}
.yui-skin-sam .yui-carousel-nav ul:after {
clear: both;
content: "";
display: block;
}
.yui-skin-sam .yui-carousel-nav ul li a {
left: -10000px;
position: absolute;
}
.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-focus {
outline: 1px dotted #000;
}
.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected {
background-position: 0 -700px;
}
.yui-skin-sam .yui-carousel-item-loading {
background: url(ajax-loader.gif) no-repeat 50% 50%;
position: relative;
text-indent: -150px;
} | 0.347316 | 0.054651 |
@charset "utf-8";
*{padding:0;margin:0;}
body{padding:0;margin:0;font-size:12px;font-family:Microsoft YaHei;color: #666666;background:#fff; overflow-x: hidden;
}
img{border:none;}
a{text-decoration:none;cursor:pointer;color:#666;}
a:hover,a:hover {text-decoration:none;color:#55acee;}
input{color: #777;outline: none;}
ul{padding:0;margin:0;list-style:none;}
li,p{padding:0;margin:0;}
.clear{clear:both;}
::-webkit-input-placeholder { /* WebKit browsers */color: #999;}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */color: #999;}
::-moz-placeholder { /* Mozilla Firefox 19+ */color: #999;}
:-ms-input-placeholder { /* Internet Explorer 10+ */color: #999;}
/*็พๅๆปๅจๆก*/
::-webkit-scrollbar {width:10px;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 10px;border-radius: 10px;}
::-webkit-scrollbar-thumb {-webkit-border-radius: 10px;border-radius: 10px;background:rgba(212,212,212,0.7); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }
::-webkit-scrollbar-thumb:window-inactive {background: #d4d4d4; }
/*้กถ้จไฟกๆฏๆก*/
#continer{width: 100%;min-width: 1180px}
.top-box{width: 100%;height: 32px; line-height: 32px; background: #eeeeee; margin-top: 0px;}
.top-box .box-con{width: 1180px; height: 32px; margin: 0 auto;}
.top-box .left-box{float: left;}
.top-box .left-box span{padding-left: 24px; background: url(../img/hi.png) no-repeat 2px center;}
.top-box span {display: inline-block; height: 18px; padding-left:20px; line-height: 18px; margin: 4px 0; }
.top-box span a{color: #666666;font-size: 12px;display: inline-block;}
.top-box span.sc-xw{padding-left: 0px}
.top-box span.sc-xw a{background: url(../img/sc_ico.png) no-repeat center left;padding-left: 20px;}
.top-box span a i{display: block; width: 14px; height: 16px; margin-right: 10px; float: left; background: url(../img/topbotBg.png) no-repeat;}
.top-box span a:hover{color: #1786CA;}
.top-box span.phone a,.top-box span.wxgzh a,.top-box span.call-on a,.top-box span.item a{ padding-right: 18px; background:url(../img/topjbg.jpg) right center no-repeat;position: relative; }
.top-box span.phone a i{margin-right: 4px;}
.top-box span.phone a:hover{color: #1786ca; padding-left: 20px; background:url(../img/topjbg.jpg) right center no-repeat; }
.top-box span.phone a:hover i{background: url(../img/topbotBg.png) left -16px;}
.top-box span.phone a .v-phone{ position: absolute; width: 142px; height: 142px; padding-top: 15px; text-align: center; background: #FFFFFF url(../img/topjbg2.jpg) no-repeat center top;border-left: 1px solid #a9c7db;border-right: 1px solid #a9c7db; border-bottom: 1px solid #a9c7db;box-shadow:0 2px 2px #b8d0e1;top: 25px; left: 0px;display: none; z-index: 9999 }
.top-box span.phone a:hover .v-phone{display:block;}
.top-box span.wxgzh a i{background-position: -17px top;}
.top-box span.wxgzh a:hover i{background-position: -17px -16px;}
.top-box span.wxgzh a .v-wx{ position: absolute; width: 142px; height: 142px; padding-top: 15px; text-align: center; background: #FFFFFF url(../img/topjbg2.jpg) no-repeat center top;border-left: 1px solid #a9c7db;border-right: 1px solid #a9c7db; border-bottom: 1px solid #a9c7db;box-shadow:0 2px 2px #b8d0e1; top: 25px; left: 0px;display: none; z-index: 9999 }
.top-box span.wxgzh a:hover .v-wx{display:block;}
.top-box .right-box{float: right;position: relative; z-index: 10000;}
.top-box span.call-on{position: relative;}
.top-box span.call-on a i{background-position: -43px top;}
.top-box span.call-on a:hover i{background-position: -43px -16px;}
.contact-box{width: 110px; padding: 8px 8px; min-height: 50px;border: 1px solid #a9c7db; border-top: none; background: #fff;position: absolute;top: 28px;left: 5px; z-index: 999999; border-top: none; display: none;box-shadow: 0 2px 2px #b8d0e1;}
.contact-box .tel-box{padding: 3px 0;}
.contact-box .tel-box i.city{font-size: 12px;color: #666;font-style: normal;display: block; line-height: 30px;}
.contact-box .tel-box i.tel{font-size: 15px;color: #ff1515;font-style: normal;display: block;}
.top-box span.call-on:hover .contact-box{display: block;}
.top-box span.item a{background: none; padding-right: 0;}
.top-box span.item a i{background-position: -63px top;}
.top-box span.item a:hover i{background-position: -63px -16px;}
/*logoๅบๅ*/
.logo-box{height: 86px;padding: 23px 0 0px;width: 1180px;margin: 0 auto; position: relative; z-index: 99;}
.logo-box a.logo{display: inline-block; height: 67px;width: 240px; float: left; /*background:url(../img/logo.jpg) no-repeat center left;*/}
.logo-box .ad-box{float: right;min-width: 200px;height: 24px;line-height: 24px}
.logo-box .ad-box ul{overflow: hidden;}
.logo-box .ad-box ul li{float: left;margin: 0 13px;font-size: 14px;color: #999;padding-left:30px }
.logo-box .ad-box ul li.ico1{background:url(../img/ad_ico1.png) no-repeat center left;}
.logo-box .ad-box ul li.ico2{background:url(../img/ad_ico2.png) no-repeat center left;}
.logo-box .ad-box ul li.ico3{background:url(../img/ad_ico3.png) no-repeat center left;}
.logo-box .ad-box ul li.ico4{background:url(../img/ad_ico4.png) no-repeat center left; margin-right: 0;}
.logo-box span.telphone{position: absolute; right: 0; top: 66px; z-index: 10000;}
/*ๅฏผ่ช*/
.nav-box{width: 100%;height:47px;position: relative; z-index: 1000;}
.nav-box .box-con{width: 1180px;margin: 0 auto;overflow: hidden;}
.nav-box .box-con .n-left{height: 47px; line-height: 47px;text-align: left;font-size: 14px; background: #055bc3 url(../img/listyle9.jpg) no-repeat 210px center; color: #fff; width: 240px; float: left;}
.nav-box .box-con .n-left span.qbfl{margin-left: 22px;}
.nav-box .box-con .n-left .banner-nav{display: none;}
.nav-box .box-con .n-left:hover .banner-nav{display: block;}
/*ๅทฆๅฏผ่ช*/
#show-nav div.banner-nav .left-nav{ }
#other-nav div.banner-nav .left-nav{background:url(../img/leftBf.png) repeat;}
div.banner-nav {height: 430px; position:absolute;top: 47px;display: none;}
div.banner-nav .left-nav {position:absolute;top:0px;left:0px;width:1000px;height:500px}
/*div.banner-nav .left-nav{ width:240px; height: 453px; background: url(../img/navbg.png) repeat;}*/
div.banner-nav .left-nav{ width:240px; height: 430px; }
div.banner-nav .left-nav dl{height: 428px; }
div.banner-nav .left-nav dl dd{ width:240px; text-align: left; font-size: 16px; /*height:74.5px; line-height:74.5px; */ color:#000; border-bottom: 1px solid #10a4fc; z-index: 9999;}
div.banner-nav .left-nav dl dd.dd6{height: 85px;}
div.banner-nav .left-nav dl dd.dd7{height: 58.5px;line-height: 58.5px}
div.banner-nav .left-nav dl dd.dd8{height: 51.2px;line-height: 51.2px}
/*div.banner-nav .left-nav dl dd:last-child{border-bottom: 1px solid #1cabeb;}*/
div.banner-nav .left-nav dl dd:hover{ margin-top: -2px; border-top: 1px solid #1cabeb;border-bottom: 1px solid #1cabeb;}
/*div.banner-nav .left-nav dl dd a{display: block;}*/
div.banner-nav .left-nav dl dd div.nav-left{display: block; width:196px; height: 77px; padding: 8px 22px 0; color: #FFFFFF; position: relative;}
div.banner-nav .left-nav dl dd div.nav-on{display: block; width:195px;height: 77px; padding: 8px 22px 0 22px; border-top: 1px solid #1786CA; border-left: 1px solid #1786CA; background: #fff ; position: absolute;right: 0px;z-index: 999999}
div.banner-nav .left-nav dl dd div.nav-left span.hot{width: 25px;height: 15px;background:url(../img/navjt.png) no-repeat center;position: absolute;right: 15px;top: 23px}
div.banner-nav .left-nav dl dd div.nav-on span.hot{width: 25px;height: 15px;position: absolute;right: 37px;top: 13px}
div.banner-nav .left-nav dl dd div.nav-on p{margin-top: -9px;}
div.banner-nav .left-nav dl dd div.nav-left a{color: #FFFFFF; }
div.banner-nav .left-nav dl dd div.nav-left a i{display:inline-block; float:left; margin:12px 10px 0 0;width: 24px; height: 22px;color:#fff}
div.banner-nav .left-nav dl dd div.nav-left a.navaico1 i{background-position: left top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico2 i{background-position: -39px top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico3 i{background-position: -71px top; width: 26px;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico4 i{background-position: -109px top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico5 i{background-position: -153px top;}
div.banner-nav .left-nav dl dd div.nav-left p{line-height: 24px; margin-top:-9px;}
div.banner-nav .left-nav dl dd div.nav-left p a{font-size: 12px; line-height: 24px; margin-right: 12px;}
div.banner-nav .left-nav dl dd div.nav-left h3{display: inherit;font-size: 12px;float: left;margin-right: 12px;font-weight: normal; margin-top: -10px;}
div.banner-nav .left-nav dl dd div.nav-left h3:hover{display: inherit;font-size: 12px;float: left;margin-right: 12px;font-weight: normal;}
div.banner-nav .left-nav dl dd div.nav-on h3{margin-top: -10px;}
div.banner-nav .left-nav dl dd div.nav-on h3 a{line-height: 47px;font-size: 12px;margin-top: -10px;display: inherit;float: left;margin-right: 12px; font-weight: normal;}
div.banner-nav .left-nav dl dd div.nav-on a i{display:inline-block; float:left; margin:12px 10px 0 0;width: 24px; height: 22px;color:#000}
div.banner-nav .left-nav dl dd div.nav-on a.navaico2 i{background-position: -39px -22px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico3 i{background-position: -71px -22px; width: 26px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico4 i{background-position: -109px -22px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico5 i{background-position: -153px -22px;}
div.banner-nav .left-nav dl dd div.nav-on p{line-height: 24px;}
div.banner-nav .left-nav dl dd div.nav-on p a{font-size: 12px; color: #666666; line-height: 24px; margin-right: 12px;}
div.banner-nav .left-nav dl dd .nav-right{ width:938px; max-height:429px; overflow:hidden; position:absolute; left:240px; top:-1px; display:none; border:1px solid #1786ca; border-left: none; z-index: 8;text-align: left;background: #fff;}
div.banner-nav .left-nav dl dd .nav-right .main-box{width: 938px; min-height: 430px; text-align: left;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left{width: 650px;padding: 0 21px 0 14px; height: 428px; background: url(../img/navBg1.jpg) no-repeat left bottom; float: left;border-right: 1px solid #e5e5e5}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .list{padding: 15px 0 0; overflow: hidden; }
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title{ width:100px; float:left;height: 30px;line-height: 30px; margin-right: 22px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p{font-size: 14px;color: #222; font-weight: bold; padding: 2px 0;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p a{ width: 100%; display: inline-block; font-size: 14px; color: #333;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p a span{font-size: 10px; color: #666666; float: right;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text{min-height: 30px;padding: 2px 0 10px; width: 528px; float: left;border-bottom: 1px dashed #cfcfcf;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul{overflow: hidden;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li{margin: 5px 25px 5px 0;float: left;line-height: 22px;font-size: 14px}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a.act{display: block; width: 80px;text-align: center;height: 22px;line-height: 22px;font-size: 14px;color: #fff;background: url(../img/actbg.png) no-repeat center;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a.red{color: #ff0c0c}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a strong{color: #ff0c0c}
div.banner-nav .left-nav dl dd .nav-right .main-box .right{width: 252px; float: left;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv{width: 228px; height:194px; padding: 14px 12px 17px; position: relative; border-bottom: 1px solid #eeeeee;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv p{font-size: 14px; display: block; width:228px;text-align: center; color: #00c1f8; line-height: 24px; position: absolute; left: 12px; top: 50px; z-index: 1000;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv img{position: absolute; width: 228px; height: 194px; left: 12px; top: 14px; z-index: 999;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv span{width: 228px; height: 32px; font-size: 12px; background: #00c1f8; position: absolute; left:12px; bottom: 17px; z-index: 1000; display: block; text-align: center; color: #FFFFFF; line-height: 32px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic a.ad{display: block; padding-top: 16px; text-align: center;}
/*ไธปๅฏผ่ช*/
.nav-box .box-con ul.nav-ul{float: left;overflow: hidden;width: 940px;position: relative;height: 47px;}
.nav-box .box-con ul.nav-ul li {float: left;position: relative;}
.nav-box .box-con ul.nav-ul li:first-child{margin-left: 20px;}
.nav-box .box-con ul.nav-ul li a{display: inline-block;font-size: 16px;color: #333333;height: 47px;line-height: 47px;padding: 0 25px;border-bottom: 2px solid #fff}
.nav-box .box-con ul.nav-ul li a:hover{color: #1cabeb;border-bottom: 2px solid #fff}
.nav-box .box-con ul.nav-ul li a.current{color: #1cabeb;}
.nav-box .box-con ul.nav-ul li a.tophot{background: url(../img/hot.gif) no-repeat right top;}
.nav-box .box-con ul.nav-ul li.hm-nav{height: 68px;width: 135px;right: 65px;top: 0px;position: absolute;}
.nav-box .box-con ul.nav-ul li.cy-nav{height: 68px;width: 135px;right: 65px;top: 2px;position: absolute;}
.nav-box .box-con ul.nav-ul li .urgent{display: block;width: 27px;height: 16px;background: url(../img/urgent.png) no-repeat center;position: absolute;right: -10px;top: 3px}
.phonenav{ float: right; position: absolute; right: 0px; top: 30px; display: none;}
.imgbot{width:54px; height: 54px;}
.menubox{width: 115px; display: none; position: absolute; top: 40px; right: 8px; z-index: 100;}
.menubox span{display: block; height: 31px;}
.menubox ul {display: block; width: 120px; margin: 0; padding: 0; background: url(../img/menu_bg.png) repeat-y;}
.menubox ul li{width: 96px; margin: 0 auto; height: 44px; border-bottom: 1px solid #dedcdf;}
.menubox ul li a{text-align: center; line-height: 44px; display: block; color: #1f1f1f; font-size: 14px;}
.menubox ul li:last-child{border-bottom: none;}
/*banner*/
.banner-box{position: relative;}
.carousel-inner>.item>a>img, .carousel-inner>.item>img{ width: auto; height: 431px; position: absolute; left: 50%; margin-left: -960px;}
/*bannerๅณไพง*/
.banrightbox{width: 1180px; position:absolute; left: 50%; top: 0; margin-left: -590px;}
.banner-fc {height: 410px;right: 0%;position: absolute;top: 15px;width: 240px;}
.banner-right{width: 240px;height: 400px; position: absolute;z-index: 990;right: 0px; top: 0px;background:url(../img/rightBf.png) repeat;;}
.banner-right .box{padding: 16px 17px;border-bottom: 1px solid #dddddd;padding-bottom: 10px;}
.banner-right .box:last-child{border-bottom: none}
.banner-right .box p.name{font-size: 14px;color: #000;height: 16px;line-height: 16px;padding-left: 10px ; margin-bottom: 10px; border-left: 5px solid #1cabeb;position: relative;}
.banner-right .box p.name span.bhot{display: inline-block;width: 16px;height: 20px; position: absolute;top: -2px;left: 70px;}
.banner-right .box p.list{font-size: 12px;color: #666;height: 28px; line-height: 28px;padding: 0px 0 0px 10px;background:url(../img/list_ico.png) center left no-repeat;overflow: hidden;}
.banner-right .box p a{color: #666666;}
.banner-right .box p a.more{display: inline-block; width: 9px; height: 9px; background: url(../img/more.jpg) no-repeat; float: right; margin:3px 5px;}
.banner-right .box .zh-box{width:207px; height:32px;line-height: 32px; background: url(../img/searchbg.jpg) no-repeat;}
.banner-right .box .zh-box input.zh-box{height: 32px;border: none;padding: 0 5px;width: 155px; background: none; float: left;}
.banner-right .box .zh-box input.sb-box{height: 28px;border: none;padding: 0 5px;width: 185px;}
.banner-right .box .s-btn{width: 40px;text-align: center;height: 32px;background: none;display: inline-block; float: left; cursor: pointer;}
.kfbox{width: 205px; height: 104px; overflow: hidden; margin: 0 auto;}
.kflist{width: 100%; height: 65px; overflow: hidden; position: relative;}
.kflist ul li{width: 205px; height: 65px;}
.kflist ul li span{display:inline-block; width: 65px; height: 65px; float: left;}
.kflist ul li span img{width: 65px; height: 65px; border-radius: 65px;}
.kfright{width: 128px; float: right;}
.kfright h3{font-size: 16px; color: #333333; font-weight: normal; margin-bottom:10px; margin-top: 9px; height: 22px; overflow: hidden;}
.kfright h3 em{font-style: normal; font-size: 12px; color: #999999; }
.kfright a{display: inline-block; width: 60px; height: 22px; line-height: 22px; text-align: center; color: #FFFFFF; font-size: 12px; background: #fa4f4f;}
.kfright a.zx{background: #007cc6; margin-right: 4px;}
.banner-right .box .hy-sel {padding: 0 4px; height: 28px; width: 197px; margin-top: -1px; border: 1px solid #ccc;position: relative;
background: #fff url('../img/xjt.png') no-repeat right center; cursor:pointer;margin-bottom: 28px;border-radius:0px 0px 4px 4px; }
.banner-right .box .hy-sel input.n-val {display: block;width: 100%;height: 20px;line-height: 20px; padding: 5px 0; color: #000; border: 0;outline: 0;background: none;
cursor:pointer;position: absolute;}
.banner-right .box .hy-sel ul {width: 100%;display: none;position: absolute;left: -1px;top: 29px;overflow: hidden;background-color: #fff;max-height: 170px;overflow-y: auto;border: 1px solid #9ac1d9; border-top: 0;z-index:9999999;}
.banner-right .box .hy-sel ul li {height: 30px;line-height: 30px;overflow: hidden; color: #000; padding: 0 10px;cursor: pointer; font-size: 12px;}
.banner-right .box .hy-sel ul li.on {background-color: #c1d8e4;}
.banner-right .box .s-btn{width: 70px;text-align: center;height: 26px;line-height: 26px;font-size: 12px;color: #fff;background: #ff4c4c;display: inline-block;margin: 12px 0 5px;border-radius: 3px;margin-top: 32px;}
.banner-right .box .s-btn:hover{background: #ff0000;color: #fff}
/*ๆๅกๅ
ๅฎน*/
.service{width:100%; background: #f3f3f3; height: 700px; margin: -3px auto 0;}
.titlebox{width: 100%; text-align: center; padding: 50px 0; overflow: hidden;}
.titlebox h3{font-size: 30px; font-weight: normal; color: #333333; line-height: 28px;}
.titlebox p{color: #666666; font-size: 14px; line-height: 28px; margin: 15px 0 0;}
.titlebox i{display: inline-block; width: 80px; height: 3px; background: #aaaaaa; margin: 0 auto;}
.in_services,.in_you,.in_pingjia.in_zixun.footer{width: 100%;height: auto;overflow: hidden;min-width: 1259px;margin: 0 auto;background-color: #f5f5f5;padding-bottom: 40px;}
.in_se_tt{width: 100%;height: 100px;min-width: 1259px;color: #555;text-align: center;position: relative;margin: 0 auto;line-height: 100px;font-size: 20px;font-weight: bold;margin-top: 10px;}
#menu-wrapper { position: relative; display: block; z-index: 2; height: 82px; font-size: 16px; color: #000; text-align: center;}
.menu_se { display: table; margin: 0 auto; padding: 0; width: 700px; height: 55px; text-align: left; list-style-type: none; background:url(../img/heng.png) no-repeat 33px 2px;}
.menu_se li { position: relative; display: inline-block; float:left ; margin-right: 80px; cursor: pointer; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -ms-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.menu_se li:first-child{margin-right: 74px;}
.menu_se li:last-child{margin-right: 0;}
.menu_se a{ color: #666666; text-decoration: none; font-size: 16px;text-align: center;display: inline-block; }
.menu_se li i.noline{position: absolute; left: 43px; top: 41px; }
.menu_se li i.noline2{left: 41px;top: 41px;}
.menu_se li i.noline3{left: 21px;top: 41px;}
.menu_se li i.noline4{left: 50px;top: 41px;}
.menu_se li i{width: 125px; height: 3px; display: block; position: absolute; display: none; z-index: 0;
background: -webkit-linear-gradient(left, rgba(26,131,196,1), rgba(26,131,196,0)); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, rgba(26,131,196,1), rgba(26,131,196,0)); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, rgba(26,131,196,1), rgba(26,131,196,0)); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, rgba(26,131,196,1), rgba(26,131,196,0)); /* ๆ ๅ็่ฏญๆณ๏ผๅฟ
้กปๆพๅจๆๅ๏ผ */
}
.menu_se a span{display:inline-block; width: 18px; height: 18px; margin-top: 15px; background: url(../img/serviceBtn01.png) no-repeat;}
.menu_se a.selected { color: #1ea1da; text-decoration: none; font-weight: bold; }
.menu_se a.selected span{background: url(../img/serviceBtn02.png) no-repeat; width: 24px; height: 24px; margin-top: 11px;}
#submenu-wrapper { position: relative; right: 0; left: 0; display: block; z-index: 1; width: 100%; height: 390px; margin: -0em auto 0; font-size: 13px; overflow: hidden; }
.submenu {width: 1180px; background: #FFFFFF; display: block; height: 380px; margin: 0 auto; clear: both; margin-bottom: 10px;}
.gszcbox{width:176px; height: 288px; padding: 92px 32px 0; float: left; background: url(../img/gszcbg.jpg) no-repeat;}
.gszcbox span{display: block; font-size: 12px; color: #FFFFFF; line-height: 30px;}
.submenu .dljz{background: url(../img/gszcbg2.jpg) no-repeat;}
.submenu .sb{background: url(../img/gszcbg3.jpg) no-repeat;}
.submenu .gjj{background: url(../img/gszcbg4.jpg) no-repeat;}
.submenu .xkz{background: url(../img/gszcbg5.jpg) no-repeat;}
.zhucelistbox{width: 312px; height: 380px; background: #FFFFFF; float: left; z-index: 0;border-right: 1px solid rgba(212,212,212,0.7) ;}
.submenu div:nth-of-type(4){border-right: 0;}
.zcbox{width: 310px; height: 330px;padding-top: 50px; margin: 0 auto; }
.zcbox i{display: block; width: 60px; height: 60px; margin: 0 auto 25px;}
.zcbox span{font-size: 20px; color: #333333; display: block; text-align: center; margin-bottom: 15px;}
.zcbox span h2{color:#333333; display: inline-block; font-size: 20px;}
.zcbox p{font-size: 12px; color: #666666; text-align:center; line-height: 30px;}
.zcbox strong{display: block; text-align: center; font-size: 20px; color: #ff0000; font-weight: normal; margin-top: 15px;}
.zcbox i.zcimg1{background: url(../img/come01.png) no-repeat;}
.zcbox i.zcimg2{background: url(../img/come02.png) no-repeat;}
.zcbox i.zcimg3{background: url(../img/come03.png) no-repeat;}
.zcbox i.zcimg4{background: url(../img/come04.png) no-repeat;}
.zcbox i.zcimg5{background: url(../img/come05.png) no-repeat;}
.zcbox i.zcimg6{background: url(../img/come06.png) no-repeat;}
.zcbox i.zcimg7{background: url(../img/come07.png) no-repeat;}
.zcbox i.zcimg8{background: url(../img/come08.png) no-repeat; width: 84px;}
.zcbox i.zcimg9{background: url(../img/come09.png) no-repeat;}
.zcbox i.zcimg10{background: url(../img/come010.png) no-repeat; width: 71px;}
.zcbox i.zcimg11{background: url(../img/come011.png) no-repeat; width: 79px;}
.zcbox i.zcimg12{background: url(../img/come012.png) no-repeat;}
.zcbox i.zcimg13{background: url(../img/come013.png) no-repeat; width: 82px;}
.zcbox i.zcimg14{background: url(../img/come014.png) no-repeat;width: 82px;}
.zcbox i.zcimg15{background: url(../img/come015.png) no-repeat;width: 82px;}
.zcbox p a{display:inline-block; width: 90px; height: 35px; margin: 25px 11px 0; text-align: center; line-height: 35px; color: #FFFFFF;}
.zxzx{background: #007cc6;}
.lzbl{background: #fa4f4f;}
.submenu2 div.hover2 span{color: #1686c9; font-weight: bold;}
div.hover2{ position: relative; z-index: 10; -webkit-animation: boxing .25s forwards; -moz-animation: boxing .25s forwards; -ms-animation:boxing .25s forwards; animation: boxing .25s forwards; }
div.hover2 .zcimg1{background: url(../img/come1.png) no-repeat;}
div.hover2 .zcimg2{background: url(../img/come2.png) no-repeat;}
div.hover2 .zcimg3{background: url(../img/come3.png) no-repeat;}
div.hover2 .zcimg4{background: url(../img/come4.png) no-repeat;}
div.hover2 .zcimg5{background: url(../img/come5.png) no-repeat;}
div.hover2 .zcimg6{background: url(../img/come6.png) no-repeat;}
div.hover2 .zcimg7{background: url(../img/come7.png) no-repeat;}
div.hover2 .zcimg8{background: url(../img/come8.png) no-repeat;}
div.hover2 .zcimg9{background: url(../img/come9.png) no-repeat;}
div.hover2 .zcimg10{background: url(../img/come10.png) no-repeat;}
div.hover2 .zcimg11{background: url(../img/come11.png) no-repeat;}
div.hover2 .zcimg12{background: url(../img/come12.png) no-repeat;}
div.hover2 .zcimg13{background: url(../img/come13.png) no-repeat;}
div.hover2 .zcimg14{background: url(../img/come14.png) no-repeat;}
div.hover2 .zcimg15{background: url(../img/come15.png) no-repeat;}
div.hover2 span h2{color: #1686c9; font-weight: bold;}
div.hover2 span.dlspan{color: #19cc65;}
div.hover2 span.sbspan{color: #f99f3b;}
div.hover2 span.gjjspan{color: #fa4f4f;}
div.hover2 span.xkzspan{color: #b063ad;}
.submenu2 div.hover2 span h2{color: #19CC66;}
.submenu3 div.hover2 span h2{color: #F99F3B;}
.submenu4 div.hover2 span h2{color: #FB4F4F;}
.submenu5 div.hover2 span h2{color: #B163AE;}
@-webkit-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@-moz-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@-ms-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
/*team*/
.team{width: 100%; min-height: 570px; background: #ffffff;}
.team .titlebox{padding: 45px 0 42px;}
.teambox{width: 1180px; margin: 0 auto;}
.hd{position: relative;}
.hd a{display: block; width: 50px; height: 50px; background: url(../img/hdBg.png) no-repeat; position: absolute;z-index: 1000;}
.hd a.next{background-position: -53px 0px; right: -112px; top: 130px;}
.hd a.prev{background-position: 0px -50px; left: -112px; top: 130px; }
.hd a.prev:hover{background-position: 0px -0px; }
.hd a.next:hover{background-position: -53px -50px; }
.flashBg{width:1180px;height:350px; margin:0 auto;position:relative;overflow:hidden;}
.flashBg ul.mobile{width:2000%;height:350px; position:absolute;}
.flashBg ul.mobile li{ float:left;width:225px; margin-right: 94px; height:350px;color:#6C6E85;}
.flashBg ul.mobile li a.imga{ display: block; width: 163px; height: 163px; margin: 0 auto;}
.flashBg ul.mobile li h3{ text-align: center; font-size: 16px; color: #333333; font-weight: normal; padding: 10px 0;}
.flashBg ul.mobile li h3 span{font-size: 12px; color: #666666;}
.flashBg ul.mobile li p{font-size: 12px; color: #666666; line-height: 20px;}
.flashBg ul.mobile li p.fwrx{font-size: 14px; padding: 10px 0 14px;}
.flashBg ul.mobile li p.fwrx strong{font-size: 20px; color: #ff7f00;}
.hotphone{ width: 223px; height: 35px; background: url(../img/telphone.jpg) no-repeat;}
.hotphone #tel{border: none; background: none; width: 158px; height: 35px; padding: 0 10px 0 15px; font-size: 12px; color: #666; line-height: 35px; float:left}
.flashBg ul.mobile li a strong{font-size: 16px; color: #2f2f2f; display: block; margin-bottom: 20px;}
.flashBg ul.mobile li a strong span{font-weight: normal; color: #666666;}
.flashBg ul.mobile li a div{display:table-cell; width: 260px; height: 210px; text-align: center; vertical-align: middle;}
.hotphone .coolbg{ width:40px;height:35px; cursor:pointer; border:none; float:right; background:none}
/*ๆๅกๆต็จ*/
.in_lc{width: 100%; height: 480px; background:#1585c9;overflow: hidden;position: relative; }
.in_lc>div{width: 1180px;margin:0px auto;}
.in_lc>div>div{width:135px;float: left; position: relative; margin-right: 70px;}
.in_lc .circle{width:135px;height: 135px;border: 1px solid #fff;border-radius:75px;color: #fff;text-align: center;margin: 0 auto;}
.in_lc i{width: 52px;height: 52px;background:url(../img/lc01.png) no-repeat center center;display: block;margin-left: 41.5px;margin-top: 41.5px;transition: .5s;}
.in_lc p{margin-top: 10px}
.in_lc>div>div>p{font-size: 14px;color: #fff; line-height: 22px;}
.in_lc u{width: 35px;height: 35px;background:#FFF;border-radius: 32px; border: 1px solid #FFFFFF;position: absolute;left: 5px;top:5px;color: #1585c9;text-decoration: none;font-size: 18px;text-align: center;line-height: 35px;font-weight:100; font-family: arial;}
.in_lc .qyht{background:url(../img/lc02.png) no-repeat center center;}
.in_lc .ymsj{background:url(../img/lc03.png) no-repeat center center;}
.in_lc .cxkf{background:url(../img/lc04.png) no-repeat center center;}
.in_lc .shys{background:url(../img/lc05.png) no-repeat center center;}
.in_lc .hqwh{background:url(../img/lc06.png) no-repeat center center;}
.in_lc>div>div:hover>.circle{background: #fff;color: #1ea1da;}
.in_lc>div>div:hover u{background: #1585c9; color: #FFFFFF;}
.in_lc>div>div:hover i{background:url(../img/lc1.png) no-repeat; transform: rotate(360deg); -ms-transform: rotate(360deg); /* IE 9 */ -webkit-transform: rotate(360deg); /* Safari and Chrome */ transition: .5s; }
.in_lc>div>div:hover .qyht{background:url(../img/lc2.png) no-repeat center center;color:#1ea1da;}
.in_lc>div>div:hover .ymsj{background:url(../img/lc3.png) no-repeat center center;}
.in_lc>div>div:hover .cxkf{background:url(../img/lc4.png) no-repeat center center;}
.in_lc>div>div:hover .shys{background:url(../img/lc5.png) no-repeat center center;}
.in_lc>div>div:hover .hqwh{background:url(../img/lc6.png) no-repeat center center;}
.in_lc>div>div h3{font-size: 20px; color: #ffffff; text-align: center; font-weight: normal; line-height: 28px; margin: 18px 0 10px;}
.in_lc .titlebox{padding: 50px 0 42px;}
.in_lc .titlebox h3{color: #FFFFFF;}
.in_lc .titlebox p{color: #FFFFFF;}
.in_lc .titlebox i{background: #FFFFFF; width: 80px; height: 3px; margin: 10px auto 0;}
/*่ต่ฎฏ*/
.aboutNews{width: 100%; clear: both; padding-bottom: 47px; overflow: hidden;}
.ck-slide ul {margin: 0; padding: 0; list-style-type: none; }
.ck-slide {position: relative; overflow: hidden; }
.ck-slide ul.ck-slide-wrapper {z-index: 1; margin: 0; padding: 0;}
.ck-slide ul.ck-slide-wrapper li { position: absolute; margin-top:0px;width: 1180px;text-align: center; }
.newsdl dd:hover div.date{background: #f39800; border: 1px solid #FFFFFF;}
.newsdl dd:hover div.date strong{color: #FFFFFF;}
.newsdl dd:hover div.date em{color: #FFFFFF;}
.newsdl {width: 1180px; overflow: hidden;}
.newsdl dd{width: 352px; float: left; margin-right: 62px; margin-bottom: 28px;}
.newsdl dd:nth-of-type(3){margin-right: 0;}
.newsdl dd:nth-of-type(6){margin-right: 0;}
.newsdl dd div.date{width: 85px; height: 85px; border: 1px solid #333333; border-radius:42px; text-align: center; float: left;}
.newsdl dd div.date strong{font-size: 30px; line-height: 30px; display: block; text-align: center; font-weight: normal; color: #333333; margin-top: 17px;}
.newsdl dd div.date em{font-style: normal; font-size:14px; color: #333333;}
.newsdl dd div.xqbox{ width: 245px; float: left; margin-left: 20px;}
.newsdl dd div.xqbox a{display: block; text-align: left;}
.newsdl dd div.xqbox a h3{font-size: 16px; color: #333333; line-height: 30px; font-weight: normal;}
.newsdl dd div.xqbox a p{font-size: 14px; color: #888888; line-height: 24px;}
.ck-slide .ck-prev, .ck-slide .ck-next {position: absolute;top: 50%; z-index: 2;width: 35px;height: 70px;margin-top: -35px; border-radius: 3px;opacity:1;background-repeat: no-repeat;transition: opacity .2s linear 0s; }
.ck-slide .ck-prev { left: 5px;font-family:tubiao;color:#fff;font-size: 60px;}
.ck-slide .ck-next { right: 12px;font-family:tubiao;color:#fff;font-size: 60px;}
.ck-slidebox { position: absolute; left: 50%; bottom: 0px; z-index: 30; }
.ck-slidebox ul { height: 20px; padding: 0 4px; border-radius: 8px;}
.ck-slidebox ul li { float: left; height: 12px; margin: 4px 5px; }
.ck-slidebox ul li em { display: block; width: 12px; height: 12px; border-radius: 100%;background:#666666; text-indent: -9999px; cursor: pointer; }
.ck-slidebox ul li.current em { height: 12px; width: 40px; border-radius: 5px; background-color: #1585c9; }
.ck-slidebox ul li em:hover { background-color: #1585c9; }
.ck-slide { width: 1180px; height: auto; margin: 0 auto;}
.ck-slide ul.ck-slide-wrapper { height: 255px;}
/*ๅฎขๆท*/
.in_kehu{width: 100%;height: 500px;position: relative;overflow: hidden;background:#f3f3f3}
.in_kehu h5{background:transparent;}
.in_kehu .titlebox{padding: 50px 0 38px;}
.business .box ul.items li { float: left; width: 256px; height: 300px; margin: 0 33px; background:#f5f5f5; overflow: hidden; }
.clients { width: 100%;/* background: url(../img/jh.jpg) bottom no-repeat; background-size: cover;*/}
.clients .box { position: relative; -webkit-transition: all .3s ease-in-out 0s; -moz-transition: all .3s ease-in-out 0s; -ms-transition: all .3s ease-in-out 0s; -o-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s;}
.clients .box ul.items { margin: 0 auto; margin-top: 10px; width: 1180px; font-size: 0; overflow: hidden;}
.clients .box ul.items li { position: relative; padding: 10px; width: 148px; height: 98px; overflow: hidden; z-index: 10; float: left;margin:0 34px 23px 0; background-color: #FFFFFF;}
.clients .box ul.items li.tdsw { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat 20px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.tdsw { background:#FFFFFF url(../img/clients.png) no-repeat 20px -90px; }
.clients .box ul.items li.brkx { top: -400px; background:#FFFFFF url(../img/clients.png) no-repeat -160px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.brkx { background:#FFFFFF url(../img/clients.png) no-repeat -160px -95px; }
.clients .box ul.items li.tdkj { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat -336px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.tdkj { background:#FFFFFF url(../img/clients.png) no-repeat -336px -90px; }
.clients .box ul.items li.cas { top: -400px; background:#FFFFFF url(../img/clients.png) no-repeat -515px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.cas { background:#FFFFFF url(../img/clients.png) no-repeat -515px -95px; }
.clients.active .box ul.items li.cas { top: 0px; }
.clients .box ul.items li.sipo { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat -695px 40px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.sipo { background:#FFFFFF url(../img/clients.png) no-repeat -695px -80px; }
.clients .box ul.items li.apple { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -870px 25px; margin-right: 0; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.apple { background:#FFFFFF url(../img/clients.png) no-repeat -870px -95px; }
.clients .box ul.items li.das { top: -550px; background:#FFFFFF url(../img/clients.png) no-repeat -1048px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.das { background:#FFFFFF url(../img/clients.png) no-repeat -1048px -90px; }
.clients .box ul.items li.hunantv { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -1226px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.hunantv { background:#FFFFFF url(../img/clients.png) no-repeat -1226px -95px; }
.clients .box ul.items li.sino { top: -550px; background: #FFFFFF url(../img/clients.png) no-repeat -1406px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.sino { background:#FFFFFF url(../img/clients.png) no-repeat -1406px -95px; }
.clients .box ul.items li.report { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -1585px 40px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.report { background:#FFFFFF url(../img/clients.png) no-repeat -1585px -80px; }
.clients .box ul.items li.gedu { top: 300px; background:#FFFFFF url(../img/clients.png) no-repeat -1758px 20px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.gedu { background:#FFFFFF url(../img/clients.png) no-repeat -1758px -100px; }
.clients .box ul.items li.bgg { top: -700px; background: #FFFFFF url(../img/clients.png) no-repeat -1937px 40px; margin-right: 0; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.bgg { background:#FFFFFF url(../img/clients.png) no-repeat -1937px -80px; }
.clients.active .box ul.items li{ top: 0px; }
.clients .box ul.items li span { position: absolute; bottom: -30px; }
.clients .box ul.items li.bg.all { position: absolute; width: 1155px; height: 450px; background-color: White; -moz-opacity: 0.3; opacity: 0.3; filter: alpha(opacity=30); }
.clients .box ul.items li.bg.one { position: absolute; background: #eee; -moz-opacity: 0.5; opacity: 0.5; filter: alpha(opacity=50); -webkit-transition: all .3s ease-in-out 0s; -moz-transition: all .3s ease-in-out 0s; -ms-transition: all .3s ease-in-out 0s; -o-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s; display: none; }
.clients .box ul.mini { display: none; }
/*็ซๅณๅจ่ฏข*/
.footljzx{width: 100%; height: 100px; padding-top: 150px; background: url(../img/ad.jpg) no-repeat center center; clear: both;}
.footljzx a{display: block; width: 148px; height: 43px; border: 1px solid #FFFFFF; border-radius: 3px; margin: 0px auto 0; line-height: 42px; text-align: center; font-size: 16px; color: #ffffff;}
/**/
.jpservice{width: 1180px; margin: 0 auto; height: 75px; padding: 38px 0 37px; clear: both; overflow: hidden;}
.jpservice dl{width: 282px; float: left; overflow: hidden;}
.jpservice dl dt{width: 75px; height: 75px; float: left;}
.jpservice dl dd{width: 182px; padding-top: 12px; float: left; margin-left: 24px;}
.jpservice dl dd h3{font-size: 18px; color: #333333; font-weight: normal; margin-bottom: 10px;}
.jpservice dl dd p{font-size: 12px; color: #666666;}
.jpservice dl.seconddl{width: 345px;}
.jpservice dl.seconddl dd{width: 210px;}
.jpservice dl.threedl{width: 292px;}
.jpservice dl.threedl dd{width: 120px;}
.jpservice dl.lastdl{width: 260px;}
.jpservice dl.lastdl dd{width: 160px;}
/*่็ณปๆไปฌ*/
.in_cont{background:#4a4e53;width: 100%;height: 520px;overflow: hidden;position: relative;}
.in_cont .titlebox{padding: 50px 0 27px;}
.in_cont .titlebox h3{color: #cccccc;}
.in_cont .titlebox p{color: #cccccc;}
.in_cont .kuang{border: 1px solid #fff;}
.in_cont .ser_biao h5{background:#474847;color: #fff;}
.in_cont p,.in_cont span{color:#fff;}
.in_cont span{margin-top: 10px;}
.in_cont .cont{margin: 0px auto; padding-top: 30px; position: relative;width: 1180px; border-top: 1px solid #63686e;}
.cont .cont_input{width: 652px;position: relative; float: left;}
.cont_input #dianhua{width: 290px;height: 38px;background:#575b60;color: #cccccc;border:0px;outline: 0px;margin: 18px 0 18px 32px;padding-left: 20px;
width:290px\9;padding: 0px 10px\9; position: absolute\9; top: 75px\9; left: 310px\9; line-height: 38px\9; position: absolute;
}
.cont_input select{width: 310px;height: 38px;background:#575b60;color: #fff;border:0px;outline: 0px;margin: 18px;padding-left: 20px;padding: 8px 18px\9;}
.cont_input #buchong{width: 622px;height: 58px;background:#575b60; padding-top:10px; padding-right:10px; padding-bottom:10px; color: #cccccc;border:0px;outline: 0px;margin: 18px 0;padding-left: 20px;font-size: 14px;margin-top: 12px;margin-bottom: 16px;}
.cont_input #reset,#tijiao{width: 148px;height: 40px;padding-left: 0px;float: right;margin-right: 21px;background:#575b60;color: #cccccc;border:0px;outline: 0px;margin: 22px;margin-top: 0px;}
.cont_input #tijiao{margin-right: 0;}
.cont_input #reset:hover,#tijiao:hover{background: #333;cursor: pointer;}
.cont_input span{color: #cccccc;font-size: 12px;position:absolute;left: 0px;top:-14px;}
.cont_input .shijian{left: 344px;}
.cont_input .yusuan{top:62px;}
.cont_input .dianhua{left:344px;top:62px;}
.cont_input .buchong{top:132px;}
#shijian{margin: 18px 0 18px 32px;}
.cont_cont{width: 467px;overflow: hidden;position: relative;float: left; margin-left: 60px;}
.footleft{width: 281px; float: left;}
.footleft span{color: #cccccc; font-size: 12px; margin: 17px 0 17px; display: block;}
.footleft p.fwqq{font-size: 12px; color: #cccccc; line-height: 32px;}
.footleft p.fwrx2{font-size: 14px; color: #cccccc; font-weight: bold; line-height: 20px; text-align: right; margin: 10px 3px;}
.ewmbox{width: 122px; float: right;}
.ewmbox span{ display: block; text-align: center; line-height: 30px; margin: 0;}
.select-wrapper{ font: normal 14px '\5FAE\8F6F\96C5\9ED1'; outline: 0px; position: relative; cursor: pointer; display: inline-block; *display: inline; *float: left; *margin-right: 10px; background: #666; border: 1px solid #e3e3e3; background:#333;color: #fff;border:0px;outline: 0px;margin: 18px 18px 18px 0; }
.select-button{ font: normal 12px '\5FAE\8F6F\96C5\9ED1';border: 0; background: #575b60; cursor: pointer; padding: 0 26px 0 10px; overflow: hidden; text-align: left; outline: none; white-space: nowrap; word-break: keep-all; text-overflow: ellipsis; color:#cccccc;}
.select-down{ position: absolute; top: 21px; right: -10px; height:0; width:0; overflow: hidden; font-size: 0; border-color: #333 transparent transparent transparent; border-style: solid; border-width: 6px; }
.disabled{ color: #cccccc; }
.select-list{background: #44474b; display: none; z-index: 2; position: absolute; overflow: hidden; }
.select-list ul{ margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; line-height: 34px; max-height: 240px; }
.select-list ul li{ width: 100%; padding-left: 10px; cursor: pointer; overflow: hidden; white-space: nowrap; word-break: keep-all; text-overflow: ellipsis; background:#44474b; }
.select-list ul li.selected, .select-list ul li:hover{ color: #000; background: #ddd; }
/* ไธๆๅ่กจไธๅฏ็จๆ ทๅผ */
.select-button-disable{ color: #ccc; width: 238px; height: 34px; border: 1px solid #e3e3e3; border-radius: 3px;
background: #fff; cursor: pointer; padding-left: 10px; overflow: hidden; text-align: left; outline: none; }
.select-down-disable{ color: #ccc; font-size: 18px; position: absolute; top: 0; right: 10px; line-height: 34px; }
.banquan{height: 97px; width: 100%; text-align: center; color: #555555; font-size: 12px; padding: 20px 0 0; }
.banquan p{line-height: 40px;font-size: 12px; color: #333333;}
.banquan p a{font-size: 12px; color: #333333; margin: 0 10px;}
.servicelist{display: none; width: 100%;}
.servicelist li{width: 20%; float: left;}
.servicelist li a{ display: block; text-align: center;}
.servicelist li a img{display: block; margin:10px auto;}
.servicelist li a span{font-size: 14px; color: #666666;}
.phoneNews{display: none;}
.carousel-inner{height: 430px;}
/*็งปๅจ็ซฏไบ็บงๅฏผ่ช*/
.sp-box{width: 100%;}
.csp-list {width:100%; position:relative;}
.csp-list .spname {height:100%; width:30%; max-width: 180px; float: left; background: #f4f4f4;}
.csp-list .spname li{padding: 0}
.csp-list .spname li a {display:block; height: 100%; overflow: hidden; border-left: 5px solid #f4f4f4; border-bottom: 1px solid #dbdbdb; text-align:center;font-size:14px; color: #666666; cursor:pointer;}
.csp-list .spname li.current {color: #000}
.csp-list .spname li.current a {background:#ffffff;color:#000;border-left: 5px solid #72b8e9}
.csp-list .spcon { float: left; background: #ffffff; width: 65%; height: 100%; }
.csp-list .spcon .sublist{min-height: 380px;background: #fff}
.csp-list .spcon ul li p.list{padding: 10px 0 10px 10px; overflow: hidden; position: relative; margin: 0 5px;cursor: pointer; }
.csp-list .spcon ul li p.list span.name{font-size: 14px;color: #333333;float: left;display: block; max-height: 70px;overflow: hidden;}
.csp-list .spcon ul li p.list span.red{color: #f33}
.csp-list .spcon ul li p.list span.price{font-size: 20px;color: #999;display: block;position: absolute;right: 0px;top: 30px}
/*ๅๆ
้พๆฅ*/
.foot_link{width: 100%; clear: both; border-top: 1px solid #63686e; padding: 10px 0; background: #4a4e53; overflow: hidden;}
.linkbox{max-width: 1180px; margin: 0 auto; line-height: 30px;}
.linkbox span{font-size: 12px; color: #cccccc;}
.linkbox a{font-size: 12px; color: #cccccc; margin: 0 8px;}
.linkbox a:hover{color: #FFF;}
/*404*/
.errorTop{ background: #f1f2f6;width: 100%;height: auto; overflow: hidden;position: relative;background: #F4F4F4;padding-bottom: 100px; }
.topContent{ width: 600px;margin:108px auto 80px; }
.topLeft,.topRight{ float: left; }
.topRight{ padding-top: 83px; }
.sorry{ font-size: 24px;color:#666; }
.or{ font-size: 14px;color:#666;margin:10px 0 18px ; }
.back{ color:#007bc7; }
.errorinput{ width: 278px;height: 20px; }
.search{ position: relative; }
.errorsearch{ color:#007bc7;position: absolute;font-size: 14px;width: 74px;height: 22px;display: inline-block;border-left: 1px solid #ccc;padding:1px 0 0 10px;top:8px;right: 20px; }
.errorInterest{ background: #F4F4F4; }
.interestTitle{ color:#666;font-size: 18px;margin-bottom: 20px; }
.interestList{margin-bottom: 20px;}
.errorLi{ width: 280px;height: 234px;background: #fff; }
.tsk{position: fixed; z-index: 10000; display: none; border: 1px solid #ddd; width: 500px; height: 200px; background: #ffffff; left: 50%; top: 50%; margin-left: -250px; margin-top: -100px;}
.tsk span{display: block; height: 50px; background: #e5e5e5; padding: 0 30px; text-align: right; color: #333; line-height: 50px; cursor: pointer;}
.tsk p{text-align: center; line-height: 100px; font-size: 16px; color: #ff7f00;}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*.in_fuwubox,.in_fuwubox ul{max-width: 1180px;height: auto;overflow: hidden;margin: 0 auto;width: 100%;}
.in_fuwubox h3{color: #1585c9;font-size: 22px;text-align: center;width: 100%;font-weight: normal;}
.in_fuwubox li{width: 20%;float: left;margin: 16px 0px 70px;}
.in_fuwubox a img {display: block;margin: 10px auto;width: 70px;height: 70px;}
.in_fuwubox a p{font-size: 20px;color: #1585c9;text-align: center;width: 100%;}
.in_fuwubox a{display: block;}
.in_fuwubox a:hover img{ transform: rotate(360deg); -ms-transform: rotate(360deg); !* IE 9 *! -webkit-transform: rotate(360deg); !* Safari and Chrome *! transition: .5s; }*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.in_ourpro{position: relative;}
.in_ourpro_box{max-width: 1180px;height: auto;overflow: hidden;margin: 0 auto;width: 100%;}
.ourpro_box1 {width: 100%;height: auto;overflow: hidden;position: relative;}
.ourpro_box1 li{width:20%;float: left;position: relative;}
.ourpro_img1,.ourpro_img2,.ourpro_img3,.ourpro_img4,.ourpro_img5{background: url("../img/zj_03.png")no-repeat center;width: 185px;height: 184px;margin: 0 auto;cursor: pointer;}
.ourpro_img2{background: url("../img/zj_05.png")no-repeat center;}
.ourpro_img3{background: url("../img/zj_07.png")no-repeat center;}
.ourpro_img4{background: url("../img/zj_09.png")no-repeat center;}
.ourpro_img5{background: url("../img/zj_11.png")no-repeat center;}
/*.ourpro_img1:hover{background: url("../img/zj2_03.png")no-repeat center;}
.ourpro_img3:hover{background: url("../img/zj2_07.png")no-repeat center;}
.ourpro_img4:hover{background: url("../img/zj2_09.png")no-repeat center;}
.ourpro_img5:hover{background: url("../img/zj2_11.png")no-repeat center;}
.ourpro_img2:hover{background: url("../img/zj2_05.png")no-repeat center;}*/
.ourpro_box1 .ys_img1 div.active{background: url("../img/zj2_03.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img2 div.active{background: url("../img/zj2_05.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img3 div.active{background: url("../img/zj2_07.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img4 div.active{background: url("../img/zj2_09.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img5 div.active{background: url("../img/zj2_11.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_a span{display: none;width: 50px;height: 3px;margin: 0 auto;margin-top: 30px;background: #007cc6;}
/*.ourpro_box1 .ys_a:hover span{display: block;background:#007cc6;}*/
.ourpro_box1 p{font-size: 18px;text-align: center;width: 100%;color: #222;margin-top: 10px;}
.ourpro_box1 li:hover p{color: #007cc6;}
.ourpro_box2{width: 100%;border:1px solid #e6e6e6;border-width: 1px 0px 1px 0px;width: 100%;height: auto;overflow: hidden;padding: 30px auto 30px; margin:0px auto 70px;}
.ourpro_box2>div{display: none;width: 100%;height: auto;overflow: hidden;}
.ourpro_box2 ul{width: 520px;height: auto;overflow: hidden;display: block;margin: 30px auto;}
.ourpro_box2 li{background: url("../img/zj1.png") no-repeat;font-size: 16px;line-height: 34px;color: #666;padding-left: 24px;}
@media (max-width:1180px) and (min-width: 1000px) {
#continer{min-width: 1000px;}
.top-box .box-con{width: 1000px;}
.logo-box{width: 1000px;}
.nav-box .box-con{width: 1000px;}
.nav-box .box-con ul.nav-ul{width: 760px;}
div.banner-nav .left-nav dl dd .nav-right .main-box{width: 758px;}
div.banner-nav .left-nav dl dd .nav-right{width: 758px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left{width: 510px; padding: 0 10px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title{width: 70px; margin-right: 10px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text{width: 425px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li{margin: 5px 10px 5px 0;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right{width: 225px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv{width: 200px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv img{width: 200px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv span{width: 200px;}
.banrightbox{width: 1000px; margin-left: -500px;}
.submenu{width: 1000px;}
.zhucelistbox{width: 252px;}
.zcbox{ width: auto;}
@keyframes boxing{
0%{width: 248px; padding-top: 50px; height: 330px; background: #FFFFFF;}
100%{width: 250px; height:329px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow:2px 2px 3px #aaaaaa;}
}
.teambox{width: 1000px;}
.flashBg{width: 900px;}
.hd a.next{right: -25px;}
.hd a.prev{left: -25px;}
.in_lc>div{width: 1000px;}
.in_lc>div>div{margin-right: 36px;}
.ck-slide{width: 1000px;}
.ck-slide ul.ck-slide-wrapper li{width: 1000px;}
.newsdl{width: 1000px;}
.newsdl dd{width: 320px; margin-right: 20px;}
.newsdl dd div.xqbox{width: 220px; height: 80px; overflow: hidden;}
.newsdl dd div.xqbox{margin-left: 10px;}
.clients .box ul.items{width: 1000px;}
.clients .box ul.items li{padding: 10px 12px 10px 0; margin: 0 7px 23px 0;}
.jpservice{width: 1000px;}
.jpservice dl{width: 221px;}
.jpservice dl dd{width: 130px; margin-left: 14px;}
.jpservice dl.seconddl{width: 302px;}
.jpservice dl.seconddl dd{width: 210px;}
.jpservice dl.threedl{width: 229px;}
.jpservice dl.threedl dd{width: 120px;}
.jpservice dl.lastdl{width: 248px;}
.jpservice dl.lastdl dd{width: 156px;}
.in_cont .cont{width: 1000px;}
.cont_cont{width: 305px; margin-left: 40px;}
.footleft{width: 156px;}
.footleft img{width: 100%;}
}
@media only screen and (max-width: 1000px) {
.banner-box{height: auto;}
.carousel-inner{height: auto;}
.carousel-inner>.item>a>img, .carousel-inner>.item>img{width: 200%; position: inherit; left: -50%; margin-left: auto; height: auto;}
#continer{min-width: 0;}
.top-box{display: none;}
.ad-box,.logo-box span.telphone,.nav-box,.banrightbox{display: none;}
.wrapper{width: 100%;}
.logo-box{width: 90%; margin: 0 auto; margin-top: -20px; height: 70px;}
.phonenav{display: block;}
.titlebox h3{font-size: 18px;}
.service{height: 355px;}
.servicebox{display: none;}
.servicelist{display: block;}
.teambox{width: 90%;}
.flashBg{width: 80%; left: 0%;}
.hd a.next{right: 5px;}
.hd a.prev{left: 5px;}
.in_lc>div{width: 90%;}
.in_lc>div>div{ width: 33%; margin-right: 0;}
.in_lc u{left: 12%;}
.in_lc{height: auto; padding-bottom: 40px;}
.ck-slide{display: none;}
.newsdl{width: 90%; margin: 0 auto;}
.newsdl dd{width: 100%;}
.newsdl dd div.xqbox{width: auto;}
.clients .box ul.items{width: 90%;}
.clients .box ul.items li{margin-right: 0.5%;}
.jpservice{width: 90%; height: auto;}
.jpservice dl{width: 50%; margin-bottom: 15px;}
.jpservice dl.seconddl,.jpservice dl.threedl{width: 50%;}
.jpservice dl.threedl,.jpservice dl.lastdl{margin-bottom: 0;}
.jpservice dl.seconddl dd{width: auto;}
.in_cont .cont{width: 90%;}
.in_cont{height: auto;}
.cont .cont_input{float: none; margin: 0 auto;}
.cont_cont{float: none; margin: 0 auto;}
.clients .box ul.items li{display: none;}
.phoneNews{display: block;}
.clients .box ul.items li.apple{margin-right: 0.5%;}
.linkbox{padding: 0 10px;}
.search-box{width: 100%;}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*.in_fuwubox li{width: 20%;float: left;margin: 16px 0px 70px;}
.in_fuwubox h3{font-size: 16px;}.in_fuwubox a p{font-size: 14px;}*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.ourpro_box2{/*display: none;*/}
.in_ourpro{padding-bottom: 40px;}
.ourpro_box1 p{font-size: 12px;}
.ourpro_img1, .ourpro_img2, .ourpro_img3, .ourpro_img4, .ourpro_img5{width:100%;background-size: 100%; }
.ourpro_img1:hover, .ourpro_img2:hover, .ourpro_img3:hover, .ourpro_img4:hover, .ourpro_img5:hover{background-size: 100%;}
.in_lc>div>div>p{text-align: center;}
}
@media only screen and (max-width: 600px) {
.in_cont{display: none;}
.flashBg{width: 225px;}
.newsdl dd div.date{width: 20%;}
.newsdl dd div.xqbox{width: 70%; margin-left: 9%;}
.in_kehu{height: 748px;}
.jpservice dl,.jpservice dl.seconddl, .jpservice dl.threedl{width: 100%;}
.jpservice dl.threedl, .jpservice dl.lastdl{margin-bottom: 15px;}
.newsdl dd div.date strong{margin-top: 0;}
.clients .box ul.items{width: 370px;}
.clients .box ul.items li{margin-left: 10px;}
.topContent{width: 320px;}
.topRight{float: none;}
.or,.sorry{text-align: center}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/* .in_fuwubox ul{margin: 20px 0px;}
.in_fuwubox li{width: 33.3%;float: left;margin: 10px 0px 10px;}
.in_fuwubox a img{width: 56px;height: 56px;}
.in_fuwubox a p{font-size: 12px;}*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.ourpro_box2{/*display: none;*/ margin-bottom: 30px;}
.ourpro_box2 ul{width: 100%;}
.ourpro_box2 li{font-size: 13px; line-height: 24px;}
.ourpro_box2 li.dl_yx{width: 100%; text-align: center;}
.ourpro_box2 li div{width: 128px; margin-right: 10px; display: inline-block; float: none;}
.in_ourpro{padding-bottom: 40px;}
.ourpro_box1 p{font-size: 12px;}
.ourpro_img1, .ourpro_img2, .ourpro_img3, .ourpro_img4, .ourpro_img5{width:100%;background-size: 100%; height: 120px;}
}
@media only screen and (max-width:480px ) {
.servicelist li{width: 33%;}
.service{height: 470px;}
.in_lc>div>div{ width: 30%; margin-bottom: 20px; margin-left: 10px;}
.in_lc .circle{width: 80px; height: 80px;}
.in_lc i{margin-left: 26px; margin-top: 26px; width: 30px; height: 30px; background-size: 30px 30px;}
.in_lc .qyht,.in_lc .ymsj,.in_lc .cxkf,.in_lc .shys,.in_lc .hqwh{background-size: 30px 30px;}
.in_lc>div>div:hover .qyht{background-size:30px 30px ;}
.in_lc u{width: 25px; height: 25px; line-height: 25px; font-size: 14px;}
.in_lc>div>div h3{font-size: 14px;}
.in_lc>div>div>p{font-size: 12px; display: none;}
.in_lc>div>div>p br{display: none;}
.newsdl dd div.date{width: 55px; height: 55px; border-radius: 55px;}
.newsdl dd div.date strong{font-size: 16px; line-height: 30px;}
.newsdl dd div.date em{font-size: 12px;}
.footljzx{padding-top: 97px; height: 56px; background-size: auto 150px; }
.footljzx a{height: 30px; width: 110px; font-size: 14px; line-height: 30px;}
.clients .box ul.items{width: 83%;}
.clients .box ul.items li{margin-right: 1%; margin-left: 0;}
.foot_link{display: none;}
}
@media only screen and (max-width: 412px) {
.in_lc>div{width: 100%;}
.logo-box a.logo{width: 180px; height: 49px; background-size: 180px 49px;}
.phonenav{top: 20px;}
.logo-box{height: 70px;}
.thanks{height: 375px;}
.clients .box ul.items li{float: none; margin: 0 auto 23px;}
.logo-box a.logo img{width: 100%;}
}
@media only screen and (max-width:360px ) {
.clients .box ul.items li{float: none; margin: 20px auto;}
}
.login_fixed
{
position: fixed;
left: 50%;
top: 0px;
width: 317px;
margin-left:-158px;
margin-top:-125px;
height: 250px;
background-color: #fff;
padding-bottom: 30px;
border: 1px solid lightgrey;
z-index:999999999999999999999;
}
.login_form
{
width: 260px;
margin: 0 auto;
margin-top: 30px;
}
.login_form span
{
float: left;
padding-right: 20px;
line-height: 40px;
width: 48px;
text-align: right;
font-size: 12px;
}
.login_row input
{
float: left;
width: 180px;
height: 28px;
font-size: 14px;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 4px;
line-height: 28px;
}
.login_row
{
height: 24px;
margin-bottom: 40px;
}
.login_row_recember
{
height: 24px;
}
.login_action_center
{
text-align: center;
padding-top: 15px;
}
.login_action
{
padding: 10px 60px;
font-size: 14px;
background-color: #37A8F6;
color: white;
}
.error_input
{
border: 1px solid red;
}
.error_desc
{
font-size: 12px;
color: red;
}
.error_input
{
border: 1px solid red;
}
.tab ul.menu22
{
height: 34px;
background: #f6f6f6;
}
.tab ul.menu22 li
{
float: left;
text-align: center;
width: 100px;
height: 34px;
background: #f6f6f6;
line-height: 32px;
list-style: none;
font-size: 12px;
cursor: pointer;
}
.tab ul.menu22 li.active
{
background: #e2383a;
color: #fff;
}
.guanbi2{float: right;position: absolute;right: 0px;top: 0px;width: 34px;height: 34px;background: url("../images/guanb.png");cursor: pointer;} | public/assets/p/index.css | @charset "utf-8";
*{padding:0;margin:0;}
body{padding:0;margin:0;font-size:12px;font-family:Microsoft YaHei;color: #666666;background:#fff; overflow-x: hidden;
}
img{border:none;}
a{text-decoration:none;cursor:pointer;color:#666;}
a:hover,a:hover {text-decoration:none;color:#55acee;}
input{color: #777;outline: none;}
ul{padding:0;margin:0;list-style:none;}
li,p{padding:0;margin:0;}
.clear{clear:both;}
::-webkit-input-placeholder { /* WebKit browsers */color: #999;}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */color: #999;}
::-moz-placeholder { /* Mozilla Firefox 19+ */color: #999;}
:-ms-input-placeholder { /* Internet Explorer 10+ */color: #999;}
/*็พๅๆปๅจๆก*/
::-webkit-scrollbar {width:10px;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 10px;border-radius: 10px;}
::-webkit-scrollbar-thumb {-webkit-border-radius: 10px;border-radius: 10px;background:rgba(212,212,212,0.7); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }
::-webkit-scrollbar-thumb:window-inactive {background: #d4d4d4; }
/*้กถ้จไฟกๆฏๆก*/
#continer{width: 100%;min-width: 1180px}
.top-box{width: 100%;height: 32px; line-height: 32px; background: #eeeeee; margin-top: 0px;}
.top-box .box-con{width: 1180px; height: 32px; margin: 0 auto;}
.top-box .left-box{float: left;}
.top-box .left-box span{padding-left: 24px; background: url(../img/hi.png) no-repeat 2px center;}
.top-box span {display: inline-block; height: 18px; padding-left:20px; line-height: 18px; margin: 4px 0; }
.top-box span a{color: #666666;font-size: 12px;display: inline-block;}
.top-box span.sc-xw{padding-left: 0px}
.top-box span.sc-xw a{background: url(../img/sc_ico.png) no-repeat center left;padding-left: 20px;}
.top-box span a i{display: block; width: 14px; height: 16px; margin-right: 10px; float: left; background: url(../img/topbotBg.png) no-repeat;}
.top-box span a:hover{color: #1786CA;}
.top-box span.phone a,.top-box span.wxgzh a,.top-box span.call-on a,.top-box span.item a{ padding-right: 18px; background:url(../img/topjbg.jpg) right center no-repeat;position: relative; }
.top-box span.phone a i{margin-right: 4px;}
.top-box span.phone a:hover{color: #1786ca; padding-left: 20px; background:url(../img/topjbg.jpg) right center no-repeat; }
.top-box span.phone a:hover i{background: url(../img/topbotBg.png) left -16px;}
.top-box span.phone a .v-phone{ position: absolute; width: 142px; height: 142px; padding-top: 15px; text-align: center; background: #FFFFFF url(../img/topjbg2.jpg) no-repeat center top;border-left: 1px solid #a9c7db;border-right: 1px solid #a9c7db; border-bottom: 1px solid #a9c7db;box-shadow:0 2px 2px #b8d0e1;top: 25px; left: 0px;display: none; z-index: 9999 }
.top-box span.phone a:hover .v-phone{display:block;}
.top-box span.wxgzh a i{background-position: -17px top;}
.top-box span.wxgzh a:hover i{background-position: -17px -16px;}
.top-box span.wxgzh a .v-wx{ position: absolute; width: 142px; height: 142px; padding-top: 15px; text-align: center; background: #FFFFFF url(../img/topjbg2.jpg) no-repeat center top;border-left: 1px solid #a9c7db;border-right: 1px solid #a9c7db; border-bottom: 1px solid #a9c7db;box-shadow:0 2px 2px #b8d0e1; top: 25px; left: 0px;display: none; z-index: 9999 }
.top-box span.wxgzh a:hover .v-wx{display:block;}
.top-box .right-box{float: right;position: relative; z-index: 10000;}
.top-box span.call-on{position: relative;}
.top-box span.call-on a i{background-position: -43px top;}
.top-box span.call-on a:hover i{background-position: -43px -16px;}
.contact-box{width: 110px; padding: 8px 8px; min-height: 50px;border: 1px solid #a9c7db; border-top: none; background: #fff;position: absolute;top: 28px;left: 5px; z-index: 999999; border-top: none; display: none;box-shadow: 0 2px 2px #b8d0e1;}
.contact-box .tel-box{padding: 3px 0;}
.contact-box .tel-box i.city{font-size: 12px;color: #666;font-style: normal;display: block; line-height: 30px;}
.contact-box .tel-box i.tel{font-size: 15px;color: #ff1515;font-style: normal;display: block;}
.top-box span.call-on:hover .contact-box{display: block;}
.top-box span.item a{background: none; padding-right: 0;}
.top-box span.item a i{background-position: -63px top;}
.top-box span.item a:hover i{background-position: -63px -16px;}
/*logoๅบๅ*/
.logo-box{height: 86px;padding: 23px 0 0px;width: 1180px;margin: 0 auto; position: relative; z-index: 99;}
.logo-box a.logo{display: inline-block; height: 67px;width: 240px; float: left; /*background:url(../img/logo.jpg) no-repeat center left;*/}
.logo-box .ad-box{float: right;min-width: 200px;height: 24px;line-height: 24px}
.logo-box .ad-box ul{overflow: hidden;}
.logo-box .ad-box ul li{float: left;margin: 0 13px;font-size: 14px;color: #999;padding-left:30px }
.logo-box .ad-box ul li.ico1{background:url(../img/ad_ico1.png) no-repeat center left;}
.logo-box .ad-box ul li.ico2{background:url(../img/ad_ico2.png) no-repeat center left;}
.logo-box .ad-box ul li.ico3{background:url(../img/ad_ico3.png) no-repeat center left;}
.logo-box .ad-box ul li.ico4{background:url(../img/ad_ico4.png) no-repeat center left; margin-right: 0;}
.logo-box span.telphone{position: absolute; right: 0; top: 66px; z-index: 10000;}
/*ๅฏผ่ช*/
.nav-box{width: 100%;height:47px;position: relative; z-index: 1000;}
.nav-box .box-con{width: 1180px;margin: 0 auto;overflow: hidden;}
.nav-box .box-con .n-left{height: 47px; line-height: 47px;text-align: left;font-size: 14px; background: #055bc3 url(../img/listyle9.jpg) no-repeat 210px center; color: #fff; width: 240px; float: left;}
.nav-box .box-con .n-left span.qbfl{margin-left: 22px;}
.nav-box .box-con .n-left .banner-nav{display: none;}
.nav-box .box-con .n-left:hover .banner-nav{display: block;}
/*ๅทฆๅฏผ่ช*/
#show-nav div.banner-nav .left-nav{ }
#other-nav div.banner-nav .left-nav{background:url(../img/leftBf.png) repeat;}
div.banner-nav {height: 430px; position:absolute;top: 47px;display: none;}
div.banner-nav .left-nav {position:absolute;top:0px;left:0px;width:1000px;height:500px}
/*div.banner-nav .left-nav{ width:240px; height: 453px; background: url(../img/navbg.png) repeat;}*/
div.banner-nav .left-nav{ width:240px; height: 430px; }
div.banner-nav .left-nav dl{height: 428px; }
div.banner-nav .left-nav dl dd{ width:240px; text-align: left; font-size: 16px; /*height:74.5px; line-height:74.5px; */ color:#000; border-bottom: 1px solid #10a4fc; z-index: 9999;}
div.banner-nav .left-nav dl dd.dd6{height: 85px;}
div.banner-nav .left-nav dl dd.dd7{height: 58.5px;line-height: 58.5px}
div.banner-nav .left-nav dl dd.dd8{height: 51.2px;line-height: 51.2px}
/*div.banner-nav .left-nav dl dd:last-child{border-bottom: 1px solid #1cabeb;}*/
div.banner-nav .left-nav dl dd:hover{ margin-top: -2px; border-top: 1px solid #1cabeb;border-bottom: 1px solid #1cabeb;}
/*div.banner-nav .left-nav dl dd a{display: block;}*/
div.banner-nav .left-nav dl dd div.nav-left{display: block; width:196px; height: 77px; padding: 8px 22px 0; color: #FFFFFF; position: relative;}
div.banner-nav .left-nav dl dd div.nav-on{display: block; width:195px;height: 77px; padding: 8px 22px 0 22px; border-top: 1px solid #1786CA; border-left: 1px solid #1786CA; background: #fff ; position: absolute;right: 0px;z-index: 999999}
div.banner-nav .left-nav dl dd div.nav-left span.hot{width: 25px;height: 15px;background:url(../img/navjt.png) no-repeat center;position: absolute;right: 15px;top: 23px}
div.banner-nav .left-nav dl dd div.nav-on span.hot{width: 25px;height: 15px;position: absolute;right: 37px;top: 13px}
div.banner-nav .left-nav dl dd div.nav-on p{margin-top: -9px;}
div.banner-nav .left-nav dl dd div.nav-left a{color: #FFFFFF; }
div.banner-nav .left-nav dl dd div.nav-left a i{display:inline-block; float:left; margin:12px 10px 0 0;width: 24px; height: 22px;color:#fff}
div.banner-nav .left-nav dl dd div.nav-left a.navaico1 i{background-position: left top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico2 i{background-position: -39px top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico3 i{background-position: -71px top; width: 26px;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico4 i{background-position: -109px top;}
div.banner-nav .left-nav dl dd div.nav-left a.navaico5 i{background-position: -153px top;}
div.banner-nav .left-nav dl dd div.nav-left p{line-height: 24px; margin-top:-9px;}
div.banner-nav .left-nav dl dd div.nav-left p a{font-size: 12px; line-height: 24px; margin-right: 12px;}
div.banner-nav .left-nav dl dd div.nav-left h3{display: inherit;font-size: 12px;float: left;margin-right: 12px;font-weight: normal; margin-top: -10px;}
div.banner-nav .left-nav dl dd div.nav-left h3:hover{display: inherit;font-size: 12px;float: left;margin-right: 12px;font-weight: normal;}
div.banner-nav .left-nav dl dd div.nav-on h3{margin-top: -10px;}
div.banner-nav .left-nav dl dd div.nav-on h3 a{line-height: 47px;font-size: 12px;margin-top: -10px;display: inherit;float: left;margin-right: 12px; font-weight: normal;}
div.banner-nav .left-nav dl dd div.nav-on a i{display:inline-block; float:left; margin:12px 10px 0 0;width: 24px; height: 22px;color:#000}
div.banner-nav .left-nav dl dd div.nav-on a.navaico2 i{background-position: -39px -22px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico3 i{background-position: -71px -22px; width: 26px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico4 i{background-position: -109px -22px;}
div.banner-nav .left-nav dl dd div.nav-on a.navaico5 i{background-position: -153px -22px;}
div.banner-nav .left-nav dl dd div.nav-on p{line-height: 24px;}
div.banner-nav .left-nav dl dd div.nav-on p a{font-size: 12px; color: #666666; line-height: 24px; margin-right: 12px;}
div.banner-nav .left-nav dl dd .nav-right{ width:938px; max-height:429px; overflow:hidden; position:absolute; left:240px; top:-1px; display:none; border:1px solid #1786ca; border-left: none; z-index: 8;text-align: left;background: #fff;}
div.banner-nav .left-nav dl dd .nav-right .main-box{width: 938px; min-height: 430px; text-align: left;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left{width: 650px;padding: 0 21px 0 14px; height: 428px; background: url(../img/navBg1.jpg) no-repeat left bottom; float: left;border-right: 1px solid #e5e5e5}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .list{padding: 15px 0 0; overflow: hidden; }
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title{ width:100px; float:left;height: 30px;line-height: 30px; margin-right: 22px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p{font-size: 14px;color: #222; font-weight: bold; padding: 2px 0;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p a{ width: 100%; display: inline-block; font-size: 14px; color: #333;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title p a span{font-size: 10px; color: #666666; float: right;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text{min-height: 30px;padding: 2px 0 10px; width: 528px; float: left;border-bottom: 1px dashed #cfcfcf;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul{overflow: hidden;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li{margin: 5px 25px 5px 0;float: left;line-height: 22px;font-size: 14px}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a.act{display: block; width: 80px;text-align: center;height: 22px;line-height: 22px;font-size: 14px;color: #fff;background: url(../img/actbg.png) no-repeat center;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a.red{color: #ff0c0c}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li a strong{color: #ff0c0c}
div.banner-nav .left-nav dl dd .nav-right .main-box .right{width: 252px; float: left;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv{width: 228px; height:194px; padding: 14px 12px 17px; position: relative; border-bottom: 1px solid #eeeeee;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv p{font-size: 14px; display: block; width:228px;text-align: center; color: #00c1f8; line-height: 24px; position: absolute; left: 12px; top: 50px; z-index: 1000;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv img{position: absolute; width: 228px; height: 194px; left: 12px; top: 14px; z-index: 999;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv span{width: 228px; height: 32px; font-size: 12px; background: #00c1f8; position: absolute; left:12px; bottom: 17px; z-index: 1000; display: block; text-align: center; color: #FFFFFF; line-height: 32px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic a.ad{display: block; padding-top: 16px; text-align: center;}
/*ไธปๅฏผ่ช*/
.nav-box .box-con ul.nav-ul{float: left;overflow: hidden;width: 940px;position: relative;height: 47px;}
.nav-box .box-con ul.nav-ul li {float: left;position: relative;}
.nav-box .box-con ul.nav-ul li:first-child{margin-left: 20px;}
.nav-box .box-con ul.nav-ul li a{display: inline-block;font-size: 16px;color: #333333;height: 47px;line-height: 47px;padding: 0 25px;border-bottom: 2px solid #fff}
.nav-box .box-con ul.nav-ul li a:hover{color: #1cabeb;border-bottom: 2px solid #fff}
.nav-box .box-con ul.nav-ul li a.current{color: #1cabeb;}
.nav-box .box-con ul.nav-ul li a.tophot{background: url(../img/hot.gif) no-repeat right top;}
.nav-box .box-con ul.nav-ul li.hm-nav{height: 68px;width: 135px;right: 65px;top: 0px;position: absolute;}
.nav-box .box-con ul.nav-ul li.cy-nav{height: 68px;width: 135px;right: 65px;top: 2px;position: absolute;}
.nav-box .box-con ul.nav-ul li .urgent{display: block;width: 27px;height: 16px;background: url(../img/urgent.png) no-repeat center;position: absolute;right: -10px;top: 3px}
.phonenav{ float: right; position: absolute; right: 0px; top: 30px; display: none;}
.imgbot{width:54px; height: 54px;}
.menubox{width: 115px; display: none; position: absolute; top: 40px; right: 8px; z-index: 100;}
.menubox span{display: block; height: 31px;}
.menubox ul {display: block; width: 120px; margin: 0; padding: 0; background: url(../img/menu_bg.png) repeat-y;}
.menubox ul li{width: 96px; margin: 0 auto; height: 44px; border-bottom: 1px solid #dedcdf;}
.menubox ul li a{text-align: center; line-height: 44px; display: block; color: #1f1f1f; font-size: 14px;}
.menubox ul li:last-child{border-bottom: none;}
/*banner*/
.banner-box{position: relative;}
.carousel-inner>.item>a>img, .carousel-inner>.item>img{ width: auto; height: 431px; position: absolute; left: 50%; margin-left: -960px;}
/*bannerๅณไพง*/
.banrightbox{width: 1180px; position:absolute; left: 50%; top: 0; margin-left: -590px;}
.banner-fc {height: 410px;right: 0%;position: absolute;top: 15px;width: 240px;}
.banner-right{width: 240px;height: 400px; position: absolute;z-index: 990;right: 0px; top: 0px;background:url(../img/rightBf.png) repeat;;}
.banner-right .box{padding: 16px 17px;border-bottom: 1px solid #dddddd;padding-bottom: 10px;}
.banner-right .box:last-child{border-bottom: none}
.banner-right .box p.name{font-size: 14px;color: #000;height: 16px;line-height: 16px;padding-left: 10px ; margin-bottom: 10px; border-left: 5px solid #1cabeb;position: relative;}
.banner-right .box p.name span.bhot{display: inline-block;width: 16px;height: 20px; position: absolute;top: -2px;left: 70px;}
.banner-right .box p.list{font-size: 12px;color: #666;height: 28px; line-height: 28px;padding: 0px 0 0px 10px;background:url(../img/list_ico.png) center left no-repeat;overflow: hidden;}
.banner-right .box p a{color: #666666;}
.banner-right .box p a.more{display: inline-block; width: 9px; height: 9px; background: url(../img/more.jpg) no-repeat; float: right; margin:3px 5px;}
.banner-right .box .zh-box{width:207px; height:32px;line-height: 32px; background: url(../img/searchbg.jpg) no-repeat;}
.banner-right .box .zh-box input.zh-box{height: 32px;border: none;padding: 0 5px;width: 155px; background: none; float: left;}
.banner-right .box .zh-box input.sb-box{height: 28px;border: none;padding: 0 5px;width: 185px;}
.banner-right .box .s-btn{width: 40px;text-align: center;height: 32px;background: none;display: inline-block; float: left; cursor: pointer;}
.kfbox{width: 205px; height: 104px; overflow: hidden; margin: 0 auto;}
.kflist{width: 100%; height: 65px; overflow: hidden; position: relative;}
.kflist ul li{width: 205px; height: 65px;}
.kflist ul li span{display:inline-block; width: 65px; height: 65px; float: left;}
.kflist ul li span img{width: 65px; height: 65px; border-radius: 65px;}
.kfright{width: 128px; float: right;}
.kfright h3{font-size: 16px; color: #333333; font-weight: normal; margin-bottom:10px; margin-top: 9px; height: 22px; overflow: hidden;}
.kfright h3 em{font-style: normal; font-size: 12px; color: #999999; }
.kfright a{display: inline-block; width: 60px; height: 22px; line-height: 22px; text-align: center; color: #FFFFFF; font-size: 12px; background: #fa4f4f;}
.kfright a.zx{background: #007cc6; margin-right: 4px;}
.banner-right .box .hy-sel {padding: 0 4px; height: 28px; width: 197px; margin-top: -1px; border: 1px solid #ccc;position: relative;
background: #fff url('../img/xjt.png') no-repeat right center; cursor:pointer;margin-bottom: 28px;border-radius:0px 0px 4px 4px; }
.banner-right .box .hy-sel input.n-val {display: block;width: 100%;height: 20px;line-height: 20px; padding: 5px 0; color: #000; border: 0;outline: 0;background: none;
cursor:pointer;position: absolute;}
.banner-right .box .hy-sel ul {width: 100%;display: none;position: absolute;left: -1px;top: 29px;overflow: hidden;background-color: #fff;max-height: 170px;overflow-y: auto;border: 1px solid #9ac1d9; border-top: 0;z-index:9999999;}
.banner-right .box .hy-sel ul li {height: 30px;line-height: 30px;overflow: hidden; color: #000; padding: 0 10px;cursor: pointer; font-size: 12px;}
.banner-right .box .hy-sel ul li.on {background-color: #c1d8e4;}
.banner-right .box .s-btn{width: 70px;text-align: center;height: 26px;line-height: 26px;font-size: 12px;color: #fff;background: #ff4c4c;display: inline-block;margin: 12px 0 5px;border-radius: 3px;margin-top: 32px;}
.banner-right .box .s-btn:hover{background: #ff0000;color: #fff}
/*ๆๅกๅ
ๅฎน*/
.service{width:100%; background: #f3f3f3; height: 700px; margin: -3px auto 0;}
.titlebox{width: 100%; text-align: center; padding: 50px 0; overflow: hidden;}
.titlebox h3{font-size: 30px; font-weight: normal; color: #333333; line-height: 28px;}
.titlebox p{color: #666666; font-size: 14px; line-height: 28px; margin: 15px 0 0;}
.titlebox i{display: inline-block; width: 80px; height: 3px; background: #aaaaaa; margin: 0 auto;}
.in_services,.in_you,.in_pingjia.in_zixun.footer{width: 100%;height: auto;overflow: hidden;min-width: 1259px;margin: 0 auto;background-color: #f5f5f5;padding-bottom: 40px;}
.in_se_tt{width: 100%;height: 100px;min-width: 1259px;color: #555;text-align: center;position: relative;margin: 0 auto;line-height: 100px;font-size: 20px;font-weight: bold;margin-top: 10px;}
#menu-wrapper { position: relative; display: block; z-index: 2; height: 82px; font-size: 16px; color: #000; text-align: center;}
.menu_se { display: table; margin: 0 auto; padding: 0; width: 700px; height: 55px; text-align: left; list-style-type: none; background:url(../img/heng.png) no-repeat 33px 2px;}
.menu_se li { position: relative; display: inline-block; float:left ; margin-right: 80px; cursor: pointer; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -ms-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.menu_se li:first-child{margin-right: 74px;}
.menu_se li:last-child{margin-right: 0;}
.menu_se a{ color: #666666; text-decoration: none; font-size: 16px;text-align: center;display: inline-block; }
.menu_se li i.noline{position: absolute; left: 43px; top: 41px; }
.menu_se li i.noline2{left: 41px;top: 41px;}
.menu_se li i.noline3{left: 21px;top: 41px;}
.menu_se li i.noline4{left: 50px;top: 41px;}
.menu_se li i{width: 125px; height: 3px; display: block; position: absolute; display: none; z-index: 0;
background: -webkit-linear-gradient(left, rgba(26,131,196,1), rgba(26,131,196,0)); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, rgba(26,131,196,1), rgba(26,131,196,0)); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, rgba(26,131,196,1), rgba(26,131,196,0)); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, rgba(26,131,196,1), rgba(26,131,196,0)); /* ๆ ๅ็่ฏญๆณ๏ผๅฟ
้กปๆพๅจๆๅ๏ผ */
}
.menu_se a span{display:inline-block; width: 18px; height: 18px; margin-top: 15px; background: url(../img/serviceBtn01.png) no-repeat;}
.menu_se a.selected { color: #1ea1da; text-decoration: none; font-weight: bold; }
.menu_se a.selected span{background: url(../img/serviceBtn02.png) no-repeat; width: 24px; height: 24px; margin-top: 11px;}
#submenu-wrapper { position: relative; right: 0; left: 0; display: block; z-index: 1; width: 100%; height: 390px; margin: -0em auto 0; font-size: 13px; overflow: hidden; }
.submenu {width: 1180px; background: #FFFFFF; display: block; height: 380px; margin: 0 auto; clear: both; margin-bottom: 10px;}
.gszcbox{width:176px; height: 288px; padding: 92px 32px 0; float: left; background: url(../img/gszcbg.jpg) no-repeat;}
.gszcbox span{display: block; font-size: 12px; color: #FFFFFF; line-height: 30px;}
.submenu .dljz{background: url(../img/gszcbg2.jpg) no-repeat;}
.submenu .sb{background: url(../img/gszcbg3.jpg) no-repeat;}
.submenu .gjj{background: url(../img/gszcbg4.jpg) no-repeat;}
.submenu .xkz{background: url(../img/gszcbg5.jpg) no-repeat;}
.zhucelistbox{width: 312px; height: 380px; background: #FFFFFF; float: left; z-index: 0;border-right: 1px solid rgba(212,212,212,0.7) ;}
.submenu div:nth-of-type(4){border-right: 0;}
.zcbox{width: 310px; height: 330px;padding-top: 50px; margin: 0 auto; }
.zcbox i{display: block; width: 60px; height: 60px; margin: 0 auto 25px;}
.zcbox span{font-size: 20px; color: #333333; display: block; text-align: center; margin-bottom: 15px;}
.zcbox span h2{color:#333333; display: inline-block; font-size: 20px;}
.zcbox p{font-size: 12px; color: #666666; text-align:center; line-height: 30px;}
.zcbox strong{display: block; text-align: center; font-size: 20px; color: #ff0000; font-weight: normal; margin-top: 15px;}
.zcbox i.zcimg1{background: url(../img/come01.png) no-repeat;}
.zcbox i.zcimg2{background: url(../img/come02.png) no-repeat;}
.zcbox i.zcimg3{background: url(../img/come03.png) no-repeat;}
.zcbox i.zcimg4{background: url(../img/come04.png) no-repeat;}
.zcbox i.zcimg5{background: url(../img/come05.png) no-repeat;}
.zcbox i.zcimg6{background: url(../img/come06.png) no-repeat;}
.zcbox i.zcimg7{background: url(../img/come07.png) no-repeat;}
.zcbox i.zcimg8{background: url(../img/come08.png) no-repeat; width: 84px;}
.zcbox i.zcimg9{background: url(../img/come09.png) no-repeat;}
.zcbox i.zcimg10{background: url(../img/come010.png) no-repeat; width: 71px;}
.zcbox i.zcimg11{background: url(../img/come011.png) no-repeat; width: 79px;}
.zcbox i.zcimg12{background: url(../img/come012.png) no-repeat;}
.zcbox i.zcimg13{background: url(../img/come013.png) no-repeat; width: 82px;}
.zcbox i.zcimg14{background: url(../img/come014.png) no-repeat;width: 82px;}
.zcbox i.zcimg15{background: url(../img/come015.png) no-repeat;width: 82px;}
.zcbox p a{display:inline-block; width: 90px; height: 35px; margin: 25px 11px 0; text-align: center; line-height: 35px; color: #FFFFFF;}
.zxzx{background: #007cc6;}
.lzbl{background: #fa4f4f;}
.submenu2 div.hover2 span{color: #1686c9; font-weight: bold;}
div.hover2{ position: relative; z-index: 10; -webkit-animation: boxing .25s forwards; -moz-animation: boxing .25s forwards; -ms-animation:boxing .25s forwards; animation: boxing .25s forwards; }
div.hover2 .zcimg1{background: url(../img/come1.png) no-repeat;}
div.hover2 .zcimg2{background: url(../img/come2.png) no-repeat;}
div.hover2 .zcimg3{background: url(../img/come3.png) no-repeat;}
div.hover2 .zcimg4{background: url(../img/come4.png) no-repeat;}
div.hover2 .zcimg5{background: url(../img/come5.png) no-repeat;}
div.hover2 .zcimg6{background: url(../img/come6.png) no-repeat;}
div.hover2 .zcimg7{background: url(../img/come7.png) no-repeat;}
div.hover2 .zcimg8{background: url(../img/come8.png) no-repeat;}
div.hover2 .zcimg9{background: url(../img/come9.png) no-repeat;}
div.hover2 .zcimg10{background: url(../img/come10.png) no-repeat;}
div.hover2 .zcimg11{background: url(../img/come11.png) no-repeat;}
div.hover2 .zcimg12{background: url(../img/come12.png) no-repeat;}
div.hover2 .zcimg13{background: url(../img/come13.png) no-repeat;}
div.hover2 .zcimg14{background: url(../img/come14.png) no-repeat;}
div.hover2 .zcimg15{background: url(../img/come15.png) no-repeat;}
div.hover2 span h2{color: #1686c9; font-weight: bold;}
div.hover2 span.dlspan{color: #19cc65;}
div.hover2 span.sbspan{color: #f99f3b;}
div.hover2 span.gjjspan{color: #fa4f4f;}
div.hover2 span.xkzspan{color: #b063ad;}
.submenu2 div.hover2 span h2{color: #19CC66;}
.submenu3 div.hover2 span h2{color: #F99F3B;}
.submenu4 div.hover2 span h2{color: #FB4F4F;}
.submenu5 div.hover2 span h2{color: #B163AE;}
@-webkit-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@-moz-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@-ms-keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
@keyframes boxing{
0%{}
100%{ width: 310px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow: 3px 3px 3px 0px #ddd;;}
}
/*team*/
.team{width: 100%; min-height: 570px; background: #ffffff;}
.team .titlebox{padding: 45px 0 42px;}
.teambox{width: 1180px; margin: 0 auto;}
.hd{position: relative;}
.hd a{display: block; width: 50px; height: 50px; background: url(../img/hdBg.png) no-repeat; position: absolute;z-index: 1000;}
.hd a.next{background-position: -53px 0px; right: -112px; top: 130px;}
.hd a.prev{background-position: 0px -50px; left: -112px; top: 130px; }
.hd a.prev:hover{background-position: 0px -0px; }
.hd a.next:hover{background-position: -53px -50px; }
.flashBg{width:1180px;height:350px; margin:0 auto;position:relative;overflow:hidden;}
.flashBg ul.mobile{width:2000%;height:350px; position:absolute;}
.flashBg ul.mobile li{ float:left;width:225px; margin-right: 94px; height:350px;color:#6C6E85;}
.flashBg ul.mobile li a.imga{ display: block; width: 163px; height: 163px; margin: 0 auto;}
.flashBg ul.mobile li h3{ text-align: center; font-size: 16px; color: #333333; font-weight: normal; padding: 10px 0;}
.flashBg ul.mobile li h3 span{font-size: 12px; color: #666666;}
.flashBg ul.mobile li p{font-size: 12px; color: #666666; line-height: 20px;}
.flashBg ul.mobile li p.fwrx{font-size: 14px; padding: 10px 0 14px;}
.flashBg ul.mobile li p.fwrx strong{font-size: 20px; color: #ff7f00;}
.hotphone{ width: 223px; height: 35px; background: url(../img/telphone.jpg) no-repeat;}
.hotphone #tel{border: none; background: none; width: 158px; height: 35px; padding: 0 10px 0 15px; font-size: 12px; color: #666; line-height: 35px; float:left}
.flashBg ul.mobile li a strong{font-size: 16px; color: #2f2f2f; display: block; margin-bottom: 20px;}
.flashBg ul.mobile li a strong span{font-weight: normal; color: #666666;}
.flashBg ul.mobile li a div{display:table-cell; width: 260px; height: 210px; text-align: center; vertical-align: middle;}
.hotphone .coolbg{ width:40px;height:35px; cursor:pointer; border:none; float:right; background:none}
/*ๆๅกๆต็จ*/
.in_lc{width: 100%; height: 480px; background:#1585c9;overflow: hidden;position: relative; }
.in_lc>div{width: 1180px;margin:0px auto;}
.in_lc>div>div{width:135px;float: left; position: relative; margin-right: 70px;}
.in_lc .circle{width:135px;height: 135px;border: 1px solid #fff;border-radius:75px;color: #fff;text-align: center;margin: 0 auto;}
.in_lc i{width: 52px;height: 52px;background:url(../img/lc01.png) no-repeat center center;display: block;margin-left: 41.5px;margin-top: 41.5px;transition: .5s;}
.in_lc p{margin-top: 10px}
.in_lc>div>div>p{font-size: 14px;color: #fff; line-height: 22px;}
.in_lc u{width: 35px;height: 35px;background:#FFF;border-radius: 32px; border: 1px solid #FFFFFF;position: absolute;left: 5px;top:5px;color: #1585c9;text-decoration: none;font-size: 18px;text-align: center;line-height: 35px;font-weight:100; font-family: arial;}
.in_lc .qyht{background:url(../img/lc02.png) no-repeat center center;}
.in_lc .ymsj{background:url(../img/lc03.png) no-repeat center center;}
.in_lc .cxkf{background:url(../img/lc04.png) no-repeat center center;}
.in_lc .shys{background:url(../img/lc05.png) no-repeat center center;}
.in_lc .hqwh{background:url(../img/lc06.png) no-repeat center center;}
.in_lc>div>div:hover>.circle{background: #fff;color: #1ea1da;}
.in_lc>div>div:hover u{background: #1585c9; color: #FFFFFF;}
.in_lc>div>div:hover i{background:url(../img/lc1.png) no-repeat; transform: rotate(360deg); -ms-transform: rotate(360deg); /* IE 9 */ -webkit-transform: rotate(360deg); /* Safari and Chrome */ transition: .5s; }
.in_lc>div>div:hover .qyht{background:url(../img/lc2.png) no-repeat center center;color:#1ea1da;}
.in_lc>div>div:hover .ymsj{background:url(../img/lc3.png) no-repeat center center;}
.in_lc>div>div:hover .cxkf{background:url(../img/lc4.png) no-repeat center center;}
.in_lc>div>div:hover .shys{background:url(../img/lc5.png) no-repeat center center;}
.in_lc>div>div:hover .hqwh{background:url(../img/lc6.png) no-repeat center center;}
.in_lc>div>div h3{font-size: 20px; color: #ffffff; text-align: center; font-weight: normal; line-height: 28px; margin: 18px 0 10px;}
.in_lc .titlebox{padding: 50px 0 42px;}
.in_lc .titlebox h3{color: #FFFFFF;}
.in_lc .titlebox p{color: #FFFFFF;}
.in_lc .titlebox i{background: #FFFFFF; width: 80px; height: 3px; margin: 10px auto 0;}
/*่ต่ฎฏ*/
.aboutNews{width: 100%; clear: both; padding-bottom: 47px; overflow: hidden;}
.ck-slide ul {margin: 0; padding: 0; list-style-type: none; }
.ck-slide {position: relative; overflow: hidden; }
.ck-slide ul.ck-slide-wrapper {z-index: 1; margin: 0; padding: 0;}
.ck-slide ul.ck-slide-wrapper li { position: absolute; margin-top:0px;width: 1180px;text-align: center; }
.newsdl dd:hover div.date{background: #f39800; border: 1px solid #FFFFFF;}
.newsdl dd:hover div.date strong{color: #FFFFFF;}
.newsdl dd:hover div.date em{color: #FFFFFF;}
.newsdl {width: 1180px; overflow: hidden;}
.newsdl dd{width: 352px; float: left; margin-right: 62px; margin-bottom: 28px;}
.newsdl dd:nth-of-type(3){margin-right: 0;}
.newsdl dd:nth-of-type(6){margin-right: 0;}
.newsdl dd div.date{width: 85px; height: 85px; border: 1px solid #333333; border-radius:42px; text-align: center; float: left;}
.newsdl dd div.date strong{font-size: 30px; line-height: 30px; display: block; text-align: center; font-weight: normal; color: #333333; margin-top: 17px;}
.newsdl dd div.date em{font-style: normal; font-size:14px; color: #333333;}
.newsdl dd div.xqbox{ width: 245px; float: left; margin-left: 20px;}
.newsdl dd div.xqbox a{display: block; text-align: left;}
.newsdl dd div.xqbox a h3{font-size: 16px; color: #333333; line-height: 30px; font-weight: normal;}
.newsdl dd div.xqbox a p{font-size: 14px; color: #888888; line-height: 24px;}
.ck-slide .ck-prev, .ck-slide .ck-next {position: absolute;top: 50%; z-index: 2;width: 35px;height: 70px;margin-top: -35px; border-radius: 3px;opacity:1;background-repeat: no-repeat;transition: opacity .2s linear 0s; }
.ck-slide .ck-prev { left: 5px;font-family:tubiao;color:#fff;font-size: 60px;}
.ck-slide .ck-next { right: 12px;font-family:tubiao;color:#fff;font-size: 60px;}
.ck-slidebox { position: absolute; left: 50%; bottom: 0px; z-index: 30; }
.ck-slidebox ul { height: 20px; padding: 0 4px; border-radius: 8px;}
.ck-slidebox ul li { float: left; height: 12px; margin: 4px 5px; }
.ck-slidebox ul li em { display: block; width: 12px; height: 12px; border-radius: 100%;background:#666666; text-indent: -9999px; cursor: pointer; }
.ck-slidebox ul li.current em { height: 12px; width: 40px; border-radius: 5px; background-color: #1585c9; }
.ck-slidebox ul li em:hover { background-color: #1585c9; }
.ck-slide { width: 1180px; height: auto; margin: 0 auto;}
.ck-slide ul.ck-slide-wrapper { height: 255px;}
/*ๅฎขๆท*/
.in_kehu{width: 100%;height: 500px;position: relative;overflow: hidden;background:#f3f3f3}
.in_kehu h5{background:transparent;}
.in_kehu .titlebox{padding: 50px 0 38px;}
.business .box ul.items li { float: left; width: 256px; height: 300px; margin: 0 33px; background:#f5f5f5; overflow: hidden; }
.clients { width: 100%;/* background: url(../img/jh.jpg) bottom no-repeat; background-size: cover;*/}
.clients .box { position: relative; -webkit-transition: all .3s ease-in-out 0s; -moz-transition: all .3s ease-in-out 0s; -ms-transition: all .3s ease-in-out 0s; -o-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s;}
.clients .box ul.items { margin: 0 auto; margin-top: 10px; width: 1180px; font-size: 0; overflow: hidden;}
.clients .box ul.items li { position: relative; padding: 10px; width: 148px; height: 98px; overflow: hidden; z-index: 10; float: left;margin:0 34px 23px 0; background-color: #FFFFFF;}
.clients .box ul.items li.tdsw { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat 20px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.tdsw { background:#FFFFFF url(../img/clients.png) no-repeat 20px -90px; }
.clients .box ul.items li.brkx { top: -400px; background:#FFFFFF url(../img/clients.png) no-repeat -160px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.brkx { background:#FFFFFF url(../img/clients.png) no-repeat -160px -95px; }
.clients .box ul.items li.tdkj { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat -336px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.tdkj { background:#FFFFFF url(../img/clients.png) no-repeat -336px -90px; }
.clients .box ul.items li.cas { top: -400px; background:#FFFFFF url(../img/clients.png) no-repeat -515px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.cas { background:#FFFFFF url(../img/clients.png) no-repeat -515px -95px; }
.clients.active .box ul.items li.cas { top: 0px; }
.clients .box ul.items li.sipo { top: 600px; background:#FFFFFF url(../img/clients.png) no-repeat -695px 40px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.sipo { background:#FFFFFF url(../img/clients.png) no-repeat -695px -80px; }
.clients .box ul.items li.apple { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -870px 25px; margin-right: 0; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.apple { background:#FFFFFF url(../img/clients.png) no-repeat -870px -95px; }
.clients .box ul.items li.das { top: -550px; background:#FFFFFF url(../img/clients.png) no-repeat -1048px 30px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.das { background:#FFFFFF url(../img/clients.png) no-repeat -1048px -90px; }
.clients .box ul.items li.hunantv { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -1226px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.hunantv { background:#FFFFFF url(../img/clients.png) no-repeat -1226px -95px; }
.clients .box ul.items li.sino { top: -550px; background: #FFFFFF url(../img/clients.png) no-repeat -1406px 25px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.sino { background:#FFFFFF url(../img/clients.png) no-repeat -1406px -95px; }
.clients .box ul.items li.report { top: 450px; background:#FFFFFF url(../img/clients.png) no-repeat -1585px 40px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.report { background:#FFFFFF url(../img/clients.png) no-repeat -1585px -80px; }
.clients .box ul.items li.gedu { top: 300px; background:#FFFFFF url(../img/clients.png) no-repeat -1758px 20px; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.gedu { background:#FFFFFF url(../img/clients.png) no-repeat -1758px -100px; }
.clients .box ul.items li.bgg { top: -700px; background: #FFFFFF url(../img/clients.png) no-repeat -1937px 40px; margin-right: 0; -webkit-transition: all .8s ease-in-out 0s; -moz-transition: all .8s ease-in-out 0s; -ms-transition: all .8s ease-in-out 0s; -o-transition: all .8s ease-in-out 0s; transition: all .8s ease-in-out 0s; }
.clients .box ul.items li:hover.bgg { background:#FFFFFF url(../img/clients.png) no-repeat -1937px -80px; }
.clients.active .box ul.items li{ top: 0px; }
.clients .box ul.items li span { position: absolute; bottom: -30px; }
.clients .box ul.items li.bg.all { position: absolute; width: 1155px; height: 450px; background-color: White; -moz-opacity: 0.3; opacity: 0.3; filter: alpha(opacity=30); }
.clients .box ul.items li.bg.one { position: absolute; background: #eee; -moz-opacity: 0.5; opacity: 0.5; filter: alpha(opacity=50); -webkit-transition: all .3s ease-in-out 0s; -moz-transition: all .3s ease-in-out 0s; -ms-transition: all .3s ease-in-out 0s; -o-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s; display: none; }
.clients .box ul.mini { display: none; }
/*็ซๅณๅจ่ฏข*/
.footljzx{width: 100%; height: 100px; padding-top: 150px; background: url(../img/ad.jpg) no-repeat center center; clear: both;}
.footljzx a{display: block; width: 148px; height: 43px; border: 1px solid #FFFFFF; border-radius: 3px; margin: 0px auto 0; line-height: 42px; text-align: center; font-size: 16px; color: #ffffff;}
/**/
.jpservice{width: 1180px; margin: 0 auto; height: 75px; padding: 38px 0 37px; clear: both; overflow: hidden;}
.jpservice dl{width: 282px; float: left; overflow: hidden;}
.jpservice dl dt{width: 75px; height: 75px; float: left;}
.jpservice dl dd{width: 182px; padding-top: 12px; float: left; margin-left: 24px;}
.jpservice dl dd h3{font-size: 18px; color: #333333; font-weight: normal; margin-bottom: 10px;}
.jpservice dl dd p{font-size: 12px; color: #666666;}
.jpservice dl.seconddl{width: 345px;}
.jpservice dl.seconddl dd{width: 210px;}
.jpservice dl.threedl{width: 292px;}
.jpservice dl.threedl dd{width: 120px;}
.jpservice dl.lastdl{width: 260px;}
.jpservice dl.lastdl dd{width: 160px;}
/*่็ณปๆไปฌ*/
.in_cont{background:#4a4e53;width: 100%;height: 520px;overflow: hidden;position: relative;}
.in_cont .titlebox{padding: 50px 0 27px;}
.in_cont .titlebox h3{color: #cccccc;}
.in_cont .titlebox p{color: #cccccc;}
.in_cont .kuang{border: 1px solid #fff;}
.in_cont .ser_biao h5{background:#474847;color: #fff;}
.in_cont p,.in_cont span{color:#fff;}
.in_cont span{margin-top: 10px;}
.in_cont .cont{margin: 0px auto; padding-top: 30px; position: relative;width: 1180px; border-top: 1px solid #63686e;}
.cont .cont_input{width: 652px;position: relative; float: left;}
.cont_input #dianhua{width: 290px;height: 38px;background:#575b60;color: #cccccc;border:0px;outline: 0px;margin: 18px 0 18px 32px;padding-left: 20px;
width:290px\9;padding: 0px 10px\9; position: absolute\9; top: 75px\9; left: 310px\9; line-height: 38px\9; position: absolute;
}
.cont_input select{width: 310px;height: 38px;background:#575b60;color: #fff;border:0px;outline: 0px;margin: 18px;padding-left: 20px;padding: 8px 18px\9;}
.cont_input #buchong{width: 622px;height: 58px;background:#575b60; padding-top:10px; padding-right:10px; padding-bottom:10px; color: #cccccc;border:0px;outline: 0px;margin: 18px 0;padding-left: 20px;font-size: 14px;margin-top: 12px;margin-bottom: 16px;}
.cont_input #reset,#tijiao{width: 148px;height: 40px;padding-left: 0px;float: right;margin-right: 21px;background:#575b60;color: #cccccc;border:0px;outline: 0px;margin: 22px;margin-top: 0px;}
.cont_input #tijiao{margin-right: 0;}
.cont_input #reset:hover,#tijiao:hover{background: #333;cursor: pointer;}
.cont_input span{color: #cccccc;font-size: 12px;position:absolute;left: 0px;top:-14px;}
.cont_input .shijian{left: 344px;}
.cont_input .yusuan{top:62px;}
.cont_input .dianhua{left:344px;top:62px;}
.cont_input .buchong{top:132px;}
#shijian{margin: 18px 0 18px 32px;}
.cont_cont{width: 467px;overflow: hidden;position: relative;float: left; margin-left: 60px;}
.footleft{width: 281px; float: left;}
.footleft span{color: #cccccc; font-size: 12px; margin: 17px 0 17px; display: block;}
.footleft p.fwqq{font-size: 12px; color: #cccccc; line-height: 32px;}
.footleft p.fwrx2{font-size: 14px; color: #cccccc; font-weight: bold; line-height: 20px; text-align: right; margin: 10px 3px;}
.ewmbox{width: 122px; float: right;}
.ewmbox span{ display: block; text-align: center; line-height: 30px; margin: 0;}
.select-wrapper{ font: normal 14px '\5FAE\8F6F\96C5\9ED1'; outline: 0px; position: relative; cursor: pointer; display: inline-block; *display: inline; *float: left; *margin-right: 10px; background: #666; border: 1px solid #e3e3e3; background:#333;color: #fff;border:0px;outline: 0px;margin: 18px 18px 18px 0; }
.select-button{ font: normal 12px '\5FAE\8F6F\96C5\9ED1';border: 0; background: #575b60; cursor: pointer; padding: 0 26px 0 10px; overflow: hidden; text-align: left; outline: none; white-space: nowrap; word-break: keep-all; text-overflow: ellipsis; color:#cccccc;}
.select-down{ position: absolute; top: 21px; right: -10px; height:0; width:0; overflow: hidden; font-size: 0; border-color: #333 transparent transparent transparent; border-style: solid; border-width: 6px; }
.disabled{ color: #cccccc; }
.select-list{background: #44474b; display: none; z-index: 2; position: absolute; overflow: hidden; }
.select-list ul{ margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; line-height: 34px; max-height: 240px; }
.select-list ul li{ width: 100%; padding-left: 10px; cursor: pointer; overflow: hidden; white-space: nowrap; word-break: keep-all; text-overflow: ellipsis; background:#44474b; }
.select-list ul li.selected, .select-list ul li:hover{ color: #000; background: #ddd; }
/* ไธๆๅ่กจไธๅฏ็จๆ ทๅผ */
.select-button-disable{ color: #ccc; width: 238px; height: 34px; border: 1px solid #e3e3e3; border-radius: 3px;
background: #fff; cursor: pointer; padding-left: 10px; overflow: hidden; text-align: left; outline: none; }
.select-down-disable{ color: #ccc; font-size: 18px; position: absolute; top: 0; right: 10px; line-height: 34px; }
.banquan{height: 97px; width: 100%; text-align: center; color: #555555; font-size: 12px; padding: 20px 0 0; }
.banquan p{line-height: 40px;font-size: 12px; color: #333333;}
.banquan p a{font-size: 12px; color: #333333; margin: 0 10px;}
.servicelist{display: none; width: 100%;}
.servicelist li{width: 20%; float: left;}
.servicelist li a{ display: block; text-align: center;}
.servicelist li a img{display: block; margin:10px auto;}
.servicelist li a span{font-size: 14px; color: #666666;}
.phoneNews{display: none;}
.carousel-inner{height: 430px;}
/*็งปๅจ็ซฏไบ็บงๅฏผ่ช*/
.sp-box{width: 100%;}
.csp-list {width:100%; position:relative;}
.csp-list .spname {height:100%; width:30%; max-width: 180px; float: left; background: #f4f4f4;}
.csp-list .spname li{padding: 0}
.csp-list .spname li a {display:block; height: 100%; overflow: hidden; border-left: 5px solid #f4f4f4; border-bottom: 1px solid #dbdbdb; text-align:center;font-size:14px; color: #666666; cursor:pointer;}
.csp-list .spname li.current {color: #000}
.csp-list .spname li.current a {background:#ffffff;color:#000;border-left: 5px solid #72b8e9}
.csp-list .spcon { float: left; background: #ffffff; width: 65%; height: 100%; }
.csp-list .spcon .sublist{min-height: 380px;background: #fff}
.csp-list .spcon ul li p.list{padding: 10px 0 10px 10px; overflow: hidden; position: relative; margin: 0 5px;cursor: pointer; }
.csp-list .spcon ul li p.list span.name{font-size: 14px;color: #333333;float: left;display: block; max-height: 70px;overflow: hidden;}
.csp-list .spcon ul li p.list span.red{color: #f33}
.csp-list .spcon ul li p.list span.price{font-size: 20px;color: #999;display: block;position: absolute;right: 0px;top: 30px}
/*ๅๆ
้พๆฅ*/
.foot_link{width: 100%; clear: both; border-top: 1px solid #63686e; padding: 10px 0; background: #4a4e53; overflow: hidden;}
.linkbox{max-width: 1180px; margin: 0 auto; line-height: 30px;}
.linkbox span{font-size: 12px; color: #cccccc;}
.linkbox a{font-size: 12px; color: #cccccc; margin: 0 8px;}
.linkbox a:hover{color: #FFF;}
/*404*/
.errorTop{ background: #f1f2f6;width: 100%;height: auto; overflow: hidden;position: relative;background: #F4F4F4;padding-bottom: 100px; }
.topContent{ width: 600px;margin:108px auto 80px; }
.topLeft,.topRight{ float: left; }
.topRight{ padding-top: 83px; }
.sorry{ font-size: 24px;color:#666; }
.or{ font-size: 14px;color:#666;margin:10px 0 18px ; }
.back{ color:#007bc7; }
.errorinput{ width: 278px;height: 20px; }
.search{ position: relative; }
.errorsearch{ color:#007bc7;position: absolute;font-size: 14px;width: 74px;height: 22px;display: inline-block;border-left: 1px solid #ccc;padding:1px 0 0 10px;top:8px;right: 20px; }
.errorInterest{ background: #F4F4F4; }
.interestTitle{ color:#666;font-size: 18px;margin-bottom: 20px; }
.interestList{margin-bottom: 20px;}
.errorLi{ width: 280px;height: 234px;background: #fff; }
.tsk{position: fixed; z-index: 10000; display: none; border: 1px solid #ddd; width: 500px; height: 200px; background: #ffffff; left: 50%; top: 50%; margin-left: -250px; margin-top: -100px;}
.tsk span{display: block; height: 50px; background: #e5e5e5; padding: 0 30px; text-align: right; color: #333; line-height: 50px; cursor: pointer;}
.tsk p{text-align: center; line-height: 100px; font-size: 16px; color: #ff7f00;}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*.in_fuwubox,.in_fuwubox ul{max-width: 1180px;height: auto;overflow: hidden;margin: 0 auto;width: 100%;}
.in_fuwubox h3{color: #1585c9;font-size: 22px;text-align: center;width: 100%;font-weight: normal;}
.in_fuwubox li{width: 20%;float: left;margin: 16px 0px 70px;}
.in_fuwubox a img {display: block;margin: 10px auto;width: 70px;height: 70px;}
.in_fuwubox a p{font-size: 20px;color: #1585c9;text-align: center;width: 100%;}
.in_fuwubox a{display: block;}
.in_fuwubox a:hover img{ transform: rotate(360deg); -ms-transform: rotate(360deg); !* IE 9 *! -webkit-transform: rotate(360deg); !* Safari and Chrome *! transition: .5s; }*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.in_ourpro{position: relative;}
.in_ourpro_box{max-width: 1180px;height: auto;overflow: hidden;margin: 0 auto;width: 100%;}
.ourpro_box1 {width: 100%;height: auto;overflow: hidden;position: relative;}
.ourpro_box1 li{width:20%;float: left;position: relative;}
.ourpro_img1,.ourpro_img2,.ourpro_img3,.ourpro_img4,.ourpro_img5{background: url("../img/zj_03.png")no-repeat center;width: 185px;height: 184px;margin: 0 auto;cursor: pointer;}
.ourpro_img2{background: url("../img/zj_05.png")no-repeat center;}
.ourpro_img3{background: url("../img/zj_07.png")no-repeat center;}
.ourpro_img4{background: url("../img/zj_09.png")no-repeat center;}
.ourpro_img5{background: url("../img/zj_11.png")no-repeat center;}
/*.ourpro_img1:hover{background: url("../img/zj2_03.png")no-repeat center;}
.ourpro_img3:hover{background: url("../img/zj2_07.png")no-repeat center;}
.ourpro_img4:hover{background: url("../img/zj2_09.png")no-repeat center;}
.ourpro_img5:hover{background: url("../img/zj2_11.png")no-repeat center;}
.ourpro_img2:hover{background: url("../img/zj2_05.png")no-repeat center;}*/
.ourpro_box1 .ys_img1 div.active{background: url("../img/zj2_03.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img2 div.active{background: url("../img/zj2_05.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img3 div.active{background: url("../img/zj2_07.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img4 div.active{background: url("../img/zj2_09.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_img5 div.active{background: url("../img/zj2_11.png")no-repeat center;background-size: 100%;}
.ourpro_box1 .ys_a span{display: none;width: 50px;height: 3px;margin: 0 auto;margin-top: 30px;background: #007cc6;}
/*.ourpro_box1 .ys_a:hover span{display: block;background:#007cc6;}*/
.ourpro_box1 p{font-size: 18px;text-align: center;width: 100%;color: #222;margin-top: 10px;}
.ourpro_box1 li:hover p{color: #007cc6;}
.ourpro_box2{width: 100%;border:1px solid #e6e6e6;border-width: 1px 0px 1px 0px;width: 100%;height: auto;overflow: hidden;padding: 30px auto 30px; margin:0px auto 70px;}
.ourpro_box2>div{display: none;width: 100%;height: auto;overflow: hidden;}
.ourpro_box2 ul{width: 520px;height: auto;overflow: hidden;display: block;margin: 30px auto;}
.ourpro_box2 li{background: url("../img/zj1.png") no-repeat;font-size: 16px;line-height: 34px;color: #666;padding-left: 24px;}
@media (max-width:1180px) and (min-width: 1000px) {
#continer{min-width: 1000px;}
.top-box .box-con{width: 1000px;}
.logo-box{width: 1000px;}
.nav-box .box-con{width: 1000px;}
.nav-box .box-con ul.nav-ul{width: 760px;}
div.banner-nav .left-nav dl dd .nav-right .main-box{width: 758px;}
div.banner-nav .left-nav dl dd .nav-right{width: 758px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left{width: 510px; padding: 0 10px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .title{width: 70px; margin-right: 10px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text{width: 425px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .left .text ul li{margin: 5px 10px 5px 0;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right{width: 225px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv{width: 200px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv img{width: 200px;}
div.banner-nav .left-nav dl dd .nav-right .main-box .right .pic div.firstdiv span{width: 200px;}
.banrightbox{width: 1000px; margin-left: -500px;}
.submenu{width: 1000px;}
.zhucelistbox{width: 252px;}
.zcbox{ width: auto;}
@keyframes boxing{
0%{width: 248px; padding-top: 50px; height: 330px; background: #FFFFFF;}
100%{width: 250px; height:329px; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; border-bottom: 1px solid #dbdbdb; margin-left: 0; box-shadow:2px 2px 3px #aaaaaa;}
}
.teambox{width: 1000px;}
.flashBg{width: 900px;}
.hd a.next{right: -25px;}
.hd a.prev{left: -25px;}
.in_lc>div{width: 1000px;}
.in_lc>div>div{margin-right: 36px;}
.ck-slide{width: 1000px;}
.ck-slide ul.ck-slide-wrapper li{width: 1000px;}
.newsdl{width: 1000px;}
.newsdl dd{width: 320px; margin-right: 20px;}
.newsdl dd div.xqbox{width: 220px; height: 80px; overflow: hidden;}
.newsdl dd div.xqbox{margin-left: 10px;}
.clients .box ul.items{width: 1000px;}
.clients .box ul.items li{padding: 10px 12px 10px 0; margin: 0 7px 23px 0;}
.jpservice{width: 1000px;}
.jpservice dl{width: 221px;}
.jpservice dl dd{width: 130px; margin-left: 14px;}
.jpservice dl.seconddl{width: 302px;}
.jpservice dl.seconddl dd{width: 210px;}
.jpservice dl.threedl{width: 229px;}
.jpservice dl.threedl dd{width: 120px;}
.jpservice dl.lastdl{width: 248px;}
.jpservice dl.lastdl dd{width: 156px;}
.in_cont .cont{width: 1000px;}
.cont_cont{width: 305px; margin-left: 40px;}
.footleft{width: 156px;}
.footleft img{width: 100%;}
}
@media only screen and (max-width: 1000px) {
.banner-box{height: auto;}
.carousel-inner{height: auto;}
.carousel-inner>.item>a>img, .carousel-inner>.item>img{width: 200%; position: inherit; left: -50%; margin-left: auto; height: auto;}
#continer{min-width: 0;}
.top-box{display: none;}
.ad-box,.logo-box span.telphone,.nav-box,.banrightbox{display: none;}
.wrapper{width: 100%;}
.logo-box{width: 90%; margin: 0 auto; margin-top: -20px; height: 70px;}
.phonenav{display: block;}
.titlebox h3{font-size: 18px;}
.service{height: 355px;}
.servicebox{display: none;}
.servicelist{display: block;}
.teambox{width: 90%;}
.flashBg{width: 80%; left: 0%;}
.hd a.next{right: 5px;}
.hd a.prev{left: 5px;}
.in_lc>div{width: 90%;}
.in_lc>div>div{ width: 33%; margin-right: 0;}
.in_lc u{left: 12%;}
.in_lc{height: auto; padding-bottom: 40px;}
.ck-slide{display: none;}
.newsdl{width: 90%; margin: 0 auto;}
.newsdl dd{width: 100%;}
.newsdl dd div.xqbox{width: auto;}
.clients .box ul.items{width: 90%;}
.clients .box ul.items li{margin-right: 0.5%;}
.jpservice{width: 90%; height: auto;}
.jpservice dl{width: 50%; margin-bottom: 15px;}
.jpservice dl.seconddl,.jpservice dl.threedl{width: 50%;}
.jpservice dl.threedl,.jpservice dl.lastdl{margin-bottom: 0;}
.jpservice dl.seconddl dd{width: auto;}
.in_cont .cont{width: 90%;}
.in_cont{height: auto;}
.cont .cont_input{float: none; margin: 0 auto;}
.cont_cont{float: none; margin: 0 auto;}
.clients .box ul.items li{display: none;}
.phoneNews{display: block;}
.clients .box ul.items li.apple{margin-right: 0.5%;}
.linkbox{padding: 0 10px;}
.search-box{width: 100%;}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*.in_fuwubox li{width: 20%;float: left;margin: 16px 0px 70px;}
.in_fuwubox h3{font-size: 16px;}.in_fuwubox a p{font-size: 14px;}*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.ourpro_box2{/*display: none;*/}
.in_ourpro{padding-bottom: 40px;}
.ourpro_box1 p{font-size: 12px;}
.ourpro_img1, .ourpro_img2, .ourpro_img3, .ourpro_img4, .ourpro_img5{width:100%;background-size: 100%; }
.ourpro_img1:hover, .ourpro_img2:hover, .ourpro_img3:hover, .ourpro_img4:hover, .ourpro_img5:hover{background-size: 100%;}
.in_lc>div>div>p{text-align: center;}
}
@media only screen and (max-width: 600px) {
.in_cont{display: none;}
.flashBg{width: 225px;}
.newsdl dd div.date{width: 20%;}
.newsdl dd div.xqbox{width: 70%; margin-left: 9%;}
.in_kehu{height: 748px;}
.jpservice dl,.jpservice dl.seconddl, .jpservice dl.threedl{width: 100%;}
.jpservice dl.threedl, .jpservice dl.lastdl{margin-bottom: 15px;}
.newsdl dd div.date strong{margin-top: 0;}
.clients .box ul.items{width: 370px;}
.clients .box ul.items li{margin-left: 10px;}
.topContent{width: 320px;}
.topRight{float: none;}
.or,.sorry{text-align: center}
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/* .in_fuwubox ul{margin: 20px 0px;}
.in_fuwubox li{width: 33.3%;float: left;margin: 10px 0px 10px;}
.in_fuwubox a img{width: 56px;height: 56px;}
.in_fuwubox a p{font-size: 12px;}*/
/*3.16 ๅ
จๅฟๅ
จๆไธบไบบๆฐๆๅก*/
/*3.21 ๆไปฌ็ไบงๅ*/
.ourpro_box2{/*display: none;*/ margin-bottom: 30px;}
.ourpro_box2 ul{width: 100%;}
.ourpro_box2 li{font-size: 13px; line-height: 24px;}
.ourpro_box2 li.dl_yx{width: 100%; text-align: center;}
.ourpro_box2 li div{width: 128px; margin-right: 10px; display: inline-block; float: none;}
.in_ourpro{padding-bottom: 40px;}
.ourpro_box1 p{font-size: 12px;}
.ourpro_img1, .ourpro_img2, .ourpro_img3, .ourpro_img4, .ourpro_img5{width:100%;background-size: 100%; height: 120px;}
}
@media only screen and (max-width:480px ) {
.servicelist li{width: 33%;}
.service{height: 470px;}
.in_lc>div>div{ width: 30%; margin-bottom: 20px; margin-left: 10px;}
.in_lc .circle{width: 80px; height: 80px;}
.in_lc i{margin-left: 26px; margin-top: 26px; width: 30px; height: 30px; background-size: 30px 30px;}
.in_lc .qyht,.in_lc .ymsj,.in_lc .cxkf,.in_lc .shys,.in_lc .hqwh{background-size: 30px 30px;}
.in_lc>div>div:hover .qyht{background-size:30px 30px ;}
.in_lc u{width: 25px; height: 25px; line-height: 25px; font-size: 14px;}
.in_lc>div>div h3{font-size: 14px;}
.in_lc>div>div>p{font-size: 12px; display: none;}
.in_lc>div>div>p br{display: none;}
.newsdl dd div.date{width: 55px; height: 55px; border-radius: 55px;}
.newsdl dd div.date strong{font-size: 16px; line-height: 30px;}
.newsdl dd div.date em{font-size: 12px;}
.footljzx{padding-top: 97px; height: 56px; background-size: auto 150px; }
.footljzx a{height: 30px; width: 110px; font-size: 14px; line-height: 30px;}
.clients .box ul.items{width: 83%;}
.clients .box ul.items li{margin-right: 1%; margin-left: 0;}
.foot_link{display: none;}
}
@media only screen and (max-width: 412px) {
.in_lc>div{width: 100%;}
.logo-box a.logo{width: 180px; height: 49px; background-size: 180px 49px;}
.phonenav{top: 20px;}
.logo-box{height: 70px;}
.thanks{height: 375px;}
.clients .box ul.items li{float: none; margin: 0 auto 23px;}
.logo-box a.logo img{width: 100%;}
}
@media only screen and (max-width:360px ) {
.clients .box ul.items li{float: none; margin: 20px auto;}
}
.login_fixed
{
position: fixed;
left: 50%;
top: 0px;
width: 317px;
margin-left:-158px;
margin-top:-125px;
height: 250px;
background-color: #fff;
padding-bottom: 30px;
border: 1px solid lightgrey;
z-index:999999999999999999999;
}
.login_form
{
width: 260px;
margin: 0 auto;
margin-top: 30px;
}
.login_form span
{
float: left;
padding-right: 20px;
line-height: 40px;
width: 48px;
text-align: right;
font-size: 12px;
}
.login_row input
{
float: left;
width: 180px;
height: 28px;
font-size: 14px;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 4px;
line-height: 28px;
}
.login_row
{
height: 24px;
margin-bottom: 40px;
}
.login_row_recember
{
height: 24px;
}
.login_action_center
{
text-align: center;
padding-top: 15px;
}
.login_action
{
padding: 10px 60px;
font-size: 14px;
background-color: #37A8F6;
color: white;
}
.error_input
{
border: 1px solid red;
}
.error_desc
{
font-size: 12px;
color: red;
}
.error_input
{
border: 1px solid red;
}
.tab ul.menu22
{
height: 34px;
background: #f6f6f6;
}
.tab ul.menu22 li
{
float: left;
text-align: center;
width: 100px;
height: 34px;
background: #f6f6f6;
line-height: 32px;
list-style: none;
font-size: 12px;
cursor: pointer;
}
.tab ul.menu22 li.active
{
background: #e2383a;
color: #fff;
}
.guanbi2{float: right;position: absolute;right: 0px;top: 0px;width: 34px;height: 34px;background: url("../images/guanb.png");cursor: pointer;} | 0.258045 | 0.06148 |
body {
background: #282537;
background-image: -webkit-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: -moz-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: -o-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
}
/* Range Slider Input Base from https://codepen.io/onyx1812/pen/GRJxmva */
input[type="range"] {
-webkit-appearance: none;
margin: 20px 0;
width: 100%;
}
input[type="range"]:focus {
outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
animate: 0.2s;
background: #848484;
border-radius: 25px;
}
input[type="range"]::-webkit-slider-thumb {
height: 20px;
width: 20px;
border-radius: 50%;
background: #fff;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 1);
cursor: pointer;
-webkit-appearance: none;
margin-top: -8px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
background: #848484;
}
/* Custom Range Styles */
.range-wrap {
width: 75%;
position: relative;
margin: 0 auto;
top: 50px;
display: block;
max-width: 1000px;
}
.range-value {
position: absolute;
top: -50%;
}
.range-value span {
width: 53px;
height: 35px;
line-height: 37px;
text-align: center;
background: #848484;
color: #fff;
font-size: 28px;
display: block;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
border-radius: 6px;
bottom: -23px;
font-family: sans-serif;
}
.range-value span:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-top: 10px solid #848484;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
top: 100%;
left: 50%;
margin-left: -5px;
margin-top: -1px;
}
/* CSS Grid is used for easy responsiveness */
.swapi-cards {
max-width: 1200px;
margin: 4rem auto;
padding: 5px 50px;
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.person {
background-color: gainsboro;
color: white;
font-family: monospace;
text-align: center;
border-radius: 10px;
-webkit-box-shadow: 4px 3px 6px 0px rgba(50, 50, 50, 0.27);
-moz-box-shadow: 4px 3px 6px 0px rgba(50, 50, 50, 0.27);
box-shadow: -1px -3px 20px 0px rgb(72, 56, 92);
}
.swapi-content {
display: grid;
grid-template-columns: minmax(100px, 1fr) 1fr;
background-color: white;
color: black;
min-height: 75px;
border-radius: 10px;
}
.swapi-name {
font-family: Bungee, sans-serif;
font-weight: 100;
font-size: 1rem;
opacity: .9;
}
.swapi-val {
font-family: Montserrat, sans-serif;
font-size: .6rem;
font-weight: 400;
}
.swapi-prop {
padding: 5px;
margin: 0;
background-color: #f7f7f7;
font-family: Montserrat, sans-serif;
font-size: .7rem;
font-weight: 600;
} | style.css | body {
background: #282537;
background-image: -webkit-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: -moz-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: -o-radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
background-image: radial-gradient(top, circle cover, #18181b 0%, #252233 80%);
}
/* Range Slider Input Base from https://codepen.io/onyx1812/pen/GRJxmva */
input[type="range"] {
-webkit-appearance: none;
margin: 20px 0;
width: 100%;
}
input[type="range"]:focus {
outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
animate: 0.2s;
background: #848484;
border-radius: 25px;
}
input[type="range"]::-webkit-slider-thumb {
height: 20px;
width: 20px;
border-radius: 50%;
background: #fff;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 1);
cursor: pointer;
-webkit-appearance: none;
margin-top: -8px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
background: #848484;
}
/* Custom Range Styles */
.range-wrap {
width: 75%;
position: relative;
margin: 0 auto;
top: 50px;
display: block;
max-width: 1000px;
}
.range-value {
position: absolute;
top: -50%;
}
.range-value span {
width: 53px;
height: 35px;
line-height: 37px;
text-align: center;
background: #848484;
color: #fff;
font-size: 28px;
display: block;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
border-radius: 6px;
bottom: -23px;
font-family: sans-serif;
}
.range-value span:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-top: 10px solid #848484;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
top: 100%;
left: 50%;
margin-left: -5px;
margin-top: -1px;
}
/* CSS Grid is used for easy responsiveness */
.swapi-cards {
max-width: 1200px;
margin: 4rem auto;
padding: 5px 50px;
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.person {
background-color: gainsboro;
color: white;
font-family: monospace;
text-align: center;
border-radius: 10px;
-webkit-box-shadow: 4px 3px 6px 0px rgba(50, 50, 50, 0.27);
-moz-box-shadow: 4px 3px 6px 0px rgba(50, 50, 50, 0.27);
box-shadow: -1px -3px 20px 0px rgb(72, 56, 92);
}
.swapi-content {
display: grid;
grid-template-columns: minmax(100px, 1fr) 1fr;
background-color: white;
color: black;
min-height: 75px;
border-radius: 10px;
}
.swapi-name {
font-family: Bungee, sans-serif;
font-weight: 100;
font-size: 1rem;
opacity: .9;
}
.swapi-val {
font-family: Montserrat, sans-serif;
font-size: .6rem;
font-weight: 400;
}
.swapi-prop {
padding: 5px;
margin: 0;
background-color: #f7f7f7;
font-family: Montserrat, sans-serif;
font-size: .7rem;
font-weight: 600;
} | 0.539226 | 0.077169 |
:root {
--theme-general-color: #63676d; /* theme general font color */
}
:root {
--theme-primary-color: #eed153; /* theme primary color */
}
:root {
--theme-secondary-color: #9a8853; /* theme secondary color */
}
:root {
--theme-white-color: #fff; /* theme white font color */
}
:root {
--theme-light-color: #f6f7f7; /* theme light gray color */
}
:root {
--theme-gray-color: #eceeef; /* theme gray color */
}
:root {
--theme-footer-color: #212224; /* theme dark color ok */
}
:root {
--theme-dark-color: #181a1d; /* theme dark color ok */
}
:root {
--theme-extra-color: #e3eff9; /* theme extra color */
}
:root {
--text-light-color: #a5a5a5; /* Light text color to use in dark area */
}
:root {
--theme-primary-opacity-color: rgba(238, 209, 83, .8); /* theme secondary color */
}
:root {
--theme-secondary-opacity-color: rgba(154, 136, 83, .6); /* theme secondary color */
}
:root {
--theme-dark-opacity-color: rgba(16, 37, 102, .7); /* theme Dark color */
}
:root {
--theme-white-opacity-color: rgba(255, 255, 255, 0.5); /* theme light color */
}
:root {
--theme-border-color: #eeeff3; /* theme border color */
}
/*==================================
Font Variable
==================================*/
:root {
--theme-general-font: 'Roboto', sans-serif; /* Font use for normal text and general text */
}
:root {
--theme-hiperlink-font: 'Montserrat', sans-serif; /* Font use for normal text and general text */
}
:root {
--theme-highlight-font: 'Montserrat', sans-serif; /* Font used in title or special area */
}
.navbar-expand-lg .navbar-nav .nav-link {
font-size: 15px;
font-weight: 500
}
.top-header {
font-size: 14px;
}
body {
font-size: 15px
}
.sub-title {
font-size: 18px
}
.btn-link,
.btn {
font-weight: 500;
font-size: 15px;
border-radius: 3px
}
.rounded-lg {
border-radius: 20px !important
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
.footer-widget li a {
color: var(--theme-dark-color);
}
.time-count li span{
color: var(--theme-dark-color);
font-weight: 500;
font-size: 13px;
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 100%;
background-color: var(--theme-primary-color);
display: block
}
.divider-col-3 > div {
border-color: #eaeff5
}
.woocommerce-product .product-img {
background-color: #fff
} | public/css/assets/css/category/furniture.css | :root {
--theme-general-color: #63676d; /* theme general font color */
}
:root {
--theme-primary-color: #eed153; /* theme primary color */
}
:root {
--theme-secondary-color: #9a8853; /* theme secondary color */
}
:root {
--theme-white-color: #fff; /* theme white font color */
}
:root {
--theme-light-color: #f6f7f7; /* theme light gray color */
}
:root {
--theme-gray-color: #eceeef; /* theme gray color */
}
:root {
--theme-footer-color: #212224; /* theme dark color ok */
}
:root {
--theme-dark-color: #181a1d; /* theme dark color ok */
}
:root {
--theme-extra-color: #e3eff9; /* theme extra color */
}
:root {
--text-light-color: #a5a5a5; /* Light text color to use in dark area */
}
:root {
--theme-primary-opacity-color: rgba(238, 209, 83, .8); /* theme secondary color */
}
:root {
--theme-secondary-opacity-color: rgba(154, 136, 83, .6); /* theme secondary color */
}
:root {
--theme-dark-opacity-color: rgba(16, 37, 102, .7); /* theme Dark color */
}
:root {
--theme-white-opacity-color: rgba(255, 255, 255, 0.5); /* theme light color */
}
:root {
--theme-border-color: #eeeff3; /* theme border color */
}
/*==================================
Font Variable
==================================*/
:root {
--theme-general-font: 'Roboto', sans-serif; /* Font use for normal text and general text */
}
:root {
--theme-hiperlink-font: 'Montserrat', sans-serif; /* Font use for normal text and general text */
}
:root {
--theme-highlight-font: 'Montserrat', sans-serif; /* Font used in title or special area */
}
.navbar-expand-lg .navbar-nav .nav-link {
font-size: 15px;
font-weight: 500
}
.top-header {
font-size: 14px;
}
body {
font-size: 15px
}
.sub-title {
font-size: 18px
}
.btn-link,
.btn {
font-weight: 500;
font-size: 15px;
border-radius: 3px
}
.rounded-lg {
border-radius: 20px !important
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
.footer-widget li a {
color: var(--theme-dark-color);
}
.time-count li span{
color: var(--theme-dark-color);
font-weight: 500;
font-size: 13px;
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 100%;
background-color: var(--theme-primary-color);
display: block
}
.divider-col-3 > div {
border-color: #eaeff5
}
.woocommerce-product .product-img {
background-color: #fff
} | 0.375821 | 0.082291 |
.draggable
{
position: absolute;
}
.connector_feedback
{
background-color: #336699;
padding: 1px;
}
.connector
{
background-color: #FF9900;
padding: 0.5px;
}
.iteration-box
{
border: 1.5px dashed #262A37;
margin: 2.5px;
height: 250px;
overflow: visible;
}
.iteration-name-label
{
margin-top: -12.5px;
margin-left: 5px;
padding: 1.5px;
float: left;
border: 1px solid #262A37;
background-color: #FFFFFF;
font-family: verdana;
font-weight: normal;
font-style: italic;
font-size: 10px;
color: #000000;
}
.iteration-set-box
{
background-color: #DDDDDD;
border: 1px solid #000000;
position: absolute;
width: 30px;
height: 30px;
font-family: Arial;
font-weight: bold;
font-size: 12px;
color: #333333;
text-align: center;
line-height: 30px;
}
.iteration-set-box-left
{
left: -15px;
}
.iteration-set-box-right
{
right: -15px;
}
.middle-label
{
background-color: #E0E8FF;
border: 1px solid #9DA3B3;
font-family: verdana;
font-size: 10px;
text-align: center;
padding: 2px;
border-radius: 5px;
margin-left: -40px;
width: 80px;
z-index: 2;
}
div.canvas
{
background-color: white;
background-image: url('../img/gradient.jpg');
background-repeat: no-repeat;
background-position: top right;
padding: 0px;
margin-bottom: 10px;
}
span.shippingStrategy
{
font-weight: normal;
font-style: normal;
}
span.localStrategy
{
font-weight: normal;
font-style: italic;
}
span.cacheStrategy
{
font-weight: bold;
font-style: normal;
}
.datasource, .datasink, .pact
{
border: 1px solid #9DA3B3;
padding: 2px;
margin: 0px;
}
.datasource, .datasink
{
background-color: #F7BE81;
width: 60px;
height: 45px;
border-radius: 15px;
}
.sourceSinkContents
{
font-family: verdana;
font-size: 10px;
word-wrap: break-word;
text-align: center;
margin-top: 10px;
margin-bottom: 18px;
margin-left: 3px;
margin-right: 3px;
}
.pact
{
width: 80px;
height: 60px;
background-color: #A9F5A9;
border-radius: 5px;
}
.pactTypeBox
{
background-color: #E0E8FF;
border: 1px solid #9DA3B3;
padding: 1px;
color: #33333F;
font-family: verdana;
font-size: 12px;
font-weight: bold;
text-align: center;
}
.pactContents
{
font-family: verdana;
font-size: 12px;
text-align:center;
vertical-align: middle;
padding: 3px;
margin-top: 5px;
margin-bottom: 15px;
word-wrap: break-word;
} | stratosphere-clients/resources/web-docs/css/pactgraphs_small.css | .draggable
{
position: absolute;
}
.connector_feedback
{
background-color: #336699;
padding: 1px;
}
.connector
{
background-color: #FF9900;
padding: 0.5px;
}
.iteration-box
{
border: 1.5px dashed #262A37;
margin: 2.5px;
height: 250px;
overflow: visible;
}
.iteration-name-label
{
margin-top: -12.5px;
margin-left: 5px;
padding: 1.5px;
float: left;
border: 1px solid #262A37;
background-color: #FFFFFF;
font-family: verdana;
font-weight: normal;
font-style: italic;
font-size: 10px;
color: #000000;
}
.iteration-set-box
{
background-color: #DDDDDD;
border: 1px solid #000000;
position: absolute;
width: 30px;
height: 30px;
font-family: Arial;
font-weight: bold;
font-size: 12px;
color: #333333;
text-align: center;
line-height: 30px;
}
.iteration-set-box-left
{
left: -15px;
}
.iteration-set-box-right
{
right: -15px;
}
.middle-label
{
background-color: #E0E8FF;
border: 1px solid #9DA3B3;
font-family: verdana;
font-size: 10px;
text-align: center;
padding: 2px;
border-radius: 5px;
margin-left: -40px;
width: 80px;
z-index: 2;
}
div.canvas
{
background-color: white;
background-image: url('../img/gradient.jpg');
background-repeat: no-repeat;
background-position: top right;
padding: 0px;
margin-bottom: 10px;
}
span.shippingStrategy
{
font-weight: normal;
font-style: normal;
}
span.localStrategy
{
font-weight: normal;
font-style: italic;
}
span.cacheStrategy
{
font-weight: bold;
font-style: normal;
}
.datasource, .datasink, .pact
{
border: 1px solid #9DA3B3;
padding: 2px;
margin: 0px;
}
.datasource, .datasink
{
background-color: #F7BE81;
width: 60px;
height: 45px;
border-radius: 15px;
}
.sourceSinkContents
{
font-family: verdana;
font-size: 10px;
word-wrap: break-word;
text-align: center;
margin-top: 10px;
margin-bottom: 18px;
margin-left: 3px;
margin-right: 3px;
}
.pact
{
width: 80px;
height: 60px;
background-color: #A9F5A9;
border-radius: 5px;
}
.pactTypeBox
{
background-color: #E0E8FF;
border: 1px solid #9DA3B3;
padding: 1px;
color: #33333F;
font-family: verdana;
font-size: 12px;
font-weight: bold;
text-align: center;
}
.pactContents
{
font-family: verdana;
font-size: 12px;
text-align:center;
vertical-align: middle;
padding: 3px;
margin-top: 5px;
margin-bottom: 15px;
word-wrap: break-word;
} | 0.297266 | 0.105763 |
.wack button,
.wack input,
.wack optgroup,
.wack select,
.wack textarea {
color: inherit;
font: inherit;
margin: 0;
background: transparent;
outline: none;
border: none;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.wack button,
.wack select {
text-transform: none;
cursor: pointer;
}
.wack input[type="checkbox"],
.wack input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
.wack textarea {
overflow: auto;
}
/* รขหลพรขหลพ moz รขหลพรขหลพ */
.wack body {
-moz-osx-font-smoothing: grayscale;
}
.wack button::-moz-focus-inner,
.wack input::-moz-focus-inner {
border: none;
padding: 0;
}
.wack input {
line-height: normal;
}
.wack fieldset {
-webkit-margin-start: 0;
-webkit-margin-end: 0;
-webkit-padding-before: 0;
-webkit-padding-start: 0;
-webkit-padding-end: 0;
-webkit-padding-after: 0;
}
.wack input[type=number]::-webkit-inner-spin-button,
.wack input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
height: auto;
}
.wack input[type="search"] {
-webkit-appearance: textfield;
}
.wack input[type="search"]::-webkit-search-cancel-button,
.wack input[type="search"]::-webkit-search-decoration,
.wack progress {
-webkit-appearance: none;
}
form.wack {
width: 100%;
height: 100%;
padding-bottom: 75px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: left;
}
.wack,
.wack * {
position: relative;
}
.select {
width: 310px;
height: 40px;
cursor: pointer;
background-color: white;
box-shadow: 0 2px 0 white;
border-radius: 2px;
}
.select_options {
padding: 0;
}
.select_expand {
width: 0;
height: 40px;
position: absolute;
top: 0;
right: 0;
}
.select_expand::after {
content: '\003E';
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
color: #3e3e3e;
font-size: 28px;
pointer-events: none;
z-index: 2;
-webkit-transition: all 250ms cubic-bezier(.4,.25,.3,1);
transition: all 250ms cubic-bezier(.4,.25,.3,1);
opacity: .6;
}
.select_expand:hover::after {
opacity: 1
}
.select_expand:checked::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
}
.select_expandLabel {
display: block;
width: 100%;
height: 40px;
position: absolute;
top: 2px;
left: 0;
cursor: pointer;
}
.select_close {
display: none
}
.select_closeLabel {
width: 100vw;
height: 100vh;
position: fixed;
top: 2px;
left: 0;
display: none;
}
.select_items {
width: 100%;
position: absolute;
top: 0;
left: 0;
border: 2px solid #2fb5d1;
border-radius: 2px;
padding-top: 40px;
}
.select_input {
display: none
}
.select_label {
-webkit-transition: all 250ms cubic-bezier(.4,.25,.3,1);
transition: all 250ms cubic-bezier(.4,.25,.3,1);
display: block;
height: 0;
font-size: 1.2rem;
line-height: 40px;
overflow: hidden;
color: #3e3e3e;
background-color: #fff;
cursor: pointer;
padding-left: 20px;
}
.select_label-placeholder {
height: 40px;
vertical-align: middle;
position: absolute;
top: 2px;
left: -40px;
opacity: .6;
background-color: transparent;
}
.select_expand:checked + .select_closeLabel {
display: block;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label {
height: 40px;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label:hover {
background-color: #f7f7f7
}
.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
display: none
}
.select_input:checked + .select_label {
height: 40px;
margin-top: -40px;
}
/*
/$$$$$$$
| $$__ $$
| $$ \ $$ /$$$$$$ /$$$$$$$ /$$$$$$
| $$$$$$$ |____ $$ /$$_____/ /$$__ $$
| $$__ $$ /$$$$$$$| $$$$$$ | $$$$$$$$
| $$ \ $$ /$$__ $$ \____ $$| $$_____/
| $$$$$$$/| $$$$$$$ /$$$$$$$/| $$$$$$$
|_______/ \_______/|_______/ \_______/
*/
* {
box-sizing: border-box;
}
html {
height: 100vh;
overflow-y: hidden;
padding: 0;
margin: 0;
background: #555;
}
body {
margin: 0;
color: #fff;
text-shadow: 3px 3px 15px rgba(0,0,0,.3);
font-family: 'Open Sans', sans-serif;
text-align: center;
font-size: 20px;
;
}
video {
max-width: 80%;
height: auto;
}
blockquote {
max-width: 80%;
font-size: 3em;
font-style: italic;
margin-top: -2em;
}
cite {
color: #ddd;
display: block;
margin-top: 2em;
}
.emoji {
font-size: 128px;
}
/*
/$$$$$$$ /$$ /$$
| $$__ $$ | $$ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$
| $$$$$$$/|____ $$|_ $$_/|_ $$_/ /$$__ $$ /$$__ $$| $$__ $$ /$$_____/
| $$____/ /$$$$$$$ | $$ | $$ | $$$$$$$$| $$ \__/| $$ \ $$| $$$$$$
| $$ /$$__ $$ | $$ /$$| $$ /$$| $$_____/| $$ | $$ | $$ \____ $$
| $$ | $$$$$$$ | $$$$/| $$$$/| $$$$$$$| $$ | $$ | $$ /$$$$$$$/
|__/ \_______/ \___/ \___/ \_______/|__/ |__/ |__/|_______/
*/
.shadow {
box-shadow: 3px 3px 30px rgba(0,0,0,.5);
}
.shadow-hover:hover {
box-shadow: 3px 3px 40px rgba(0,0,0,.7);
}
.shadow-txt {
text-shadow: 3px 3px 15px rgba(0,0,0,.3);
}
.position--relative {
position: relative;
}
.vhidden {
visibility: hidden;
}
/*h1,
.alpha {
font-size: 3.3333em;
line-height: 1.4;
}
h2,
.beta {
font-size: 2.6667em;
line-height: 1.4;
}
h3,
.gamma {
font-size: 2em;
line-height: 1.4;
}
h4,
.delta {
font-size: 1.3333em;
line-height: 1.4;
}
h5,
.epsilon {
font-size: 1.1667em;
line-height: 1.4;
}
h6,
.zeta {
font-size: 1em;
line-height: 1.4;
}*/
.mega {
font-size: 10vw;
font-weight: 100;
margin: 0;
}
.loner {
margin: 0;
line-height: 0;
}
.weight--light {
font-weight: 100;
}
.frame-img {
max-width: 90%;
max-height: 90%;
width: 80%;
height: auto;
}
.full-img {
background-size: cover;
background-position: center;
}
.a11y {
border:0!important;
clip:rect(0 0 0 0)!important;
height:1px!important;
margin:-1px!important;
overflow:hidden!important;
padding:0!important;
position: absolute!important;
width:1px!important;
}
/*
/$$$$$$ /$$ /$$ /$$
/$$__ $$| $$|__/ | $$
| $$ \__/| $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$
| $$$$$$ | $$| $$ /$$__ $$ /$$__ $$ /$$_____/
\____ $$| $$| $$| $$ | $$| $$$$$$$$| $$$$$$
/$$ \ $$| $$| $$| $$ | $$| $$_____/ \____ $$
| $$$$$$/| $$| $$| $$$$$$$| $$$$$$$ /$$$$$$$/
\______/ |__/|__/ \_______/ \_______/|_______/
*/
.slides {
display: flex;
width: 10000em;
}
.slide {
min-height: 100vh;
width: 100vw;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 2em;
}
.slide::before {
width: 15em;
height: 3em;
padding: 2em;
content: " " attr(id) "";
text-align: right;
position: absolute;
top: 0;
right: 0;
opacity: 0;
}
.slide.debug::before {
opacity: .8;
}
.slide--img {
padding: 0;
flex-direction: inherit;
}
.slide-background:nth-of-type(6n+1),
.slide.grade-blue-purple {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide a {
text-decoration: underline;
color: #fff;
}
.slide-background:nth-of-type(6n),
.slide.grade-yellow-orange {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background:nth-of-type(6n+4),
.slide.grade-red-orange {
background-image: url('data:image/svg+xml;base64,<KEY>wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuMCIgeDI9IjEuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I3NDQ0NCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M2NjMyOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
color: #fff;
}
.slide-background:nth-of-type(6n+3),
.slide.grade-green-blue {
background-image: url('data:image/svg+xml;base64,<KEY>8+PC9zdmc+IA==');
color: #fff;
}
.slide-background:nth-of-type(6n+2),
.slide.grade-teal-blue {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background:nth-of-type(6n+5),
.slide.grade-purple-blue {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background.slide--code {
background: #000;
color: #0f0;
font-family: "JOYSTIX", monospace;
}
.slide-background.slide--code .meda {
padding: 0 2em;
animation: blink-empty 1s infinite;
border-left: transparent solid 1px;
}
/*Too much irony?*/
/*:focus {
outline: -webkit-focus-ring-color auto 2px;
}*/
/* Editor, customized via http://codepen.io/rrenula/pen/qmaFb*/
.w-code-editor {
/*width: 80vw;*/
max-height: 80vh;
padding-bottom: 2em;
}
.code-editor:before,
.code-editor:after,
.code-editor span.control:before,
.code-editor span.after:after {
box-sizing: border-box;
content: '';
position: absolute;
z-index: 1;
transition: all .5s ease-in-out;
}
.code-editor {
box-sizing: border-box;
margin: 40px auto 0 auto;
width: 100%;
max-height: 80vh;
text-align: left;
border-radius: 0 0 5px 5px;
overflow: auto;
transition: all .5s ease-in-out;
}
.code-editor:before {
content: '';
color: #222;
padding-top: 6px;
text-align: center;
top: 0;
width: 100%;
height: 30px;
background-color: #fafafa;
border-radius: 5px 5px 0 0;
}
.code-editor span.control:before {
content: '';
top: 9px;
z-index: 2;
padding: 6px;
border-radius: 20px;
}
.code-editor span.control:nth-child(1):before {
margin-left: 15px;
background-color: #df6963;
}
.code-editor span.control:nth-child(2):before {
margin-left: 35px;
background-color: #f5e18a;
}
.code-editor span.control:nth-child(3):before {
margin-left: 55px;
background-color: #97c38a;
}
/* -- iPad Screen -- */
@media (min-width: 480px) and (max-width: 768px) {
.code-editor {
width: 500px;
}
.code-editor:before {
width: 500px;
}
}
/* -- iPhone Screen -- */
@media (max-width: 479px) {
.code-editor {
width: 300px;
}
.code-editor:before {
width: 300px;
}
}
/*pre[class*="language-"] {
margin: 0;
}
pre:focus {
outline: none;
}*/
.jumper {
display: none;
}
.jumper.is-active {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
z-index: 3;
background: rgba(0,0,0,0.7);
height: 100vh;
width: 100vw;
top: 0;
left: 0;
}
.jumper p {
font-size: 5em;
}
.jumper input {
font-size: 10em;
background: transparent;
color: #fff;
text-align: center;
border: 0;
width: 80%;
/*animation: blink-empty 1s infinite;
border-left: transparent solid 1px;*/
margin: 5px;
}
@keyframes blink-empty {
50% { border-left: 1px solid #fff; }
}
.jumper-button {
position: absolute;
left: -9999em;
}
.content-box {
font-size: 2em;
text-align: left;
max-width: 999px;
}
.highlight {
background: pink;
color: #fff;
}
.w-icon-5 {
display: inline-block;
float: left;
height: 148px;
width: 20%;
margin-bottom: 130px;
}
pre {
font-size: 22px;
}
.center-image{
}
.center-iframe {
width: 60%;
}
h1,h2,h3 {
margin-bottom: 50px;
}
input.big-input {
line-height: 2;
font-size: 20px;
padding: 5px;
border: 1px solid #eeeeee;
}
input.big-margin {
margin: 50px;
}
input.big-input:focus {
/*outline: 5px solid rgb(108, 193, 169);*/
outline: 5px solid #000000;
}
input.no-contrast:focus {
outline: 5px solid #f17528;
}
.reveal section img.inline-image,.reveal section img.emoji {
display: inline-block;
vertical-align: middle;
border: 0;
background: none;
box-shadow: none;
margin-left: 20px;
}
.reveal pre {
margin: 0;
width: 100%;
background-color: #3f3f3f;
border-radius: 5px;
}
.reveal pre code {
padding: 30px;
}
.input-label {
display: block;
font-size: 25px;
}
a {
color: #eee !important;
}
section.giphy {
top: 0px;
display: block;
position: relative;
}
section.giphy p {
color: #000;
position: fixed;
top: 0;
left: 0;
right: 0;
} | css/presentation.css | .wack button,
.wack input,
.wack optgroup,
.wack select,
.wack textarea {
color: inherit;
font: inherit;
margin: 0;
background: transparent;
outline: none;
border: none;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.wack button,
.wack select {
text-transform: none;
cursor: pointer;
}
.wack input[type="checkbox"],
.wack input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
.wack textarea {
overflow: auto;
}
/* รขหลพรขหลพ moz รขหลพรขหลพ */
.wack body {
-moz-osx-font-smoothing: grayscale;
}
.wack button::-moz-focus-inner,
.wack input::-moz-focus-inner {
border: none;
padding: 0;
}
.wack input {
line-height: normal;
}
.wack fieldset {
-webkit-margin-start: 0;
-webkit-margin-end: 0;
-webkit-padding-before: 0;
-webkit-padding-start: 0;
-webkit-padding-end: 0;
-webkit-padding-after: 0;
}
.wack input[type=number]::-webkit-inner-spin-button,
.wack input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
height: auto;
}
.wack input[type="search"] {
-webkit-appearance: textfield;
}
.wack input[type="search"]::-webkit-search-cancel-button,
.wack input[type="search"]::-webkit-search-decoration,
.wack progress {
-webkit-appearance: none;
}
form.wack {
width: 100%;
height: 100%;
padding-bottom: 75px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: left;
}
.wack,
.wack * {
position: relative;
}
.select {
width: 310px;
height: 40px;
cursor: pointer;
background-color: white;
box-shadow: 0 2px 0 white;
border-radius: 2px;
}
.select_options {
padding: 0;
}
.select_expand {
width: 0;
height: 40px;
position: absolute;
top: 0;
right: 0;
}
.select_expand::after {
content: '\003E';
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
color: #3e3e3e;
font-size: 28px;
pointer-events: none;
z-index: 2;
-webkit-transition: all 250ms cubic-bezier(.4,.25,.3,1);
transition: all 250ms cubic-bezier(.4,.25,.3,1);
opacity: .6;
}
.select_expand:hover::after {
opacity: 1
}
.select_expand:checked::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
}
.select_expandLabel {
display: block;
width: 100%;
height: 40px;
position: absolute;
top: 2px;
left: 0;
cursor: pointer;
}
.select_close {
display: none
}
.select_closeLabel {
width: 100vw;
height: 100vh;
position: fixed;
top: 2px;
left: 0;
display: none;
}
.select_items {
width: 100%;
position: absolute;
top: 0;
left: 0;
border: 2px solid #2fb5d1;
border-radius: 2px;
padding-top: 40px;
}
.select_input {
display: none
}
.select_label {
-webkit-transition: all 250ms cubic-bezier(.4,.25,.3,1);
transition: all 250ms cubic-bezier(.4,.25,.3,1);
display: block;
height: 0;
font-size: 1.2rem;
line-height: 40px;
overflow: hidden;
color: #3e3e3e;
background-color: #fff;
cursor: pointer;
padding-left: 20px;
}
.select_label-placeholder {
height: 40px;
vertical-align: middle;
position: absolute;
top: 2px;
left: -40px;
opacity: .6;
background-color: transparent;
}
.select_expand:checked + .select_closeLabel {
display: block;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label {
height: 40px;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label:hover {
background-color: #f7f7f7
}
.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
display: none
}
.select_input:checked + .select_label {
height: 40px;
margin-top: -40px;
}
/*
/$$$$$$$
| $$__ $$
| $$ \ $$ /$$$$$$ /$$$$$$$ /$$$$$$
| $$$$$$$ |____ $$ /$$_____/ /$$__ $$
| $$__ $$ /$$$$$$$| $$$$$$ | $$$$$$$$
| $$ \ $$ /$$__ $$ \____ $$| $$_____/
| $$$$$$$/| $$$$$$$ /$$$$$$$/| $$$$$$$
|_______/ \_______/|_______/ \_______/
*/
* {
box-sizing: border-box;
}
html {
height: 100vh;
overflow-y: hidden;
padding: 0;
margin: 0;
background: #555;
}
body {
margin: 0;
color: #fff;
text-shadow: 3px 3px 15px rgba(0,0,0,.3);
font-family: 'Open Sans', sans-serif;
text-align: center;
font-size: 20px;
;
}
video {
max-width: 80%;
height: auto;
}
blockquote {
max-width: 80%;
font-size: 3em;
font-style: italic;
margin-top: -2em;
}
cite {
color: #ddd;
display: block;
margin-top: 2em;
}
.emoji {
font-size: 128px;
}
/*
/$$$$$$$ /$$ /$$
| $$__ $$ | $$ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$
| $$$$$$$/|____ $$|_ $$_/|_ $$_/ /$$__ $$ /$$__ $$| $$__ $$ /$$_____/
| $$____/ /$$$$$$$ | $$ | $$ | $$$$$$$$| $$ \__/| $$ \ $$| $$$$$$
| $$ /$$__ $$ | $$ /$$| $$ /$$| $$_____/| $$ | $$ | $$ \____ $$
| $$ | $$$$$$$ | $$$$/| $$$$/| $$$$$$$| $$ | $$ | $$ /$$$$$$$/
|__/ \_______/ \___/ \___/ \_______/|__/ |__/ |__/|_______/
*/
.shadow {
box-shadow: 3px 3px 30px rgba(0,0,0,.5);
}
.shadow-hover:hover {
box-shadow: 3px 3px 40px rgba(0,0,0,.7);
}
.shadow-txt {
text-shadow: 3px 3px 15px rgba(0,0,0,.3);
}
.position--relative {
position: relative;
}
.vhidden {
visibility: hidden;
}
/*h1,
.alpha {
font-size: 3.3333em;
line-height: 1.4;
}
h2,
.beta {
font-size: 2.6667em;
line-height: 1.4;
}
h3,
.gamma {
font-size: 2em;
line-height: 1.4;
}
h4,
.delta {
font-size: 1.3333em;
line-height: 1.4;
}
h5,
.epsilon {
font-size: 1.1667em;
line-height: 1.4;
}
h6,
.zeta {
font-size: 1em;
line-height: 1.4;
}*/
.mega {
font-size: 10vw;
font-weight: 100;
margin: 0;
}
.loner {
margin: 0;
line-height: 0;
}
.weight--light {
font-weight: 100;
}
.frame-img {
max-width: 90%;
max-height: 90%;
width: 80%;
height: auto;
}
.full-img {
background-size: cover;
background-position: center;
}
.a11y {
border:0!important;
clip:rect(0 0 0 0)!important;
height:1px!important;
margin:-1px!important;
overflow:hidden!important;
padding:0!important;
position: absolute!important;
width:1px!important;
}
/*
/$$$$$$ /$$ /$$ /$$
/$$__ $$| $$|__/ | $$
| $$ \__/| $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$
| $$$$$$ | $$| $$ /$$__ $$ /$$__ $$ /$$_____/
\____ $$| $$| $$| $$ | $$| $$$$$$$$| $$$$$$
/$$ \ $$| $$| $$| $$ | $$| $$_____/ \____ $$
| $$$$$$/| $$| $$| $$$$$$$| $$$$$$$ /$$$$$$$/
\______/ |__/|__/ \_______/ \_______/|_______/
*/
.slides {
display: flex;
width: 10000em;
}
.slide {
min-height: 100vh;
width: 100vw;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 2em;
}
.slide::before {
width: 15em;
height: 3em;
padding: 2em;
content: " " attr(id) "";
text-align: right;
position: absolute;
top: 0;
right: 0;
opacity: 0;
}
.slide.debug::before {
opacity: .8;
}
.slide--img {
padding: 0;
flex-direction: inherit;
}
.slide-background:nth-of-type(6n+1),
.slide.grade-blue-purple {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide a {
text-decoration: underline;
color: #fff;
}
.slide-background:nth-of-type(6n),
.slide.grade-yellow-orange {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background:nth-of-type(6n+4),
.slide.grade-red-orange {
background-image: url('data:image/svg+xml;base64,<KEY>wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuMCIgeDI9IjEuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I3NDQ0NCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M2NjMyOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
color: #fff;
}
.slide-background:nth-of-type(6n+3),
.slide.grade-green-blue {
background-image: url('data:image/svg+xml;base64,<KEY>8+PC9zdmc+IA==');
color: #fff;
}
.slide-background:nth-of-type(6n+2),
.slide.grade-teal-blue {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background:nth-of-type(6n+5),
.slide.grade-purple-blue {
background-image: url('data:image/svg+xml;base64,<KEY>');
color: #fff;
}
.slide-background.slide--code {
background: #000;
color: #0f0;
font-family: "JOYSTIX", monospace;
}
.slide-background.slide--code .meda {
padding: 0 2em;
animation: blink-empty 1s infinite;
border-left: transparent solid 1px;
}
/*Too much irony?*/
/*:focus {
outline: -webkit-focus-ring-color auto 2px;
}*/
/* Editor, customized via http://codepen.io/rrenula/pen/qmaFb*/
.w-code-editor {
/*width: 80vw;*/
max-height: 80vh;
padding-bottom: 2em;
}
.code-editor:before,
.code-editor:after,
.code-editor span.control:before,
.code-editor span.after:after {
box-sizing: border-box;
content: '';
position: absolute;
z-index: 1;
transition: all .5s ease-in-out;
}
.code-editor {
box-sizing: border-box;
margin: 40px auto 0 auto;
width: 100%;
max-height: 80vh;
text-align: left;
border-radius: 0 0 5px 5px;
overflow: auto;
transition: all .5s ease-in-out;
}
.code-editor:before {
content: '';
color: #222;
padding-top: 6px;
text-align: center;
top: 0;
width: 100%;
height: 30px;
background-color: #fafafa;
border-radius: 5px 5px 0 0;
}
.code-editor span.control:before {
content: '';
top: 9px;
z-index: 2;
padding: 6px;
border-radius: 20px;
}
.code-editor span.control:nth-child(1):before {
margin-left: 15px;
background-color: #df6963;
}
.code-editor span.control:nth-child(2):before {
margin-left: 35px;
background-color: #f5e18a;
}
.code-editor span.control:nth-child(3):before {
margin-left: 55px;
background-color: #97c38a;
}
/* -- iPad Screen -- */
@media (min-width: 480px) and (max-width: 768px) {
.code-editor {
width: 500px;
}
.code-editor:before {
width: 500px;
}
}
/* -- iPhone Screen -- */
@media (max-width: 479px) {
.code-editor {
width: 300px;
}
.code-editor:before {
width: 300px;
}
}
/*pre[class*="language-"] {
margin: 0;
}
pre:focus {
outline: none;
}*/
.jumper {
display: none;
}
.jumper.is-active {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
z-index: 3;
background: rgba(0,0,0,0.7);
height: 100vh;
width: 100vw;
top: 0;
left: 0;
}
.jumper p {
font-size: 5em;
}
.jumper input {
font-size: 10em;
background: transparent;
color: #fff;
text-align: center;
border: 0;
width: 80%;
/*animation: blink-empty 1s infinite;
border-left: transparent solid 1px;*/
margin: 5px;
}
@keyframes blink-empty {
50% { border-left: 1px solid #fff; }
}
.jumper-button {
position: absolute;
left: -9999em;
}
.content-box {
font-size: 2em;
text-align: left;
max-width: 999px;
}
.highlight {
background: pink;
color: #fff;
}
.w-icon-5 {
display: inline-block;
float: left;
height: 148px;
width: 20%;
margin-bottom: 130px;
}
pre {
font-size: 22px;
}
.center-image{
}
.center-iframe {
width: 60%;
}
h1,h2,h3 {
margin-bottom: 50px;
}
input.big-input {
line-height: 2;
font-size: 20px;
padding: 5px;
border: 1px solid #eeeeee;
}
input.big-margin {
margin: 50px;
}
input.big-input:focus {
/*outline: 5px solid rgb(108, 193, 169);*/
outline: 5px solid #000000;
}
input.no-contrast:focus {
outline: 5px solid #f17528;
}
.reveal section img.inline-image,.reveal section img.emoji {
display: inline-block;
vertical-align: middle;
border: 0;
background: none;
box-shadow: none;
margin-left: 20px;
}
.reveal pre {
margin: 0;
width: 100%;
background-color: #3f3f3f;
border-radius: 5px;
}
.reveal pre code {
padding: 30px;
}
.input-label {
display: block;
font-size: 25px;
}
a {
color: #eee !important;
}
section.giphy {
top: 0px;
display: block;
position: relative;
}
section.giphy p {
color: #000;
position: fixed;
top: 0;
left: 0;
right: 0;
} | 0.329176 | 0.102844 |
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
}
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Red+Hat+Mono:wght@300&display=swap");
*::before ::after {
box-sizing: border-box;
}
body {
overflow-x: hidden;
background-color: #f9fafb;
font-family: "Poppins", sans-serif;
margin: 0;
}
:root {
/* colors */
--gray: #E5E7EB;
--dark-gray: #8d8f94;
--white: #ffffff;
--black: #000000;
--blue: #F9FAFB;
}
/* global properties */
a {
text-decoration: none;
color: var(--black);
transition: ease-in-out 0.5s;
}
.flex-row {
display: flex;
flex-wrap: wrap;
}
ul {
list-style: none;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
button.btn {
border: none;
border-radius: 2rem;
padding: 0.5rem 1rem;
cursor: pointer;
background-color: #000000;
color: var(--white);
}
button.btn:hover {
background-color: var(--dark-gray);
}
/* styling the nav */
.top {
padding: 1rem 2rem 0 2rem;
background-color: var(--white);
}
.header {
height: 10vh;
}
nav {
height: 10vh;
overflow: hidden;
}
.logo-options .toggle {
cursor: pointer;
margin: auto 0;
display: none;
}
.toggle .toggle-icon i {
font-size: 1.5rem;
}
.collapse {
height: 94vh;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: width 0.5s ease-in-out;
}
.logo-options {
justify-content: space-between;
}
.logo-options .logo {
font-family: "Red Hat Mono", monospace;
font-size: 1.5rem;
}
.logo-options .options {
border-style: solid;
border-width: 2px;
border-color: var(--dark-gray);
padding: 0 1rem;
border-radius: 0.5rem;
margin: auto 0;
}
nav .nav-menu {
justify-content: space-between;
}
.nav-menu .nav-items {
justify-content: center;
padding: 0;
}
.nav-items .nav-link {
padding: 0 1rem;
}
.nav-items .nav-link a {
font-weight: bold;
color: var(--dark-gray);
}
.nav-items .nav-link a:hover {
color: var(--black);
}
.nav-menu .socials .social-link {
padding-left: 1rem;
margin: auto;
font-size: 1.5rem;
}
.nav-menu .socials .social-link a:hover {
color: var(--dark-gray);
}
/* homepage */
.home-body{
padding: 0 5rem 0 5rem;
background-color: var(--blue);
}
.posts-area{
padding-top: 2rem;
}
.post-card{
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--gray);
width: 30rem;
min-height: 50vh;
align-items: center;
border-radius: 2rem;
text-align: center;
}
.post-card h3{
font-size: 1rem;
font-weight: 600;
}
.post-card .publish-details{
display: flex;
flex-direction: column;
}
.post-card .publish-details a{
font-size: 1rem;
font-style: italic;
}
.post-details, .publish-details{
padding: 0 2rem;
}
.post-card button{
margin: 2rem 0;
}
/* single post area */
.full-post-area{
padding: 0 5rem;
}
.full-post-area h1{
font-size: 1.8rem;
}
.full-post-area .full-post-details, .full-post-publish-details{
text-align: center;
}
.full-post-publish-details{
color: var(--dark-gray);
}
.full-post-area .full-post{
line-height: 2.3rem;
font-size: 1.2rem;
letter-spacing: .07rem;
}
/* 750px viewport */
@media only screen and (max-width: 910px) {
.top {
padding: 1rem 1rem 0 1rem;
height: 6vh;
background-color: var(--blue);
}
nav {
height: 0vh;
}
.logo-options .toggle {
display: initial;
}
.nav-menu {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.nav-menu .nav-items {
display: flex;
flex-direction: column;
}
.nav-items .nav-link {
padding: 0 0 1rem 0;
}
.home-body{
padding: 0 1rem 0 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
.posts-area{
padding-top: 3rem;
}
.post-card{
width: 23rem;
}
.full-post-area{
padding: 0rem;
}
} | blog/static/css/styles.css | * {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
}
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Red+Hat+Mono:wght@300&display=swap");
*::before ::after {
box-sizing: border-box;
}
body {
overflow-x: hidden;
background-color: #f9fafb;
font-family: "Poppins", sans-serif;
margin: 0;
}
:root {
/* colors */
--gray: #E5E7EB;
--dark-gray: #8d8f94;
--white: #ffffff;
--black: #000000;
--blue: #F9FAFB;
}
/* global properties */
a {
text-decoration: none;
color: var(--black);
transition: ease-in-out 0.5s;
}
.flex-row {
display: flex;
flex-wrap: wrap;
}
ul {
list-style: none;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
button.btn {
border: none;
border-radius: 2rem;
padding: 0.5rem 1rem;
cursor: pointer;
background-color: #000000;
color: var(--white);
}
button.btn:hover {
background-color: var(--dark-gray);
}
/* styling the nav */
.top {
padding: 1rem 2rem 0 2rem;
background-color: var(--white);
}
.header {
height: 10vh;
}
nav {
height: 10vh;
overflow: hidden;
}
.logo-options .toggle {
cursor: pointer;
margin: auto 0;
display: none;
}
.toggle .toggle-icon i {
font-size: 1.5rem;
}
.collapse {
height: 94vh;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: width 0.5s ease-in-out;
}
.logo-options {
justify-content: space-between;
}
.logo-options .logo {
font-family: "Red Hat Mono", monospace;
font-size: 1.5rem;
}
.logo-options .options {
border-style: solid;
border-width: 2px;
border-color: var(--dark-gray);
padding: 0 1rem;
border-radius: 0.5rem;
margin: auto 0;
}
nav .nav-menu {
justify-content: space-between;
}
.nav-menu .nav-items {
justify-content: center;
padding: 0;
}
.nav-items .nav-link {
padding: 0 1rem;
}
.nav-items .nav-link a {
font-weight: bold;
color: var(--dark-gray);
}
.nav-items .nav-link a:hover {
color: var(--black);
}
.nav-menu .socials .social-link {
padding-left: 1rem;
margin: auto;
font-size: 1.5rem;
}
.nav-menu .socials .social-link a:hover {
color: var(--dark-gray);
}
/* homepage */
.home-body{
padding: 0 5rem 0 5rem;
background-color: var(--blue);
}
.posts-area{
padding-top: 2rem;
}
.post-card{
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--gray);
width: 30rem;
min-height: 50vh;
align-items: center;
border-radius: 2rem;
text-align: center;
}
.post-card h3{
font-size: 1rem;
font-weight: 600;
}
.post-card .publish-details{
display: flex;
flex-direction: column;
}
.post-card .publish-details a{
font-size: 1rem;
font-style: italic;
}
.post-details, .publish-details{
padding: 0 2rem;
}
.post-card button{
margin: 2rem 0;
}
/* single post area */
.full-post-area{
padding: 0 5rem;
}
.full-post-area h1{
font-size: 1.8rem;
}
.full-post-area .full-post-details, .full-post-publish-details{
text-align: center;
}
.full-post-publish-details{
color: var(--dark-gray);
}
.full-post-area .full-post{
line-height: 2.3rem;
font-size: 1.2rem;
letter-spacing: .07rem;
}
/* 750px viewport */
@media only screen and (max-width: 910px) {
.top {
padding: 1rem 1rem 0 1rem;
height: 6vh;
background-color: var(--blue);
}
nav {
height: 0vh;
}
.logo-options .toggle {
display: initial;
}
.nav-menu {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.nav-menu .nav-items {
display: flex;
flex-direction: column;
}
.nav-items .nav-link {
padding: 0 0 1rem 0;
}
.home-body{
padding: 0 1rem 0 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
.posts-area{
padding-top: 3rem;
}
.post-card{
width: 23rem;
}
.full-post-area{
padding: 0rem;
}
} | 0.400867 | 0.088033 |
.page-wrapper{
flex: 1 0 auto;
}
/* Overlapping header */
.page-title-overlap {
padding-bottom: 6.375rem;
}
.bg-dark {
background-color: #212430 !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
div {
display: block;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.btn-primary {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-labeled {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.btn-orange{
border-color: #f7b500;
border-radius: 20px;
}
.btn-orange-no{
border-color: #f7b500;
border-radius: 5px;
}
.btn-orange.active{
color: #ffff;
background-color: #fd8d0d;
border-color: #f7b500 !important;
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 184, 105);
}
.btn-orange:hover, .btn-orange-no:hover{
color: #ffff;
background-color: #fd8d0d;
border-color: #f7b500 !important;
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 184, 105);
}
.btn-orange:focus, .btn-orange-no:focus{
background-color:#fd8d0d ;
color: #fff;
border-color: #f7b500 !important;
box-shadow: none !important;
}
.product-gallery {
display: flex;
}
.product-gallery-preview-item.active {
position: relative;
opacity: 1;
z-index: 10;
}
.product-gallery-preview-item > img {
display: block;
width: 100%;
}
.border-3 {
border-radius: 3rem !important;
}
a {
text-decoration: none;
color: #f77f00;
}
a:hover {
color: #a87507;
}
.store {
color: #f77f00;
}
.unchecked {
color: rgb(192, 192, 192);
}
.text-body {
color: #4b566b !important;
}
.fs-sm {
font-size: 0.9rem !important;
}
.fs-ms{
font-size: .8125rem !important;
}
.fs-md{
font-size: 15px;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
font-family: "Poppins", sans-serif;
}
.wishlist {
width: 2.75rem;
height: 2.75rem;
padding: 0 !important;
transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.2s ease-in-out;
border: 0;
border-radius: 50%;
background-color: #f3f5f9;
color: #373f50;
text-align: center;
}
.badge-blue {
background-color: #0568fd;
}
.badge-red {
background-color: #fe696a;
}
.badge-green {
background-color: #52b788;
}
.badge-blue.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(67, 97, 238);
}
.badge-green.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(55, 192, 133);
}
.badge-red.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 105, 106);
}
.btn-primary.btn-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(67, 97, 238);
}
.text-uppercase {
text-transform: uppercase !important;
}
.badge {
display: inline-block;
padding: 0.5em 1em;
font-size: 12px;
font-weight: 400;
font-family: "Poppins";
text-align: center;
}
.align-middle {
vertical-align: middle !important;
}
.form-select {
display: block;
width: 100%;
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.75rem center;
background-size: 16px 12px;
border: 1px solid #ced4da;
border-radius: 0.25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: none !important;
}
.form-control:focus {
color: #212529;
background-color: #fff;
border-color: #86b7fe !important;
outline: 0;
box-shadow: none !important;
}
.bi-star{
color: #aeb4be;
}
.bi-star-half {
color: #fea569;
}
.bi-star-fill {
color: #fea569;
}
.star-rating {
display: inline-block;
white-space: nowrap;
vertical-align: middle;
}
.me-2 {
margin-right: 0.5rem !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.align-items-center {
align-items: center !important;
}
.d-flex {
display: flex !important;
}
.text-nowrap {
white-space: nowrap !important;
}
.me-3 {
margin-right: 1rem !important;
}
.text-muted {
color: #7d879c !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
.fs-xs {
font-size: 0.75rem !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.w-100 {
width: 100% !important;
}
.progress {
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #f3f5f9;
border-radius: 0.3rem;
box-shadow: inset 0 1px 2px transparent;
}
.bg-success {
background-color: #42d697 !important;
}
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #fe696a;
transition: width 0.6s ease;
}
.text-muted {
color: #7d879c !important;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
.w-100 {
width: 100% !important;
}
.bg-teal {
background-color: #8ddb0f;
}
.bg-orange{
background-color: #f57a16;
}
.card-border {
border: solid 1px #a0a0a0;
border-radius: 6px;
}
.btn-like, .btn-dislike {
display: inline-block;
padding: 0;
padding-left: .625rem;
transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,box-shadow 0.25s ease-in-out,border-color 0.25s ease-in-out;
border: 0;
background: 0;
color: #7d879c;
font-size: .875rem;
text-decoration: none !important;
white-space: nowrap;
vertical-align: middle;
}
.bi-hand-thumbs-up {
margin-top: -.325rem;
color: #42d697;
font-size: 16px;
}
.bi-hand-thumbs-down{
margin-top: -.325rem;
color: #ec3413;
font-size: 16px;
}
#footer {
background-color: #f2f2f2;
} | assets/details.css | .page-wrapper{
flex: 1 0 auto;
}
/* Overlapping header */
.page-title-overlap {
padding-bottom: 6.375rem;
}
.bg-dark {
background-color: #212430 !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
div {
display: block;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.btn-primary {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-labeled {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.btn-orange{
border-color: #f7b500;
border-radius: 20px;
}
.btn-orange-no{
border-color: #f7b500;
border-radius: 5px;
}
.btn-orange.active{
color: #ffff;
background-color: #fd8d0d;
border-color: #f7b500 !important;
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 184, 105);
}
.btn-orange:hover, .btn-orange-no:hover{
color: #ffff;
background-color: #fd8d0d;
border-color: #f7b500 !important;
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 184, 105);
}
.btn-orange:focus, .btn-orange-no:focus{
background-color:#fd8d0d ;
color: #fff;
border-color: #f7b500 !important;
box-shadow: none !important;
}
.product-gallery {
display: flex;
}
.product-gallery-preview-item.active {
position: relative;
opacity: 1;
z-index: 10;
}
.product-gallery-preview-item > img {
display: block;
width: 100%;
}
.border-3 {
border-radius: 3rem !important;
}
a {
text-decoration: none;
color: #f77f00;
}
a:hover {
color: #a87507;
}
.store {
color: #f77f00;
}
.unchecked {
color: rgb(192, 192, 192);
}
.text-body {
color: #4b566b !important;
}
.fs-sm {
font-size: 0.9rem !important;
}
.fs-ms{
font-size: .8125rem !important;
}
.fs-md{
font-size: 15px;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
font-family: "Poppins", sans-serif;
}
.wishlist {
width: 2.75rem;
height: 2.75rem;
padding: 0 !important;
transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.2s ease-in-out;
border: 0;
border-radius: 50%;
background-color: #f3f5f9;
color: #373f50;
text-align: center;
}
.badge-blue {
background-color: #0568fd;
}
.badge-red {
background-color: #fe696a;
}
.badge-green {
background-color: #52b788;
}
.badge-blue.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(67, 97, 238);
}
.badge-green.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(55, 192, 133);
}
.badge-red.badge-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(254, 105, 106);
}
.btn-primary.btn-shadow {
box-shadow: 0 0.5rem 1.125rem -0.275rem rgb(67, 97, 238);
}
.text-uppercase {
text-transform: uppercase !important;
}
.badge {
display: inline-block;
padding: 0.5em 1em;
font-size: 12px;
font-weight: 400;
font-family: "Poppins";
text-align: center;
}
.align-middle {
vertical-align: middle !important;
}
.form-select {
display: block;
width: 100%;
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.75rem center;
background-size: 16px 12px;
border: 1px solid #ced4da;
border-radius: 0.25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: none !important;
}
.form-control:focus {
color: #212529;
background-color: #fff;
border-color: #86b7fe !important;
outline: 0;
box-shadow: none !important;
}
.bi-star{
color: #aeb4be;
}
.bi-star-half {
color: #fea569;
}
.bi-star-fill {
color: #fea569;
}
.star-rating {
display: inline-block;
white-space: nowrap;
vertical-align: middle;
}
.me-2 {
margin-right: 0.5rem !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.align-items-center {
align-items: center !important;
}
.d-flex {
display: flex !important;
}
.text-nowrap {
white-space: nowrap !important;
}
.me-3 {
margin-right: 1rem !important;
}
.text-muted {
color: #7d879c !important;
}
.d-inline-block {
display: inline-block !important;
}
.align-middle {
vertical-align: middle !important;
}
.fs-xs {
font-size: 0.75rem !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.w-100 {
width: 100% !important;
}
.progress {
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #f3f5f9;
border-radius: 0.3rem;
box-shadow: inset 0 1px 2px transparent;
}
.bg-success {
background-color: #42d697 !important;
}
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #fe696a;
transition: width 0.6s ease;
}
.text-muted {
color: #7d879c !important;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
.w-100 {
width: 100% !important;
}
.bg-teal {
background-color: #8ddb0f;
}
.bg-orange{
background-color: #f57a16;
}
.card-border {
border: solid 1px #a0a0a0;
border-radius: 6px;
}
.btn-like, .btn-dislike {
display: inline-block;
padding: 0;
padding-left: .625rem;
transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,box-shadow 0.25s ease-in-out,border-color 0.25s ease-in-out;
border: 0;
background: 0;
color: #7d879c;
font-size: .875rem;
text-decoration: none !important;
white-space: nowrap;
vertical-align: middle;
}
.bi-hand-thumbs-up {
margin-top: -.325rem;
color: #42d697;
font-size: 16px;
}
.bi-hand-thumbs-down{
margin-top: -.325rem;
color: #ec3413;
font-size: 16px;
}
#footer {
background-color: #f2f2f2;
} | 0.340266 | 0.066539 |
.navbar-inner {
background: #37518b;
border: none;
}
.navbar .nav > li > a {
border-left: 1px solid #8797B9;
}
.navbar .nav > li:last-child {
border-right: 1px solid #8797B9;
}
.navbar .nav > li > a:hover {
background: #5F74A2;
box-shadow: none;
}
/* Homepage - Could this be made generic?*/
.title {
/* margin: 25px 0 0 50px; */
float: left
}
#register-btn {
margin-left: 15px !important;
}
/*
.btn-login, .btn-register {
float: right;
margin-top: 10px !important;
}
.btn-register {
clear: right;
}
*/
.homepage.row {
clear: both;
}
h1, h2 {
font-family: NeoSans;
font-weight: normal;
color: #444444;
/*text-shadow: 2px 2px 1px black;*/
}
.sahana_logo {
float: left;
height: 100px;
}
.title h1 {
float: left;
font-size: 80px;
line-height: 80px;
margin: 0;
padding: 20px 0 0;
}
.wa_cop_logo {
float: left;
clear: left;
height: 100px;
}
.header h2 {
float: left;
font-size: 25px;
line-height: 30px;
margin: 20px 0 0 10px;
padding: 0;
}
h1, h2, h3 {
text-shadow: none
}
a {
color: #444444;
}
h3 {
margin: 0;
padding:0;
font-family: NeoSans;
font-weight: normal;
color: #444444;
font-size: 25px;
line-height: 35px;
}
.title {
padding-top: 30px;
}
.header {
background-color: white;
margin: 0;
}
.header .intro {
padding: 10px 15px;
}
.header .intro a {
color: #37518b;
}
.intro p,
.intro ul {
clear: both;
margin-bottom: 5px;
}
.header {
margin-bottom: 20px;
}
ol, ul {
list-style: disc;
}
div.link {
float: left;
}
.homepage .icon-plus-sign.small-add {
top: 7px;
}
.homepage .map {
margin-bottom: 15px;
}
.link:hover h3,
.link:hover a,
.links a:hover {
color: #37518b;
text-decoration:none;
}
.links a:hover h3 {
color: inherit;
}
.homepage .dl {
padding: 5px 2px;
}
.dl-empty {
clear: both;
}
.thumbnail {
background: url('../../img/semi_white_75.png') !important;
/*
border: none ;
border-radius: 0;
box-shadow: none;
*/
}
.thumbnail:hover {
background-color: white !important;
}
.cms-edit {
display: none;
}
/* RSS Feed */
#feed-control {
clear: both;
}
.gfg-title,
.gfg-entry,
.gfg-subtitle {
display: none;
}
.gfg-listentry {
background: url('../../img/semi_white_75.png');
margin-bottom: 5px;
padding: 3px;
}
/* Customise Datalist Cards */
#cms_post_datalist .card-title,
.card-header > .icon,
.homepage .card-header > .icon,
#profile-list-project_project-3 .card-header > .icon,
#profile-list-org_resource-2 img,
#profile-list-project_project-3 img,
#profile-list-project_task-0 .task_project_title {
display: none;
}
/***********************************************/
h2 {
float: left;
margin-right: 15px;
}
#list-btn-add {
margin-top: 15px;
}
#show-add-btn {
margin-bottom: 10px;
}
#map {
float:left;
}
#list-add,
#filter-form,
#table-container,
.form-container {
clear: both;
}
.card-header {
padding: 1px 3px;
}
.card-holder .location-title {
/* border-left: 1px solid rgba(0, 0, 0, 0.1);
margin-left: 10px; */
border-left: None;
margin-left: 0;
padding-bottom: 7px;
padding-left: 5px;
padding-top: 7px;
text-shadow: 0 1px 0 #FFFFFF;
width: 10px;
}
.card-header .location-title {
border-left: None;
margin-left: 0;
padding-left: 5px;
}
.date-title {
padding-bottom: 5px;
padding-top: 6px;
}
.media .card-title {
font-size: 18px;
letter-spacing: 0;
text-shadow: None;
margin-bottom: 5px;
}
.media .card-subtitle {
font-size: 12px;
font-style: italic;
/*margin: -4px 0 4px;*/
margin-bottom: 4px;
}
.media .card-subtitle a:hover{
text-decoration: none;
}
/* @ToDo: Move to default/tasks.css ? */
.task_priority,
.task_name,
.task_status {
float: left;
clear: right;
}
.task_priority {
margin-right: 3px;
margin-top: 3px;
}
.task_status {
float: right;
margin-left: 5px;
padding: 2px 3px;
}
.edit-bar {
position: static;
}
.media-body {
clear: left;
}
.dl-row {
padding-right: 12px;
}
.dl-1-cols {
width: 100%;
}
.card-holder {
display: block;
width: auto;
}
.s3_add_resource_link,
.action-lnk {
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
border-width: 1px;
border-style: solid;
border-radius: 4px;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
line-height: 20px;
display: inline-block;
*display: inline;
padding: 1px 6px;
*margin-left: .3em;
margin-right: -2px;
font-size: 13px;
line-height: 20px;
*line-height: 20px;
vertical-align: middle;
cursor: pointer;
text-align: center;
color: #333333;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
background-color: #f5f5f5;
*background-color: #e6e6e6;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
border-bottom-color: #a2a2a2;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
*zoom: 1;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.s3_add_resource_link:hover,
.action-lnk:hover {
color: #333333;
text-decoration: none;
background-color: #e6e6e6;
*background-color: #d9d9d9;
/* Buttons in IE7 don't get borders, so darken on hover */
background-position: 0 -15px;
-webkit-transition: background-position 0.1s linear;
-moz-transition: background-position 0.1s linear;
-o-transition: background-position 0.1s linear;
transition: background-position 0.1s linear;
}
/* Incidents profile Header */
.profile-header .attachments {
margin-top: -20px;
} | static/themes/MCOP/style.css | .navbar-inner {
background: #37518b;
border: none;
}
.navbar .nav > li > a {
border-left: 1px solid #8797B9;
}
.navbar .nav > li:last-child {
border-right: 1px solid #8797B9;
}
.navbar .nav > li > a:hover {
background: #5F74A2;
box-shadow: none;
}
/* Homepage - Could this be made generic?*/
.title {
/* margin: 25px 0 0 50px; */
float: left
}
#register-btn {
margin-left: 15px !important;
}
/*
.btn-login, .btn-register {
float: right;
margin-top: 10px !important;
}
.btn-register {
clear: right;
}
*/
.homepage.row {
clear: both;
}
h1, h2 {
font-family: NeoSans;
font-weight: normal;
color: #444444;
/*text-shadow: 2px 2px 1px black;*/
}
.sahana_logo {
float: left;
height: 100px;
}
.title h1 {
float: left;
font-size: 80px;
line-height: 80px;
margin: 0;
padding: 20px 0 0;
}
.wa_cop_logo {
float: left;
clear: left;
height: 100px;
}
.header h2 {
float: left;
font-size: 25px;
line-height: 30px;
margin: 20px 0 0 10px;
padding: 0;
}
h1, h2, h3 {
text-shadow: none
}
a {
color: #444444;
}
h3 {
margin: 0;
padding:0;
font-family: NeoSans;
font-weight: normal;
color: #444444;
font-size: 25px;
line-height: 35px;
}
.title {
padding-top: 30px;
}
.header {
background-color: white;
margin: 0;
}
.header .intro {
padding: 10px 15px;
}
.header .intro a {
color: #37518b;
}
.intro p,
.intro ul {
clear: both;
margin-bottom: 5px;
}
.header {
margin-bottom: 20px;
}
ol, ul {
list-style: disc;
}
div.link {
float: left;
}
.homepage .icon-plus-sign.small-add {
top: 7px;
}
.homepage .map {
margin-bottom: 15px;
}
.link:hover h3,
.link:hover a,
.links a:hover {
color: #37518b;
text-decoration:none;
}
.links a:hover h3 {
color: inherit;
}
.homepage .dl {
padding: 5px 2px;
}
.dl-empty {
clear: both;
}
.thumbnail {
background: url('../../img/semi_white_75.png') !important;
/*
border: none ;
border-radius: 0;
box-shadow: none;
*/
}
.thumbnail:hover {
background-color: white !important;
}
.cms-edit {
display: none;
}
/* RSS Feed */
#feed-control {
clear: both;
}
.gfg-title,
.gfg-entry,
.gfg-subtitle {
display: none;
}
.gfg-listentry {
background: url('../../img/semi_white_75.png');
margin-bottom: 5px;
padding: 3px;
}
/* Customise Datalist Cards */
#cms_post_datalist .card-title,
.card-header > .icon,
.homepage .card-header > .icon,
#profile-list-project_project-3 .card-header > .icon,
#profile-list-org_resource-2 img,
#profile-list-project_project-3 img,
#profile-list-project_task-0 .task_project_title {
display: none;
}
/***********************************************/
h2 {
float: left;
margin-right: 15px;
}
#list-btn-add {
margin-top: 15px;
}
#show-add-btn {
margin-bottom: 10px;
}
#map {
float:left;
}
#list-add,
#filter-form,
#table-container,
.form-container {
clear: both;
}
.card-header {
padding: 1px 3px;
}
.card-holder .location-title {
/* border-left: 1px solid rgba(0, 0, 0, 0.1);
margin-left: 10px; */
border-left: None;
margin-left: 0;
padding-bottom: 7px;
padding-left: 5px;
padding-top: 7px;
text-shadow: 0 1px 0 #FFFFFF;
width: 10px;
}
.card-header .location-title {
border-left: None;
margin-left: 0;
padding-left: 5px;
}
.date-title {
padding-bottom: 5px;
padding-top: 6px;
}
.media .card-title {
font-size: 18px;
letter-spacing: 0;
text-shadow: None;
margin-bottom: 5px;
}
.media .card-subtitle {
font-size: 12px;
font-style: italic;
/*margin: -4px 0 4px;*/
margin-bottom: 4px;
}
.media .card-subtitle a:hover{
text-decoration: none;
}
/* @ToDo: Move to default/tasks.css ? */
.task_priority,
.task_name,
.task_status {
float: left;
clear: right;
}
.task_priority {
margin-right: 3px;
margin-top: 3px;
}
.task_status {
float: right;
margin-left: 5px;
padding: 2px 3px;
}
.edit-bar {
position: static;
}
.media-body {
clear: left;
}
.dl-row {
padding-right: 12px;
}
.dl-1-cols {
width: 100%;
}
.card-holder {
display: block;
width: auto;
}
.s3_add_resource_link,
.action-lnk {
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
border-width: 1px;
border-style: solid;
border-radius: 4px;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
line-height: 20px;
display: inline-block;
*display: inline;
padding: 1px 6px;
*margin-left: .3em;
margin-right: -2px;
font-size: 13px;
line-height: 20px;
*line-height: 20px;
vertical-align: middle;
cursor: pointer;
text-align: center;
color: #333333;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
background-color: #f5f5f5;
*background-color: #e6e6e6;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
border-bottom-color: #a2a2a2;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
*zoom: 1;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.s3_add_resource_link:hover,
.action-lnk:hover {
color: #333333;
text-decoration: none;
background-color: #e6e6e6;
*background-color: #d9d9d9;
/* Buttons in IE7 don't get borders, so darken on hover */
background-position: 0 -15px;
-webkit-transition: background-position 0.1s linear;
-moz-transition: background-position 0.1s linear;
-o-transition: background-position 0.1s linear;
transition: background-position 0.1s linear;
}
/* Incidents profile Header */
.profile-header .attachments {
margin-top: -20px;
} | 0.343782 | 0.100437 |
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
:root {
--primary-color: #112244;
--secondary-color: #f5fa00;
}
* {
outline: none;
text-decoration: none;
list-style: none;
box-sizing: border-box;
margin: 0;
padding: 0;
border: none;
}
body {
font-family: 'Roboto', sans-serif;
width: 100%;
min-height: 90vh;
background-color: var(--primary-color);
}
header {
color: aliceblue;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 30px 0;
max-height: 75px;
backdrop-filter: brightness(75%);
}
header .link {
display: flex;
align-items: center;
justify-content: center;
}
header .link a~a{
margin-left: 30px;
}
header .chosen {
font-weight: bold;
filter: drop-shadow(0 5px 10px);
}
.link a {
color: aliceblue;
transition: ease-in-out 500ms;
}
.link a:hover {
font-size: larger;
transition: ease-in-out 500ms;
}
/* CARD */
.card {
margin: 45px auto;
background-color: white;
width: 800px;
min-height: 400px;
display: grid;
grid-template-columns: 1fr 1fr;
/* sombra */
box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.4) ;
animation: up 1s ease forwards;
}
@keyframes up {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card section {
width: 100%;
height: 100%;
}
/* DETAILS */
.details {
padding: 32px;
}
.details .item {
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 16px 0;
}
.details .item:last-child {
border: none;
}
.details h3,
.details .item div:first-child {
font-size: 14px;
line-height: 24px;
color: #777;
letter-spacing: 0.7px;
font-weight: normal;
}
.details .item div:nth-child(2) {
color: #555;
font-weight: bold;
font-size: 18px;
}
.details h3 {
text-transform: uppercase;
font-weight: bold;
color: var(--primary-color);
}
.details .item div:nth-child(2) span {
display: inline-block;
padding: 8px 16px;
background-color: var(--secondary-color);
border-radius: 16px;
color: #777;
font-weight: bold;
text-transform: uppercase;
font-size: 12px;
margin-right: 4px;
margin-top: 8px;
}
/* FORM */
input {
width: 100%;
color: #555;
font-weight: bold;
font-size: 18px;
}
input[type="radio"] {
width: initial;
margin-right: 4px;
}
input::placeholder{
font-size: 16px;
font-weight: normal;
}
a.button,
button[type="submit"] {
padding: 8px 32px;
background-color: var(--primary-color);
color: white;
border-radius: 4px;
margin-top: 32px;
width: 100%;
font-size: 16px;
}
select {
font-size: 1.2rem!important;
}
a.button {
display: block;
text-align: center;
}
a.button:hover,
button[type="submit"]:hover{
filter: brightness(110%);
}
#form-delete button[type="submit"] {
background-color: brown;
margin-top: 8px;
}
/* INDEX Instructors */
.table-container{
display: block;
padding: 40px;
}
.table-container table{
width: 100%;
border-spacing: 0;
}
.table-container table thead tr {
text-align: left;
}
.table-container td,
.table-container th {
padding: 12px;
border-bottom: 1px solid #d9d9d9;
}
.table-container th {
text-transform: uppercase;
color: #777;
font-size: 14px;
padding-left: 1.5rem;
}
.table-container tbody tr:last-child td {
border-bottom: 0;
}
.table-container tbody tr td:first-child div {
display: grid;
grid-template-columns: 64px 1fr;
align-items: center;
justify-content: center;
}
.table-container tbody tr td:first-child span {
width: 48px;
height: 48px;
border-radius: 50%;
background-position: center;
background-size: cover;
box-shadow: 3px 1px 6px -2px black;
border: 2px solid white;
}
.table-container tr th:last-child{
text-align: center;
padding-left: 0;
}
.table-container tr td:last-child {
text-align: center;
}
.table-container tbody tr td:last-child a,
.table-container > a {
background-color: var(--primary-color);
padding: 8px 16px;
text-decoration: none;
text-transform: uppercase;
color: white;
font-size: 12px;
border-radius: 6px;
}
.table-container > a {
display: inline-block;
margin: 0 0 16px 8px;
}
.table-container tbody tr td:last-child a:hover,
.table-container > a:hover {
filter: brightness(150%);
}
.table-container tbody tr td:nth-child(2) div{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
padding: 4px;
}
.table-container tbody tr td:nth-child(n+2) div span {
display: inline-block;
padding: 8px 16px;
text-align: center;
min-width: 100px;
background-color: var(--secondary-color);
border-radius: 16px;
color: #777;
font-weight: bold;
text-transform: uppercase;
font-size: 12px;
margin-right: 4px;
margin-top: 8px;
}
/* Filters */
.table-container .header {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
margin-bottom: 32px;
}
.table-container .header a{
margin: 0;
width: 120px;
}
.table-container .header form button {
margin: 0;
}
.table-container .header form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
align-items: center;
}
.table-container .header form input {
border: 1px solid #ccc;
padding: 4px;
}
/* pagination */
.table-container {
display: grid;
grid-template: 64px 1fr 16px / 1fr;
}
.table-container .header {
margin: 0;
align-self: start;
}
.table-container .pagination {
margin: 0;
align-self: end;
justify-self: center;
}
.pagination a,
.pagination span {
color: var(--primary-color);
text-decoration: none;
margin-right: 16px;
}
.pagination a:hover {
filter: brightness(300%);
border-bottom: 1px solid var(--primary-color);
} | public/styles/main.css | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
:root {
--primary-color: #112244;
--secondary-color: #f5fa00;
}
* {
outline: none;
text-decoration: none;
list-style: none;
box-sizing: border-box;
margin: 0;
padding: 0;
border: none;
}
body {
font-family: 'Roboto', sans-serif;
width: 100%;
min-height: 90vh;
background-color: var(--primary-color);
}
header {
color: aliceblue;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 30px 0;
max-height: 75px;
backdrop-filter: brightness(75%);
}
header .link {
display: flex;
align-items: center;
justify-content: center;
}
header .link a~a{
margin-left: 30px;
}
header .chosen {
font-weight: bold;
filter: drop-shadow(0 5px 10px);
}
.link a {
color: aliceblue;
transition: ease-in-out 500ms;
}
.link a:hover {
font-size: larger;
transition: ease-in-out 500ms;
}
/* CARD */
.card {
margin: 45px auto;
background-color: white;
width: 800px;
min-height: 400px;
display: grid;
grid-template-columns: 1fr 1fr;
/* sombra */
box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.4) ;
animation: up 1s ease forwards;
}
@keyframes up {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card section {
width: 100%;
height: 100%;
}
/* DETAILS */
.details {
padding: 32px;
}
.details .item {
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 16px 0;
}
.details .item:last-child {
border: none;
}
.details h3,
.details .item div:first-child {
font-size: 14px;
line-height: 24px;
color: #777;
letter-spacing: 0.7px;
font-weight: normal;
}
.details .item div:nth-child(2) {
color: #555;
font-weight: bold;
font-size: 18px;
}
.details h3 {
text-transform: uppercase;
font-weight: bold;
color: var(--primary-color);
}
.details .item div:nth-child(2) span {
display: inline-block;
padding: 8px 16px;
background-color: var(--secondary-color);
border-radius: 16px;
color: #777;
font-weight: bold;
text-transform: uppercase;
font-size: 12px;
margin-right: 4px;
margin-top: 8px;
}
/* FORM */
input {
width: 100%;
color: #555;
font-weight: bold;
font-size: 18px;
}
input[type="radio"] {
width: initial;
margin-right: 4px;
}
input::placeholder{
font-size: 16px;
font-weight: normal;
}
a.button,
button[type="submit"] {
padding: 8px 32px;
background-color: var(--primary-color);
color: white;
border-radius: 4px;
margin-top: 32px;
width: 100%;
font-size: 16px;
}
select {
font-size: 1.2rem!important;
}
a.button {
display: block;
text-align: center;
}
a.button:hover,
button[type="submit"]:hover{
filter: brightness(110%);
}
#form-delete button[type="submit"] {
background-color: brown;
margin-top: 8px;
}
/* INDEX Instructors */
.table-container{
display: block;
padding: 40px;
}
.table-container table{
width: 100%;
border-spacing: 0;
}
.table-container table thead tr {
text-align: left;
}
.table-container td,
.table-container th {
padding: 12px;
border-bottom: 1px solid #d9d9d9;
}
.table-container th {
text-transform: uppercase;
color: #777;
font-size: 14px;
padding-left: 1.5rem;
}
.table-container tbody tr:last-child td {
border-bottom: 0;
}
.table-container tbody tr td:first-child div {
display: grid;
grid-template-columns: 64px 1fr;
align-items: center;
justify-content: center;
}
.table-container tbody tr td:first-child span {
width: 48px;
height: 48px;
border-radius: 50%;
background-position: center;
background-size: cover;
box-shadow: 3px 1px 6px -2px black;
border: 2px solid white;
}
.table-container tr th:last-child{
text-align: center;
padding-left: 0;
}
.table-container tr td:last-child {
text-align: center;
}
.table-container tbody tr td:last-child a,
.table-container > a {
background-color: var(--primary-color);
padding: 8px 16px;
text-decoration: none;
text-transform: uppercase;
color: white;
font-size: 12px;
border-radius: 6px;
}
.table-container > a {
display: inline-block;
margin: 0 0 16px 8px;
}
.table-container tbody tr td:last-child a:hover,
.table-container > a:hover {
filter: brightness(150%);
}
.table-container tbody tr td:nth-child(2) div{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
padding: 4px;
}
.table-container tbody tr td:nth-child(n+2) div span {
display: inline-block;
padding: 8px 16px;
text-align: center;
min-width: 100px;
background-color: var(--secondary-color);
border-radius: 16px;
color: #777;
font-weight: bold;
text-transform: uppercase;
font-size: 12px;
margin-right: 4px;
margin-top: 8px;
}
/* Filters */
.table-container .header {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
margin-bottom: 32px;
}
.table-container .header a{
margin: 0;
width: 120px;
}
.table-container .header form button {
margin: 0;
}
.table-container .header form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
align-items: center;
}
.table-container .header form input {
border: 1px solid #ccc;
padding: 4px;
}
/* pagination */
.table-container {
display: grid;
grid-template: 64px 1fr 16px / 1fr;
}
.table-container .header {
margin: 0;
align-self: start;
}
.table-container .pagination {
margin: 0;
align-self: end;
justify-self: center;
}
.pagination a,
.pagination span {
color: var(--primary-color);
text-decoration: none;
margin-right: 16px;
}
.pagination a:hover {
filter: brightness(300%);
border-bottom: 1px solid var(--primary-color);
} | 0.340376 | 0.081046 |
.flex {
display: flex;
&--auto {
flex: 1 1 auto;
}
&--none {
flex: none;
}
&--inline {
display: inline-flex;
}
&--dir {
&-column {
flex-direction: column;
&--rvse {
flex-direction: column-reverse;
}
}
&-row {
flex-direction: row;
&--rvse {
flex-direction: row-reverse;
}
}
}
&--wrap {
flex-wrap: wrap;
&-nowrap {
flex-wrap: nowrap;
}
&-rvse {
flex-wrap: wrap-reverse;
}
}
&--align {
/* Items */
&-i {
&-start {
align-items: flex-start;
}
&-end {
align-items: flex-end;
}
&-center {
align-items: center;
}
&-baseline {
align-items: baseline;
}
&-stretch {
align-items: stretch;
}
}
/* Self */
&-s {
&-start {
align-self: flex-start;
}
&-end {
align-self: flex-end;
}
&-center {
align-self: center;
}
&-baseline {
align-self: baseline;
}
&-stretch {
align-self: stretch;
}
}
/* Content */
&-c {
&-start {
align-content: flex-start;
}
&-end {
align-content: flex-end;
}
&-center {
align-content: center;
}
&-around {
align-content: space-around;
}
&-between {
align-content: space-between;
}
&-stretch {
align-content: stretch;
}
}
}
&--justify {
/* Content */
&-c {
&-start {
justify-content: flex-start;
}
&-end {
justify-content: flex-end;
}
&-center {
justify-content: center;
}
&-around {
justify-content: space-around;
}
&-between {
justify-content: space-between;
}
}
}
&--order {
&-0 {
order: 0;
}
&-1 {
order: 1;
}
&-2 {
order: 2;
}
&-3 {
order: 3;
}
&-4 {
order: 4;
}
&-5 {
order: 5;
}
&-6 {
order: 6;
}
&-7 {
order: 7;
}
&-8 {
order: 8;
}
&-9 {
order: 9;
}
&-10 {
order: 10;
}
&-11 {
order: 11;
}
&-12 {
order: 12;
}
&-first {
-webkit-box-ordinal-group: 0;
order: -1;
}
&-last {
-webkit-box-ordinal-group: 13;
order: 12;
}
}
}
@mixin atSmall {}
@mixin atMedium {}
@mixin atLarge {}
@mixin atExLarge {} | src/styles/helpers/_flexbox.css |
.flex {
display: flex;
&--auto {
flex: 1 1 auto;
}
&--none {
flex: none;
}
&--inline {
display: inline-flex;
}
&--dir {
&-column {
flex-direction: column;
&--rvse {
flex-direction: column-reverse;
}
}
&-row {
flex-direction: row;
&--rvse {
flex-direction: row-reverse;
}
}
}
&--wrap {
flex-wrap: wrap;
&-nowrap {
flex-wrap: nowrap;
}
&-rvse {
flex-wrap: wrap-reverse;
}
}
&--align {
/* Items */
&-i {
&-start {
align-items: flex-start;
}
&-end {
align-items: flex-end;
}
&-center {
align-items: center;
}
&-baseline {
align-items: baseline;
}
&-stretch {
align-items: stretch;
}
}
/* Self */
&-s {
&-start {
align-self: flex-start;
}
&-end {
align-self: flex-end;
}
&-center {
align-self: center;
}
&-baseline {
align-self: baseline;
}
&-stretch {
align-self: stretch;
}
}
/* Content */
&-c {
&-start {
align-content: flex-start;
}
&-end {
align-content: flex-end;
}
&-center {
align-content: center;
}
&-around {
align-content: space-around;
}
&-between {
align-content: space-between;
}
&-stretch {
align-content: stretch;
}
}
}
&--justify {
/* Content */
&-c {
&-start {
justify-content: flex-start;
}
&-end {
justify-content: flex-end;
}
&-center {
justify-content: center;
}
&-around {
justify-content: space-around;
}
&-between {
justify-content: space-between;
}
}
}
&--order {
&-0 {
order: 0;
}
&-1 {
order: 1;
}
&-2 {
order: 2;
}
&-3 {
order: 3;
}
&-4 {
order: 4;
}
&-5 {
order: 5;
}
&-6 {
order: 6;
}
&-7 {
order: 7;
}
&-8 {
order: 8;
}
&-9 {
order: 9;
}
&-10 {
order: 10;
}
&-11 {
order: 11;
}
&-12 {
order: 12;
}
&-first {
-webkit-box-ordinal-group: 0;
order: -1;
}
&-last {
-webkit-box-ordinal-group: 13;
order: 12;
}
}
}
@mixin atSmall {}
@mixin atMedium {}
@mixin atLarge {}
@mixin atExLarge {} | 0.499512 | 0.327722 |
@media screen and (min-width: 320px) and (max-width: 770px) {
.nav-language > li {
display: block;
float: left;
position: relative;
width: 50%;
}
.bg-white .nav-language li > a{
padding: 10px 5px;
display: block;
text-align: center;
}
.bg-white a:focus, .bg-white a:hover
.bg-white a.menu-toggle:hover,
.bg-white a.menu-toggle:focus{
color: #bdcdd7;
}
.nav-wrapper .navbar-nav .open .dropdown-menu {
left: 0;
margin-left: -50%;
}
.navbar-nav.nav-alertes{
width: 40%;
float: left;
margin: 0
}
.navbar-nav.nav-language{
width: 60%;
float: left;
margin: 0 0 0 -15px;
}
.navbar-nav.nav-alertes li > a{
padding: 10px 5px 10px 5px;
display: block;
font-size: 13px;
text-align: center;
}
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
#filters .btn-success{
margin-top: 15px;
}
.panel .dl-horizontal dt, .panel .dl-horizontal dd {
padding: 0;
margin: 0;
}
.chat .dl-horizontal dd{
padding: 0 !important;
margin: 0 0 5px 0;
}
.btn-action-link{
margin-bottom: 10px;
padding: 8px 0;
}
.btn-action-link.pull-right{
margin-bottom: 0px;
padding: 2px 0;
}
.btn-action-link, .btn-action-link.pull-right{
display: block;
clear: both !important;
float: none !important;
}
.nav-tabs > li {
float: none;
margin-bottom: -1px;
}
.nav-tabs > li.active + li {
padding-left: 0px;
}
form .nav-tabs > li > a,
form .nav-tabs > li.active > a {
padding: 8px 15px;
}
#simple .input-group .btn, #multiple .input-group .btn{
padding: 8px 5px 7px;
}
.list-partages .label{
display: block;
padding: 4px 0;
}
/*
* Frontend
*/
.navbar.nav-frontend {
height: auto;
min-height: 290px;
}
#register {
margin-top: 25px;
max-width: 400px;
width: 90%;
}
.auth-login {
padding: 5px;
}
#illustration img {
width: auto;
}
}
@media screen and (min-width: 990px) and (max-width: 1025px) {
.navbar.nav-frontend {
height: auto;
min-height: 90px;
}
}
@media screen and (min-width: 1025px) and (max-width: 1140px) {
.navbar.nav-frontend {
height: auto;
min-height: 90px;
}
} | public/backend/css/mobile.css | @media screen and (min-width: 320px) and (max-width: 770px) {
.nav-language > li {
display: block;
float: left;
position: relative;
width: 50%;
}
.bg-white .nav-language li > a{
padding: 10px 5px;
display: block;
text-align: center;
}
.bg-white a:focus, .bg-white a:hover
.bg-white a.menu-toggle:hover,
.bg-white a.menu-toggle:focus{
color: #bdcdd7;
}
.nav-wrapper .navbar-nav .open .dropdown-menu {
left: 0;
margin-left: -50%;
}
.navbar-nav.nav-alertes{
width: 40%;
float: left;
margin: 0
}
.navbar-nav.nav-language{
width: 60%;
float: left;
margin: 0 0 0 -15px;
}
.navbar-nav.nav-alertes li > a{
padding: 10px 5px 10px 5px;
display: block;
font-size: 13px;
text-align: center;
}
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
#filters .btn-success{
margin-top: 15px;
}
.panel .dl-horizontal dt, .panel .dl-horizontal dd {
padding: 0;
margin: 0;
}
.chat .dl-horizontal dd{
padding: 0 !important;
margin: 0 0 5px 0;
}
.btn-action-link{
margin-bottom: 10px;
padding: 8px 0;
}
.btn-action-link.pull-right{
margin-bottom: 0px;
padding: 2px 0;
}
.btn-action-link, .btn-action-link.pull-right{
display: block;
clear: both !important;
float: none !important;
}
.nav-tabs > li {
float: none;
margin-bottom: -1px;
}
.nav-tabs > li.active + li {
padding-left: 0px;
}
form .nav-tabs > li > a,
form .nav-tabs > li.active > a {
padding: 8px 15px;
}
#simple .input-group .btn, #multiple .input-group .btn{
padding: 8px 5px 7px;
}
.list-partages .label{
display: block;
padding: 4px 0;
}
/*
* Frontend
*/
.navbar.nav-frontend {
height: auto;
min-height: 290px;
}
#register {
margin-top: 25px;
max-width: 400px;
width: 90%;
}
.auth-login {
padding: 5px;
}
#illustration img {
width: auto;
}
}
@media screen and (min-width: 990px) and (max-width: 1025px) {
.navbar.nav-frontend {
height: auto;
min-height: 90px;
}
}
@media screen and (min-width: 1025px) and (max-width: 1140px) {
.navbar.nav-frontend {
height: auto;
min-height: 90px;
}
} | 0.421314 | 0.119203 |
html,
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, h2, h3, h4, h5 {
font-family: 'Noto Sans JP', sans-serif;
margin-bottom: .2em;
padding-right: 4em;
line-height: 1.5;
}
h1 {
margin-top: 1.3em;
font-size: 2.4em;
}
h2 {
margin-top: 1.3em;
font-size: 2em;
}
h3 {
margin-top: 1.5em;
margin-bottom: 0;
font-size: 1.2em;
}
p {
font-size: 1.3em;
line-height: 1.7;
padding-right: 4em;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #999;
}
.site-header {
padding: 2em;
}
.site-title {
font-family: 'Noto Serif JP', serif;
font-size: 1.6em;
display: inline;
padding-right: 2em;
}
.site-desc {
display: inline;
}
.site-avatar {
border: 1px solid #EEE;
border-radius: 50%;
width: 40px;
height: 40px;
display: inline;
margin-right: 1em;
margin-bottom: -.4em;
}
.site-nav {
font-family: 'Noto Serif JP', serif;
list-style-type: none;
padding: 0;
display: inline;
}
.site-nav li {
display: inline;
margin-right: 2em;
}
.site-main {
padding: 0 0 0 6.2em;
}
.site-footer {
font-family: 'Noto Serif JP', serif;
font-size: .8em;
padding: 3em 0 2em 8em;
color: #999;
line-height: 1.7;
}
.post {
padding: 0 0 1em;
}
.entry .post-title {
margin-top: .8em;
}
.post-date {
margin: 0;
padding: 0;
font-size: .8em;
color: #999;
font-weight: bold;
display: inline;
}
.post-time {
color: #BBB;
padding-left: .8em;
font-weight: normal;
}
.post-tags:before {
content: '---';
padding: 0 1em;
letter-spacing: -.2em;
}
.post-tags {
list-style-type: none;
padding: 0;
font-size: .8em;
display: inline;
}
.post-tags li {
display: inline;
padding-right: 1em;
}
.post-tags a {
background-color: #eee;
padding: 1px 2px;
}
.page-title {
font-family: 'Noto Serif JP', serif;
font-size: .8em;
letter-spacing: .2em;
color: #999;
font-weight: normal;
}
.page-content a,
.post-content a {
padding-bottom: 1px;
border-bottom: 1px solid #000;
}
.page-content a:hover,
.post-content a:hover {
border-bottom: none;
}
.error-status {
font-family: 'Noto Serif JP', serif;
color: #EEE;
font-size: 6em;
text-align: center;
padding: 0;
}
.post-author {
margin: 3em 0;
color: #666;
}
.post-author-avatar {
border: 1px solid #EEE;
border-radius: 50%;
width: 30px;
height: 30px;
display: inline;
margin-right: 1em;
margin-bottom: -.4em;
}
.post-author-line {
display: inline-block;
margin: 0;
padding: 0;
}
.post-author-line a {
font-weight: bold;
}
.post-author-desc {
display: block;
margin: 0 0 0 30px;
padding: 0 0 0 1em;
}
@media (prefers-color-scheme: dark) {
html,
body {
background-color: #333;
color: #FFF;
}
a {
color: #FFF;
}
.post-time {
color: #666;
}
.post-tags a {
background-color: #555;
}
.page-content a,
.post-content a {
border-bottom-color: #fff;
}
}
@media (max-width: 480px) {
html,
body {
font-size: .9em;
}
h1, h2, h3, h4, h5, p {
padding-right: 0;
}
.site-header,
.site-main,
.site-footer {
padding-left: 1em;
padding-right: 1em;
}
.site-avatar {
margin-right: .8em;
margin-bottom: .5em;
display: block;
}
.post-title {
letter-spacing: -.02em;
}
.post-meta {
padding-top: .5em;
}
.post-date,
.post-tags {
display: block;
}
.post-tags:before {
display: none;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
html,
body {
font-size: .9em;
}
.site-avatar {
margin-right: .6em;
margin-bottom: -.6em;
}
} | src/components/layout.css | html,
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, h2, h3, h4, h5 {
font-family: 'Noto Sans JP', sans-serif;
margin-bottom: .2em;
padding-right: 4em;
line-height: 1.5;
}
h1 {
margin-top: 1.3em;
font-size: 2.4em;
}
h2 {
margin-top: 1.3em;
font-size: 2em;
}
h3 {
margin-top: 1.5em;
margin-bottom: 0;
font-size: 1.2em;
}
p {
font-size: 1.3em;
line-height: 1.7;
padding-right: 4em;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #999;
}
.site-header {
padding: 2em;
}
.site-title {
font-family: 'Noto Serif JP', serif;
font-size: 1.6em;
display: inline;
padding-right: 2em;
}
.site-desc {
display: inline;
}
.site-avatar {
border: 1px solid #EEE;
border-radius: 50%;
width: 40px;
height: 40px;
display: inline;
margin-right: 1em;
margin-bottom: -.4em;
}
.site-nav {
font-family: 'Noto Serif JP', serif;
list-style-type: none;
padding: 0;
display: inline;
}
.site-nav li {
display: inline;
margin-right: 2em;
}
.site-main {
padding: 0 0 0 6.2em;
}
.site-footer {
font-family: 'Noto Serif JP', serif;
font-size: .8em;
padding: 3em 0 2em 8em;
color: #999;
line-height: 1.7;
}
.post {
padding: 0 0 1em;
}
.entry .post-title {
margin-top: .8em;
}
.post-date {
margin: 0;
padding: 0;
font-size: .8em;
color: #999;
font-weight: bold;
display: inline;
}
.post-time {
color: #BBB;
padding-left: .8em;
font-weight: normal;
}
.post-tags:before {
content: '---';
padding: 0 1em;
letter-spacing: -.2em;
}
.post-tags {
list-style-type: none;
padding: 0;
font-size: .8em;
display: inline;
}
.post-tags li {
display: inline;
padding-right: 1em;
}
.post-tags a {
background-color: #eee;
padding: 1px 2px;
}
.page-title {
font-family: 'Noto Serif JP', serif;
font-size: .8em;
letter-spacing: .2em;
color: #999;
font-weight: normal;
}
.page-content a,
.post-content a {
padding-bottom: 1px;
border-bottom: 1px solid #000;
}
.page-content a:hover,
.post-content a:hover {
border-bottom: none;
}
.error-status {
font-family: 'Noto Serif JP', serif;
color: #EEE;
font-size: 6em;
text-align: center;
padding: 0;
}
.post-author {
margin: 3em 0;
color: #666;
}
.post-author-avatar {
border: 1px solid #EEE;
border-radius: 50%;
width: 30px;
height: 30px;
display: inline;
margin-right: 1em;
margin-bottom: -.4em;
}
.post-author-line {
display: inline-block;
margin: 0;
padding: 0;
}
.post-author-line a {
font-weight: bold;
}
.post-author-desc {
display: block;
margin: 0 0 0 30px;
padding: 0 0 0 1em;
}
@media (prefers-color-scheme: dark) {
html,
body {
background-color: #333;
color: #FFF;
}
a {
color: #FFF;
}
.post-time {
color: #666;
}
.post-tags a {
background-color: #555;
}
.page-content a,
.post-content a {
border-bottom-color: #fff;
}
}
@media (max-width: 480px) {
html,
body {
font-size: .9em;
}
h1, h2, h3, h4, h5, p {
padding-right: 0;
}
.site-header,
.site-main,
.site-footer {
padding-left: 1em;
padding-right: 1em;
}
.site-avatar {
margin-right: .8em;
margin-bottom: .5em;
display: block;
}
.post-title {
letter-spacing: -.02em;
}
.post-meta {
padding-top: .5em;
}
.post-date,
.post-tags {
display: block;
}
.post-tags:before {
display: none;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
html,
body {
font-size: .9em;
}
.site-avatar {
margin-right: .6em;
margin-bottom: -.6em;
}
} | 0.423339 | 0.105763 |
body,
html {
height: 100%;
background: #EDF1F5;
}
/* Helper */
.mb-3 {
margin-bottom: 1rem !important;
}
.mt-1 {
margin-top: .25rem !important;
}
.mt-2 {
margin-top: .5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
/* .pt-1 {
}
.pt-2 {
} */
.pt-3 {
padding-top: 1rem !important;
}
.pb-5_5 {
padding-bottom: 5.5%;
}
/* .pt-4 {
} */
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.px-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
/* Nav */
nav:not(.nav-contato) {
background: #2b2d42;
color: #fff;
height: 233px;
width: 100%;
padding-top: 40px;
position: relative;
}
nav.nav-contato {
background: rgba(22, 28, 38, .5);
color: #e5e7ea;
}
nav.nav-contato:hover {
background: #1f2631;
color: #cfd5dc;
transition-duration: 1s;
}
nav div.nav-wrapper ul {
width: 100%;
display: flex;
justify-content: center;
}
nav div.nav-wrapper a.brand-logo:not(.logo-contato) {
font-size: 3em;
}
nav div.nav-wrapper a.logo-contato {
padding-left: 15px;
}
.content-nav {
margin-left: 15%;
text-transform: capitalize;
}
.class-bord {
display: inline-flex;
border-left: 1px solid hsla(0, 0%, 93.3%, .16);
height: 30px;
margin-left: 20px;
padding-left: 20px;
align-items: center;
}
.img-al {
height: 60px;
}
.banner-image {
backface-visibility: hidden;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
filter: grayscale(100%);
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
transition: opacity .5s ease-in-out;
width: 100%;
z-index: 0;
}
main:not(.bg-contato) {
margin-top: -80px;
position: relative;
z-index: 60;
margin-bottom: 50px;
}
div.card.horizontal div.card-image img {
height: 280px;
}
div.container-all div.row div.col.s4.col-card-animes {
padding: 10px;
}
div.container-all div.row {
margin-bottom: 0;
}
.card-anime:hover {
box-shadow: 0 4px 6px rgba(49, 54, 68, .05), 0 5px 20px rgba(49, 54, 68, .08);
}
.card-image {
position: relative;
}
.card .card-title {
font-size: 13px;
font-weight: 300;
}
.back-img {
width: 100%;
background-color: rgba(41, 41, 41, 0.7);
position: absolute;
left: 0;
bottom: 0;
min-height: 0%;
max-height: 100%;
z-index: 1000;
padding: 15px;
}
.text-img {
color: white;
font-size: 12px;
font-weight: bolder;
}
.text-blue-back {
color: rgb(117, 181, 240);
font-size: 11px;
font-weight: bold;
}
.gender {
align-items: center;
display: flex;
flex-wrap: wrap;
height: 30px;
overflow: hidden;
}
.genrer {
background: rgb(235, 182, 45);
border-radius: 15px;
color: rgb(138, 44, 15);
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
height: 21px;
margin-right: 10px;
padding: 0px 13px;
text-transform: lowercase;
}
/* Contato */
.bg-contato {
background-image: url('../IMG/contato.jfif');
background-repeat: no-repeat;
/* background-size: 100% 100%; */
}
.container-contato {
background: #1a1a1a;
}
.first-row-contato {
/* margin-top: 5%; */
padding-top: 1rem;
}
input[type="text"],
textarea {
color: white;
}
input[type="text"]:focus,
textarea:focus {
border-bottom: 1px solid #747BB6 !important;
box-shadow: 0 1px 0 0 #747BB6 !important;
}
input[type="text"]:focus+label,
textarea:focus+label {
color: #747BB6 !important;
}
input[type="text"]:focus,
i {
color: #747BB6 !important;
}
.btn-form {
width: 100%;
height: 50px;
padding: 10px;
background: #2b2d42;
}
.btn-form:hover,
.btn-form:focus {
background: #747BB6;
}
.card .card-action {
padding: 7px 12px;
}
.texto-tv {
color: white;
font-size: 30px;
margin: 0 0 0 16px;
}
footer {
width: 100%;
background-color: #2b2d42;
}
.footer-text {
text-align: center;
color: white;
} | css/style.css | body,
html {
height: 100%;
background: #EDF1F5;
}
/* Helper */
.mb-3 {
margin-bottom: 1rem !important;
}
.mt-1 {
margin-top: .25rem !important;
}
.mt-2 {
margin-top: .5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
/* .pt-1 {
}
.pt-2 {
} */
.pt-3 {
padding-top: 1rem !important;
}
.pb-5_5 {
padding-bottom: 5.5%;
}
/* .pt-4 {
} */
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.px-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
/* Nav */
nav:not(.nav-contato) {
background: #2b2d42;
color: #fff;
height: 233px;
width: 100%;
padding-top: 40px;
position: relative;
}
nav.nav-contato {
background: rgba(22, 28, 38, .5);
color: #e5e7ea;
}
nav.nav-contato:hover {
background: #1f2631;
color: #cfd5dc;
transition-duration: 1s;
}
nav div.nav-wrapper ul {
width: 100%;
display: flex;
justify-content: center;
}
nav div.nav-wrapper a.brand-logo:not(.logo-contato) {
font-size: 3em;
}
nav div.nav-wrapper a.logo-contato {
padding-left: 15px;
}
.content-nav {
margin-left: 15%;
text-transform: capitalize;
}
.class-bord {
display: inline-flex;
border-left: 1px solid hsla(0, 0%, 93.3%, .16);
height: 30px;
margin-left: 20px;
padding-left: 20px;
align-items: center;
}
.img-al {
height: 60px;
}
.banner-image {
backface-visibility: hidden;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
filter: grayscale(100%);
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
transition: opacity .5s ease-in-out;
width: 100%;
z-index: 0;
}
main:not(.bg-contato) {
margin-top: -80px;
position: relative;
z-index: 60;
margin-bottom: 50px;
}
div.card.horizontal div.card-image img {
height: 280px;
}
div.container-all div.row div.col.s4.col-card-animes {
padding: 10px;
}
div.container-all div.row {
margin-bottom: 0;
}
.card-anime:hover {
box-shadow: 0 4px 6px rgba(49, 54, 68, .05), 0 5px 20px rgba(49, 54, 68, .08);
}
.card-image {
position: relative;
}
.card .card-title {
font-size: 13px;
font-weight: 300;
}
.back-img {
width: 100%;
background-color: rgba(41, 41, 41, 0.7);
position: absolute;
left: 0;
bottom: 0;
min-height: 0%;
max-height: 100%;
z-index: 1000;
padding: 15px;
}
.text-img {
color: white;
font-size: 12px;
font-weight: bolder;
}
.text-blue-back {
color: rgb(117, 181, 240);
font-size: 11px;
font-weight: bold;
}
.gender {
align-items: center;
display: flex;
flex-wrap: wrap;
height: 30px;
overflow: hidden;
}
.genrer {
background: rgb(235, 182, 45);
border-radius: 15px;
color: rgb(138, 44, 15);
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
height: 21px;
margin-right: 10px;
padding: 0px 13px;
text-transform: lowercase;
}
/* Contato */
.bg-contato {
background-image: url('../IMG/contato.jfif');
background-repeat: no-repeat;
/* background-size: 100% 100%; */
}
.container-contato {
background: #1a1a1a;
}
.first-row-contato {
/* margin-top: 5%; */
padding-top: 1rem;
}
input[type="text"],
textarea {
color: white;
}
input[type="text"]:focus,
textarea:focus {
border-bottom: 1px solid #747BB6 !important;
box-shadow: 0 1px 0 0 #747BB6 !important;
}
input[type="text"]:focus+label,
textarea:focus+label {
color: #747BB6 !important;
}
input[type="text"]:focus,
i {
color: #747BB6 !important;
}
.btn-form {
width: 100%;
height: 50px;
padding: 10px;
background: #2b2d42;
}
.btn-form:hover,
.btn-form:focus {
background: #747BB6;
}
.card .card-action {
padding: 7px 12px;
}
.texto-tv {
color: white;
font-size: 30px;
margin: 0 0 0 16px;
}
footer {
width: 100%;
background-color: #2b2d42;
}
.footer-text {
text-align: center;
color: white;
} | 0.481941 | 0.077413 |
body{
background-color:#807863;
}
#page{
max-width: 950px;
margin: 10px auto 10px auto;
padding: 20px;
border: 4px double #FFAF94;
}
header{
text-align: center;
}
h1 {
font-family: 'Amatic SC', cursive;
font-size: 70px;
}
#logo{
width: 500px;
}
.nav{
border-bottom: 1px solid #B36D56;
border-top: 2px solid #B36D56;
font-family: 'Josefin Sans';
padding: 15px;
margin: 0px auto 0px auto;
text-align: center;
width: 600px;
}
.nav li{
display: inline;
margin: 0px 3px;
}
#welcome{
font-family: lobster;
font-size: 44px;
margin-top: 20px;
margin-bottom: 10px;
text-align: center;
}
#family{
margin:10px 0px 10px 0px;
}
#intro{
border-bottom: 1px solid #B36D56;
font-family: Patua One;
font-size: 28px;
margin-bottom: 20px;
padding-bottom: 10px;
}
section{
text-align: center;
}
.together{
display:inline-block;
height: 300px;
width: 300px;
}
#drawing{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#drawing:hover{
opacity: 1;
}
#drawing span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#drawing:hover span{
opacity: .8;
}
#first_cookie{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#first_cookie:hover{
opacity: 1;
}
#first_cookie span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#first_cookie:hover span{
opacity: .8;
}
#t_shirt{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#t_shirt:hover{
opacity: 1;
}
#t_shirt span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#t_shirt:hover span{
opacity: .8;
}
#fish{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#fish:hover{
opacity: 1;
}
#fish span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#fish:hover span{
opacity: .8;
}
#cutter{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#cutter:hover{
opacity: 1;
}
#cutter span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#cutter:hover span{
opacity: .8;
}
h2{
font-family: 'Josefin Sans';
font-size: 30px;
}
.locations{
display: inline-block;
margin-top: 20px;
}
.locations ul li{
font-family: 'Josefin Sans';
font-size: 18px;
}
footer{
background: teal;
margin-top: 20px;
}
table{
background: lightgray;
border: 1px solid black;
margin: 20px auto;
width: 100%;
}
th{
border: 1px solid black;
font-size: 24px;
text-align: center;
}
td{
border: 1px solid black;
font-size: 18px;
}
.sale_body{
text-align: center;
}
.sale_body h1{
color: salmon;
background: darkblue;
display: inline-block;
margin: auto;
width: 800px;
}
.sale_body a{
display: inline-block;
text-align: center;
}
form{
background: lightgray;
margin: auto;
width: 800px;
}
.sale_body footer{
background: salmon;
width: 100px;
margin: 30px auto;
} | style.css | body{
background-color:#807863;
}
#page{
max-width: 950px;
margin: 10px auto 10px auto;
padding: 20px;
border: 4px double #FFAF94;
}
header{
text-align: center;
}
h1 {
font-family: 'Amatic SC', cursive;
font-size: 70px;
}
#logo{
width: 500px;
}
.nav{
border-bottom: 1px solid #B36D56;
border-top: 2px solid #B36D56;
font-family: 'Josefin Sans';
padding: 15px;
margin: 0px auto 0px auto;
text-align: center;
width: 600px;
}
.nav li{
display: inline;
margin: 0px 3px;
}
#welcome{
font-family: lobster;
font-size: 44px;
margin-top: 20px;
margin-bottom: 10px;
text-align: center;
}
#family{
margin:10px 0px 10px 0px;
}
#intro{
border-bottom: 1px solid #B36D56;
font-family: Patua One;
font-size: 28px;
margin-bottom: 20px;
padding-bottom: 10px;
}
section{
text-align: center;
}
.together{
display:inline-block;
height: 300px;
width: 300px;
}
#drawing{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#drawing:hover{
opacity: 1;
}
#drawing span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#drawing:hover span{
opacity: .8;
}
#first_cookie{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#first_cookie:hover{
opacity: 1;
}
#first_cookie span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#first_cookie:hover span{
opacity: .8;
}
#t_shirt{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#t_shirt:hover{
opacity: 1;
}
#t_shirt span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#t_shirt:hover span{
opacity: .8;
}
#fish{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#fish:hover{
opacity: 1;
}
#fish span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#fish:hover span{
opacity: .8;
}
#cutter{
display: inline-block;
height:300px;
position: relative;
opacity: 0.5;
transition: 350ms all;
width: 300px;
}
#cutter:hover{
opacity: 1;
}
#cutter span{
box-sizing: border-box;
background-color:salmon;
bottom: 0;
color: dark gray;
display: block;
font-family:'Amatic SC';
font-size: 25px;
height: 20%;
padding: 20px;
position: absolute;
text-align: center;
opacity: 0;
width: 100%;
}
#cutter:hover span{
opacity: .8;
}
h2{
font-family: 'Josefin Sans';
font-size: 30px;
}
.locations{
display: inline-block;
margin-top: 20px;
}
.locations ul li{
font-family: 'Josefin Sans';
font-size: 18px;
}
footer{
background: teal;
margin-top: 20px;
}
table{
background: lightgray;
border: 1px solid black;
margin: 20px auto;
width: 100%;
}
th{
border: 1px solid black;
font-size: 24px;
text-align: center;
}
td{
border: 1px solid black;
font-size: 18px;
}
.sale_body{
text-align: center;
}
.sale_body h1{
color: salmon;
background: darkblue;
display: inline-block;
margin: auto;
width: 800px;
}
.sale_body a{
display: inline-block;
text-align: center;
}
form{
background: lightgray;
margin: auto;
width: 800px;
}
.sale_body footer{
background: salmon;
width: 100px;
margin: 30px auto;
} | 0.397003 | 0.095307 |
.background_glossyLavender7,
.hover_background_glossyLavender7:hover,
.active_background_glossyLavender7:active:hover {
background: #1e1e97;
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_glossyLavender7h,
.hover_background_glossyLavender7h:hover,
.active_background_glossyLavender7h:active:hover {
background: #1e1e97;
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_glossyLavender7a,
.hover_background_glossyLavender7a:hover,
.active_background_glossyLavender7a:active:hover {
background: #1e1e97;
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_glossyLavender7s,
.hover_background_glossyLavender7s:hover,
.active_background_glossyLavender7s:active:hover {
background: #1e1e97;
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_glossyLavender7,
.hover_background_color_glossyLavender7:hover,
.active_background_color_glossyLavender7:active:hover {
background-color:#1e1e97;
}
.background_first_color_glossyLavender7,
.hover_background_first_color_glossyLavender7:hover,
.active_background_first_color_glossyLavender7:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyLavender7,
.hover_background_last_color_glossyLavender7:hover,
.active_background_color_last_glossyLavender7:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyLavender7,
.hover_color_glossyLavender7:hover,
.active_color_glossyLavender7:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7h,
.hover_color_glossyLavender7h:hover,
.active_color_glossyLavender7h:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7a,
.hover_color_glossyLavender7a:hover,
.active_color_glossyLavender7a:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7s,
.hover_color_glossyLavender7s:hover,
.active_color_glossyLavender7s:active:hover {
color: #c8c8c8;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyLavender7,
.hover_border_glossyLavender7:hover,
.active_border_glossyLavender7:active:hover {
border-color: #181879 #181879 #181879 #181879;
}
.border_glossyLavender7h,
.hover_border_glossyLavender7h:hover,
.active_border_glossyLavender7h:active:hover {
border-color: #141462 #141462 #141462 #141462;
}
.border_glossyLavender7a,
.hover_border_glossyLavender7a:hover,
.active_border_glossyLavender7a:active:hover {
border-color: #0f0f4b #0f0f4b #0f0f4b #0f0f4b;
}
.border_glossyLavender7s,
.hover_border_glossyLavender7s:hover,
.active_border_glossyLavender7s:active:hover {
border-color: #181879 #181879 #181879 #181879;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyLavender7,
.hover_shadow_expand_glossyLavender7:hover,
.active_shadow_expand_glossyLavender7:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
}
.shadow_expand_glossyLavender7h,
.hover_shadow_expand_glossyLavender7h:hover,
.active_shadow_expand_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
}
.shadow_expand_glossyLavender7a,
.hover_shadow_expand_glossyLavender7a:hover,
.active_shadow_expand_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
}
.shadow_expand_glossyLavender7s,
.hover_shadow_expand_glossyLavender7s:hover,
.active_shadow_expand_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyLavender7,
.hover_shadow_left_glossyLavender7:hover,
.active_shadow_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_left_glossyLavender7h,
.hover_shadow_left_glossyLavender7h:hover,
.active_shadow_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_left_glossyLavender7a,
.hover_shadow_left_glossyLavender7a:hover,
.active_shadow_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_left_glossyLavender7s,
.hover_shadow_left_glossyLavender7s:hover,
.active_shadow_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyLavender7,
.hover_shadow_right_glossyLavender7:hover,
.active_shadow_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
}
.shadow_right_glossyLavender7h,
.hover_shadow_right_glossyLavender7h:hover,
.active_shadow_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
}
.shadow_right_glossyLavender7a,
.hover_shadow_right_glossyLavender7a:hover,
.active_shadow_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
}
.shadow_right_glossyLavender7s,
.hover_shadow_right_glossyLavender7s:hover,
.active_shadow_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyLavender7,
.hover_shadow_top_glossyLavender7:hover,
.active_shadow_top_glossyLavender7:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_glossyLavender7h,
.hover_shadow_top_glossyLavender7h:hover,
.active_shadow_top_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_glossyLavender7a,
.hover_shadow_top_glossyLavender7a:hover,
.active_shadow_top_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_glossyLavender7s,
.hover_shadow_top_glossyLavender7s:hover,
.active_shadow_top_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyLavender7,
.hover_shadow_bottom_glossyLavender7:hover,
.active_shadow_bottom_glossyLavender7:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_glossyLavender7h,
.hover_shadow_bottom_glossyLavender7h:hover,
.active_shadow_bottom_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_glossyLavender7a,
.hover_shadow_bottom_glossyLavender7a:hover,
.active_shadow_bottom_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_glossyLavender7s,
.hover_shadow_bottom_glossyLavender7s:hover,
.active_shadow_bottom_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyLavender7,
.hover_shadow_top_left_glossyLavender7:hover,
.active_shadow_top_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_left_glossyLavender7h,
.hover_shadow_top_left_glossyLavender7h:hover,
.active_shadow_top_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_left_glossyLavender7a,
.hover_shadow_top_left_glossyLavender7a:hover,
.active_shadow_top_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_left_glossyLavender7s,
.hover_shadow_top_left_glossyLavender7s:hover,
.active_shadow_top_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyLavender7,
.hover_shadow_top_right_glossyLavender7:hover,
.active_shadow_top_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_right_glossyLavender7h,
.hover_shadow_top_right_glossyLavender7h:hover,
.active_shadow_top_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_right_glossyLavender7a,
.hover_shadow_top_right_glossyLavender7a:hover,
.active_shadow_top_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_right_glossyLavender7s,
.hover_shadow_top_right_glossyLavender7s:hover,
.active_shadow_top_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyLavender7,
.hover_shadow_bottom_left_glossyLavender7:hover,
.active_shadow_bottom_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_left_glossyLavender7h,
.hover_shadow_bottom_left_glossyLavender7h:hover,
.active_shadow_bottom_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_left_glossyLavender7a,
.hover_shadow_bottom_left_glossyLavender7a:hover,
.active_shadow_bottom_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_left_glossyLavender7s,
.hover_shadow_bottom_left_glossyLavender7s:hover,
.active_shadow_bottom_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyLavender7,
.hover_shadow_bottom_right_glossyLavender7:hover,
.active_shadow_bottom_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_right_glossyLavender7h,
.hover_shadow_bottom_right_glossyLavender7h:hover,
.active_shadow_bottom_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_right_glossyLavender7a,
.hover_shadow_bottom_right_glossyLavender7a:hover,
.active_shadow_bottom_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_right_glossyLavender7s,
.hover_shadow_bottom_right_glossyLavender7s:hover,
.active_shadow_bottom_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
} | widgets/common/assets/gradients/glossy/glossyLavender/glossyLavender7.css | .background_glossyLavender7,
.hover_background_glossyLavender7:hover,
.active_background_glossyLavender7:active:hover {
background: #1e1e97;
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_glossyLavender7h,
.hover_background_glossyLavender7h:hover,
.active_background_glossyLavender7h:active:hover {
background: #1e1e97;
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_glossyLavender7a,
.hover_background_glossyLavender7a:hover,
.active_background_glossyLavender7a:active:hover {
background: #1e1e97;
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_glossyLavender7s,
.hover_background_glossyLavender7s:hover,
.active_background_glossyLavender7s:active:hover {
background: #1e1e97;
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_glossyLavender7,
.hover_background_color_glossyLavender7:hover,
.active_background_color_glossyLavender7:active:hover {
background-color:#1e1e97;
}
.background_first_color_glossyLavender7,
.hover_background_first_color_glossyLavender7:hover,
.active_background_first_color_glossyLavender7:active:hover {
background-color:#ffffff;
}
.background_last_color_glossyLavender7,
.hover_background_last_color_glossyLavender7:hover,
.active_background_color_last_glossyLavender7:active:hover {
background-color:#000000;
}
/* ------------------------------ color settings -------------------------------*/
.color_glossyLavender7,
.hover_color_glossyLavender7:hover,
.active_color_glossyLavender7:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7h,
.hover_color_glossyLavender7h:hover,
.active_color_glossyLavender7h:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7a,
.hover_color_glossyLavender7a:hover,
.active_color_glossyLavender7a:active:hover {
color: #c8c8c8;
}
.color_glossyLavender7s,
.hover_color_glossyLavender7s:hover,
.active_color_glossyLavender7s:active:hover {
color: #c8c8c8;
}
/* -------------------------- border color settings -----------------------------*/
.border_glossyLavender7,
.hover_border_glossyLavender7:hover,
.active_border_glossyLavender7:active:hover {
border-color: #181879 #181879 #181879 #181879;
}
.border_glossyLavender7h,
.hover_border_glossyLavender7h:hover,
.active_border_glossyLavender7h:active:hover {
border-color: #141462 #141462 #141462 #141462;
}
.border_glossyLavender7a,
.hover_border_glossyLavender7a:hover,
.active_border_glossyLavender7a:active:hover {
border-color: #0f0f4b #0f0f4b #0f0f4b #0f0f4b;
}
.border_glossyLavender7s,
.hover_border_glossyLavender7s:hover,
.active_border_glossyLavender7s:active:hover {
border-color: #181879 #181879 #181879 #181879;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glossyLavender7,
.hover_shadow_expand_glossyLavender7:hover,
.active_shadow_expand_glossyLavender7:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
box-shadow: 0em 0em 1em 0.25em rgba(30, 30, 151, .39);
}
.shadow_expand_glossyLavender7h,
.hover_shadow_expand_glossyLavender7h:hover,
.active_shadow_expand_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 181, .50);
}
.shadow_expand_glossyLavender7a,
.hover_shadow_expand_glossyLavender7a:hover,
.active_shadow_expand_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .63);
}
.shadow_expand_glossyLavender7s,
.hover_shadow_expand_glossyLavender7s:hover,
.active_shadow_expand_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
box-shadow: 0em 0em 1em 0.25em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glossyLavender7,
.hover_shadow_left_glossyLavender7:hover,
.active_shadow_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_left_glossyLavender7h,
.hover_shadow_left_glossyLavender7h:hover,
.active_shadow_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_left_glossyLavender7a,
.hover_shadow_left_glossyLavender7a:hover,
.active_shadow_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_left_glossyLavender7s,
.hover_shadow_left_glossyLavender7s:hover,
.active_shadow_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glossyLavender7,
.hover_shadow_right_glossyLavender7:hover,
.active_shadow_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em 0em 1em rgba(30, 30, 151, .39);
}
.shadow_right_glossyLavender7h,
.hover_shadow_right_glossyLavender7h:hover,
.active_shadow_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em 0em 1em rgba(36, 36, 181, .50);
}
.shadow_right_glossyLavender7a,
.hover_shadow_right_glossyLavender7a:hover,
.active_shadow_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .63);
}
.shadow_right_glossyLavender7s,
.hover_shadow_right_glossyLavender7s:hover,
.active_shadow_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em 0em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glossyLavender7,
.hover_shadow_top_glossyLavender7:hover,
.active_shadow_top_glossyLavender7:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_glossyLavender7h,
.hover_shadow_top_glossyLavender7h:hover,
.active_shadow_top_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_glossyLavender7a,
.hover_shadow_top_glossyLavender7a:hover,
.active_shadow_top_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_glossyLavender7s,
.hover_shadow_top_glossyLavender7s:hover,
.active_shadow_top_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glossyLavender7,
.hover_shadow_bottom_glossyLavender7:hover,
.active_shadow_bottom_glossyLavender7:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_glossyLavender7h,
.hover_shadow_bottom_glossyLavender7h:hover,
.active_shadow_bottom_glossyLavender7h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_glossyLavender7a,
.hover_shadow_bottom_glossyLavender7a:hover,
.active_shadow_bottom_glossyLavender7a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_glossyLavender7s,
.hover_shadow_bottom_glossyLavender7s:hover,
.active_shadow_bottom_glossyLavender7s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0em 0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glossyLavender7,
.hover_shadow_top_left_glossyLavender7:hover,
.active_shadow_top_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_left_glossyLavender7h,
.hover_shadow_top_left_glossyLavender7h:hover,
.active_shadow_top_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_left_glossyLavender7a,
.hover_shadow_top_left_glossyLavender7a:hover,
.active_shadow_top_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_left_glossyLavender7s,
.hover_shadow_top_left_glossyLavender7s:hover,
.active_shadow_top_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glossyLavender7,
.hover_shadow_top_right_glossyLavender7:hover,
.active_shadow_top_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em -0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_top_right_glossyLavender7h,
.hover_shadow_top_right_glossyLavender7h:hover,
.active_shadow_top_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em -0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_top_right_glossyLavender7a,
.hover_shadow_top_right_glossyLavender7a:hover,
.active_shadow_top_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_top_right_glossyLavender7s,
.hover_shadow_top_right_glossyLavender7s:hover,
.active_shadow_top_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em -0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glossyLavender7,
.hover_shadow_bottom_left_glossyLavender7:hover,
.active_shadow_bottom_left_glossyLavender7:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: -0.5em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_left_glossyLavender7h,
.hover_shadow_bottom_left_glossyLavender7h:hover,
.active_shadow_bottom_left_glossyLavender7h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: -0.5em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_left_glossyLavender7a,
.hover_shadow_bottom_left_glossyLavender7a:hover,
.active_shadow_bottom_left_glossyLavender7a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_left_glossyLavender7s,
.hover_shadow_bottom_left_glossyLavender7s:hover,
.active_shadow_bottom_left_glossyLavender7s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: -0.5em 0.5em 1em rgba(27, 27, 136, .71);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glossyLavender7,
.hover_shadow_bottom_right_glossyLavender7:hover,
.active_shadow_bottom_right_glossyLavender7:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
box-shadow: 0.5em 0.5em 1em rgba(30, 30, 151, .39);
}
.shadow_bottom_right_glossyLavender7h,
.hover_shadow_bottom_right_glossyLavender7h:hover,
.active_shadow_bottom_right_glossyLavender7h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
box-shadow: 0.5em 0.5em 1em rgba(36, 36, 181, .50);
}
.shadow_bottom_right_glossyLavender7a,
.hover_shadow_bottom_right_glossyLavender7a:hover,
.active_shadow_bottom_right_glossyLavender7a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .63);
}
.shadow_bottom_right_glossyLavender7s,
.hover_shadow_bottom_right_glossyLavender7s:hover,
.active_shadow_bottom_right_glossyLavender7s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
-moz-box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
box-shadow: 0.5em 0.5em 1em rgba(27, 27, 136, .71);
} | 0.457621 | 0.060169 |
html {
margin: 0;
padding: 0;
}
body {
/* font-family: 'Open Sans', sans-serif; */
font-family: Arial;
margin: 0;
padding: 0;
background-color: whitesmoke;
}
/*LANDING PAGE STARTER*/
header {
grid-area: header;
}
.Forsidesection {
grid-area: section-1
}
#ForsideContainer {
background-image: url("../images/grรธnkรฅl\ 02.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100%;
display: grid;
height: 812px;
padding: 0;
margin: 0;
gap: 0;
grid-template-areas:
"section-1"
}
/* form.SearchBar {
margin: auto;
max-width: 210px;
}
form.SearchBar input[type=search]{
border: 1px solid #ccc;
height: 25px ;
}
form.SearchBar button {
margin-left: -5px;
border: 1px solid #ccc;
border-left: none;
height: 25px;
padding-left: 10px;
padding-right: 10px;
} */
.tab {
display: flex;
justify-content: space-around;
bottom: 0;
position: fixed;
width: 100%;
z-index: 1;
background-color: white;
}
#opretContainer {
display: none;
}
.Forsidesection {
margin-top: 60vh;
}
.ForsideH2 {
font-size: 20px;
width: 85vw;
}
.ForsideTekstCon {
padding: 20px 0;
margin-left: 5vw;
}
.ForsideTekstCon {
color: white;
}
.ForsideP {
margin-top: 3vh;
width: 80vw;
}
#btnStart {
border-style: none;
padding: 10px;
width: 90%;
margin: 0 auto;
display: block;
background-color: #43885D;
border-radius: 4px;
height: 56px;
color: white;
font-weight: bold;
font-size: 16px;
}
/** FORSIDE FรRDIGT **/
/* OPRET DIG START */
input[type=password], input[type=email], .input[type=text] {
padding: 13px 0px;
width: 100%;
border-radius: 3px;
border: none;
}
.btnOpretWrap {
margin: 0 auto;
}
.OpretSection {
margin: 0 auto;
width: 80%;
margin-top: 15vh;
}
.FormKodeord, .EmailForm, .Navn, .Adresse {
margin-top: 2vh;
}
#Navn, #Adresse {
border-style: none;
background-color: white;
border-radius: 3px;
border: none;
width: 100%;
font-weight: bold;
height: 42px;
}
#opretContainer {
background-image: url("../images/Rectangle\ 532.png");
background-size: cover;
height: 812px;
width: 100%;
}
.Navn {
margin-top: 5vh;
}
#btnOpret {
background-color: #43885D;
border-style: none;
padding: 10px;
width: 100%;
height: 48px;
color: white;
font-weight: bold;
font-size: 16px;
margin-top: 5vh;
text-decoration: none;
} | assets/css/styles.css | html {
margin: 0;
padding: 0;
}
body {
/* font-family: 'Open Sans', sans-serif; */
font-family: Arial;
margin: 0;
padding: 0;
background-color: whitesmoke;
}
/*LANDING PAGE STARTER*/
header {
grid-area: header;
}
.Forsidesection {
grid-area: section-1
}
#ForsideContainer {
background-image: url("../images/grรธnkรฅl\ 02.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100%;
display: grid;
height: 812px;
padding: 0;
margin: 0;
gap: 0;
grid-template-areas:
"section-1"
}
/* form.SearchBar {
margin: auto;
max-width: 210px;
}
form.SearchBar input[type=search]{
border: 1px solid #ccc;
height: 25px ;
}
form.SearchBar button {
margin-left: -5px;
border: 1px solid #ccc;
border-left: none;
height: 25px;
padding-left: 10px;
padding-right: 10px;
} */
.tab {
display: flex;
justify-content: space-around;
bottom: 0;
position: fixed;
width: 100%;
z-index: 1;
background-color: white;
}
#opretContainer {
display: none;
}
.Forsidesection {
margin-top: 60vh;
}
.ForsideH2 {
font-size: 20px;
width: 85vw;
}
.ForsideTekstCon {
padding: 20px 0;
margin-left: 5vw;
}
.ForsideTekstCon {
color: white;
}
.ForsideP {
margin-top: 3vh;
width: 80vw;
}
#btnStart {
border-style: none;
padding: 10px;
width: 90%;
margin: 0 auto;
display: block;
background-color: #43885D;
border-radius: 4px;
height: 56px;
color: white;
font-weight: bold;
font-size: 16px;
}
/** FORSIDE FรRDIGT **/
/* OPRET DIG START */
input[type=password], input[type=email], .input[type=text] {
padding: 13px 0px;
width: 100%;
border-radius: 3px;
border: none;
}
.btnOpretWrap {
margin: 0 auto;
}
.OpretSection {
margin: 0 auto;
width: 80%;
margin-top: 15vh;
}
.FormKodeord, .EmailForm, .Navn, .Adresse {
margin-top: 2vh;
}
#Navn, #Adresse {
border-style: none;
background-color: white;
border-radius: 3px;
border: none;
width: 100%;
font-weight: bold;
height: 42px;
}
#opretContainer {
background-image: url("../images/Rectangle\ 532.png");
background-size: cover;
height: 812px;
width: 100%;
}
.Navn {
margin-top: 5vh;
}
#btnOpret {
background-color: #43885D;
border-style: none;
padding: 10px;
width: 100%;
height: 48px;
color: white;
font-weight: bold;
font-size: 16px;
margin-top: 5vh;
text-decoration: none;
} | 0.324556 | 0.088978 |
@charset "utf-8";
.comment {
list-style: none;
font-size: 0.9em;
padding: 0;
margin: 0;
}
.comment abbr {
border-bottom: none;
}
.comment blockquote
{
background: #eee;
border: 1px dashed #ddd;
width: 70%;
padding: 10px;
}
.comment li {
margin: 0;
margin-bottom: 10px;
padding: 10px 13px;
border-bottom: 1px dotted #ddd;
}
.comment li:last-child {
border-bottom: none;
}
.comment li:target {
background: #fdfbe9;
}
.comment li:target .ref {
background: #fffdee;
}
.comment .info {
float: left;
width: 192px;
display: block;
margin: 0 0 4px;
color: #999;
}
.comment .info .poster {
font-size: 1.1em;
font-weight: bold;
color: #777;
}
.comment .info .poster img{
float:left;
margin-right: 3px;
border: 1px solid #666;
}
.comment .info .time {
display: block;
margin-top: 1px;
}
.comment .content_buried, .comment .content {
line-height: 1.3em;
margin-left: 12em;
margin-left: 230px;
}
.comment .content p {
margin: 0 0 0.5em;
}
.comment .content p a {
text-decoration: none;
}
.comment .content .spoiler { background: #333; color: #333; }
.comment .content .spoiler .ref { padding-bottom: 1px; background: #333; }
.comment .content .spoiler .ref a { color: #333; }
.comment .content .spoiler a { color: #333; }
.comment .content .spoiler:hover { color: #fff; }
.comment .content .spoiler:hover .ref { background: #555; }
.comment .content .spoiler:hover a { color: #fff; }
.comment .content .spoiler:hover a:hover { color: #ddd; }
.comment .content_buried p {
font-size: 0.95em;
margin: 0 0 0.2em;
}
.comment .actions {
margin-top: -0.3em;
margin-left: 12em;
margin-bottom: 15px;
}
.comment .actions span {
margin-right: 5px;
}
.comment .actions a {
font-size: 0.9em;
padding: 1px 3px 2px 0;
color: #bbb;
}
.comment .actions a:hover {
color: #333;
}
.comment .content .ref {
font-size: 0.85em;
padding: 2px 3px;
background: #f9f9f9;
}
/* - Buried comments: any comments that has been buried */
.comment .buried .info * {
color: #ddd;
}
.comment .buried .content_buried {
color: #ddd;
}
.comment .buried .bury_show {
cursor: pointer;
font-weight: bold;
margin-left: 10px;
}
.comment .buried .bury_show:hover {
color: #333;
}
.comment .buried .content {
color: #aaa;
}
.comment .buried .actions a {
color: #ddd;
}
/* Comments list
Listing of all comments separate by posts */
#comments_list #posts {
margin: 20px 0 0 0;
}
#comments_list #posts .meta {
margin: 0 0 0 197px;
padding: 5px 0 5px 13px;
border-bottom: 2px solid #e5e5e5;
}
#comments_list #posts .meta h3 {
color: #666;
font-size: 1em;
padding: 0;
margin: 0 0 2px 0;
}
#comments_list #posts .thread {
float: left;
clear: both;
width: 100%;
margin-bottom: 25px;
}
#comments_list #posts .comment {
margin-left: 197px;
}
#comments_list #posts p.post {
float: left;
display: block;
text-align: center;
width: 200px;
margin: 0;
padding: 0;
}
#comments_list #posts p.post img {
border: none;
}
/* Comment bury
Page showing bury confirmation */
#comment_bury .comment {
margin-top: -10px;
}
.forum li {
margin: 0;
padding: 0;
border-bottom: none;
} | naranai/styles/main/comments.css | @charset "utf-8";
.comment {
list-style: none;
font-size: 0.9em;
padding: 0;
margin: 0;
}
.comment abbr {
border-bottom: none;
}
.comment blockquote
{
background: #eee;
border: 1px dashed #ddd;
width: 70%;
padding: 10px;
}
.comment li {
margin: 0;
margin-bottom: 10px;
padding: 10px 13px;
border-bottom: 1px dotted #ddd;
}
.comment li:last-child {
border-bottom: none;
}
.comment li:target {
background: #fdfbe9;
}
.comment li:target .ref {
background: #fffdee;
}
.comment .info {
float: left;
width: 192px;
display: block;
margin: 0 0 4px;
color: #999;
}
.comment .info .poster {
font-size: 1.1em;
font-weight: bold;
color: #777;
}
.comment .info .poster img{
float:left;
margin-right: 3px;
border: 1px solid #666;
}
.comment .info .time {
display: block;
margin-top: 1px;
}
.comment .content_buried, .comment .content {
line-height: 1.3em;
margin-left: 12em;
margin-left: 230px;
}
.comment .content p {
margin: 0 0 0.5em;
}
.comment .content p a {
text-decoration: none;
}
.comment .content .spoiler { background: #333; color: #333; }
.comment .content .spoiler .ref { padding-bottom: 1px; background: #333; }
.comment .content .spoiler .ref a { color: #333; }
.comment .content .spoiler a { color: #333; }
.comment .content .spoiler:hover { color: #fff; }
.comment .content .spoiler:hover .ref { background: #555; }
.comment .content .spoiler:hover a { color: #fff; }
.comment .content .spoiler:hover a:hover { color: #ddd; }
.comment .content_buried p {
font-size: 0.95em;
margin: 0 0 0.2em;
}
.comment .actions {
margin-top: -0.3em;
margin-left: 12em;
margin-bottom: 15px;
}
.comment .actions span {
margin-right: 5px;
}
.comment .actions a {
font-size: 0.9em;
padding: 1px 3px 2px 0;
color: #bbb;
}
.comment .actions a:hover {
color: #333;
}
.comment .content .ref {
font-size: 0.85em;
padding: 2px 3px;
background: #f9f9f9;
}
/* - Buried comments: any comments that has been buried */
.comment .buried .info * {
color: #ddd;
}
.comment .buried .content_buried {
color: #ddd;
}
.comment .buried .bury_show {
cursor: pointer;
font-weight: bold;
margin-left: 10px;
}
.comment .buried .bury_show:hover {
color: #333;
}
.comment .buried .content {
color: #aaa;
}
.comment .buried .actions a {
color: #ddd;
}
/* Comments list
Listing of all comments separate by posts */
#comments_list #posts {
margin: 20px 0 0 0;
}
#comments_list #posts .meta {
margin: 0 0 0 197px;
padding: 5px 0 5px 13px;
border-bottom: 2px solid #e5e5e5;
}
#comments_list #posts .meta h3 {
color: #666;
font-size: 1em;
padding: 0;
margin: 0 0 2px 0;
}
#comments_list #posts .thread {
float: left;
clear: both;
width: 100%;
margin-bottom: 25px;
}
#comments_list #posts .comment {
margin-left: 197px;
}
#comments_list #posts p.post {
float: left;
display: block;
text-align: center;
width: 200px;
margin: 0;
padding: 0;
}
#comments_list #posts p.post img {
border: none;
}
/* Comment bury
Page showing bury confirmation */
#comment_bury .comment {
margin-top: -10px;
}
.forum li {
margin: 0;
padding: 0;
border-bottom: none;
} | 0.256925 | 0.112113 |
body, input, textarea {
font-family: "Century Gothic" !important;
}
code {
background-color: #ddd;
padding: 2px;
box-shadow: 0px 0px 1px 0px #555 inset;
border-radius: 3px;
}
#body {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
width: 1020px;
height: 620px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 10px 0px #000000;
-moz-box-shadow: 0px 0px 10px 0px #000000;
box-shadow: 0px 0px 10px 0px #000000;
}
#input-box {
margin: auto;
margin-bottom: 15px;
height: 40px;
width: 300px;
border: 0px solid;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0px 0px 5px 0px #000000;
-moz-box-shadow: inset 0px 0px 5px 0px #000000;
box-shadow: inset 0px 0px 5px 0px #000000;
}
#input-box input {
margin: 8px;
height: 20px;
width: 280px;
resize: none;
border: 0px solid;
text-align: center;
background-color: transparent;
}
#chat {
height: 620px;
width: 1020px;
}
#login {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
#registerForm {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
#options {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
.options {
background: url("../images/options.png") no-repeat;
width: 30px;
border: none;
height: 30px;
float: right;
}
#chat-box {
width: 720px;
height: 400px;
border: 0px solid;
margin-left: 50px;
margin-bottom: 10px;
position: absolute;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#chat-textarea {
margin: 8px;
width: 695px;
border: 0px solid;
background-color: transparent;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-break: break-all
}
#reply-box {
height: 40px;
width: 625px;
overflow: auto;
border: 0px solid;
margin-left: 50px;
background: #FFFFFF;
margin-right: 282px;
margin-top: 410px;
position: absolute;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#reply-box input {
margin: 8px;
height: 20px;
width: 605px;
resize: none;
border: 0px solid;
background-color: transparent;
}
#online-list {
float: right;
width: 190px;
height: 450px;
display: block;
overflow: auto;
border: 0px solid;
margin-left: 780px;
position: absolute;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#online-users {
margin: 8px;
width: 165px;
border: 0px solid;
background-color: transparent;
}
.create {
float: left;
width: 85px;
height: 40px;
color: #FFF;
display: block;
font-size: 20px;
cursor: pointer;
position: absolute;
margin-left: 685px;
margin-top: 410px;
border-radius: 7px;
margin-bottom: 10px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.create:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.login {
color: #FFF;
margin-left: 155px;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
position: absolute;
border-radius: 5px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.login:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.register {
color: #FFF;
margin-left: 45px;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
border-radius: 5px;
position: absolute;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.register:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.registerSubmit {
color: #FFF;
margin: auto;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
border-radius: 5px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.registerSubmit:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.img {
max-height: 100%;
max-width: 200px;
}
.time {
font-size: 10px;
}
.whisper {
color: #808080;
}
.adminMsg {
color: #2471FF;
}
.serverMsg {
color: #5E97FF;
}
.serverLeave {
color: #4E7ACC;
}
h1 {
font-size: 50px;
text-align: center;
font-weight: normal;
}
p {
font-size: 14px;
text-align: center;
}
/* perfect-scrollbar v0.6.4 */
.ps-container {
-ms-touch-action: none;
overflow: hidden !important; }
.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
display: block; }
.ps-container.ps-in-scrolling {
pointer-events: none; }
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
background-color: transparent;
opacity: 0.9; }
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
background-color: #999; }
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
background-color: transparent;
opacity: 0.9; }
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
background-color: #999; }
.ps-container > .ps-scrollbar-x-rail {
display: none;
position: absolute;
/* please don't change 'position' */
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
opacity: 0;
-webkit-transition: background-color .2s linear, opacity .2s linear;
-moz-transition: background-color .2s linear, opacity .2s linear;
-o-transition: background-color .2s linear, opacity .2s linear;
transition: background-color .2s linear, opacity .2s linear;
bottom: 3px;
/* there must be 'bottom' for ps-scrollbar-x-rail */
height: 8px; }
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
position: absolute;
/* please don't change 'position' */
background-color: #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: background-color .2s linear;
-moz-transition: background-color .2s linear;
-o-transition: background-color .2s linear;
transition: background-color .2s linear;
bottom: 0;
/* there must be 'bottom' for ps-scrollbar-x */
height: 8px; }
.ps-container > .ps-scrollbar-y-rail {
display: none;
position: absolute;
/* please don't change 'position' */
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
opacity: 0;
-webkit-transition: background-color .2s linear, opacity .2s linear;
-moz-transition: background-color .2s linear, opacity .2s linear;
-o-transition: background-color .2s linear, opacity .2s linear;
transition: background-color .2s linear, opacity .2s linear;
right: 3px;
/* there must be 'right' for ps-scrollbar-y-rail */
width: 8px; }
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
position: absolute;
/* please don't change 'position' */
background-color: #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: background-color .2s linear;
-moz-transition: background-color .2s linear;
-o-transition: background-color .2s linear;
transition: background-color .2s linear;
right: 0;
/* there must be 'right' for ps-scrollbar-y */
width: 8px; }
.ps-container:hover.ps-in-scrolling {
pointer-events: none; }
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
background-color: #999; }
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
background-color: #999; }
.ps-container:hover > .ps-scrollbar-x-rail, .ps-container:hover > .ps-scrollbar-y-rail {
opacity: 0.6; }
.ps-container:hover > .ps-scrollbar-x-rail:hover {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
background-color: #999; }
.ps-container:hover > .ps-scrollbar-y-rail:hover {
background-color: transparent;
opacity: 0.9; }
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
background-color: #999; } | css/chat.css | body, input, textarea {
font-family: "Century Gothic" !important;
}
code {
background-color: #ddd;
padding: 2px;
box-shadow: 0px 0px 1px 0px #555 inset;
border-radius: 3px;
}
#body {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
width: 1020px;
height: 620px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 0px 10px 0px #000000;
-moz-box-shadow: 0px 0px 10px 0px #000000;
box-shadow: 0px 0px 10px 0px #000000;
}
#input-box {
margin: auto;
margin-bottom: 15px;
height: 40px;
width: 300px;
border: 0px solid;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0px 0px 5px 0px #000000;
-moz-box-shadow: inset 0px 0px 5px 0px #000000;
box-shadow: inset 0px 0px 5px 0px #000000;
}
#input-box input {
margin: 8px;
height: 20px;
width: 280px;
resize: none;
border: 0px solid;
text-align: center;
background-color: transparent;
}
#chat {
height: 620px;
width: 1020px;
}
#login {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
#registerForm {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
#options {
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-50%) translateY(-50%);
}
.options {
background: url("../images/options.png") no-repeat;
width: 30px;
border: none;
height: 30px;
float: right;
}
#chat-box {
width: 720px;
height: 400px;
border: 0px solid;
margin-left: 50px;
margin-bottom: 10px;
position: absolute;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#chat-textarea {
margin: 8px;
width: 695px;
border: 0px solid;
background-color: transparent;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-break: break-all
}
#reply-box {
height: 40px;
width: 625px;
overflow: auto;
border: 0px solid;
margin-left: 50px;
background: #FFFFFF;
margin-right: 282px;
margin-top: 410px;
position: absolute;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#reply-box input {
margin: 8px;
height: 20px;
width: 605px;
resize: none;
border: 0px solid;
background-color: transparent;
}
#online-list {
float: right;
width: 190px;
height: 450px;
display: block;
overflow: auto;
border: 0px solid;
margin-left: 780px;
position: absolute;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: inset 0px 0px 7px 0px #000000;
-webkit-box-shadow: inset 0px 0px 7px 0px #000000;
box-shadow: inset 0px 0px 7px 0px #000000;
}
#online-users {
margin: 8px;
width: 165px;
border: 0px solid;
background-color: transparent;
}
.create {
float: left;
width: 85px;
height: 40px;
color: #FFF;
display: block;
font-size: 20px;
cursor: pointer;
position: absolute;
margin-left: 685px;
margin-top: 410px;
border-radius: 7px;
margin-bottom: 10px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.create:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.login {
color: #FFF;
margin-left: 155px;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
position: absolute;
border-radius: 5px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.login:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.register {
color: #FFF;
margin-left: 45px;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
border-radius: 5px;
position: absolute;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.register:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.registerSubmit {
color: #FFF;
margin: auto;
width: 100px;
height: 40px;
display: table;
cursor: pointer;
font-size: 20px;
border-radius: 5px;
border: medium none;
outline: medium none;
background: #5e97ff repeat scroll 0% 0%;
}
.registerSubmit:hover {
color: #FFF;
background: #83afff repeat scroll 0% 0%;
}
.img {
max-height: 100%;
max-width: 200px;
}
.time {
font-size: 10px;
}
.whisper {
color: #808080;
}
.adminMsg {
color: #2471FF;
}
.serverMsg {
color: #5E97FF;
}
.serverLeave {
color: #4E7ACC;
}
h1 {
font-size: 50px;
text-align: center;
font-weight: normal;
}
p {
font-size: 14px;
text-align: center;
}
/* perfect-scrollbar v0.6.4 */
.ps-container {
-ms-touch-action: none;
overflow: hidden !important; }
.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
display: block; }
.ps-container.ps-in-scrolling {
pointer-events: none; }
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
background-color: transparent;
opacity: 0.9; }
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
background-color: #999; }
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
background-color: transparent;
opacity: 0.9; }
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
background-color: #999; }
.ps-container > .ps-scrollbar-x-rail {
display: none;
position: absolute;
/* please don't change 'position' */
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
opacity: 0;
-webkit-transition: background-color .2s linear, opacity .2s linear;
-moz-transition: background-color .2s linear, opacity .2s linear;
-o-transition: background-color .2s linear, opacity .2s linear;
transition: background-color .2s linear, opacity .2s linear;
bottom: 3px;
/* there must be 'bottom' for ps-scrollbar-x-rail */
height: 8px; }
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
position: absolute;
/* please don't change 'position' */
background-color: #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: background-color .2s linear;
-moz-transition: background-color .2s linear;
-o-transition: background-color .2s linear;
transition: background-color .2s linear;
bottom: 0;
/* there must be 'bottom' for ps-scrollbar-x */
height: 8px; }
.ps-container > .ps-scrollbar-y-rail {
display: none;
position: absolute;
/* please don't change 'position' */
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
opacity: 0;
-webkit-transition: background-color .2s linear, opacity .2s linear;
-moz-transition: background-color .2s linear, opacity .2s linear;
-o-transition: background-color .2s linear, opacity .2s linear;
transition: background-color .2s linear, opacity .2s linear;
right: 3px;
/* there must be 'right' for ps-scrollbar-y-rail */
width: 8px; }
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
position: absolute;
/* please don't change 'position' */
background-color: #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: background-color .2s linear;
-moz-transition: background-color .2s linear;
-o-transition: background-color .2s linear;
transition: background-color .2s linear;
right: 0;
/* there must be 'right' for ps-scrollbar-y */
width: 8px; }
.ps-container:hover.ps-in-scrolling {
pointer-events: none; }
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
background-color: #999; }
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
background-color: #999; }
.ps-container:hover > .ps-scrollbar-x-rail, .ps-container:hover > .ps-scrollbar-y-rail {
opacity: 0.6; }
.ps-container:hover > .ps-scrollbar-x-rail:hover {
background-color: #eee;
opacity: 0.9; }
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
background-color: #999; }
.ps-container:hover > .ps-scrollbar-y-rail:hover {
background-color: transparent;
opacity: 0.9; }
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
background-color: #999; } | 0.202443 | 0.072014 |
.ui-slider {
position:absolute;
background:transparent;
border-top: 2px solid #b5b5b5;
height:32px;
border-radius:0;
width: calc(100% - 68px);
border:0px;
}
.ui-slider .ui-slider-handle:focus{
outline: none;
border-color: inherit;
-webkit-box-shadow: none;
box-shadow: none;
}
.ui-slider .ui-slider-handle {
-webkit-appearance:none;
border: 2px solid #b5b5b5;
color: #b5b5b5;
height: 28px;
width: 64px;
top:0;
bottom:0;
margin:0;
background: #FFFFFF;
border-radius:0;
}
.ui-slider .ui-slider-range {
position:absolute;
background-image: linear-gradient(#604319 0%, #a57c34 15%);
height:32px;
border-radius:0;
}
/*++++++++++++++++++++++RangeInput++++++++++++++++*/
.buzzhome-slide[type=range] {
-webkit-appearance:none;
width:100%;
background:transparent;
}
.buzzhome-slide[type=range]:focus {
outline:none;
}
.buzzhome-slide[type=range]::-webkit-slider-thumb {
-webkit-appearance:none;
border: 2px solid #b5b5b5;
height: 34px;
margin-top:-2px;
width: 64px;
background: #FFFFFF;
}
.buzzhome-slide[type=range] {
-webkit-appearance:none;
width:100%;
}
.buzzhome-slide[type=range]:focus {
outline:none;
}
.buzzhome-slide[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 32px;
margin-top:-4px;
margin-left:-2px;
margin-right: 2px;
cursor: pointer;
background:transparent;
border-top: 2px solid #b5b5b5;
}
#buzzhome-SliderAmountBackground {
position:absolute;
z-index:10;
background-image: linear-gradient(#604319 0%, #a57c34 15%);
height:32px;
}
#buzzhome-SliderBackground {
width:100%;
position:absolute;
z-index:10;
background-image: linear-gradient(#cccccc 0%, #efefef 15%);
height:32px;
}
/*++++++++++++++++++++++Container++++++++++++++++*/
.buzzhome-ChosenSVG {
height:40px;
width: 40px;
visibility:visible;
position:absolute;
left:-2px;
}
#buzzhome-chosenBorder {
width:100%;
height:25px;
background-color:#a57c34;
position:absolute;
box-shadow: 0px 0px 5px #000000;
}
#buzzhome-SetTemperatureContainer {
position:absolute;
bottom:24px;
left:32px;
}
.buzzhome-chosen {
position:absolute;
z-index:1;
margin: 0 0 0 7px;
top: -45px;
width:50px;
background-color:#a57c34;
text-align:center;
color:#ffffff;
opacity:0;
transition:left 100ms ease-in-out 0s;
transition:opacity 400ms ease-in-out 0s;
-moz-transition:left 100ms ease-in-out 0s;
-webkit-transition:left 100ms ease-in-out 0s;
-o-transition:left 100ms ease-in-out 0s;
font-family:"RobotoCondensed-Light";
font-size:15pt;
}
.buzzhome-chosenValue {
color:#ffffff;
position: absolute;
right:16px;
top:-1px;
font-family:"OpenSans-CondLight";
font-size:15pt;
}
#buzzhome-BatteryIndicator {
fill: #D64545;
height: 40px;
width: 40px;
text-align: right;
position: absolute;
top: 6px;
right: 15px;
}
#buzzhome-SliderContainer {
bottom:0;
left:0;
height:32px;
width:100%;
position:absolute;
} | widgets/buzzhome/css/buzzhome-wandthermostat.css |
.ui-slider {
position:absolute;
background:transparent;
border-top: 2px solid #b5b5b5;
height:32px;
border-radius:0;
width: calc(100% - 68px);
border:0px;
}
.ui-slider .ui-slider-handle:focus{
outline: none;
border-color: inherit;
-webkit-box-shadow: none;
box-shadow: none;
}
.ui-slider .ui-slider-handle {
-webkit-appearance:none;
border: 2px solid #b5b5b5;
color: #b5b5b5;
height: 28px;
width: 64px;
top:0;
bottom:0;
margin:0;
background: #FFFFFF;
border-radius:0;
}
.ui-slider .ui-slider-range {
position:absolute;
background-image: linear-gradient(#604319 0%, #a57c34 15%);
height:32px;
border-radius:0;
}
/*++++++++++++++++++++++RangeInput++++++++++++++++*/
.buzzhome-slide[type=range] {
-webkit-appearance:none;
width:100%;
background:transparent;
}
.buzzhome-slide[type=range]:focus {
outline:none;
}
.buzzhome-slide[type=range]::-webkit-slider-thumb {
-webkit-appearance:none;
border: 2px solid #b5b5b5;
height: 34px;
margin-top:-2px;
width: 64px;
background: #FFFFFF;
}
.buzzhome-slide[type=range] {
-webkit-appearance:none;
width:100%;
}
.buzzhome-slide[type=range]:focus {
outline:none;
}
.buzzhome-slide[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 32px;
margin-top:-4px;
margin-left:-2px;
margin-right: 2px;
cursor: pointer;
background:transparent;
border-top: 2px solid #b5b5b5;
}
#buzzhome-SliderAmountBackground {
position:absolute;
z-index:10;
background-image: linear-gradient(#604319 0%, #a57c34 15%);
height:32px;
}
#buzzhome-SliderBackground {
width:100%;
position:absolute;
z-index:10;
background-image: linear-gradient(#cccccc 0%, #efefef 15%);
height:32px;
}
/*++++++++++++++++++++++Container++++++++++++++++*/
.buzzhome-ChosenSVG {
height:40px;
width: 40px;
visibility:visible;
position:absolute;
left:-2px;
}
#buzzhome-chosenBorder {
width:100%;
height:25px;
background-color:#a57c34;
position:absolute;
box-shadow: 0px 0px 5px #000000;
}
#buzzhome-SetTemperatureContainer {
position:absolute;
bottom:24px;
left:32px;
}
.buzzhome-chosen {
position:absolute;
z-index:1;
margin: 0 0 0 7px;
top: -45px;
width:50px;
background-color:#a57c34;
text-align:center;
color:#ffffff;
opacity:0;
transition:left 100ms ease-in-out 0s;
transition:opacity 400ms ease-in-out 0s;
-moz-transition:left 100ms ease-in-out 0s;
-webkit-transition:left 100ms ease-in-out 0s;
-o-transition:left 100ms ease-in-out 0s;
font-family:"RobotoCondensed-Light";
font-size:15pt;
}
.buzzhome-chosenValue {
color:#ffffff;
position: absolute;
right:16px;
top:-1px;
font-family:"OpenSans-CondLight";
font-size:15pt;
}
#buzzhome-BatteryIndicator {
fill: #D64545;
height: 40px;
width: 40px;
text-align: right;
position: absolute;
top: 6px;
right: 15px;
}
#buzzhome-SliderContainer {
bottom:0;
left:0;
height:32px;
width:100%;
position:absolute;
} | 0.350199 | 0.060502 |
html, body {
height: 90%;
margin: 0;
padding: 0;
background-color: #222930;
}
.container{
margin-top:5%;
height: 80%;
width:100%;
margin-bottom: 0px;
}
.right-container{
border-radius: 6px;
display:inline-block;
position: absolute;
width: 44%;
margin-top: 5%;
margin-left: 50%;
height:60%;
}
.left-container {
border-radius: 6px;
display: inline-block;
position:absolute;
width: 40%;
margin-top: 5%;
margin-left:5%;
height:56%;
background-image: url("play.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-color: #e6e6e6;
}
.splitor{
width: 100%;
position: fixed;
top:70px;
height: 10px;
background-color: #4EB1BA
}
.divider{
width: 67%;
height: 3px;
background-color: #4EB1BA
}
/**
Left container
*/
.scroll {
margin-top: 10px;
background-color:#2a333c;
width: 100%;
height: 92%;
overflow: scroll;
cursor:default
border-color:#e6e6e6;
border-width: 10px;
}
.Headerline{
background-color: #e6e6e6;
border-width: 1px;
border-style: solid;
border-top-left-radius: 6px;
border-top-right-radius:6px;
border-color: #e6e6e6;
border-width: 3px;
color: #344255;
height: 24px;
padding-top: 1%;
font-family: 'Montserrat', sans-serif;
}
.Headerline p{
-webkit-appearance:none ;
display: inline-block;
margin-top: 0;
}
.headTime{
margin-left: 2%;
margin-right: 3%;
}
.headText{
margin-left: 18%;
margin-right: 20%;
}
.oneline{
margin: 3px;
height:40px;
width: 99%;
background-color: white;
border-color: white;
font-family: 'Montserrat', sans-serif;
color: #344255;
font-size: 12px;
}
.oneline :hover{ background-color: #ffbf80; }
.li-selected{
background-color: #ff8000;
}
#feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; width: 100%; }
#selectable li { background:white;margin: 3px;font-size: 1.4em; height: 35px; }
.closeButton{
margin-top: 0;
margin-right: 0;
}
.startTimeNode{
display: inline-block;
width:19%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.textNode{
display: inline-block;
width:45%;
height: 100%;
word-wrap: break-word;
overflow: scroll;
border-left: 1px solid black;
text-align: center;
margin:0;
}
.endTimeNode{
display: inline-block;
width:19%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.commentNode{
display: inline-block;
width:12%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.footer{
background-color:white;
border-bottom: 1px solid grey;
border-left: 1px solid grey;
border-right: 1px solid grey;
width:100%;
height:30px;
cursor:pointer;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
.footer img{
margin-right: 5px;
background-color: white;
width:5%;
height:80%;
display: inline-block;
margin-left: 2px;
margin-top: 2px;
z-index: 999;
}
/**
Navi bar
*/
nav {
margin: 0;
padding:;
top: 0;
width: 100%;
height: 60px;
background-color: #1f262d;
position: fixed;
}
nav ul {
padding: 8px;
width: 100%
list-style-type: none;
}
nav ul li {
display: inline-block;
width: 12%;
vertical-align: top;
}
nav button {
height: 32px;
vertical-align: top;
width: 48px;
z-index: 9999;
margin-left: 8px;
margin-right: 8px;
color: #E9E9E9;
}
.nav-menu{
display: -webkit-inline-box;
margin-left: 57%;
font-size: 20px;
color: #E9E9E9;
font-family: 'Montserrat', sans-serif;
cursor:pointer;
}
.nav-menu :hover{ background-color: #4EB1BA; }
.nav-menu p{
border-radius: 5px;
margin-right:20%;
margin-top: 10px;
width: 150px;
}
.nav-title{
align:right;
margin-left: 10px;
font-size: 25px;
color: #E9E9E9;
font-family: 'Lobster', cursive;
}
}
#download{
width: 4%;
position:absolute;
bottom:5%;
right:5%;
cursor:pointer;
}
.dropdown-content {
display: none;
position: absolute;
right:0px;
background-color: #f9f9f9;
min-width: 100px;
overflow: auto;
box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.2);
z-index:999;
}
.dropdown-content a {
color: black;
padding: 8px 12px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.show {display:block;}
.settingDisabled{
pointer-events: none;
opacity: 0.4;
}
.nu-selection-box {
border: 1px dotted #BBB;
background: rgba(0, 0, 0, 0.04);
}
#saveEdit{
-webkit-appearance:none ;
position: absolute;
margin-top: 100px;
margin-left: 88%;
background-color: aliceblue;
width: 60px;
height:30px;
background-color: #4EB1BA;
color: #f9f9f9;
border-radius: 4px;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
#saveEdit :hover{
background-color:#77dbc7;
}
/*setting styles*/
.setting-lable{
align:center;
display: inline-block;
width:130px;
}
#setting{
margin-top: 2%;
margin-left:5%;
height:20%;
width: 60%;
color: #E9E9E9;
font-family: 'Montserrat', sans-serif;
}
.setting-block{
margin-top: 7px;
margin-bottom:3px;
}
.range-selectee{
display: inline-block;
width:240px;
height: 8px;
}
#red, #green, #blue {
float: left;
clear: left;
width: 300px;
margin: 15px;
}
#swatch {
width: 120px;
height: 100px;
margin-top: 18px;
margin-left: 350px;
background-image: none;
}
#red .ui-slider-range { background: #ef2929; }
#red .ui-slider-handle { border-color: #ef2929; }
#green .ui-slider-range { background: #8ae234; }
#green .ui-slider-handle { border-color: #8ae234; }
#blue .ui-slider-range { background: #729fcf; }
#blue .ui-slider-handle { border-color: #729fcf; } | css/index.css | html, body {
height: 90%;
margin: 0;
padding: 0;
background-color: #222930;
}
.container{
margin-top:5%;
height: 80%;
width:100%;
margin-bottom: 0px;
}
.right-container{
border-radius: 6px;
display:inline-block;
position: absolute;
width: 44%;
margin-top: 5%;
margin-left: 50%;
height:60%;
}
.left-container {
border-radius: 6px;
display: inline-block;
position:absolute;
width: 40%;
margin-top: 5%;
margin-left:5%;
height:56%;
background-image: url("play.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-color: #e6e6e6;
}
.splitor{
width: 100%;
position: fixed;
top:70px;
height: 10px;
background-color: #4EB1BA
}
.divider{
width: 67%;
height: 3px;
background-color: #4EB1BA
}
/**
Left container
*/
.scroll {
margin-top: 10px;
background-color:#2a333c;
width: 100%;
height: 92%;
overflow: scroll;
cursor:default
border-color:#e6e6e6;
border-width: 10px;
}
.Headerline{
background-color: #e6e6e6;
border-width: 1px;
border-style: solid;
border-top-left-radius: 6px;
border-top-right-radius:6px;
border-color: #e6e6e6;
border-width: 3px;
color: #344255;
height: 24px;
padding-top: 1%;
font-family: 'Montserrat', sans-serif;
}
.Headerline p{
-webkit-appearance:none ;
display: inline-block;
margin-top: 0;
}
.headTime{
margin-left: 2%;
margin-right: 3%;
}
.headText{
margin-left: 18%;
margin-right: 20%;
}
.oneline{
margin: 3px;
height:40px;
width: 99%;
background-color: white;
border-color: white;
font-family: 'Montserrat', sans-serif;
color: #344255;
font-size: 12px;
}
.oneline :hover{ background-color: #ffbf80; }
.li-selected{
background-color: #ff8000;
}
#feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; width: 100%; }
#selectable li { background:white;margin: 3px;font-size: 1.4em; height: 35px; }
.closeButton{
margin-top: 0;
margin-right: 0;
}
.startTimeNode{
display: inline-block;
width:19%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.textNode{
display: inline-block;
width:45%;
height: 100%;
word-wrap: break-word;
overflow: scroll;
border-left: 1px solid black;
text-align: center;
margin:0;
}
.endTimeNode{
display: inline-block;
width:19%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.commentNode{
display: inline-block;
width:12%;
height: 100%;
border-left: 1px solid black;
text-align: center;
overflow: scroll;
margin:0;
}
.footer{
background-color:white;
border-bottom: 1px solid grey;
border-left: 1px solid grey;
border-right: 1px solid grey;
width:100%;
height:30px;
cursor:pointer;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
.footer img{
margin-right: 5px;
background-color: white;
width:5%;
height:80%;
display: inline-block;
margin-left: 2px;
margin-top: 2px;
z-index: 999;
}
/**
Navi bar
*/
nav {
margin: 0;
padding:;
top: 0;
width: 100%;
height: 60px;
background-color: #1f262d;
position: fixed;
}
nav ul {
padding: 8px;
width: 100%
list-style-type: none;
}
nav ul li {
display: inline-block;
width: 12%;
vertical-align: top;
}
nav button {
height: 32px;
vertical-align: top;
width: 48px;
z-index: 9999;
margin-left: 8px;
margin-right: 8px;
color: #E9E9E9;
}
.nav-menu{
display: -webkit-inline-box;
margin-left: 57%;
font-size: 20px;
color: #E9E9E9;
font-family: 'Montserrat', sans-serif;
cursor:pointer;
}
.nav-menu :hover{ background-color: #4EB1BA; }
.nav-menu p{
border-radius: 5px;
margin-right:20%;
margin-top: 10px;
width: 150px;
}
.nav-title{
align:right;
margin-left: 10px;
font-size: 25px;
color: #E9E9E9;
font-family: 'Lobster', cursive;
}
}
#download{
width: 4%;
position:absolute;
bottom:5%;
right:5%;
cursor:pointer;
}
.dropdown-content {
display: none;
position: absolute;
right:0px;
background-color: #f9f9f9;
min-width: 100px;
overflow: auto;
box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.2);
z-index:999;
}
.dropdown-content a {
color: black;
padding: 8px 12px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.show {display:block;}
.settingDisabled{
pointer-events: none;
opacity: 0.4;
}
.nu-selection-box {
border: 1px dotted #BBB;
background: rgba(0, 0, 0, 0.04);
}
#saveEdit{
-webkit-appearance:none ;
position: absolute;
margin-top: 100px;
margin-left: 88%;
background-color: aliceblue;
width: 60px;
height:30px;
background-color: #4EB1BA;
color: #f9f9f9;
border-radius: 4px;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
#saveEdit :hover{
background-color:#77dbc7;
}
/*setting styles*/
.setting-lable{
align:center;
display: inline-block;
width:130px;
}
#setting{
margin-top: 2%;
margin-left:5%;
height:20%;
width: 60%;
color: #E9E9E9;
font-family: 'Montserrat', sans-serif;
}
.setting-block{
margin-top: 7px;
margin-bottom:3px;
}
.range-selectee{
display: inline-block;
width:240px;
height: 8px;
}
#red, #green, #blue {
float: left;
clear: left;
width: 300px;
margin: 15px;
}
#swatch {
width: 120px;
height: 100px;
margin-top: 18px;
margin-left: 350px;
background-image: none;
}
#red .ui-slider-range { background: #ef2929; }
#red .ui-slider-handle { border-color: #ef2929; }
#green .ui-slider-range { background: #8ae234; }
#green .ui-slider-handle { border-color: #8ae234; }
#blue .ui-slider-range { background: #729fcf; }
#blue .ui-slider-handle { border-color: #729fcf; } | 0.335895 | 0.066357 |
.ss-btn {
color: #fff;
font-weight: 400;
background-color: #212529;
border: 1px solid #212529;
border-radius: 4px;
transition: color 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s;
}
.ss-btn:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.ss-btn:focus {
outline: 0;
box-shadow: 0 0 0 0.2em rgba(33, 37, 41, 0.4);
}
.ss-btn.ss-success {
color: #fff;
background-color: #10b981;
border-color: #10b981;
}
.ss-btn.ss-success:focus {
box-shadow: 0 0 0 0.2em rgba(16, 185, 129, 0.4);
}
.ss-btn.ss-info {
background-color: #3b82f6;
border-color: #3b82f6;
}
.ss-btn.ss-info:focus {
box-shadow: 0 0 0 0.2em rgba(59, 130, 246, 0.4);
}
.ss-btn.ss-warning {
background-color: #f59e0b;
border-color: #f59e0b;
}
.ss-btn.ss-warning:focus {
box-shadow: 0 0 0 0.2em rgba(245, 158, 11, 0.4);
}
.ss-btn.ss-error {
background-color: #ef4444;
border-color: #ef4444;
}
.ss-btn.ss-error:focus {
box-shadow: 0 0 0 0.2em rgba(239, 68, 68, 0.4);
}
.ss-btn:disabled {
color: #fff;
pointer-events: none;
opacity: 0.65;
}
.ss-btn.ss-outline:hover {
color: #212529;
background-color: transparent;
}
.ss-btn.ss-inverted {
color: #212529;
background-color: rgba(247, 248, 249, 0.5);
border-color: #dedede;
}
.ss-btn.ss-inverted:focus {
box-shadow: none;
}
.ss-button {
border: none;
overflow: hidden;
color: inherit;
background-color: inherit;
white-space: nowrap;
}
.ss-button:hover {
color: #000!important;
background-color: #ccc!important;
}
.ss-btn,.ss-button {
display: inline-block;
vertical-align: middle;
text-align: center;
text-decoration: none;
cursor: pointer;
padding: 8px 16px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.ss-disabled,.ss-button:disabled {
cursor: not-allowed;
opacity: 0.3;
}
.ss-disabled *,:disabled * {
pointer-events: none;
}
.ss-btn-group {
position: relative;
display: inline-flex;
vertical-align: middle;
flex-wrap: wrap;
}
.ss-btn-group .ss-btn:first-child:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.ss-btn-group .ss-btn:not(:first-child):not(:last-child) {
border-radius: 0;
margin-left: -.05rem;
}
.ss-btn-group .ss-btn:last-child:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
margin-left: -.05rem;
}
.ss-btn-group .ss-btn:focus,.ss-btn-group .ss-btn:hover,.ss-btn-group .ss-btn:active {
z-index: 1;
} | css/button.css |
.ss-btn {
color: #fff;
font-weight: 400;
background-color: #212529;
border: 1px solid #212529;
border-radius: 4px;
transition: color 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s;
}
.ss-btn:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.ss-btn:focus {
outline: 0;
box-shadow: 0 0 0 0.2em rgba(33, 37, 41, 0.4);
}
.ss-btn.ss-success {
color: #fff;
background-color: #10b981;
border-color: #10b981;
}
.ss-btn.ss-success:focus {
box-shadow: 0 0 0 0.2em rgba(16, 185, 129, 0.4);
}
.ss-btn.ss-info {
background-color: #3b82f6;
border-color: #3b82f6;
}
.ss-btn.ss-info:focus {
box-shadow: 0 0 0 0.2em rgba(59, 130, 246, 0.4);
}
.ss-btn.ss-warning {
background-color: #f59e0b;
border-color: #f59e0b;
}
.ss-btn.ss-warning:focus {
box-shadow: 0 0 0 0.2em rgba(245, 158, 11, 0.4);
}
.ss-btn.ss-error {
background-color: #ef4444;
border-color: #ef4444;
}
.ss-btn.ss-error:focus {
box-shadow: 0 0 0 0.2em rgba(239, 68, 68, 0.4);
}
.ss-btn:disabled {
color: #fff;
pointer-events: none;
opacity: 0.65;
}
.ss-btn.ss-outline:hover {
color: #212529;
background-color: transparent;
}
.ss-btn.ss-inverted {
color: #212529;
background-color: rgba(247, 248, 249, 0.5);
border-color: #dedede;
}
.ss-btn.ss-inverted:focus {
box-shadow: none;
}
.ss-button {
border: none;
overflow: hidden;
color: inherit;
background-color: inherit;
white-space: nowrap;
}
.ss-button:hover {
color: #000!important;
background-color: #ccc!important;
}
.ss-btn,.ss-button {
display: inline-block;
vertical-align: middle;
text-align: center;
text-decoration: none;
cursor: pointer;
padding: 8px 16px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.ss-disabled,.ss-button:disabled {
cursor: not-allowed;
opacity: 0.3;
}
.ss-disabled *,:disabled * {
pointer-events: none;
}
.ss-btn-group {
position: relative;
display: inline-flex;
vertical-align: middle;
flex-wrap: wrap;
}
.ss-btn-group .ss-btn:first-child:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.ss-btn-group .ss-btn:not(:first-child):not(:last-child) {
border-radius: 0;
margin-left: -.05rem;
}
.ss-btn-group .ss-btn:last-child:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
margin-left: -.05rem;
}
.ss-btn-group .ss-btn:focus,.ss-btn-group .ss-btn:hover,.ss-btn-group .ss-btn:active {
z-index: 1;
} | 0.406744 | 0.121139 |
canvas{
left: 0;
top: 0;
}
body{
margin: 0 auto;
font-family: Georgia, Palatino, serif;
color: #444444;
line-height: 1;
max-width: 960px;
padding: 30px;
}
h1, h2, h3, h4 {
color: #111111;
font-weight: 400;
}
h2, h3, h4, h5, p {
margin-bottom: 24px;
padding: 0;
}
h1 {
display: table;
margin-bottom: 12px;
font-size: 48px;
padding: 0;
}
h2 {
font-size: 36px;
margin: 24px 0 6px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 21px;
}
h5 {
font-size: 18px;
}
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
}
ul, ol {
padding: 0;
margin-left: 2px;
margin-right: 0;
margin-top: 0;
margin-bottom: 0;
}
li {
line-height: 24px;
}
li ul, li ul {
margin-left: 24px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
max-width: 540px;
}
pre {
padding: 0px 24px;
max-width: 800px;
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
margin: 1em 2em;
max-width: 476px;
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
table {
border-collapse: collapse;
margin: 1em 1em;
border: 1px solid #CCC;
}
table thead {
background-color: #EEE;
}
table thead td {
color: #666;
}
table td {
padding: 0.5em 1em;
border: 1px solid #CCC;
}
.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.social-media {
text-align: left;
}
.social-media li {
display:inline-block;
list-style-type:none;
-webkit-user-select:none;
-moz-user-select:none;
position:relative;
z-index:1;
}
.social-media li a {
border-bottom: none;
}
.social-media li img {
width:32px;
height:32px;
margin-right: 13px;
}
.help-tip{
position: absolute;
top: 18px;
right: 18px;
text-align: center;
background-color: #000;
border-radius: 50%;
width: 24px;
height: 24px;
line-height: 26px;
cursor: default;
z-index:2;
}
.help-tip:before{
content:'?';
color:#fff;
-webkit-animation: fadeOut 0.3s ease-in-out;
animation: fadeOut 0.3s ease-in-out;
}
.help-tip:hover p{
display:block;
transform-origin: 100% 0%;
-webkit-animation: fadeIn 0.3s ease-in-out;
animation: fadeIn 0.3s ease-in-out;
}
.help-tip p{ /* The tooltip */
display: none;
text-align: left;
background-color: #000;
padding: 20px;
width: 300px;
position: absolute;
border-radius: 3px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
right: -4px;
color: #FFF;
font-size: 13px;
line-height: 1.4;
z-index:2;
}
.help-tip p:before{ /* The pointer of the tooltip */
position: absolute;
content: '';
width:0;
height: 0;
border:6px solid transparent;
border-bottom-color:#1E2021;
right:10px;
top:-12px;
}
.help-tip p:after{ /* Prevents the tooltip from being hidden */
width:100%;
height:40px;
content:'';
position: absolute;
top:-40px;
left:0;
}
/* CSS animation */
@-webkit-keyframes fadeIn {
0% {
opacity:0;
transform: scale(0.6);
}
100% {
opacity:100%;
transform: scale(1);
}
}
@keyframes fadeIn {
0% { opacity:0; }
100% { opacity:100%; }
} | css/style.css | canvas{
left: 0;
top: 0;
}
body{
margin: 0 auto;
font-family: Georgia, Palatino, serif;
color: #444444;
line-height: 1;
max-width: 960px;
padding: 30px;
}
h1, h2, h3, h4 {
color: #111111;
font-weight: 400;
}
h2, h3, h4, h5, p {
margin-bottom: 24px;
padding: 0;
}
h1 {
display: table;
margin-bottom: 12px;
font-size: 48px;
padding: 0;
}
h2 {
font-size: 36px;
margin: 24px 0 6px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 21px;
}
h5 {
font-size: 18px;
}
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
}
ul, ol {
padding: 0;
margin-left: 2px;
margin-right: 0;
margin-top: 0;
margin-bottom: 0;
}
li {
line-height: 24px;
}
li ul, li ul {
margin-left: 24px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
max-width: 540px;
}
pre {
padding: 0px 24px;
max-width: 800px;
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
margin: 1em 2em;
max-width: 476px;
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
table {
border-collapse: collapse;
margin: 1em 1em;
border: 1px solid #CCC;
}
table thead {
background-color: #EEE;
}
table thead td {
color: #666;
}
table td {
padding: 0.5em 1em;
border: 1px solid #CCC;
}
.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.social-media {
text-align: left;
}
.social-media li {
display:inline-block;
list-style-type:none;
-webkit-user-select:none;
-moz-user-select:none;
position:relative;
z-index:1;
}
.social-media li a {
border-bottom: none;
}
.social-media li img {
width:32px;
height:32px;
margin-right: 13px;
}
.help-tip{
position: absolute;
top: 18px;
right: 18px;
text-align: center;
background-color: #000;
border-radius: 50%;
width: 24px;
height: 24px;
line-height: 26px;
cursor: default;
z-index:2;
}
.help-tip:before{
content:'?';
color:#fff;
-webkit-animation: fadeOut 0.3s ease-in-out;
animation: fadeOut 0.3s ease-in-out;
}
.help-tip:hover p{
display:block;
transform-origin: 100% 0%;
-webkit-animation: fadeIn 0.3s ease-in-out;
animation: fadeIn 0.3s ease-in-out;
}
.help-tip p{ /* The tooltip */
display: none;
text-align: left;
background-color: #000;
padding: 20px;
width: 300px;
position: absolute;
border-radius: 3px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
right: -4px;
color: #FFF;
font-size: 13px;
line-height: 1.4;
z-index:2;
}
.help-tip p:before{ /* The pointer of the tooltip */
position: absolute;
content: '';
width:0;
height: 0;
border:6px solid transparent;
border-bottom-color:#1E2021;
right:10px;
top:-12px;
}
.help-tip p:after{ /* Prevents the tooltip from being hidden */
width:100%;
height:40px;
content:'';
position: absolute;
top:-40px;
left:0;
}
/* CSS animation */
@-webkit-keyframes fadeIn {
0% {
opacity:0;
transform: scale(0.6);
}
100% {
opacity:100%;
transform: scale(1);
}
}
@keyframes fadeIn {
0% { opacity:0; }
100% { opacity:100%; }
} | 0.445047 | 0.090093 |
html,
body {
width: 100%;
height: 100%;
}
@font-face {
font-family: 'Infinity';
src: url('../fonts/Infinity.ttf');
}
body {
font-family: Arial,sans-serif;
}
.text-vertical-center {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.text-vertical-center h1 {
margin: 0;
padding: 0;
font-size: 4.5em;
font-weight: 700;
}
/* Custom Button Styles */
.btn-dark {
border-radius: 0;
color: #fff;
background-color: rgba(0,0,0,0.4);
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
color: #fff;
background-color: rgba(0,0,0,0.7);
}
.btn-light {
border-radius: 0;
color: #fff;
background-color: transparent;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
color: #78B8F0;
background-color: rgba(255,255,255,1);
}
/* Custom Horizontal Rule */
hr.small {
max-width: 100px;
}
/* Side Menu */
#sidebar-wrapper {
z-index: 1000;
position: fixed;
right: 0;
width: 250px;
height: 100%;
margin-right: -250px;
overflow-y: auto;
background: rgba(50,50,50,.7);
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
font-weight: bold;
color: #78B8F0;
}
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 55px;
line-height: 55px;
font-family: "Infinity";
font-size: 2em;
}
.sidebar-nav > .sidebar-brand a {
color: #fff;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
#menu-toggle {
z-index: 1;
position: fixed;
top: 0;
right: 0;
}
#menu-close {
background-color: transparent;
}
#sidebar-wrapper.active {
right: 250px;
width: 250px;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
.toggle {
margin: 5px 5px 0 0;
}
.hide-menu-btn{
color: rgba(0,0,0,1)!important;
}
/* Header */
.header {
display: table;
position: relative;
width: 100%;
height: 100%;
background: url(../img/space.jpg) no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
color: rgba(255,255,255,.7);
}
.header>div>h1 {
font-size: 4em;
font-family: "Infinity";
}
.header>div>a {
background: transparent;
border-radius: 4px;
-webkit-transition: 2s; /* Safari 3.1 to 6.0 */
transition: 2s;
color: rgba(255,255,255,.7);
}
.header>div>img {
width: 250px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
color: rgba(255,255,255,.4);
} | css/home.css | html,
body {
width: 100%;
height: 100%;
}
@font-face {
font-family: 'Infinity';
src: url('../fonts/Infinity.ttf');
}
body {
font-family: Arial,sans-serif;
}
.text-vertical-center {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.text-vertical-center h1 {
margin: 0;
padding: 0;
font-size: 4.5em;
font-weight: 700;
}
/* Custom Button Styles */
.btn-dark {
border-radius: 0;
color: #fff;
background-color: rgba(0,0,0,0.4);
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
color: #fff;
background-color: rgba(0,0,0,0.7);
}
.btn-light {
border-radius: 0;
color: #fff;
background-color: transparent;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
color: #78B8F0;
background-color: rgba(255,255,255,1);
}
/* Custom Horizontal Rule */
hr.small {
max-width: 100px;
}
/* Side Menu */
#sidebar-wrapper {
z-index: 1000;
position: fixed;
right: 0;
width: 250px;
height: 100%;
margin-right: -250px;
overflow-y: auto;
background: rgba(50,50,50,.7);
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
font-weight: bold;
color: #78B8F0;
}
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 55px;
line-height: 55px;
font-family: "Infinity";
font-size: 2em;
}
.sidebar-nav > .sidebar-brand a {
color: #fff;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
#menu-toggle {
z-index: 1;
position: fixed;
top: 0;
right: 0;
}
#menu-close {
background-color: transparent;
}
#sidebar-wrapper.active {
right: 250px;
width: 250px;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
.toggle {
margin: 5px 5px 0 0;
}
.hide-menu-btn{
color: rgba(0,0,0,1)!important;
}
/* Header */
.header {
display: table;
position: relative;
width: 100%;
height: 100%;
background: url(../img/space.jpg) no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
color: rgba(255,255,255,.7);
}
.header>div>h1 {
font-size: 4em;
font-family: "Infinity";
}
.header>div>a {
background: transparent;
border-radius: 4px;
-webkit-transition: 2s; /* Safari 3.1 to 6.0 */
transition: 2s;
color: rgba(255,255,255,.7);
}
.header>div>img {
width: 250px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
color: rgba(255,255,255,.4);
} | 0.418103 | 0.065068 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@400;700&display=swap');
*{
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body{
background-size: cover;
background-position: center;
background-repeat: no-repeat;
box-sizing: border-box;
background-color: white;
color: black;
position: relative;
height: 100vh;
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px 15px calc(100px + 2%);
background-color: black;
}
.nav__links li, .nav__links a, button{
font-weight: 500;
font-size: 16px;
color: white;
text-decoration: none;
}
footer{
background-color: rgba(0, 0, 0, 0.8);
color: white;
text-align: center;
padding: 0.5%;
width: 100%;
left: 0;
bottom: 0;
position: fixed;
}
.logo{
cursor: pointer;
max-height: 100px;
max-width: 150px;
}
.nav__links{
list-style: none;
}
.nav__links li{
display: inline-block;
padding: 0px 20px;
}
.nav__links li a{
transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
color: #0AC8D8;
}
button{
padding: 9px 25px;
background-color: rgb(0, 162, 202);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
.cta{
background-color: #32393E;
}
button:hover{
background-color: rgba(0,136,169,0.8);
}
.sidebar{
position: fixed;
width: 50px;
height: 100%;
background-color: #323950;
top: 0;
left: 0;
padding: 6px 14px 200px 14px;
transition: all 0.5s ease;
overflow-y: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.sidebar::-webkit-scrollbar {
display: none;
}
.sidebar.active{
width: 250px;
}
.sidebar .logo_content .logo{
color: white;
display: flex;
height: 50px;
width: 100%;
align-items: center;
opacity: 0;
pointer-events: none;
transition: 0.2s ease;
}
.sidebar.active .logo_content .logo{
opacity: 1;
pointer-events: none;
transition: 0.2s ease;
}
.logo_content .logo img{
font-size: 28px;
margin-right: 5px;
max-width: 150px;
max-height: 60px;
}
.logo_content .logo .logo_name{
font-size: 20px;
font-weight: 400;
}
.sidebar #menu{
position: absolute;
color: white;
left: 50%;
top: 6px;
font-size: 30px;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
transform: translateX(-50%);
cursor: pointer;
}
.sidebar #menu:hover{
transition: 0.5s ease;
background: black;
}
.sidebar.active #menu{
left: 90%;
}
.sidebar ul{
margin-top: 20px;
}
.sidebar ul li{
list-style: none;
height: 50px;
width: 100%;
position: relative;
line-height: 50px;
transition: 0.3s ease;
}
.sidebar ul li a{
color: white;
display: flex;
align-items: center;
text-decoration: none;
transition: all 0.4s ease;
border-radius: 12px;
white-space: nowrap;
text-align: center;
}
.sidebar ul li a:hover{
background: white;
color: black;
}
.sidebar ul li a img{
min-height: 40px;
min-width: 40px;
max-width: 40px;
max-height: 40px;
border-radius: 12px;
line-height: 50px;
text-align: center;
}
.sidebar .links_name{
opacity: 0;
pointer-events: none;
transition: 0.2s ease;
}
.sidebar.active .links_name{
opacity: 1;
pointer-events: auto;
transition: 0.2s ease;
}
.sidebar ul li .tooltip{
position: absolute;
height: 35px;
width: 122px;
background: white;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
left: 128px;
top: 0;
transform: translate(-50% , -50%);
border-radius: 6px;
line-height: 35px;
text-align: center;
color: black;
transition: 0s;
opacity: 0;
pointer-events: none;
display: block;
}
.sidebar.active ul li .tooltip{
display: none;
}
.sidebar ul li:hover .tooltip{
top: 50%;
transition: all 0.5s ease;
opacity: 1;
}
.home_section{
transition: 0.5s ease;
margin-bottom: 30px;
}
.home_section.active{
transition: 0.5s ease;
margin-left: 250px;
}
input {
outline: none;
}
input:focus {
border: 2px solid rgba(0,136,169,1)
}
.sidebar-icon-wrapper {
display:flex;
align-items: center;
}
.sidebar .icon {
font-size: 12px;
text-align: center;
min-width: 45px;
height: 45px;
transition: 0.3s ease;
}
.sidebar .icon:hover{
margin-left: 5%;
transition: 0.3s ease;
}
.sidebar.active li:hover{
margin-left: 5%;
transition: 0.3s ease;
}
.last {
margin-bottom: 50px;
}
.message {
text-align: center
} | static/main/css/main.css | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@400;700&display=swap');
*{
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body{
background-size: cover;
background-position: center;
background-repeat: no-repeat;
box-sizing: border-box;
background-color: white;
color: black;
position: relative;
height: 100vh;
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px 15px calc(100px + 2%);
background-color: black;
}
.nav__links li, .nav__links a, button{
font-weight: 500;
font-size: 16px;
color: white;
text-decoration: none;
}
footer{
background-color: rgba(0, 0, 0, 0.8);
color: white;
text-align: center;
padding: 0.5%;
width: 100%;
left: 0;
bottom: 0;
position: fixed;
}
.logo{
cursor: pointer;
max-height: 100px;
max-width: 150px;
}
.nav__links{
list-style: none;
}
.nav__links li{
display: inline-block;
padding: 0px 20px;
}
.nav__links li a{
transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
color: #0AC8D8;
}
button{
padding: 9px 25px;
background-color: rgb(0, 162, 202);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
.cta{
background-color: #32393E;
}
button:hover{
background-color: rgba(0,136,169,0.8);
}
.sidebar{
position: fixed;
width: 50px;
height: 100%;
background-color: #323950;
top: 0;
left: 0;
padding: 6px 14px 200px 14px;
transition: all 0.5s ease;
overflow-y: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.sidebar::-webkit-scrollbar {
display: none;
}
.sidebar.active{
width: 250px;
}
.sidebar .logo_content .logo{
color: white;
display: flex;
height: 50px;
width: 100%;
align-items: center;
opacity: 0;
pointer-events: none;
transition: 0.2s ease;
}
.sidebar.active .logo_content .logo{
opacity: 1;
pointer-events: none;
transition: 0.2s ease;
}
.logo_content .logo img{
font-size: 28px;
margin-right: 5px;
max-width: 150px;
max-height: 60px;
}
.logo_content .logo .logo_name{
font-size: 20px;
font-weight: 400;
}
.sidebar #menu{
position: absolute;
color: white;
left: 50%;
top: 6px;
font-size: 30px;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
transform: translateX(-50%);
cursor: pointer;
}
.sidebar #menu:hover{
transition: 0.5s ease;
background: black;
}
.sidebar.active #menu{
left: 90%;
}
.sidebar ul{
margin-top: 20px;
}
.sidebar ul li{
list-style: none;
height: 50px;
width: 100%;
position: relative;
line-height: 50px;
transition: 0.3s ease;
}
.sidebar ul li a{
color: white;
display: flex;
align-items: center;
text-decoration: none;
transition: all 0.4s ease;
border-radius: 12px;
white-space: nowrap;
text-align: center;
}
.sidebar ul li a:hover{
background: white;
color: black;
}
.sidebar ul li a img{
min-height: 40px;
min-width: 40px;
max-width: 40px;
max-height: 40px;
border-radius: 12px;
line-height: 50px;
text-align: center;
}
.sidebar .links_name{
opacity: 0;
pointer-events: none;
transition: 0.2s ease;
}
.sidebar.active .links_name{
opacity: 1;
pointer-events: auto;
transition: 0.2s ease;
}
.sidebar ul li .tooltip{
position: absolute;
height: 35px;
width: 122px;
background: white;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
left: 128px;
top: 0;
transform: translate(-50% , -50%);
border-radius: 6px;
line-height: 35px;
text-align: center;
color: black;
transition: 0s;
opacity: 0;
pointer-events: none;
display: block;
}
.sidebar.active ul li .tooltip{
display: none;
}
.sidebar ul li:hover .tooltip{
top: 50%;
transition: all 0.5s ease;
opacity: 1;
}
.home_section{
transition: 0.5s ease;
margin-bottom: 30px;
}
.home_section.active{
transition: 0.5s ease;
margin-left: 250px;
}
input {
outline: none;
}
input:focus {
border: 2px solid rgba(0,136,169,1)
}
.sidebar-icon-wrapper {
display:flex;
align-items: center;
}
.sidebar .icon {
font-size: 12px;
text-align: center;
min-width: 45px;
height: 45px;
transition: 0.3s ease;
}
.sidebar .icon:hover{
margin-left: 5%;
transition: 0.3s ease;
}
.sidebar.active li:hover{
margin-left: 5%;
transition: 0.3s ease;
}
.last {
margin-bottom: 50px;
}
.message {
text-align: center
} | 0.481698 | 0.077448 |
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
font-family: 'Roboto', sans-serif;
}
* {
font-family: 'Roboto', sans-serif;
}
*a {
text-decoration: none;
}
.row {
margin: 0;
padding: 0;
}
body {
width: 100%;
overflow-x: hidden;
background: white;
font-family: 'Roboto', sans-serif;
color: #676767;
position: relative;
letter-spacing: 0px;
font-size: 16px;
line-height: 32px;
font-weight: 400;
height: auto;
}
/* Trang HOME */
/* Menu */
#top .left-page {
padding: 0;
border-right: 1px solid rgba(0, 0, 0, 0.06);
position: fixed;
top: 0;
left: 0;
overflow: hidden;
height: 100%;
margin: 0;
}
#top .right-page {
position: absolute;
right: 0;
margin: 0;
}
#top #logo {
width: auto;
max-width: none;
display: block;
line-height: 22px;
font-size: 22px;
letter-spacing: -1px;
color: #444;
font-family: 'Open Sans';
font-weight: 600;
padding: 30px 20px 30px 20px;
}
#top #logo .retina-logo,
#top .span_3 #logo .mobile-only-logo {
display: none
}
#top #logo .starting-logo {
position: absolute;
top: 0;
opacity: 0;
left: 0
}
#top #logo:hover,
#top #logo:focus {
color: #000
}
#top #logo img {
text-indent: -9999px;
max-width: none;
width: auto;
margin-bottom: 0;
display: block;
transition: opacity 0.4s ease
}
#top {
position: relative;
z-index: 9998;
width: 100%
}
#top .container .row {
padding-bottom: 0
}
#top .col-md-2 {
width: 275px;
}
.menu {
position: relative;
max-height: 450px;
margin-left: 15px;
display: block;
}
.menu ul li ul {
align-items: baseline;
margin-left: 40px;
}
.menu ul li {
text-transform: none;
font-size: 14px;
line-height: 30px;
font-weight: 700;
margin-bottom: 10px;
}
.menu ul li a {
color: black;
padding: 1px 8px 1px 8px;
}
.menu ul li a:hover {
background: blue;
color: white;
width: fit-content;
position: relative;
}
div.scrollmenu {
overflow: auto;
white-space: nowrap;
}
div.scrollmenu ul li {
display: inline-block;
}
.icon-menu {
padding: 20px;
margin-top: 20px;
font-size: 20px;
}
.icon-menu i {
margin-right: 20px;
}
.icon-menu i:hover {
color: #1239ff !important;
background-color: black;
padding: 6px;
border-radius: 4px;
}
/* Content */
.content-head {
position: relative;
}
.content-head .center {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
width: 90%;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
font-weight: 500;
vertical-align: middle;
}
.content-head img {
width: 100%;
height: auto;
}
.content-head .center h1 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.content-head .center p {
display: inline-block;
vertical-align: middle;
text-align: center;
line-height: 35px;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
font-weight: 500;
}
/* Scroll */
.content-head a {
position: absolute;
bottom: 20px;
left: 49%;
z-index: 2;
display: inline-block;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
color: #fff;
font: normal 400 20px/1 'Josefin Sans', sans-serif;
letter-spacing: .1em;
text-decoration: none !important;
transition: opacity .3s;
}
.content-head a:hover {
opacity: .5;
}
html {
scroll-behavior: smooth;
}
#section01,
#section02 {
position: relative;
width: 100%;
height: 100%;
}
#section01::after,
#section02::after {
position: absolute;
bottom: 0;
left: 0;
content: '';
width: 100%;
height: 100%;
}
#section01 a {
padding-top: 60px;
}
#section01 a span {
position: absolute;
top: 0;
width: 30px;
height: 46px;
margin-left: -15px;
border: 2px solid #fff;
border-radius: 50px;
box-sizing: border-box;
}
#section01 a span::before {
position: absolute;
top: 10px;
left: 50%;
content: '';
width: 6px;
height: 6px;
margin-left: -3px;
background-color: #fff;
border-radius: 100%;
-webkit-animation: sdb10 2s infinite;
animation: sdb10 2s infinite;
box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
0% {
-webkit-transform: translate(0, 0);
opacity: 0;
}
40% {
opacity: 1;
}
80% {
-webkit-transform: translate(0, 20px);
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes sdb10 {
0% {
transform: translate(0, 0);
opacity: 0;
}
40% {
opacity: 1;
}
80% {
transform: translate(0, 20px);
opacity: 0;
}
100% {
opacity: 0;
}
}
.content-body .title h2 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
text-align: center;
padding: 40px 0px;
}
/* .content-body{
} */
.content-body .content {
background-image: url("../image/homepage_team_001.jpg");
background-size: cover;
background-origin: padding-box;
color: white;
background-blend-mode: darken;
margin-left: 0;
display: flex;
align-items: center;
background-position: left top;
background-repeat: no-repeat;
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/opacity/see-through */
}
.content-body .content .text {
border: 3px solid blue;
width: fit-content;
padding: 10px 20px;
margin-top: 50px;
}
.content-body .content .text:hover {
background-color: blue;
}
.content-body .content .info {
width: 90%;
}
.content-body .content .info h3 {
letter-spacing: 0px;
font-size: 26px;
line-height: 30px;
font-weight: 500;
}
.content-body .content .info h5 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.content-body .content .info p {
line-height: 30px;
padding-bottom: 30px;
}
.content-body .content {
padding: 40px;
margin: 0;
}
.content-body .content h2 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
}
.content-body .content h5 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.content-last {
height: auto;
width: 100%;
color: black;
background-color: white;
opacity: 0.8;
padding: 0;
}
.content-last .carousel-item {
height: 400px;
text-align: center;
}
.content-last .carousel-item .text {
padding: 60px 140px 0px 140px;
text-transform: none;
font-size: 24px;
line-height: 40px;
font-weight: 300;
}
.content-last .carousel-item .title {
font-size: 16px;
line-height: 16px;
font-weight: 400;
font-style: italic;
}
.text-carousel h5 {
text-align: center;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 14px;
line-height: 26px;
font-weight: 400;
margin-top: 100px;
color: black;
}
.carousel-caption h5 {
font-family: 'Roboto', sans-serif;
text-transform: none;
font-size: 20px;
line-height: 40px;
font-weight: 300;
color: black;
}
.carousel-caption p {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 16px;
font-weight: 400;
font-style: italic;
color: gray;
}
hr.rounded {
border-top: 2px solid #299999 !important;
width: 80px;
height: 2px;
margin-bottom: 20px;
transform: scale(1, 1);
visibility: visible;
margin-left: 46%;
}
.footer {
width: 100%;
}
.footer img {
margin-bottom: 20px;
}
.footer .text1 {
margin-left: 40px;
}
.footer .text2 h6 {
color: black;
margin-left: 15px;
font-weight: bold;
font-family: 'Roboto', sans-serif;
}
.footer .col-md-3 a {
text-decoration: none;
color: #9b9b9b !important;
}
.footer {
color: #9b9b9b !important;
line-height: 30px;
}
/* Trang ABOUT */
/* Head */
.ad-title {
width: 100%;
}
.ab-title h1 {
display: inline-block;
top: 0;
text-align: center;
width: 100%;
padding-left: 0;
font-family: Roboto;
text-transform: capitalize;
color: #444;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
padding: 30px 0px 10px 0px;
}
.ab-content {
background-image: url("../image/about_header_001.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 50%;
width: -webkit-fill-available;
}
.ab-content .content {
height: 500px;
text-align: -webkit-center;
}
.ab-content .content h1 {
font-family: 'Roboto', sans-serif;
text-align: center;
color: white;
letter-spacing: 0px;
font-size: 70px;
line-height: 70px;
font-weight: 100;
width: 60%;
margin: 0;
position: relative;
top: 30%;
}
.ab-content1 {
width: 100%;
margin: 100px 0 20px 0;
}
.ab-content1 row {
margin: 0;
}
.ab-content1 .text {
width: 90%;
padding: 20px;
}
.ab-content1 .text h6 {
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.ab-content1 .text h2 {
font-family: 'Roboto', sans-serif;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
}
.ab-content1 .text p {
font-family: 'Roboto', sans-serif;
color: #676767;
line-height: 32px;
}
.ab-content1 .img1 {
position: absolute;
left: 32%;
top: 10%;
}
.ab-content1 .img2 {
position: absolute;
top: 42%;
left: 20%;
}
.ab-content1 .img3 {
position: absolute;
left: 50%;
top: 50%;
}
.ab-content1 .img4 {
position: absolute;
left: 25%;
top: 10%;
}
.ab-content1 .img5 {
position: absolute;
top: 42%;
left: 10%;
}
.ab-content1 .img6 {
position: absolute;
left: 40%;
top: 50%;
}
.ab-content1 .box2 {
margin-top: 140px;
margin-bottom: 100px;
}
.ab-content1 .box2 .text {
text-align: right;
}
.ab-content2 {
background-color: #f9f7f5 !important;
width: 100%;
margin: 0;
}
.ab-content2 .content1 .wrap {
min-height: 450px;
}
.ab-content3 {
width: 100%;
margin: 0;
}
.ab-content2 .title,
.ab-content3 .title {
text-align: center;
margin-top: 150px;
}
.ab-content2 .title h5,
.ab-content3 .title h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
color: #999999;
margin: 0;
}
.ab-content2 .title h2,
.ab-content3 .title h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 10px;
}
.ab-content2 .content1 {
margin: 90px 0 140px 0;
}
.ab-content2 .content1 .row {
margin-bottom: 40px;
}
/* Flip box */
.flip-box {
background-color: transparent;
width: 90%;
height: 450px;
max-height: auto;
perspective: 1000px;
margin-left: 5%;
}
.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
transform: rotateY(180deg);
}
.flip-box-front {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
justify-content: center;
align-items: center;
}
.flip-box-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.flip-box-front span,
.flip-box-back span {
width: 70%;
line-height: 30px;
}
.flip-box-front {
background-color: rgb(0, 0, 0);
color: white;
}
.flip-box-front i {
font-size: 20px !important;
line-height: 20px !important;
color: #299999;
margin: 23px 10px 0 0;
}
.flip-box-back {
background-color: rgb(43, 157, 206);
color: white;
transform: rotateY(180deg);
}
/* Content3 About */
.ab-content3 .content .row {
margin: 0;
padding: 0;
}
.ab-content3 .content {
padding: 3%;
}
.ab-content3 .content a {
text-decoration: none;
}
.ab-content3 .title {
margin-bottom: 100px;
}
.ab-content3 {
margin-bottom: 50px;
}
/* Slider About */
.text-carousel .title h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
color: #999999;
margin: 0;
}
.text-carousel .title h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 10px;
text-align: center;
}
/* Member Brands */
.ab-content4 {
width: 100%;
margin: 0;
background: linear-gradient(to bottom, #eaf1fd 0%, rgba(255, 255, 255, 0.001) 75%);
opacity: 1;
background: #eaf1fd;
background: linear-gradient(to bottom, #eaf1fd 0%, rgba(255, 255, 255, 0.001) 100%);
opacity: 1;
margin-bottom: 100px;
}
.ab-content4 .title {
margin-top: 100px;
}
.ab-content4 .title h2 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
text-align: center;
}
.ab-content4 .row {
width: 100%;
padding: 0;
margin: 0;
margin-top: 100px;
color: white;
}
.ab-content4 i {
font-size: 30px;
color: orange;
background-color: aliceblue;
border: 5px solid transparent;
border-radius: 3px;
}
.ab-content4 .bg1 {
width: 90%;
background-image: url("../image/about-007.jpeg");
background-repeat: no-repeat;
min-height: 400px;
margin: 0;
padding: 10%;
border: 1px solid transparent;
border-radius: 8px;
margin-left: 15%;
}
.ab-content4 .bg1:hover {
transition: transform 1s ease, opacity 0.5s ease 0.25s;
}
.ab-content4 .bg2 {
width: 90%;
background-image: url("../image/about-008.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
margin: 0;
padding: 10%;
border: 1px solid transparent;
border-radius: 8px;
margin-left: 10%;
}
.ab-content4 .bg2 i {
margin-top: 160px;
}
.ab-content4 .bg2 h3 {
margin-bottom: 0px;
}
.ab-content4 .bg3 {
width: 90%;
background-image: url("../image/about-009.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
margin: 0;
padding: 10%;
margin-left: 5%;
border: 1px solid transparent;
border-radius: 8px;
}
.ab-content4 .bg4 {
width: 90%;
background-image: url("../image/about-010.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
padding: 10%;
margin: 0;
border: 1px solid transparent;
border-radius: 8px;
}
/* Trang Synthesis */
.mainsyn {
margin-top: 5px;
}
.mainsyn .wrap img {
margin: 5px 0;
}
.footsyn {
background-color: #0a0a0a;
opacity: 0.8;
color: white;
text-align: center;
margin-bottom: 100px;
margin-top: 10px;
}
.footsyn .text {
padding: 20%;
}
.footsyn h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.footsyn h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 0;
}
.footsyn .text p {
border: 3px solid blue;
width: fit-content;
padding: 10px 20px;
margin-top: 50px;
margin-left: 40%;
}
.footsyn .text p:hover {
background-color: blue;
}
/* Trang Nectar Into the trees */
.tree-section1 {
background-color: rgb(48, 48, 48);
height: 500px;
opacity: 1;
position: relative;
visibility: visible;
display: block;
width: 100%;
color: white;
text-align: center;
}
.tree-section1 .text h1 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
margin: 0;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section1 span {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 30px;
font-weight: 500;
margin: 0;
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section2 {
text-align: center;
width: 100%;
background-color: rgb(248, 248, 248);
}
.tree-section2 h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
margin: 100px 0 0 0;
}
.tree-section2 h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin: 10px 0 30px 0;
}
.tree-section2 p {
width: 45%;
line-height: 30px;
display: inline-block;
vertical-align: middle;
color: #676767;
margin-bottom: 100px;
}
.tree-section3 {
width: 100%;
text-align: center;
position: relative;
display: -webkit-inline-box;
}
.tree-section3 .text1 {
background-color: #3f59ff;
width: 100%;
height: 588px;
}
.tree-section3 .text1 i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(255, 255, 255);
font-size: 15em;
}
.tree-section3 .text2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section3 .text2 h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
color: #ffffff;
background-color: #299999 !important;
padding: 10px 20px;
}
.tree-section4 {
text-align: center;
background-color: rgb(48, 48, 48);
height: 600px;
position: relative;
width: 100%;
}
.tree-section4 .iconplay i {
color: #ffffff;
font-size: 6em;
}
.tree-section4 .iconplay i:hover {
opacity: 0.5;
}
.tree-section4 .iconplay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section5 {
width: 100%;
height: 600px;
padding: 0;
}
.tree-section5 .content-last {
width: 90%;
margin-left: 5%;
position: absolute;
margin-top: -70px;
background-color: #ffffff;
opacity: 1;
}
.tree-section5 .content-last .carousel-item .text {
padding: 40px 270px 0px 270px;
text-transform: none;
font-size: 24px;
line-height: 40px;
font-weight: 300;
}
.tree-section6 {
width: 100%;
height: 500px;
padding: 0;
background-color:#3f59ff;
margin-bottom: 80px;
position: relative;
}
/* .tree-section6 .textbox p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 4em;
border: 8px solid white;
padding: 30px 50px;
}
.tree-section6 .textbox p:hover {
background-color: white;
color: #3f59ff;
} */
* {
margin: 0;
padding: 0;
}
.tree-section6 .container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
vertical-align: middle;
/*Inline-Block*/
}
.tree-section6 .container .box {
position: relative;
width: 500px;
height: 150px;
box-sizing: border-box;
text-align: center;
margin: 0 10px;
}
.tree-section6 .container .box .icon {
font-family: Roboto;
width: 100%;
height: 100%;
border: 8px solid white;
transition: 0.3s;
transform-origin: top;
transform: translateY(0px) rotateX(0deg);
}
.tree-section6 .container .box:hover .icon {
transform: translateY(100%) rotateX(90deg);
}
.tree-section6 .container .box .icon .text{
font-family: Roboto;
font-size: 4em;
line-height: 100px;
margin: 0;
padding: 20px 0;
color: white;
}
.tree-section6 .container .box .details {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 8px solid white;
background: white;
transition: 0.3s;
transform-origin: bottom;
transform: translateY(-100px) rotateX(90deg);
}
.tree-section6 .container .box:hover .details {
transform: translateY(0) rotateX(0deg);
}
.tree-section6 .container .box .details h3{
margin: 0;
padding: 0;
line-height: 100px;
font-size: 4em;
color: #3f59ff;
font-family: 'Roboto', sans-serif;
padding: 20px 0;
} | public/css/all.css | html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
font-family: 'Roboto', sans-serif;
}
* {
font-family: 'Roboto', sans-serif;
}
*a {
text-decoration: none;
}
.row {
margin: 0;
padding: 0;
}
body {
width: 100%;
overflow-x: hidden;
background: white;
font-family: 'Roboto', sans-serif;
color: #676767;
position: relative;
letter-spacing: 0px;
font-size: 16px;
line-height: 32px;
font-weight: 400;
height: auto;
}
/* Trang HOME */
/* Menu */
#top .left-page {
padding: 0;
border-right: 1px solid rgba(0, 0, 0, 0.06);
position: fixed;
top: 0;
left: 0;
overflow: hidden;
height: 100%;
margin: 0;
}
#top .right-page {
position: absolute;
right: 0;
margin: 0;
}
#top #logo {
width: auto;
max-width: none;
display: block;
line-height: 22px;
font-size: 22px;
letter-spacing: -1px;
color: #444;
font-family: 'Open Sans';
font-weight: 600;
padding: 30px 20px 30px 20px;
}
#top #logo .retina-logo,
#top .span_3 #logo .mobile-only-logo {
display: none
}
#top #logo .starting-logo {
position: absolute;
top: 0;
opacity: 0;
left: 0
}
#top #logo:hover,
#top #logo:focus {
color: #000
}
#top #logo img {
text-indent: -9999px;
max-width: none;
width: auto;
margin-bottom: 0;
display: block;
transition: opacity 0.4s ease
}
#top {
position: relative;
z-index: 9998;
width: 100%
}
#top .container .row {
padding-bottom: 0
}
#top .col-md-2 {
width: 275px;
}
.menu {
position: relative;
max-height: 450px;
margin-left: 15px;
display: block;
}
.menu ul li ul {
align-items: baseline;
margin-left: 40px;
}
.menu ul li {
text-transform: none;
font-size: 14px;
line-height: 30px;
font-weight: 700;
margin-bottom: 10px;
}
.menu ul li a {
color: black;
padding: 1px 8px 1px 8px;
}
.menu ul li a:hover {
background: blue;
color: white;
width: fit-content;
position: relative;
}
div.scrollmenu {
overflow: auto;
white-space: nowrap;
}
div.scrollmenu ul li {
display: inline-block;
}
.icon-menu {
padding: 20px;
margin-top: 20px;
font-size: 20px;
}
.icon-menu i {
margin-right: 20px;
}
.icon-menu i:hover {
color: #1239ff !important;
background-color: black;
padding: 6px;
border-radius: 4px;
}
/* Content */
.content-head {
position: relative;
}
.content-head .center {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
width: 90%;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
font-weight: 500;
vertical-align: middle;
}
.content-head img {
width: 100%;
height: auto;
}
.content-head .center h1 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.content-head .center p {
display: inline-block;
vertical-align: middle;
text-align: center;
line-height: 35px;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
font-weight: 500;
}
/* Scroll */
.content-head a {
position: absolute;
bottom: 20px;
left: 49%;
z-index: 2;
display: inline-block;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
color: #fff;
font: normal 400 20px/1 'Josefin Sans', sans-serif;
letter-spacing: .1em;
text-decoration: none !important;
transition: opacity .3s;
}
.content-head a:hover {
opacity: .5;
}
html {
scroll-behavior: smooth;
}
#section01,
#section02 {
position: relative;
width: 100%;
height: 100%;
}
#section01::after,
#section02::after {
position: absolute;
bottom: 0;
left: 0;
content: '';
width: 100%;
height: 100%;
}
#section01 a {
padding-top: 60px;
}
#section01 a span {
position: absolute;
top: 0;
width: 30px;
height: 46px;
margin-left: -15px;
border: 2px solid #fff;
border-radius: 50px;
box-sizing: border-box;
}
#section01 a span::before {
position: absolute;
top: 10px;
left: 50%;
content: '';
width: 6px;
height: 6px;
margin-left: -3px;
background-color: #fff;
border-radius: 100%;
-webkit-animation: sdb10 2s infinite;
animation: sdb10 2s infinite;
box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
0% {
-webkit-transform: translate(0, 0);
opacity: 0;
}
40% {
opacity: 1;
}
80% {
-webkit-transform: translate(0, 20px);
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes sdb10 {
0% {
transform: translate(0, 0);
opacity: 0;
}
40% {
opacity: 1;
}
80% {
transform: translate(0, 20px);
opacity: 0;
}
100% {
opacity: 0;
}
}
.content-body .title h2 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
text-align: center;
padding: 40px 0px;
}
/* .content-body{
} */
.content-body .content {
background-image: url("../image/homepage_team_001.jpg");
background-size: cover;
background-origin: padding-box;
color: white;
background-blend-mode: darken;
margin-left: 0;
display: flex;
align-items: center;
background-position: left top;
background-repeat: no-repeat;
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/opacity/see-through */
}
.content-body .content .text {
border: 3px solid blue;
width: fit-content;
padding: 10px 20px;
margin-top: 50px;
}
.content-body .content .text:hover {
background-color: blue;
}
.content-body .content .info {
width: 90%;
}
.content-body .content .info h3 {
letter-spacing: 0px;
font-size: 26px;
line-height: 30px;
font-weight: 500;
}
.content-body .content .info h5 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.content-body .content .info p {
line-height: 30px;
padding-bottom: 30px;
}
.content-body .content {
padding: 40px;
margin: 0;
}
.content-body .content h2 {
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
}
.content-body .content h5 {
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.content-last {
height: auto;
width: 100%;
color: black;
background-color: white;
opacity: 0.8;
padding: 0;
}
.content-last .carousel-item {
height: 400px;
text-align: center;
}
.content-last .carousel-item .text {
padding: 60px 140px 0px 140px;
text-transform: none;
font-size: 24px;
line-height: 40px;
font-weight: 300;
}
.content-last .carousel-item .title {
font-size: 16px;
line-height: 16px;
font-weight: 400;
font-style: italic;
}
.text-carousel h5 {
text-align: center;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 14px;
line-height: 26px;
font-weight: 400;
margin-top: 100px;
color: black;
}
.carousel-caption h5 {
font-family: 'Roboto', sans-serif;
text-transform: none;
font-size: 20px;
line-height: 40px;
font-weight: 300;
color: black;
}
.carousel-caption p {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 16px;
font-weight: 400;
font-style: italic;
color: gray;
}
hr.rounded {
border-top: 2px solid #299999 !important;
width: 80px;
height: 2px;
margin-bottom: 20px;
transform: scale(1, 1);
visibility: visible;
margin-left: 46%;
}
.footer {
width: 100%;
}
.footer img {
margin-bottom: 20px;
}
.footer .text1 {
margin-left: 40px;
}
.footer .text2 h6 {
color: black;
margin-left: 15px;
font-weight: bold;
font-family: 'Roboto', sans-serif;
}
.footer .col-md-3 a {
text-decoration: none;
color: #9b9b9b !important;
}
.footer {
color: #9b9b9b !important;
line-height: 30px;
}
/* Trang ABOUT */
/* Head */
.ad-title {
width: 100%;
}
.ab-title h1 {
display: inline-block;
top: 0;
text-align: center;
width: 100%;
padding-left: 0;
font-family: Roboto;
text-transform: capitalize;
color: #444;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
padding: 30px 0px 10px 0px;
}
.ab-content {
background-image: url("../image/about_header_001.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 50%;
width: -webkit-fill-available;
}
.ab-content .content {
height: 500px;
text-align: -webkit-center;
}
.ab-content .content h1 {
font-family: 'Roboto', sans-serif;
text-align: center;
color: white;
letter-spacing: 0px;
font-size: 70px;
line-height: 70px;
font-weight: 100;
width: 60%;
margin: 0;
position: relative;
top: 30%;
}
.ab-content1 {
width: 100%;
margin: 100px 0 20px 0;
}
.ab-content1 row {
margin: 0;
}
.ab-content1 .text {
width: 90%;
padding: 20px;
}
.ab-content1 .text h6 {
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.ab-content1 .text h2 {
font-family: 'Roboto', sans-serif;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
}
.ab-content1 .text p {
font-family: 'Roboto', sans-serif;
color: #676767;
line-height: 32px;
}
.ab-content1 .img1 {
position: absolute;
left: 32%;
top: 10%;
}
.ab-content1 .img2 {
position: absolute;
top: 42%;
left: 20%;
}
.ab-content1 .img3 {
position: absolute;
left: 50%;
top: 50%;
}
.ab-content1 .img4 {
position: absolute;
left: 25%;
top: 10%;
}
.ab-content1 .img5 {
position: absolute;
top: 42%;
left: 10%;
}
.ab-content1 .img6 {
position: absolute;
left: 40%;
top: 50%;
}
.ab-content1 .box2 {
margin-top: 140px;
margin-bottom: 100px;
}
.ab-content1 .box2 .text {
text-align: right;
}
.ab-content2 {
background-color: #f9f7f5 !important;
width: 100%;
margin: 0;
}
.ab-content2 .content1 .wrap {
min-height: 450px;
}
.ab-content3 {
width: 100%;
margin: 0;
}
.ab-content2 .title,
.ab-content3 .title {
text-align: center;
margin-top: 150px;
}
.ab-content2 .title h5,
.ab-content3 .title h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
color: #999999;
margin: 0;
}
.ab-content2 .title h2,
.ab-content3 .title h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 10px;
}
.ab-content2 .content1 {
margin: 90px 0 140px 0;
}
.ab-content2 .content1 .row {
margin-bottom: 40px;
}
/* Flip box */
.flip-box {
background-color: transparent;
width: 90%;
height: 450px;
max-height: auto;
perspective: 1000px;
margin-left: 5%;
}
.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
transform: rotateY(180deg);
}
.flip-box-front {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
justify-content: center;
align-items: center;
}
.flip-box-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.flip-box-front span,
.flip-box-back span {
width: 70%;
line-height: 30px;
}
.flip-box-front {
background-color: rgb(0, 0, 0);
color: white;
}
.flip-box-front i {
font-size: 20px !important;
line-height: 20px !important;
color: #299999;
margin: 23px 10px 0 0;
}
.flip-box-back {
background-color: rgb(43, 157, 206);
color: white;
transform: rotateY(180deg);
}
/* Content3 About */
.ab-content3 .content .row {
margin: 0;
padding: 0;
}
.ab-content3 .content {
padding: 3%;
}
.ab-content3 .content a {
text-decoration: none;
}
.ab-content3 .title {
margin-bottom: 100px;
}
.ab-content3 {
margin-bottom: 50px;
}
/* Slider About */
.text-carousel .title h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
color: #999999;
margin: 0;
}
.text-carousel .title h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 10px;
text-align: center;
}
/* Member Brands */
.ab-content4 {
width: 100%;
margin: 0;
background: linear-gradient(to bottom, #eaf1fd 0%, rgba(255, 255, 255, 0.001) 75%);
opacity: 1;
background: #eaf1fd;
background: linear-gradient(to bottom, #eaf1fd 0%, rgba(255, 255, 255, 0.001) 100%);
opacity: 1;
margin-bottom: 100px;
}
.ab-content4 .title {
margin-top: 100px;
}
.ab-content4 .title h2 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
text-align: center;
}
.ab-content4 .row {
width: 100%;
padding: 0;
margin: 0;
margin-top: 100px;
color: white;
}
.ab-content4 i {
font-size: 30px;
color: orange;
background-color: aliceblue;
border: 5px solid transparent;
border-radius: 3px;
}
.ab-content4 .bg1 {
width: 90%;
background-image: url("../image/about-007.jpeg");
background-repeat: no-repeat;
min-height: 400px;
margin: 0;
padding: 10%;
border: 1px solid transparent;
border-radius: 8px;
margin-left: 15%;
}
.ab-content4 .bg1:hover {
transition: transform 1s ease, opacity 0.5s ease 0.25s;
}
.ab-content4 .bg2 {
width: 90%;
background-image: url("../image/about-008.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
margin: 0;
padding: 10%;
border: 1px solid transparent;
border-radius: 8px;
margin-left: 10%;
}
.ab-content4 .bg2 i {
margin-top: 160px;
}
.ab-content4 .bg2 h3 {
margin-bottom: 0px;
}
.ab-content4 .bg3 {
width: 90%;
background-image: url("../image/about-009.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
margin: 0;
padding: 10%;
margin-left: 5%;
border: 1px solid transparent;
border-radius: 8px;
}
.ab-content4 .bg4 {
width: 90%;
background-image: url("../image/about-010.jpg");
background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
padding: 10%;
margin: 0;
border: 1px solid transparent;
border-radius: 8px;
}
/* Trang Synthesis */
.mainsyn {
margin-top: 5px;
}
.mainsyn .wrap img {
margin: 5px 0;
}
.footsyn {
background-color: #0a0a0a;
opacity: 0.8;
color: white;
text-align: center;
margin-bottom: 100px;
margin-top: 10px;
}
.footsyn .text {
padding: 20%;
}
.footsyn h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
}
.footsyn h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin-top: 0;
}
.footsyn .text p {
border: 3px solid blue;
width: fit-content;
padding: 10px 20px;
margin-top: 50px;
margin-left: 40%;
}
.footsyn .text p:hover {
background-color: blue;
}
/* Trang Nectar Into the trees */
.tree-section1 {
background-color: rgb(48, 48, 48);
height: 500px;
opacity: 1;
position: relative;
visibility: visible;
display: block;
width: 100%;
color: white;
text-align: center;
}
.tree-section1 .text h1 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 77px;
line-height: 77px;
font-weight: 300;
margin: 0;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section1 span {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 30px;
font-weight: 500;
margin: 0;
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section2 {
text-align: center;
width: 100%;
background-color: rgb(248, 248, 248);
}
.tree-section2 h5 {
font-family: Roboto;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 12px;
line-height: 26px;
font-weight: 400;
margin: 100px 0 0 0;
}
.tree-section2 h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
margin: 10px 0 30px 0;
}
.tree-section2 p {
width: 45%;
line-height: 30px;
display: inline-block;
vertical-align: middle;
color: #676767;
margin-bottom: 100px;
}
.tree-section3 {
width: 100%;
text-align: center;
position: relative;
display: -webkit-inline-box;
}
.tree-section3 .text1 {
background-color: #3f59ff;
width: 100%;
height: 588px;
}
.tree-section3 .text1 i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(255, 255, 255);
font-size: 15em;
}
.tree-section3 .text2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section3 .text2 h2 {
font-family: Roboto;
text-transform: capitalize;
letter-spacing: 0px;
font-size: 46px;
line-height: 56px;
font-weight: 100;
color: #ffffff;
background-color: #299999 !important;
padding: 10px 20px;
}
.tree-section4 {
text-align: center;
background-color: rgb(48, 48, 48);
height: 600px;
position: relative;
width: 100%;
}
.tree-section4 .iconplay i {
color: #ffffff;
font-size: 6em;
}
.tree-section4 .iconplay i:hover {
opacity: 0.5;
}
.tree-section4 .iconplay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tree-section5 {
width: 100%;
height: 600px;
padding: 0;
}
.tree-section5 .content-last {
width: 90%;
margin-left: 5%;
position: absolute;
margin-top: -70px;
background-color: #ffffff;
opacity: 1;
}
.tree-section5 .content-last .carousel-item .text {
padding: 40px 270px 0px 270px;
text-transform: none;
font-size: 24px;
line-height: 40px;
font-weight: 300;
}
.tree-section6 {
width: 100%;
height: 500px;
padding: 0;
background-color:#3f59ff;
margin-bottom: 80px;
position: relative;
}
/* .tree-section6 .textbox p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 4em;
border: 8px solid white;
padding: 30px 50px;
}
.tree-section6 .textbox p:hover {
background-color: white;
color: #3f59ff;
} */
* {
margin: 0;
padding: 0;
}
.tree-section6 .container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
vertical-align: middle;
/*Inline-Block*/
}
.tree-section6 .container .box {
position: relative;
width: 500px;
height: 150px;
box-sizing: border-box;
text-align: center;
margin: 0 10px;
}
.tree-section6 .container .box .icon {
font-family: Roboto;
width: 100%;
height: 100%;
border: 8px solid white;
transition: 0.3s;
transform-origin: top;
transform: translateY(0px) rotateX(0deg);
}
.tree-section6 .container .box:hover .icon {
transform: translateY(100%) rotateX(90deg);
}
.tree-section6 .container .box .icon .text{
font-family: Roboto;
font-size: 4em;
line-height: 100px;
margin: 0;
padding: 20px 0;
color: white;
}
.tree-section6 .container .box .details {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 8px solid white;
background: white;
transition: 0.3s;
transform-origin: bottom;
transform: translateY(-100px) rotateX(90deg);
}
.tree-section6 .container .box:hover .details {
transform: translateY(0) rotateX(0deg);
}
.tree-section6 .container .box .details h3{
margin: 0;
padding: 0;
line-height: 100px;
font-size: 4em;
color: #3f59ff;
font-family: 'Roboto', sans-serif;
padding: 20px 0;
} | 0.438545 | 0.076649 |
.dropdown-menu {
background-color:#343a40;
border-style:solid;
border-width:2px;
border-color:grey;
}
.dropdown-item{
color:steelblue;
}
.dropdown-item:focus, .dropdown-item:hover{
color:white;
background-color:#343a40;
}
.hover-target:hover i
{
color: #222 !important;
}
.hoverinverse-target:hover{
color: steelblue !important;
}
h1,h2,h3,h4,h5,h6
{
font-weight:700;
font-family:Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;
text-transform:uppercase
}
section
{
padding-top:3.5em;
height: 100%;
}
section h2.section-heading
{
color:steelblue;
font-size:40px;
margin-top:0;
margin-bottom:15px
}
section h3.section-subheading
{
font-size:18px;
font-weight:400;
font-style:italic;
margin-bottom:75px;
text-transform:none;
font-family:'Droid Serif','Helvetica Neue',Helvetica,Arial,sans-serif
}
.text-primary
{
color: steelblue!important
}
.text-secondary
{
color: white!important
}
.text-muted
{
color: black!important
}
body
{
height:100%;
overflow-x:hidden;
font-family:'Roboto Slab','Helvetica Neue',Helvetica,Arial,sans-serif;
background-color: rgb(80, 80, 80);
}
html{
height:100%;
}
p
{
line-height:1.75
}
footer
{
background-color: #343a40;
position: absolute;
bottom:0;
width: 100%;
text-align:center;
}
span.copyright
{
font-size:90%;
line-height:40px;
font-family:Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;
text-transform:uppercase;
color:steelblue;
}
ul.social-buttons li a:active,ul.social-buttons li a:focus,ul.social-buttons li a:hover
{
background-color:#222!important
}
ul.social-buttons
{
margin-bottom:0
}
ul.social-buttons li a
{
font-size:20px;
line-height:40px;
display:block;
width:40px;
height:40px;
-webkit-transition:all .3s;
-moz-transition:all .3s;
transition:all .3s;
color:#fff;
border-radius:100%;
outline:0;
background-color:steelblue
}
.sample{
display:none;
}
.nav-link:hover
{
color:steelblue!important;
border-color:#e9ecef #e9ecef #ddd
} | css/index.css | .dropdown-menu {
background-color:#343a40;
border-style:solid;
border-width:2px;
border-color:grey;
}
.dropdown-item{
color:steelblue;
}
.dropdown-item:focus, .dropdown-item:hover{
color:white;
background-color:#343a40;
}
.hover-target:hover i
{
color: #222 !important;
}
.hoverinverse-target:hover{
color: steelblue !important;
}
h1,h2,h3,h4,h5,h6
{
font-weight:700;
font-family:Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;
text-transform:uppercase
}
section
{
padding-top:3.5em;
height: 100%;
}
section h2.section-heading
{
color:steelblue;
font-size:40px;
margin-top:0;
margin-bottom:15px
}
section h3.section-subheading
{
font-size:18px;
font-weight:400;
font-style:italic;
margin-bottom:75px;
text-transform:none;
font-family:'Droid Serif','Helvetica Neue',Helvetica,Arial,sans-serif
}
.text-primary
{
color: steelblue!important
}
.text-secondary
{
color: white!important
}
.text-muted
{
color: black!important
}
body
{
height:100%;
overflow-x:hidden;
font-family:'Roboto Slab','Helvetica Neue',Helvetica,Arial,sans-serif;
background-color: rgb(80, 80, 80);
}
html{
height:100%;
}
p
{
line-height:1.75
}
footer
{
background-color: #343a40;
position: absolute;
bottom:0;
width: 100%;
text-align:center;
}
span.copyright
{
font-size:90%;
line-height:40px;
font-family:Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;
text-transform:uppercase;
color:steelblue;
}
ul.social-buttons li a:active,ul.social-buttons li a:focus,ul.social-buttons li a:hover
{
background-color:#222!important
}
ul.social-buttons
{
margin-bottom:0
}
ul.social-buttons li a
{
font-size:20px;
line-height:40px;
display:block;
width:40px;
height:40px;
-webkit-transition:all .3s;
-moz-transition:all .3s;
transition:all .3s;
color:#fff;
border-radius:100%;
outline:0;
background-color:steelblue
}
.sample{
display:none;
}
.nav-link:hover
{
color:steelblue!important;
border-color:#e9ecef #e9ecef #ddd
} | 0.253861 | 0.047316 |
.web-search [class^="flaticon-"], .web-search [class*=" flaticon-"] {
font-size: 22px;
}
.web-search h5 {
color: #e95f2b;
font-size: 17px;
}
.web-search p {
color: #3b3f5c;
font-size: 13px;
}
.text-primary {
color: #3b3f5c!important;
font-size: 1.125rem;
}
a.text-primary:hover { color: #3862f5!important; }
.form-control {
color: #888ea8;
border: 1px solid #d5dae2;
}
hr {
margin-bottom: 0px;
border-top: 1px solid #e9ecef;
margin-top: 0px;
}
.nav-tabs {
border-bottom: 1px solid #e6e6e6;
margin-top: 2px;
}
.media .media-body .media-heading {
margin-bottom: 10px;
color: #ee3d50;
}
.text-success {
color: #ee3d50!important;
font-size: 13px;
font-weight: 600;
}
.nav-tabs.custom-tabs > li {
position: relative;
display: block;
}
.nav-tabs.custom-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs.custom-tabs > li > a {
position: relative;
display: inline-block;
color: #888ea8;
font-size: 16px;
padding: 10px 15px;
border: 1px solid transparent;
}
.nav-tabs.custom-tabs > li > a span { float: right; }
.nav-tabs.custom-tabs > li.current, .nav-tabs.custom-tabs > li:hover {
color: #2D2D2D;
cursor: default;
background-color: #fff;
border: 1px solid #3862f5;
border-bottom-color: #3862f5;
border-top-color: transparent;
border-left-color: transparent;
border-right-color: transparent
}
.nav-tabs.custom-tabs > li.current > a,
.nav-tabs.custom-tabs > li:hover > a {
color: #3862f5;
border: 0px solid #ddd;
}
.custom-tab-pane { display: none; }
#web { display: block; }
.panel {
margin-bottom: 20px;
background-color: #fff;
}
.panel-body { padding: 15px; }
.btn { padding: 0.45rem 1.375rem; }
input[type=text]:focus { border-color: #ccc; }
.text-size-small {
font-size: 13px;
color: #888ea8!important;
margin-top: 30px;
}
.content-group {
padding-left: 0px;
margin-bottom: 20px !important;
}
.web-search .media { margin-top: 24px; }
.web-search .media-body {
overflow: visible;
position: relative;
color: #1d1d1d;
margin-bottom: 40px;
word-break: break-word;
}
.media-heading {
margin-bottom: 2px;
display: block;
}
.media-heading a {
color: #3862f5;
font-size: 17px;
}
.media .media-body .pagination { display: inline-block; }
.search-results-list .list-inline { margin-bottom: 5px; }
.list-inline {
margin-left: 0;
font-size: 0;
}
.web-search .list-inline > li {
padding-left: 0;
padding-right: 20px;
font-size: 13px;
}
.list-inline-separate > li {
display: inline-block;
position: relative;
padding-right: 18px;
color: #b7b7b7;
}
.right-list-inline > li { float: left; }
.text-warning-300 { color: #f28b21 !important; }
.text-size-base { font-size: 13px; }
.list-inline > li:last-child {
padding-right: 0;
position: relative;
}
.website-search-results {
padding: 28px 20px 0;
border-bottom: 1px solid #eee;
}
.strong { font-weight: 600; }
#lightbox .modal-content {
display: inline-block;
text-align: center;
}
#lightbox .close {
opacity: 1;
color: #fff;
background-color: #1f3892;
border-radius: 50%;
border: 2px solid #fff;
position: relative;
top: 17px;
left: 8px;
z-index: 999;
}
#lightbox .close i { font-size: 26px; }
.modal-dialog { width: 432px; }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 15px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #f1f3f1;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
#image div.thumbnail img { width: 100%; }
.caption { padding: 20px; }
.fa-size-lg { font-size: 40px !important; }
.blockquote-box.blockquote-info {
border-color: #24ccda;
}
.blockquote-box.blockquote-info .square {
background-color: #24ccda;
margin-top: 36px;
color: #FFF;
}
.blockquote-box .square {
width: 72px;
padding: 20px 0;
min-height: 50px;
margin-right: 12px;
background-color: #e9ecef;
text-align: center!important;
border-radius: 6px;
}
.blockquote-box.blockquote-primary { border-color: #3232b7; }
.blockquote-box.blockquote-primary .square {
background-color: #3232b7;
color: #FFF;
}
.blockquote-box.blockquote-danger { border-color: #ee3d50; }
.blockquote-box.blockquote-danger .square {
background-color: #ee3d50;
color: #FFF;
}
.blockquote-box.blockquote-default { border-color: #B4B2B2; }
.blockquote-box.blockquote-default .square {
background-color: #07e0c4;
color: #FFF;
}
.blockquote-box.blockquote-dribble { border-color: #e46999; }
.blockquote-box.blockquote-dribble .square {
background-color: #f8538d;
color: #FFF;
}
.media-list .glyphicon-play-circle {
font-size: 35px;
opacity: 1;
left: 58px;
line-height: 13px;
padding: 2px 3px 1px;
position: absolute;
top: 38px;
color: #fff;
text-shadow: 0 1px 3px rgba(0,0,0,.5);
-webkit-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
.media-list .duration {
background-color: rgba(0, 0, 0, 0.4);
border-radius: 2px;
color: #fff;
font-size: 11px;
font-weight: bold;
left: 12px;
line-height: 13px;
padding: 2px 3px 1px;
position: absolute;
top: 12px;
-webkit-transition:all 500ms ease;
transition:all 500ms ease;
}
.blockquote-box .square.square-video {
width: 160px;
padding: 0px;
cursor: pointer;
}
.square > img.thumbnail { margin-bottom: 0px; }
.trending { margin-bottom: 26px; }
#custom-map {
position: relative;
width: 100%;
height: 430px;
}
ul.pagination li a.active {
background-color: #6156ce;
color: #fff;
border-radius: 2px;
border-color: #6156ce;
}
ul.pagination li a:hover:not(.active) {
background-color: #e9b02b;
border-radius: 2px;
color: #fff;
}
@media(min-width: 320px) and (max-width: 479px) {
.modal-dialog {
width: auto;
margin: 30px;
}
}
@media(min-width: 480px) and (max-width: 767px) {
.modal-dialog {
width: auto;
margin: 60px;
}
} | admin/assets/css/components/searchbox/search-web.css | .web-search [class^="flaticon-"], .web-search [class*=" flaticon-"] {
font-size: 22px;
}
.web-search h5 {
color: #e95f2b;
font-size: 17px;
}
.web-search p {
color: #3b3f5c;
font-size: 13px;
}
.text-primary {
color: #3b3f5c!important;
font-size: 1.125rem;
}
a.text-primary:hover { color: #3862f5!important; }
.form-control {
color: #888ea8;
border: 1px solid #d5dae2;
}
hr {
margin-bottom: 0px;
border-top: 1px solid #e9ecef;
margin-top: 0px;
}
.nav-tabs {
border-bottom: 1px solid #e6e6e6;
margin-top: 2px;
}
.media .media-body .media-heading {
margin-bottom: 10px;
color: #ee3d50;
}
.text-success {
color: #ee3d50!important;
font-size: 13px;
font-weight: 600;
}
.nav-tabs.custom-tabs > li {
position: relative;
display: block;
}
.nav-tabs.custom-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs.custom-tabs > li > a {
position: relative;
display: inline-block;
color: #888ea8;
font-size: 16px;
padding: 10px 15px;
border: 1px solid transparent;
}
.nav-tabs.custom-tabs > li > a span { float: right; }
.nav-tabs.custom-tabs > li.current, .nav-tabs.custom-tabs > li:hover {
color: #2D2D2D;
cursor: default;
background-color: #fff;
border: 1px solid #3862f5;
border-bottom-color: #3862f5;
border-top-color: transparent;
border-left-color: transparent;
border-right-color: transparent
}
.nav-tabs.custom-tabs > li.current > a,
.nav-tabs.custom-tabs > li:hover > a {
color: #3862f5;
border: 0px solid #ddd;
}
.custom-tab-pane { display: none; }
#web { display: block; }
.panel {
margin-bottom: 20px;
background-color: #fff;
}
.panel-body { padding: 15px; }
.btn { padding: 0.45rem 1.375rem; }
input[type=text]:focus { border-color: #ccc; }
.text-size-small {
font-size: 13px;
color: #888ea8!important;
margin-top: 30px;
}
.content-group {
padding-left: 0px;
margin-bottom: 20px !important;
}
.web-search .media { margin-top: 24px; }
.web-search .media-body {
overflow: visible;
position: relative;
color: #1d1d1d;
margin-bottom: 40px;
word-break: break-word;
}
.media-heading {
margin-bottom: 2px;
display: block;
}
.media-heading a {
color: #3862f5;
font-size: 17px;
}
.media .media-body .pagination { display: inline-block; }
.search-results-list .list-inline { margin-bottom: 5px; }
.list-inline {
margin-left: 0;
font-size: 0;
}
.web-search .list-inline > li {
padding-left: 0;
padding-right: 20px;
font-size: 13px;
}
.list-inline-separate > li {
display: inline-block;
position: relative;
padding-right: 18px;
color: #b7b7b7;
}
.right-list-inline > li { float: left; }
.text-warning-300 { color: #f28b21 !important; }
.text-size-base { font-size: 13px; }
.list-inline > li:last-child {
padding-right: 0;
position: relative;
}
.website-search-results {
padding: 28px 20px 0;
border-bottom: 1px solid #eee;
}
.strong { font-weight: 600; }
#lightbox .modal-content {
display: inline-block;
text-align: center;
}
#lightbox .close {
opacity: 1;
color: #fff;
background-color: #1f3892;
border-radius: 50%;
border: 2px solid #fff;
position: relative;
top: 17px;
left: 8px;
z-index: 999;
}
#lightbox .close i { font-size: 26px; }
.modal-dialog { width: 432px; }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 15px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #f1f3f1;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
#image div.thumbnail img { width: 100%; }
.caption { padding: 20px; }
.fa-size-lg { font-size: 40px !important; }
.blockquote-box.blockquote-info {
border-color: #24ccda;
}
.blockquote-box.blockquote-info .square {
background-color: #24ccda;
margin-top: 36px;
color: #FFF;
}
.blockquote-box .square {
width: 72px;
padding: 20px 0;
min-height: 50px;
margin-right: 12px;
background-color: #e9ecef;
text-align: center!important;
border-radius: 6px;
}
.blockquote-box.blockquote-primary { border-color: #3232b7; }
.blockquote-box.blockquote-primary .square {
background-color: #3232b7;
color: #FFF;
}
.blockquote-box.blockquote-danger { border-color: #ee3d50; }
.blockquote-box.blockquote-danger .square {
background-color: #ee3d50;
color: #FFF;
}
.blockquote-box.blockquote-default { border-color: #B4B2B2; }
.blockquote-box.blockquote-default .square {
background-color: #07e0c4;
color: #FFF;
}
.blockquote-box.blockquote-dribble { border-color: #e46999; }
.blockquote-box.blockquote-dribble .square {
background-color: #f8538d;
color: #FFF;
}
.media-list .glyphicon-play-circle {
font-size: 35px;
opacity: 1;
left: 58px;
line-height: 13px;
padding: 2px 3px 1px;
position: absolute;
top: 38px;
color: #fff;
text-shadow: 0 1px 3px rgba(0,0,0,.5);
-webkit-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
.media-list .duration {
background-color: rgba(0, 0, 0, 0.4);
border-radius: 2px;
color: #fff;
font-size: 11px;
font-weight: bold;
left: 12px;
line-height: 13px;
padding: 2px 3px 1px;
position: absolute;
top: 12px;
-webkit-transition:all 500ms ease;
transition:all 500ms ease;
}
.blockquote-box .square.square-video {
width: 160px;
padding: 0px;
cursor: pointer;
}
.square > img.thumbnail { margin-bottom: 0px; }
.trending { margin-bottom: 26px; }
#custom-map {
position: relative;
width: 100%;
height: 430px;
}
ul.pagination li a.active {
background-color: #6156ce;
color: #fff;
border-radius: 2px;
border-color: #6156ce;
}
ul.pagination li a:hover:not(.active) {
background-color: #e9b02b;
border-radius: 2px;
color: #fff;
}
@media(min-width: 320px) and (max-width: 479px) {
.modal-dialog {
width: auto;
margin: 30px;
}
}
@media(min-width: 480px) and (max-width: 767px) {
.modal-dialog {
width: auto;
margin: 60px;
}
} | 0.273671 | 0.083928 |
* {
margin: 0;
padding: 0;
font-family: "Arial";
}
html {
height: 100%;
width: 100%;
overflow-y: hidden;
}
header {
width: 100%;
min-height: 80px;
background: rgb(50, 95, 160);
border-bottom: 8px solid rgb(15, 50, 125);
word-wrap: break-word;
}
header h1 {
text-align: center;
line-height: 80px;
color: rgb(255, 255, 255);
}
select::-ms-expand{
display: none;
}
footer {
position: fixed;
bottom: 0px;
height: 30px;
width: 100%;
background: rgb(170, 170, 170);
}
footer p {
text-align: center;
line-height: 30px;
}
.container {
width: 80%;
height: 50%;
margin: 10%;
margin-top: 100px;
}
.menu {
position: relative;
width: 100%;
height: 50px;
display: table;
}
.item {
position: relative;
display: table-cell;
}
#i1, #i2 {
position: relative;
display: table-cell;
width: 50%;
}
.selection-box {
display: inline-block;
width: 100%;
height: 50px;
}
.selection-box::after{
content: "";
display: inline-block;
border-top: 10px solid rgb(170, 170, 170);
border-right:10px solid transparent;
border-left:10px solid transparent;
position: absolute;
top:calc(50% - 5px);
right:.5rem;
z-index: -1;
pointer-events: none;
}
.selection {
position: relative;
width: 100%;
height: 100%;
text-align: center;
border: 1px solid rgb(0, 0, 0);
border-radius: 3px;
cursor: pointer;
background: transparent;
font-size: 15px;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.selection:focus {
outline: none;
}
.btn {
width: 100%;
height: 25px;
border: 1px solid rgb(170, 170, 170);
color: rgb(0, 0, 0);
background: rgb(220, 220, 220);
transition: 0.3s linear;
position: relative;
font-size: 15px;
font-weight: 600;
border-radius: 3px;
cursor: pointer;
}
.btn:hover {
background: rgb(170, 170, 170);
}
.btn:active {
background: rgb(120, 120, 120);
}
.content {
position: relative;
width: 100%;
height: 450px;
display: table;
}
.box {
position: relative;
display: table-cell;
width: 50%;
height: 100%;
}
.keybox {
width: 100%;
height: 50px;
position: relative;
resize: none;
outline: none;
box-sizing: border-box;
padding: 6px 10px;
border: 1px solid rgb(170, 170, 170);
border-radius: 4px;
background-color: rgb(240, 240, 240);
resize: none;
}
.textbox {
width: 100%;
height: 100%;
resize: none;
outline: none;
padding: 6px 10px;
box-sizing: border-box;
border: 1px solid rgb(170, 170, 170);
border-radius: 4px;
background-color: rgb(240, 240, 240);
}
.textbox:focus {
outline: none !important;
box-shadow:none !important;
} | css/style.css | * {
margin: 0;
padding: 0;
font-family: "Arial";
}
html {
height: 100%;
width: 100%;
overflow-y: hidden;
}
header {
width: 100%;
min-height: 80px;
background: rgb(50, 95, 160);
border-bottom: 8px solid rgb(15, 50, 125);
word-wrap: break-word;
}
header h1 {
text-align: center;
line-height: 80px;
color: rgb(255, 255, 255);
}
select::-ms-expand{
display: none;
}
footer {
position: fixed;
bottom: 0px;
height: 30px;
width: 100%;
background: rgb(170, 170, 170);
}
footer p {
text-align: center;
line-height: 30px;
}
.container {
width: 80%;
height: 50%;
margin: 10%;
margin-top: 100px;
}
.menu {
position: relative;
width: 100%;
height: 50px;
display: table;
}
.item {
position: relative;
display: table-cell;
}
#i1, #i2 {
position: relative;
display: table-cell;
width: 50%;
}
.selection-box {
display: inline-block;
width: 100%;
height: 50px;
}
.selection-box::after{
content: "";
display: inline-block;
border-top: 10px solid rgb(170, 170, 170);
border-right:10px solid transparent;
border-left:10px solid transparent;
position: absolute;
top:calc(50% - 5px);
right:.5rem;
z-index: -1;
pointer-events: none;
}
.selection {
position: relative;
width: 100%;
height: 100%;
text-align: center;
border: 1px solid rgb(0, 0, 0);
border-radius: 3px;
cursor: pointer;
background: transparent;
font-size: 15px;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.selection:focus {
outline: none;
}
.btn {
width: 100%;
height: 25px;
border: 1px solid rgb(170, 170, 170);
color: rgb(0, 0, 0);
background: rgb(220, 220, 220);
transition: 0.3s linear;
position: relative;
font-size: 15px;
font-weight: 600;
border-radius: 3px;
cursor: pointer;
}
.btn:hover {
background: rgb(170, 170, 170);
}
.btn:active {
background: rgb(120, 120, 120);
}
.content {
position: relative;
width: 100%;
height: 450px;
display: table;
}
.box {
position: relative;
display: table-cell;
width: 50%;
height: 100%;
}
.keybox {
width: 100%;
height: 50px;
position: relative;
resize: none;
outline: none;
box-sizing: border-box;
padding: 6px 10px;
border: 1px solid rgb(170, 170, 170);
border-radius: 4px;
background-color: rgb(240, 240, 240);
resize: none;
}
.textbox {
width: 100%;
height: 100%;
resize: none;
outline: none;
padding: 6px 10px;
box-sizing: border-box;
border: 1px solid rgb(170, 170, 170);
border-radius: 4px;
background-color: rgb(240, 240, 240);
}
.textbox:focus {
outline: none !important;
box-shadow:none !important;
} | 0.452778 | 0.08292 |
body {
display: flex;
min-height: 100vh;
flex-direction: column;
background-image: url(../images/NSW-3f087f13b1ca31212b82e2f09c384f3d.jpg);
background-size: cover;
background-attachment: fixed;
transition: all 1.5s ease-in-out;
}
/* Change the background img on hover to the weather, hotel, rest. cards */
body:hover {
background-image: url(../images/image001.jpg);
background-size: cover;
background-attachment: fixed;
transition: all 1.5s ease-in-out;
}
main {
flex: 1 0 auto;
}
img {
height: 83px;
width: 175px;
}
p.h-title {
font-family: "Oswald", sans-serif;
font-size: 30px;
}
p.r-title {
font-family: "Oswald", sans-serif;
font-size: 30px;
}
p.card-title.main-title {
font-size: 45px;
text-shadow: #000000;
}
a.active.hotel {
font-weight: bold;
}
a.active.restaurants {
font-weight: bold;
}
#fiveDay-0 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-1 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-2 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-3 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-4 {
background-color: #e5eafa;
border-radius: 15px;
}
nav {
background-color: #01969d;
margin-bottom: 40px;
}
.nav-wrapper {
justify-content: center;
}
.main-title {
color: black;
padding-top: 15px;
padding-bottom: 15px;
font-weight: 500 bolder;
}
#main-icon {
height: 200px;
width: 200px;
}
#current-date {
font-size: 1.5em;
}
#main-temp {
font-size: 1.5em;
}
#main-humidity {
font-size: 1.5em;
}
#main-wind {
font-size: 1em;
}
#main-uv {
margin-left: 43%;
padding-top: 20px;
border-radius: 75%;
width: 75px;
height: 75px;
font-size: 1.5em;
}
.weather-card {
background-color: rgb(22, 154, 241);
}
.fiveDayText {
color: rgb(20, 16, 6);
font-family: Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
text-align: center;
font-weight: 400 bold;
font-size: 30px;
}
.card-title {
border-radius: 50%;
background-color: #ffe895;
}
.card-text {
font-family: "Montserrat", sans-serif;
font-weight: 600 bold;
}
.cardZero {
background-color: #c6ccb2;
}
.cardOne {
background-color: #c6ccb2;
}
.cardTwo {
background-color: #c6ccb2;
}
.cardThree {
background-color: #c6ccb2;
}
.cardFour {
background-color: #c6ccb2;
}
.search-bar {
background-color: #ffd100;
box-shadow: #03393bbe 0px 3px 20px 3px;
}
.logo {
box-shadow: #03393bbe 0px 3px 20px 3px;
border: solid #48a9a6;
}
.weather-card {
font-family: "Oswald", sans-serif;
text-align: center;
background-color: #01969d;
}
.main-fiveDay-weather-card {
text-align: center;
background-color: #ffd00083;
justify-content: center;
padding-bottom: 20px;
}
.fiveDay-weather-card {
border: black;
text-align: center;
background-color: #ffd100;
justify-content: center;
}
.fiveDayTemp {
font-weight: bolder;
}
#fiveday-icon-0 {
height: 75px;
width: 75px;
}
#fiveday-icon-1 {
height: 75px;
width: 75px;
}
#fiveday-icon-2 {
height: 75px;
width: 75px;
}
#fiveday-icon-3 {
height: 75px;
width: 75px;
}
#fiveday-icon-4 {
height: 75px;
width: 75px;
}
#fiveday-date-0 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-1 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-2 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-3 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-4 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
.hotel-card {
background-color: #ffd000d0;
}
.restaurant-card {
background-color: #ffd000d0;
}
.activate {
color: #01969d;
}
.page-footer {
background-color: #01969d;
font-weight: bolder;
}
.hide {
display: none;
}
.filter {
float: left;
z-index: 2;
width: 25%;
}
.select-wrapper input.select-dropdown {
color: #ffffff;
font-weight: bolder;
}
#search-section {
font-weight: bolder;
} | Assets/style.css | body {
display: flex;
min-height: 100vh;
flex-direction: column;
background-image: url(../images/NSW-3f087f13b1ca31212b82e2f09c384f3d.jpg);
background-size: cover;
background-attachment: fixed;
transition: all 1.5s ease-in-out;
}
/* Change the background img on hover to the weather, hotel, rest. cards */
body:hover {
background-image: url(../images/image001.jpg);
background-size: cover;
background-attachment: fixed;
transition: all 1.5s ease-in-out;
}
main {
flex: 1 0 auto;
}
img {
height: 83px;
width: 175px;
}
p.h-title {
font-family: "Oswald", sans-serif;
font-size: 30px;
}
p.r-title {
font-family: "Oswald", sans-serif;
font-size: 30px;
}
p.card-title.main-title {
font-size: 45px;
text-shadow: #000000;
}
a.active.hotel {
font-weight: bold;
}
a.active.restaurants {
font-weight: bold;
}
#fiveDay-0 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-1 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-2 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-3 {
background-color: #e5eafa;
border-radius: 15px;
}
#fiveDay-4 {
background-color: #e5eafa;
border-radius: 15px;
}
nav {
background-color: #01969d;
margin-bottom: 40px;
}
.nav-wrapper {
justify-content: center;
}
.main-title {
color: black;
padding-top: 15px;
padding-bottom: 15px;
font-weight: 500 bolder;
}
#main-icon {
height: 200px;
width: 200px;
}
#current-date {
font-size: 1.5em;
}
#main-temp {
font-size: 1.5em;
}
#main-humidity {
font-size: 1.5em;
}
#main-wind {
font-size: 1em;
}
#main-uv {
margin-left: 43%;
padding-top: 20px;
border-radius: 75%;
width: 75px;
height: 75px;
font-size: 1.5em;
}
.weather-card {
background-color: rgb(22, 154, 241);
}
.fiveDayText {
color: rgb(20, 16, 6);
font-family: Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
text-align: center;
font-weight: 400 bold;
font-size: 30px;
}
.card-title {
border-radius: 50%;
background-color: #ffe895;
}
.card-text {
font-family: "Montserrat", sans-serif;
font-weight: 600 bold;
}
.cardZero {
background-color: #c6ccb2;
}
.cardOne {
background-color: #c6ccb2;
}
.cardTwo {
background-color: #c6ccb2;
}
.cardThree {
background-color: #c6ccb2;
}
.cardFour {
background-color: #c6ccb2;
}
.search-bar {
background-color: #ffd100;
box-shadow: #03393bbe 0px 3px 20px 3px;
}
.logo {
box-shadow: #03393bbe 0px 3px 20px 3px;
border: solid #48a9a6;
}
.weather-card {
font-family: "Oswald", sans-serif;
text-align: center;
background-color: #01969d;
}
.main-fiveDay-weather-card {
text-align: center;
background-color: #ffd00083;
justify-content: center;
padding-bottom: 20px;
}
.fiveDay-weather-card {
border: black;
text-align: center;
background-color: #ffd100;
justify-content: center;
}
.fiveDayTemp {
font-weight: bolder;
}
#fiveday-icon-0 {
height: 75px;
width: 75px;
}
#fiveday-icon-1 {
height: 75px;
width: 75px;
}
#fiveday-icon-2 {
height: 75px;
width: 75px;
}
#fiveday-icon-3 {
height: 75px;
width: 75px;
}
#fiveday-icon-4 {
height: 75px;
width: 75px;
}
#fiveday-date-0 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-1 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-2 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-3 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
#fiveday-date-4 {
font-family: "Oswald", sans-serif;
padding: 10px;
}
.hotel-card {
background-color: #ffd000d0;
}
.restaurant-card {
background-color: #ffd000d0;
}
.activate {
color: #01969d;
}
.page-footer {
background-color: #01969d;
font-weight: bolder;
}
.hide {
display: none;
}
.filter {
float: left;
z-index: 2;
width: 25%;
}
.select-wrapper input.select-dropdown {
color: #ffffff;
font-weight: bolder;
}
#search-section {
font-weight: bolder;
} | 0.341143 | 0.122418 |
html
{
height: 100%;
width: 100%;
}
body{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
font-family: 'Source Sans Pro', sans-serif;
font-size: 14px;
font-weight: 100%;
color: #000;
background-color: #FFF;
font-weight: normal;
overflow-x: hidden;
overflow-y:auto;
}
.box{
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box- align: center;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box- align: center;
display: box;
box-orient: horizontal;
box-pack: center;
box- align: center;
}
body *{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
behavior: url(boxsizing.htc);
}
* {
margin: 0;
padding: 0;
}
img {
border: 0;
}
a {
text-decoration: none;
color: #ffffff;
}
object,
image {
vertical-align: top;
border: 0;
padding: 0;
margin: 0;
}
img {
float: left;
display: block;
}
.floatInherit{
float: inherit !important;
}
.w100{
width: 100%;
}
.clear{
clear: both;
height: 0px;
display: block;
}
.dNone{
display: none;
}
.center{
margin:0 auto;
display: block;
}
.centeredX{
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.centeredY{
position: relative;
top: 50% !important;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.centeredXY{
position: relative;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.before:before,
.after:after{
content: '';
}
.full-size{
width:100% !important;
}
.pointer{
cursor:pointer;
}
.table{
display: table;
width: 100%;
margin:0 auto;
}
.table > *{
display: table-cell;
vertical-align: middle
}
.anima1{
-webkit-transition:all .1s linear;
-o-transition:all .1s linear;
-moz-transition:all .1s linear;
-ms-transition:all .1s linear;
transition:all .1s linear;
}
.anima2{
-webkit-transition:all .2s linear;
-o-transition:all .2s linear;
-moz-transition:all .2s linear;
-ms-transition:all .2s linear;
transition:all .2s linear;
}
/**** RUSSO STYLES ****/
/* MENU ESPECIAL */
header{
padding: 0;
background: #000;
}
header .menu{
position: relative;
}
header .logo{
margin: 1em 0;
overflow: hidden;
}
header .logo a{
overflow: hidden;
display: block;
}
header .logo a img{}
header .redes{
z-index: 1;
position: absolute;
right: 2em;
top: 5px;
}
header .redes ul{}
header .redes ul li{
display: inline-block;
margin-left: 5px;
}
header .redes ul li a{}
header .redes ul li a img{
max-width: 28px;
}
header .lateral{
padding: 0;
}
header .navegador{
width: 100%;
}
header .bg-navegador{
background: #444444;
border-top: 1px solid #dcdddd;
border-bottom: 1px solid #dcdddd;
}
header .menu .navegador{}
header .menu .navegador ul{
background: none;
}
header .menu .navegador ul li{
height: inherit;
padding: 34px 0;
}
header .menu .navegador ul li.active{
background: #000 url(../images/bg-active-menu.jpg) no-repeat center bottom;
}
header .menu .navegador ul li a{
padding: 5px 0;
margin: 0;
text-align: center;
border: none;
text-transform: lowercase;
line-height: 25px;
border-right: 1px solid #EEE;
padding: 0;
}
header .menu .navegador ul li:last-child a{
border-right: 0;
}
header .menu .navegador ul li ul{
background: #FFF;
padding-top: 15px;
left: -50%;
}
header .menu .navegador ul li ul:before{
content: url('../images/bg-active-menu.jpg') close-quote;
width: 30px;
height: 15px;
left: 42%;
position: absolute;
top: -15px;
}
header .menu .navegador ul li ul li{
padding: 10px 0;
}
header .menu .navegador ul li ul li a{
text-align: left;
color: #000;
padding: 0;
margin: 0 20px;
border: 0;
font-weight: 400;
}
header .menu .navegador ul li ul li a:hover{
font-weight: 600;
}
header .menu .navegador ul li ul li a.last{
border-bottom: none;
}
.boostKeyframe{
box-shadow: 0px 2px 3px rgba(0, 0, 0, .5);
}
.alpha-menu{
/*background-color: #FFF;*/
float: right;
background: #444444;
}
.nav-tabs.nav-justified > li > a{
border-bottom: 0 !important;
border: none;
color: #FFF;
text-align: left;
border-radius: 0;
font-size: 17px;
font-weight: 300;
}
.nav-tabs.nav-justified > li > a:hover{
border: 0;
border-right: 1px solid #EEE;
}
.nav-tabs.nav-justified > li.active > a{
color: #FF8100;
font-weight: 400;
background: #000;
}
.nav-tabs.nav-justified > li:hover > a{
color: #FF8100;
}
.alpha-menu >li.am-responsive-toggle{
background-color: #FFF;
color: #333;
}
.alpha-menu >li.am-responsive-toggle:hover{
background-color: #d03435;
color: #FFF;
}
.alpha-menu >li{
/*float: right;*/
float: left;
}
.alpha-menu >li > ul,
.alpha-menu >li > ul ul,
.alpha-menu .am-multi-column,
.alpha-menu .am-multi-column >ul ul{
background-color: #ffffff;
color: #000;
}
.alpha-menu >li > ul li{}
.alpha-menu >li > ul li a{
text-transform: initial;
}
.alpha-menu .am-submenu >li{}
.alpha-menu .am-row .am-col >.am-grid-wrapper{
padding: 10px 15px 10px 35px;
}
.alpha-menu,
.alpha-menu a,
.alpha-menu a:visited{
text-transform: uppercase;
color: #5a5a5a;
font-size: 14px;
}
.alpha-menu >li:hover,
.alpha-menu >li.am-active,
.alpha-menu >li.am-opened{
/*background: #ffffff;*/
color: #c43a37;
background: #000;
}
.alpha-menu >li:hover a,
.alpha-menu >li.am-active a,
.alpha-menu >li.am-opened a{
color: #FFF;
}
.alpha-menu >li >ul li:hover,
.alpha-menu >li >ul ul li:hover,
.alpha-menu .am-multi-column li:hover,
.alpha-menu .am-multi-column >ul ul li:hover,
.alpha-menu >li >ul li.am-opened,
.alpha-menu >li >ul ul li.am-opened,
.alpha-menu .am-multi-column li.am-opened,
.alpha-menu .am-multi-column >ul ul li.am-opened{
background-color: #fff;
}
.alpha-menu >li > ul li:hover > a{
color: #000 !important;
}
.alpha-menu .am-row .am-col >.am-grid-wrapper {
background-color: inherit;
color: inherit;
border-right: 1px solid #d7d7d5;
border-radius: 0;
}
.alpha-menu .am-grid .am-row .am-col >.am-grid-wrapper.last{
border-right: none;
}
.alpha-menu >li.am-content >div ul li:hover a,
.alpha-menu >li.am-content-full >div ul li:hover a,
.alpha-menu >li.am-content >div ul li:hover a:visited,
.alpha-menu >li.am-content-full >div ul li:hover a:visited{
color: #cd1618;
}
.alpha-menu >li.am-content >div ul li a,
.alpha-menu >li.am-content-full >div ul li a,
.alpha-menu >li.am-content >div ul li a:visited,
.alpha-menu >li.am-content-full >div ul li a:visited {
color: #333;
}
/* MENU ESPECIAL */
/* EMPRESA */
/* EMPRESA */
section.empresa{}
section.empresa .bg-sec-nav{
background: #EEEEEE;
height: 54px;
}
section.empresa .sec-nav{}
section.empresa .sec-nav li{
margin: 0;
}
section.empresa .sec-nav li a{
color: #333333;
font-size: 18px;
line-height: 21px;
font-weight: 300;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0;
background-color: #EEEEEE;
padding: 17px 15px 16px;
}
section.empresa .sec-nav li a:hover{
background-color: #CCCCCC;
}
section.empresa .sec-nav li.active a{
background-color: #CCCCCC;
}
section.empresa .sec-nav li.active a:hover{
background: none;
color: #333;
}
section.empresa .historia{}
section.empresa .historia h3{
color: #0090D1;
font-size: 40px;
line-height: 48px;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
margin-bottom: 1em;
}
section.empresa .historia p{
color: #333333;
font-size: 18px;
line-height: 26px;
font-weight: 300;
}
section.empresa .cronologia{
margin: 3em 0 0;
}
section.empresa .cronologia .bg-cronologia{
background: #EEEEEE;
padding: 15px 30px;
}
section.empresa .cronologia h4{
color: #EE8F33;
font-size: 35px;
line-height: 42px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
margin-top: 0;
margin-bottom: 20px;
}
section.empresa .cronologia .cont-crono{}
section.empresa .rehen{
padding: 3em 0;
}
section.empresa .cronologia .cont-crono{
overflow: hidden;
}
section.empresa .cronologia .cont-crono img{}
section.empresa .cronologia .timeline{
padding: 1em 0 0;
}
section.empresa .cronologia .timeline .progress{
position: relative;
padding-top: 50px;
padding-left: 1.5em;
height: inherit;
margin-bottom: inherit;
background-color: inherit;
border-radius: inherit;
box-shadow: inherit;
}
section.empresa .cronologia .timeline .progress .first{
background-image: url(../images/bg_year_active.png);
height: 27px;
width: 27px;
z-index: 1000;
position: relative;
right: 21px;
top: 18px;
}
section.empresa .cronologia .timeline .progress .last{
background-image: url(../images/bg_year.png);
height: 22px;
width: 22px;
z-index: 1000;
position: relative;
float: left;
top: -6px;
left: -5px;
}
section.empresa .cronologia .timeline .progress .year{
border-left: 9px solid #999999;
min-height: 70px;
color: #000;
position: relative;
padding-bottom: 5px;
float: left;
width: 22%;
border:none;
border-top: 9px solid #999999;
}
section.empresa .cronologia .timeline .progress .year.paso{
border-top: 9px solid #FFA319;
}
section.empresa .cronologia .timeline .progress .year.lasti{
border-top: 9px solid transparent;
width: 10%;
}
section.empresa .cronologia .timeline .progress .year .bar{
background-color: #DC3E4A;
width: 0px;
left: -7px;
position: absolute;
top: -7px;
height: 5px;
}
section.empresa .cronologia .timeline .progress .year .bg{
background: url(../images/bg_year.png) no-repeat center center;
cursor: pointer;
height: 27px;
left: -7px;
position: absolute;
top: -18px;
width: 27px;
}
section.empresa .cronologia .timeline .progress .year.active .bg{
background-image: url(../images/bg_year_active.png);
}
section.empresa .cronologia .timeline .progress .year.paso .bg{
background-image: url(../images/bg_year_active-paso.png);
}
section.empresa .cronologia .timeline .progress .year .date{
/*padding-left: 20px;*/
font-size: 30px;
line-height: 36px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
cursor: pointer;
color: #FFA319;
margin: 10px 0 10px -22px;
}
section.empresa .cronologia .timeline .progress .year .date.still{
color: #CCCCCC;
}
section.empresa .cronologia .timeline .progress .year.active .text{
visibility: visible;
}
section.empresa .cronologia .timeline .progress .year .text{
padding-left: 10px;
width: 100%;
min-width: 200px;
position: relative;
z-index: 100;
visibility: hidden;
color: #000000;
font-size: 17px;
line-height: 24px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
}
section.empresa .historia .cont-logo{}
section.empresa .historia .cont-logo ul{
overflow: hidden;
margin: 4em 0;
}
section.empresa .historia .cont-logo ul li{
margin-bottom: 15px;
}
section.empresa .historia .cont-logo ul li img{}
/* ABERTURAS */
section.aberturas{
overflow: hidden;
padding: 60px 0;
}
section.aberturas .cont-aberturas{}
section.aberturas .cont-aberturas .item-aberturas{}
section.aberturas .cont-aberturas .item-aberturas .img{}
section.aberturas .cont-aberturas .item-aberturas .img img{
width: 100%;
}
section.aberturas .cont-aberturas .item-aberturas a{
display: block;
text-align: center;
background-color: inherit;
border: 0;
margin: 0;
cursor: pointer;
}
section.aberturas .cont-aberturas .item-aberturas a span{
color: #F09022;
font-size: 17px;
line-height: 21px;
font-weight: 400;
margin: 20px 0;
width: 100%;
display: block;
}
section.aberturas .cont-aberturas .item-aberturas a:hover span{
color: #000;
}
section .cont-miga{}
section .miga{
padding: 0 0 20px;
}
section .miga div{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section .miga div a{
color: #878787;
text-decoration: none;
position: relative;
font-size: 18px;
line-height: 21px;
}
section .miga div a.arrow{
padding: 0 35px 0 0;
}
section .miga div a.arrow:after{
content: "";
width: 20px;
height: 24px;
position: absolute;
right: 8px;
top: 0px;
font-size: 18px;
background: url(../images/arrow-miga.jpg) no-repeat center 10px;
}
/* ABERTURAS DETALLE */
section.aberturas .carousel-control {
border: none;
position: absolute;
top: inherit;
left: inherit;
bottom: 3px;
width: 26px;
height: 26px;
}
section.aberturas .carousel-control.post {top: 50%;}
section.aberturas .carousel-control.left.post {left: 0;}
section.aberturas .carousel-control.left {
left: 40%;
background: url('../images/arrow-left.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.aberturas .carousel-control.right {
right: 40%;
background: url('../images/arrow-right.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.aberturas .cont-aberturas .item-detalle{}
section.aberturas .cont-aberturas .item-detalle .slider-detalle{
vertical-align: top;
position: relative;
margin-bottom: 2em;
}
section.aberturas .cont-aberturas .item-detalle .main-desc{
vertical-align: top;
position: relative;
}
section.aberturas .cont-aberturas .item-detalle .main-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #878787;
margin-top: 0;
margin-bottom: 15px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 110px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p.tit{
color: #868686;
padding-bottom: 0;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo{
position: absolute;
bottom: 2px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo a{
text-transform: uppercase;
color: #FFF;
font-size: 18px;
line-height: 21px;
font-weight: 600;
text-align: center;
padding: 15px 25px;
border-radius: 0;
border: none;
background: #FF8100;
margin-right: 10px;
margin-bottom: 5px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo a:hover{
background: #DBDBDB;
}
section.aberturas .cont-aberturas .item-ficha{
margin-top: 30px;
position: relative;
}
section.aberturas .cont-aberturas .item-ficha .nav{}
section.aberturas .cont-aberturas .item-ficha .nav li{}
section.aberturas .cont-aberturas .item-ficha .nav li a{
text-align: center;
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: #878787;
border: 0;
padding: 12px;
background: #DDDDDD;
}
section.aberturas .cont-aberturas .item-ficha .nav li.active a{
background: #000;
}
section.aberturas .cont-aberturas .item-ficha .tab-content{}
section.aberturas .cont-aberturas .item-ficha .tab-content .tab-pane{}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-tipos{
padding: 30px 0 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.aberturas .item-tipo{
width: 18%;
float: left;
margin-right: 2%;
}
section.aberturas .cont-item-tipos :last-child {
margin-right: 0;
}
section.aberturas .item-tipo .img{
display: block;
overflow: hidden;
position: relative;
}
section.aberturas .item-tipo .img img{}
section.aberturas .item-tipo a span{
text-align: center;
padding: 20px 0;
color: #32398D;
font-size: 18px;
line-height: 21px;
display: block;
}
section.aberturas .item-tipo .img .overlay{
background: #32398D;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 10;
opacity: 0;
text-align: center;
cursor: pointer;
}
section.aberturas .item-tipo .img:hover .overlay{
display: block !important;
opacity: 1 !important;
}
section.aberturas .item-tipo .img .overlay span{
width: 100%;
color: #FFF;
font-size: 18px;
line-height: 21px;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 64px;
font-weight: 300;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
background: #EEEEEE;
position: absolute;
top: -5%;
padding: 4em 2em;
left: 0;
width: 70%;
z-index: 100;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
background: url("../images/btn-close.jpg") no-repeat center top;
width: 32px;
height: 40px;
display: block;
font-size: 48px;
font-weight: 600;
position: absolute;
right: 6%;
top: 12%;
border: 0;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
color: #32398D;
font-size: 34px;
line-height: 44px;
font-weight: 400;
text-align: center;
text-transform: uppercase;
margin-bottom: 1em;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
text-align: center;
color: #333333;
font-size: 22px;
line-height: 28px;
font-weight: 300;
margin: 0 auto;
width: 80%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas{
padding: 40px 0 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider{
padding-left: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider .slide .item img{
width: 100%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas{}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas h5{
font-size: 21px;
line-height: 24px;
font-weight: 600;
color: #333333;
margin-top: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas p{
font-size: 18px;
line-height: 21px;
font-weight: 300;
color: #333333;
}
section.aberturas .cont-aberturas .cont-item-ventajas{
padding: 50px 0 0;
overflow: hidden;
}
section.aberturas .cont-aberturas .cont-item-ventajas a{
cursor: pointer;
text-decoration: none;
}
section.aberturas .cont-aberturas .cont-item-ventajas a img{}
section.aberturas .cont-aberturas .cont-item-ventajas a span{
width: 100%;
text-align: center;
display: block;
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: #868686;
padding: 10px 0;
text-decoration: none;
}
section.aberturas .cont-aberturas .cont-item-ventajas a:hover span{
color: #FF8100;
}
/* PRODUCTOS */
section.productos{
overflow: hidden;
padding: 60px 0;
}
section.productos .cont-productos{}
section.productos .cont-productos .row{
margin-bottom: 1em;
}
section.productos .cont-productos .item-producto{}
section.productos .cont-productos .item-producto .img{}
section.productos .cont-productos .item-producto .img img{
width: 100%;
}
section.productos .cont-productos .item-producto a{
display: block;
text-align: center;
background-color: inherit;
border: 0;
margin: 0;
cursor: pointer;
}
section.productos .cont-productos .item-producto a span{
color: #F09022;
font-size: 17px;
line-height: 21px;
font-weight: 400;
margin: 20px 0;
width: 100%;
display: block;
}
section.productos .cont-productos .item-producto a:hover span{
color: #000;
}
section.productos .carousel-control {
border: none;
position: absolute;
top: inherit;
left: inherit;
bottom: 0;
width: 26px;
height: 26px;
}
section.productos .carousel-control.post {top: 50%;}
section.productos .carousel-control.left.post {left: 0;}
section.productos .carousel-control.left {
left: 40%;
background: url('../images/arrow-left.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.productos .carousel-control.right {
right: 40%;
background: url('../images/arrow-right.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.productos .cont-productos .item-detalle{}
section.productos .cont-productos .item-detalle .slider-detalle{
vertical-align: top;
position: relative;
margin-bottom: 2em;
}
section.productos .cont-productos .item-detalle .main-desc{
vertical-align: top;
position: relative;
}
section.productos .cont-productos .item-detalle .main-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #878787;
margin-top: 0;
margin-bottom: 15px;
}
section.productos .cont-productos .item-detalle .main-desc h2.naranja{
color: #FF7F00;
}
section.productos .cont-productos .item-detalle .main-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 40px;
}
section.productos .cont-productos .item-detalle .main-desc p.tit{
color: #868686;
padding-bottom: 0;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo{
position: absolute;
bottom: 2px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo a{
text-transform: uppercase;
color: #FFF;
font-size: 18px;
line-height: 21px;
font-weight: 600;
text-align: center;
padding: 15px 25px;
border-radius: 0;
border: none;
background: #FF8100;
margin-right: 10px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo a:hover{
background: #DBDBDB;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: absolute;
bottom: 2px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca img{}
section.productos .galeria{
margin: 1em 0 2em;
}
section.productos .galeria .big{}
section.productos .galeria .big img{
width: 100%;
}
section.productos .galeria .thumb{}
section.productos .galeria .thumb ul{
padding: 15px 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.productos .galeria .thumb ul li{
margin: 0 15px 0 0;
max-width: 10%;
}
section.productos .galeria .thumb ul li:last-child{
margin: 0;
}
section.productos .galeria .thumb ul li a{}
section.productos .galeria .thumb ul li a img{}
section.productos .gale-desc{}
section.productos .gale-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #FF7F00;
margin-top: 0;
margin-bottom: 15px;
}
section.productos .gale-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 40px;
}
section.productos .gale-desc p.tit{
color: #868686;
padding-bottom: 0;
}
/* SERVICIOS */
section.servicios{
overflow: hidden;
padding: 60px 0;
}
section.servicios .cont-servicios{}
section.servicios .cont-servicios .item-servicio{}
section.servicios .cont-servicios .item-servicio a{
background: #EFEFEF;
padding: 3em 1em;
text-decoration: none;
cursor: pointer;
display: block;
overflow: hidden;
margin-bottom: 30px;
}
section.servicios .cont-servicios .item-servicio a img{
}
section.servicios .cont-servicios .item-servicio a span{
width: 100%;
display: block;
text-align: center;
font-size: 21px;
line-height: 26px;
font-weight: 400;
color: #111111;
margin: 10px 0;
}
section.servicios .cont-servicios .item-servicio:hover a span{
color: #FF9933;
}
/* IMAGEN 100%FULL RESPONSIVE */
.img-main-sec{
overflow: hidden;
}
.img-main-sec img{
width: 100%;
}
/* CONTACTO */
section.contacto{
padding: 1em 0;
overflow: hidden;
}
section.contacto h3{
font-size: 35px;
line-height: 40px;
color: #CC5100;
text-transform: uppercase;
}
section.contacto p.sub{
background: #F9F9F9;
color: #333333;
font-size: 16px;
line-height: 18px;
/*font-family: "Myriad Pro Regular";*/
padding: 5px 10px;
margin: 0 15px;
}
section.contacto .form-contacto form{
margin: 2em 0;
}
section.contacto .form-group{
margin-bottom: 15px;
}
section.contacto .form-group input{
background: none;
border: 1px solid #CCCCCC;
border-radius: 0;
color: #333333;
}
section.contacto .form-group textarea{
width: 100%;
background: none;
border: 1px solid #CCCCCC;
border-radius: 0;
color: #333333;
padding: 15px;
}
section.contacto .terminos{
padding-bottom: 2em;
overflow: hidden;
}
section.contacto .cont-captcha{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.contacto .cont-captcha img{
background: #FFF;
}
section.contacto .checkbox{
margin-left: 15px;
}
section.contacto .checkbox label{
display: inline;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
font-size: 15px;
text-decoration: underline;
color: #000000;
}
section.contacto .terminos .aceptar{}
section.contacto .terminos .aceptar .checkbox{
margin: 10px 0 15px 0;
}
section.contacto .terminos .aceptar .checkbox label{
color: #999999;
font-size: 14px;
line-height: 16px;
}
section.contacto .terminos .aceptar .checkbox label input{}
section.contacto .terminos button{
border-radius: 0;
background: #FF991E;
color: #FFF;
text-transform: uppercase;
font-weight: 400;
border: 0;
font-size: 16px;
line-height: 18px;
padding: 12px;
}
section.contacto .terminos button:hover{
background: #000;
}
section.contacto .terminos .mobile{
overflow: hidden;
padding: 0;
}
section.contacto .terminos .mobile button{}
section.contacto .form-group textarea::-webkit-input-placeholder,
section.contacto .form-group input::-webkit-input-placeholder{
color: #000;
}
section.contacto .form-group textarea:-moz-placeholder,
section.contacto .form-group input:-moz-placeholder { /* Firefox 18- */
color: #000;
}
section.contacto .form-group textarea::-moz-placeholder,
section.contacto .form-group input::-moz-placeholder { /* Firefox 19+ */
color: #000;
}
section.contacto .form-group textarea:-ms-input-placeholder,
section.contacto .form-group input:-ms-input-placeholder {
color: #000;
}
section.contacto .sucursales{}
section.contacto .sucursales .centrado{
overflow: hidden;
padding: 0 0 0 4em;
}
section.contacto .sucursales .item-sucursales{
overflow: hidden;
border-bottom: 1px solid #CCCCCC;
padding: 1em 0 3em;
margin: 0 0 2em;
}
section.contacto .sucursales .item-sucursales img{
float: left;
}
section.contacto .sucursales .item-sucursales .dire{
float: left;
margin-left: 15px;
}
section.contacto .sucursales .item-sucursales .dire h5{
color: #FF9933;
font-size: 18px;
line-height: 21px;
font-weight: 600;
margin: 0 0 10px;
}
section.contacto .sucursales .item-sucursales .dire p{
color: #666666;
font-size: 18px;
line-height: 21px;
font-weight: 300;
}
/* FOOTER */
footer{
background: #000;
padding: 10px 0 40px 0;
}
footer .container{}
footer .container.menu-footer{
padding: 20px 0 0;
}
footer div h4{
font-weight: 400;
color: #FFF;
font-size: 16px;
margin-bottom: 20px;
}
footer div ul{
padding: 0;
overflow: hidden;
}
footer div ul li{
color: #FFF;
font-size: 16px;
}
footer div ul li a{
color: #FFF;
font-size: 14px;
}
footer .sitemap{}
footer .sitemap ul{}
footer .sitemap ul li{}
footer .sitemap ul li a{
display: block;
overflow: hidden;
padding-left: 0;
padding-right: 0;
color: #B3BAC1;
font-size: 16px;
line-height: 24px;
text-decoration: none;
}
footer .logo-footer{
overflow: hidden;
}
footer .logo-footer ul{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
padding: 3em 0;
}
footer .logo-footer ul li{
display: inline-block;
margin-right: 1em;
}
footer .logo-footer ul li:last-child{
margin-right: 0;
}
footer .logo-footer ul li img{}
footer .n-datos{
color: #000;
padding: 10px 0 0 2em;
overflow: hidden;
}
footer .n-datos img{
margin-bottom: 10px;
}
footer .n-datos a{
color: #B3BAC1;
font-weight: 400;
font-size: 15px;
margin: 0 0 10px;
text-decoration: none;
}
footer .n-datos .dat{
padding-left: 0;
padding-right: 0;
}
footer .n-datos h6{
font-size: 15px;
font-weight: 600;
}
footer .n-datos p{
color: #B3BAC1;
font-size: 15px;
margin: 0 0 10px;
}
footer .n-datos p.dire{}
footer .n-datos p.tel{}
footer .n-datos p.contacto{}
footer .n-datos p.dire img{
margin: 0 15px 0 0;
}
footer .n-datos p.tel img{
margin: -4px 15px 0 0;
}
footer .n-datos p.contacto img{
margin: -4px 15px 0 0;
}
footer .num-ref h5{
color: #FFF;
font-size: 16px;
font-weight: bold;
}
footer .num-ref .input-group{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
footer .num-ref .input-group input{
border-radius: 0;
height: 38px;
}
footer .num-ref .input-group span{
width: inherit;
}
footer .num-ref .input-group span button{
border-radius: 0;
border: none;
background: #171c5a;
height: 38px;
}
/* FOOTER */
/**** RUSSO STYLES ****/
/* MEDIA QUERIES / MEDIA QUERIES / MEDIA QUERIES / MEDIA QUERIES */
/* Extra Small - XS */
@media(max-width:767px){
.floatInherit{
float: left !important;
}
header .logo a{
margin-top: 12px;
}
header .menu{}
.navbar-toggle{
margin-top: 3.2em;
}
header .bg-navegador {
background: none;
}
header .menu .navbar{
z-index: 1000;
}
header .menu .navbar .navbar-collapse{
background: #FFF;
width: 100%;
padding-right: 0;
padding-left: 0;
}
header .menu.container{
padding-left: 0;
padding-right: 0;
}
header .menu .navegador ul li a{
padding: 10px 20px;
font-size: 14px;
text-align: left;
border-bottom: 1px solid #555 !important;
line-height: 30px;
}
header .menu .navegador ul li{
padding: 0;
}
header .menu .navbar-brand{
padding: 50px 0;
}
header .menu .navbar-brand img{
max-width: 250px;
}
header .menu .navbar .navbar-collapse.in{
overflow: inherit;
}
header .menu .navbar .navbar-collapse ul{
box-shadow: 0px 2px 3px rgba(0, 0, 0, .5);
}
header .menu .navbar-nav > li > a{
font-size: 12px;
padding: 56px 15px;
}
.alpha-menu.am-response-margin >li >ul,
.alpha-menu.am-response-margin li >div{
margin-left: 20px !important;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a{
color: #FFF;
padding: 10px 0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover{
color: #DDD;
}
footer .n-datos{
padding-right: 15px;
padding-left: 15px;
}
header .menu .navegador ul li ul{
left: 0;
padding: 0;
}
header .menu .navegador ul li ul li{
min-height: 30px;
padding-right: 15px;
}
header .menu .navegador ul li ul li a{
line-height: 30px;
border-bottom: 0 !important;
}
section.empresa .bg-sec-nav{
height: 108px;
}
section.empresa .bg-sec-nav .container{
padding-left: 0;
padding-right: 0;
}
section.empresa .historia .cont-logo ul li{
display: block;
width: 100%;
overflow: hidden;
}
section.aberturas,
section.productos{
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
}
section.aberturas .cont-aberturas .item-aberturas {
padding-left: 0;
padding-right: 0;
}
section .cont-miga{
padding-left: 0;
padding-right: 0;
}
section .miga {
padding: 10px 0 20px;
}
section.productos .cont-productos .row{
margin-bottom: inherit;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p,
section.productos .cont-productos .item-detalle .main-desc p{
padding-bottom: 10px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc{
margin-bottom: 15px;
display: initial;
}
section.productos .cont-productos .item-detalle .main-desc{
margin-bottom: 15px;
display: initial;
padding-left: 0;
padding-right: 0;
}
section.aberturas .cont-aberturas .item-detalle .slider-detalle{
display: initial;
}
section.productos .cont-productos .item-detalle .slider-detalle{
display: initial;
padding-left: 0;
padding-right: 0;
}
section .carousel-inner > .item > img,
section .carousel-inner > .item > a > img{
width: 100%;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo,
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo{
position: relative;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 38px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
width: 100%;
top: -15%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
font-size: 30px;
line-height: 34px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
font-size: 18px;
line-height: 28px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
-webkit-background-size: 70%;
background-size: 70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 24px;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider{
padding-right: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas{
padding-left: 0;
padding-right: 0;
}
section.aberturas .cont-aberturas .cont-item-ventajas a span{
font-size: 18px;
line-height: 21px;
}
section.aberturas .cont-aberturas .cont-item-ventajas a img {
padding: 1em;
}
section.servicios{
padding: 15px 0;
}
section.servicios .cont-servicios .item-servicio{
padding-left: 0;
padding-right: 0;
}
section.servicios .cont-servicios .item-servicio a{
margin-bottom: 15px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: relative;
}
section.contacto .cont-captcha{
display: inherit;
width: 100%;
}
section.contacto .terminos .aceptar {
display: block;
width: 100%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-tipos{
display: block;
}
section.aberturas .item-tipo a span{
font-size: 14px;
word-wrap: break-word;
}
}
/* Small - SM */
@media(min-width:768px) and (max-width:991px){
header .logo a{
margin-top: 12px;
}
header .menu .navegador ul li a{
font-size: 14px;
}
header .menu .navegador ul li ul{
left: -100%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
width: 100%;
top: -15%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
font-size: 30px;
line-height: 34px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
font-size: 18px;
line-height: 28px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
-webkit-background-size: 70%;
background-size: 70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 34px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: relative;
}
}
/* Medium - MD */
@media(min-width:992px) and (max-width:1199px){
header .logo a{
margin-top: 5px;
}
header .menu .navegador ul li a{
font-size: 14px;
}
header .menu .navegador ul li ul{
left: -70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 44px;
}
}
/* Large - LG */
@media(min-width:1200px){} | public/app/scripts/russo-styles.css | html
{
height: 100%;
width: 100%;
}
body{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
font-family: 'Source Sans Pro', sans-serif;
font-size: 14px;
font-weight: 100%;
color: #000;
background-color: #FFF;
font-weight: normal;
overflow-x: hidden;
overflow-y:auto;
}
.box{
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box- align: center;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box- align: center;
display: box;
box-orient: horizontal;
box-pack: center;
box- align: center;
}
body *{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
behavior: url(boxsizing.htc);
}
* {
margin: 0;
padding: 0;
}
img {
border: 0;
}
a {
text-decoration: none;
color: #ffffff;
}
object,
image {
vertical-align: top;
border: 0;
padding: 0;
margin: 0;
}
img {
float: left;
display: block;
}
.floatInherit{
float: inherit !important;
}
.w100{
width: 100%;
}
.clear{
clear: both;
height: 0px;
display: block;
}
.dNone{
display: none;
}
.center{
margin:0 auto;
display: block;
}
.centeredX{
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.centeredY{
position: relative;
top: 50% !important;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.centeredXY{
position: relative;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.before:before,
.after:after{
content: '';
}
.full-size{
width:100% !important;
}
.pointer{
cursor:pointer;
}
.table{
display: table;
width: 100%;
margin:0 auto;
}
.table > *{
display: table-cell;
vertical-align: middle
}
.anima1{
-webkit-transition:all .1s linear;
-o-transition:all .1s linear;
-moz-transition:all .1s linear;
-ms-transition:all .1s linear;
transition:all .1s linear;
}
.anima2{
-webkit-transition:all .2s linear;
-o-transition:all .2s linear;
-moz-transition:all .2s linear;
-ms-transition:all .2s linear;
transition:all .2s linear;
}
/**** RUSSO STYLES ****/
/* MENU ESPECIAL */
header{
padding: 0;
background: #000;
}
header .menu{
position: relative;
}
header .logo{
margin: 1em 0;
overflow: hidden;
}
header .logo a{
overflow: hidden;
display: block;
}
header .logo a img{}
header .redes{
z-index: 1;
position: absolute;
right: 2em;
top: 5px;
}
header .redes ul{}
header .redes ul li{
display: inline-block;
margin-left: 5px;
}
header .redes ul li a{}
header .redes ul li a img{
max-width: 28px;
}
header .lateral{
padding: 0;
}
header .navegador{
width: 100%;
}
header .bg-navegador{
background: #444444;
border-top: 1px solid #dcdddd;
border-bottom: 1px solid #dcdddd;
}
header .menu .navegador{}
header .menu .navegador ul{
background: none;
}
header .menu .navegador ul li{
height: inherit;
padding: 34px 0;
}
header .menu .navegador ul li.active{
background: #000 url(../images/bg-active-menu.jpg) no-repeat center bottom;
}
header .menu .navegador ul li a{
padding: 5px 0;
margin: 0;
text-align: center;
border: none;
text-transform: lowercase;
line-height: 25px;
border-right: 1px solid #EEE;
padding: 0;
}
header .menu .navegador ul li:last-child a{
border-right: 0;
}
header .menu .navegador ul li ul{
background: #FFF;
padding-top: 15px;
left: -50%;
}
header .menu .navegador ul li ul:before{
content: url('../images/bg-active-menu.jpg') close-quote;
width: 30px;
height: 15px;
left: 42%;
position: absolute;
top: -15px;
}
header .menu .navegador ul li ul li{
padding: 10px 0;
}
header .menu .navegador ul li ul li a{
text-align: left;
color: #000;
padding: 0;
margin: 0 20px;
border: 0;
font-weight: 400;
}
header .menu .navegador ul li ul li a:hover{
font-weight: 600;
}
header .menu .navegador ul li ul li a.last{
border-bottom: none;
}
.boostKeyframe{
box-shadow: 0px 2px 3px rgba(0, 0, 0, .5);
}
.alpha-menu{
/*background-color: #FFF;*/
float: right;
background: #444444;
}
.nav-tabs.nav-justified > li > a{
border-bottom: 0 !important;
border: none;
color: #FFF;
text-align: left;
border-radius: 0;
font-size: 17px;
font-weight: 300;
}
.nav-tabs.nav-justified > li > a:hover{
border: 0;
border-right: 1px solid #EEE;
}
.nav-tabs.nav-justified > li.active > a{
color: #FF8100;
font-weight: 400;
background: #000;
}
.nav-tabs.nav-justified > li:hover > a{
color: #FF8100;
}
.alpha-menu >li.am-responsive-toggle{
background-color: #FFF;
color: #333;
}
.alpha-menu >li.am-responsive-toggle:hover{
background-color: #d03435;
color: #FFF;
}
.alpha-menu >li{
/*float: right;*/
float: left;
}
.alpha-menu >li > ul,
.alpha-menu >li > ul ul,
.alpha-menu .am-multi-column,
.alpha-menu .am-multi-column >ul ul{
background-color: #ffffff;
color: #000;
}
.alpha-menu >li > ul li{}
.alpha-menu >li > ul li a{
text-transform: initial;
}
.alpha-menu .am-submenu >li{}
.alpha-menu .am-row .am-col >.am-grid-wrapper{
padding: 10px 15px 10px 35px;
}
.alpha-menu,
.alpha-menu a,
.alpha-menu a:visited{
text-transform: uppercase;
color: #5a5a5a;
font-size: 14px;
}
.alpha-menu >li:hover,
.alpha-menu >li.am-active,
.alpha-menu >li.am-opened{
/*background: #ffffff;*/
color: #c43a37;
background: #000;
}
.alpha-menu >li:hover a,
.alpha-menu >li.am-active a,
.alpha-menu >li.am-opened a{
color: #FFF;
}
.alpha-menu >li >ul li:hover,
.alpha-menu >li >ul ul li:hover,
.alpha-menu .am-multi-column li:hover,
.alpha-menu .am-multi-column >ul ul li:hover,
.alpha-menu >li >ul li.am-opened,
.alpha-menu >li >ul ul li.am-opened,
.alpha-menu .am-multi-column li.am-opened,
.alpha-menu .am-multi-column >ul ul li.am-opened{
background-color: #fff;
}
.alpha-menu >li > ul li:hover > a{
color: #000 !important;
}
.alpha-menu .am-row .am-col >.am-grid-wrapper {
background-color: inherit;
color: inherit;
border-right: 1px solid #d7d7d5;
border-radius: 0;
}
.alpha-menu .am-grid .am-row .am-col >.am-grid-wrapper.last{
border-right: none;
}
.alpha-menu >li.am-content >div ul li:hover a,
.alpha-menu >li.am-content-full >div ul li:hover a,
.alpha-menu >li.am-content >div ul li:hover a:visited,
.alpha-menu >li.am-content-full >div ul li:hover a:visited{
color: #cd1618;
}
.alpha-menu >li.am-content >div ul li a,
.alpha-menu >li.am-content-full >div ul li a,
.alpha-menu >li.am-content >div ul li a:visited,
.alpha-menu >li.am-content-full >div ul li a:visited {
color: #333;
}
/* MENU ESPECIAL */
/* EMPRESA */
/* EMPRESA */
section.empresa{}
section.empresa .bg-sec-nav{
background: #EEEEEE;
height: 54px;
}
section.empresa .sec-nav{}
section.empresa .sec-nav li{
margin: 0;
}
section.empresa .sec-nav li a{
color: #333333;
font-size: 18px;
line-height: 21px;
font-weight: 300;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 0;
background-color: #EEEEEE;
padding: 17px 15px 16px;
}
section.empresa .sec-nav li a:hover{
background-color: #CCCCCC;
}
section.empresa .sec-nav li.active a{
background-color: #CCCCCC;
}
section.empresa .sec-nav li.active a:hover{
background: none;
color: #333;
}
section.empresa .historia{}
section.empresa .historia h3{
color: #0090D1;
font-size: 40px;
line-height: 48px;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
margin-bottom: 1em;
}
section.empresa .historia p{
color: #333333;
font-size: 18px;
line-height: 26px;
font-weight: 300;
}
section.empresa .cronologia{
margin: 3em 0 0;
}
section.empresa .cronologia .bg-cronologia{
background: #EEEEEE;
padding: 15px 30px;
}
section.empresa .cronologia h4{
color: #EE8F33;
font-size: 35px;
line-height: 42px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
margin-top: 0;
margin-bottom: 20px;
}
section.empresa .cronologia .cont-crono{}
section.empresa .rehen{
padding: 3em 0;
}
section.empresa .cronologia .cont-crono{
overflow: hidden;
}
section.empresa .cronologia .cont-crono img{}
section.empresa .cronologia .timeline{
padding: 1em 0 0;
}
section.empresa .cronologia .timeline .progress{
position: relative;
padding-top: 50px;
padding-left: 1.5em;
height: inherit;
margin-bottom: inherit;
background-color: inherit;
border-radius: inherit;
box-shadow: inherit;
}
section.empresa .cronologia .timeline .progress .first{
background-image: url(../images/bg_year_active.png);
height: 27px;
width: 27px;
z-index: 1000;
position: relative;
right: 21px;
top: 18px;
}
section.empresa .cronologia .timeline .progress .last{
background-image: url(../images/bg_year.png);
height: 22px;
width: 22px;
z-index: 1000;
position: relative;
float: left;
top: -6px;
left: -5px;
}
section.empresa .cronologia .timeline .progress .year{
border-left: 9px solid #999999;
min-height: 70px;
color: #000;
position: relative;
padding-bottom: 5px;
float: left;
width: 22%;
border:none;
border-top: 9px solid #999999;
}
section.empresa .cronologia .timeline .progress .year.paso{
border-top: 9px solid #FFA319;
}
section.empresa .cronologia .timeline .progress .year.lasti{
border-top: 9px solid transparent;
width: 10%;
}
section.empresa .cronologia .timeline .progress .year .bar{
background-color: #DC3E4A;
width: 0px;
left: -7px;
position: absolute;
top: -7px;
height: 5px;
}
section.empresa .cronologia .timeline .progress .year .bg{
background: url(../images/bg_year.png) no-repeat center center;
cursor: pointer;
height: 27px;
left: -7px;
position: absolute;
top: -18px;
width: 27px;
}
section.empresa .cronologia .timeline .progress .year.active .bg{
background-image: url(../images/bg_year_active.png);
}
section.empresa .cronologia .timeline .progress .year.paso .bg{
background-image: url(../images/bg_year_active-paso.png);
}
section.empresa .cronologia .timeline .progress .year .date{
/*padding-left: 20px;*/
font-size: 30px;
line-height: 36px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
cursor: pointer;
color: #FFA319;
margin: 10px 0 10px -22px;
}
section.empresa .cronologia .timeline .progress .year .date.still{
color: #CCCCCC;
}
section.empresa .cronologia .timeline .progress .year.active .text{
visibility: visible;
}
section.empresa .cronologia .timeline .progress .year .text{
padding-left: 10px;
width: 100%;
min-width: 200px;
position: relative;
z-index: 100;
visibility: hidden;
color: #000000;
font-size: 17px;
line-height: 24px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
}
section.empresa .historia .cont-logo{}
section.empresa .historia .cont-logo ul{
overflow: hidden;
margin: 4em 0;
}
section.empresa .historia .cont-logo ul li{
margin-bottom: 15px;
}
section.empresa .historia .cont-logo ul li img{}
/* ABERTURAS */
section.aberturas{
overflow: hidden;
padding: 60px 0;
}
section.aberturas .cont-aberturas{}
section.aberturas .cont-aberturas .item-aberturas{}
section.aberturas .cont-aberturas .item-aberturas .img{}
section.aberturas .cont-aberturas .item-aberturas .img img{
width: 100%;
}
section.aberturas .cont-aberturas .item-aberturas a{
display: block;
text-align: center;
background-color: inherit;
border: 0;
margin: 0;
cursor: pointer;
}
section.aberturas .cont-aberturas .item-aberturas a span{
color: #F09022;
font-size: 17px;
line-height: 21px;
font-weight: 400;
margin: 20px 0;
width: 100%;
display: block;
}
section.aberturas .cont-aberturas .item-aberturas a:hover span{
color: #000;
}
section .cont-miga{}
section .miga{
padding: 0 0 20px;
}
section .miga div{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section .miga div a{
color: #878787;
text-decoration: none;
position: relative;
font-size: 18px;
line-height: 21px;
}
section .miga div a.arrow{
padding: 0 35px 0 0;
}
section .miga div a.arrow:after{
content: "";
width: 20px;
height: 24px;
position: absolute;
right: 8px;
top: 0px;
font-size: 18px;
background: url(../images/arrow-miga.jpg) no-repeat center 10px;
}
/* ABERTURAS DETALLE */
section.aberturas .carousel-control {
border: none;
position: absolute;
top: inherit;
left: inherit;
bottom: 3px;
width: 26px;
height: 26px;
}
section.aberturas .carousel-control.post {top: 50%;}
section.aberturas .carousel-control.left.post {left: 0;}
section.aberturas .carousel-control.left {
left: 40%;
background: url('../images/arrow-left.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.aberturas .carousel-control.right {
right: 40%;
background: url('../images/arrow-right.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.aberturas .cont-aberturas .item-detalle{}
section.aberturas .cont-aberturas .item-detalle .slider-detalle{
vertical-align: top;
position: relative;
margin-bottom: 2em;
}
section.aberturas .cont-aberturas .item-detalle .main-desc{
vertical-align: top;
position: relative;
}
section.aberturas .cont-aberturas .item-detalle .main-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #878787;
margin-top: 0;
margin-bottom: 15px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 110px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p.tit{
color: #868686;
padding-bottom: 0;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo{
position: absolute;
bottom: 2px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo a{
text-transform: uppercase;
color: #FFF;
font-size: 18px;
line-height: 21px;
font-weight: 600;
text-align: center;
padding: 15px 25px;
border-radius: 0;
border: none;
background: #FF8100;
margin-right: 10px;
margin-bottom: 5px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo a:hover{
background: #DBDBDB;
}
section.aberturas .cont-aberturas .item-ficha{
margin-top: 30px;
position: relative;
}
section.aberturas .cont-aberturas .item-ficha .nav{}
section.aberturas .cont-aberturas .item-ficha .nav li{}
section.aberturas .cont-aberturas .item-ficha .nav li a{
text-align: center;
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: #878787;
border: 0;
padding: 12px;
background: #DDDDDD;
}
section.aberturas .cont-aberturas .item-ficha .nav li.active a{
background: #000;
}
section.aberturas .cont-aberturas .item-ficha .tab-content{}
section.aberturas .cont-aberturas .item-ficha .tab-content .tab-pane{}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-tipos{
padding: 30px 0 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.aberturas .item-tipo{
width: 18%;
float: left;
margin-right: 2%;
}
section.aberturas .cont-item-tipos :last-child {
margin-right: 0;
}
section.aberturas .item-tipo .img{
display: block;
overflow: hidden;
position: relative;
}
section.aberturas .item-tipo .img img{}
section.aberturas .item-tipo a span{
text-align: center;
padding: 20px 0;
color: #32398D;
font-size: 18px;
line-height: 21px;
display: block;
}
section.aberturas .item-tipo .img .overlay{
background: #32398D;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 10;
opacity: 0;
text-align: center;
cursor: pointer;
}
section.aberturas .item-tipo .img:hover .overlay{
display: block !important;
opacity: 1 !important;
}
section.aberturas .item-tipo .img .overlay span{
width: 100%;
color: #FFF;
font-size: 18px;
line-height: 21px;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 64px;
font-weight: 300;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
background: #EEEEEE;
position: absolute;
top: -5%;
padding: 4em 2em;
left: 0;
width: 70%;
z-index: 100;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
background: url("../images/btn-close.jpg") no-repeat center top;
width: 32px;
height: 40px;
display: block;
font-size: 48px;
font-weight: 600;
position: absolute;
right: 6%;
top: 12%;
border: 0;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
color: #32398D;
font-size: 34px;
line-height: 44px;
font-weight: 400;
text-align: center;
text-transform: uppercase;
margin-bottom: 1em;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
text-align: center;
color: #333333;
font-size: 22px;
line-height: 28px;
font-weight: 300;
margin: 0 auto;
width: 80%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas{
padding: 40px 0 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider{
padding-left: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider .slide .item img{
width: 100%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas{}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas h5{
font-size: 21px;
line-height: 24px;
font-weight: 600;
color: #333333;
margin-top: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas p{
font-size: 18px;
line-height: 21px;
font-weight: 300;
color: #333333;
}
section.aberturas .cont-aberturas .cont-item-ventajas{
padding: 50px 0 0;
overflow: hidden;
}
section.aberturas .cont-aberturas .cont-item-ventajas a{
cursor: pointer;
text-decoration: none;
}
section.aberturas .cont-aberturas .cont-item-ventajas a img{}
section.aberturas .cont-aberturas .cont-item-ventajas a span{
width: 100%;
text-align: center;
display: block;
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: #868686;
padding: 10px 0;
text-decoration: none;
}
section.aberturas .cont-aberturas .cont-item-ventajas a:hover span{
color: #FF8100;
}
/* PRODUCTOS */
section.productos{
overflow: hidden;
padding: 60px 0;
}
section.productos .cont-productos{}
section.productos .cont-productos .row{
margin-bottom: 1em;
}
section.productos .cont-productos .item-producto{}
section.productos .cont-productos .item-producto .img{}
section.productos .cont-productos .item-producto .img img{
width: 100%;
}
section.productos .cont-productos .item-producto a{
display: block;
text-align: center;
background-color: inherit;
border: 0;
margin: 0;
cursor: pointer;
}
section.productos .cont-productos .item-producto a span{
color: #F09022;
font-size: 17px;
line-height: 21px;
font-weight: 400;
margin: 20px 0;
width: 100%;
display: block;
}
section.productos .cont-productos .item-producto a:hover span{
color: #000;
}
section.productos .carousel-control {
border: none;
position: absolute;
top: inherit;
left: inherit;
bottom: 0;
width: 26px;
height: 26px;
}
section.productos .carousel-control.post {top: 50%;}
section.productos .carousel-control.left.post {left: 0;}
section.productos .carousel-control.left {
left: 40%;
background: url('../images/arrow-left.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.productos .carousel-control.right {
right: 40%;
background: url('../images/arrow-right.png') no-repeat center center;
background-color: rgba(255, 129, 0, 0.7);
}
section.productos .cont-productos .item-detalle{}
section.productos .cont-productos .item-detalle .slider-detalle{
vertical-align: top;
position: relative;
margin-bottom: 2em;
}
section.productos .cont-productos .item-detalle .main-desc{
vertical-align: top;
position: relative;
}
section.productos .cont-productos .item-detalle .main-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #878787;
margin-top: 0;
margin-bottom: 15px;
}
section.productos .cont-productos .item-detalle .main-desc h2.naranja{
color: #FF7F00;
}
section.productos .cont-productos .item-detalle .main-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 40px;
}
section.productos .cont-productos .item-detalle .main-desc p.tit{
color: #868686;
padding-bottom: 0;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo{
position: absolute;
bottom: 2px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo a{
text-transform: uppercase;
color: #FFF;
font-size: 18px;
line-height: 21px;
font-weight: 600;
text-align: center;
padding: 15px 25px;
border-radius: 0;
border: none;
background: #FF8100;
margin-right: 10px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo a:hover{
background: #DBDBDB;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: absolute;
bottom: 2px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca img{}
section.productos .galeria{
margin: 1em 0 2em;
}
section.productos .galeria .big{}
section.productos .galeria .big img{
width: 100%;
}
section.productos .galeria .thumb{}
section.productos .galeria .thumb ul{
padding: 15px 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.productos .galeria .thumb ul li{
margin: 0 15px 0 0;
max-width: 10%;
}
section.productos .galeria .thumb ul li:last-child{
margin: 0;
}
section.productos .galeria .thumb ul li a{}
section.productos .galeria .thumb ul li a img{}
section.productos .gale-desc{}
section.productos .gale-desc h2{
font-size: 38px;
line-height: 38px;
font-weight: 400;
color: #FF7F00;
margin-top: 0;
margin-bottom: 15px;
}
section.productos .gale-desc p{
font-size: 18px;
line-height: 26px;
font-weight: 300;
color: #333333;
margin-bottom: 15px;
padding-bottom: 40px;
}
section.productos .gale-desc p.tit{
color: #868686;
padding-bottom: 0;
}
/* SERVICIOS */
section.servicios{
overflow: hidden;
padding: 60px 0;
}
section.servicios .cont-servicios{}
section.servicios .cont-servicios .item-servicio{}
section.servicios .cont-servicios .item-servicio a{
background: #EFEFEF;
padding: 3em 1em;
text-decoration: none;
cursor: pointer;
display: block;
overflow: hidden;
margin-bottom: 30px;
}
section.servicios .cont-servicios .item-servicio a img{
}
section.servicios .cont-servicios .item-servicio a span{
width: 100%;
display: block;
text-align: center;
font-size: 21px;
line-height: 26px;
font-weight: 400;
color: #111111;
margin: 10px 0;
}
section.servicios .cont-servicios .item-servicio:hover a span{
color: #FF9933;
}
/* IMAGEN 100%FULL RESPONSIVE */
.img-main-sec{
overflow: hidden;
}
.img-main-sec img{
width: 100%;
}
/* CONTACTO */
section.contacto{
padding: 1em 0;
overflow: hidden;
}
section.contacto h3{
font-size: 35px;
line-height: 40px;
color: #CC5100;
text-transform: uppercase;
}
section.contacto p.sub{
background: #F9F9F9;
color: #333333;
font-size: 16px;
line-height: 18px;
/*font-family: "Myriad Pro Regular";*/
padding: 5px 10px;
margin: 0 15px;
}
section.contacto .form-contacto form{
margin: 2em 0;
}
section.contacto .form-group{
margin-bottom: 15px;
}
section.contacto .form-group input{
background: none;
border: 1px solid #CCCCCC;
border-radius: 0;
color: #333333;
}
section.contacto .form-group textarea{
width: 100%;
background: none;
border: 1px solid #CCCCCC;
border-radius: 0;
color: #333333;
padding: 15px;
}
section.contacto .terminos{
padding-bottom: 2em;
overflow: hidden;
}
section.contacto .cont-captcha{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.contacto .cont-captcha img{
background: #FFF;
}
section.contacto .checkbox{
margin-left: 15px;
}
section.contacto .checkbox label{
display: inline;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
font-size: 15px;
text-decoration: underline;
color: #000000;
}
section.contacto .terminos .aceptar{}
section.contacto .terminos .aceptar .checkbox{
margin: 10px 0 15px 0;
}
section.contacto .terminos .aceptar .checkbox label{
color: #999999;
font-size: 14px;
line-height: 16px;
}
section.contacto .terminos .aceptar .checkbox label input{}
section.contacto .terminos button{
border-radius: 0;
background: #FF991E;
color: #FFF;
text-transform: uppercase;
font-weight: 400;
border: 0;
font-size: 16px;
line-height: 18px;
padding: 12px;
}
section.contacto .terminos button:hover{
background: #000;
}
section.contacto .terminos .mobile{
overflow: hidden;
padding: 0;
}
section.contacto .terminos .mobile button{}
section.contacto .form-group textarea::-webkit-input-placeholder,
section.contacto .form-group input::-webkit-input-placeholder{
color: #000;
}
section.contacto .form-group textarea:-moz-placeholder,
section.contacto .form-group input:-moz-placeholder { /* Firefox 18- */
color: #000;
}
section.contacto .form-group textarea::-moz-placeholder,
section.contacto .form-group input::-moz-placeholder { /* Firefox 19+ */
color: #000;
}
section.contacto .form-group textarea:-ms-input-placeholder,
section.contacto .form-group input:-ms-input-placeholder {
color: #000;
}
section.contacto .sucursales{}
section.contacto .sucursales .centrado{
overflow: hidden;
padding: 0 0 0 4em;
}
section.contacto .sucursales .item-sucursales{
overflow: hidden;
border-bottom: 1px solid #CCCCCC;
padding: 1em 0 3em;
margin: 0 0 2em;
}
section.contacto .sucursales .item-sucursales img{
float: left;
}
section.contacto .sucursales .item-sucursales .dire{
float: left;
margin-left: 15px;
}
section.contacto .sucursales .item-sucursales .dire h5{
color: #FF9933;
font-size: 18px;
line-height: 21px;
font-weight: 600;
margin: 0 0 10px;
}
section.contacto .sucursales .item-sucursales .dire p{
color: #666666;
font-size: 18px;
line-height: 21px;
font-weight: 300;
}
/* FOOTER */
footer{
background: #000;
padding: 10px 0 40px 0;
}
footer .container{}
footer .container.menu-footer{
padding: 20px 0 0;
}
footer div h4{
font-weight: 400;
color: #FFF;
font-size: 16px;
margin-bottom: 20px;
}
footer div ul{
padding: 0;
overflow: hidden;
}
footer div ul li{
color: #FFF;
font-size: 16px;
}
footer div ul li a{
color: #FFF;
font-size: 14px;
}
footer .sitemap{}
footer .sitemap ul{}
footer .sitemap ul li{}
footer .sitemap ul li a{
display: block;
overflow: hidden;
padding-left: 0;
padding-right: 0;
color: #B3BAC1;
font-size: 16px;
line-height: 24px;
text-decoration: none;
}
footer .logo-footer{
overflow: hidden;
}
footer .logo-footer ul{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
padding: 3em 0;
}
footer .logo-footer ul li{
display: inline-block;
margin-right: 1em;
}
footer .logo-footer ul li:last-child{
margin-right: 0;
}
footer .logo-footer ul li img{}
footer .n-datos{
color: #000;
padding: 10px 0 0 2em;
overflow: hidden;
}
footer .n-datos img{
margin-bottom: 10px;
}
footer .n-datos a{
color: #B3BAC1;
font-weight: 400;
font-size: 15px;
margin: 0 0 10px;
text-decoration: none;
}
footer .n-datos .dat{
padding-left: 0;
padding-right: 0;
}
footer .n-datos h6{
font-size: 15px;
font-weight: 600;
}
footer .n-datos p{
color: #B3BAC1;
font-size: 15px;
margin: 0 0 10px;
}
footer .n-datos p.dire{}
footer .n-datos p.tel{}
footer .n-datos p.contacto{}
footer .n-datos p.dire img{
margin: 0 15px 0 0;
}
footer .n-datos p.tel img{
margin: -4px 15px 0 0;
}
footer .n-datos p.contacto img{
margin: -4px 15px 0 0;
}
footer .num-ref h5{
color: #FFF;
font-size: 16px;
font-weight: bold;
}
footer .num-ref .input-group{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
footer .num-ref .input-group input{
border-radius: 0;
height: 38px;
}
footer .num-ref .input-group span{
width: inherit;
}
footer .num-ref .input-group span button{
border-radius: 0;
border: none;
background: #171c5a;
height: 38px;
}
/* FOOTER */
/**** RUSSO STYLES ****/
/* MEDIA QUERIES / MEDIA QUERIES / MEDIA QUERIES / MEDIA QUERIES */
/* Extra Small - XS */
@media(max-width:767px){
.floatInherit{
float: left !important;
}
header .logo a{
margin-top: 12px;
}
header .menu{}
.navbar-toggle{
margin-top: 3.2em;
}
header .bg-navegador {
background: none;
}
header .menu .navbar{
z-index: 1000;
}
header .menu .navbar .navbar-collapse{
background: #FFF;
width: 100%;
padding-right: 0;
padding-left: 0;
}
header .menu.container{
padding-left: 0;
padding-right: 0;
}
header .menu .navegador ul li a{
padding: 10px 20px;
font-size: 14px;
text-align: left;
border-bottom: 1px solid #555 !important;
line-height: 30px;
}
header .menu .navegador ul li{
padding: 0;
}
header .menu .navbar-brand{
padding: 50px 0;
}
header .menu .navbar-brand img{
max-width: 250px;
}
header .menu .navbar .navbar-collapse.in{
overflow: inherit;
}
header .menu .navbar .navbar-collapse ul{
box-shadow: 0px 2px 3px rgba(0, 0, 0, .5);
}
header .menu .navbar-nav > li > a{
font-size: 12px;
padding: 56px 15px;
}
.alpha-menu.am-response-margin >li >ul,
.alpha-menu.am-response-margin li >div{
margin-left: 20px !important;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a{
color: #FFF;
padding: 10px 0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover{
color: #DDD;
}
footer .n-datos{
padding-right: 15px;
padding-left: 15px;
}
header .menu .navegador ul li ul{
left: 0;
padding: 0;
}
header .menu .navegador ul li ul li{
min-height: 30px;
padding-right: 15px;
}
header .menu .navegador ul li ul li a{
line-height: 30px;
border-bottom: 0 !important;
}
section.empresa .bg-sec-nav{
height: 108px;
}
section.empresa .bg-sec-nav .container{
padding-left: 0;
padding-right: 0;
}
section.empresa .historia .cont-logo ul li{
display: block;
width: 100%;
overflow: hidden;
}
section.aberturas,
section.productos{
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
}
section.aberturas .cont-aberturas .item-aberturas {
padding-left: 0;
padding-right: 0;
}
section .cont-miga{
padding-left: 0;
padding-right: 0;
}
section .miga {
padding: 10px 0 20px;
}
section.productos .cont-productos .row{
margin-bottom: inherit;
}
section.aberturas .cont-aberturas .item-detalle .main-desc p,
section.productos .cont-productos .item-detalle .main-desc p{
padding-bottom: 10px;
}
section.aberturas .cont-aberturas .item-detalle .main-desc{
margin-bottom: 15px;
display: initial;
}
section.productos .cont-productos .item-detalle .main-desc{
margin-bottom: 15px;
display: initial;
padding-left: 0;
padding-right: 0;
}
section.aberturas .cont-aberturas .item-detalle .slider-detalle{
display: initial;
}
section.productos .cont-productos .item-detalle .slider-detalle{
display: initial;
padding-left: 0;
padding-right: 0;
}
section .carousel-inner > .item > img,
section .carousel-inner > .item > a > img{
width: 100%;
}
section.aberturas .cont-aberturas .item-detalle .main-desc .cont-btns-catalogo,
section.productos .cont-productos .item-detalle .main-desc .cont-btns-catalogo{
position: relative;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 38px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
width: 100%;
top: -15%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
font-size: 30px;
line-height: 34px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
font-size: 18px;
line-height: 28px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
-webkit-background-size: 70%;
background-size: 70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 24px;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .slider{
padding-right: 0;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-lineas .desc-lineas{
padding-left: 0;
padding-right: 0;
}
section.aberturas .cont-aberturas .cont-item-ventajas a span{
font-size: 18px;
line-height: 21px;
}
section.aberturas .cont-aberturas .cont-item-ventajas a img {
padding: 1em;
}
section.servicios{
padding: 15px 0;
}
section.servicios .cont-servicios .item-servicio{
padding-left: 0;
padding-right: 0;
}
section.servicios .cont-servicios .item-servicio a{
margin-bottom: 15px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: relative;
}
section.contacto .cont-captcha{
display: inherit;
width: 100%;
}
section.contacto .terminos .aceptar {
display: block;
width: 100%;
}
section.aberturas .cont-aberturas .item-ficha .tab-content .cont-item-tipos{
display: block;
}
section.aberturas .item-tipo a span{
font-size: 14px;
word-wrap: break-word;
}
}
/* Small - SM */
@media(min-width:768px) and (max-width:991px){
header .logo a{
margin-top: 12px;
}
header .menu .navegador ul li a{
font-size: 14px;
}
header .menu .navegador ul li ul{
left: -100%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha{
width: 100%;
top: -15%;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha h4{
font-size: 30px;
line-height: 34px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha p{
font-size: 18px;
line-height: 28px;
}
section.aberturas .cont-aberturas .item-ficha .pop-up-ficha button{
-webkit-background-size: 70%;
background-size: 70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 34px;
}
section.productos .cont-productos .item-detalle .main-desc .cont-marca{
position: relative;
}
}
/* Medium - MD */
@media(min-width:992px) and (max-width:1199px){
header .logo a{
margin-top: 5px;
}
header .menu .navegador ul li a{
font-size: 14px;
}
header .menu .navegador ul li ul{
left: -70%;
}
section.aberturas .item-tipo .img .overlay span.glyphicon{
font-size: 44px;
}
}
/* Large - LG */
@media(min-width:1200px){} | 0.227469 | 0.06256 |
.background {
-fx-background-color: derive(whitesmoke, 20%);
background-color: whitesmoke; /* Used in the default.html file */
}
.main-container {
-fx-background-color: whitesmoke;
}
.label {
-fx-font-size: 12pt;
-fx-font-family: "Open Sans Semibold";
-fx-text-fill: #524d50;
-fx-opacity: 1;
}
.label-bright {
-fx-font-size: 11pt;
-fx-font-family: "Open Sans Semibold";
-fx-text-fill: white;
-fx-opacity: 1;
}
.label-header {
-fx-font-size: 20pt;
-fx-font-family: "Open Sans Extra Bold";
-fx-text-fill: whitesmoke;
-fx-opacity: 1;
}
/* Menu bar */
/*#menuBar {*/
/* -fx-background-color: derive(whitesmoke, 20%);*/
/*}*/
.menu-bar {
-fx-background-color: #95baec;
}
.menu-bar .label {
-fx-font-size: 14pt;
-fx-font-family: "Open Sans Light";
-fx-text-fill: #64113F;
/*-fx-opacity: 0.9;*/
}
.menu .left-container {
-fx-background-color: black;
}
/* PROFILE DISPLAY STYLEs */
#profilePlaceHolder {
-fx-background-color: #95baec;
background-color: #95baec; /* Used in the default.html file */
}
.button {
-fx-padding: 5 22 5 22;
-fx-background-color: #f9edcd;
-fx-text-fill: black;
-fx-font-family: "Open Sans Regular";
-fx-font-size: 14pt;
-fx-background-insets: 0 0 0 0, 0, 1, 2;
}
.button:hover {
-fx-text-fill: #524d50;
-fx-font-family: "Open Sans Regular";
-fx-cursor: hand;
}
.button:pressed, .button:default:hover:pressed {
-fx-text-fill: whitesmoke;
}
/* LIST VIEW STYLEs */
.cell_big_label {
-fx-font-family: "Open Sans Semibold";
-fx-font-size: 16px;
-fx-text-fill: black;
}
.cell_small_label {
-fx-font-family: "Open Sans Regular";
-fx-font-size: 14px;
-fx-text-fill: black;
}
.text-field {
-fx-font-size: 12pt;
-fx-font-family: "Open Sans Semibold";
}
.list-view {
/*-fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 10, 0, 0, 0);*/
-fx-background-radius: 10;
-fx-padding: 0;
-fx-background-color: derive(whitesmoke, 20%);
}
.list-cell {
-fx-label-padding: 0 0 0 0;
-fx-background-radius: 10;
-fx-graphic-text-gap : 0;
-fx-padding: 0 0 0 0;
}
.list-cell:filled:even {
-fx-background-color: white;
}
.list-cell:filled:odd {
-fx-background-color: white;
}
/* Selected cell */
.list-cell:filled:hover {
-fx-background-color: #d9dce8;
}
.list-cell:filled:default {
-fx-background-color: white;
}
#tags {
-fx-hgap: 7;
-fx-vgap: 3;
}
#tags .label {
-fx-text-fill: black;
-fx-background-color: #f1cfde;
-fx-padding: 1 3 1 3;
-fx-border-radius: 2;
-fx-background-radius: 2;
/*-fx-alignment: centre;*/
-fx-font-size: 11;
}
/* Scrollbar Style*/
.scroll-bar {
-fx-background-color: #f9edcd;
}
.scroll-bar .thumb {
-fx-background-color: #d9dce8;
-fx-background-insets: 3;
}
.scroll-bar .increment-button, .scroll-bar .decrement-button {
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
}
.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow {
-fx-shape: "";
}
.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow {
-fx-padding: 1 8 1 8;
}
.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow {
-fx-padding: 8 1 8 1;
}
/* CommandBox Style */
.pane-with-border {
-fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 3, 0, 0, 0);
}
#commandTextField {
-fx-background-color: #f9edcd;
/*-fx-background-insets: 0;*/
/*-fx-border-insets: 0;*/
/*-fx-border-width: 1;*/
-fx-font-family: "Open Sans Regular";
-fx-font-size: 13pt;
-fx-text-fill: black;
-fx-prompt-text-fill: black ;
}
/* ResultDisplay Style */
#resultDisplay .content{
/*-fx-background-color: #F7CACD;*/
-fx-background-radius: 0;
-fx-text-fill: #f1cfde;
}
.result-display {
-fx-font-family: "Open Sans SemiBold Italic";
-fx-font-size: 12pt;
-fx-text-fill: #95baec;
}
.friend-card {
-fx-background-color: #95baec;
}
.friend-card .label {
-fx-font-size: 12pt;
-fx-text-fill: white;
-fx-font-family: "Open Sans Regular";
}
.help-title {
-fx-background-color: #95baec;
-fx-font-size: 20pt;
-fx-font-family: "Open Sans Extra Bold";
-fx-text-fill: whitesmoke;
-fx-opacity: 1;
}
.help-commands{}
.help-instructions{}
/* End of Stylesheet */
/*.list-cell:filled:selected #cardPane {*/
/* -fx-border-color: #3e7b91;*/
/* -fx-border-width: 5;*/
/*}*/
/*.tab-pane {*/
/* -fx-padding: 0 0 0 1;*/
/*}*/
/*.tab-pane .tab-header-area {*/
/* -fx-padding: 0 0 0 0;*/
/* -fx-min-height: 0;*/
/* -fx-max-height: 0;*/
/*}*/
/*.table-view {*/
/* -fx-base: #1d1d1d;*/
/* -fx-control-inner-background: #1d1d1d;*/
/* -fx-background-color: #1d1d1d;*/
/* -fx-table-cell-border-color: transparent;*/
/* -fx-table-header-border-color: transparent;*/
/* -fx-padding: 5;*/
/*}*/
/*.table-view .column-header-background {*/
/* -fx-background-color: transparent;*/
/*}*/
/*.table-view .column-header, .table-view .filler {*/
/* -fx-size: 35;*/
/* -fx-border-width: 0 0 1 0;*/
/* -fx-background-color: transparent;*/
/* -fx-border-color:*/
/* transparent*/
/* transparent*/
/* derive(-fx-base, 80%)*/
/* transparent;*/
/* -fx-border-insets: 0 10 1 0;*/
/*}*/
/*.table-view .column-header .label {*/
/* -fx-font-size: 20pt;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-alignment: center-left;*/
/* -fx-opacity: 1;*/
/*}*/
/*.table-view:focused .table-row-cell:filled:focused:selected {*/
/* -fx-background-color: -fx-focus-color;*/
/*}*/
/*.split-pane:horizontal .split-pane-divider {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/* -fx-border-color: transparent transparent transparent #4d4d4d;*/
/*}*/
/*.split-pane {*/
/* -fx-border-radius: 1;*/
/* -fx-border-width: 1;*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*!*.stack-pane {*!*/
/*!* -fx-background-color: derive(#1d1d1d, 20%);*!*/
/*!*}*!*/
/*.pane-with-border {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/* -fx-border-color: derive(#1d1d1d, 10%);*/
/* -fx-border-top-width: 1px;*/
/*}*/
/*.status-bar {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/*}*/
/*.result-display {*/
/* -fx-background-color: transparent;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-font-size: 13pt;*/
/* -fx-text-fill: white;*/
/*}*/
/*.result-display .label {*/
/* -fx-text-fill: black !important;*/
/*}*/
/*.status-bar .label {*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-padding: 4px;*/
/* -fx-pref-height: 30px;*/
/*}*/
/*.status-bar-with-border {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/* -fx-border-color: derive(#1d1d1d, 25%);*/
/* -fx-border-width: 1px;*/
/*}*/
/*.status-bar-with-border .label {*/
/* -fx-text-fill: white;*/
/*}*/
/*.grid-pane {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/* -fx-border-color: derive(#1d1d1d, 30%);*/
/* -fx-border-width: 1px;*/
/*}*/
/*.grid-pane .stack-pane {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/*}*/
/*.context-menu {*/
/* -fx-background-color: derive(#1d1d1d, 50%);*/
/*}*/
/*.context-menu .label {*/
/* -fx-text-fill: white;*/
/*}*/
/*.menu-bar {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*.menu-bar .label {*/
/* -fx-font-size: 14pt;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-opacity: 0.9;*/
/*}*/
/*.menu .left-container {*/
/* -fx-background-color: black;*/
/*}*/
/*!**/
/* * Metro style Push Button*/
/* * Author: <NAME>*/
/* * http://pixelduke.wordpress.com/2012/10/23/jmetro-windows-8-controls-on-java/*/
/* *!*/
/*.button {*/
/* -fx-padding: 5 22 5 22;*/
/* -fx-border-width: 2;*/
/* -fx-background-radius: 0;*/
/* -fx-background-color: #216de8;*/
/* -fx-font-family: "Open Sans Regular";*/
/* -fx-font-size: 11pt;*/
/* -fx-text-fill: #ffffff;*/
/* -fx-background-insets: 0 0 0 0, 0, 1, 2;*/
/*}*/
/*.button:hover {*/
/* -fx-background-color: #6c9bff;*/
/* -fx-cursor: hand;*/
/*}*/
/*.button:pressed, .button:default:hover:pressed {*/
/* -fx-border-width: 2;*/
/* -fx-text-fill: #1d1d1d;*/
/*}*/
/*!*.button:focused {*!*/
/*!* -fx-border-color: white, white;*!*/
/*!* -fx-border-width: 1, 1;*!*/
/*!* -fx-border-style: solid, segments(1, 1);*!*/
/*!* -fx-border-radius: 0, 0;*!*/
/*!* -fx-border-insets: 1 1 1 1, 0;*!*/
/*!*}*!*/
/*.button:disabled, .button:default:disabled {*/
/* -fx-opacity: 0.4;*/
/* -fx-background-color: #1d1d1d;*/
/* -fx-text-fill: white;*/
/*}*/
/*.button:default {*/
/* -fx-background-color: -fx-focus-color;*/
/* -fx-text-fill: #ffffff;*/
/*}*/
/*!*.button:default:hover {*!*/
/*!* -fx-background-color: derive(-fx-focus-color, 30%);*!*/
/*!*}*!*/
/*!*.dialog-pane {*!*/
/*!* -fx-background-color: #1d1d1d;*!*/
/*!*}*!*/
/*!*.dialog-pane > *.button-bar > *.container {*!*/
/*!* -fx-background-color: #1d1d1d;*!*/
/*!*}*!*/
/*!*.dialog-pane > *.label.content {*!*/
/*!* -fx-font-size: 14px;*!*/
/*!* -fx-font-weight: bold;*!*/
/*!* -fx-text-fill: white;*!*/
/*!*}*!*/
/*!*.dialog-pane:header *.header-panel {*!*/
/*!* -fx-background-color: derive(#1d1d1d, 25%);*!*/
/*!*}*!*/
/*!*.dialog-pane:header *.header-panel *.label {*!*/
/*!* -fx-font-size: 18px;*!*/
/*!* -fx-font-style: italic;*!*/
/*!* -fx-fill: white;*!*/
/*!* -fx-text-fill: white;*!*/
/*!*}*!*/
/*.scroll-bar {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*.scroll-bar .thumb {*/
/* -fx-background-color: derive(#1d1d1d, 50%);*/
/* -fx-background-insets: 3;*/
/*}*/
/*.scroll-bar .increment-button, .scroll-bar .decrement-button {*/
/* -fx-background-color: transparent;*/
/* -fx-padding: 0 0 0 0;*/
/*}*/
/*.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow {*/
/* -fx-shape: " ";*/
/*}*/
/*.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow {*/
/* -fx-padding: 1 8 1 8;*/
/*}*/
/*.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow {*/
/* -fx-padding: 8 1 8 1;*/
/*}*/
/*#cardPane {*/
/* -fx-background-color: transparent;*/
/* -fx-border-width: 0;*/
/*}*/
/*#commandTypeLabel {*/
/* -fx-font-size: 11px;*/
/* -fx-text-fill: #F70D1A;*/
/*}*/ | src/main/resources/view/FriendBookTheme.css |
.background {
-fx-background-color: derive(whitesmoke, 20%);
background-color: whitesmoke; /* Used in the default.html file */
}
.main-container {
-fx-background-color: whitesmoke;
}
.label {
-fx-font-size: 12pt;
-fx-font-family: "Open Sans Semibold";
-fx-text-fill: #524d50;
-fx-opacity: 1;
}
.label-bright {
-fx-font-size: 11pt;
-fx-font-family: "Open Sans Semibold";
-fx-text-fill: white;
-fx-opacity: 1;
}
.label-header {
-fx-font-size: 20pt;
-fx-font-family: "Open Sans Extra Bold";
-fx-text-fill: whitesmoke;
-fx-opacity: 1;
}
/* Menu bar */
/*#menuBar {*/
/* -fx-background-color: derive(whitesmoke, 20%);*/
/*}*/
.menu-bar {
-fx-background-color: #95baec;
}
.menu-bar .label {
-fx-font-size: 14pt;
-fx-font-family: "Open Sans Light";
-fx-text-fill: #64113F;
/*-fx-opacity: 0.9;*/
}
.menu .left-container {
-fx-background-color: black;
}
/* PROFILE DISPLAY STYLEs */
#profilePlaceHolder {
-fx-background-color: #95baec;
background-color: #95baec; /* Used in the default.html file */
}
.button {
-fx-padding: 5 22 5 22;
-fx-background-color: #f9edcd;
-fx-text-fill: black;
-fx-font-family: "Open Sans Regular";
-fx-font-size: 14pt;
-fx-background-insets: 0 0 0 0, 0, 1, 2;
}
.button:hover {
-fx-text-fill: #524d50;
-fx-font-family: "Open Sans Regular";
-fx-cursor: hand;
}
.button:pressed, .button:default:hover:pressed {
-fx-text-fill: whitesmoke;
}
/* LIST VIEW STYLEs */
.cell_big_label {
-fx-font-family: "Open Sans Semibold";
-fx-font-size: 16px;
-fx-text-fill: black;
}
.cell_small_label {
-fx-font-family: "Open Sans Regular";
-fx-font-size: 14px;
-fx-text-fill: black;
}
.text-field {
-fx-font-size: 12pt;
-fx-font-family: "Open Sans Semibold";
}
.list-view {
/*-fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 10, 0, 0, 0);*/
-fx-background-radius: 10;
-fx-padding: 0;
-fx-background-color: derive(whitesmoke, 20%);
}
.list-cell {
-fx-label-padding: 0 0 0 0;
-fx-background-radius: 10;
-fx-graphic-text-gap : 0;
-fx-padding: 0 0 0 0;
}
.list-cell:filled:even {
-fx-background-color: white;
}
.list-cell:filled:odd {
-fx-background-color: white;
}
/* Selected cell */
.list-cell:filled:hover {
-fx-background-color: #d9dce8;
}
.list-cell:filled:default {
-fx-background-color: white;
}
#tags {
-fx-hgap: 7;
-fx-vgap: 3;
}
#tags .label {
-fx-text-fill: black;
-fx-background-color: #f1cfde;
-fx-padding: 1 3 1 3;
-fx-border-radius: 2;
-fx-background-radius: 2;
/*-fx-alignment: centre;*/
-fx-font-size: 11;
}
/* Scrollbar Style*/
.scroll-bar {
-fx-background-color: #f9edcd;
}
.scroll-bar .thumb {
-fx-background-color: #d9dce8;
-fx-background-insets: 3;
}
.scroll-bar .increment-button, .scroll-bar .decrement-button {
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
}
.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow {
-fx-shape: "";
}
.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow {
-fx-padding: 1 8 1 8;
}
.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow {
-fx-padding: 8 1 8 1;
}
/* CommandBox Style */
.pane-with-border {
-fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 3, 0, 0, 0);
}
#commandTextField {
-fx-background-color: #f9edcd;
/*-fx-background-insets: 0;*/
/*-fx-border-insets: 0;*/
/*-fx-border-width: 1;*/
-fx-font-family: "Open Sans Regular";
-fx-font-size: 13pt;
-fx-text-fill: black;
-fx-prompt-text-fill: black ;
}
/* ResultDisplay Style */
#resultDisplay .content{
/*-fx-background-color: #F7CACD;*/
-fx-background-radius: 0;
-fx-text-fill: #f1cfde;
}
.result-display {
-fx-font-family: "Open Sans SemiBold Italic";
-fx-font-size: 12pt;
-fx-text-fill: #95baec;
}
.friend-card {
-fx-background-color: #95baec;
}
.friend-card .label {
-fx-font-size: 12pt;
-fx-text-fill: white;
-fx-font-family: "Open Sans Regular";
}
.help-title {
-fx-background-color: #95baec;
-fx-font-size: 20pt;
-fx-font-family: "Open Sans Extra Bold";
-fx-text-fill: whitesmoke;
-fx-opacity: 1;
}
.help-commands{}
.help-instructions{}
/* End of Stylesheet */
/*.list-cell:filled:selected #cardPane {*/
/* -fx-border-color: #3e7b91;*/
/* -fx-border-width: 5;*/
/*}*/
/*.tab-pane {*/
/* -fx-padding: 0 0 0 1;*/
/*}*/
/*.tab-pane .tab-header-area {*/
/* -fx-padding: 0 0 0 0;*/
/* -fx-min-height: 0;*/
/* -fx-max-height: 0;*/
/*}*/
/*.table-view {*/
/* -fx-base: #1d1d1d;*/
/* -fx-control-inner-background: #1d1d1d;*/
/* -fx-background-color: #1d1d1d;*/
/* -fx-table-cell-border-color: transparent;*/
/* -fx-table-header-border-color: transparent;*/
/* -fx-padding: 5;*/
/*}*/
/*.table-view .column-header-background {*/
/* -fx-background-color: transparent;*/
/*}*/
/*.table-view .column-header, .table-view .filler {*/
/* -fx-size: 35;*/
/* -fx-border-width: 0 0 1 0;*/
/* -fx-background-color: transparent;*/
/* -fx-border-color:*/
/* transparent*/
/* transparent*/
/* derive(-fx-base, 80%)*/
/* transparent;*/
/* -fx-border-insets: 0 10 1 0;*/
/*}*/
/*.table-view .column-header .label {*/
/* -fx-font-size: 20pt;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-alignment: center-left;*/
/* -fx-opacity: 1;*/
/*}*/
/*.table-view:focused .table-row-cell:filled:focused:selected {*/
/* -fx-background-color: -fx-focus-color;*/
/*}*/
/*.split-pane:horizontal .split-pane-divider {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/* -fx-border-color: transparent transparent transparent #4d4d4d;*/
/*}*/
/*.split-pane {*/
/* -fx-border-radius: 1;*/
/* -fx-border-width: 1;*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*!*.stack-pane {*!*/
/*!* -fx-background-color: derive(#1d1d1d, 20%);*!*/
/*!*}*!*/
/*.pane-with-border {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/* -fx-border-color: derive(#1d1d1d, 10%);*/
/* -fx-border-top-width: 1px;*/
/*}*/
/*.status-bar {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/*}*/
/*.result-display {*/
/* -fx-background-color: transparent;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-font-size: 13pt;*/
/* -fx-text-fill: white;*/
/*}*/
/*.result-display .label {*/
/* -fx-text-fill: black !important;*/
/*}*/
/*.status-bar .label {*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-padding: 4px;*/
/* -fx-pref-height: 30px;*/
/*}*/
/*.status-bar-with-border {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/* -fx-border-color: derive(#1d1d1d, 25%);*/
/* -fx-border-width: 1px;*/
/*}*/
/*.status-bar-with-border .label {*/
/* -fx-text-fill: white;*/
/*}*/
/*.grid-pane {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/* -fx-border-color: derive(#1d1d1d, 30%);*/
/* -fx-border-width: 1px;*/
/*}*/
/*.grid-pane .stack-pane {*/
/* -fx-background-color: derive(#1d1d1d, 30%);*/
/*}*/
/*.context-menu {*/
/* -fx-background-color: derive(#1d1d1d, 50%);*/
/*}*/
/*.context-menu .label {*/
/* -fx-text-fill: white;*/
/*}*/
/*.menu-bar {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*.menu-bar .label {*/
/* -fx-font-size: 14pt;*/
/* -fx-font-family: "Open Sans Light";*/
/* -fx-text-fill: white;*/
/* -fx-opacity: 0.9;*/
/*}*/
/*.menu .left-container {*/
/* -fx-background-color: black;*/
/*}*/
/*!**/
/* * Metro style Push Button*/
/* * Author: <NAME>*/
/* * http://pixelduke.wordpress.com/2012/10/23/jmetro-windows-8-controls-on-java/*/
/* *!*/
/*.button {*/
/* -fx-padding: 5 22 5 22;*/
/* -fx-border-width: 2;*/
/* -fx-background-radius: 0;*/
/* -fx-background-color: #216de8;*/
/* -fx-font-family: "Open Sans Regular";*/
/* -fx-font-size: 11pt;*/
/* -fx-text-fill: #ffffff;*/
/* -fx-background-insets: 0 0 0 0, 0, 1, 2;*/
/*}*/
/*.button:hover {*/
/* -fx-background-color: #6c9bff;*/
/* -fx-cursor: hand;*/
/*}*/
/*.button:pressed, .button:default:hover:pressed {*/
/* -fx-border-width: 2;*/
/* -fx-text-fill: #1d1d1d;*/
/*}*/
/*!*.button:focused {*!*/
/*!* -fx-border-color: white, white;*!*/
/*!* -fx-border-width: 1, 1;*!*/
/*!* -fx-border-style: solid, segments(1, 1);*!*/
/*!* -fx-border-radius: 0, 0;*!*/
/*!* -fx-border-insets: 1 1 1 1, 0;*!*/
/*!*}*!*/
/*.button:disabled, .button:default:disabled {*/
/* -fx-opacity: 0.4;*/
/* -fx-background-color: #1d1d1d;*/
/* -fx-text-fill: white;*/
/*}*/
/*.button:default {*/
/* -fx-background-color: -fx-focus-color;*/
/* -fx-text-fill: #ffffff;*/
/*}*/
/*!*.button:default:hover {*!*/
/*!* -fx-background-color: derive(-fx-focus-color, 30%);*!*/
/*!*}*!*/
/*!*.dialog-pane {*!*/
/*!* -fx-background-color: #1d1d1d;*!*/
/*!*}*!*/
/*!*.dialog-pane > *.button-bar > *.container {*!*/
/*!* -fx-background-color: #1d1d1d;*!*/
/*!*}*!*/
/*!*.dialog-pane > *.label.content {*!*/
/*!* -fx-font-size: 14px;*!*/
/*!* -fx-font-weight: bold;*!*/
/*!* -fx-text-fill: white;*!*/
/*!*}*!*/
/*!*.dialog-pane:header *.header-panel {*!*/
/*!* -fx-background-color: derive(#1d1d1d, 25%);*!*/
/*!*}*!*/
/*!*.dialog-pane:header *.header-panel *.label {*!*/
/*!* -fx-font-size: 18px;*!*/
/*!* -fx-font-style: italic;*!*/
/*!* -fx-fill: white;*!*/
/*!* -fx-text-fill: white;*!*/
/*!*}*!*/
/*.scroll-bar {*/
/* -fx-background-color: derive(#1d1d1d, 20%);*/
/*}*/
/*.scroll-bar .thumb {*/
/* -fx-background-color: derive(#1d1d1d, 50%);*/
/* -fx-background-insets: 3;*/
/*}*/
/*.scroll-bar .increment-button, .scroll-bar .decrement-button {*/
/* -fx-background-color: transparent;*/
/* -fx-padding: 0 0 0 0;*/
/*}*/
/*.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow {*/
/* -fx-shape: " ";*/
/*}*/
/*.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow {*/
/* -fx-padding: 1 8 1 8;*/
/*}*/
/*.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow {*/
/* -fx-padding: 8 1 8 1;*/
/*}*/
/*#cardPane {*/
/* -fx-background-color: transparent;*/
/* -fx-border-width: 0;*/
/*}*/
/*#commandTypeLabel {*/
/* -fx-font-size: 11px;*/
/* -fx-text-fill: #F70D1A;*/
/*}*/ | 0.290679 | 0.068413 |
body
{
margin: 0;
background-image: url(../Image/Signal.svg);
font-family: "Palatino Linotype", Palatino, serif;
line-height: 1.5em;
}
header
{
background-color: rgba(255, 253, 208, 0.75);
padding: 1em;
border-bottom: 3px double #213874;
}
h1
{
font: 2em/0.75em "Palatino Linotype", Palatino, serif;
color: #3c14dc;
margin: 0;
padding: 0.15em 0 0.25em 4.5em;
}
h1 span
{
font-size: 60%;
}
h1 span.logo
{
float: left;
font-size: 60%;
position: absolute;
top: 0.75em;
left: 1.75em;
line-height: 0.8em;
}
h2
{
color: #3c14dc;
}
h3
{
color: #3c14dc;
font-size: 1.2em;
direction: initial;
}
/* Navigation styles. */
nav
{
background-color: rgba(170, 173, 218, 0.75);
border-bottom: 3px double #213874;
padding: 0.5ex 0.5em;
color: #3c14dc;
}
nav select
{
font-family: "Palatino Linotype", Palatino, serif;
}
/* Interface styles. */
section#work
{
margin: 0.5em;
}
/* Passage Styles */
section.passage
{
padding: 0 1em 0.5em 1em;
background-color: rgba(255, 254, 251, 0.7);
border: 3px double #213874;
max-width: 32em;
max-height: 400px;
overflow: auto;
}
section.passage p
{
direction: rtl;
}
section.passage span.verse
{
font: 1.5em/1.6em "SBL Hebrew", "Ezra SIL SR", "Ezra SIL", Cardo, "Times New Roman", David, serif;
}
section.passage span.selectedVerse
{
background-color: rgb(255, 251, 161);
}
section.passage span.selectedWord
{
background-color: #6f6;
}
/* Morphology Styles */
section#morphDisplay
{
padding: 0 1em 0.5em 1em;
background-color: rgba(255, 254, 251, 0.7);
border: 3px double #213874;
max-width: 32em;
display: none;
}
/* Chapter display. */
span.Hebrew span:hover
{
cursor: pointer;
background-color: #fbb;
}
span.Hebrew span.prefix
{
color: blue;
}
span.Hebrew span.suffix
{
color: gray;
}
span.qere
{
color: blue;
}
span.qere span.prefix
{
color: black;
}
span.mark
{
font-size: 0.8em;
color: green;
}
sup.note
{
font: 0.7em/1em "Palatino Linotype", Palatino, serif;
color: blue;
cursor: pointer;
direction: ltr;
}
sup.verseNumber
{
font: 0.7em/1em "Palatino Linotype", Palatino, serif;
font-weight: bold;
color: #3c14dc;
}
/* Popup Styles. */
section#work div#popup
{
position: absolute;
background-color: rgb(255, 253, 208);
padding: 0.5em;
border-radius: 4px;
border: 1px solid #77250f;
box-shadow: 2px 2px 2px rgba(64, 64, 64, 0.5);
display: none;
}
section#work div#popup ul
{
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
section#work div#popup ul li.lemma
{
color: #b22234;
}
section#work div#popup ul li.morph
{
color: #3c3b6e;
}
section#work div#popup ul li.accent
{
color: #556b2f;
}
/* Footer Styles. */
div.footer
{
margin: 20% auto 1em 1em;
width: 30em;
clear: left;
} | read/Style/ReadStyle.css | body
{
margin: 0;
background-image: url(../Image/Signal.svg);
font-family: "Palatino Linotype", Palatino, serif;
line-height: 1.5em;
}
header
{
background-color: rgba(255, 253, 208, 0.75);
padding: 1em;
border-bottom: 3px double #213874;
}
h1
{
font: 2em/0.75em "Palatino Linotype", Palatino, serif;
color: #3c14dc;
margin: 0;
padding: 0.15em 0 0.25em 4.5em;
}
h1 span
{
font-size: 60%;
}
h1 span.logo
{
float: left;
font-size: 60%;
position: absolute;
top: 0.75em;
left: 1.75em;
line-height: 0.8em;
}
h2
{
color: #3c14dc;
}
h3
{
color: #3c14dc;
font-size: 1.2em;
direction: initial;
}
/* Navigation styles. */
nav
{
background-color: rgba(170, 173, 218, 0.75);
border-bottom: 3px double #213874;
padding: 0.5ex 0.5em;
color: #3c14dc;
}
nav select
{
font-family: "Palatino Linotype", Palatino, serif;
}
/* Interface styles. */
section#work
{
margin: 0.5em;
}
/* Passage Styles */
section.passage
{
padding: 0 1em 0.5em 1em;
background-color: rgba(255, 254, 251, 0.7);
border: 3px double #213874;
max-width: 32em;
max-height: 400px;
overflow: auto;
}
section.passage p
{
direction: rtl;
}
section.passage span.verse
{
font: 1.5em/1.6em "SBL Hebrew", "Ezra SIL SR", "Ezra SIL", Cardo, "Times New Roman", David, serif;
}
section.passage span.selectedVerse
{
background-color: rgb(255, 251, 161);
}
section.passage span.selectedWord
{
background-color: #6f6;
}
/* Morphology Styles */
section#morphDisplay
{
padding: 0 1em 0.5em 1em;
background-color: rgba(255, 254, 251, 0.7);
border: 3px double #213874;
max-width: 32em;
display: none;
}
/* Chapter display. */
span.Hebrew span:hover
{
cursor: pointer;
background-color: #fbb;
}
span.Hebrew span.prefix
{
color: blue;
}
span.Hebrew span.suffix
{
color: gray;
}
span.qere
{
color: blue;
}
span.qere span.prefix
{
color: black;
}
span.mark
{
font-size: 0.8em;
color: green;
}
sup.note
{
font: 0.7em/1em "Palatino Linotype", Palatino, serif;
color: blue;
cursor: pointer;
direction: ltr;
}
sup.verseNumber
{
font: 0.7em/1em "Palatino Linotype", Palatino, serif;
font-weight: bold;
color: #3c14dc;
}
/* Popup Styles. */
section#work div#popup
{
position: absolute;
background-color: rgb(255, 253, 208);
padding: 0.5em;
border-radius: 4px;
border: 1px solid #77250f;
box-shadow: 2px 2px 2px rgba(64, 64, 64, 0.5);
display: none;
}
section#work div#popup ul
{
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
section#work div#popup ul li.lemma
{
color: #b22234;
}
section#work div#popup ul li.morph
{
color: #3c3b6e;
}
section#work div#popup ul li.accent
{
color: #556b2f;
}
/* Footer Styles. */
div.footer
{
margin: 20% auto 1em 1em;
width: 30em;
clear: left;
} | 0.37319 | 0.127789 |
*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
}
html,
body {
font-family: 'Microsoft Yahei';
}
ul,
li {
list-style: none;
}
img {
border: 0 none;
}
a,
a:hover {
text-decoration: none;
}
.hide {
display: none !important;
}
.hidden {
visibility: hidden;
}
.red {
color: red;
}
.blue {
color: blue;
}
.green {
color: green;
}
.gray {
color: gray;
}
.yellow {
color: yellow;
}
/* font-size */
.f12 {
font-size: 12px;
}
.f14 {
font-size: 14px;
}
.f16 {
font-size: 16px;
}
.f18 {
font-size: 18px;
}
.f20 {
font-size: 20px;
}
.f22 {
font-size: 22px;
}
.f24 {
font-size: 24px;
}
.f26 {
font-size: 26px;
}
.f28 {
font-size: 28px;
}
.f30 {
font-size: 30px;
}
.f32 {
font-size: 32px;
}
/*padding*/
.p0 {
padding: 0px;
}
.p5 {
padding: 5px;
}
.p10 {
padding: 10px;
}
.p15 {
padding: 15px;
}
.p20 {
padding: 20px;
}
.pt0 {
padding-top: 0px;
}
.pt5 {
padding-top: 5px;
}
.pt10 {
padding-top: 10px;
}
.pt15 {
padding-top: 15px;
}
.pt20 {
padding-top: 20px;
}
.pt25 {
padding-top: 25px;
}
.pt30 {
padding-top: 30px;
}
.pt35 {
padding-top: 35px;
}
.pt40 {
padding-top: 40px;
}
.pt45 {
padding-top: 45px;
}
.pt50 {
padding-top: 50px;
}
.pb0 {
padding-bottom: 0px;
}
.pb5 {
padding-bottom: 5px;
}
.pb10 {
padding-bottom: 10px;
}
.pb15 {
padding-bottom: 15px;
}
.pb20 {
padding-bottom: 20px;
}
.pb25 {
padding-bottom: 25px;
}
.pb30 {
padding-bottom: 30px;
}
.pb35 {
padding-bottom: 35px;
}
.pb40 {
padding-bottom: 40px;
}
.pb45 {
padding-bottom: 45px;
}
.pb50 {
padding-bottom: 50px;
}
.pl0 {
padding-left: 0px;
}
.pl5 {
padding-left: 5px;
}
.pl10 {
padding-left: 10px;
}
.pl15 {
padding-left: 15px;
}
.pl20 {
padding-left: 20px;
}
.pl25 {
padding-left: 25px;
}
.pl30 {
padding-left: 30px;
}
.pl35 {
padding-left: 35px;
}
.pl40 {
padding-left: 40px;
}
.pl45 {
padding-left: 45px;
}
.pl50 {
padding-left: 50px;
}
.pr0 {
padding-right: 0px;
}
.pr5 {
padding-right: 5px;
}
.pr10 {
padding-right: 10px;
}
.pr15 {
padding-right: 15px;
}
.pr20 {
padding-right: 20px;
}
.pr25 {
padding-right: 25px;
}
.pr30 {
padding-right: 30px;
}
.pr35 {
padding-right: 35px;
}
.pr40 {
padding-right: 40px;
}
.pr45 {
padding-right: 45px;
}
.pr50 {
padding-right: 50px;
}
.w_100{
width: 100px !important;
}
.w_200{
width: 200px !important;
}
.w_300{
width: 300px !important;
}
.w_400{
width: 400px !important;
}
.w_500{
width: 500px !important;
}
.w_600{
width: 600px !important;
}
.w_700{
width: 700px !important;
}
.w_800{
width: 800px !important;
}
/*margin*/
.m0 {
margin: 0px !important;
}
.mt0 {
margin-top: 0px !important;
}
.mb0 {
margin-bottom: 0px !important;
}
.ml0 {
margin-left: 0px !important;
}
.mr0 {
margin-right: 0px !important;
}
.m5 {
margin: 5px;
}
.m10 {
margin: 10px;
}
.m15 {
margin: 15px;
}
.m20 {
margin: 20px;
}
.mt5 {
margin-top: 5px;
}
.mt10 {
margin-top: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt20 {
margin-top: 20px;
}
.mt25 {
margin-top: 25px;
}
.mt30 {
margin-top: 30px;
}
.mt35 {
margin-top: 35px;
}
.mt40 {
margin-top: 40px;
}
.mt45 {
margin-top: 45px;
}
.mt50 {
margin-top: 50px;
}
.mb5 {
margin-bottom: 5px;
}
.mb10 {
margin-bottom: 10px;
}
.mb15 {
margin-bottom: 15px;
}
.mb20 {
margin-bottom: 20px;
}
.mb25 {
margin-bottom: 25px;
}
.mb30 {
margin-bottom: 30px;
}
.mb35 {
margin-bottom: 35px;
}
.mb40 {
margin-bottom: 40px;
}
.mb45 {
margin-bottom: 45px;
}
.mb50 {
margin-bottom: 50px;
}
.ml5 {
margin-left: 5px;
}
.ml10 {
margin-left: 10px;
}
.ml15 {
margin-left: 15px;
}
.ml20 {
margin-left: 20px;
}
.ml25 {
margin-left: 25px;
}
.ml30 {
margin-left: 30px;
}
.ml35 {
margin-left: 35px;
}
.ml40 {
margin-left: 40px;
}
.ml45 {
margin-left: 45px;
}
.ml50 {
margin-left: 50px;
}
.mr5 {
margin-right: 5px;
}
.mr10 {
margin-right: 10px;
}
.mr15 {
margin-right: 15px;
}
.mr20 {
margin-right: 20px;
}
.mr25 {
margin-right: 25px;
}
.mr30 {
margin-right: 30px;
}
.mr35 {
margin-right: 35px;
}
.mr40 {
margin-right: 40px;
}
.mr45 {
margin-right: 45px;
}
.mr50 {
margin-right: 50px;
}
/*text-align*/
.tl {
text-align: left;
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
/*float*/
.fl {
float: left;
}
.fr {
float: right;
}
.fn {
float: none;
}
.clear {
clear: both;
}
/*position*/
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
/* sparrow_icon */
.sparrow_icon {
background-image: url('images/sparrow_icon.png');
background-repeat: no-repeat;
}
/**
* ๅผน็ช้ดๅฝฑ
*/
.layui-layer {
box-shadow: 1px 1px 50px rgba(0, 0, 0, .5);
}
/*tip*/
.sparrow_tip_box {
display: none;
background: #fff;
width: 260px;
border: 1px solid #e0e0e0;
position: fixed;
right: 10px;
bottom: 10px;
}
.sparrow_tip_head {
line-height: 32px;
background: #f6f0f3;
border-bottom: 1px solid #e0e0e0;
position: relative;
font-size: 12px;
padding: 0 0 0 10px;
}
.sparrow_tip_head h2 {
margin: 0;
padding: 0;
font-size: 14px;
color: #666;
line-height: 32px;
height: 32px;
}
.sparrow_tip_head .sparrow_tip_close {
position: absolute;
right: 10px;
top: 1px;
}
.sparrow_tip_head a.sparrow_tip_close:hover {
color: #f00;
cursor: pointer;
}
.sparrow_tip_content {
padding: 5px 10px;
}
.sparrow_tip_title a {
line-height: 24px;
font-size: 14px;
font-family: 'ๅพฎ่ฝฏ้
้ป';
color: #333;
font-weight: bold;
text-decoration: none;
}
.sparrow_tip_title a:hover {
color: #f60;
}
.sparrow_tip_intro {
text-indent: 24px;
line-height: 160%;
margin: 5px 0;
color: #666;
}
.sparrow_tip_more {
text-align: right;
border-top: 1px dotted #ccc;
line-height: 24px;
margin: 8px 0 0 0;
}
.sparrow_tip_more a {
color: #f60;
}
.sparrow_tip_more a:hover {
color: #f00;
}
@-webkit-keyframes example {
from {
color: red;
}
to {
color: black;
}
}
/* ่ฟๆฏๅจ็ปๅณๅฐๅบ็จ็็ฎๆ ๅ
็ด */
.sparrow_error {
-webkit-animation-name: example;
-webkit-animation-duration: 400ms;
-webkit-animation-iteration-count: 4;
/* 1 is the default */
-webkit-animation-direction: alternate;
/* normal is the default */
color: red;
font-weight: bold;
}
.sparrow_page_list {
clear: both;
text-align: center;
padding-top: 20px;
font-size: 0;
font-family: arial;
}
.sparrow_page_list .hide {
display: none;
}
.sparrow_page_list .disabled {
cursor: not-allowed;
color: #ccc;
}
.sparrow_page_list .disabled:hover {
color: #ccc;
border-color: #ccc;
}
.sparrow_page_list a {
font-size: 14px;
float: left;
color: #000;
border: 1px solid #ccc;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
margin: 0 0 0 -1px;
position: relative;
text-decoration: none;
font-family: arial;
box-sizing: content-box;
}
.sparrow_page_list .more {
border: none;
height: 36px;
width: 36px;
color: #999;
cursor: text;
}
.sparrow_page_list .more:hover {
color: #999;
}
.sparrow_page_list .active {
background: #ea5520;
border-color: #ea5520;
color: #fff;
cursor: text;
}
.sparrow_page_list a:hover {
border-color: #ea5520;
color: #ea5520;
z-index: 2;
}
.sparrow_page_list .active:hover {
color: #fff;
z-index: 0;
}
.sparrow_page_list .pre,
.sparrow_page_list .next {
width: 70px;
}
.sparrow_page_list .pre {
margin-right: 10px;
}
.sparrow_page_list .next {
margin-left: 10px;
}
.sparrow_page_list .page,
.sparrow_page_list .total,
.sparrow_page_list .to {
display: inline-block;
font-size: 12px;
}
.sparrow_page_list .page.arrow .pre {
text-indent: 8px;
}
.sparrow_page_list .page.arrow .next {
text-indent: -8px;
}
.sparrow_page_list .page.arrow .pre:before,
.sparrow_page_list .page.arrow .next:before,
.sparrow_page_list .page.arrowOnly .pre:before,
.sparrow_page_list .page.arrowOnly .next:before {
background: url(images/sparrow-page-list-arrow.png) no-repeat 0 0;
}
.sparrow_page_list .page.arrow .pre:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
left: 6px;
background-position: 0 -18px;
}
.sparrow_page_list .page.arrow .pre:hover:before {
background-position: 0 -9px;
}
.sparrow_page_list .page.arrow .pre.disabled:before,
.sparrow_page_list .page.arrow .pre.disabled:hover:before {
background-position: 0 0;
}
.sparrow_page_list .page.arrow .next:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
right: 6px;
background-position: -6px -18px;
}
.sparrow_page_list .page.arrow .next:hover:before {
background-position: -6px -9px;
}
.sparrow_page_list .page.arrow .next.disabled:before,
.sparrow_page_list .page.arrow .next.disabled:hover:before {
background-position: -6px 0;
}
.sparrow_page_list .page.arrowOnly .pre,
.sparrow_page_list .page.arrowOnly .next {
width: 34px;
}
.sparrow_page_list .page.arrowOnly .pre:before,
.sparrow_page_list .page.arrowOnly .next:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
left: 14px;
}
.sparrow_page_list .page.arrowOnly .pre:before {
background-position: 0 -18px;
}
.sparrow_page_list .page.arrowOnly .next:before {
background-position: -6px -18px;
}
.sparrow_page_list .page.arrowOnly .pre:hover:before {
background-position: 0 -9px;
}
.sparrow_page_list .page.arrowOnly .next:hover:before {
background-position: -6px -9px;
}
.sparrow_page_list .page.arrowOnly .pre.disabled:hover:before,
.sparrow_page_list .page.arrowOnly .pre.disabled:before {
background-position: 0 0;
}
.sparrow_page_list .page.arrowOnly .next.disabled:hover:before,
.sparrow_page_list .page.arrowOnly .next.disabled:before {
background-position: -6px 0;
}
.sparrow_page_list .page.arrowOnly a {
margin-right: 10px;
}
.sparrow_page_list .page.arrowOnly .next {
margin: 0;
}
.sparrow_page_list .first,
.sparrow_page_list .last {
font-size: 18px;
}
.sparrow_page_list .total span {
float: left;
color: #999;
line-height: 36px;
}
.sparrow_page_list .total {
margin: 0 15px 0 30px;
}
.sparrow_page_list .to {
height: 29px;
}
.sparrow_page_list .to span,
.sparrow_page_list .to input {
float: left;
color: #999;
}
.sparrow_page_list .to span {
margin-top: 3px;
}
.sparrow_page_list .to .num {
width: 45px;
margin: 0 3px;
padding: 1px 0;
text-align: center;
border: 1px solid #dedede;
outline: none;
}
.sparrow_page_list .to .num:focus {
border-color: #ea5520;
}
.sparrow_page_list .to .btn {
width: 35px;
padding: 1px 0;
margin-left: 3px;
border: 1px solid #dedede;
background-color: #f2f2f2;
cursor: pointer;
text-align: center;
outline: none;
}
.sparrow_page_list .to .btn:hover {
border-color: #ea5520;
background-color: #ea5520;
color: #fff;
}
.sparrow_loading {
width: 100% !important;
height: 100% !important;
position: absolute;
top: 0;
left: 0;
z-index: 99999;
background: rgba(220, 220, 220, .3);
}
/**
* ๆๅนๅท
*/
.sparrow_error_msg {
width: 100%;
text-align: center;
}
.sparrow_error_msg_1 {
width: 55px;
height: 55px;
line-height: 55px;
font-size: 35px;
border: 1px solid #c3c3c3;
color: #909090;
border-radius: 30px;
text-align: center;
margin: 0px auto;
}
.sparrow_error_msg_2 {
text-align: center;
color: #909090;
margin-top: 15px;
}
.laydate-icon,
.laydate_body .laydate_ym .laydate_yms,
.laydate_body .laydate_bottom,
.laydate_body .laydate_top {
box-sizing: content-box;
}
.sparrow_input_tip_error,
.sparrow_input_tip_info,
.sparrow_input_tip_ok {
display: block;
padding-left: 30px;
height: auto;
line-height: 22px;
color: #a0a0a0;
background-repeat: no-repeat;
background-position:11px 4px;
}
.sparrow_input_tip_ok {
color: #000;
background-image: url(images/icon_ok.png);
}
.sparrow_input_tip_info {
color: #999;
background-image: url(images/icon_info.png);
}
.sparrow_input_tip_error {
color: #f00;
background-image: url(images/icon_error.png);
}
.sparrow_input_tip_2.sparrow_input_tip_ok {
height: 27px;
line-height: 27px;
padding-left: 40px;
display: inline-block;
vertical-align: top;
background: url("images/sparrow_input_msg_true.png") no-repeat 10px center;
}
.sparrow_input_tip_2.sparrow_input_tip_error {
height: 27px;
line-height:27px;
padding-left: 40px;
display: inline-block;
vertical-align: top;
color: #a0a0a0;
background: url("images/sparrow_input_msg_false.png") no-repeat 10px center;
}
.sparrow_input_tip_2.sparrow_input_only_error.sparrow_input_tip_ok {
display: none;;
}
.sparrow_input_tip_2 .sparrow_input_error {
background: #fee1e4;
-webkit-transition: background .2s;
-moz-transition: background .2s;
transition: background .2s;
}
.sparrow_input_tip_3 {
height: 19px;
position: absolute;
top: -100%;
left: 20%;
background: #fff;
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 0 4px 20px 1px rgba(0,0,0,0.2);
padding: 6px 30px 7px 16px;
display: inline-block;
line-height: 16px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
z-index: 9999;
}
.sparrow_input_tip_3 .sparrow_validate_icon {
height: 16px;
padding-left: 25px;
display: inline-block;
vertical-align: middle;
font-weight: normal;
font-size: 12px;
background: url("images/sparrow-page-list-arrow.png") no-repeat 0 -187px;
max-width: 400px;
overflow: hidden;
white-space: nowrap;
color: #666;
}
.sparrow_input_tip_3 a {
width: 16px;
height: 16px;
position: absolute;
right: 10px;
top: 5px;
text-indent: -9999px;
background: url("images/sparrow-page-list-arrow.png") no-repeat 0 -215px;
}
.sparrow_input_tip_3 a:hover {
background-position: 0 -244px;
}
.sparrow_input_tip_3 .sparrow_validate_arrow {
width: 14px;
height: 14px;
position: absolute;
display: block;
overflow: hidden;
bottom: -14px;
line-height: 14px;
left: 70%;
text-align: left;
}
.sparrow_input_tip_3 .sparrow_validate_arrow i,
.sparrow_input_tip_3 .sparrow_validate_arrow em {
display: inline-block;
width: 0;
height: 0;
border-width: 7px;
border-style: solid;
overflow: hidden;
font-size: 0;
line-height: 0;
position: absolute;
}
.sparrow_input_tip_3 .sparrow_validate_arrow i {
top: 1px;
border-color: #ccc transparent transparent transparent;
}
.sparrow_input_tip_3 .sparrow_validate_arrow em {
border-color: #fff transparent transparent transparent;
}
.sparrow_btn {
font-size: 12px;
font-weight: normal;
margin: 0 3px;
margin-right: 7px;
margin-left: 7px;
padding: 2px 8px;
color: #fff;
border: 1px solid #0064b6;
background: #0071ce;
border-radius: 3px;
display: inline-block;
height: 20px;
line-height: 20px;
text-align: center;
vertical-align: middle;
background-repeat: no-repeat;
text-decoration: none;
outline: none;
cursor: pointer;
box-sizing: content-box;
}
.sparrow_btn:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .225);
}
.sparrow_btn:hover {
opacity: .9;
filter: alpha(opacity=90);
color: #fff;
text-decoration: none;
}
/**
* ้็จๅผน็ช
*/
.layui-layer-btn0 {
background: #0071ce;
}
.layui-layer-btn1 {
background: #fff;
color: #404a58;
border: 1px solid #c0c4cd;
border-radius: 3px;
}
.layui-layer-btn1:hover {
color: #404a58;
}
.layui-layer-btn2 {
background: #f60;
color: #fff;
border: 1px solid #f60;
border-radius: 3px;
}
.layui-layer-btn3 {
background: #f00;
color: #fff;
border: 1px solid #f00;
border-radius: 3px;
}
.sparrow_tiny_box_btn {
padding-top: 5px;
text-align: center
}
.sparrow_pop_msg {
width: 300px;
border: 1px solid #dea52a;
box-shadow: 2px 2px 2px #ddd;
border-radius: 4px;
background: #fffff2;
position: absolute;
animation: fadeIn 0.5s;
-moz-animation: fadeIn 0.5s;
-webkit-animation: fadeIn 0.5s;
-o-animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.sparrow_pop_title {
padding: 10px 18px 0;
}
.sparrow_pop_title_in {
height: 24px;
line-height: 20px;
border-bottom: 1px solid #CCBCAE;
}
.sparrow_pop_title_in span {
display: block;
float: left;
color: #db1010;
font-size: 14px;
font-weight: bold;
font-family: "ๅพฎ่ฝฏ้
้ป", "ๅฎไฝ";
}
.sparrow_pop_title_in a {
float: right;
margin: -2px -3px 0 0;
overflow: hidden;
width: 15px;
height: 15px;
vertical-align: middle;
background: url(images/sparrow-page-list-arrow.png) no-repeat 0 -157px;
}
.sparrow_pop_title_in a:hover {
background-position: 1px -126px;
}
.sparrow_pop_cont {
padding: 10px 18px;
word-wrap: break-word;
}
.sparrow_pop_arrow,
.sparrow_pop_arrow i {
position: absolute;
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 7px;
border-color: transparent;
}
.sparrow_pop_arrow.top {
top: -8px;
left: 50%;
margin-left: -10px;
border-top: 0;
border-bottom-color: #dea52a;
}
.sparrow_pop_arrow.top i {
top: 1px;
left: -7px;
border-top: 0;
border-bottom-color: #fffff2;
}
.sparrow_pop_arrow.left {
top: 50%;
left: -8px;
margin-top: -10px;
border-left: 0;
border-right-color: #dea52a;
}
.sparrow_pop_arrow.left i {
top: -7px;
left: 1px;
border-left: 0;
border-right-color: #fffff2;
}
.sparrow_pop_arrow.right {
top: 50%;
right: -8px;
margin-top: -10px;
border-right: 0;
border-left-color: #dea52a;
}
.sparrow_pop_arrow.right i {
top: -7px;
right: 1px;
border-right: 0;
border-left-color: #fffff2;
}
.sparrow_pop_arrow.bottom {
bottom: -8px;
left: 50%;
margin-left: -10px;
border-bottom: 0;
border-top-color: #dea52a;
}
.sparrow_pop_arrow.bottom i {
bottom: 1px;
left: -7px;
border-bottom: 0;
border-top-color: #fffff2;
}
.sparrow_title_msg {
position: absolute;
padding: 5px;
border-radius: 5px;
border: 1px solid #CB9319;
display: inline-block;
box-shadow: 2px 2px 2px #ddd;
}
.sparrow_title_msg p {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #FFFFF2;
opacity: .8;
filter: alpha(opacity=80);
border-radius: 4px;
}
.sparrow_title_msg span {
display: block;
line-height: 16px;
color: #000;
font-size: 12px;
text-align: left;
position: relative;
word-wrap: break-word;
}
.sparrow_disabled {
color: #999;
background: #f3f3f3;
cursor: default;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sparrow_help {
display: inline-block;
border-bottom: 1px dashed;
}
/*------------------------------- search_form -------------------start---*/
.filter {
width: 1200px;
margin-bottom: 20px;
background-color: #f7f7f7;
}
.filter ul {
width: 100%;
float: left;
overflow: hidden;
}
.filter li {
float: left;
margin: 3px 10px 5px;
}
.filter .fr {
float: right;
}
.filter li a {
height: 22px;
line-height: 22px;
padding: 0 9px;
display: inline-block;
color: #2a335a;
white-space: nowrap;
border-radius: 3px;
border: 1px solid transparent;
}
.filter li:hover a,
.filter li.active a {
color: #e73c32;
border: 1px solid #e73c32;
}
.filter li.active .btn,
.filter li:hover .btn {
color: #fff;
}
.filter .btn {
color: #fff;
background-color: #e73c32;
margin-right: 5px;
}
.filter .btn:hover {
background-color: #eb683a;
}
.filter_in {
height: 39px;
border-bottom: 1px dashed #e4e4e4;
overflow: hidden;
}
.filter_in.last {
border-bottom: 0;
}
.filter_title {
width: 70px;
height: 100%;
padding-left: 30px;
line-height: 39px;
color: #666;
background: #eee url("images/sparrow_icon.png") no-repeat 0 5px;
float: left;
font-weight: bold;
}
.filter_cont {
width: 1085px;
padding: 5px 0 5px 10px;
float: left;
}
.filter_cont_1 ul {
max-width: 1025px;
}
.filter input {
width: 34px;
padding: 1px 3px;
}
.filter_cont_input {
line-height: 18px;
margin-right: 5px;
margin-left: 5px;
float: left;
}
.filter_cont_input input {
margin-right: 5px;
}
.filter_sure {
width: 27px;
padding: 0 4px;
margin: 0 2px 2px 20px;
float: left;
border: 1px solid #e73c32;
}
.filter_sure:hover {
border: 1px solid #eb683a;
}
.filter_more {
height: 24px;
line-height: 24px;
padding-left: 15px;
margin: 2px 5px 0 0;
border-radius: 3px;
background: #02883D url("images/icon_index.png") no-repeat -1px -957px;
}
.filter_more.down {
background-position: 0 -988px;
}
.kind_all {
height: 24px;
padding: 7px 0;
position: relative;
margin-bottom: -1px;
border: 1px solid #e9e9e9;
}
.kind_all ul li {
float: left;
margin-left: 10px;
}
.kind_all ul li a {
height: 22px;
line-height: 22px;
padding: 0 5px;
display: block;
border: 1px solid #e9e9e9;
color: #737474;
}
.kind_all ul li a:hover,
.kind_all ul li.active a {
border-color: #63b77b;
background-color: #89c997;
color: #fff;
}
.kind_all div a {
margin-right: 10px;
display: inline-block;
color: #3a77bc;
}
.peng_share_how {
margin-left: 10px;
color: #3a77bc;
}
.peng_td_img {
padding: 10px;
}
.peng_td_img img {
vertical-align: middle;
}
.either_choose .filter_cont_in {
position: relative;
float: left;
*padding-left: 10px;
}
.filter_in.either_choose {
overflow: visible;
}
.either_choose .filter_cont_in:hover .filter_cont_in_none {
display: block;
}
.either_choose .filter_cont_in a {
color: #2a335a;
}
.filter_cont_in_none {
position: absolute;
top: 100%;
left: 10px;
width: 200px;
padding: 10px;
background-color: #fff;
border: 1px solid #c4c4c4;
margin-top: -1px;
display: none;
z-index: 9;
}
.filter_cont_in_none.active {
border-color: #169442;
}
.filter_cont_in_none a {
display: inline-block;
white-space: nowrap;
padding: 0 10px;
text-align: left;
line-height: 24px;
float: left;
}
.filter_cont_in_none a:hover {
text-decoration: underline;
}
.filter_cont_in_none div a.btn {
width: 40px;
height: 20px;
line-height: 20px;
text-align: center;
margin-left: 10px;
border-radius: 3px;
padding: 0;
float: none;
color: #fff;
}
.filter_cont_in_none div a:hover {
text-decoration: none;
}
.filter .only_tejia {
width: 14px;
height: 14px;
margin-left: 20px;
vertical-align: bottom;
}
.either_choose_a {
position: relative;
width: auto;
height: 25px;
line-height: 25px;
padding: 0 8px;
display: inline-block;
border: 1px solid #c4c4c4;
margin-left: 10px;
}
.either_choose .filter_cont_in .either_choose_a.active {
border-color: #169442;
color: #169442;
z-index: 10;
}
.either_choose .filter_cont_in:hover .either_choose_a.active {
border-color: #169442;
}
.either_choose_a b {
font-weight: normal;
}
/*------------------------------- search_form -------------------end---*/
.hide{
display: none;
} | src/main/resources/public/vender/sparrow/sparrow.css | *,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
}
html,
body {
font-family: 'Microsoft Yahei';
}
ul,
li {
list-style: none;
}
img {
border: 0 none;
}
a,
a:hover {
text-decoration: none;
}
.hide {
display: none !important;
}
.hidden {
visibility: hidden;
}
.red {
color: red;
}
.blue {
color: blue;
}
.green {
color: green;
}
.gray {
color: gray;
}
.yellow {
color: yellow;
}
/* font-size */
.f12 {
font-size: 12px;
}
.f14 {
font-size: 14px;
}
.f16 {
font-size: 16px;
}
.f18 {
font-size: 18px;
}
.f20 {
font-size: 20px;
}
.f22 {
font-size: 22px;
}
.f24 {
font-size: 24px;
}
.f26 {
font-size: 26px;
}
.f28 {
font-size: 28px;
}
.f30 {
font-size: 30px;
}
.f32 {
font-size: 32px;
}
/*padding*/
.p0 {
padding: 0px;
}
.p5 {
padding: 5px;
}
.p10 {
padding: 10px;
}
.p15 {
padding: 15px;
}
.p20 {
padding: 20px;
}
.pt0 {
padding-top: 0px;
}
.pt5 {
padding-top: 5px;
}
.pt10 {
padding-top: 10px;
}
.pt15 {
padding-top: 15px;
}
.pt20 {
padding-top: 20px;
}
.pt25 {
padding-top: 25px;
}
.pt30 {
padding-top: 30px;
}
.pt35 {
padding-top: 35px;
}
.pt40 {
padding-top: 40px;
}
.pt45 {
padding-top: 45px;
}
.pt50 {
padding-top: 50px;
}
.pb0 {
padding-bottom: 0px;
}
.pb5 {
padding-bottom: 5px;
}
.pb10 {
padding-bottom: 10px;
}
.pb15 {
padding-bottom: 15px;
}
.pb20 {
padding-bottom: 20px;
}
.pb25 {
padding-bottom: 25px;
}
.pb30 {
padding-bottom: 30px;
}
.pb35 {
padding-bottom: 35px;
}
.pb40 {
padding-bottom: 40px;
}
.pb45 {
padding-bottom: 45px;
}
.pb50 {
padding-bottom: 50px;
}
.pl0 {
padding-left: 0px;
}
.pl5 {
padding-left: 5px;
}
.pl10 {
padding-left: 10px;
}
.pl15 {
padding-left: 15px;
}
.pl20 {
padding-left: 20px;
}
.pl25 {
padding-left: 25px;
}
.pl30 {
padding-left: 30px;
}
.pl35 {
padding-left: 35px;
}
.pl40 {
padding-left: 40px;
}
.pl45 {
padding-left: 45px;
}
.pl50 {
padding-left: 50px;
}
.pr0 {
padding-right: 0px;
}
.pr5 {
padding-right: 5px;
}
.pr10 {
padding-right: 10px;
}
.pr15 {
padding-right: 15px;
}
.pr20 {
padding-right: 20px;
}
.pr25 {
padding-right: 25px;
}
.pr30 {
padding-right: 30px;
}
.pr35 {
padding-right: 35px;
}
.pr40 {
padding-right: 40px;
}
.pr45 {
padding-right: 45px;
}
.pr50 {
padding-right: 50px;
}
.w_100{
width: 100px !important;
}
.w_200{
width: 200px !important;
}
.w_300{
width: 300px !important;
}
.w_400{
width: 400px !important;
}
.w_500{
width: 500px !important;
}
.w_600{
width: 600px !important;
}
.w_700{
width: 700px !important;
}
.w_800{
width: 800px !important;
}
/*margin*/
.m0 {
margin: 0px !important;
}
.mt0 {
margin-top: 0px !important;
}
.mb0 {
margin-bottom: 0px !important;
}
.ml0 {
margin-left: 0px !important;
}
.mr0 {
margin-right: 0px !important;
}
.m5 {
margin: 5px;
}
.m10 {
margin: 10px;
}
.m15 {
margin: 15px;
}
.m20 {
margin: 20px;
}
.mt5 {
margin-top: 5px;
}
.mt10 {
margin-top: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt20 {
margin-top: 20px;
}
.mt25 {
margin-top: 25px;
}
.mt30 {
margin-top: 30px;
}
.mt35 {
margin-top: 35px;
}
.mt40 {
margin-top: 40px;
}
.mt45 {
margin-top: 45px;
}
.mt50 {
margin-top: 50px;
}
.mb5 {
margin-bottom: 5px;
}
.mb10 {
margin-bottom: 10px;
}
.mb15 {
margin-bottom: 15px;
}
.mb20 {
margin-bottom: 20px;
}
.mb25 {
margin-bottom: 25px;
}
.mb30 {
margin-bottom: 30px;
}
.mb35 {
margin-bottom: 35px;
}
.mb40 {
margin-bottom: 40px;
}
.mb45 {
margin-bottom: 45px;
}
.mb50 {
margin-bottom: 50px;
}
.ml5 {
margin-left: 5px;
}
.ml10 {
margin-left: 10px;
}
.ml15 {
margin-left: 15px;
}
.ml20 {
margin-left: 20px;
}
.ml25 {
margin-left: 25px;
}
.ml30 {
margin-left: 30px;
}
.ml35 {
margin-left: 35px;
}
.ml40 {
margin-left: 40px;
}
.ml45 {
margin-left: 45px;
}
.ml50 {
margin-left: 50px;
}
.mr5 {
margin-right: 5px;
}
.mr10 {
margin-right: 10px;
}
.mr15 {
margin-right: 15px;
}
.mr20 {
margin-right: 20px;
}
.mr25 {
margin-right: 25px;
}
.mr30 {
margin-right: 30px;
}
.mr35 {
margin-right: 35px;
}
.mr40 {
margin-right: 40px;
}
.mr45 {
margin-right: 45px;
}
.mr50 {
margin-right: 50px;
}
/*text-align*/
.tl {
text-align: left;
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
/*float*/
.fl {
float: left;
}
.fr {
float: right;
}
.fn {
float: none;
}
.clear {
clear: both;
}
/*position*/
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
/* sparrow_icon */
.sparrow_icon {
background-image: url('images/sparrow_icon.png');
background-repeat: no-repeat;
}
/**
* ๅผน็ช้ดๅฝฑ
*/
.layui-layer {
box-shadow: 1px 1px 50px rgba(0, 0, 0, .5);
}
/*tip*/
.sparrow_tip_box {
display: none;
background: #fff;
width: 260px;
border: 1px solid #e0e0e0;
position: fixed;
right: 10px;
bottom: 10px;
}
.sparrow_tip_head {
line-height: 32px;
background: #f6f0f3;
border-bottom: 1px solid #e0e0e0;
position: relative;
font-size: 12px;
padding: 0 0 0 10px;
}
.sparrow_tip_head h2 {
margin: 0;
padding: 0;
font-size: 14px;
color: #666;
line-height: 32px;
height: 32px;
}
.sparrow_tip_head .sparrow_tip_close {
position: absolute;
right: 10px;
top: 1px;
}
.sparrow_tip_head a.sparrow_tip_close:hover {
color: #f00;
cursor: pointer;
}
.sparrow_tip_content {
padding: 5px 10px;
}
.sparrow_tip_title a {
line-height: 24px;
font-size: 14px;
font-family: 'ๅพฎ่ฝฏ้
้ป';
color: #333;
font-weight: bold;
text-decoration: none;
}
.sparrow_tip_title a:hover {
color: #f60;
}
.sparrow_tip_intro {
text-indent: 24px;
line-height: 160%;
margin: 5px 0;
color: #666;
}
.sparrow_tip_more {
text-align: right;
border-top: 1px dotted #ccc;
line-height: 24px;
margin: 8px 0 0 0;
}
.sparrow_tip_more a {
color: #f60;
}
.sparrow_tip_more a:hover {
color: #f00;
}
@-webkit-keyframes example {
from {
color: red;
}
to {
color: black;
}
}
/* ่ฟๆฏๅจ็ปๅณๅฐๅบ็จ็็ฎๆ ๅ
็ด */
.sparrow_error {
-webkit-animation-name: example;
-webkit-animation-duration: 400ms;
-webkit-animation-iteration-count: 4;
/* 1 is the default */
-webkit-animation-direction: alternate;
/* normal is the default */
color: red;
font-weight: bold;
}
.sparrow_page_list {
clear: both;
text-align: center;
padding-top: 20px;
font-size: 0;
font-family: arial;
}
.sparrow_page_list .hide {
display: none;
}
.sparrow_page_list .disabled {
cursor: not-allowed;
color: #ccc;
}
.sparrow_page_list .disabled:hover {
color: #ccc;
border-color: #ccc;
}
.sparrow_page_list a {
font-size: 14px;
float: left;
color: #000;
border: 1px solid #ccc;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
margin: 0 0 0 -1px;
position: relative;
text-decoration: none;
font-family: arial;
box-sizing: content-box;
}
.sparrow_page_list .more {
border: none;
height: 36px;
width: 36px;
color: #999;
cursor: text;
}
.sparrow_page_list .more:hover {
color: #999;
}
.sparrow_page_list .active {
background: #ea5520;
border-color: #ea5520;
color: #fff;
cursor: text;
}
.sparrow_page_list a:hover {
border-color: #ea5520;
color: #ea5520;
z-index: 2;
}
.sparrow_page_list .active:hover {
color: #fff;
z-index: 0;
}
.sparrow_page_list .pre,
.sparrow_page_list .next {
width: 70px;
}
.sparrow_page_list .pre {
margin-right: 10px;
}
.sparrow_page_list .next {
margin-left: 10px;
}
.sparrow_page_list .page,
.sparrow_page_list .total,
.sparrow_page_list .to {
display: inline-block;
font-size: 12px;
}
.sparrow_page_list .page.arrow .pre {
text-indent: 8px;
}
.sparrow_page_list .page.arrow .next {
text-indent: -8px;
}
.sparrow_page_list .page.arrow .pre:before,
.sparrow_page_list .page.arrow .next:before,
.sparrow_page_list .page.arrowOnly .pre:before,
.sparrow_page_list .page.arrowOnly .next:before {
background: url(images/sparrow-page-list-arrow.png) no-repeat 0 0;
}
.sparrow_page_list .page.arrow .pre:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
left: 6px;
background-position: 0 -18px;
}
.sparrow_page_list .page.arrow .pre:hover:before {
background-position: 0 -9px;
}
.sparrow_page_list .page.arrow .pre.disabled:before,
.sparrow_page_list .page.arrow .pre.disabled:hover:before {
background-position: 0 0;
}
.sparrow_page_list .page.arrow .next:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
right: 6px;
background-position: -6px -18px;
}
.sparrow_page_list .page.arrow .next:hover:before {
background-position: -6px -9px;
}
.sparrow_page_list .page.arrow .next.disabled:before,
.sparrow_page_list .page.arrow .next.disabled:hover:before {
background-position: -6px 0;
}
.sparrow_page_list .page.arrowOnly .pre,
.sparrow_page_list .page.arrowOnly .next {
width: 34px;
}
.sparrow_page_list .page.arrowOnly .pre:before,
.sparrow_page_list .page.arrowOnly .next:before {
content: "";
width: 6px;
height: 9px;
position: absolute;
top: 12px;
left: 14px;
}
.sparrow_page_list .page.arrowOnly .pre:before {
background-position: 0 -18px;
}
.sparrow_page_list .page.arrowOnly .next:before {
background-position: -6px -18px;
}
.sparrow_page_list .page.arrowOnly .pre:hover:before {
background-position: 0 -9px;
}
.sparrow_page_list .page.arrowOnly .next:hover:before {
background-position: -6px -9px;
}
.sparrow_page_list .page.arrowOnly .pre.disabled:hover:before,
.sparrow_page_list .page.arrowOnly .pre.disabled:before {
background-position: 0 0;
}
.sparrow_page_list .page.arrowOnly .next.disabled:hover:before,
.sparrow_page_list .page.arrowOnly .next.disabled:before {
background-position: -6px 0;
}
.sparrow_page_list .page.arrowOnly a {
margin-right: 10px;
}
.sparrow_page_list .page.arrowOnly .next {
margin: 0;
}
.sparrow_page_list .first,
.sparrow_page_list .last {
font-size: 18px;
}
.sparrow_page_list .total span {
float: left;
color: #999;
line-height: 36px;
}
.sparrow_page_list .total {
margin: 0 15px 0 30px;
}
.sparrow_page_list .to {
height: 29px;
}
.sparrow_page_list .to span,
.sparrow_page_list .to input {
float: left;
color: #999;
}
.sparrow_page_list .to span {
margin-top: 3px;
}
.sparrow_page_list .to .num {
width: 45px;
margin: 0 3px;
padding: 1px 0;
text-align: center;
border: 1px solid #dedede;
outline: none;
}
.sparrow_page_list .to .num:focus {
border-color: #ea5520;
}
.sparrow_page_list .to .btn {
width: 35px;
padding: 1px 0;
margin-left: 3px;
border: 1px solid #dedede;
background-color: #f2f2f2;
cursor: pointer;
text-align: center;
outline: none;
}
.sparrow_page_list .to .btn:hover {
border-color: #ea5520;
background-color: #ea5520;
color: #fff;
}
.sparrow_loading {
width: 100% !important;
height: 100% !important;
position: absolute;
top: 0;
left: 0;
z-index: 99999;
background: rgba(220, 220, 220, .3);
}
/**
* ๆๅนๅท
*/
.sparrow_error_msg {
width: 100%;
text-align: center;
}
.sparrow_error_msg_1 {
width: 55px;
height: 55px;
line-height: 55px;
font-size: 35px;
border: 1px solid #c3c3c3;
color: #909090;
border-radius: 30px;
text-align: center;
margin: 0px auto;
}
.sparrow_error_msg_2 {
text-align: center;
color: #909090;
margin-top: 15px;
}
.laydate-icon,
.laydate_body .laydate_ym .laydate_yms,
.laydate_body .laydate_bottom,
.laydate_body .laydate_top {
box-sizing: content-box;
}
.sparrow_input_tip_error,
.sparrow_input_tip_info,
.sparrow_input_tip_ok {
display: block;
padding-left: 30px;
height: auto;
line-height: 22px;
color: #a0a0a0;
background-repeat: no-repeat;
background-position:11px 4px;
}
.sparrow_input_tip_ok {
color: #000;
background-image: url(images/icon_ok.png);
}
.sparrow_input_tip_info {
color: #999;
background-image: url(images/icon_info.png);
}
.sparrow_input_tip_error {
color: #f00;
background-image: url(images/icon_error.png);
}
.sparrow_input_tip_2.sparrow_input_tip_ok {
height: 27px;
line-height: 27px;
padding-left: 40px;
display: inline-block;
vertical-align: top;
background: url("images/sparrow_input_msg_true.png") no-repeat 10px center;
}
.sparrow_input_tip_2.sparrow_input_tip_error {
height: 27px;
line-height:27px;
padding-left: 40px;
display: inline-block;
vertical-align: top;
color: #a0a0a0;
background: url("images/sparrow_input_msg_false.png") no-repeat 10px center;
}
.sparrow_input_tip_2.sparrow_input_only_error.sparrow_input_tip_ok {
display: none;;
}
.sparrow_input_tip_2 .sparrow_input_error {
background: #fee1e4;
-webkit-transition: background .2s;
-moz-transition: background .2s;
transition: background .2s;
}
.sparrow_input_tip_3 {
height: 19px;
position: absolute;
top: -100%;
left: 20%;
background: #fff;
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 0 4px 20px 1px rgba(0,0,0,0.2);
padding: 6px 30px 7px 16px;
display: inline-block;
line-height: 16px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
z-index: 9999;
}
.sparrow_input_tip_3 .sparrow_validate_icon {
height: 16px;
padding-left: 25px;
display: inline-block;
vertical-align: middle;
font-weight: normal;
font-size: 12px;
background: url("images/sparrow-page-list-arrow.png") no-repeat 0 -187px;
max-width: 400px;
overflow: hidden;
white-space: nowrap;
color: #666;
}
.sparrow_input_tip_3 a {
width: 16px;
height: 16px;
position: absolute;
right: 10px;
top: 5px;
text-indent: -9999px;
background: url("images/sparrow-page-list-arrow.png") no-repeat 0 -215px;
}
.sparrow_input_tip_3 a:hover {
background-position: 0 -244px;
}
.sparrow_input_tip_3 .sparrow_validate_arrow {
width: 14px;
height: 14px;
position: absolute;
display: block;
overflow: hidden;
bottom: -14px;
line-height: 14px;
left: 70%;
text-align: left;
}
.sparrow_input_tip_3 .sparrow_validate_arrow i,
.sparrow_input_tip_3 .sparrow_validate_arrow em {
display: inline-block;
width: 0;
height: 0;
border-width: 7px;
border-style: solid;
overflow: hidden;
font-size: 0;
line-height: 0;
position: absolute;
}
.sparrow_input_tip_3 .sparrow_validate_arrow i {
top: 1px;
border-color: #ccc transparent transparent transparent;
}
.sparrow_input_tip_3 .sparrow_validate_arrow em {
border-color: #fff transparent transparent transparent;
}
.sparrow_btn {
font-size: 12px;
font-weight: normal;
margin: 0 3px;
margin-right: 7px;
margin-left: 7px;
padding: 2px 8px;
color: #fff;
border: 1px solid #0064b6;
background: #0071ce;
border-radius: 3px;
display: inline-block;
height: 20px;
line-height: 20px;
text-align: center;
vertical-align: middle;
background-repeat: no-repeat;
text-decoration: none;
outline: none;
cursor: pointer;
box-sizing: content-box;
}
.sparrow_btn:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .225);
}
.sparrow_btn:hover {
opacity: .9;
filter: alpha(opacity=90);
color: #fff;
text-decoration: none;
}
/**
* ้็จๅผน็ช
*/
.layui-layer-btn0 {
background: #0071ce;
}
.layui-layer-btn1 {
background: #fff;
color: #404a58;
border: 1px solid #c0c4cd;
border-radius: 3px;
}
.layui-layer-btn1:hover {
color: #404a58;
}
.layui-layer-btn2 {
background: #f60;
color: #fff;
border: 1px solid #f60;
border-radius: 3px;
}
.layui-layer-btn3 {
background: #f00;
color: #fff;
border: 1px solid #f00;
border-radius: 3px;
}
.sparrow_tiny_box_btn {
padding-top: 5px;
text-align: center
}
.sparrow_pop_msg {
width: 300px;
border: 1px solid #dea52a;
box-shadow: 2px 2px 2px #ddd;
border-radius: 4px;
background: #fffff2;
position: absolute;
animation: fadeIn 0.5s;
-moz-animation: fadeIn 0.5s;
-webkit-animation: fadeIn 0.5s;
-o-animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.sparrow_pop_title {
padding: 10px 18px 0;
}
.sparrow_pop_title_in {
height: 24px;
line-height: 20px;
border-bottom: 1px solid #CCBCAE;
}
.sparrow_pop_title_in span {
display: block;
float: left;
color: #db1010;
font-size: 14px;
font-weight: bold;
font-family: "ๅพฎ่ฝฏ้
้ป", "ๅฎไฝ";
}
.sparrow_pop_title_in a {
float: right;
margin: -2px -3px 0 0;
overflow: hidden;
width: 15px;
height: 15px;
vertical-align: middle;
background: url(images/sparrow-page-list-arrow.png) no-repeat 0 -157px;
}
.sparrow_pop_title_in a:hover {
background-position: 1px -126px;
}
.sparrow_pop_cont {
padding: 10px 18px;
word-wrap: break-word;
}
.sparrow_pop_arrow,
.sparrow_pop_arrow i {
position: absolute;
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 7px;
border-color: transparent;
}
.sparrow_pop_arrow.top {
top: -8px;
left: 50%;
margin-left: -10px;
border-top: 0;
border-bottom-color: #dea52a;
}
.sparrow_pop_arrow.top i {
top: 1px;
left: -7px;
border-top: 0;
border-bottom-color: #fffff2;
}
.sparrow_pop_arrow.left {
top: 50%;
left: -8px;
margin-top: -10px;
border-left: 0;
border-right-color: #dea52a;
}
.sparrow_pop_arrow.left i {
top: -7px;
left: 1px;
border-left: 0;
border-right-color: #fffff2;
}
.sparrow_pop_arrow.right {
top: 50%;
right: -8px;
margin-top: -10px;
border-right: 0;
border-left-color: #dea52a;
}
.sparrow_pop_arrow.right i {
top: -7px;
right: 1px;
border-right: 0;
border-left-color: #fffff2;
}
.sparrow_pop_arrow.bottom {
bottom: -8px;
left: 50%;
margin-left: -10px;
border-bottom: 0;
border-top-color: #dea52a;
}
.sparrow_pop_arrow.bottom i {
bottom: 1px;
left: -7px;
border-bottom: 0;
border-top-color: #fffff2;
}
.sparrow_title_msg {
position: absolute;
padding: 5px;
border-radius: 5px;
border: 1px solid #CB9319;
display: inline-block;
box-shadow: 2px 2px 2px #ddd;
}
.sparrow_title_msg p {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #FFFFF2;
opacity: .8;
filter: alpha(opacity=80);
border-radius: 4px;
}
.sparrow_title_msg span {
display: block;
line-height: 16px;
color: #000;
font-size: 12px;
text-align: left;
position: relative;
word-wrap: break-word;
}
.sparrow_disabled {
color: #999;
background: #f3f3f3;
cursor: default;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sparrow_help {
display: inline-block;
border-bottom: 1px dashed;
}
/*------------------------------- search_form -------------------start---*/
.filter {
width: 1200px;
margin-bottom: 20px;
background-color: #f7f7f7;
}
.filter ul {
width: 100%;
float: left;
overflow: hidden;
}
.filter li {
float: left;
margin: 3px 10px 5px;
}
.filter .fr {
float: right;
}
.filter li a {
height: 22px;
line-height: 22px;
padding: 0 9px;
display: inline-block;
color: #2a335a;
white-space: nowrap;
border-radius: 3px;
border: 1px solid transparent;
}
.filter li:hover a,
.filter li.active a {
color: #e73c32;
border: 1px solid #e73c32;
}
.filter li.active .btn,
.filter li:hover .btn {
color: #fff;
}
.filter .btn {
color: #fff;
background-color: #e73c32;
margin-right: 5px;
}
.filter .btn:hover {
background-color: #eb683a;
}
.filter_in {
height: 39px;
border-bottom: 1px dashed #e4e4e4;
overflow: hidden;
}
.filter_in.last {
border-bottom: 0;
}
.filter_title {
width: 70px;
height: 100%;
padding-left: 30px;
line-height: 39px;
color: #666;
background: #eee url("images/sparrow_icon.png") no-repeat 0 5px;
float: left;
font-weight: bold;
}
.filter_cont {
width: 1085px;
padding: 5px 0 5px 10px;
float: left;
}
.filter_cont_1 ul {
max-width: 1025px;
}
.filter input {
width: 34px;
padding: 1px 3px;
}
.filter_cont_input {
line-height: 18px;
margin-right: 5px;
margin-left: 5px;
float: left;
}
.filter_cont_input input {
margin-right: 5px;
}
.filter_sure {
width: 27px;
padding: 0 4px;
margin: 0 2px 2px 20px;
float: left;
border: 1px solid #e73c32;
}
.filter_sure:hover {
border: 1px solid #eb683a;
}
.filter_more {
height: 24px;
line-height: 24px;
padding-left: 15px;
margin: 2px 5px 0 0;
border-radius: 3px;
background: #02883D url("images/icon_index.png") no-repeat -1px -957px;
}
.filter_more.down {
background-position: 0 -988px;
}
.kind_all {
height: 24px;
padding: 7px 0;
position: relative;
margin-bottom: -1px;
border: 1px solid #e9e9e9;
}
.kind_all ul li {
float: left;
margin-left: 10px;
}
.kind_all ul li a {
height: 22px;
line-height: 22px;
padding: 0 5px;
display: block;
border: 1px solid #e9e9e9;
color: #737474;
}
.kind_all ul li a:hover,
.kind_all ul li.active a {
border-color: #63b77b;
background-color: #89c997;
color: #fff;
}
.kind_all div a {
margin-right: 10px;
display: inline-block;
color: #3a77bc;
}
.peng_share_how {
margin-left: 10px;
color: #3a77bc;
}
.peng_td_img {
padding: 10px;
}
.peng_td_img img {
vertical-align: middle;
}
.either_choose .filter_cont_in {
position: relative;
float: left;
*padding-left: 10px;
}
.filter_in.either_choose {
overflow: visible;
}
.either_choose .filter_cont_in:hover .filter_cont_in_none {
display: block;
}
.either_choose .filter_cont_in a {
color: #2a335a;
}
.filter_cont_in_none {
position: absolute;
top: 100%;
left: 10px;
width: 200px;
padding: 10px;
background-color: #fff;
border: 1px solid #c4c4c4;
margin-top: -1px;
display: none;
z-index: 9;
}
.filter_cont_in_none.active {
border-color: #169442;
}
.filter_cont_in_none a {
display: inline-block;
white-space: nowrap;
padding: 0 10px;
text-align: left;
line-height: 24px;
float: left;
}
.filter_cont_in_none a:hover {
text-decoration: underline;
}
.filter_cont_in_none div a.btn {
width: 40px;
height: 20px;
line-height: 20px;
text-align: center;
margin-left: 10px;
border-radius: 3px;
padding: 0;
float: none;
color: #fff;
}
.filter_cont_in_none div a:hover {
text-decoration: none;
}
.filter .only_tejia {
width: 14px;
height: 14px;
margin-left: 20px;
vertical-align: bottom;
}
.either_choose_a {
position: relative;
width: auto;
height: 25px;
line-height: 25px;
padding: 0 8px;
display: inline-block;
border: 1px solid #c4c4c4;
margin-left: 10px;
}
.either_choose .filter_cont_in .either_choose_a.active {
border-color: #169442;
color: #169442;
z-index: 10;
}
.either_choose .filter_cont_in:hover .either_choose_a.active {
border-color: #169442;
}
.either_choose_a b {
font-weight: normal;
}
/*------------------------------- search_form -------------------end---*/
.hide{
display: none;
} | 0.45641 | 0.109325 |
@charset "utf-8";
/* Malgun Web Standard Team KKS, LSJ */
/* spot */
.spot{position:relative;vertical-align:top}
.swiper-container:before{display:block;position:absolute;right:0;z-index:11;bottom:0;width:15px;height:15px;background:url(../img/main_banner/bg_spot.png) no-repeat;background-size:15px auto;content:''}
.swiper-wrapper.v2{height:200px}
.swiper-wrapper.v2 img{max-width:128px}
.swiper-wrapper.v2 a{display:block;font-size:13px;font-weight:normal;color:#fff;line-height:1.6}
.loc_banner_visual {position:absolute;top:13px;right:10px;text-align:right}
.swiper-pagination{position:absolute;right:10px;bottom:10px;z-index:11;width:51px;height:22px;padding:0 10px;background:rgba(0,1,36,.2);font-size:12px;color:#fff;line-height:24px;border-radius:11px}
.loc_banner_page{display:inline-block;position:absolute;right:0;bottom:0;width:51px;height:22px}
.loc_morebanner{position:absolute;right:20px;bottom:17px;width:9px;height:9px;z-index:12}
.bgcolor_mbanner_01{background:#00b5ef}
.bgcolor_mbanner_02{background:#d92732}
.bgcolor_mbanner_03{background:#ff9d00}
.bgcolor_mbanner_04{background:#2a56ba}
.bgcolor_mbanner_05{background:#ff798e}
.bgcolor_mbanner_06{background:#60bb46}
.bgcolor_mbanner_07{background:#885cd9}
.bgcolor_mbanner_08{background:#ff7113}
.bgcolor_mbanner_09{background:#61e2c0}
.bgcolor_mbanner_10{background:#ffde02}
.bgcolor_mbanner_11{background:#97c8ff}
.bgcolor_mbanner_12{background:#bfdc3c}
.bgcolor_mbanner_13{background:#ffc5c6}
.news_banner{position:absolute;top:50%;left:16px;z-index:11;width:55%}
.news_banner dt{margin-bottom:7px;font-size:22px;font-weight:bold;letter-spacing:-1px;line-height:27px}
.txt_term{display:inline-block;height:19px;margin-top:15px;padding:0 11px;background:#fff;font-size:12px;color:#666;line-height:22px;border-radius:10px}
.banner-wrapper{height:190px}
.banner-wrapper img{max-width:128px}
.banner-wrapper a{display:block;font-size:13px;font-weight:normal;color:#fff;line-height:1.6}
.swiper-slide.v3 a{color:#222}
.loc_spot_close{position:fixed;bottom:0;left:50%;z-index:20;width:36px;height:36px;margin-left:-18px}
/* Icon */
.ico_main{display:inline-block;overflow:hidden;height:41px;background:url(../img/ico_main.png) no-repeat;background-size:131px auto;text-indent:-999em;vertical-align:middle}
.ico_explain{width:28px;background-position:0 0}
.ico_listen{width:35px;background-position:-30px 0}
.ico_errata{width:27px;background-position:-69px 0}
.ico_whir{width:33px;background-position:-98px 0}
.ico_new{width:5px;height:5px;margin-top:2px;background-position:-44px -35px;vertical-align:top}
/* ํ์ต์๋ฃ์ค */
.group_studydata{padding:19px 16px}
.lst_studydata{overflow:hidden}
.lst_studydata >li{float:left;width:25%;text-align:center}
.lst_studydata >li > a{display:block;font-weight:bold;color:#222}
.txt_studydata{display:block;margin-top:2px}
/* ํ์ต์๋ฃ์ค ํญ */
.group_tab_grade{padding:0 16px;border-bottom:1px solid #e4e4e4}
.swipe-contents-wrapper{width:100%}
.swipe-contents{position:relative;width:100%;background-color:#efefef;border-radius:10px 10px 0 0}
.swipe-tab-list{display:flex;width:100%;flex-direction:row;justify-content:flex-start;border-radius:13px}
.swipe-tab-list > li{width:33.3%;height:37px;text-align:center}
.swipe-tab-list > li:first-child{width:33.4%}
.swipe-tab-list a{display:block;position:relative;height:37px;font-size:14px;font-weight:bold;color:#222;line-height:39px}
.swipe-tab-list a.current{border:2px solid #5fba46;background-color:#fff;color:#5fba46 !important;border-radius:10px 10px 0 0;line-height:35px}
.swipe-tab-list a.current:before{display:block;position:absolute;top:28px;left:50%;width:11px;height:7px;margin-left:-5px;background:url(../img/ico.png) no-repeat -57px 0;background-size:200px auto;content:''}
.swipe-contents-list-wrapper{overflow:hidden;position:relative;width:100%}
.swipe-contents-list{display:flex;display:-webkit-flex;position:absolute;top:0;left:0;flex-direction:row;-webkit-flex-direction:row;justify-content:flex-start;-webkit-justify-content:flex-start}
.swipe-contents-list li{height:153px;background:#fff}
.lst_studybook{display:-webkit-box;padding-top:15px}
.lst_studybook li{margin-left:15px;-webkit-box-flex:1}
.lst_studybook li:first-child{margin-left:0}
.lst_studybook li:nth-child(1n+1){text-align:left}
.lst_studybook li:nth-child(1n+2){text-align:center}
.lst_studybook li:nth-child(1n+3){text-align:right}
.lst_studybook li a{display:inline-block;border:1px solid #e4e4e4}
.lst_studybook li img{width:84px;height:116px;vertical-align:top}
.news_category{margin:6px 10px 0;color:#222;text-align:center}
.news_category dt{font-size:12px;font-weight:bold;color:#5fba46}
/* ๋ฉ์ธ ๋
ธ์ถ ์นดํ
๊ณ ๋ฆฌ */
.group_main_category{padding:20px 9px 17px;border-bottom:1px solid #e4e4e4}
.lst_maincategory{overflow:hidden}
.lst_maincategory > li{float:left;width:50%}
.lst_maincategory > li > a{display:block;margin:0 7px}
.lst_maincategory > li > a img{border-radius:15px 0 15px 0}
/* ๊ณต์ง์ฌํญ */
.group_main_notice{padding:15px 16px 16px}
.lst_main_notice{color:#222}
.lst_main_notice li{position:relative;margin-top:1px}
.lst_main_notice li:first-child{margin-top:0}
.lst_main_notice li strong{position:absolute;top:1px;left:0}
.lst_main_notice li a{display:inline-block;padding-left:38px;box-sizing:border-box}
@media all and (min-width:321px) and (max-width:675px){
}
@media all and (min-width:350px){
/* ํ์ต์๋ฃ์ค ํญ */
.swipe-contents-list li{height:178px}
.lst_studybook li img{width:102px;height:141px;vertical-align:top}
} | renewal/portfolio/nabahim/pub/css/main.css | @charset "utf-8";
/* Malgun Web Standard Team KKS, LSJ */
/* spot */
.spot{position:relative;vertical-align:top}
.swiper-container:before{display:block;position:absolute;right:0;z-index:11;bottom:0;width:15px;height:15px;background:url(../img/main_banner/bg_spot.png) no-repeat;background-size:15px auto;content:''}
.swiper-wrapper.v2{height:200px}
.swiper-wrapper.v2 img{max-width:128px}
.swiper-wrapper.v2 a{display:block;font-size:13px;font-weight:normal;color:#fff;line-height:1.6}
.loc_banner_visual {position:absolute;top:13px;right:10px;text-align:right}
.swiper-pagination{position:absolute;right:10px;bottom:10px;z-index:11;width:51px;height:22px;padding:0 10px;background:rgba(0,1,36,.2);font-size:12px;color:#fff;line-height:24px;border-radius:11px}
.loc_banner_page{display:inline-block;position:absolute;right:0;bottom:0;width:51px;height:22px}
.loc_morebanner{position:absolute;right:20px;bottom:17px;width:9px;height:9px;z-index:12}
.bgcolor_mbanner_01{background:#00b5ef}
.bgcolor_mbanner_02{background:#d92732}
.bgcolor_mbanner_03{background:#ff9d00}
.bgcolor_mbanner_04{background:#2a56ba}
.bgcolor_mbanner_05{background:#ff798e}
.bgcolor_mbanner_06{background:#60bb46}
.bgcolor_mbanner_07{background:#885cd9}
.bgcolor_mbanner_08{background:#ff7113}
.bgcolor_mbanner_09{background:#61e2c0}
.bgcolor_mbanner_10{background:#ffde02}
.bgcolor_mbanner_11{background:#97c8ff}
.bgcolor_mbanner_12{background:#bfdc3c}
.bgcolor_mbanner_13{background:#ffc5c6}
.news_banner{position:absolute;top:50%;left:16px;z-index:11;width:55%}
.news_banner dt{margin-bottom:7px;font-size:22px;font-weight:bold;letter-spacing:-1px;line-height:27px}
.txt_term{display:inline-block;height:19px;margin-top:15px;padding:0 11px;background:#fff;font-size:12px;color:#666;line-height:22px;border-radius:10px}
.banner-wrapper{height:190px}
.banner-wrapper img{max-width:128px}
.banner-wrapper a{display:block;font-size:13px;font-weight:normal;color:#fff;line-height:1.6}
.swiper-slide.v3 a{color:#222}
.loc_spot_close{position:fixed;bottom:0;left:50%;z-index:20;width:36px;height:36px;margin-left:-18px}
/* Icon */
.ico_main{display:inline-block;overflow:hidden;height:41px;background:url(../img/ico_main.png) no-repeat;background-size:131px auto;text-indent:-999em;vertical-align:middle}
.ico_explain{width:28px;background-position:0 0}
.ico_listen{width:35px;background-position:-30px 0}
.ico_errata{width:27px;background-position:-69px 0}
.ico_whir{width:33px;background-position:-98px 0}
.ico_new{width:5px;height:5px;margin-top:2px;background-position:-44px -35px;vertical-align:top}
/* ํ์ต์๋ฃ์ค */
.group_studydata{padding:19px 16px}
.lst_studydata{overflow:hidden}
.lst_studydata >li{float:left;width:25%;text-align:center}
.lst_studydata >li > a{display:block;font-weight:bold;color:#222}
.txt_studydata{display:block;margin-top:2px}
/* ํ์ต์๋ฃ์ค ํญ */
.group_tab_grade{padding:0 16px;border-bottom:1px solid #e4e4e4}
.swipe-contents-wrapper{width:100%}
.swipe-contents{position:relative;width:100%;background-color:#efefef;border-radius:10px 10px 0 0}
.swipe-tab-list{display:flex;width:100%;flex-direction:row;justify-content:flex-start;border-radius:13px}
.swipe-tab-list > li{width:33.3%;height:37px;text-align:center}
.swipe-tab-list > li:first-child{width:33.4%}
.swipe-tab-list a{display:block;position:relative;height:37px;font-size:14px;font-weight:bold;color:#222;line-height:39px}
.swipe-tab-list a.current{border:2px solid #5fba46;background-color:#fff;color:#5fba46 !important;border-radius:10px 10px 0 0;line-height:35px}
.swipe-tab-list a.current:before{display:block;position:absolute;top:28px;left:50%;width:11px;height:7px;margin-left:-5px;background:url(../img/ico.png) no-repeat -57px 0;background-size:200px auto;content:''}
.swipe-contents-list-wrapper{overflow:hidden;position:relative;width:100%}
.swipe-contents-list{display:flex;display:-webkit-flex;position:absolute;top:0;left:0;flex-direction:row;-webkit-flex-direction:row;justify-content:flex-start;-webkit-justify-content:flex-start}
.swipe-contents-list li{height:153px;background:#fff}
.lst_studybook{display:-webkit-box;padding-top:15px}
.lst_studybook li{margin-left:15px;-webkit-box-flex:1}
.lst_studybook li:first-child{margin-left:0}
.lst_studybook li:nth-child(1n+1){text-align:left}
.lst_studybook li:nth-child(1n+2){text-align:center}
.lst_studybook li:nth-child(1n+3){text-align:right}
.lst_studybook li a{display:inline-block;border:1px solid #e4e4e4}
.lst_studybook li img{width:84px;height:116px;vertical-align:top}
.news_category{margin:6px 10px 0;color:#222;text-align:center}
.news_category dt{font-size:12px;font-weight:bold;color:#5fba46}
/* ๋ฉ์ธ ๋
ธ์ถ ์นดํ
๊ณ ๋ฆฌ */
.group_main_category{padding:20px 9px 17px;border-bottom:1px solid #e4e4e4}
.lst_maincategory{overflow:hidden}
.lst_maincategory > li{float:left;width:50%}
.lst_maincategory > li > a{display:block;margin:0 7px}
.lst_maincategory > li > a img{border-radius:15px 0 15px 0}
/* ๊ณต์ง์ฌํญ */
.group_main_notice{padding:15px 16px 16px}
.lst_main_notice{color:#222}
.lst_main_notice li{position:relative;margin-top:1px}
.lst_main_notice li:first-child{margin-top:0}
.lst_main_notice li strong{position:absolute;top:1px;left:0}
.lst_main_notice li a{display:inline-block;padding-left:38px;box-sizing:border-box}
@media all and (min-width:321px) and (max-width:675px){
}
@media all and (min-width:350px){
/* ํ์ต์๋ฃ์ค ํญ */
.swipe-contents-list li{height:178px}
.lst_studybook li img{width:102px;height:141px;vertical-align:top}
} | 0.207536 | 0.049497 |
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: white;
}
img {
display: block;
max-width: 100%;
}
.container {
max-width: 1130px;
margin: 0 auto;
}
.header {
position: absolute;
z-index: 100;
width: 90%;
display: flex;
justify-content: space-between;
top: 20px;
left: 60px;
box-sizing: border-box;
}
.header a {
display: inline-block;
background: #e50914;
color: white;
align-self: flex-start;
padding: 7px 17px;
text-decoration: none;
border-radius: 3px;
}
select {
margin-right: 20px;
padding: 7px 17px;
background: transparent;
color: white;
border-radius: 0;
border: 1px solid white;
}
.img-logo {
width: 135px;
height: 50px;
}
.main {
height: 680px;
background: url(../img/bg.jpg) center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
}
.main-child {
z-index: 1;
display: grid;
justify-content: center;
}
.main h1 {
max-width: 640px;
font-size: 48px;
}
.form-cta {
display: grid;
justify-content: center;
grid-template-columns: 440px 185px;
margin-top: 20px;
}
.form-cta input {
padding: 18px 10px;
font-size: 18px;
font-family: sans-serif;
}
.form-cta button {
background: #e50914;
border: none;
outline: none;
font-size: 28px;
color: white;
}
.form-cta button:hover {
background: #f40612;
}
.main span {
font-size: 26px;
margin-top: 20px;
}
.main p {
font-size: 19px;
margin-top: 30px;
}
.gradient {
background: rgba(0, 0, 0, 0.4);
background-image: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.section {
background: black;
padding: 70px 45px;
border-top: 8px solid #222;
}
.section h1 {
font-size: 50px;
margin-bottom: 16px;
}
section p {
font-size: 26px;
}
.grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
align-items: center;
}
.img-tv {
position: relative;
}
.img-tv img {
position: relative;
z-index: 1;
}
.video-tv {
position: absolute;
width: 400px;
top: 80px;
left: 70px;
}
.download .grid > div:first-child {
order: 2;
}
.download .img-tv {
order: 1;
width: 500px;
}
.device-pile .video-tv {
width: 340px;
top: 45px;
left: 100px;
}
.infantil .grid > div:first-child {
order: 2;
}
.infantil .img-tv {
order: 1;
width: 500px;
}
.infantil .grid {
grid-template-columns: 1fr 1fr;
}
.container-img {
width: 300px;
height: 34%;
position: absolute;
}
.card-img {
position: absolute;
display: flex;
width: 100%;
z-index: 10;
height: inherit;
left: 90px;
top: 180px;
background:black;
border: 2px solid #222;
border-radius: 10px;
padding: 8px 10px;
}
.card-img h6 {
font-size: 16px;
padding-left: 6.5%;
padding-top: 5%;
}
.card-img p {
width: 200px;
position: absolute;
font-size: 14px;
top: 56%;
left: 26%;
color: #0071eb;
font-weight: 400;
}
.img-gif {
position: absolute;
width: 50px;
top: 25%;
left: 80%;
}
.footer {
background: black;
display: grid;
padding: 70px 45px;
border-top: 8px solid #222;
}
.faq {
width: 100%;
}
.faq h1 {
text-align: center;
font-size: 3rem;
}
.faq-list {
margin: 50px auto;
max-width: 815px;
font-size: 26px;
}
.faq-question, .faq-answer {
background: #303030;
}
.faq-question {
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
margin-top: 8px;
margin-bottom: 1px;
}
.faq-question::after {
content: " ";
display: block;
width: 20px;
height: 20px;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.25s cubic-bezier(0.5, 0, 0.1, 0.1);
}
.faq-answer.active {
max-height: 1200px;
}
.faq-answer > div {
padding: 30px;
}
.rodape {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.rodape h3 {
font-weight: normal;
} | css/style.css | * {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: white;
}
img {
display: block;
max-width: 100%;
}
.container {
max-width: 1130px;
margin: 0 auto;
}
.header {
position: absolute;
z-index: 100;
width: 90%;
display: flex;
justify-content: space-between;
top: 20px;
left: 60px;
box-sizing: border-box;
}
.header a {
display: inline-block;
background: #e50914;
color: white;
align-self: flex-start;
padding: 7px 17px;
text-decoration: none;
border-radius: 3px;
}
select {
margin-right: 20px;
padding: 7px 17px;
background: transparent;
color: white;
border-radius: 0;
border: 1px solid white;
}
.img-logo {
width: 135px;
height: 50px;
}
.main {
height: 680px;
background: url(../img/bg.jpg) center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
}
.main-child {
z-index: 1;
display: grid;
justify-content: center;
}
.main h1 {
max-width: 640px;
font-size: 48px;
}
.form-cta {
display: grid;
justify-content: center;
grid-template-columns: 440px 185px;
margin-top: 20px;
}
.form-cta input {
padding: 18px 10px;
font-size: 18px;
font-family: sans-serif;
}
.form-cta button {
background: #e50914;
border: none;
outline: none;
font-size: 28px;
color: white;
}
.form-cta button:hover {
background: #f40612;
}
.main span {
font-size: 26px;
margin-top: 20px;
}
.main p {
font-size: 19px;
margin-top: 30px;
}
.gradient {
background: rgba(0, 0, 0, 0.4);
background-image: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.section {
background: black;
padding: 70px 45px;
border-top: 8px solid #222;
}
.section h1 {
font-size: 50px;
margin-bottom: 16px;
}
section p {
font-size: 26px;
}
.grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
align-items: center;
}
.img-tv {
position: relative;
}
.img-tv img {
position: relative;
z-index: 1;
}
.video-tv {
position: absolute;
width: 400px;
top: 80px;
left: 70px;
}
.download .grid > div:first-child {
order: 2;
}
.download .img-tv {
order: 1;
width: 500px;
}
.device-pile .video-tv {
width: 340px;
top: 45px;
left: 100px;
}
.infantil .grid > div:first-child {
order: 2;
}
.infantil .img-tv {
order: 1;
width: 500px;
}
.infantil .grid {
grid-template-columns: 1fr 1fr;
}
.container-img {
width: 300px;
height: 34%;
position: absolute;
}
.card-img {
position: absolute;
display: flex;
width: 100%;
z-index: 10;
height: inherit;
left: 90px;
top: 180px;
background:black;
border: 2px solid #222;
border-radius: 10px;
padding: 8px 10px;
}
.card-img h6 {
font-size: 16px;
padding-left: 6.5%;
padding-top: 5%;
}
.card-img p {
width: 200px;
position: absolute;
font-size: 14px;
top: 56%;
left: 26%;
color: #0071eb;
font-weight: 400;
}
.img-gif {
position: absolute;
width: 50px;
top: 25%;
left: 80%;
}
.footer {
background: black;
display: grid;
padding: 70px 45px;
border-top: 8px solid #222;
}
.faq {
width: 100%;
}
.faq h1 {
text-align: center;
font-size: 3rem;
}
.faq-list {
margin: 50px auto;
max-width: 815px;
font-size: 26px;
}
.faq-question, .faq-answer {
background: #303030;
}
.faq-question {
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
margin-top: 8px;
margin-bottom: 1px;
}
.faq-question::after {
content: " ";
display: block;
width: 20px;
height: 20px;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.25s cubic-bezier(0.5, 0, 0.1, 0.1);
}
.faq-answer.active {
max-height: 1200px;
}
.faq-answer > div {
padding: 30px;
}
.rodape {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.rodape h3 {
font-weight: normal;
} | 0.584508 | 0.119845 |
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* RESET */
html, *, *:before, *:after{
box-sizing: border-box;
}
body{
background: #e6f0a3; /* Old browsers */
background: -moz-linear-gradient(left, #e6f0a3 0%, #d2e638 63%, #c3d825 66%, #dbf043 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #e6f0a3 0%,#d2e638 63%,#c3d825 66%,#dbf043 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #e6f0a3 0%,#d2e638 63%,#c3d825 66%,#dbf043 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=1 ); /* IE6-9 */
}
/*main-flex-container*/
.main-flex-container{
display: flex;
font-family: sans-serif;
justify-content: center;
}
/* .image-container/*/
.image-container{
max-width: 1000px;
}
.image-container > img{
border-radius: 5px;
max-width: 100%;
}
/* STYLE */
.slider-controls-container li a{
text-decoration: none;
background-color: rgba(0,0,0,0.2);
color: white;
padding: 20px 5px;
}
.slider-controls-container li a:hover{
background-color: rgba(0,0,0,0.4);
}
.slider-controls-container li a span{
text-align: center;
}
.slider-controls-container li.arrow-control a span {
font-size: 40px;
}
/* STYLE */
/* Flex */
.slider-controls-container ul {
display: flex;
}
.slider-controls-container ul li{
flex: 2;
display: flex;
}
.slider-controls-container li.arrow-control{
flex: 1;
}
.slider-controls-container ul li a{
flex: 1;
display:flex;
align-items: center;
}
.slider-controls-container li a span{
flex: 1;
}
/* Flex */ | css/style.css | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* RESET */
html, *, *:before, *:after{
box-sizing: border-box;
}
body{
background: #e6f0a3; /* Old browsers */
background: -moz-linear-gradient(left, #e6f0a3 0%, #d2e638 63%, #c3d825 66%, #dbf043 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #e6f0a3 0%,#d2e638 63%,#c3d825 66%,#dbf043 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #e6f0a3 0%,#d2e638 63%,#c3d825 66%,#dbf043 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=1 ); /* IE6-9 */
}
/*main-flex-container*/
.main-flex-container{
display: flex;
font-family: sans-serif;
justify-content: center;
}
/* .image-container/*/
.image-container{
max-width: 1000px;
}
.image-container > img{
border-radius: 5px;
max-width: 100%;
}
/* STYLE */
.slider-controls-container li a{
text-decoration: none;
background-color: rgba(0,0,0,0.2);
color: white;
padding: 20px 5px;
}
.slider-controls-container li a:hover{
background-color: rgba(0,0,0,0.4);
}
.slider-controls-container li a span{
text-align: center;
}
.slider-controls-container li.arrow-control a span {
font-size: 40px;
}
/* STYLE */
/* Flex */
.slider-controls-container ul {
display: flex;
}
.slider-controls-container ul li{
flex: 2;
display: flex;
}
.slider-controls-container li.arrow-control{
flex: 1;
}
.slider-controls-container ul li a{
flex: 1;
display:flex;
align-items: center;
}
.slider-controls-container li a span{
flex: 1;
}
/* Flex */ | 0.188772 | 0.0729 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#street{
background-color: black;
width: 100%;
height: 100%;
position: absolute;
}
#road1{
border-top: 10px solid yellow;
border-bottom: 10px solid yellow;
width: 100%;
height: 100px;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
#road1::after{
content: '';
display: block;
width: 100%;
top: 50%;
position: relative;
height: 2px;
background-image: linear-gradient(to right, white 33%, rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 20vh 1px;
background-repeat: repeat-x;
}
#road2{
border-left: 10px solid yellow;
border-right: 10px solid yellow;
width: 100px;
height: 100%;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 2;
background-color: black;
}
#road2::after{
content: '';
display: block;
height: 100%;
left: 50%;
position: relative;
width: 2px;
background-image: linear-gradient(white 33%, rgba(255,255,255,0) 0%);
background-position: right;
background-size: 1px 20vh;
background-repeat: repeat-y;
}
#cover{
width: 100px;
height: 80px;
position: relative;
top: 50%;
transform: translateY(-50%);
z-index: 3;
background-color: black;
margin: auto;
}
.zebrahorizontal{
position: relative;
width: 100%;
height: 6%;
background-color: white;
margin: 10px 0;
}
.zebravertical{
position: relative;
height: 100%;
width: 6%;
background-color: white;
margin: 0 5px;
float: left;
}
#crosswalk1{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(-140%, -150%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk2{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(140%, -250%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk3{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(0%, -470%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk4{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(0%, -330%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
.lights{
position: absolute;
display: block;
z-index: 5;
width: 20px;
height: 60px;
background-color: black;
top: 50%;
left: 50%;
border: 1px solid gray;
overflow: hidden;
}
.lights .light{
position: relative;
display: block;
z-index: 5;
width: 15px;
height: 15px;
background-color: black;
border-radius: 100%;
margin: 3px 4px 4px 1px;
border: .5px solid gray;
}
#lights1{
transform: translate(-1000%, 60%) rotate(90deg);
}
#lights2{
transform: translate(900%, -160%) rotate(-90deg);
}
#lights3{
transform: translate(280%, 230%);
}
#lights4{
transform: translate(-380%, -330%) rotate(-180deg);
}
.zebralights{
position: absolute;
display: block;
z-index: 5;
width: 14px;
height: 25px;
background-color: black;
top: 50%;
left: 50%;
border: 1px solid gray;
overflow: hidden;
}
.zebralights .zebralight{
position: relative;
display: block;
z-index: 5;
width: 10px;
height: 10px;
background-color: black;
border-radius: 100%;
margin: 1px 1px 0 1px;
border: .5px solid gray;
}
#zebralights1{
transform: translate(-850%, -30%)
}
#zebralights2{
transform: translate(750%, -30%)
}
#zebralights3{
transform: translate(-60%, -430%)
}
#zebralights4{
transform: translate(-60%, 330%)
}
/*
.zebraswitch{
position: absolute;
display: block;
z-index: 5;
width: 10px;
height: 10px;
background-color: skyblue;
border-radius: 100%;
top: 50%;
left: 50%;
}
#sw1{
transform: translate(-1500%, 550%);
}
#sw2{
transform: translate(-1500%, -650%);
}
#sw3{
transform: translate(1400%, -650%);
}
#sw4{
transform: translate(1400%, 550%);
}
#sw5{
transform: translate(600%, 1200%);
}
#sw6{
transform: translate(-650%, 1200%);
}
#sw7{
transform: translate(600%, -1300%);
}
#sw8{
transform: translate(-650%, -1300%);
}
*/ | style.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#street{
background-color: black;
width: 100%;
height: 100%;
position: absolute;
}
#road1{
border-top: 10px solid yellow;
border-bottom: 10px solid yellow;
width: 100%;
height: 100px;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
#road1::after{
content: '';
display: block;
width: 100%;
top: 50%;
position: relative;
height: 2px;
background-image: linear-gradient(to right, white 33%, rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 20vh 1px;
background-repeat: repeat-x;
}
#road2{
border-left: 10px solid yellow;
border-right: 10px solid yellow;
width: 100px;
height: 100%;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 2;
background-color: black;
}
#road2::after{
content: '';
display: block;
height: 100%;
left: 50%;
position: relative;
width: 2px;
background-image: linear-gradient(white 33%, rgba(255,255,255,0) 0%);
background-position: right;
background-size: 1px 20vh;
background-repeat: repeat-y;
}
#cover{
width: 100px;
height: 80px;
position: relative;
top: 50%;
transform: translateY(-50%);
z-index: 3;
background-color: black;
margin: auto;
}
.zebrahorizontal{
position: relative;
width: 100%;
height: 6%;
background-color: white;
margin: 10px 0;
}
.zebravertical{
position: relative;
height: 100%;
width: 6%;
background-color: white;
margin: 0 5px;
float: left;
}
#crosswalk1{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(-140%, -150%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk2{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(140%, -250%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk3{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(0%, -470%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
#crosswalk4{
width: 80px;
/min-width: 50px;
height: 80px;
position: relative;
top: 50%;
transform: translate(0%, -330%);
z-index: 3;
background-color: black;
margin: auto;
overflow: hidden;
}
.lights{
position: absolute;
display: block;
z-index: 5;
width: 20px;
height: 60px;
background-color: black;
top: 50%;
left: 50%;
border: 1px solid gray;
overflow: hidden;
}
.lights .light{
position: relative;
display: block;
z-index: 5;
width: 15px;
height: 15px;
background-color: black;
border-radius: 100%;
margin: 3px 4px 4px 1px;
border: .5px solid gray;
}
#lights1{
transform: translate(-1000%, 60%) rotate(90deg);
}
#lights2{
transform: translate(900%, -160%) rotate(-90deg);
}
#lights3{
transform: translate(280%, 230%);
}
#lights4{
transform: translate(-380%, -330%) rotate(-180deg);
}
.zebralights{
position: absolute;
display: block;
z-index: 5;
width: 14px;
height: 25px;
background-color: black;
top: 50%;
left: 50%;
border: 1px solid gray;
overflow: hidden;
}
.zebralights .zebralight{
position: relative;
display: block;
z-index: 5;
width: 10px;
height: 10px;
background-color: black;
border-radius: 100%;
margin: 1px 1px 0 1px;
border: .5px solid gray;
}
#zebralights1{
transform: translate(-850%, -30%)
}
#zebralights2{
transform: translate(750%, -30%)
}
#zebralights3{
transform: translate(-60%, -430%)
}
#zebralights4{
transform: translate(-60%, 330%)
}
/*
.zebraswitch{
position: absolute;
display: block;
z-index: 5;
width: 10px;
height: 10px;
background-color: skyblue;
border-radius: 100%;
top: 50%;
left: 50%;
}
#sw1{
transform: translate(-1500%, 550%);
}
#sw2{
transform: translate(-1500%, -650%);
}
#sw3{
transform: translate(1400%, -650%);
}
#sw4{
transform: translate(1400%, 550%);
}
#sw5{
transform: translate(600%, 1200%);
}
#sw6{
transform: translate(-650%, 1200%);
}
#sw7{
transform: translate(600%, -1300%);
}
#sw8{
transform: translate(-650%, -1300%);
}
*/ | 0.599368 | 0.097691 |