diff --git a/public/css/app.css b/public/css/app.css index 4806dc8..012f32c 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -13101,8 +13101,8 @@ article.contact .btn-primary:focus { } article.contact .btn-primary:hover { - background-color: #555555 !important; - border-color: #555555 !important; + background-color: #3c3b3b !important; + border-color: #3c3b3b !important; } article.contact .btn-primary:active, diff --git a/public/js/contact.js b/public/js/contact.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/public/js/contact.js @@ -0,0 +1 @@ + diff --git a/resources/assets/js/contact.js b/resources/assets/js/contact.js new file mode 100644 index 0000000..be70924 --- /dev/null +++ b/resources/assets/js/contact.js @@ -0,0 +1,4 @@ +function submit() { + alert("dffasdfsd"); + +} diff --git a/resources/assets/sass/app.scss b/resources/assets/sass/app.scss index c3e135f..60a26e9 100644 --- a/resources/assets/sass/app.scss +++ b/resources/assets/sass/app.scss @@ -306,8 +306,8 @@ article.contact { .btn-primary:hover { - background-color: lighten($brand-secondary, 20%) !important; - border-color: lighten($brand-secondary, 20%) !important; + background-color: lighten($brand-secondary, 10%) !important; + border-color: lighten($brand-secondary, 10%) !important; } .btn-primary:active, .btn-primary:visited, .btn-primary:focus { diff --git a/serve_lan.sh b/serve_lan.sh new file mode 100755 index 0000000..e69a69d --- /dev/null +++ b/serve_lan.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +export PORT="80" +export IP="$(hostname -I | cut -d' ' -f1)" +echo $PORT +sudo php artisan serve --host $IP --port $PORT \ No newline at end of file