2016-04-20 14:57:59 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
/* [1] COULEURS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) COULEURS DU THEME $DEFAULT */
|
|
|
|
/* (2) COULEURS DE THEME $DARK */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* (3) Couleurs du theme pour la timeline */
|
2016-04-20 14:57:59 +00:00
|
|
|
/* [2] DIMENSIONS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Layout de base */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* [3] Mixins
|
|
|
|
=========================================================*/
|
2016-04-22 09:20:27 +00:00
|
|
|
/* [4] Functions
|
|
|
|
=========================================================*/
|
2016-04-20 14:57:59 +00:00
|
|
|
/* [1] Panel list (tokens, utilisateurs, etc)
|
|
|
|
=========================================================*/
|
2016-04-19 15:08:59 +00:00
|
|
|
/* [1] COULEURS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) COULEURS DU THEME $DEFAULT */
|
|
|
|
/* (2) COULEURS DE THEME $DARK */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* (3) Couleurs du theme pour la timeline */
|
2016-04-19 15:08:59 +00:00
|
|
|
/* [2] DIMENSIONS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Layout de base */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* [3] Mixins
|
|
|
|
=========================================================*/
|
2016-04-22 09:20:27 +00:00
|
|
|
/* [4] Functions
|
|
|
|
=========================================================*/
|
2016-04-19 15:08:59 +00:00
|
|
|
/* [1] Panneau d'ajout/suppression d'elements
|
|
|
|
=========================================================*/
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: .9em;
|
|
|
|
color: #000;
|
|
|
|
/* (1) Header (titre + ajout) */
|
|
|
|
/* (2) Description (sous le header) */
|
|
|
|
/* (3) Liste des elements */
|
|
|
|
/* (5) Formulaire d'ajout d'un nouvel element */
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-header] {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: .5em .7em;
|
|
|
|
border-radius: 3px 3px 0 0;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
box-shadow: inset 0 0 5px #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-header] > span,
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-header] > button {
|
|
|
|
color: #333;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-header] > button {
|
|
|
|
padding: .1em .7em;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #777;
|
|
|
|
background: #ecf0f1;
|
2016-04-22 08:27:58 +00:00
|
|
|
-webkit-transition: all 0.1s ease-in-out;
|
|
|
|
transition: all 0.1s ease-in-out;
|
2016-04-19 15:08:59 +00:00
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-header] > button:hover {
|
|
|
|
background: #399ced;
|
|
|
|
border-color: #1484df;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-description] {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
padding: .7em .7em;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
/* (4) Chaque element de la liste */
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
padding: 1em;
|
|
|
|
/* (4.1) Logo et type d'element */
|
|
|
|
/* (4.2) Donnees descriptives */
|
|
|
|
/* (4.3) Bouton de suppression */
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element]:not(:last-child) {
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1) {
|
|
|
|
display: flex;
|
|
|
|
width: 10em;
|
|
|
|
height: 6em;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
background-size: auto 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-token] {
|
|
|
|
background: url("/f/svg/token/st/container/666666") center 1em no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-token].active {
|
2016-04-25 09:02:31 +00:00
|
|
|
background-image: url("/f/svg/token/st/container/399ced");
|
2016-04-19 15:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-user] {
|
|
|
|
background: url("/f/svg/user/st/container/666666") center 1em no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-user].active {
|
2016-04-25 09:02:31 +00:00
|
|
|
background-image: url("/f/svg/user/st/container/399ced");
|
2016-04-19 15:08:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-20 09:59:21 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-number] {
|
|
|
|
background: url("/f/svg/phone_number/st/container/666666") center 1em no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1)[data-number].active {
|
2016-04-25 09:02:31 +00:00
|
|
|
background-image: url("/f/svg/phone_number/st/container/399ced");
|
2016-04-20 09:59:21 +00:00
|
|
|
}
|
|
|
|
|
2016-04-19 15:08:59 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(1) > span {
|
|
|
|
display: block;
|
|
|
|
padding: 0 .4em;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
font-size: .8em;
|
|
|
|
color: #555;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(n+2) {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex: 10em;
|
|
|
|
padding: 1em;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
font-size: 1em;
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > div:nth-child(n+2) > span[data-prefix]:before {
|
|
|
|
content: attr(data-prefix) ": ";
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > button {
|
|
|
|
padding: .1em .7em;
|
|
|
|
height: 2em;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #de2b08;
|
|
|
|
background: #fff;
|
|
|
|
color: #de2b08;
|
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
|
|
transition: all 0.2s ease-in-out;
|
2016-04-19 15:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > ul[data-list] > li[data-element] > button:hover {
|
|
|
|
background: #de2b08;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] {
|
|
|
|
display: none;
|
|
|
|
position: relative;
|
|
|
|
padding: 1em;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
background-color: #ecf0f1;
|
|
|
|
/* (5.1) Description du champ de texte */
|
|
|
|
/* (5.2) Champs de texte */
|
|
|
|
/* (5.3) Bouton de creation animation de @hover*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add].active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > .label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 18em;
|
|
|
|
padding-right: 2em;
|
|
|
|
text-align: right;
|
|
|
|
color: #3b494c;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='text'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='email'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='password'] {
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: .5em .7em;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
background-color: #fff;
|
|
|
|
color: #000;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='text']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='email']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='password']:focus {
|
|
|
|
border-color: #399ced;
|
|
|
|
box-shadow: inset 0 0 2px #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-panel-list] > div[data-add] > input[type='submit']:hover {
|
|
|
|
background: #399ced;
|
|
|
|
border-color: #1484df;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2016-04-20 14:57:59 +00:00
|
|
|
/* [2] Formulaire de type 'timeline'
|
|
|
|
=========================================================*/
|
2016-04-21 14:41:11 +00:00
|
|
|
/* [1] COULEURS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) COULEURS DU THEME $DEFAULT */
|
|
|
|
/* (2) COULEURS DE THEME $DARK */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* (3) Couleurs du theme pour la timeline */
|
2016-04-21 14:41:11 +00:00
|
|
|
/* [2] DIMENSIONS
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Layout de base */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* [3] Mixins
|
|
|
|
=========================================================*/
|
2016-04-22 09:20:27 +00:00
|
|
|
/* [4] Functions
|
|
|
|
=========================================================*/
|
2016-04-20 14:57:59 +00:00
|
|
|
/* [1] Formulaire de type timeline
|
|
|
|
=========================================================*/
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: .9em;
|
|
|
|
color: #000;
|
|
|
|
/* (1) On ajoute le liseré à droite pour TOUS les éléments */
|
|
|
|
/* (2) Titres de sections */
|
2016-04-20 20:58:19 +00:00
|
|
|
/* (3) Titres des sous-sections */
|
2016-04-21 09:26:21 +00:00
|
|
|
/* (4) Titres genre text message */
|
2016-04-21 08:33:03 +00:00
|
|
|
/* (5) 'Tags' -> textes sur le liseré gauche */
|
|
|
|
/* (6) Input d'upload de fichier (css hack) */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Contiendra l'input*/
|
|
|
|
/* Animation de hover*/
|
|
|
|
/* Animation de .active*/
|
2016-04-21 09:26:21 +00:00
|
|
|
/* (7) Inputs de type text */
|
|
|
|
/* (8) Gestion des espacements */
|
2016-04-21 14:41:11 +00:00
|
|
|
/* (9) <article> sert uniquement à regrouper */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* (10) Gestion des espacements verticaux */
|
2016-04-22 09:20:27 +00:00
|
|
|
/* (11) Gestion des custom <select> */
|
2016-04-25 08:39:04 +00:00
|
|
|
/* (12) Gestion des coloris pour les titres */
|
2016-04-26 09:30:02 +00:00
|
|
|
/* (13) Gestion de la navigation fléchée */
|
2016-04-20 14:57:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] *.line, #WRAPPER > #CONTAINER section[data-timeline] [data-space] {
|
2016-04-20 20:58:19 +00:00
|
|
|
display: block;
|
2016-04-20 14:57:59 +00:00
|
|
|
color: #333;
|
2016-04-21 08:33:03 +00:00
|
|
|
margin: 0 40px;
|
2016-04-20 14:57:59 +00:00
|
|
|
padding: 5px 60px;
|
2016-04-25 08:39:04 +00:00
|
|
|
border-left: 2px solid #d8e0e9;
|
2016-04-20 14:57:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3 {
|
2016-04-20 20:58:19 +00:00
|
|
|
display: block;
|
2016-04-21 08:33:03 +00:00
|
|
|
padding: 20px 40px;
|
2016-04-20 14:57:59 +00:00
|
|
|
font-size: 1.4em;
|
2016-04-25 08:39:04 +00:00
|
|
|
color: #000;
|
2016-04-20 14:57:59 +00:00
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* TODO: Transformer les background en ::before pour que ca soit juste un cercle avec bg et border*/
|
|
|
|
/* FIXME: Corriger le liseré pour les autres navigateurs que FF*/
|
|
|
|
/* Gestion du before (compteur css) //*/
|
2016-04-20 15:06:48 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3[data-n]:before {
|
2016-04-20 15:06:48 +00:00
|
|
|
content: attr(data-n);
|
2016-04-21 08:33:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
2016-04-25 08:54:10 +00:00
|
|
|
margin-top: .6em;
|
2016-04-21 08:33:03 +00:00
|
|
|
margin-left: -41px;
|
|
|
|
padding: 3px 12px;
|
|
|
|
border-radius: 50%;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Contour blanc*/
|
2016-04-21 08:33:03 +00:00
|
|
|
box-shadow: 0 0 0 3px #fff;
|
2016-04-25 08:43:33 +00:00
|
|
|
background-color: #738394;
|
2016-04-20 15:06:48 +00:00
|
|
|
font-size: 1.3em;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
2016-04-21 08:33:03 +00:00
|
|
|
transform: translateX(-50%) translateY(-50%);
|
2016-04-22 08:27:58 +00:00
|
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-o-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-ms-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
2016-04-20 14:57:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4 {
|
2016-04-20 20:58:19 +00:00
|
|
|
display: block;
|
2016-04-21 08:33:03 +00:00
|
|
|
padding: 20px 40px;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-size: 1.2em;
|
2016-04-25 08:43:33 +00:00
|
|
|
color: #46505b;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Gestion du before (compteur css) //*/
|
2016-04-20 20:58:19 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4[data-icon]:before {
|
2016-04-20 20:58:19 +00:00
|
|
|
content: attr(data-icon);
|
2016-04-21 08:33:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
2016-04-25 08:54:10 +00:00
|
|
|
margin-top: .9em;
|
2016-04-21 08:33:03 +00:00
|
|
|
margin-left: -41px;
|
2016-04-25 08:43:33 +00:00
|
|
|
padding: 9px;
|
2016-04-21 08:33:03 +00:00
|
|
|
border-radius: 50%;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Contour blanc*/
|
2016-04-21 08:33:03 +00:00
|
|
|
box-shadow: 0 0 0 2px #fff;
|
2016-04-25 08:43:33 +00:00
|
|
|
background-color: #738394;
|
|
|
|
font-size: .9em;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-family: 'icomoon';
|
2016-04-21 08:33:03 +00:00
|
|
|
color: #fff;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
2016-04-21 08:33:03 +00:00
|
|
|
transform: translateX(-50%) translateY(-50%);
|
2016-04-22 08:27:58 +00:00
|
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-o-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-ms-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
2016-04-21 08:33:03 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5 {
|
2016-04-21 08:33:03 +00:00
|
|
|
display: block;
|
|
|
|
padding: 20px 40px;
|
|
|
|
font-size: 1.2em;
|
2016-04-25 08:43:33 +00:00
|
|
|
color: #46505b;
|
2016-04-21 08:33:03 +00:00
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Gestion du before (compteur css) //*/
|
|
|
|
/* Texte genre text message*/
|
2016-04-21 08:33:03 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5:before {
|
2016-04-21 08:33:03 +00:00
|
|
|
content: '';
|
2016-04-20 20:58:19 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
2016-04-21 08:33:03 +00:00
|
|
|
margin-top: .7em;
|
|
|
|
margin-left: -41px;
|
|
|
|
padding: 7px;
|
|
|
|
border-radius: 50%;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Contour blanc*/
|
2016-04-21 08:33:03 +00:00
|
|
|
box-shadow: 0 0 0 2px #fff;
|
2016-04-25 08:43:33 +00:00
|
|
|
background-color: #738394;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
2016-04-21 08:33:03 +00:00
|
|
|
transform: translateX(-50%) translateY(-50%);
|
2016-04-22 08:27:58 +00:00
|
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-o-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-ms-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
2016-04-21 08:33:03 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5[data-text]:after {
|
2016-04-21 08:33:03 +00:00
|
|
|
content: attr(data-text);
|
|
|
|
padding: 6px 10px;
|
|
|
|
border-radius: 3px;
|
2016-04-25 08:43:33 +00:00
|
|
|
background: #738394;
|
2016-04-21 08:33:03 +00:00
|
|
|
color: #fff;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] [data-tag] {
|
|
|
|
display: block;
|
|
|
|
padding: 40px 60px;
|
2016-04-20 20:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] [data-tag]:before {
|
|
|
|
content: attr(data-tag);
|
|
|
|
display: inline-block;
|
2016-04-21 08:33:03 +00:00
|
|
|
position: absolute;
|
|
|
|
margin-top: .5em;
|
|
|
|
margin-left: -41px;
|
|
|
|
padding: 2px;
|
2016-04-20 20:58:19 +00:00
|
|
|
background-color: #fff;
|
2016-04-21 08:33:03 +00:00
|
|
|
font-size: 1.2em;
|
2016-04-25 08:43:33 +00:00
|
|
|
color: #738394;
|
2016-04-21 08:33:03 +00:00
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
2016-04-21 08:33:03 +00:00
|
|
|
transform: translateX(-50%) translateY(-50%);
|
2016-04-22 08:27:58 +00:00
|
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-o-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-ms-transform: translateX(-50%) translateY(-50%);
|
|
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
2016-04-21 08:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'] {
|
|
|
|
position: relative;
|
|
|
|
opacity: 0;
|
2016-04-22 09:20:27 +00:00
|
|
|
z-index: 8;
|
2016-04-21 08:33:03 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'] + span.file-input {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-left: -290px;
|
|
|
|
width: calc( 290px - 2*15px);
|
|
|
|
height: 30px;
|
|
|
|
padding: 0 15px;
|
|
|
|
border-radius: 3px;
|
2016-04-25 08:51:43 +00:00
|
|
|
background: #e64e3e;
|
|
|
|
color: #222;
|
2016-04-21 08:33:03 +00:00
|
|
|
line-height: 30px;
|
|
|
|
font-weight: normal;
|
|
|
|
z-index: 9;
|
|
|
|
cursor: pointer;
|
2016-04-22 09:20:27 +00:00
|
|
|
pointer-events: none;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Icone d'upload*/
|
|
|
|
-webkit-transition: background 0.1s ease-in-out;
|
|
|
|
transition: background 0.1s ease-in-out;
|
2016-04-21 08:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'] + span.file-input:before {
|
2016-04-21 09:26:21 +00:00
|
|
|
content: 'e ';
|
2016-04-21 08:33:03 +00:00
|
|
|
font-size: 1em;
|
|
|
|
font-family: 'icomoon';
|
2016-04-25 08:51:43 +00:00
|
|
|
color: #222;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2016-04-21 14:41:11 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file']:hover + span.file-input {
|
2016-04-25 08:51:43 +00:00
|
|
|
background: #d52d1c;
|
2016-04-21 14:41:11 +00:00
|
|
|
box-shadow: inset 0 0 5px #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'].active + span.file-input {
|
2016-04-25 08:43:33 +00:00
|
|
|
background: #738394;
|
2016-04-21 14:41:11 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'].active + span.file-input:before {
|
|
|
|
content: 'v ';
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2016-04-22 08:27:58 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='text'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='password'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='number'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='button'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='submit'],
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='mail'] {
|
2016-04-21 09:26:21 +00:00
|
|
|
display: inline;
|
|
|
|
width: auto;
|
|
|
|
margin: unset;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-right: 15px;
|
|
|
|
border-radius: 0;
|
2016-04-22 09:48:25 +00:00
|
|
|
border: 0;
|
|
|
|
border-bottom: 1px solid #555;
|
2016-04-21 09:26:21 +00:00
|
|
|
font-size: .8em;
|
|
|
|
font-weight: normal;
|
2016-04-22 09:20:27 +00:00
|
|
|
color: #333;
|
2016-04-22 12:44:23 +00:00
|
|
|
-webkit-transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
|
|
|
|
transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* Animation de @focus*/
|
2016-04-21 14:41:11 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 08:27:58 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='text']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='password']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='number']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='button']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='submit']:focus,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='mail']:focus {
|
2016-04-25 08:51:43 +00:00
|
|
|
border-color: #10baa3;
|
2016-04-22 12:44:23 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 09:20:27 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] label {
|
2016-04-22 09:48:25 +00:00
|
|
|
color: #555;
|
2016-04-22 09:20:27 +00:00
|
|
|
}
|
|
|
|
|
2016-04-21 09:26:21 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] [data-space] {
|
2016-04-22 09:48:25 +00:00
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
2016-04-21 09:26:21 +00:00
|
|
|
}
|
|
|
|
|
2016-04-21 14:41:11 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] article {
|
|
|
|
all: unset !important;
|
|
|
|
}
|
|
|
|
|
2016-04-22 08:27:58 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .spacetop, #WRAPPER > #CONTAINER section[data-timeline] .spaced {
|
2016-04-22 09:48:25 +00:00
|
|
|
margin-top: 20px !important;
|
2016-04-22 08:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .spacebtm, #WRAPPER > #CONTAINER section[data-timeline] .spaced {
|
|
|
|
margin-bottom: 20px !important;
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .nobold,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .nobold * {
|
2016-04-22 08:27:58 +00:00
|
|
|
font-weight: normal !important;
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:20:27 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] select {
|
|
|
|
width: auto;
|
|
|
|
display: inline-block;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
text-indent: 1px;
|
|
|
|
text-overflow: '';
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
|
|
|
|
2016-04-25 10:00:48 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] select option:not(:disabled) {
|
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] select option:disabled:not(:first-child) {
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] select option.pad {
|
|
|
|
padding-left: 2.5em;
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:20:27 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .select-container select {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 2px;
|
2016-04-22 09:48:25 +00:00
|
|
|
padding-right: 30px;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #333;
|
|
|
|
background: #fff url("/f/svg/bottom_arrow/st/container/333333") right 10px center no-repeat;
|
2016-04-22 09:20:27 +00:00
|
|
|
background-size: 10px auto;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .select-container select:focus {
|
2016-04-25 08:51:43 +00:00
|
|
|
border-color: #10baa3;
|
|
|
|
background-image: url("/f/svg/bottom_arrow/st/container/10baa3");
|
2016-04-25 08:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color0,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color0,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color0 {
|
|
|
|
color: #399ced;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color0:before, #WRAPPER > #CONTAINER section[data-timeline] h5.color0:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color0:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color0:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color0:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color0:after {
|
|
|
|
background-color: #399ced;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color1,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color1,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color1 {
|
|
|
|
color: #e64e3e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color1:before, #WRAPPER > #CONTAINER section[data-timeline] h5.color1:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color1:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color1:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color1:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color1:after {
|
|
|
|
background-color: #e64e3e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color2,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color2,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color2 {
|
|
|
|
color: #10baa3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color2:before, #WRAPPER > #CONTAINER section[data-timeline] h5.color2:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color2:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color2:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color2:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color2:after {
|
|
|
|
background-color: #10baa3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color3,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color3,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color3 {
|
|
|
|
color: #b14be7;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color3:before, #WRAPPER > #CONTAINER section[data-timeline] h5.color3:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color3:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color3:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color3:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color3:after {
|
|
|
|
background-color: #b14be7;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color4,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color4,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color4 {
|
|
|
|
color: #053b5d;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h5.color4:before, #WRAPPER > #CONTAINER section[data-timeline] h5.color4:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color4:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h4.color4:after,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color4:before,
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] h3.color4:after {
|
|
|
|
background-color: #053b5d;
|
2016-04-22 09:48:25 +00:00
|
|
|
}
|
|
|
|
|
2016-04-26 09:30:02 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .arrow-container span {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
padding: .5em .8em;
|
|
|
|
border: 1px solid #b7c6d7;
|
|
|
|
color: #7692b2;
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-transition: 0.2s ease-in-out;
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .arrow-container span:first-child {
|
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .arrow-container span:last-child {
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] .arrow-container span:hover, #WRAPPER > #CONTAINER section[data-timeline] .arrow-container span.active:not(:first-child):not(:last-child) {
|
|
|
|
border-color: #10baa3;
|
|
|
|
background: #10baa3;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiZXhwYW5kZWQuY3NzIiwKCSJzb3VyY2VzIjogWwoJCSIuLi9nbG9iYWwuc2NzcyIsCgkJIi4uL2NvbnN0YW50cy5zY3NzIiwKCQkiLi4vcGFuZWwtbGlzdC5zY3NzIiwKCQkiLi4vdGltZWxpbmUtZm9ybS5zY3NzIgoJXSwKCSJzb3VyY2VzQ29udGVudCI6IFsKCQkiQGltcG9ydCAnY29uc3RhbnRzJztcblxuLyogWzFdIFBhbmVsIGxpc3QgKHRva2VucywgdXRpbGlzYXRldXJzLCBldGMpXG49PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0qL1xuQGltcG9ydCAncGFuZWwtbGlzdCc7XG5cbi8qIFsyXSBGb3JtdWxhaXJlIGRlIHR5cGUgJ3RpbWVsaW5lJ1xuPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ki9cbkBpbXBvcnQgJ3RpbWVsaW5lLWZvcm0nO1xuIiwKCQkiLyogWzFdIENPVUxFVVJTXG49PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0qL1xuLyogKDEpIENPVUxFVVJTIERVIFRIRU1FICRERUZBVUxUICovXG4kdGhlbWUtYmc6ICAgICAgICAgI2U4ZThlODtcbiR0aGVtZS1iZy1wcmltYXJ5OiAjZmZmZmZmO1xuJHRoZW1lLWZnOiAgICAgICAgICM1MTUxNTE7XG4kdGhlbWUtZmctcHJpbWFyeTogIzM5OWNlZDtcblxuLyogKDIpIENPVUxFVVJTIERFIFRIRU1FICREQVJLICovXG4kZGFyay1iZzogICAgICAgICAjMzEzNTQxO1xuJGRhcmstYmctcHJpbWFyeTogIzI5MjgyZTtcbiRkYXJrLWZnOiAgICAgICAgICM5MzkzOTM7XG4kZGFyay1mZy1wcmltYXJ5OiAjZmZmZmZmO1xuXG4kaGVhZGVyLWRhcms6ICAgICAjMzMzMzMzO1xuXG4vKiAoMykgQ291bGV1cnMgZHUgdGhlbWUgcG91ciBsYSB0aW1lbGluZSAqL1xuJHRpbWVsaW5lLWNvbG9yOiAjNzM4Mzk0O1xuJHRpbWVsaW5lLTA6ICMzOTljZWQ7XG4kdGltZWxpbmUtMTogI2U2NGUzZTtcbiR0aW1lbGluZS0yOiAjMTBiYWEzO1xuJHRpbWVsaW5lLTM6ICNiMTRiZTc7XG4kdGltZWxpbmUtNDogIzA1M2I1ZDtcblxuXG4vKiBbMl0gRElNRU5TSU9OU1xuPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ki9cbi8qICgxKSBMYXlvdXQgZGUgYmFzZSAqL1xuJG1lbnUtc2lkZS13aWR0aDogMTVlbTtcbiRoZWFkZXItaGVpZ2h0OiAgIDRlbTtcblxuXG5cbi8qIFszXSBNaXhpbnNcbj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PSovXG5AbWl4aW4gdHJhbnNmb3JtKCR2YWx1ZS4uLikge1xuICAgIHRyYW5zZm9ybTogJHZhbHVlO1xuXHQtbW96LXRyYW5zZm9ybTogJHZhbHVlO1xuXHQtby10cmFuc2Zvcm06ICR2YWx1ZTtcblx0LW1zLXRyYW5zZm9ybTogJHZhbHVlO1xuXHQtd2Via2l0LXRyYW5zZm9ybTogJHZhbHVlO1xufVxuXG5cbkBtaXhpbiB0cmFuc2l0aW9uKCR2YWx1ZS4uLikge1xuICAgIC13ZWJraXQtdHJhbnNpdGlvbjogJHZhbHVlO1xuICAgIHRyYW5zaXRpb246ICR2YWx1ZTtcbn1cblxuLyogWzRdIEZ1bmN0aW9uc1xuPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ki9cbi8vIFRyYW5zZm9ybWUgdW5lIGNvdWxldXIgaGV4IGVuIHN0cmluZyBzYW5zIGxlICNcbkBmdW5jdGlvbiBjb2xvci1zdHIoJGNvbG9yKXtcbiAgICBAcmV0dXJuIHN0ci1zbGljZSgjeyRjb2xvcn0sIDIsIHN0ci1sZW5ndGgoI3skY29sb3J9KSk7XG59XG4iLAoJCSJAaW1wb3J0ICdjb25zdGFudHMnO1xuXG4vKiBbMV0gUGFubmVhdSBkJ2Fqb3V0L3N1cHByZXNzaW9uIGQnZWxlbWVudHNcbj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PSovXG4jV1JBUFBFUiA+ICNDT05UQUlORVIgc2VjdGlvbltkYXRhLXBhbmVsLWxpc3Rde1xuXHRkaXNwbGF5OiBibG9jaztcblx0cG9zaXRpb246IHJlbGF0aXZlO1xuXG5cdGJvcmRlci1yYWRpdXM6IDNweDtcblx0Ym9yZGVyOiAxcHggc29saWQgI2NjYztcblxuXHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXG5cdGZvbnQtc2l6ZTogLjllbTtcblx0Y29sb3I6ICMwMDA7XG5cblxuXHQvKiAoMSkgSGVhZGVyICh0aXRyZSArIGFqb3V0KSAqL1xuXHQmID4gZGl2W2RhdGEtaGVhZGVyXXtcblx0XHRkaXNwbGF5OiBmbGV4O1xuXHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuXHRcdC8vIGZsZXggcHJvcGVydGllc1xuXHRcdGZsZXgtZGlyZWN0aW9uOiByb3c7XG5cdFx0ZmxleC13cmFwOiBub3dyYXA7XG5cdFx0anVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xuXHRcdGFsaWduLWl0ZW1zOiBjZW50ZXI7XG5cblx0XHRwYWRkaW5nOiAuNWVtIC43ZW07XG5cblx0XHRib3JkZXItcmFkaXVzOiAzcHggM3B4IDAgMDtcblx0XHRib3JkZXItYm90dG9tOiAxcHggc29saWQgI2NjYztcblxuXHRcdGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG5cdFx0Ym94LXNoYWRvdzogaW5zZXQgMCAwIDVweCAjZWVlO1xuXG5cdFx0Ly8gTGliZWxsZSBkdSBwYW5lbFxuXHRcdCYgPiBzcGFuLFxuXHRcdCYgPiBidXR0b257XG5cdFx0XHRjb2xvcjogIzMzMztcblx0XHRcdGZvbnQtd2VpZ2h0OiBib2xkO1xuXHRcdFx0bGluZS1oZWlnaHQ6IDJlbTtcblx0XHR9XG5cblx0XHQvLyBCb3V0b24gYWpvdXRlclxuXHRcdCYgPiBidXR0b257XG5cdFx0XHRwYWRkaW5nOiAuMWVtIC43ZW07XG5cblx0XHRcdGJvcmRlci1yYWRpdXM6IDNweDtcblx0XHRcdGJvcmRlcjogMXB4IHNvbGlkICM3Nzc7XG5cblx0XHRcdGJhY2tncm91bmQ6ICNlY2YwZjE7XG5cblx0XHRcdEBpbmNsdWRlIHRyYW5zaXRpb24oIGFsbCAuMXMgZWFzZS1pbi1vdXQgKTtcblxuXHRcdFx0Y29sb3I6ICM3Nzc7XG5cblx0XHRcdC8vIEFuaW1hdGlvbiBkZSBAaG92ZXJcblx0XHRcdCY6aG92ZXJ7XG5cdFx0XHRcdGJhY2tncm91bmQ6ICR0aGVtZS1mZy1wcmltYXJ5O1xuXHRcdFx0XHRib3JkZ
|