diff --git a/assets/images/learning_theme_web.png b/assets/images/learning_theme_web.png index c9c242661426452412f2bec21bec267c2f8fd689..5c6824af2e88943c53474b4e49caa123ebcf1d9c 100644 Binary files a/assets/images/learning_theme_web.png and b/assets/images/learning_theme_web.png differ diff --git a/fiche-inscription.pdf b/fiche-inscription.pdf new file mode 100644 index 0000000000000000000000000000000000000000..524f68ea2973f55c18e7ae24b82a787c53f769bc Binary files /dev/null and b/fiche-inscription.pdf differ diff --git a/public/education/education.js b/public/education/education.js index cc605ac8b424e4d8da9c6eed2b96201310af86a1..b1ae3c319ba42237fe5f82607fc9471c10eebc83 100644 --- a/public/education/education.js +++ b/public/education/education.js @@ -273,38 +273,48 @@ class GameStudioClub { ], }, { - tag: "ul", - class: "learning-themes", - contents: GAMEDEV_THEMES.map(li => { - return { - tag: "li", - class: "learning-theme", - contents: [ - { tag: "strong", class: "title", contents: li.title }, - { tag: "img", src: `${images_url}/${li.image}` }, - { - tag: "div", - class: "details", + tag: "div", + class: "list-wrapper", + contents: [ + { + tag: "ul", + class: "learning-themes", + contents: GAMEDEV_THEMES.map(li => { + return { + tag: "li", + class: "learning-theme", contents: [ - li.comment && { - tag: "div", - class: "comment", - contents: li.comment, + { + tag: "strong", + class: "title", + contents: li.title, }, + { tag: "img", src: `${images_url}/${li.image}` }, { - tag: "ul", - contents: li.details.map(d => { - return { - tag: "li", - contents: d, - }; - }), + tag: "div", + class: "details", + contents: [ + li.comment && { + tag: "div", + class: "comment", + contents: li.comment, + }, + { + tag: "ul", + contents: li.details.map(d => { + return { + tag: "li", + contents: d, + }; + }), + }, + ], }, ], - }, - ], - }; - }), + }; + }), + }, + ], }, { tag: "div", @@ -420,6 +430,18 @@ class GameStudioClub { }, ], }, + { + tag: "div", + contents: [ + { + tag: "a", + class: "download-link", + download: "fiche-inscription", + href: "/fiche-inscription.pdf", + contents: "Télécharger la fiche d'inscription", + }, + ], + }, ], }, ], @@ -536,39 +558,83 @@ class Popularization { ], }, { - tag: "ul", - class: "learning-themes", - contents: VULGARISATION_THEMES.map(li => { - return { - tag: "li", - class: "learning-theme " + li.class, - contents: [ - { tag: "strong", class: "title", contents: li.title }, - { tag: "img", src: `${images_url}/${li.image}` }, - { - tag: "div", - class: "details", + tag: "div", + class: "list-wrapper", + contents: [ + { + tag: "ul", + class: "learning-themes", + contents: VULGARISATION_THEMES.map(li => { + return { + tag: "li", + class: "learning-theme " + li.class, contents: [ { - tag: "div", - class: "comment", - contents: li.comment, + tag: "strong", + class: "title", + contents: li.title, }, + { tag: "img", src: `${images_url}/${li.image}` }, { - tag: "ul", - contents: li.details.map(d => { - return { - tag: "li", - contents: d, - }; - }), + tag: "div", + class: "details", + contents: [ + { + tag: "div", + class: "comment", + contents: li.comment, + }, + { + tag: "ul", + contents: li.details.map(d => { + return { + tag: "li", + contents: d, + }; + }), + }, + ], }, ], - }, - ], - }; - }), + }; + }), + }, + ], }, + // { + // tag: "ul", + // class: "learning-themes", + // contents: VULGARISATION_THEMES.map(li => { + // return { + // tag: "li", + // class: "learning-theme " + li.class, + // contents: [ + // { tag: "strong", class: "title", contents: li.title }, + // { tag: "img", src: `${images_url}/${li.image}` }, + // { + // tag: "div", + // class: "details", + // contents: [ + // { + // tag: "div", + // class: "comment", + // contents: li.comment, + // }, + // { + // tag: "ul", + // contents: li.details.map(d => { + // return { + // tag: "li", + // contents: d, + // }; + // }), + // }, + // ], + // }, + // ], + // }; + // }), + // }, ], }, ], diff --git a/src/pages/education/components/game-studio-club.js b/src/pages/education/components/game-studio-club.js index 039dc787099a2dc0c71faa17493fada6995072a9..a7bdda3c97e019715636062f6a009eeb554945d0 100644 --- a/src/pages/education/components/game-studio-club.js +++ b/src/pages/education/components/game-studio-club.js @@ -164,38 +164,48 @@ class GameStudioClub { ], }, { - tag: "ul", - class: "learning-themes", - contents: GAMEDEV_THEMES.map(li => { - return { - tag: "li", - class: "learning-theme", - contents: [ - { tag: "strong", class: "title", contents: li.title }, - { tag: "img", src: `${images_url}/${li.image}` }, - { - tag: "div", - class: "details", + tag: "div", + class: "list-wrapper", + contents: [ + { + tag: "ul", + class: "learning-themes", + contents: GAMEDEV_THEMES.map(li => { + return { + tag: "li", + class: "learning-theme", contents: [ - li.comment && { - tag: "div", - class: "comment", - contents: li.comment, + { + tag: "strong", + class: "title", + contents: li.title, }, + { tag: "img", src: `${images_url}/${li.image}` }, { - tag: "ul", - contents: li.details.map(d => { - return { - tag: "li", - contents: d, - }; - }), + tag: "div", + class: "details", + contents: [ + li.comment && { + tag: "div", + class: "comment", + contents: li.comment, + }, + { + tag: "ul", + contents: li.details.map(d => { + return { + tag: "li", + contents: d, + }; + }), + }, + ], }, ], - }, - ], - }; - }), + }; + }), + }, + ], }, { tag: "div", @@ -311,6 +321,18 @@ class GameStudioClub { }, ], }, + { + tag: "div", + contents: [ + { + tag: "a", + class: "download-link", + download: "fiche-inscription", + href: "/fiche-inscription.pdf", + contents: "Télécharger la fiche d'inscription", + }, + ], + }, ], }, ], diff --git a/src/pages/education/components/popularization.js b/src/pages/education/components/popularization.js index 2ab8b4eb899b29b0f7386dc1e975427b633c40ee..246a72fd0560dfa709d3707f540d790735426f74 100644 --- a/src/pages/education/components/popularization.js +++ b/src/pages/education/components/popularization.js @@ -100,39 +100,83 @@ class Popularization { ], }, { - tag: "ul", - class: "learning-themes", - contents: VULGARISATION_THEMES.map(li => { - return { - tag: "li", - class: "learning-theme " + li.class, - contents: [ - { tag: "strong", class: "title", contents: li.title }, - { tag: "img", src: `${images_url}/${li.image}` }, - { - tag: "div", - class: "details", + tag: "div", + class: "list-wrapper", + contents: [ + { + tag: "ul", + class: "learning-themes", + contents: VULGARISATION_THEMES.map(li => { + return { + tag: "li", + class: "learning-theme " + li.class, contents: [ { - tag: "div", - class: "comment", - contents: li.comment, + tag: "strong", + class: "title", + contents: li.title, }, + { tag: "img", src: `${images_url}/${li.image}` }, { - tag: "ul", - contents: li.details.map(d => { - return { - tag: "li", - contents: d, - }; - }), + tag: "div", + class: "details", + contents: [ + { + tag: "div", + class: "comment", + contents: li.comment, + }, + { + tag: "ul", + contents: li.details.map(d => { + return { + tag: "li", + contents: d, + }; + }), + }, + ], }, ], - }, - ], - }; - }), + }; + }), + }, + ], }, + // { + // tag: "ul", + // class: "learning-themes", + // contents: VULGARISATION_THEMES.map(li => { + // return { + // tag: "li", + // class: "learning-theme " + li.class, + // contents: [ + // { tag: "strong", class: "title", contents: li.title }, + // { tag: "img", src: `${images_url}/${li.image}` }, + // { + // tag: "div", + // class: "details", + // contents: [ + // { + // tag: "div", + // class: "comment", + // contents: li.comment, + // }, + // { + // tag: "ul", + // contents: li.details.map(d => { + // return { + // tag: "li", + // contents: d, + // }; + // }), + // }, + // ], + // }, + // ], + // }; + // }), + // }, ], }, ], diff --git a/src/pages/education/education.scss b/src/pages/education/education.scss index f72d5058b6c02054c6ee54c02bdd2a58251212c7..b91628e5e343797a846ff5379543884985d8007c 100644 --- a/src/pages/education/education.scss +++ b/src/pages/education/education.scss @@ -66,60 +66,71 @@ } } } - ul.learning-themes { + .list-wrapper { grid-column: 1; grid-row: 2; - display: flex; - gap: 20px 30px; - flex-wrap: wrap; - li.learning-theme { - position: relative; - border: solid $light_0; - border-width: 0 2px 2px 0; + ul.learning-themes { display: flex; - flex-direction: column; - .title { - color: $dark_2; - display: block; - position: absolute; - background-color: #fff9; - padding: 5px 25px; - } - img { - width: 100%; - height: auto; - } - .details { - background-color: #fffe; - position: absolute; - top: 25px; - left: 25px; - width: 300px; - height: auto; - max-height: 0; - visibility: hidden; - z-index: 1; - transition: max-height 0.6s; - padding: 20px; + gap: 20px 30px; + flex-wrap: wrap; + li.learning-theme { + position: relative; border: solid $light_0; - border-width: 0 1px 1px 0; - overflow: hidden; + border-width: 0 2px 2px 0; display: flex; flex-direction: column; - gap: 10px; - .comment { - font-style: italic; + .title { + color: $dark_2; + display: block; + position: absolute; + background-color: #fff9; + padding: 5px 25px; } - ul { - list-style-type: disc; - font-size: 14px; - margin-left: 10px; + img { + width: 100%; + height: auto; + image-rendering: pixelated; + image-rendering: -moz-crisp-edges; + image-rendering: crisp-edges; } - } - &:hover { .details { - max-height: 1000px; - visibility: visible; + background-color: #fffe; + position: absolute; + top: 25px; + left: 25px; + width: 300px; + height: auto; + max-height: 0; + visibility: hidden; + z-index: 1; + transition: max-height 0.6s; + padding: 20px; + border: solid $light_0; + border-width: 0 1px 1px 0; + overflow: hidden; + display: flex; + flex-direction: column; + gap: 10px; + .comment { + font-style: italic; + * { + color: $medium_grey; + } + } + ul { + list-style-type: disc; + font-size: 14px; + margin-left: 10px; + li { + color: $medium_grey; + } + } + } + &:hover { + .details { + max-height: 1000px; + visibility: visible; + } } } } @@ -149,39 +160,46 @@ } } } + .download-link { + border: 1px solid; + padding: 10px; + display: inline-block; + margin: 10px 0 0; + } } } } @media screen and (max-width: $screen_l) { .section-contents { - ul.learning-themes { - display: block; - li.learning-theme { - margin-bottom: 20px; - .details { - background-color: #fff9; - position: relative; - top: unset; + .list-wrapper { + ul.learning-themes { + display: block; + li.learning-theme { width: 100%; - left: unset; - max-height: unset; - visibility: visible; - padding: 10px; - box-shadow: none; - .comment { - font-style: italic; - } - ul { - list-style-type: disc; - font-size: 14px; - margin-left: 10px; - li { - color: $dark_3; + margin-bottom: 20px; + .details { + background-color: #fff9; + position: relative; + top: unset; + width: 100%; + left: unset; + max-height: unset; + visibility: visible; + padding: 10px; + box-shadow: none; + ul { + list-style-type: disc; + font-size: 14px; + margin-left: 10px; } } } } } + + .infos-inscriptions { + flex-direction: column; + } } } @@ -220,36 +238,31 @@ gap: 10px; padding: 10px; } - ul.learning-themes { - grid-column: 1; - grid-row: 2; - display: block; - li.learning-theme { - margin-bottom: 20px; - .details { - background-color: #fff9; - position: relative; - top: unset; - width: 100%; - left: unset; - max-height: unset; - visibility: visible; - padding: 10px; - box-shadow: none; - ul { - li { - color: $dark_3; - } + .list-wrapper { + ul.learning-themes { + grid-column: 1; + grid-row: 2; + display: block; + li.learning-theme { + margin-bottom: 20px; + .details { + background-color: #fff9; + position: relative; + top: unset; + width: 100%; + left: unset; + max-height: unset; + visibility: visible; + padding: 10px; + box-shadow: none; } } } } .infos-inscriptions { - display: flex; gap: 10px; padding: 10px; - flex-direction: column; .groups, .pricing { background-color: white; diff --git a/src/theme.scss b/src/theme.scss index 4df0e642dfe23f1b7daa38080d73dc90e7e46d15..5bdc291af59432c3463452a1b679b4bacb1f62cb 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -1,6 +1,7 @@ $dark_1: #35393c; $dark_2: #3c4144; $dark_3: #555d61; +$medium_grey: #6b7880; $light_0: #d4d9dd; $light_1: #96a5ae; $light_2: #aabbc8; @@ -23,6 +24,5 @@ $screen_s: 560px; $screen_xs: 480px; -// useful constants - +// constants $navbar_height: 40px; diff --git a/style/style.css b/style/style.css index d037bbed5264738191dbb77d40b5a8e5d709d6f0..53fe1f64ec7af51da9692b0e53d48a4df25d0585 100644 --- a/style/style.css +++ b/style/style.css @@ -221,32 +221,37 @@ main #page-container #education-page .section-contents .practical-infos .info-it main #page-container #education-page .section-contents .practical-infos .info-item a { font-size: 14px; } -main #page-container #education-page .section-contents ul.learning-themes { +main #page-container #education-page .section-contents .list-wrapper { grid-column: 1; grid-row: 2; +} +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes { display: flex; gap: 20px 30px; flex-wrap: wrap; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme { position: relative; border: solid #d4d9dd; border-width: 0 2px 2px 0; display: flex; flex-direction: column; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .title { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .title { color: #3c4144; display: block; position: absolute; background-color: #fff9; padding: 5px 25px; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme img { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme img { width: 100%; height: auto; + image-rendering: pixelated; + image-rendering: -moz-crisp-edges; + image-rendering: crisp-edges; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details { background-color: #fffe; position: absolute; top: 25px; @@ -265,15 +270,21 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea flex-direction: column; gap: 10px; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details .comment { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment { font-style: italic; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details ul { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment * { + color: #6b7880; +} +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul { list-style-type: disc; font-size: 14px; margin-left: 10px; } -main #page-container #education-page .section-contents ul.learning-themes li.learning-theme:hover .details { +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul li { + color: #6b7880; +} +main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme:hover .details { max-height: 1000px; visibility: visible; } @@ -304,14 +315,22 @@ main #page-container #education-page .section-contents .infos-inscriptions .pric border: 1px solid #dde; padding: 10px 20px; } +main #page-container #education-page .section-contents .infos-inscriptions .groups .download-link, +main #page-container #education-page .section-contents .infos-inscriptions .pricing .download-link { + border: 1px solid; + padding: 10px; + display: inline-block; + margin: 10px 0 0; +} @media screen and (max-width: 900px) { - main #page-container #education-page .section-contents ul.learning-themes { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes { display: block; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme { + width: 100%; margin-bottom: 20px; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details { background-color: #fff9; position: relative; top: unset; @@ -322,16 +341,13 @@ main #page-container #education-page .section-contents .infos-inscriptions .pric padding: 10px; box-shadow: none; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details .comment { - font-style: italic; - } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details ul { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul { list-style-type: disc; font-size: 14px; margin-left: 10px; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details ul li { - color: #555d61; + main #page-container #education-page .section-contents .infos-inscriptions { + flex-direction: column; } } @media screen and (max-width: 560px) { @@ -368,15 +384,15 @@ main #page-container #education-page .section-contents .infos-inscriptions .pric gap: 10px; padding: 10px; } - main #page-container #education-page .section-contents ul.learning-themes { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes { grid-column: 1; grid-row: 2; display: block; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme { margin-bottom: 20px; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details { + main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details { background-color: #fff9; position: relative; top: unset; @@ -387,14 +403,9 @@ main #page-container #education-page .section-contents .infos-inscriptions .pric padding: 10px; box-shadow: none; } - main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details ul li { - color: #555d61; - } main #page-container #education-page .section-contents .infos-inscriptions { - display: flex; gap: 10px; padding: 10px; - flex-direction: column; } main #page-container #education-page .section-contents .infos-inscriptions .groups, main #page-container #education-page .section-contents .infos-inscriptions .pricing { diff --git a/style/style.css.map b/style/style.css.map index 8b7c7d0c9bc42826cd91fc9265e978af649a646c..15c767961bd96c6edd8409599ff6d3f0895848e0 100644 --- a/style/style.css.map +++ b/style/style.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../src/style.scss","../src/theme.scss","../src/pages/education/education.scss"],"names":[],"mappings":"AAEA;EAKI;EACA;;AALA;EACI;EACA,OCLC;;ADSL;EACI;EACA;EACA;;AAEJ;EACI,OCJC;EDKD;;AACA;EACI,OCNH;;ADUL;EACI,OCZC;;;ADgBT;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA,QCXI;EDYJ;;AACA;EACI;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA;EACA;EACA,OCtDd;EDuDc;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI,OC7EnB;ED8EmB;;AAIJ;EACI,OCnFnB;;ADsFe;EACI;EACA;;AACA;EACI,OCvFtB;EDwFsB;;AAII;EACI,OChG/B;;ADwGG;EACI;;AAEJ;EAzEJ;IA0EQ;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,OCxHX;IDyHW;;EAEJ;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA,KC1GR;ID2GQ;IACA;IACA;;EAGQ;IACI;;EAGR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAQA;;EANI;IACI;IACA;IACA,OCxJ9B;;;ADmKN;EACI;EACA;EACA;EACA;;AE1KJ;EACI;EACA;;AAGA;EACI;;AAGR;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EAOA;EACA;EACA;;AARA;EACI;;AAEJ;EACI;;AAKJ;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA,kBDjDF;ECkDE;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;;AAEJ;AAAA;EAEI;;AAIZ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI,ODhFX;ECiFW;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;;AAIJ;EACI;EACA;;AAMhB;EACI;EACA;EACA,kBD/HF;ECgIE;;AACA;AAAA;EAEI;EACA;EACA;EACA;;AACA;AAAA;EACI;;AAGA;AAAA;EACI;EACA;;AACA;AAAA;EACI;EACA;;AAOxB;EAEQ;IACI;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;;EACA;IACI,ODhLvB;;;ACyLL;EACI;IACI;IACA;;EAGA;IACI;;EAGR;IACI;IACA;;EAEJ;IACI;IACA;;EACA;IACI;IACA;IACA;;EAGR;IACI;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEI;IACI,OD9OvB;;ECqPG;IACI;IACA;IACA;IACA;;EACA;AAAA;IAEI;IACA;IACA;IACA;;EAEI;AAAA;IACI;;EACA;AAAA;IACI;IACA;;;AFzF5B;EACI;EACA;EACA","file":"style.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../src/style.scss","../src/theme.scss","../src/pages/education/education.scss"],"names":[],"mappings":"AAEA;EAKI;EACA;;AALA;EACI;EACA,OCLC;;ADSL;EACI;EACA;EACA;;AAEJ;EACI,OCHC;EDID;;AACA;EACI,OCLH;;ADSL;EACI,OCXC;;;ADeT;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA,QCXI;EDYJ;;AACA;EACI;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA;EACA;EACA,OCrDd;EDsDc;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI,OC7EnB;ED8EmB;;AAIJ;EACI,OCnFnB;;ADsFe;EACI;EACA;;AACA;EACI,OCtFtB;EDuFsB;;AAII;EACI,OChG/B;;ADwGG;EACI;;AAEJ;EAzEJ;IA0EQ;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,OCxHX;IDyHW;;EAEJ;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA,KC1GR;ID2GQ;IACA;IACA;;EAGQ;IACI;;EAGR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAQA;;EANI;IACI;IACA;IACA,OCvJ9B;;;ADkKN;EACI;EACA;EACA;EACA;;AE1KJ;EACI;EACA;;AAGA;EACI;;AAGR;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EAOA;EACA;EACA;;AARA;EACI;;AAEJ;EACI;;AAKJ;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA,kBDhDF;ECiDE;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;;AAEJ;AAAA;EAEI;;AAIZ;EACI;EACA;;AACA;EACI;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI,ODjFf;ECkFe;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI,ODjHlB;;ACoHU;EACI;EACA;EACA;;AACA;EACI,ODzHlB;;AC8HU;EACI;EACA;;AAOpB;EACI;EACA;EACA,kBDzIF;EC0IE;;AACA;AAAA;EAEI;EACA;EACA;EACA;;AACA;AAAA;EACI;;AAGA;AAAA;EACI;EACA;;AACA;AAAA;EACI;EACA;;AAIZ;AAAA;EACI;EACA;EACA;EACA;;AAKhB;EAGY;IACI;;EACA;IACI;IACA;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACI;IACA;IACA;;EAOpB;IACI;;;AAKZ;EACI;IACI;IACA;;EAGA;IACI;;EAGR;IACI;IACA;;EAEJ;IACI;IACA;;EACA;IACI;IACA;IACA;;EAGR;IACI;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;IACA;;EAGA;IACI;IACA;IACA;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAMhB;IACI;IACA;;EACA;AAAA;IAEI;IACA;IACA;IACA;;EAEI;AAAA;IACI;;EACA;AAAA;IACI;IACA;;;AFtG5B;EACI;EACA;EACA","file":"style.css"} \ No newline at end of file