diff --git a/_variables.scss b/_variables.scss new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html index 3f56d16..9bb2cb1 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,68 @@ - - - - - Document - - -

Hello

- - + + + + + + + + + + Default page + + +
+ +
+ +
+
+
+
+ illustration mode maintenance +
+ +
+

+ Ce site est
+ hébergé par ESI +

+

+ Ce site est fièrement hébergé par ESI informatique ! +

+ + En savoir plus + +
+
+ + + + + + \ No newline at end of file diff --git a/public/img/illustration_maintenance.png b/public/img/illustration_maintenance.png new file mode 100644 index 0000000..1102842 Binary files /dev/null and b/public/img/illustration_maintenance.png differ diff --git a/public/img/logo-ESI.png b/public/img/logo-ESI.png new file mode 100644 index 0000000..d493b41 Binary files /dev/null and b/public/img/logo-ESI.png differ diff --git a/reset.css b/reset.css new file mode 100644 index 0000000..45a05ec --- /dev/null +++ b/reset.css @@ -0,0 +1,129 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} +body { + line-height: 1; +} +ol, +ul { + list-style: none; +} +blockquote, +q { + quotes: none; +} +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ""; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..028164b --- /dev/null +++ b/style.css @@ -0,0 +1,31 @@ +header nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 2em; + width: auto; + margin: auto 0; +} + +header nav .contents { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +header nav .contents ul { + list-style: none; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: distribute; + justify-content: space-around; + padding: 2em; +} +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/style.css.map b/style.css.map new file mode 100644 index 0000000..c77852d --- /dev/null +++ b/style.css.map @@ -0,0 +1,9 @@ +{ + "version": 3, + "mappings": "AAAA,AACE,MADI,CACJ,GAAG,CAAC;EACF,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;EAC9B,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,MAAM;CAYf;;AAlBH,AAOI,MAPE,CACJ,GAAG,CAMD,SAAS,CAAC;EACR,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;CAQpB;;AAjBL,AAWM,MAXA,CACJ,GAAG,CAMD,SAAS,CAIP,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,YAAY;EAC7B,OAAO,EAAE,GAAG;CACb", + "sources": [ + "style.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/style.scss b/style.scss new file mode 100644 index 0000000..52ed5b7 --- /dev/null +++ b/style.scss @@ -0,0 +1,20 @@ +header { + nav { + display: flex; + justify-content: space-between; + padding: 2em; + width: auto; + margin: auto 0; + .contents { + display: flex; + align-items: center; + + ul { + list-style: none; + display: flex; + justify-content: space-around; + padding: 2em; + } + } + } +}