| Current File : /home/d/i/g/digitaw/teste_ecarte/achat/css.css |
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/*basic reset*/
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
background: #2399D5;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #2399D5, #dbd9dc);
/* Chrome 10-25, Safari 5.1-6 */
}
body {
font-family: montserrat, arial, verdana;
background: transparent;
}
/*form styles*/
#msform {
text-align: center;
position: relative;
margin-top: 30px;
}
#msform fieldset {
background: white;
border: 0 none;
border-radius: 20px;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
padding: 20px 30px;
box-sizing: border-box;
width: 80%;
margin: 0 10%;
/*stacking fieldsets above each other*/
position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
display: none;
}
/*inputs*/
#msform input,
#msform textarea {
padding: 15px;
border: 1px solid #ccc;
border-radius: 0px;
margin-bottom: 10px;
width: 100%;
box-sizing: border-box;
font-family: montserrat;
color: #2C3E50;
font-size: 13px;
}
#msform input:focus,
#msform textarea:focus {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
border: 1px solid #E21C56;
outline-width: 0;
transition: All 0.5s ease-in;
-webkit-transition: All 0.5s ease-in;
-moz-transition: All 0.5s ease-in;
-o-transition: All 0.5s ease-in;
}
/*buttons*/
#msform .action-button {
width: 100px;
background: #E21C56;
font-weight: bold;
color: white;
border: 0 none;
border-radius: 25px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
}
#msform .action-button:hover,
#msform .action-button:focus {
box-shadow: 0 0 0 2px white, 0 0 0 3px #E21C56;
}
#msform .action-button-previous {
width: 100px;
background: #C5C5F1;
font-weight: bold;
color: white;
border: 0 none;
border-radius: 25px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
}
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}
/*headings*/
.fs-title {
font-size: 18px;
text-transform: uppercase;
color: #2C3E50;
margin-bottom: 10px;
letter-spacing: 2px;
font-weight: bold;
}
.fs-subtitle {
font-weight: normal;
font-size: 13px;
color: #666;
margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
margin-bottom: 30px;
overflow: hidden;
/*CSS counters to number the steps*/
counter-reset: step;
}
#progressbar li {
list-style-type: none;
color: white;
text-transform: uppercase;
font-size: 9px;
width: 33.33%;
float: left;
position: relative;
letter-spacing: 1px;
}
#progressbar li:before {
content: counter(step);
counter-increment: step;
width: 24px;
height: 24px;
line-height: 26px;
display: block;
font-size: 12px;
color: #333;
background: white;
border-radius: 25px;
margin: 0 auto 10px auto;
}
/*progressbar connectors*/
#progressbar li:after {
content: '';
width: 100%;
height: 2px;
background: white;
position: absolute;
left: -50%;
top: 9px;
z-index: -1;
/*put it behind the numbers*/
}
#progressbar li:first-child:after {
/*connector not needed before the first step*/
content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
background: #E21C56;
color: white;
}
/* Not relevant to this form */
.dme_link {
margin-top: 30px;
text-align: center;
}
.dme_link a {
background: #FFF;
font-weight: bold;
color: #E21C56;
border: 0 none;
border-radius: 25px;
cursor: pointer;
padding: 5px 25px;
font-size: 12px;
}
.dme_link a:hover,
.dme_link a:focus {
background: #C5C5F1;
text-decoration: none;
}
.our-portfolio {
padding-top: 130px;
overflow: hidden;
position: relative;
}
.our-portfolio:before {
content: '';
background-image: url(../images/portfolio-right-dec.jpg);
background-repeat: no-repeat;
position: absolute;
right: 0;
top: 0px;
width: 414px;
height: 861px;
z-index: 1;
}
.our-portfolio:after {
content: '';
background-image: url(../images/portfolio-left-dec.jpg);
background-repeat: no-repeat;
position: absolute;
left: 0;
top: 0px;
width: 677px;
height: 759px;
z-index: 1;
}
.our-portfolio .section-heading {
margin-bottom: 80px;
}
.our-portfolio .container-fluid {
padding-right: 15px;
padding-left: 15px;
position: relative;
z-index: 2;
}
.our-portfolio .item {
position: relative;
z-index: 222;
}
.portfolio-item {
border-radius: 25px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
margin: 15px;
}
.portfolio-item .thumb {
position: relative;
border-radius: 50px;
}
.portfolio-item:hover .down-content h4,
.portfolio-item:hover .down-content span {
color: #fe664e;
}
.portfolio-item .thumb img {
border-top-right-radius: 23px;
border-top-left-radius: 23px;
overflow: hidden;
}
.portfolio-item .down-content {
background-color: #fff;
text-align: center;
padding: 18px 0px;
border-bottom-right-radius: 23px;
border-bottom-left-radius: 23px;
}
.portfolio-item .down-content h4 {
font-size: 20px;
font-weight: 700;
color: #2a2a2a;
margin-bottom: 8px;
transition: all .3s;
}
.portfolio-item .down-content span {
font-size: 15px;
color: #afafaf;
transition: all .3s;
}
.our-portfolio .owl-nav {
display: inline-block !important;
position: absolute;
top: -125px;
right: 15%;
max-width: 1320px;
}
.our-portfolio .owl-nav .owl-next {
margin-left: 10px;
}
.our-portfolio .owl-nav span {
width: 46px;
height: 46px;
display: inline-block;
text-align: center;
line-height: 46px;
font-size: 30px;
background-color: #eee;
border-radius: 50%;
color: #fff;
transition: all 0.5s;
}
.our-portfolio .owl-nav span:hover {
color: #fff;
background-color: #fe664e;
}
.column {
width: 50%;
float: left;
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: table;
}
ul {
list-style-type: none;
}
li {
display: inline-block;
}
input[type="checkbox"][id^="myCheckbox"] {
display: none;
}
label {
border: 1px solid #fff;
padding: 10px;
display: block;
position: relative;
margin: 10px;
cursor: pointer;
width: 100%;
}
label:before {
background-color: white;
color: white;
content: " ";
display: block;
border-radius: 50%;
border: 1px solid green;
position: absolute;
top: -5px;
left: -5px;
width: 25px;
height: 25px;
text-align: center;
line-height: 28px;
transition-duration: 0.4s;
transform: scale(0);
background-color: green;
}
label img {
height: 450px;
width: 450px;
transition-duration: 0.2s;
transform-origin: 50% 50%;
}
:checked+label {
border-color: #ddd;
}
:checked+label:before {
content: "✓";
background-color: green;
transform: scale(1);
}
:checked+label img {
transform: scale(0.9);
/* box-shadow: 0 0 5px #333; */
z-index: -1;
}