diff --git a/assets/css/photos.css b/assets/css/photos.css index 5fe4f3f..e53684d 100644 --- a/assets/css/photos.css +++ b/assets/css/photos.css @@ -6,7 +6,7 @@ } .photos_folder a:hover, .photos_path a:hover { - box-shadow: 0px 0px 10px #000; + box-shadow: 0 0 10px #000; background-color: white; color: black; } @@ -23,7 +23,7 @@ align-items: center; justify-content: center; background-color: #212121; - box-shadow: 0px 0px 2px #212121; + box-shadow: 0 0 2px #212121; transition: 0.3s; color: white; } @@ -71,7 +71,7 @@ align-items: center; justify-content: center; background-color: #212121; - box-shadow: 0px 0px 2px #212121; + box-shadow: 0 0 2px #212121; transition: 0.3s; color: white; } @@ -109,7 +109,7 @@ right: 0; } -#close_back{ +#close_back { position: fixed; width: 100%; height: 100%; diff --git a/assets/css/style.css b/assets/css/style.css index eeb4bb8..7e6c7ab 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -31,11 +31,8 @@ Theme Styles body { /*Full page background*/ - background-image: url("../images/header_bg.jpg"); - background-repeat: no-repeat; - background-position: center; background-size: cover; - background-attachment: fixed; + background: url("../images/header_bg.jpg") no-repeat fixed center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; @@ -93,19 +90,11 @@ a { text-decoration: none; color: #0F79D0; text-shadow: none; - transition: color 0.5s ease; - transition: text-shadow 0.5s ease; - -webkit-transition: color 0.5s ease; - -webkit-transition: text-shadow 0.5s ease; - -moz-transition: color 0.5s ease; - -moz-transition: text-shadow 0.5s ease; - -o-transition: color 0.5s ease; - -o-transition: text-shadow 0.5s ease; - -ms-transition: color 0.5s ease; - -ms-transition: text-shadow 0.5s ease; + transition: 0.3s; } a:hover, a:focus { + color: #222e73; text-decoration: underline; } @@ -124,10 +113,9 @@ strong { img { position: relative; - margin: 0 auto; max-width: 739px; padding: 5px; - margin: 10px 0 10px 0; // border: 1px solid #ebebeb; + margin: 10px 0 10px 0; } p img { @@ -144,14 +132,12 @@ ul, ol, dl { } ul { - list-style-position: inside; - list-style: disc; + list-style: disc inside; padding-left: 20px; } ol { - list-style-position: inside; - list-style: decimal; + list-style: decimal inside; padding-left: 20px; } @@ -205,7 +191,7 @@ Full-Width Styles width: 100%; height: 50px; z-index: 15; - box-shadow: 0px 2px 5px #222; + box-shadow: 0 2px 5px #222; } #header_top h4 { @@ -226,7 +212,7 @@ Full-Width Styles color: #fff; font-size: 42px; font-weight: 700; - text-shadow: #111 0px 0px 10px; + text-shadow: #111 0 0 10px; border-bottom: none; } @@ -235,7 +221,7 @@ Full-Width Styles font-size: 24px; font-weight: 300; background: none; - text-shadow: #111 0px 0px 10px; + text-shadow: #111 0 0 10px; border-bottom: none; } @@ -246,7 +232,7 @@ Full-Width Styles #home_content { padding-top: 100px; background-color: #212121aa; - border-radius: 0px 0px 60px 60px; + border-radius: 0 0 60px 60px; } #home_content h1 { @@ -254,19 +240,19 @@ Full-Width Styles font-size: 70px; border: none; text-align: center; - text-shadow: 0px 0px 10px #000; + text-shadow: 0 0 10px #000; } #home_content p { color: white; font-size: 30px; text-align: center; - text-shadow: 0px 0px 5px #000; + text-shadow: 0 0 5px #000; } #main_content_wrap { background: #f2f2f2; - box-shadow: 0px 0px 10px #222; + box-shadow: 0 0 10px #222; } #main_content { @@ -274,7 +260,7 @@ Full-Width Styles } #footer_wrap { - padding: 50px 0px 50px 0px; + padding: 50px 0 50px 0; } #table_wrapper { @@ -292,7 +278,7 @@ Full-Width Styles #table_coms td{ vertical-align: middle; border: none; - padding: 0px 0px 0px 10px; + padding: 0 0 0 10px; } .com_description{ diff --git a/assets/scripts/photosScript.js b/assets/scripts/photosScript.js index fa51615..d30c926 100644 --- a/assets/scripts/photosScript.js +++ b/assets/scripts/photosScript.js @@ -1,21 +1,24 @@ var showcase = $("#img_big"); var showcaseLink = $("#img_big_link"); var photoBackButton = $("#photo_back_button"); -function displayBig(elem){ + +function displayBig(elem) { showcase.attr("src", $(elem).attr('src')); showcaseLink.attr("href", $(elem).attr('src')); photoBackButton.css("display", "block"); console.log("yop"); } + function closeBig() { photoBackButton.css("display", "none") } + function displayNext(direction) { var currentSrc = showcase.attr('src'); var photos = document.getElementsByClassName("photo"); var current = 0; - for (i = 0; i < photos.length; i++){ - if ($(photos[i]).attr('src') == currentSrc){ + for (i = 0; i < photos.length; i++) { + if ($(photos[i]).attr('src') == currentSrc) { current = i; } } @@ -26,7 +29,7 @@ function displayNext(direction) { } else { nextId = "#photo-" + (photos.length - 1); } - if (document.getElementById("photo-" + next) != null){ + if (document.getElementById("photo-" + next) != null) { nextId = "#photo-" + next; } var nextSrc = $(nextId).attr('src'); diff --git a/assets/scripts/planningScript.js b/assets/scripts/planningScript.js index 85176fb..e098e19 100644 --- a/assets/scripts/planningScript.js +++ b/assets/scripts/planningScript.js @@ -1,7 +1,7 @@ var current = null; var classes = null; -$(document).ready(function() { - $(".event").click(function() { +$(document).ready(function () { + $(".event").click(function () { /* Reset last selected items */ if (current != null) { setEventShadow(current, "none"); @@ -15,19 +15,19 @@ $(document).ready(function() { scrollTop: $("#infoBox").offset().top }, 300); }); - $(".event").hover(function() { + $(".event").hover(function () { var element = this.className.split(" ")[1]; if (element != current) { setEventShadow(element, "0px 0px 5px #444"); } - }, function() { + }, function () { var element = this.className.split(" ")[1]; if (element != current) { setEventShadow(element, "none"); } }); - function setEventShadow(eventName, shadow){ + function setEventShadow(eventName, shadow) { classes = document.getElementsByClassName(eventName); for (var i = 0; i < classes.length; i++) { classes[i].style.boxShadow = shadow; diff --git a/assets/scripts/sidenavScript.js b/assets/scripts/sidenavScript.js index 2e313bc..65a00b6 100644 --- a/assets/scripts/sidenavScript.js +++ b/assets/scripts/sidenavScript.js @@ -7,7 +7,8 @@ function openNav() { sidenav.css("margin-left", "0"); sidenav.css("box-shadow", "5px 5px 10px #151515"); backButton.addClass("active_background"); - enableHamburger(); /* Enables hamburger icon */ + enableHamburger(); + /* Enables hamburger icon */ menuOpen = true; } @@ -15,7 +16,8 @@ function closeNav() { sidenav.css("margin-left", "-250px"); sidenav.css("box-shadow", "none"); backButton.removeClass("active_background"); - disableHamburger(); /* Disables hamburger icon */ + disableHamburger(); + /* Disables hamburger icon */ menuOpen = false; } @@ -27,10 +29,10 @@ function toggleNav() { } } -function disableHamburger(){ +function disableHamburger() { hamburger.removeClass("change"); } -function enableHamburger(){ +function enableHamburger() { hamburger.addClass("change"); } diff --git a/coms.php b/coms.php index 7ddeb88..a5b0959 100644 --- a/coms.php +++ b/coms.php @@ -1,83 +1,83 @@
Voici la liste de toutes les coms de la semaine d'accueil, avec les contacts des responsables.
Tous les mails cités sur cette page se terminent par @etud.insa-toulouse.fr
diff --git a/contact.php b/contact.php index bcc4c2b..d7a171c 100644 --- a/contact.php +++ b/contact.php @@ -1,12 +1,15 @@Tous les mails cités sur cette page se terminent par @etud.insa-toulouse.fr
-Pour toute demande concernant ce site, merci de me contacter par Mail : vergnet
-Pour toute demande concernant la semaine d'accueil, merci de contacter le Prez par Mail : aaaaa
-Pour toute demande concernant une activité/COM spécifique, allez sur la page des COMs pour contacter le responsable approprié.
+Pour toute demande concernant ce site, merci de me contacter par Mail : vergnet +
+Pour toute demande concernant la semaine d'accueil, merci de contacter le Prez par Mail : aaaaa
+Pour toute demande concernant une activité/COM spécifique, allez sur la page des COMs pour + contacter le responsable approprié.
diff --git a/index.php b/index.php index 29ab248..de41e2a 100644 --- a/index.php +++ b/index.php @@ -12,18 +12,19 @@ - - -Ce site regroupe les informations les plus importantes pour que ta semaine d'accueil se déroule dans les meilleures conditions.
-Utilise le menu en haut à gauche pour naviguer sur le site.
-Ce site regroupe les informations les plus importantes pour que ta semaine d'accueil se déroule dans les + meilleures conditions.
+Utilise le menu en haut à gauche pour naviguer sur le site.
+