diff --git a/src/App.css b/src/App.css index 74b5e05..e70a402 100644 --- a/src/App.css +++ b/src/App.css @@ -35,4 +35,4 @@ to { transform: rotate(360deg); } -} +} \ No newline at end of file diff --git a/src/App.js b/src/App.js index 832b99f..9aabfc8 100644 --- a/src/App.js +++ b/src/App.js @@ -11,7 +11,6 @@ import 'primereact/resources/themes/lara-light-indigo/theme.css'; import 'primereact/resources/primereact.min.css'; import 'primeicons/primeicons.css'; import 'primeflex/primeflex.css'; -import './components/styles.css'; function App() { return ( diff --git a/src/components/GlobalMailing.css b/src/components/GlobalMailing.css new file mode 100644 index 0000000..9951978 --- /dev/null +++ b/src/components/GlobalMailing.css @@ -0,0 +1,39 @@ +.global-mailing-container { + display: flex; + flex-direction: column; + align-items: center; + padding: 20px; + background-color: #f9f9f9; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + } + + .global-mailing-container h2 { + margin-bottom: 20px; + color: #333; + } + + .global-mailing-container select { + padding: 10px; + font-size: 16px; + border: 1px solid #ccc; + border-radius: 4px; + margin-bottom: 20px; + width: 100%; + max-width: 300px; + } + + .global-mailing-container button { + padding: 10px 20px; + font-size: 16px; + color: #fff; + background-color: #007bff; + border: none; + border-radius: 4px; + cursor: pointer; + transition: background-color 0.3s ease; + } + + .global-mailing-container button:hover { + background-color: #0056b3; + } \ No newline at end of file diff --git a/src/components/GlobalVariables.css b/src/components/GlobalVariables.css new file mode 100644 index 0000000..dda81b4 --- /dev/null +++ b/src/components/GlobalVariables.css @@ -0,0 +1,51 @@ +.global-variables-container { + display: flex; + flex-direction: column; + align-items: center; + padding: 20px; + background-color: #f9f9f9; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + max-width: 600px; + margin: 0 auto; + } + + .global-variables-container h2 { + margin-bottom: 20px; + color: #333; + } + + .global-variables-container div { + margin-bottom: 15px; + width: 100%; + } + + .global-variables-container label { + display: block; + margin-bottom: 5px; + font-weight: bold; + color: #555; + } + + .global-variables-container input { + width: 100%; + padding: 10px; + font-size: 16px; + border: 1px solid #ccc; + border-radius: 4px; + } + + .global-variables-container button { + padding: 10px 20px; + font-size: 16px; + color: #fff; + background-color: #007bff; + border: none; + border-radius: 4px; + cursor: pointer; + transition: background-color 0.3s ease; + } + + .global-variables-container button:hover { + background-color: #0056b3; + } \ No newline at end of file diff --git a/src/components/groups.css b/src/components/groups.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/components/sidebar.css b/src/components/sidebar.css index 0835d3c..b0ae464 100644 --- a/src/components/sidebar.css +++ b/src/components/sidebar.css @@ -1,33 +1,54 @@ .sidebar { - width: 200px; + width: 250px; + height: 100vh; + background-color: #2c3e50; padding: 20px; - border-right: 1px solid #ddd; - background-color: #f4f4f4; - height: 100vh; - position: fixed; + color: white; + position: fixed; top: 0; left: 0; + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); + overflow-y: auto; + z-index: 1; /* чтобы сайдбар был поверх контента */ } .sidebar h3 { - margin-top: 0; + margin-bottom: 20px; + font-size: 1.5rem; + text-transform: uppercase; + letter-spacing: 2px; + color: #ecf0f1; } .sidebar ul { - list-style-type: none; + list-style: none; padding: 0; } .sidebar ul li { - margin-bottom: 10px; + margin: 15px 0; } .sidebar ul li a { + color: #ecf0f1; text-decoration: none; - color: #333; - font-size: 16px; + font-size: 1.1rem; + display: block; + padding: 10px; + border-radius: 5px; + transition: background-color 0.3s ease; } .sidebar ul li a:hover { - color: #007bff; + background-color: #34495e; + } + + .sidebar ul li a.active { + background-color: #2980b9; + } + + + body { + margin-left: 250px; + padding: 0; } \ No newline at end of file diff --git a/src/components/styles.css b/src/components/styles.css deleted file mode 100644 index 19312a7..0000000 --- a/src/components/styles.css +++ /dev/null @@ -1,9 +0,0 @@ -.card-custom { - background-color: #f9fafb; - border-radius: 10px; -} - -.listbox-custom { - background-color: #fff; - border: 1px solid #e5e7eb; -} \ No newline at end of file diff --git a/src/components/userActions.js b/src/components/userActions.js index 79f3196..4bdab03 100644 --- a/src/components/userActions.js +++ b/src/components/userActions.js @@ -1,11 +1,12 @@ import React from 'react'; +import { Button } from 'primereact/button'; const UserActions = () => { return ( -