1008 lines
18 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: ' ';
background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
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{
position: absolute;
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-05-09 00:26:27 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
}
.event{
width: 45%;
.card-content{
@include inlineflex;
2019-06-05 12:59:18 +02:00
flex-wrap: nowrap;
justify-content: space-between;
2019-05-09 00:26:27 +02:00
.reso{
width: 20%;
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-11 11:20:26 +02:00
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-05-01 19:59:32 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
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-05-14 19:59:47 +02:00
#newsletter{
2019-05-01 19:59:32 +02:00
padding: 20px;
background: $light-blue;
#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-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-05-09 00:26:27 +02:00
background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
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{
margin-top: 0;
2019-05-27 17:03:03 +02:00
-webkit-transform: translateX(-200px);
transform: translateX(-200px);
2019-05-14 19:59:47 +02:00
}
.img{
width: 400px;
height: 300px;
overflow: hidden;
img{
width: auto;
height: 400px;
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;
position: absolute;
width: 100%;
2019-05-14 19:59:47 +02:00
padding-top: 20px;
2019-05-09 00:26:27 +02:00
@include inlineflex;
2019-06-05 12:59:18 +02:00
justify-content: center;
2019-05-27 17:03:03 +02:00
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
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{
z-index: 999;
background: $dark-blue;
2019-05-28 16:46:46 +02:00
.item{
display: block;
}
}
h3{
color: $green;
}
}
.item{
display: none;
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;
background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
background-position: center;
background-repeat: no-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;
background: $red;
position: absolute;
width: 200px;
height: 200px;
right: 100px;
margin-top: -100px;
color: white;
text-align: center;
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-05-14 19:59:47 +02:00
#sublog{
.body-wrapper{
background-image: url('../images/Trame-gris.svg');
background-repeat: no-repeat;
}
.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
// display: none;
visibility: hidden;
2019-06-05 12:59:18 +02:00
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-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
}
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-02 18:07:05 +02:00
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager{
bottom: 10px!important;
}
2019-06-05 12:19:48 +02:00
.bx-controls-direction{
2019-06-09 15:17:49 +02:00
a{
background-size: cover;
background-repeat: no-repeat;
}
.bx-prev{
background-image: url('/user/themes/lecampus/images/arrow-gal.svg');
}
.bx-next{
background-image: url('/user/themes/lecampus/images/arrow-gal-next.svg');
&:hover, &:focus{
background-position: center!important;
}
}
2019-06-05 12:19:48 +02:00
}
2019-06-02 18:07:05 +02:00
.bx-pager-link {
background: white!important;
2019-06-05 12:05:19 +02:00
&.active{
background: black!important;
}
2019-06-02 18:07:05 +02:00
}
2019-05-14 19:59:47 +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;
}