From 0e9a7c540e1c1d0a70545b3c2a4974ba902737db Mon Sep 17 00:00:00 2001 From: zylfu <51331158+zylfu@users.noreply.github.com> Date: Fri, 10 Sep 2021 09:22:10 +0200 Subject: [PATCH] Add files via upload --- css/normalize.css | 427 +++++++++++++++++++++++++++++++++++++++++++++ css/skeleton.css | 411 +++++++++++++++++++++++++++++++++++++++++++ css/style.css | 44 +++++ images/bullet.png | Bin 0 -> 1241 bytes images/favicon.ico | Bin 0 -> 38078 bytes images/favicon.png | Bin 0 -> 5274 bytes index.html | 139 +++++++++++++++ 7 files changed, 1021 insertions(+) create mode 100644 css/normalize.css create mode 100644 css/skeleton.css create mode 100644 css/style.css create mode 100644 images/bullet.png create mode 100644 images/favicon.ico create mode 100644 images/favicon.png create mode 100644 index.html diff --git a/css/normalize.css b/css/normalize.css new file mode 100644 index 0000000..81c6f31 --- /dev/null +++ b/css/normalize.css @@ -0,0 +1,427 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} \ No newline at end of file diff --git a/css/skeleton.css b/css/skeleton.css new file mode 100644 index 0000000..893edac --- /dev/null +++ b/css/skeleton.css @@ -0,0 +1,411 @@ + + + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– +- Grid +- Base Styles +- Typography +- Links +- Buttons +- Forms +- Lists +- Code +- Tables +- Spacing +- Utilities +- Clearing +- Media Queries +*/ + + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + max-width: 960px; + margin: 0 auto; + padding: 0 20px; + box-sizing: border-box; } +.column, +.columns { + width: 100%; + float: left; + box-sizing: border-box; } + +/* For devices larger than 400px */ +@media (min-width: 400px) { + .container { + width: 85%; + padding: 0; } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container { + width: 80%; } + .column, + .columns { + margin-left: 4%; } + .column:first-child, + .columns:first-child { + margin-left: 0; } + + .one.column, + .one.columns { width: 4.66666666667%; } + .two.columns { width: 13.3333333333%; } + .three.columns { width: 22%; } + .four.columns { width: 30.6666666667%; } + .five.columns { width: 39.3333333333%; } + .six.columns { width: 48%; } + .seven.columns { width: 56.6666666667%; } + .eight.columns { width: 65.3333333333%; } + .nine.columns { width: 74.0%; } + .ten.columns { width: 82.6666666667%; } + .eleven.columns { width: 91.3333333333%; } + .twelve.columns { width: 100%; margin-left: 0; } + + .one-third.column { width: 30.6666666667%; } + .two-thirds.column { width: 65.3333333333%; } + + .one-half.column { width: 48%; } + + /* Offsets */ + .offset-by-one.column, + .offset-by-one.columns { margin-left: 8.66666666667%; } + .offset-by-two.column, + .offset-by-two.columns { margin-left: 17.3333333333%; } + .offset-by-three.column, + .offset-by-three.columns { margin-left: 26%; } + .offset-by-four.column, + .offset-by-four.columns { margin-left: 34.6666666667%; } + .offset-by-five.column, + .offset-by-five.columns { margin-left: 43.3333333333%; } + .offset-by-six.column, + .offset-by-six.columns { margin-left: 52%; } + .offset-by-seven.column, + .offset-by-seven.columns { margin-left: 60.6666666667%; } + .offset-by-eight.column, + .offset-by-eight.columns { margin-left: 69.3333333333%; } + .offset-by-nine.column, + .offset-by-nine.columns { margin-left: 78.0%; } + .offset-by-ten.column, + .offset-by-ten.columns { margin-left: 86.6666666667%; } + .offset-by-eleven.column, + .offset-by-eleven.columns { margin-left: 95.3333333333%; } + + .offset-by-one-third.column, + .offset-by-one-third.columns { margin-left: 34.6666666667%; } + .offset-by-two-thirds.column, + .offset-by-two-thirds.columns { margin-left: 69.3333333333%; } + + .offset-by-one-half.column, + .offset-by-one-half.columns { margin-left: 52%; } + +} + + +/* Base Styles +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* NOTE +html is set to 62.5% so that all the REM measurements throughout Skeleton +are based on 10px sizing. So basically 1.5rem = 15px :) */ +html { + font-size: 62.5%; } +body { + font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */ + line-height: 1.6; + font-weight: 400; + font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; + color: #222; } + + +/* Typography +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 2rem; + font-weight: 300; } +h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;} +h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; } +h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; } +h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; } +h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; } +h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; } + +/* Larger than phablet */ +@media (min-width: 550px) { + h1 { font-size: 5.0rem; } + h2 { font-size: 4.2rem; } + h3 { font-size: 3.6rem; } + h4 { font-size: 3.0rem; } + h5 { font-size: 2.4rem; } + h6 { font-size: 1.5rem; } +} + +p { + margin-top: 0; } + + +/* Links +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +a { + color: #ce0033; } +a:hover { + color: #aa022c; } + + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.button, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + height: 38px; + padding: 0 30px; + color: #555; + text-align: center; + font-size: 11px; + font-weight: 600; + line-height: 38px; + letter-spacing: .1rem; + text-transform: uppercase; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border-radius: 4px; + border: 1px solid #bbb; + cursor: pointer; + box-sizing: border-box; } +.button:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.button:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + color: #333; + border-color: #888; + outline: 0; } +.button.button-primary, +button.button-primary, +input[type="submit"].button-primary, +input[type="reset"].button-primary, +input[type="button"].button-primary { + color: #FFF; + background-color: #ce0033; + border-color: #ce0033; } +.button.button-primary:hover, +button.button-primary:hover, +input[type="submit"].button-primary:hover, +input[type="reset"].button-primary:hover, +input[type="button"].button-primary:hover, +.button.button-primary:focus, +button.button-primary:focus, +input[type="submit"].button-primary:focus, +input[type="reset"].button-primary:focus, +input[type="button"].button-primary:focus { + color: #FFF; + background-color: #b6012e; + border-color: #b6012e; } + + +/* Forms +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; } +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } +textarea { + min-height: 65px; + padding-top: 6px; + padding-bottom: 6px; } +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #33C3F0; + outline: 0; } +label, +legend { + display: block; + margin-bottom: .5rem; + font-weight: 600; } +fieldset { + padding: 0; + border-width: 0; } +input[type="checkbox"], +input[type="radio"] { + display: inline; } +label > .label-body { + display: inline-block; + margin-left: .5rem; + font-weight: normal; } + + +/* Lists +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +ul { + list-style: circle inside; } +ol { + list-style: decimal inside; } +ol, ul { + padding-left: 0; + margin-top: 0; } +ul ul, +ul ol, +ol ol, +ol ul { + margin: 1.5rem 0 1.5rem 3rem; + font-size: 90%; } +li { + margin-bottom: 1rem; } + + +/* Code +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +code { + padding: .2rem .5rem; + margin: 0 .2rem; + font-size: 90%; + white-space: nowrap; + background: #F1F1F1; + border: 1px solid #E1E1E1; + border-radius: 4px; } +pre > code { + display: block; + padding: 1rem 1.5rem; + white-space: pre; } + + +/* Tables +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +th, +td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #E1E1E1; } +th:first-child, +td:first-child { + padding-left: 0; } +th:last-child, +td:last-child { + padding-right: 0; } + + +/* Spacing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +button, +.button { + margin-bottom: 1rem; } +input, +textarea, +select, +fieldset { + margin-bottom: 1.5rem; } +pre, +blockquote, +dl, +figure, +table, +p, +ul, +ol, +form { + margin-bottom: 2.5rem; } + + +/* Utilities +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.u-full-width { + width: 100%; + box-sizing: border-box; } +.u-max-full-width { + max-width: 100%; + box-sizing: border-box; } +.u-pull-right { + float: right; } +.u-pull-left { + float: left; } + + +/* Misc +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +hr { + margin-top: 3rem; + margin-bottom: 3.5rem; + border-width: 0; + border-top: 1px solid #E1E1E1; } + + +/* Clearing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Self Clearing Goodness */ +.container:after, +.row:after, +.u-cf { + content: ""; + display: table; + clear: both; } + + +/* Media Queries +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* +Note: The best way to structure the use of media queries is to create the queries +near the relevant code. For example, if you wanted to change the styles for buttons +on small devices, paste the mobile query code up in the buttons section and style it +there. +*/ + + +/* Larger than mobile */ +@media (min-width: 400px) {} + +/* Larger than phablet (also point when grid becomes active) */ +@media (min-width: 550px) {} + +/* Larger than tablet */ +@media (min-width: 750px) {} + +/* Larger than desktop */ +@media (min-width: 1000px) {} + +/* Larger than Desktop HD */ +@media (min-width: 1200px) {} diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..2fc8306 --- /dev/null +++ b/css/style.css @@ -0,0 +1,44 @@ + +.header{ + /*Barre de menu fixe en haut et le reste de la page déroulant: */ + + overflow: hidden; + background-color:#CAF5F5; + position: fixed; /* Set the navbar to fixed position */ + top: 0; /* Position the navbar at the top of the page */ + width: 100%; /* Full width */ + } +} +body{ + background-color:#E9F9F9; + padding: 50px 50px 50px 50px; + max-width: 800px; +} + + +.blocs{ + margin: auto; +} + +h4{ + text-shadow: 2px 2px 4px #000000; + +} + +h5{ + font-family: cursive; + text-shadow: black 40px; + +} + +.bloc{ +background-color: white; + margin-bottom: 50px; + box-shadow: 1px 1px 1px 1px grey; + padding: 20px 40px 20px 40px; + border-radius: 20px; +} + +ol{ + list-style-image:image("bullet.png"); +} \ No newline at end of file diff --git a/images/bullet.png b/images/bullet.png new file mode 100644 index 0000000000000000000000000000000000000000..b3ec5265a1e14f790e74cae15e830e6ff3a48a2d GIT binary patch literal 1241 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngd!3HEhbh*6;QY`6?zK#qG8~eHcB(ehe3dtTp zz6=aiY77hwEes65fIz8sVAd>&u`8WOFdE zG72#;16hnf$iOJY05T28V(?;=hO>hhHK1yk7#P|!8CaldqJT6AcmOd-4}@l3z=$w$ z0TWy`{{m(>n-8SzWX}9uK#H@#BeIx*fm;}a85w5HkpP+&nHdsM65;D(m7Jfemza{D zl&V*eTL99lF>KRGth^d4b*A_61DO#%1i~?3^L!&&<3m$MGR_>jXub7B*#E}3Kj)= z)sD+XA0BLWTt0`?BN-T&qC8z3Lo`HFgS<0@14Z^u4tcGv8=~R1;b8CnbyLbNDs`*~ zz2K`ElB+A?+jEpFY?p`dA~u$b99g1{nmY;>PUz(hFPqugb+Prw%k$G_WllPoGDpSt zSjr^x;@bC5oi~;nzQ6nXo#pppwuD~AhSJ{M@4W7_x`-O#NIo3WpDaiQvo(6o9VxMCdN*h_uDz}h0kh+8FtSO-8sQ~=1a^Wk*||4 z^iDecyDMzl#uz_=Rok?F%Ug)vXkNKFIpT+1xLLQA<7JgJNA*_u&nkunZYCQRKABT- z{6J~2bH41Bq`-X-9QhV~`9J&P_6E-F{_(A4A`MLdQ>Fohd7O`H z!wXBTVz?LX(-C4VOa61=!g8yKmUa9)wYNtI8FD^68TCY4@6yF9nr3Q?G9}&^Tsd9W z<8)l;RAn`Dvcbc}iKRTnMhAl;pFCrJyFq(4`@%wJRlN^$xi)N``sn=eHaR z?3SEbA(Z-D-BW8qjaWYz6W^azkRoYLFIhxe5TtQM0&5MU%OX-u=3Wn zPcK-rr_bKE$LU{yYm$2GL#xH#em>_D?0X(8uKr@1_nZSKGD9{+>YV0c4?4+n^6gUY z+wG?wPp_4Uxojyq!)Ez`x)Ao`6JJF+B^d~E}04hV^vyb6Mw<&;$U^x3xe3 literal 0 HcmV?d00001 diff --git a/images/favicon.ico b/images/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..d42b9e94fd78c133b844d4d6f465ce37aad04e0e GIT binary patch literal 38078 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 literal 0 HcmV?d00001 diff --git a/index.html b/index.html new file mode 100644 index 0000000..842e474 --- /dev/null +++ b/index.html @@ -0,0 +1,139 @@ + + + + + + + Charte de promo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

+ Promo DWWM - La Poste 2021
+ Ceci est notre charte de promo +

+
+
+ + + +
+ +
+
+

Ces règles ont été inventées pour la promotion 5 de la poste ! C'est à dire la MEILLEURE de toutes !

+
+
+ + +
+ +
+ +
+
+
Engouement collectif
+
    +
  1. La solidarité est le maître mot de la formation !
  2. +
  3. Je participe activement à la vie du groupe !
  4. +
  5. regle 3
  6. +
  7. Regle 4
  8. +
  9. regle 5
  10. +
+ +
+ +
+
Engouement individuel
+ +
    +
  1. La solidarité est le maître mot de la formation !
  2. +
  3. Je participe activement à la vie du groupe !
  4. +
  5. regle 3
  6. +
  7. Regle 4
  8. +
  9. regle 5
  10. +
+
+ + +
+
Règles divers
+ +
    +
  1. La solidarité est le maître mot de la formation !
  2. +
  3. Je participe activement à la vie du groupe !
  4. +
  5. regle 3
  6. +
  7. Regle 4
  8. +
  9. regle 5
  10. +
+
+ +
+
AUTRES
+ +
    +
  1. La solidarité est le maître mot de la formation !
  2. +
  3. Je participe activement à la vie du groupe !
  4. +
  5. regle 3
  6. +
  7. Regle 4
  8. +
  9. regle 5
  10. +
+
+ + + + +
+ Grâce à ce règlement on obtient le code suivant : +

+        var compétencesDePromo = [];
+        var humeurPromo = 'Au top'; 
+        if('règles comprises' == true && 'règles appliquées' == true) {
+          compétencesDePromo.push(new Compétence()); 
+        } else {
+          humeurPromo = 'Pas top';
+        }
+      
+
+ +
+ + + +