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] 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 */
|
2016-04-20 20:58:19 +00:00
|
|
|
/* (2) Titres de sections */
|
|
|
|
/* (3) Titres des sous-sections */
|
2016-04-21 14:41:11 +00:00
|
|
|
/* (4) Titres genre text message */
|
|
|
|
/* (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 14:41:11 +00:00
|
|
|
/* (7) Inputs de type text */
|
|
|
|
/* (8) Gestion des espacements */
|
2016-04-22 08:27:58 +00:00
|
|
|
/* (9) <article> sert uniquement à regrouper */
|
2016-04-22 09:20:27 +00:00
|
|
|
/* (10) Gestion des espacements verticaux */
|
|
|
|
/* (11) Gestion des custom <select> */ }
|
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-21 08:33:03 +00:00
|
|
|
border-left: 2px solid #399ced; }
|
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-21 14:41:11 +00:00
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
background-color: #399ced;
|
|
|
|
/* 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-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-21 14:41:11 +00:00
|
|
|
margin-top: .48em;
|
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 14:41:11 +00:00
|
|
|
box-shadow: 0 0 0 3px #fff;
|
2016-04-21 08:33:03 +00:00
|
|
|
background-color: #399ced;
|
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*/
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
-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-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-21 08:33:03 +00:00
|
|
|
color: #1068b0;
|
2016-04-22 08:27:58 +00:00
|
|
|
font-weight: bold;
|
|
|
|
/* Gestion du before (compteur css) //*/ }
|
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-21 14:41:11 +00:00
|
|
|
margin-top: .8em;
|
2016-04-21 08:33:03 +00:00
|
|
|
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;
|
|
|
|
background-color: #399ced;
|
2016-04-20 20:58:19 +00:00
|
|
|
font-size: 1em;
|
|
|
|
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*/
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
-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-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;
|
|
|
|
color: #1068b0;
|
2016-04-22 08:27:58 +00:00
|
|
|
font-weight: bold;
|
|
|
|
/* Gestion du before (compteur css) //*/
|
|
|
|
/* Texte genre text message*/ }
|
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;
|
|
|
|
background-color: #399ced;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
-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-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;
|
|
|
|
background: #399ced;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: normal; }
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] [data-tag] {
|
|
|
|
display: block;
|
|
|
|
padding: 40px 60px; }
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] [data-tag]:before {
|
|
|
|
content: attr(data-tag);
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
margin-top: .5em;
|
|
|
|
margin-left: -41px;
|
|
|
|
padding: 2px;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #399ced;
|
|
|
|
font-weight: bold;
|
2016-04-22 08:27:58 +00:00
|
|
|
/* On centre sur la ligne*/
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
-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 14:41:11 +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 14:41:11 +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;
|
|
|
|
background: #ddd;
|
|
|
|
color: #333;
|
|
|
|
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 14:41:11 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'] + span.file-input:before {
|
|
|
|
content: 'e ';
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: 'icomoon';
|
|
|
|
color: #333;
|
|
|
|
font-weight: bold; }
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file']:hover + span.file-input {
|
|
|
|
background: #bbb;
|
|
|
|
box-shadow: inset 0 0 5px #888; }
|
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='file'].active + span.file-input {
|
|
|
|
background: #399ced;
|
|
|
|
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 14:41:11 +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 14:41:11 +00:00
|
|
|
font-size: .8em;
|
|
|
|
font-weight: normal;
|
2016-04-22 09:20:27 +00:00
|
|
|
color: #333;
|
2016-04-22 08:27:58 +00:00
|
|
|
-webkit-transition: border 0.2s ease-in-out;
|
|
|
|
transition: border 0.2s ease-in-out;
|
|
|
|
/* Animation de @focus*/ }
|
|
|
|
#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-21 14:41:11 +00:00
|
|
|
border-color: #399ced; }
|
2016-04-22 09:20:27 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] label {
|
|
|
|
color: #555; }
|
2016-04-21 14:41:11 +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 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; }
|
|
|
|
#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 {
|
|
|
|
border-color: #399ced;
|
|
|
|
background-image: url("/f/svg/bottom_arrow/st/container/399ced"); }
|
2016-04-20 14:57:59 +00:00
|
|
|
|
2016-04-22 09:48:25 +00:00
|
|
|
/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAibmVzdGVkLmNzcyIsCgkic291cmNlcyI6IFsKCQkiLi4vdGltZWxpbmUtZm9ybS5zY3NzIiwKCQkiLi4vY29uc3RhbnRzLnNjc3MiCgldLAoJInNvdXJjZXNDb250ZW50IjogWwoJCSJAaW1wb3J0ICdjb25zdGFudHMnO1xuXG4vKiBbMV0gRm9ybXVsYWlyZSBkZSB0eXBlIHRpbWVsaW5lXG49PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0qL1xuI1dSQVBQRVIgPiAjQ09OVEFJTkVSIHNlY3Rpb25bZGF0YS10aW1lbGluZV17XG5cdGRpc3BsYXk6IGJsb2NrO1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cblx0YmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcblxuXHRmb250LXNpemU6IC45ZW07XG5cdGNvbG9yOiAjMDAwO1xuXG5cdC8qICgxKSBPbiBham91dGUgbGUgbGlzZXLDqSDDoCBkcm9pdGUgcG91ciBUT1VTIGxlcyDDqWzDqW1lbnRzICovXG5cdCYgaDUsXG5cdCYgaDQsXG5cdCYgaDMsXG5cdCYgKi5saW5le1xuXHRcdGRpc3BsYXk6IGJsb2NrO1xuXG5cdFx0Y29sb3I6ICMzMzM7XG5cblx0XHRtYXJnaW46IDAgNDBweDtcblx0XHRwYWRkaW5nOiA1cHggNjBweDtcblxuICAgICAgICBib3JkZXItbGVmdDogMnB4IHNvbGlkICR0aW1lbGluZS1jb2xvcjtcblxuXHR9XG5cblxuXHQvKiAoMikgVGl0cmVzIGRlIHNlY3Rpb25zICovXG5cdCYgaDN7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cdFx0cGFkZGluZzogMjBweCA0MHB4O1xuXG5cdFx0Zm9udC1zaXplOiAxLjRlbTtcblx0XHRjb2xvcjogI2ZmZjtcblx0XHRmb250LXdlaWdodDogYm9sZDtcblxuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkdGltZWxpbmUtY29sb3I7XG5cblx0XHQvKiBUT0RPOiBUcmFuc2Zvcm1lciBsZXMgYmFja2dyb3VuZCBlbiA6OmJlZm9yZSBwb3VyIHF1ZSBjYSBzb2l0IGp1c3RlIHVuIGNlcmNsZSBhdmVjIGJnIGV0IGJvcmRlciovXG5cdFx0LyogRklYTUU6IENvcnJpZ2VyIGxlIGxpc2Vyw6kgcG91ciBsZXMgYXV0cmVzIG5hdmlnYXRldXJzIHF1ZSBGRiovXG5cblx0XHQvKiBHZXN0aW9uIGR1IGJlZm9yZSAoY29tcHRldXIgY3NzKSAvLyovXG5cdFx0JltkYXRhLW5dOmJlZm9yZXtcbiAgICAgICAgICAgIGNvbnRlbnQ6IGF0dHIoZGF0YS1uKTtcblxuICAgICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgbWFyZ2luLXRvcDogLjQ4ZW07XG4gICAgICAgICAgICBtYXJnaW4tbGVmdDogLTQxcHg7XG4gICAgICAgICAgICBwYWRkaW5nOiAzcHggMTJweDtcblxuICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICAgICAgLyogQ29udG91ciBibGFuYyovXG4gICAgICAgICAgICBib3gtc2hhZG93OiAwIDAgMCAzcHggI2ZmZjtcblxuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogJHRpbWVsaW5lLWNvbG9yO1xuXG5cdFx0XHRmb250LXNpemU6IDEuM2VtO1xuXHRcdFx0Y29sb3I6ICNmZmY7XG5cdFx0XHRmb250LXdlaWdodDogYm9sZDtcblxuICAgICAgICAgICAgLyogT24gY2VudHJlIHN1ciBsYSBsaWduZSovXG4gICAgICAgICAgICBAaW5jbHVkZSB0cmFuc2Zvcm0oIHRyYW5zbGF0ZVgoLTUwJSkgdHJhbnNsYXRlWSgtNTAlKSApO1xuXG5cdFx0fVxuXHR9XG5cblx0LyogKDMpIFRpdHJlcyBkZXMgc291cy1zZWN0aW9ucyAqL1xuXHQmIGg0e1xuXHRcdGRpc3BsYXk6IGJsb2NrO1xuXG5cdFx0cGFkZGluZzogMjBweCA0MHB4O1xuXG5cdFx0Zm9udC1zaXplOiAxLjJlbTtcblx0XHRjb2xvcjogZGFya2VuKCR0aW1lbGluZS1jb2xvciwgMjApO1xuXHRcdGZvbnQtd2VpZ2h0OiBib2xkO1xuXG5cdFx0LyogR2VzdGlvbiBkdSBiZWZvcmUgKGNvbXB0ZXVyIGNzcykgLy8qL1xuXHRcdCZbZGF0YS1pY29uXTpiZWZvcmV7XG5cdFx0XHRjb250ZW50OiBhdHRyKGRhdGEtaWNvbik7XG5cbiAgICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICAgIG1hcmdpbi10b3A6IC44ZW07XG4gICAgICAgICAgICBtYXJnaW4tbGVmdDogLTQxcHg7XG4gICAgICAgICAgICBwYWRkaW5nOiA3cHg7XG5cbiAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgICAgIC8qIENvbnRvdXIgYmxhbmMqL1xuICAgICAgICAgICAgYm94LXNoYWRvdzogMCAwIDAgMnB4ICNmZmY7XG5cbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICR0aW1lbGluZS1jb2xvcjtcblxuXHRcdFx0Zm9udC1zaXplOiAxZW07XG5cdFx0XHRmb250LWZhbWlseTogJ2ljb21vb24nO1xuXHRcdFx0Y29sb3I6ICNmZmY7XG5cdFx0XHRmb250LXdlaWdodDogYm9sZDtcblxuICAgICAgICAgICAgLyogT24gY2VudHJlIHN1ciBsYSBsaWduZSovXG4gICAgICAgICAgICBAaW5jbHVkZSB0cmFuc2Zvcm0oIHRyYW5zbGF0ZVgoLTUwJSkgdHJhbnNsYXRlWSgtNTAlKSApO1xuXHRcdH1cblx0fVxuXG5cdC8qICg0KSBUaXRyZXMgZ2VucmUgdGV4dCBtZXNzYWdlICovXG5cdCYgaDV7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cblx0XHRwYWRkaW5nOiAyMHB4IDQwcHg7XG5cblx0XHRmb250LXNpemU6IDEuMmVtO1xuXHRcdGNvbG9yOiBkYXJrZW4oJHRpbWVsaW5lLWNvbG9yLCAyMCk7XG5cdFx0Zm9udC13ZWlnaHQ6IGJvbGQ7XG5cblx0XHQvKiBHZXN0aW9uIGR1IGJlZm9yZSAoY29tcHRldXIgY3NzKSAvLyovXG5cdFx0JjpiZWZvcmV7XG5cdFx0XHRjb250ZW50OiAnJztcblxuICAgICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgbWFyZ2luLXRvcDogLjdlbTtcbiAgICAgICAgICAgIG1hcmdpbi1sZWZ0OiAtNDFweDtcbiAgICAgICAgICAgIHBhZGRpbmc6IDdweDtcblxuICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICAgICAgLyogQ29udG91ciBibGFuYyovXG4gICAgICAgICAgI
|