From 589506478bf9a07c55e9291b171de3104ba15f7e Mon Sep 17 00:00:00 2001 From: Aviortheking <2bazert@gmail.com> Date: Mon, 3 Dec 2018 13:41:25 +0100 Subject: [PATCH] removed pokemon --- pokemon | 1 - project/assets/css/style.css | 141 +++++++++++++++++++++++++ project/assets/css/style_index.css | 86 --------------- project/assets/html/includes/head.html | 5 +- project/assets/html/oet.html | 16 --- project/assets/html/poet.html | 16 --- project/assets/php/handler.php | 101 +++++++++++++++++- project/assets/php/tagHandler.php | 41 +++---- project/phpcs.xml | 2 +- 9 files changed, 259 insertions(+), 150 deletions(-) delete mode 160000 pokemon create mode 100644 project/assets/css/style.css delete mode 100644 project/assets/css/style_index.css delete mode 100644 project/assets/html/oet.html delete mode 100644 project/assets/html/poet.html diff --git a/pokemon b/pokemon deleted file mode 160000 index 8147e64..0000000 --- a/pokemon +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8147e64108216ba18cc7d1b73be0530dcf265f1a diff --git a/project/assets/css/style.css b/project/assets/css/style.css new file mode 100644 index 0000000..70271dc --- /dev/null +++ b/project/assets/css/style.css @@ -0,0 +1,141 @@ +/* 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; +} + +/****************************** + * Fin reset.css + *****************************/ + + +body{ + margin: 0; +} + +.nav_imie{ + height: 40px; + background-color: #1c1c1c; +} + +.nav_blog{ + height: 80px; + background-color: white; +} + +.item_nav_imie{ + display: inline-block; + padding-left: 20px; + padding-top: 10px; + color: white; + float: right; + font-family: 'Open Sans', sans-serif; + font-size: 16px; + font-weight: 600; +} + +.item_nav_blog_gauche{ + padding-top:25px; + vertical-align: center; + display: inline-block; + color: black; + float: left; +} + +.item_nav_blog_droite{ + padding-top: 20px; + display: inline-block; + color: black; + float: right; +} +#twi{ + height: 18px; + width: 18px; +} + +#fb{ + height: 18px; + width: 9px; +} + +#search{ + background-color: transparent; + border: none; + width: 120px; + border-bottom: #1c1c1c solid 2px; +} + +#glass{ + height: 20px; + width: 20px; + margin-left: 8px; +} + +@media screen and (max-width: 640px) { + .nav_imie { + height: 0; + } + .item_nav_imie{ + font-size: 0; + } + #twi{ + height: 0; + width: 0; + } + #fb{ + height: 0; + width: 0; + } +} + +@media screen and (max-width: 365px) { + #search{ + background-color: transparent; + border: none; + width: 60px; + border-bottom: #1c1c1c solid 2px; + } +} \ No newline at end of file diff --git a/project/assets/css/style_index.css b/project/assets/css/style_index.css deleted file mode 100644 index 45e38af..0000000 --- a/project/assets/css/style_index.css +++ /dev/null @@ -1,86 +0,0 @@ -body{ - margin: 0; -} - -.nav_imie{ - height: 40px; - background-color: #1c1c1c; -} - -.nav_blog{ - height: 80px; - background-color: white; -} - -.item_nav_imie{ - display: inline-block; - padding-left: 20px; - padding-top: 10px; - color: white; - float: right; - font-family: 'Open Sans', sans-serif; - font-size: 16px; - font-weight: 600; -} - -.item_nav_blog_gauche{ - padding-top:25px; - vertical-align: center; - display: inline-block; - color: black; - float: left; -} - -.item_nav_blog_droite{ - padding-top: 20px; - display: inline-block; - color: black; - float: right; -} -#twi{ - height: 18px; - width: 18px; -} - -#fb{ - height: 18px; - width: 9px; -} - -#search{ - background-color: transparent; - border: none; - width: 120px; - border-bottom: #1c1c1c solid 2px; -} - -#glass{ - height: 20px; - width: 20px; - margin-left: 8px; -} - -@media screen and (max-width: 640px) { - .nav_imie { - height: 0; - } - .item_nav_imie{ - font-size: 0; - } - #twi{ - height: 0; - width: 0; - } - #fb{ - height: 0; - width: 0; - } -} -@media screen and (max-width: 365px) { - #search{ - background-color: transparent; - border: none; - width: 60px; - border-bottom: #1c1c1c solid 2px; - } -} \ No newline at end of file diff --git a/project/assets/html/includes/head.html b/project/assets/html/includes/head.html index 41743f7..0818960 100644 --- a/project/assets/html/includes/head.html +++ b/project/assets/html/includes/head.html @@ -1,8 +1,7 @@
- +