diff --git a/a_propos.php b/a_propos.php index ef1dda0..c7f0654 100644 --- a/a_propos.php +++ b/a_propos.php @@ -8,7 +8,6 @@ require_once('includes/config.php'); - Festiv'Algo - A propos diff --git a/aide.php b/aide.php index 9d6f6c3..3b436f8 100644 --- a/aide.php +++ b/aide.php @@ -11,7 +11,6 @@ require_once('includes/config.php'); - Festiv'Algo - Aide pour la programmation d'algorithmes. Tutoriel d'algorithmique, TI Basic et Basic Casio. diff --git a/assets/css/ie.css b/assets/css/ie.css deleted file mode 100644 index 5906a72..0000000 --- a/assets/css/ie.css +++ /dev/null @@ -1,19 +0,0 @@ -#Ecriture_onglet1 -{ - bottom: 75px; -} - -#Ecriture_onglet2 -{ - bottom: 122px; -} - -#Ecriture_onglet3 -{ - bottom: 170px; -} - -#Ecriture_onglet4 -{ - bottom: 217px; -} \ No newline at end of file diff --git a/assets/css/menu.css b/assets/css/menu.css deleted file mode 100644 index c23f82e..0000000 --- a/assets/css/menu.css +++ /dev/null @@ -1,96 +0,0 @@ -@font-face { - font-family: 'Navig'; - src: url('../fonts/Action_Man/Action_Man-webfont.eot'); - src: url('../fonts/Action_Man/Action_Man-webfont.eot?#iefix') format('embedded-opentype'), - url('../fonts/Action_Man/Action_Man-webfont.woff') format('woff'), - url('../fonts/Action_Man/Action_Man-webfont.ttf') format('truetype'), - url('../fonts/Action_Man/Action_Man-webfont.svg#ActionManRegular') format('svg'); - font-weight: normal; - font-style: normal; -} - -#menus -{ - text-align: center; -} - -#banniere -{ - margin-top: 45px; - height: 155px; -} - -#navigation -{ - margin-top: 15px; - margin-bottom: 40px; - height: 35px; -} - -.onglet -{ - position: absolute; - top: 216px; - z-index: 1; -} - -#onglet1 -{ - left: 65px; -} - -#onglet2 -{ - left: 215px; -} - -#onglet3 -{ - left: 365px; -} - -#onglet4 -{ - left: 515px; -} - -#onglet5 -{ - left: 665px; -} - -.Ecriture_onglet -{ - max-width: 200px; - font-family: Navig, Arial; - font-size: 20px; - text-align: left; - position: absolute; - z-index: 2; - top: 196px; -} - -#Ecriture_onglet1 -{ - left: 72px; -} - -#Ecriture_onglet2 -{ - left: 247px; -} - -#Ecriture_onglet3 -{ - left: 410px; -} - -#Ecriture_onglet4 -{ - left: 569px; -} - -#Ecriture_onglet5 -{ - left: 699px; -} \ No newline at end of file diff --git a/assets/css/stylesheet.css b/assets/css/stylesheet.css index 8a1f1a7..586b067 100644 --- a/assets/css/stylesheet.css +++ b/assets/css/stylesheet.css @@ -736,4 +736,54 @@ footer #ins { color: red; +} + + +/********************** + * includes/menu.php + **********************/ +#banner +{ + text-align:center; + margin: 45px 0 16px 0; +} + +@font-face { + font-family: 'Action Man'; + src: url('../fonts/Action_Man/Action_Man-webfont.eot'); + src: url('../fonts/Action_Man/Action_Man-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/Action_Man/Action_Man-webfont.woff') format('woff'), + url('../fonts/Action_Man/Action_Man-webfont.ttf') format('truetype'), + url('../fonts/Action_Man/Action_Man-webfont.svg#ActionManRegular') format('svg'); + font-weight: normal; + font-style: normal; +} + +#menu +{ + width: 900px; + margin: auto; + height: 30px; + border-radius: 10px; + background: rgb(255,190,62); + background: linear-gradient(180deg, rgba(255,190,62,1) 0%, rgba(255,122,49,1) 100%); + display: flex; + flex-direction: row; + text-align: center; +} + +#menu a +{ + font-family: 'Action Man', Arial; + flex-grow: 1; + padding-top: 5px; + line-height: 25px; + margin: 0 16px 0px 16px; + font-size: 1.2em; +} + +#menu a:hover +{ + background: rgb(238,0,33); + background: linear-gradient(167deg, rgba(238,0,33,1) 0%, rgba(177,24,40,1) 100%); } \ No newline at end of file diff --git a/assets/img/theme/banniere.png b/assets/img/theme/banner.png similarity index 100% rename from assets/img/theme/banniere.png rename to assets/img/theme/banner.png diff --git a/assets/img/theme/navigation.png b/assets/img/theme/navigation.png deleted file mode 100644 index c1cf8fe..0000000 Binary files a/assets/img/theme/navigation.png and /dev/null differ diff --git a/assets/img/theme/onglet.png b/assets/img/theme/onglet.png deleted file mode 100644 index 9dac9e4..0000000 Binary files a/assets/img/theme/onglet.png and /dev/null differ diff --git a/assets/js/menus.js b/assets/js/menus.js deleted file mode 100644 index d846863..0000000 --- a/assets/js/menus.js +++ /dev/null @@ -1,48 +0,0 @@ -$(document).ready(function() { - function hide_onglet() { - $('nav').append(""); - - $('#onglet1').hide(); - $('#onglet2').hide(); - $('#onglet3').hide(); - $('#onglet4').hide(); - $('#onglet5').hide(); - } - - function colore_onglet() - { - $('#Ecriture_onglet1').mouseenter(function() { - $('#onglet1').show(); - }); - $('#Ecriture_onglet1').mouseleave(function() { - $('#onglet1').hide(); - }); - $('#Ecriture_onglet2').mouseenter(function() { - $('#onglet2').show(); - }); - $('#Ecriture_onglet2').mouseleave(function() { - $('#onglet2').hide(); - }); - $('#Ecriture_onglet3').mouseenter(function() { - $('#onglet3').show(); - }); - $('#Ecriture_onglet3').mouseleave(function() { - $('#onglet3').hide(); - }); - $('#Ecriture_onglet4').mouseenter(function() { - $('#onglet4').show(); - }); - $('#Ecriture_onglet4').mouseleave(function() { - $('#onglet4').hide(); - }); - $('#Ecriture_onglet5').mouseenter(function() { - $('#onglet5').show(); - }); - $('#Ecriture_onglet5').mouseleave(function() { - $('#onglet5').hide(); - }); - } - - hide_onglet(); - colore_onglet(); -}); \ No newline at end of file diff --git a/assets/js/safari.js b/assets/js/safari.js deleted file mode 100644 index c21ea78..0000000 --- a/assets/js/safari.js +++ /dev/null @@ -1,3 +0,0 @@ -$(document).ready(function() { - $('.Ecriture_onglet').css('top', '204px'); -}) \ No newline at end of file diff --git a/exemples.php b/exemples.php index 35a626f..9017d26 100644 --- a/exemples.php +++ b/exemples.php @@ -131,7 +131,6 @@ L\'aire du quart de disque est Pi/4 et la fréquence d\'apparition du point dans - Festiv'Algo - Exemples d'algorithmes diff --git a/includes/menu.php b/includes/menu.php index 0be4b9a..c346cb9 100644 --- a/includes/menu.php +++ b/includes/menu.php @@ -1,21 +1,12 @@ - -
- - '; - - - ?> -

Bannière Festiv'Algo

-
- - - + + + diff --git a/index.php b/index.php index 5573fcf..0ce5f5f 100644 --- a/index.php +++ b/index.php @@ -18,7 +18,6 @@ -