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 */
|
|
|
|
/* (2) Titres de sections */
|
2016-04-20 20:58:19 +00:00
|
|
|
/* (3) Titres des sous-sections */
|
2016-04-21 14:41:11 +00:00
|
|
|
/* (4) Titres genre text message */
|
2016-04-21 08:33:03 +00:00
|
|
|
/* (5) 'Tags' -> textes sur le liseré gauche */
|
2016-04-21 14:41:11 +00:00
|
|
|
/* (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 */
|
|
|
|
/* (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-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-21 08:33:03 +00:00
|
|
|
border-left: 2px solid #399ced;
|
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-21 14:41:11 +00:00
|
|
|
color: #fff;
|
2016-04-20 15:06:48 +00:00
|
|
|
font-weight: bold;
|
2016-04-21 14:41:11 +00:00
|
|
|
background-color: #399ced;
|
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-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;
|
2016-04-20 14:57:59 +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-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-21 08:33:03 +00:00
|
|
|
color: #1068b0;
|
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-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*/
|
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;
|
|
|
|
color: #1068b0;
|
|
|
|
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;
|
|
|
|
background-color: #399ced;
|
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;
|
|
|
|
background: #399ced;
|
|
|
|
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;
|
|
|
|
color: #399ced;
|
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-20 20:58:19 +00:00
|
|
|
}
|
|
|
|
|
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 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-21 14:41:11 +00:00
|
|
|
border-color: #399ced;
|
|
|
|
}
|
|
|
|
|
2016-04-22 12:44:23 +00:00
|
|
|
#WRAPPER > #CONTAINER section[data-timeline] input[type='submit'][data-store]:before {
|
|
|
|
/* Icone de sauvegarde */
|
|
|
|
content: 'y ';
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: 'icomoon';
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
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-22 12:44:23 +00:00
|
|
|
/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiZXhwYW5kZWQuY3NzIiwKCSJzb3VyY2VzIjogWwoJCSIuLi90aW1lbGluZS1mb3JtLnNjc3MiLAoJCSIuLi9jb25zdGFudHMuc2NzcyIKCV0sCgkic291cmNlc0NvbnRlbnQiOiBbCgkJIkBpbXBvcnQgJ2NvbnN0YW50cyc7XG5cbi8qIFsxXSBGb3JtdWxhaXJlIGRlIHR5cGUgdGltZWxpbmVcbj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PSovXG4jV1JBUFBFUiA+ICNDT05UQUlORVIgc2VjdGlvbltkYXRhLXRpbWVsaW5lXXtcblx0ZGlzcGxheTogYmxvY2s7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuXHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXG5cdGZvbnQtc2l6ZTogLjllbTtcblx0Y29sb3I6ICMwMDA7XG5cblx0LyogKDEpIE9uIGFqb3V0ZSBsZSBsaXNlcsOpIMOgIGRyb2l0ZSBwb3VyIFRPVVMgbGVzIMOpbMOpbWVudHMgKi9cblx0JiBoNSxcblx0JiBoNCxcblx0JiBoMyxcblx0JiAqLmxpbmV7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cblx0XHRjb2xvcjogIzMzMztcblxuXHRcdG1hcmdpbjogMCA0MHB4O1xuXHRcdHBhZGRpbmc6IDVweCA2MHB4O1xuXG4gICAgICAgIGJvcmRlci1sZWZ0OiAycHggc29saWQgJHRpbWVsaW5lLWNvbG9yO1xuXG5cdH1cblxuXG5cdC8qICgyKSBUaXRyZXMgZGUgc2VjdGlvbnMgKi9cblx0JiBoM3tcblx0XHRkaXNwbGF5OiBibG9jaztcblx0XHRwYWRkaW5nOiAyMHB4IDQwcHg7XG5cblx0XHRmb250LXNpemU6IDEuNGVtO1xuXHRcdGNvbG9yOiAjZmZmO1xuXHRcdGZvbnQtd2VpZ2h0OiBib2xkO1xuXG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6ICR0aW1lbGluZS1jb2xvcjtcblxuXHRcdC8qIFRPRE86IFRyYW5zZm9ybWVyIGxlcyBiYWNrZ3JvdW5kIGVuIDo6YmVmb3JlIHBvdXIgcXVlIGNhIHNvaXQganVzdGUgdW4gY2VyY2xlIGF2ZWMgYmcgZXQgYm9yZGVyKi9cblx0XHQvKiBGSVhNRTogQ29ycmlnZXIgbGUgbGlzZXLDqSBwb3VyIGxlcyBhdXRyZXMgbmF2aWdhdGV1cnMgcXVlIEZGKi9cblxuXHRcdC8qIEdlc3Rpb24gZHUgYmVmb3JlIChjb21wdGV1ciBjc3MpIC8vKi9cblx0XHQmW2RhdGEtbl06YmVmb3Jle1xuICAgICAgICAgICAgY29udGVudDogYXR0cihkYXRhLW4pO1xuXG4gICAgICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgICBtYXJnaW4tdG9wOiAuNDhlbTtcbiAgICAgICAgICAgIG1hcmdpbi1sZWZ0OiAtNDFweDtcbiAgICAgICAgICAgIHBhZGRpbmc6IDNweCAxMnB4O1xuXG4gICAgICAgICAgICBib3JkZXItcmFkaXVzOiA1MCU7XG4gICAgICAgICAgICAvKiBDb250b3VyIGJsYW5jKi9cbiAgICAgICAgICAgIGJveC1zaGFkb3c6IDAgMCAwIDNweCAjZmZmO1xuXG4gICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkdGltZWxpbmUtY29sb3I7XG5cblx0XHRcdGZvbnQtc2l6ZTogMS4zZW07XG5cdFx0XHRjb2xvcjogI2ZmZjtcblx0XHRcdGZvbnQtd2VpZ2h0OiBib2xkO1xuXG4gICAgICAgICAgICAvKiBPbiBjZW50cmUgc3VyIGxhIGxpZ25lKi9cbiAgICAgICAgICAgIEBpbmNsdWRlIHRyYW5zZm9ybSggdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpICk7XG5cblx0XHR9XG5cdH1cblxuXHQvKiAoMykgVGl0cmVzIGRlcyBzb3VzLXNlY3Rpb25zICovXG5cdCYgaDR7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cblx0XHRwYWRkaW5nOiAyMHB4IDQwcHg7XG5cblx0XHRmb250LXNpemU6IDEuMmVtO1xuXHRcdGNvbG9yOiBkYXJrZW4oJHRpbWVsaW5lLWNvbG9yLCAyMCk7XG5cdFx0Zm9udC13ZWlnaHQ6IGJvbGQ7XG5cblx0XHQvKiBHZXN0aW9uIGR1IGJlZm9yZSAoY29tcHRldXIgY3NzKSAvLyovXG5cdFx0JltkYXRhLWljb25dOmJlZm9yZXtcblx0XHRcdGNvbnRlbnQ6IGF0dHIoZGF0YS1pY29uKTtcblxuICAgICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgbWFyZ2luLXRvcDogLjhlbTtcbiAgICAgICAgICAgIG1hcmdpbi1sZWZ0OiAtNDFweDtcbiAgICAgICAgICAgIHBhZGRpbmc6IDdweDtcblxuICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICAgICAgLyogQ29udG91ciBibGFuYyovXG4gICAgICAgICAgICBib3gtc2hhZG93OiAwIDAgMCAycHggI2ZmZjtcblxuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogJHRpbWVsaW5lLWNvbG9yO1xuXG5cdFx0XHRmb250LXNpemU6IDFlbTtcblx0XHRcdGZvbnQtZmFtaWx5OiAnaWNvbW9vbic7XG5cdFx0XHRjb2xvcjogI2ZmZjtcblx0XHRcdGZvbnQtd2VpZ2h0OiBib2xkO1xuXG4gICAgICAgICAgICAvKiBPbiBjZW50cmUgc3VyIGxhIGxpZ25lKi9cbiAgICAgICAgICAgIEBpbmNsdWRlIHRyYW5zZm9ybSggdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpICk7XG5cdFx0fVxuXHR9XG5cblx0LyogKDQpIFRpdHJlcyBnZW5yZSB0ZXh0IG1lc3NhZ2UgKi9cblx0JiBoNXtcblx0XHRkaXNwbGF5OiBibG9jaztcblxuXHRcdHBhZGRpbmc6IDIwcHggNDBweDtcblxuXHRcdGZvbnQtc2l6ZTogMS4yZW07XG5cdFx0Y29sb3I6IGRhcmtlbigkdGltZWxpbmUtY29sb3IsIDIwKTtcblx0XHRmb250LXdlaWdodDogYm9sZDtcblxuXHRcdC8qIEdlc3Rpb24gZHUgYmVmb3JlIChjb21wdGV1ciBjc3MpIC8vKi9cblx0XHQmOmJlZm9yZXtcblx0XHRcdGNvbnRlbnQ6ICcnO1xuXG4gICAgICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgICBtYXJnaW4tdG9wOiAuN2VtO1xuICAgICAgICAgICAgbWFyZ2luLWxlZnQ6IC00MXB4O1xuICAgICAgICAgICAgcGFkZGluZzogN3B4O1xuXG4gICAgICAgICAgICBib3JkZXItcmFkaXVzOiA1MCU7XG4gICAgICAgICAgICAvKiBDb250b3VyIGJsYW5jKi9cbiAgICAgICAgI
|