1364 lines
33 KiB
SCSS
Raw Normal View History

2019-04-05 00:19:26 +02:00
.gal{
2019-05-14 19:59:47 +02:00
margin-left: 15%;
.content_gal{
width: 2.2%!important;
&[aria-hidden="false"]{
.title_gal{
opacity: 1;
right: 70px;
2019-05-27 17:03:03 +02:00
transition: right 1s ease, opacity 1s ease;
2019-05-14 19:59:47 +02:00
}
}
}
.title_gal{
2019-04-09 18:05:36 +02:00
position: absolute;
right: 50px;
2019-05-14 19:59:47 +02:00
max-width: 50%;
2019-05-01 19:59:32 +02:00
background: $light-blue;
2019-05-14 19:59:47 +02:00
padding: 25px;
2019-05-27 17:03:03 +02:00
top: 20vw;
2019-05-01 19:59:32 +02:00
color: $white;
2019-05-14 19:59:47 +02:00
opacity: 0;
2019-04-09 18:05:36 +02:00
}
2019-04-05 00:19:26 +02:00
}
.cat{
height: 50px;
2019-04-08 18:00:38 +02:00
z-index: 999;
margin: 20px 0;
2019-05-01 19:59:32 +02:00
.btn-group{
2019-04-08 18:00:38 +02:00
@include inlineflex();
2019-05-27 17:03:03 +02:00
&:nth-of-type(1){
label{
margin-right: 20px;
}
}
&:nth-of-type(2){
float: right;
}
2019-04-08 18:00:38 +02:00
}
2019-05-01 19:59:32 +02:00
label{
2019-04-05 00:19:26 +02:00
padding: 10px;
2019-05-09 00:26:27 +02:00
cursor: pointer;
&.tous{
border-top: 2px solid $green;
border-bottom: 2px solid $green;
}
&.professionnels{
border-top: 2px solid $red;
border-bottom: 2px solid $red;
}
&.grand_public{
border-top: 2px solid $light-blue;
border-bottom: 2px solid $light-blue;
}
&.formations{
border-top: 2px solid $grey;
border-bottom: 2px solid $grey;
}
&.archive{
border-top: 2px solid $dark-blue;
border-bottom: 2px solid $dark-blue;
}
}
input{
visibility: hidden;
position: absolute;
}
}
.bandeau{
width: 100%;
2019-06-05 13:04:15 +02:00
height: auto;
2019-06-05 14:58:11 +02:00
max-height: 500px;
2019-06-05 14:33:24 +02:00
position: relative;
2019-06-05 14:58:11 +02:00
overflow: hidden;
2019-06-05 14:33:24 +02:00
&::before{
position: absolute;
display: block;
content: ' ';
2019-06-13 17:40:44 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
background-repeat: repeat;
// background-position: center;
// background-size: cover;
2019-06-05 14:33:24 +02:00
width: 100%;
height: 100%;
top: 0;
z-index: -1;
}
.img{
width: 70%;
margin: auto;
}
2019-06-04 16:51:57 +02:00
.title_gal{
position: absolute;
right: 25%;
max-width: 50%;
background: $light-blue;
padding: 25px;
2019-06-05 14:58:11 +02:00
top: 20vw;
2019-06-04 16:51:57 +02:00
color: $white;
p{
font-family: now_alt_bold;
font-size: 1.2rem;
font-weight: 400;
line-height: 2.2rem;
}
}
2019-05-09 00:26:27 +02:00
}
.container{
& > .title{
background: $red;
border-radius: 30px;
width: auto;
float:left;
padding: 10px 20px;
color: white;
2019-04-05 00:19:26 +02:00
}
}
2019-05-14 19:59:47 +02:00
.start{
min-height: calc(100vh - 325px);
2019-05-27 17:03:03 +02:00
&:not(#home){
.entete{
border-bottom: 10px solid $light-blue;
}
}
2019-05-14 19:59:47 +02:00
}
2019-04-08 18:00:38 +02:00
.start:not(#form){
2019-05-09 00:26:27 +02:00
&#calendrier, &#archive{
width: 70%;
2019-05-27 17:03:03 +02:00
margin: 40px auto 40px auto;
.header-wrapper{
.title{
display: flex;
h1{
width: auto;
margin-bottom: 20px;
background: $red;
border-radius: 30px;
padding: 10px 20px;
color: white;
font-size: 1.2rem;
}
}
2019-05-09 00:26:27 +02:00
}
2019-05-27 17:03:03 +02:00
}
&#event{
margin: 40px auto 40px auto;
.title{
display: flex;
h1{
width: auto;
margin-bottom: 20px;
background: $red;
border-radius: 30px;
padding: 10px 20px;
color: white;
font-size: 1.2rem;
}
}
}
2019-05-09 00:26:27 +02:00
.body-wrapper{
2019-04-08 18:00:38 +02:00
@include inlineflex();
2019-06-05 12:59:18 +02:00
justify-content: center;
2019-04-08 18:00:38 +02:00
width: 100%;
2019-05-09 00:26:27 +02:00
position: relative;
2019-04-08 18:00:38 +02:00
.card{
2019-05-27 17:03:03 +02:00
width: calc( (100% / 4) - 7.5px);
2019-05-09 00:26:27 +02:00
min-width: 200px;
2019-05-27 17:03:03 +02:00
margin: 0 0 10px 0 ;
2019-04-08 18:00:38 +02:00
.card-header{
2019-07-05 13:48:03 +02:00
position: relative;
2019-05-09 00:26:27 +02:00
width: 100%;
2019-04-08 18:00:38 +02:00
right: 0;
text-align: right;
2019-05-14 19:59:47 +02:00
&.professionnels{
2019-05-09 00:26:27 +02:00
background-color: $red;
}
2019-05-14 19:59:47 +02:00
&.grand_public{
2019-05-09 00:26:27 +02:00
background-color: $light-blue;
}
2019-05-14 19:59:47 +02:00
&.formations{
2019-05-09 00:26:27 +02:00
background-color: $grey;
}
2019-04-08 18:00:38 +02:00
.publics{
2019-05-09 00:26:27 +02:00
padding: 2.5px 10px;
2019-05-01 19:59:32 +02:00
color: white;
2019-04-08 18:00:38 +02:00
}
}
.card-body{
padding: 15px;
2019-06-13 17:40:44 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
// background-position: center;
background-repeat: repeat;
// background-size: cover;
2019-05-09 00:26:27 +02:00
}
}
.event{
width: 45%;
.card-content{
.reso{
2019-06-11 11:44:58 +02:00
@include inlineflex;
flex-wrap: nowrap;
justify-content: space-between;
& > div, & > a{
margin-right: 15px;
}
2019-05-09 00:26:27 +02:00
a{
display: block;
margin-bottom: 10px;
img{
margin-left: 10px;
width: 20px;
}
}
}
.txt{
width: 80%;
2019-04-05 00:19:26 +02:00
}
2019-04-03 15:29:46 +02:00
}
2019-04-02 19:54:29 +02:00
}
2019-04-08 18:00:38 +02:00
}
}
.start#form{
2019-05-14 19:59:47 +02:00
.entete{
border-top: 1px solid $light-blue
}
h2{
margin-top: 0;
}
2019-05-09 00:26:27 +02:00
.body-wrapper{
2019-05-14 19:59:47 +02:00
width: 100%;
2019-04-08 18:00:38 +02:00
min-width: 250px;
2019-05-27 17:03:03 +02:00
margin: auto auto 140px auto;
2019-04-08 18:00:38 +02:00
form{
2019-05-14 19:59:47 +02:00
width: calc( (100% / 2));
2019-04-08 18:00:38 +02:00
margin-top: 20px;
2019-05-14 19:59:47 +02:00
margin: auto;
2019-04-08 18:00:38 +02:00
& > div{
2019-05-09 00:26:27 +02:00
width: 100%;
2019-04-08 18:00:38 +02:00
margin: 20px 0;
2019-05-09 00:26:27 +02:00
border-bottom: 1px solid $red;
.form-data{
@include inlineflex();
margin: 20px 0px;
&> div{
2019-06-03 15:22:10 +02:00
overflow: hidden;
2019-05-09 00:26:27 +02:00
margin: 10px 10px;
min-width: 100px;
border: 2px solid $red;
border-radius: 30px;
padding: 10px 20px;
&.check{
background: $red;
color: white;
}
input{
border: none;
}
input[type='radio'] {
visibility: hidden;
position: absolute;
}
2019-06-03 15:22:10 +02:00
label{
cursor: pointer;
}
2019-05-09 00:26:27 +02:00
}
2019-04-08 18:00:38 +02:00
}
2019-06-11 11:20:26 +02:00
&:nth-of-type(n+5):not(:nth-of-type(n+12)){
2019-05-09 00:26:27 +02:00
width: 50%;
float: left;
border-bottom: 0px;
.form-data{
width: 100%;
& > div{
width: 100%;
}
}
2019-04-08 18:00:38 +02:00
}
2019-06-11 11:31:04 +02:00
&:nth-of-type(11){
2019-05-09 00:26:27 +02:00
border-bottom: 1px solid $red !important;
2019-06-11 11:31:47 +02:00
width: 100%!important;
2019-06-11 11:31:04 +02:00
.form-data {
2019-06-11 11:32:22 +02:00
width: 50%!important;
2019-06-11 11:31:04 +02:00
}
2019-05-09 00:26:27 +02:00
}
&.button-wrapper{
background: $red;
2019-05-27 17:03:03 +02:00
height: 100px;
2019-05-09 00:26:27 +02:00
position: absolute;
left: 0;
2019-04-08 18:00:38 +02:00
width: 100%;
2019-05-09 00:26:27 +02:00
button{
2019-05-27 17:03:03 +02:00
margin-right: 25%;
2019-05-09 00:26:27 +02:00
position: absolute;
right: 0;
top: 50%;
2019-05-27 17:03:03 +02:00
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
2019-05-09 00:26:27 +02:00
background: white;
border-radius: 30px;
padding: 10px 35px;
2019-06-05 12:59:18 +02:00
box-shadow:none;
2019-05-27 17:03:03 +02:00
border:0;
2019-05-09 00:26:27 +02:00
}
2019-04-08 18:00:38 +02:00
}
2019-04-03 15:29:46 +02:00
}
2019-04-02 19:54:29 +02:00
}
2019-05-09 00:26:27 +02:00
#send-valide{
2019-05-27 17:03:03 +02:00
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
2019-05-09 00:26:27 +02:00
background: $red;
border-radius: 20px;
position: fixed;
width: 30%;
2019-06-19 16:33:20 +02:00
min-height: 30%;
2019-05-09 00:26:27 +02:00
left: 50%;
top: 50%;
padding: 50px;
.toast{
position: relative;
text-align: center;
color: white;
}
.ok{
color: white;
position: absolute;
right: 20px;
bottom: 20px;
}
}
2019-04-02 19:54:29 +02:00
}
}
2019-05-14 19:59:47 +02:00
.header-wrapper{
.title{
h2{
width: auto;
margin-bottom: 20px;
background: $red;
border-radius: 30px;
width: auto;
padding: 10px 20px;
color: white;
font-size: 1.2rem;
width:115px;
}
}
}
2019-05-01 19:59:32 +02:00
.content{
width: 50%;
2019-05-09 00:26:27 +02:00
margin: 4rem auto;
2019-04-03 15:29:46 +02:00
p{
margin: 10px 0;
2019-04-02 19:54:29 +02:00
}
}
2019-04-09 18:05:36 +02:00
.content_s{
margin: auto!important;
}
2019-05-01 19:59:32 +02:00
.entete{
2019-05-09 00:26:27 +02:00
@include inlineflex;
padding: 20px;
2019-06-13 17:40:44 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
// background-position: center;
background-repeat: repeat;
// background-size: cover;
2019-05-01 19:59:32 +02:00
height: auto;
2019-05-27 17:03:03 +02:00
border-top: 10px solid $green;
2019-05-01 19:59:32 +02:00
.entete_c{
2019-05-09 00:26:27 +02:00
@include inlineflex;
text-align: center;
2019-06-04 16:51:57 +02:00
width: 70%;
2019-05-01 19:59:32 +02:00
margin: 50px auto;
position: relative;
2019-05-27 17:03:03 +02:00
h1{
2019-05-01 19:59:32 +02:00
width: auto;
2019-05-09 00:26:27 +02:00
margin-bottom: 20px;
2019-05-01 19:59:32 +02:00
background: $red;
border-radius: 30px;
width: auto;
padding: 10px 20px;
}
2019-04-05 00:19:26 +02:00
}
}
2019-05-09 00:26:27 +02:00
.body-wrapper{
2019-05-01 19:59:32 +02:00
.content{
h4{
&:not(:first-of-type){
border-top: 1px solid black;
padding-top: 30px;
2019-05-09 00:26:27 +02:00
margin: 30px 0 0 0;
2019-05-01 19:59:32 +02:00
}
}
}
2019-04-08 18:00:38 +02:00
.sub-content{
border-top: 1px solid black;
margin-bottom: 20px;
2019-04-05 00:19:26 +02:00
margin-top: 20px;
2019-04-09 18:05:36 +02:00
& > img{
width: 33%;
float: left;
margin: 20px 10px 0px 0px;
}
2019-04-08 18:00:38 +02:00
}
}
#event{
2019-05-14 19:59:47 +02:00
margin-bottom: 20px;
2019-04-08 18:00:38 +02:00
.content{
margin-top: 50px;
h2{
float: left;
margin-right: 20px;
}
.reso{
@include inlineflex;
2019-06-05 12:59:18 +02:00
flex-wrap: nowrap;
2019-04-08 18:00:38 +02:00
width: 50px;
height: 25px;
}
}
.sidebar{
margin-top: 50px;
}
2019-06-09 15:46:51 +02:00
p{
a{
text-decoration: underline;
}
}
2019-04-08 18:00:38 +02:00
}
2019-04-03 15:29:46 +02:00
.sidebar{
2019-05-09 00:26:27 +02:00
position: absolute;
right: 0;
2019-06-03 15:22:10 +02:00
width: 20%;
2019-05-09 00:26:27 +02:00
margin: -55px auto 0 20px;
2019-05-01 19:59:32 +02:00
h2{
background: $red;
border-radius: 100px;
width: 100px;
height: 100px;
}
2019-04-03 15:29:46 +02:00
.side-agenda{
2019-05-09 00:26:27 +02:00
padding: 10px 20px 10px 0;
2019-05-01 19:59:32 +02:00
&:not(:nth-of-type(1)){
border-top: 1px solid $light-blue;
&::before{
content: " ";
display: block;
position: absolute;
width: 5px;
height: 5px;
margin-top: -13px;
border-radius: 10px;
background: $light-blue;
}
}
2019-04-03 15:29:46 +02:00
&:nth-of-type(3){
margin-bottom: 10px;
2019-04-02 19:54:29 +02:00
}
}
2019-04-03 15:29:46 +02:00
.side-all-agenda{
2019-05-31 23:37:11 +02:00
background: white;
2019-04-03 15:29:46 +02:00
width: auto;
2019-05-09 00:26:27 +02:00
padding: 10px 20px;
2019-04-03 15:29:46 +02:00
margin-bottom: 10px;
2019-05-01 19:59:32 +02:00
float: left;
border: 2px solid $red;
border-radius: 30px;
2019-05-09 00:26:27 +02:00
transition: background-color 0.3s ease;
a{
color: black;
}
&:hover{
background-color: $red;
transition: background-color 0.3s ease;
a{
color: white;
}
}
2019-04-03 15:29:46 +02:00
}
2019-05-09 00:26:27 +02:00
2019-04-03 15:29:46 +02:00
}
2019-04-05 00:19:26 +02:00
2019-06-13 16:19:04 +02:00
2019-05-14 19:59:47 +02:00
#newsletter{
2019-06-13 16:19:04 +02:00
padding: 20px 0;
2019-05-01 19:59:32 +02:00
background: $light-blue;
2019-06-13 16:19:04 +02:00
/* LOADER */
.ml-form-embedSubmitLoad {
display: inline-block;
width: 20px;
height: 20px;
}
.ml-form-embedSubmitLoad:after {
content: " ";
display: block;
width: 11px;
height: 11px;
margin: 1px;
border-radius: 50%;
border: 4px solid #fff;
border-color: #ffffff #ffffff #ffffff transparent;
2019-07-13 17:08:11 +02:00
-webkit-animation: ml-form-embedSubmitLoad 1.2s linear infinite;
animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@-webkit-keyframes ml-form-embedSubmitLoad {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
2019-06-13 16:19:04 +02:00
}
@keyframes ml-form-embedSubmitLoad {
0% {
2019-07-13 17:08:11 +02:00
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
2019-06-13 16:19:04 +02:00
}
100% {
2019-07-13 17:08:11 +02:00
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
2019-06-13 16:19:04 +02:00
}
}
#mlb2-985974.ml-form-embedContainer {
box-sizing: border-box;
display: table;
height: 100%;
margin: 0 auto;
width: 100% !important;
}
#mlb2-985974.ml-form-embedContainer h4,
#mlb2-985974.ml-form-embedContainer p,
#mlb2-985974.ml-form-embedContainer span,
#mlb2-985974.ml-form-embedContainer button {
text-transform: none !important;
letter-spacing: normal !important;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper {
display: inline-block !important;
margin: 0;
padding: 0;
position: relative;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm { width: 40%; }
#mlb2-985974.ml-form-embedContainer .ml-form-align-left { text-align: left; }
#mlb2-985974.ml-form-embedContainer .ml-form-align-center { text-align: center; }
#mlb2-985974.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
#mlb2-985974.ml-form-embedContainer .ml-form-align-right { text-align: right; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
height: auto;
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
// padding: 20px 20px 0 20px;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
padding-bottom: 0;
justify-content: center;
display: flex;
border: 1px solid white;
border-radius: 30px;
overflow: hidden;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent{
color: white;
p{
color: white;
text-align: center;
font-family: $Regular;
}
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
color: white;
white-space:nowrap;
padding: 0 20px;
line-height: 40px;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
color: #000000;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: 400;
margin: 0 0 10px 0;
text-align: left;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
color: #000000;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 14px;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
color: #000000;
text-decoration: underline;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
margin: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
margin: 0;
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
margin: 0 0 20px 0;
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
margin: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
margin: 0 0 10px 0;
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
margin: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
margin: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
background-color: #ffffff !important;
color: #333333 !important;
border-color: #cccccc !important;
border-radius: 4px !important;
border-style: solid !important;
border-width: 1px !important;
font-size: 14px !important;
line-height: 20px !important;
padding: 10px 10px !important;
width: 100% !important;
box-sizing: border-box !important;
max-width: 100% !important;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder { color: #333333; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder { color: #333333; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder { color: #333333; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder { color: #333333; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
height: 40px;
display: flex;
}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%; }
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: auto; margin-left: -45px;}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; }
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
background-color: #ffffff;
color: #333333;
border-radius: 30px;
border-style: solid;
border-width: 0px;
font-size: 14px;
line-height: 20px;
padding: 10px 10px;
width: 100%;
box-sizing: border-box;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
background-color: transparent;
border-color: transparent;
border-style: solid;
box-shadow: none;
color: black !important;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 14px !important;
font-weight: 700;
line-height: 20px;
padding: 10px !important;
width: 100%;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
display: inline-block;
float: left;
margin: 1px 0 0 0;
opacity: 1;
visibility: visible;
appearance: checkbox !important;
-moz-appearance: checkbox !important;
-webkit-appearance: checkbox !important;
position: relative;
height: 14px;
width: 14px;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
color: #000000;
display: block;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: left;
padding-left: 25px;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
font-weight: normal;
margin: 0;
padding: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
color: #000000;
text-decoration: underline;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
color: #000000 !important;
font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
font-size: 12px !important;
font-weight: normal !important;
line-height: 18px !important;
padding: 0 !important;
margin: 0 5px 0 0 !important;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
margin: 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
margin: 0 0 20px 0;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
background-color: #000000 !important;
border: none !important;
border-radius: 4px !important;
box-shadow: none !important;
color: #ffffff !important;
font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
font-size: 14px !important;
font-weight: 700 !important;
line-height: 20px !important;
padding: 10px !important;
width: 100% !important;
box-sizing: border-box !important;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
background-color: #333333 !important;
}
.ml-subscribe-close {
width: 30px;
height: 30px;
background: url(https://bucket.mlcdn.com/images/default/modal_close.png) no-repeat;
background-size: 30px;
cursor: pointer;
margin-top: -10px;
margin-right: -10px;
position: absolute;
top: 0;
right: 0;
}
.ml-error input {
background: url(https://bucket.mlcdn.com/images/default/error-icon.png) 98% center no-repeat #ffffff !important;
background-size: 24px 24px !important;
}
.ml-error .label-description {
color: #ff0000 !important;
}
.ml-error .label-description p {
color: #ff0000 !important;
}
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
color: #ff0000 !important;
}
2019-07-13 17:08:11 +02:00
// @media only screen and (max-width: 400px){
2019-06-13 17:40:44 +02:00
// .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
// .ml-form-formContent.horozintalForm { float: left!important; }
// .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
// .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
// .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
// .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
// }
2019-06-13 16:19:04 +02:00
@media only screen and (max-width: 400px) {
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
margin-bottom: 10px !important;
width: 100% !important;
}
}
2019-05-01 19:59:32 +02:00
#mc_embed_signup{
width: 600px;
margin: auto;
padding: 0 0 0 10px;
border-radius: 100px;
border: 1px solid $white;
form{
@include inlineflex();
width: 100%;
#mc_embed_signup_scroll{
@include inlineflex();
width: 100%;
margin: auto;
label{
text-align: center;
color: $white;
margin-right: 10px;
width: 260px;
}
&>input{
width: 315px;
padding-left: 20px;
}
input{
border-radius: 30px;
2019-05-09 00:26:27 +02:00
height: 31px;
2019-06-05 12:59:18 +02:00
box-shadow: none;
2019-05-01 19:59:32 +02:00
border: none;
}
.clear{
input{
background: $white;
margin-left: -30px;
}
}
}
}
}
2019-04-05 00:19:26 +02:00
}
2019-05-09 00:26:27 +02:00
#home{
.content{
@include inlineflex();
& > p{
position: relative;
width: calc(100% / 3);
padding: 50px 20px;
margin-top: 10px;
img{
position: absolute;
width: auto;
height: 50px;
top: -20px;
left: 50%;
2019-05-27 17:03:03 +02:00
-webkit-transform: translate(-50%);
transform: translate(-50%);
2019-05-09 00:26:27 +02:00
}
&:nth-of-type(n+4){
width: calc(100% / 4);
}
&:last-child{
width: auto!important;
margin-top: 0!important;
margin: auto;
a{
display: block;
padding: 10px 20px;
text-align: center;
border: 2px solid $green;
border-radius: 30px;
margin: auto;
transition: background-color 0.3s ease;
}
}
}
}
}
#item{
.content{
@include inlineflex;
.images_s{
2019-05-27 17:03:03 +02:00
// width: calc(100% / 2 - 15px);
width: 40%;
2019-06-13 12:47:37 +02:00
align-self: center;
2019-05-31 23:37:11 +02:00
// min-width: 300px;
2019-05-09 00:26:27 +02:00
margin-right: 15px;
img{
margin-bottom: 15px;
}
}
.content_s{
2019-05-27 17:03:03 +02:00
width: calc(60% - 30px);
2019-05-09 00:26:27 +02:00
}
2019-05-14 19:59:47 +02:00
.icones{
2019-05-27 17:03:03 +02:00
margin: 70px 0;
2019-05-14 19:59:47 +02:00
@include inlineflex;
2019-06-05 12:59:18 +02:00
justify-content: space-around;
2019-05-27 17:03:03 +02:00
width: 100%;
.icon{
height: 50px;
width: auto;
max-width: 200px;
img{
height: 50px;
width: 100%;
}
p{
text-align: center;
}
}
2019-05-14 19:59:47 +02:00
}
2019-05-09 00:26:27 +02:00
}
}
2019-05-14 19:59:47 +02:00
#devis{
2019-05-09 00:26:27 +02:00
@include inlineflex();
2019-06-05 12:59:18 +02:00
justify-content: center;
align-items: center;
2019-06-13 17:40:44 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
background-repeat: repeat;
2019-05-09 00:26:27 +02:00
width: 100%;
2019-05-31 23:37:11 +02:00
// height: 300px;
2019-05-14 19:59:47 +02:00
.title{
width: 200px;
height: 200px;
background: $red;
border-radius: 200px;
2019-05-27 17:03:03 +02:00
-webkit-transform: translateX(80px);
transform: translateX(80px);
2019-05-14 19:59:47 +02:00
h4{
text-align: center;
color: white;
margin: 50% 10px 0 10px;
2019-05-27 17:03:03 +02:00
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
2019-05-14 19:59:47 +02:00
}
}
2019-05-09 00:26:27 +02:00
.txt{
@include inlineflex();
2019-05-14 19:59:47 +02:00
background: white;
2019-05-27 17:03:03 +02:00
width: 25%;
2019-05-14 19:59:47 +02:00
margin-right: 20px;
2019-06-05 15:04:54 +02:00
height: auto;
2019-05-14 19:59:47 +02:00
p{
padding: 20px 20px 20px 100px;
color: black;
text-align: left;
strong{
font-size: 1.3rem;
2019-05-09 00:26:27 +02:00
}
}
2019-05-14 19:59:47 +02:00
}
.demander-votre-devis{
2019-06-24 19:53:10 +02:00
// margin-top: 0;
// -webkit-transform: translateX(-200px);
// transform: translateX(-200px);
2019-05-14 19:59:47 +02:00
}
.img{
width: 400px;
height: 300px;
2019-06-24 19:53:10 +02:00
position: relative;
.content-img{
2019-07-05 15:52:42 +02:00
width: auto;
height: auto;
2019-06-24 19:53:10 +02:00
overflow: hidden;
& > img{
2019-07-05 15:52:42 +02:00
width: 100%;
height: 100%;
2019-06-24 19:53:10 +02:00
}
2019-05-09 00:26:27 +02:00
}
}
2019-05-27 17:03:03 +02:00
}
#devis{
&.item, &.sublog{
background: $red;
2019-05-14 19:59:47 +02:00
height: auto;
2019-05-27 17:03:03 +02:00
padding: 20px 0;
a{
color: white;
2019-05-14 19:59:47 +02:00
.title{
2019-05-27 17:03:03 +02:00
vertical-align: baseline;
border-radius: 30px;
border: 1px solid white;
padding: 5px 20px;
height: 35px;
width: auto;
-webkit-transform: translateX(0);
transform: translateX(0);
}
&:hover{
color: black;
.title{
background: white;
transition: background 0.3s ease;
}
2019-05-09 00:26:27 +02:00
}
}
}
}
2019-05-27 17:03:03 +02:00
// .bx-viewport{
// height: 30vw!important;
// }
2019-05-09 00:26:27 +02:00
#reco{
background: $dark-blue;
.title{
2019-05-14 19:59:47 +02:00
display: flex;
2019-05-09 00:26:27 +02:00
cursor: pointer;
width: 100%;
padding: 10px;
2019-05-27 17:03:03 +02:00
h2{
2019-05-14 19:59:47 +02:00
width: auto;
2019-05-09 00:26:27 +02:00
margin: auto;
color: white;
padding: 10px;
text-align: center;
border-top: 1px solid white;
border-bottom: 1px solid white;
2019-05-14 19:59:47 +02:00
font-size: 1rem;
2019-05-09 00:26:27 +02:00
&::after{
2019-05-14 19:59:47 +02:00
display: inline-flex;
margin-left: 10px;
content: " ";
background: url('../images/fleche-top.svg');
background-size: 15px 18px;
background-repeat: no-repeat;
width: 15px;
height: 18px;
}
}
&.open{
2019-06-04 16:51:57 +02:00
h2:after{
2019-05-27 17:03:03 +02:00
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
2019-05-09 00:26:27 +02:00
}
}
}
.txt{
z-index: -1;
2019-06-13 12:45:06 +02:00
position: relative;
2019-05-09 00:26:27 +02:00
width: 100%;
2019-06-13 12:45:06 +02:00
display: none;
2019-05-09 00:26:27 +02:00
p{
color: white;
width: 300px;
a{
color: white;
text-decoration: underline;
}
}
2019-05-14 19:59:47 +02:00
&.open{
2019-06-13 12:45:06 +02:00
@include inlineflex;
justify-content: center;
padding-top: 20px;
2019-05-14 19:59:47 +02:00
z-index: 999;
background: $dark-blue;
2019-05-28 16:46:46 +02:00
.item{
display: block;
}
}
h3{
color: $green;
}
}
.item{
margin: 0 0px 20px 20px;
border-left: 1px solid white;
padding-left: 20px;
img{
width: 50px;
margin-bottom: 10px;
2019-05-14 19:59:47 +02:00
}
2019-05-09 00:26:27 +02:00
}
}
.content_s{
&.map{
width: 100%!important;
height: auto;
p{
&:last-child{
height: 500px;
}
}
a#carte{
display: block;
width: 100%;
height: 100%;
}
}
}
#event{
2019-05-14 19:59:47 +02:00
.title{
width: 45%;
margin: auto;
}
2019-05-09 00:26:27 +02:00
.head-event{
.tags{
width: 100%;
&.professionnels{
background-color: $red;
}
&.grand_public{
background-color: $light-blue;
}
&.formations{
background-color: $grey;
}
&.publics{
padding: 2.5px 10px;
color: white;
}
}
}
2019-05-14 19:59:47 +02:00
.card-header{
@include inlineflex;
2019-06-05 12:59:18 +02:00
flex-direction: column;
2019-05-14 19:59:47 +02:00
width: 100%;
&.professionnels{
background-color: $red;
}
&.grand_public{
background-color: $light-blue;
}
&.formations{
background-color: $grey;
}
.publics{
text-align: right;
&.publics{
padding: 2.5px 10px;
color: white;
}
}
}
2019-05-09 00:26:27 +02:00
.card-body{
padding: 15px;
2019-06-13 17:40:44 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
// background-position: center;
background-repeat: repeat;
// background-size: cover;
2019-05-14 19:59:47 +02:00
}
.card-content{
margin-top: 20px;
}
}
.demander-votre-devis{
padding: 10px;
z-index: 999;
2019-07-13 17:08:11 +02:00
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
2019-05-14 19:59:47 +02:00
background: $red;
position: absolute;
width: 200px;
height: 200px;
2019-07-13 17:08:11 +02:00
right: 5%;
2019-05-14 19:59:47 +02:00
color: white;
text-align: center;
2019-06-24 19:53:10 +02:00
2019-05-14 19:59:47 +02:00
strong{
font-weight: bold!important;
}
a{
color: white;
}
img{
2019-06-02 18:07:05 +02:00
margin-top: 10px;
2019-05-14 19:59:47 +02:00
width: 50px;
}
2019-05-09 00:26:27 +02:00
}
2019-07-13 17:08:11 +02:00
2019-05-14 19:59:47 +02:00
#sublog{
.body-wrapper{
background-image: url('../images/Trame-gris.svg');
2019-06-13 17:40:44 +02:00
background-repeat: repeat;
2019-05-14 19:59:47 +02:00
}
.content{
@include inlineflex;
width: 90%;
2019-05-31 23:37:11 +02:00
flex-direction: row-reverse;
2019-06-05 14:49:26 +02:00
justify-content: space-between;
2019-06-09 15:17:49 +02:00
.txt{
width: 50%;
.content_txt{
width: 50%;
}
& > p{
2019-05-14 19:59:47 +02:00
font-size: 1.2rem;
font-family: $Bold;
}
2019-06-09 15:17:49 +02:00
}
2019-05-14 19:59:47 +02:00
}
2019-05-28 16:46:46 +02:00
svg{
pointer-events: none;
}
2019-05-14 19:59:47 +02:00
.mapsalles{
width: 50%;
2019-05-31 23:37:11 +02:00
position: relative;
2019-05-28 16:46:46 +02:00
.contour{
position: relative;
z-index: 1;
pointer-events: none;
2019-05-31 23:37:11 +02:00
display: inline-block;
width: 100%;
vertical-align: middle;
overflow: hidden;
2019-05-28 16:46:46 +02:00
}
.fond{
position: absolute;
2019-05-31 23:37:11 +02:00
display: inline-block;
width: 100%;
vertical-align: middle;
overflow: hidden;
2019-05-28 16:46:46 +02:00
z-index:0;
2019-05-31 23:37:11 +02:00
left: 0;
top: 5.3%;
2019-05-28 16:46:46 +02:00
path{
fill: none;
pointer-events: all;
transition: fill 0.3s ease;
&:hover{
fill: $light-blue!important;
transition: fill 0.3s ease;
}
}
}
2019-05-14 19:59:47 +02:00
}
2019-06-09 15:17:49 +02:00
2019-05-14 19:59:47 +02:00
.content_salle{
2019-06-05 12:54:15 +02:00
visibility: hidden;
2019-06-24 19:53:10 +02:00
overflow-x: hidden;
2019-05-14 19:59:47 +02:00
position: absolute;
left: 50%;
top: 300px;
2019-06-04 16:51:57 +02:00
width: 40%;
2019-05-14 19:59:47 +02:00
background: white;
& > p{
padding-left: 10px;
}
2019-06-05 12:54:15 +02:00
.header-salles{
2019-06-24 19:53:10 +02:00
height: 100%;
2019-05-14 19:59:47 +02:00
background: $light-blue;
padding: 5px 10px;
color: white;
margin-top: 0;
2019-06-05 12:54:15 +02:00
width: 100%;
h3{
width: 100%;
}
img{
display: none;
}
2019-05-14 19:59:47 +02:00
}
2019-06-24 19:53:10 +02:00
.gal-salles{
height: 100%;
position: relative;
img{
width: 100%;
height: 100%;
}
}
2019-05-14 19:59:47 +02:00
h4{
background: $green;
font-size: 1.2rem;
font-family: $Bold;
padding: 5px 10px;
2019-06-05 12:19:48 +02:00
margin-top: -1px;
2019-05-14 19:59:47 +02:00
}
2019-06-24 19:53:10 +02:00
}
.slidesjs-navigation{
margin-right: 5px;
float: left;
display: block;
width: 30px;
height: 30px;
padding-top: 13px;
background-position: 0 0;
overflow: hidden;
z-index: 999;
position: absolute;
top: 50%;
}
.slidesjs-previous {
left: 10px;
background-image: url('/user/themes/lecampus/images/arrow-gal.svg');
2019-06-05 12:19:48 +02:00
}
2019-06-24 19:53:10 +02:00
.slidesjs-next {
background-image: url('/user/themes/lecampus/images/arrow-gal-next.svg');
right: 10px;
2019-06-02 18:07:05 +02:00
}
2019-06-24 19:53:10 +02:00
2019-05-09 00:26:27 +02:00
}
2019-05-27 17:03:03 +02:00
#default{
.header-wrapper{
width: 45%;
margin-top: 50px;
margin: auto;
}
.body-wrapper{
margin-bottom: 50px;
}
.title{
width: 80%;
margin: auto;
}
.txt{
margin:auto;
}
p{
margin-bottom: 10px;
}
}
2019-06-07 19:04:55 +02:00
.ok{
cursor: pointer;
}
2019-06-16 17:47:42 +02:00
.cookie-banner {
display: none;
position: fixed;
top: 0;
width: 100%;
&.active {
display: block;
}
}
// Overlay de la boite de dialogue
.cookie-inform-and-ask {
2019-06-19 16:33:20 +02:00
background-color: green;
2019-06-16 17:47:42 +02:00
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
&.active {
display: block;
}
// La vraie boîte de dialogue
.cookie-dialog {
left: 50%;
position: absolute;
top: 50%;
2019-07-13 17:08:11 +02:00
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
2019-06-16 17:47:42 +02:00
width: 70%;
}
}