diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..6654422 Binary files /dev/null and b/.DS_Store differ diff --git a/contact.html b/contact.html index a0633c0..4ff8a33 100644 --- a/contact.html +++ b/contact.html @@ -1,179 +1,179 @@ - - - - - - - - - Gilroy Hacks · Contact - - - - - - - - - - -
-
-
- -
-
-
-
-
-

Contact Form

-
- -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
- -
-
-
-
- - - - - - - - + + + + + + + + + Gilroy Hacks · Contact + + + + + + + + + + +
+
+
+ +
+
+
+
+
+

Contact Form

+
+ +
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/css/contact.css b/css/contact.css index 8813690..8136083 100644 --- a/css/contact.css +++ b/css/contact.css @@ -606,7 +606,7 @@ footer { text-align: left; line-height: 25px; font-size: 18px; - padding-right: 40px; + margin-right: 40px; } #socials { @@ -633,7 +633,7 @@ footer { #footer-links { width: 200px; margin-top: 7px; - padding-right: 20px; + margin-right: 20px; text-align: left; } diff --git a/css/licenses.css b/css/licenses.css index 781c295..6e617c6 100644 --- a/css/licenses.css +++ b/css/licenses.css @@ -540,7 +540,7 @@ footer { text-align: left; line-height: 25px; font-size: 18px; - padding-right: 40px; + margin-right: 40px; } #socials { @@ -567,7 +567,7 @@ footer { #footer-links { width: 200px; margin-top: 7px; - padding-right: 20px; + margin-right: 20px; text-align: left; } diff --git a/img/.DS_Store b/img/.DS_Store new file mode 100644 index 0000000..14b971d Binary files /dev/null and b/img/.DS_Store differ diff --git a/js/form.js b/js/form.js index 6d24514..291be96 100644 --- a/js/form.js +++ b/js/form.js @@ -1,38 +1,38 @@ -//material contact form animation -$(".contact-form") - .find(".form-control") - .each(function () { - var targetItem = $(this).parent(); - if ($(this).val()) { - $(targetItem).find("label").css({ - top: "10px", - fontSize: "14px" - }); - } - }); -$(".contact-form") - .find(".form-control") - .focus(function () { - $(this).parent(".input-block").addClass("focus"); - $(this).parent().find("label").animate( - { - top: "10px", - fontSize: "14px" - }, - 300 - ); - }); -$(".contact-form") - .find(".form-control") - .blur(function () { - if ($(this).val().length == 0) { - $(this).parent(".input-block").removeClass("focus"); - $(this).parent().find("label").animate( - { - top: "25px", - fontSize: "18px" - }, - 300 - ); - } - }); +//material contact form animation +$(".contact-form") + .find(".form-control") + .each(function () { + var targetItem = $(this).parent(); + if ($(this).val()) { + $(targetItem).find("label").css({ + top: "10px", + fontSize: "14px" + }); + } + }); +$(".contact-form") + .find(".form-control") + .focus(function () { + $(this).parent(".input-block").addClass("focus"); + $(this).parent().find("label").animate( + { + top: "10px", + fontSize: "14px" + }, + 300 + ); + }); +$(".contact-form") + .find(".form-control") + .blur(function () { + if ($(this).val().length == 0) { + $(this).parent(".input-block").removeClass("focus"); + $(this).parent().find("label").animate( + { + top: "25px", + fontSize: "18px" + }, + 300 + ); + } + });