diff --git a/.gitignore b/.gitignore index 0f7df0f..e1fd332 100755 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ /public/storage /storage/*.key /vendor +.storage +env .env .env.backup .phpunit.result.cache diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..01204cf --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,44 @@ + +header { + font-family: 'Poppins', sans-serif; + font-weight: 900; + text-align: center; +} + +.logo { + font-size: 80px; + color: #FF0448; +} + +.title { + font-size: 40px; + color: #636b6f; +} + +.description { + font-weight: 700; + font-size: 20px; + color: #B1B0B7; +} + +body { + background-color: #E7E7E7; + font-family: 'Poppins', sans-serif; + font-weight: 200; + color: #B1B0B7; + text-align: center; +} + +a:link, a:visited { + font-weight: 700; + background-color: #92F2DC; + color: white; + padding: 14px 25px; + text-align: center; + text-decoration: none; + display: inline-block; +} + +a:hover, a:active { + background-color: #9DFFB3; +} diff --git a/public/img/app.png b/public/img/app.png new file mode 100644 index 0000000..5926aaf Binary files /dev/null and b/public/img/app.png differ diff --git a/resources/views/header.blade.php b/resources/views/header.blade.php new file mode 100644 index 0000000..757f4f7 --- /dev/null +++ b/resources/views/header.blade.php @@ -0,0 +1,9 @@ +
+
+