Skip to content
Snippets Groups Projects
index.scss 20 KiB
Newer Older
@charset "UTF-8";

@import '../../node_modules/include-media/dist/include-media';
@import '../../node_modules/normalize.css/normalize';

@import "variables";
/* Reset*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   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;
}
/* XXXXXXXXXXXXXXXXXXXXXXXX FIN RESET XXXXXXXXXXXXXXXXXXXXX*/

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX GLOBAUX XXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

/* XXXXXXXXXXXXXXXXXXXXXXXX variables XXXXXXXXXXXXXXXXXXXXXX */

:root {
  --typo: calisto;
  --typo-btn: avenir;
  --bg-page: #f5f6fa;
  --clr-typo-base : #7A8789;
  --bg-block:#FFFFFF;
  --bg-form : rgba(236,241,251,1);
  --bg-form-focus : rgba(236,241,251,0.5);
  --marge-base: 4.5rem;
  --marge-petit: 3rem;
  --marge-base-750: 1rem;
  --bg-btn-base: #01AFCC;
fred's avatar
fred committed
  --clr-roll-black:#444C4D;
/* XXXXXXXXXXXXXXXXXXXXXXXX technique XXXXXXXXXXXXXXXXXXXXXX */
@font-face {
  font-family: 'var(--typo)';
  src: url('../fonts/CALIST.eot'); /* IE9 Compat Modes */
  src: url('../fonts/CALIST.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/CALIST.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/CALIST.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/CALIST.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/CALIST.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'var(--typo-btn)';
  src: url('../fonts/avenir-light.eot'); /* IE9 Compat Modes */
  src: url('../fonts/avenir-light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/avenir-light.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/avenir-light.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/avenir-light.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/avenir-light.svg#svgFontName') format('svg'); /* Legacy iOS */
}

html{
	font-size: 62.5%; /* definition du rem 1rem=10px*/
	box-sizing: border-box; /* redefinition du modèle de boite*/
}

*,*:before,*:after{
	box-sizing: inherit;
}

img{
	max-width: 100%;
}

.pull-right{
	float: right;
	width: auto;
}
.pull-left{
	float: left;
	width: auto;
fred's avatar
fred committed
.flex, sib-set-default,#resources-history>div div{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

fred's avatar
fred committed
.flex_espace, sib-set-default,#resources-history>div div{
	justify-content: space-between;
}
fred's avatar
fred committed
sib-set-default[name="actions"]{
    justify-content: flex-end;
}

.flex_item_center{
	align-items: center;
}

.container{
	max-width: 1440px;
	margin: 0 auto;
}

fred's avatar
fred committed
.container_min{
    margin: 0 auto var(--marge-base) auto;
    width: 80%;
}

.w_25{
	width: 25%;
}

.w_33{
	width: 33%;
}

.w_66{
	width: 66%;
}

.w_75{
	width: 75%;
}

.w_100{
    width: 100%;
}
.margin_bord_ecran{
    margin: 0 0 0 var(--marge-base);
    display: block;
}

/* XXXXXXXXXXXXXXXXXXXXXXXX visuels XXXXXXXXXXXXXXXXXXXXXX */

body{
	font-family: "var(--typo)";
	background: var(--bg-page);
}

.title_lead{
	width: 50%;
	margin: 0 25% var(--marge-base) 25%;
	font-size: 2.2rem;
	line-height: 1.4;
	text-align: center;
}

.title_lead_avenir{
	font-size: 2.4rem;
	text-align: center;
	margin: 2rem;
	font-weight: 900;
	font-family: 'var(--typo-btn)';

}

.block_log{
	width: 33%;
	background: var(--bg-block);
	text-align: center;
	margin: 1rem;
	padding: var(--marge-base);
	-webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.13);
	-moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.13);
	box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.13);
}
fred's avatar
fred committed
.block_list {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}
fred's avatar
fred committed
.button_base, input[type="submit"], #mentor-resource-detail a,.sib-conversation form input[type="submit"]{
	transition: all .3s ease-in-out;
	background-color: var(--bg-btn-base);
	color: var(--bg-block);
	text-transform: uppercase;
	font-size: 1.4rem;
	padding: .8rem 1.9rem .8rem 1.9rem;
fred's avatar
fred committed
	margin: 1.5rem .5rem 1rem .5rem;
	font-family: 'var(--typo-btn)';
	border: 2px solid var(--bg-btn-base);
	box-shadow: none;
	border-radius: 20px;
fred's avatar
fred committed
    width: auto;
fred's avatar
fred committed
    cursor: pointer;
fred's avatar
fred committed
.button_base:hover, input[type="submit"]:hover, #mentor-resource-detail a:hover,.sib-conversation form input[type="submit"]:hover{
	background-color: var(--bg-block);
	color: var(--bg-btn-base);
}

.button_dark{
	transition: all .3s ease-in-out;
	background-color: #444C4D;
	color: var(--bg-block);
	text-transform: uppercase;
	font-size: 1.4rem;
	padding: 1.5rem 1.9rem 1.5rem 1.9rem;
	margin: 3rem 0 1rem 0;
	font-family: 'var(--typo-btn)';
	border: 2px solid #444C4D;
	box-shadow: none;
	width: auto;
fred's avatar
fred committed
    cursor: pointer;
}
.button_dark:hover{
	background-color: var(--bg-block);
	color: #444C4D;
}
fred's avatar
fred committed
.fd_bleu+.button_dark{
    margin: 0 0 1rem 0;
}

p{
	font-size: 1.6rem;
	color: var(--clr-typo-base);
	font-family: 'var(--typo-btn)';
	text-align: left;
	margin: 0 0 var(--marge-petit) 0;
}

.p_entete{
	text-align: center;
	font-size: 1.8rem;
}

.backlink{
	display: inline-block;
	color: var(--clr-typo-base);
	font-size: 1.4rem;
	text-decoration: underline;
	font-family: 'var(--typo-btn)';
	transition: all .3s ease-in-out;
	margin: 3rem;
fred's avatar
fred committed
    cursor: pointer;
}

.backlink:hover{
	color: var(--bg-btn-base);
}

.add_browse{
	font-family: 'var(--typo-btn)';
	min-width: 10rem;
	font-size: 1.4rem;
	color: var(--bg-block);	
	border-radius: 16.5px;
	padding: .8rem 2rem;	
	background: #5B6374;
	border: 2px solid #5B6374;
	transition: all .3s ease-in-out;
	margin: 2rem;
	display: inline-block;
	text-align: center;
	text-decoration: none;
fred's avatar
fred committed
    cursor: pointer;
}

.add_browse:hover{
	color: #5B6374;		
	background: var(--bg-block);
}

.btn_filtre{
	border-radius: 15.5px;	
	background-color: #818998;
	padding: .5rem 3.5rem .5rem 1.5rem;
	font-family: 'var(--typo-btn)';
	color: var(--bg-block);
	text-decoration: none;
	text-align: center;
	font-size: 1.4rem;
	border:none;
	position: relative;
fred's avatar
fred committed
    cursor: pointer;
}
.btn_filtre:after{
	font-family: "Font Awesome 5 pro";
    font-weight: 900;
    content: "\f00d";
    position: absolute;
    right: 1.2rem;
    top: 30%;
}
fred's avatar
fred committed

fred's avatar
fred committed
.bold{
    font-weight: bold;
}

fred's avatar
fred committed
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX ICONES XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

fred's avatar
fred committed
.ico_gauche, #mentor-resource-detail a{
fred's avatar
fred committed
    padding-left: 3.5rem;
    position: relative;
}
.ico_droite{
    padding-left: 3.5rem;
    position: relative;
}

fred's avatar
fred committed
.ico_gauche:before,ico_droite:before, #mentor-resource-detail a:before{
fred's avatar
fred committed
    font-family: "Font Awesome 5 pro"; 
	font-weight: 900; 
	position : absolute;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
    left: 1.4rem;
    top: .7rem;
}
ico_droite:before{
    left: 1.4rem;
    top: .7rem;
}

.ico_plus:before{
    content:"\f067";
}
.ico_database:before{
    content:"\f1c0";
}
.ico_search:before{
    content: "\f002";
}
fred's avatar
fred committed
#mentor-resource-detail a:before{ /* ico link to ressource dans détail ressources*/
    content:"\f0c1";   
}
fred's avatar
fred committed

/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx FIN ICONE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

/* XXXXXXXXXXXXXXXXXXXXXXXX formulaires XXXXXXXXXXXXXXXXXXXXXX */

.block_creat_count{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: var(--marge-petit);
	overflow: hidden;
    display: block;
}

sib-form-label-text, sib-multiple-select,cs-form-password{
	display: block;
	width: 48.5%;
}
sib-form-label-text[name="linkedin"],sib-form-label-text[name="twitter"]{
    width: 100%;
}
cs-section_header, sib-form-textarea{
	display: block;
	width: 100%;
}

form textarea{
	height: 9.5rem;
	transition: all .3s ease-in-out; 
	resize: none;
}

label div{
	text-align: left;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 1rem 0;
	font-family: 'var(--typo-btn)';
}

input, textarea, select, form .ss-main .ss-multi-selected{
	background: var(--bg-form);
	color: #7A8789;
	font-size: 1.4rem;
	padding: 1rem 2rem 1rem 2rem;
	width: 100%;
	border:none;
	font-weight: lighter;
	font-family: 'var(--typo-btn)';
	outline: none;
	transition: all .3s ease-in-out; 
    height: 3.6rem;
    border-radius: 0;
}

input:focus, textarea:focus{
	background: var(--bg-form-focus);
}
fred's avatar
fred committed
.title_form, cs-section_introduction h2, div#mentor-resource-detail cs-display-property[name="name"] p{
	font-family: 'var(--typo)';
	font-size: 2.2rem;
	text-align: left;
	width: 100%;
	color: #444C4D;
	border-bottom: 1px solid #DBE2ED;
	padding: 0 0 1.5rem 0;
	margin: 2rem 0 2rem 0;
}

	font-family: 'var(--typo-btn)';
	color: #3D424A;
	border-bottom: 1px solid #C5CCD9;
	padding: 0 0 1.5rem 0;
	margin: 2rem 0 2rem 0;
	text-align: left;
	font-size: 1.8rem;
	width: 100%;
	font-weight: 900;
}

.input_big{
	width: 100%;
}

.input_photo label{
	position: relative;
}
.input_photo{
    text-align: left;
}

.input_photo label div{
	position: absolute;
	left: 25%;
	margin-top: 3rem;
}
.input_photo label>input:first-of-type{
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	margin: 0 3rem 0 0;
	background: url(../images/telecharger.png) no-repeat 52% 67% var(--bg-form);
}

sib-form-label-text[name="iframe_link"] div{
	position:relative;
}

sib-form-label-text[name="iframe_link"] div:before{
	content: "";
	display: block;
	width: 19px;
	height: 19px;
	background: url(../images/bulle_quest.png) no-repeat;
	top: 0.4rem;
	left: 24%;
	position: absolute;
}

select{
	padding: 0;
}

option{
	border-bottom: 1px solid #DBE2ED;
	padding: 1rem;
}

button{
	outline: none;
}
/* XXXXXXX MODIF SELECT XXXXXXXXXXXXXXXXXXXXXXXX*/
.ss-main .ss-multi-selected .ss-values, .ss-main .ss-multi-selected, div.ss-main,form .ss-main .ss-multi-selected .ss-values .ss-disabled {
    padding: 0;
    border-radius: 0;
    color: #7A8789;
}
form .ss-main .ss-multi-selected .ss-add{
    margin: -5px 12px 0 5px;
}
form .ss-main .ss-multi-selected .ss-values .ss-value{
    margin: 0 0.5rem 0 0;
}
/* ----------------- CHECKBOX ---------------------------*/

.ss-list.checkbox{
	padding-left: 2.5rem;
	color: #818998;
	font-weight: lighter;
}
.ss-list.checkbox .ss-option{
	position: relative;
	font-weight: lighter;

}
.ss-list.checkbox .ss-option:before {
	content: "";
	position : absolute;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid #818998;
	border-radius: 3px;
    left: -2.5rem;
    top: .9rem;
}
.ss-list.checkbox .ss-option.active:after {
	font-family: "Font Awesome 5 pro"; 
	font-weight: 900; 
	content: "\f00C";
	position : absolute;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
    left: -1.95rem;
    top: .9rem;
}
fred's avatar
fred committed

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX header XXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

header#header{
    background:var(--bg-block);
    height: 10rem;
}
header#header img {
    width: auto;
	border-radius: 0;
fred's avatar
fred committed
}
fred's avatar
fred committed
.avatar{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: blue;
    margin-right: 5rem;
}
header#header .avatar img{
	border-radius: 50%;
fred's avatar
fred committed
}
fred's avatar
fred committed
header select{
    width:12.5rem;
    margin-right: 2rem;
    border-radius: 50px;
}
header input{
    width:14.5rem;
    margin-right: 2rem;
    border-radius: 50px;
}

header#header sib-form-dropdown>label>div {
	display: none;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX MENU LOGUE XXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

#header{
	background: #152935;
	height: 5rem;
#header img{
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
#header .flex, #header>div{
	height: 100%;
#header .flex a{
	display: inline-block;
	font-size: 1.8rem;
	font-family: 'var(--typo-btn)';
	color: white;
	margin: 0 0 0 5rem;
	text-decoration: none;
fred's avatar
fred committed


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX PAGE LOG XXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

.logo{
	text-align: center;
	margin: 10rem 0 var(--marge-base) 0;
	width: 100%;
}

#splash .block_log{
	max-width: 30rem;
	margin: 0 auto var(--marge-base) auto;
}

.img_log{
	margin: 0 0 4rem 0;
}

.button__actions>div {
	display: inline-block
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX PAGE CREATE COMPTE XXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
figure+figure .img_log{
   margin: 0; 
}

h2.title_create{
    font-family: 'var(--typo)';
    font-size: 2.2rem;
    text-align: center;
    color: #000;
    padding: 0 0 1.5rem 0;
    margin: 2rem 0 2rem 0;
}


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX LISTE RESSOURCE XXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

.fd_bleu{
    width: 100%;
    background: var(--bg-btn-base);
    color: white;
    font-size: 2rem;
    padding: 2rem 2rem;
    margin: 0;
}

/* Style tab links */
.tabs {
	margin-top: 20px;
fred's avatar
fred committed
    overflow: hidden;
fred's avatar
fred committed
    background: var(--bg-page);
	color: #818998;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
fred's avatar
fred committed
	font-size: 2rem;
	text-align: center;
	line-height: 2;
	width: 33.33%;
fred's avatar
fred committed
    transition: all .3s ease;
    position: relative;
}

.tablink.active{
    border-bottom: solid 7px var(--bg-btn-base);
    color: black;
fred's avatar
fred committed
.tablink:before{
    content: "";
    display: block;
    width: 0;
    height: 7px;
    position: absolute;
    bottom: -7px;
    background: var(--bg-btn-base);
    transition: all .3s ease;
}
.tablink:hover:before{
    width: 100%;
}
fred's avatar
fred committed
    color: black;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
	display: none;
fred's avatar
fred committed
	/*background-color:#888;*/
	padding-top: 40px;
	margin-bottom: 40px;
	height: 100%;
	font-size: 1.8rem;
	line-height: 1.6;
	color: black;
}

.tabcontent p {
	color: black;
	margin-bottom: 0;
}

.tabcontent cs-action {
	cursor: pointer;
}

.tabcontent sib-display>div>sib-display>div {
	padding:20px;
}

.tabcontent sib-display>div>sib-display:nth-of-type(odd)>div {
fred's avatar
fred committed
	background-color:#ECF1FB;
}
			
.tabcontent sib-display>div>sib-display:nth-of-type(even)>div {
fred's avatar
fred committed
	background-color:white;
fred's avatar
fred committed
sib-set-default[name="content"]>*{
    display: block;
    width: 100%;
    text-align: left;
    font-family: "var(--typo-btn)";
    font-size: 1.4rem;
}

sib-display-value,sib-multiple label,cs-resource-status div{
        font-weight: bold;
    }
sib-multiple label{
    margin-right: 1rem;
}
Benoit Alessandroni's avatar
Benoit Alessandroni committed
#resources-history cs-resource-status[name="review"]{
fred's avatar
fred committed
    width: 100%;
    display: block;
    text-align: right;
    div{
        display: inline-block;
        font-family: "var(--typo-btn)"; 
    }
}
#resources-history .fas{
    color: var(--bg-btn-base);
    margin-left: 2.5rem;
    font-size: 1.5rem;
    transition: .3s all ease-in;
    cursor: pointer;
    &:hover{
        color: var(--clr-roll-black);
    }
        }
sib-multiple label, cs-resource-status[name="review.status"]+*{
    float: left;
    width: auto;
}
.button_pending{
    background: #5DC6F2;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
#pending-resources > div sib-display[label-validate="Check ->"]>div{
    display:flex;
    justify-content: space-between;
}
 
/*XXXXXXXXXXXXXXXXXXXXX DETAIL RESSOURCES XXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
fred's avatar
fred committed
cs-display-step-property[label="Step"] p{
    font-weight: bold;
    border-bottom: #5DC6F2 solid 3px;
    width: auto;
    float: left;
    padding-bottom: .5rem;
}
cs-display-multiple-property[label="Format:"] p{
    width: auto;
    float: right;
    padding-bottom: .5rem;
}
sib-multiple[name="format"] + *{
    clear: both;
}
sib-set-default[name="submitter_info"]{
    display: block;
    cs-display-resource-property:first-child b{
        display: block;
    }
    p{
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}
#mentor-resource-detail a{
    text-decoration: none;
    display: inline-block;
    margin: 3rem 0;
}

sib-set-default[name="specifications"]> cs-display-resource-property{
    display: block;
    float: left;
    width: 33%;
    border: 1px solid var(--bg-page);
    padding: 2rem 0;
    background: var(--bg-form-focus);
    margin-top: 1px;
    p{
        text-align: center;
        margin:0;
        font-size: 1.4rem;
    }
}

.sib-conversation div.conversation-form{
    border: none;
    position: relative;
}
fred's avatar
fred committed
div.sib-conversation textarea{
    border-radius: 0;
    background: white;
    height: 4.5rem;
    padding: 1.5rem 1rem 1rem 3.2rem;
    font-size: 1.6rem;
}

div.sib-conversation div.conversation-form:before{
    content: "\f27a";
    font-family: "Font Awesome 5 pro"; 
	font-weight: 900; 
	position : absolute;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
    top: 5.5rem;
    left: 2rem;
    color: var(--bg-btn-base);
}

.sib-conversation form{
     overflow: hidden;
    input[type="submit"]{
            float: right;
    }
}

div#requests.tabcontent sib-display.request_accordeon div div> sib-display-value{
    font-family: 'var(--typo-btn)';
    font-size: 1.2rem;
    color: var(--clr-typo-base);
    float: left;
}

div#requests.tabcontent sib-display.request_accordeon div div> sib-set-default >sib-display-value{
    color: #444C4D;
}

cs-validate-action div{
        clear: both;
        text-align: right;
    }
fred's avatar
fred committed
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX PROFILE XXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

.block_list.flex .button__actions>div{
    display: block;
}

.profile_information{
    margin-left: 8rem;
    width: 40%;
    padding: 3rem;
    position: relative;
    cs-display-label p{
        margin: 1.5rem 0 0.5rem 0;
        font-weight: bold;
    }
    sib-display:last-child{
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-btn-base);
        padding: 3rem;
        text-align: left;
        margin-bottom: 2rem;
        cs-display-resource-property[name="email"]
        p,.fab{
            color: var(--bg-block);
        }
        cs-display-link {
            display: inline-block;
            width: 3rem;
            p{
                margin: 0;
            }
            
        }
    }
}

cs-profile-picture{
    width: 8.5rem;
    height: 8.5rem;
    float:left;
    margin-right: 1.5rem;
    img{
        border-radius: 50%;
    }
}

cs-display-property[name="name"] p{
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

cs-display-property[name="mentor_profile.country"] p{
    clear: both;
}

fred's avatar
fred committed

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX MEDIA QUERIES XXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

@media screen and (max-width: 750px) {
  .block_log {
    padding:var(--marge-base-750);
  }
Benoit Alessandroni's avatar
Benoit Alessandroni committed
}

[hidden] {
	display: none !important;
fred's avatar
fred committed
}