diff --git a/src/main.jsx b/src/main.jsx index b6c220a..52b392b 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -7,7 +7,7 @@ import './index.css'; import ErrorPage from './pages/ErrorPage.jsx'; import Index from './pages/Index.jsx'; import Catalog from './pages/Catalog.jsx'; -// import Into from './pages/Into.jsx'; +import Into from './pages/Into.jsx'; // import Login from './pages/Login.jsx'; // import Subscribe from './pages/Subscribe.jsx'; @@ -23,11 +23,11 @@ const routes = [ element: , title: 'Каталог', }, - // { - // path: '/into', - // element: , - // title: 'Вход', - // }, + { + path: '/into', + element: , + title: 'Вход', + }, // { // path: '/login', // element: , diff --git a/src/pages/Into.jsx b/src/pages/Into.jsx index e69de29..521b005 100644 --- a/src/pages/Into.jsx +++ b/src/pages/Into.jsx @@ -0,0 +1,38 @@ +import '../pagescss/Into.css'; + +const Into = () => { + return ( + <> +
+ {/*
*/} + + {/*
*/} + +

+ Имя пользователя / электронная почта +

+
+ +
+ +

+ Пароль +

+
+ +
+ + + {/*
*/} + {/*
*/} +
+ + + ); +}; + +export default Into; + diff --git a/src/pagescss/Into.css b/src/pagescss/Into.css new file mode 100644 index 0000000..59bec8a --- /dev/null +++ b/src/pagescss/Into.css @@ -0,0 +1,42 @@ +/* #main { + background-color: rgba(0, 0, 0, 0.6); + background-blend-mode: difference; +} */ + +#main { + background-color: #D8BAFF; + background-image: url("../assets/logotip_LC.png"); + background-position: center; + background-size: cover; + background-repeat: no-repeat; + background-blend-mode: multiply; + color: white; +} + +.text-label { + font-size: 25px; + text-align: center; +} + +.btn { + width: 300px; + height: 50px; + font-size: 25px; + transition: 0.9s; +} + +.btn:hover { + transform: scale(1.1); +} + +@media screen and (max-width: 576px) { + + .p { + font-size: min(10vw, 36px); + } + + .btn { + font-size: min(10vw, 25px); + width: 30vh; + } +} \ No newline at end of file