diff --git a/frontend/src/App.css b/frontend/src/App.css index 52855cf..4f1d6f3 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -7,7 +7,7 @@ :root { --primary: rgb(41, 63, 87); - --secondary: #fff; + --secondary: rgb(218,218,218); --third: rgb(171, 183, 183); } @@ -28,29 +28,24 @@ font-size: 100px; } -.products { - background-image: url('images/img-9.jpg'); - background-position: center; - background-size: fill; - background-repeat: no-repeat; - color: var(--primary); - font-size: 100px; -} - .sign-up { - background-image: url('images/img-9.jpg'); + background-image: url("images/img-9.jpg"); background-position: center; background-size: cover; background-repeat: no-repeat; - color: #fff; + color: var(--primary); font-size: 100px; } .sitePage { height: 90vh; display: flex; - justify-content: center; + flex-direction: column; + align-content: center; + align-items: center; + background-color: var(--secondary); } .sitePage h1 { font-size: 80px; + margin: 0.7em auto; } diff --git a/frontend/src/components/Input.css b/frontend/src/components/Input.css new file mode 100644 index 0000000..2e52c93 --- /dev/null +++ b/frontend/src/components/Input.css @@ -0,0 +1,6 @@ +.input-field { + width: auto; +} +.input-field input { + border-color: var(--primary); +} \ No newline at end of file diff --git a/frontend/src/components/InputField.js b/frontend/src/components/InputField.js index c6cda35..f71a029 100644 --- a/frontend/src/components/InputField.js +++ b/frontend/src/components/InputField.js @@ -1,8 +1,9 @@ import React from "react"; +import "./Input.css"; function InputField(props) { return ( -