diff --git a/css/style.css b/css/style.css
index 58b7eb8..7d41106 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1,4 +1,4 @@
-/* RESET / PODSTAWOWE STYLOWANIE */
+/* RESET I PODSTAWY */
* {
margin: 0;
padding: 0;
@@ -7,88 +7,97 @@
body {
font-family: Arial, sans-serif;
- background-color: #f2f2f2;
+ background: #f2f2f2;
color: #333;
- line-height: 1.6; /* Lepsza czytelność tekstu */
+ line-height: 1.6;
}
/* LAYOUT GŁÓWNY */
header, nav, main, footer {
- padding: 15px 20px; /* Nieco większy padding dla lepszego wyglądu */
- margin: 10px auto;
max-width: 1200px;
- background-color: #fff;
- border-radius: 4px; /* Zaokrąglone rogi dla spójności */
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Lekki cień dla głębi */
+ margin: 10px auto;
+ padding: 15px;
+ background: #fff;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* NAGŁÓWEK */
header {
- border: 1px solid #ccc;
text-align: center;
}
header h1 {
- margin: 15px 0;
- font-size: 2.5em; /* Nieco większy tytuł dla lepszej widoczności */
+ font-size: 2.5em;
color: #444;
- font-weight: 700; /* Pogrubienie tytułu */
+ font-weight: 700;
}
/* NAWIGACJA */
nav {
- border: 1px solid #ccc;
- margin-top: 0;
display: flex;
justify-content: center;
background: #f9f9f9;
}
nav a {
+ padding: 10px 15px;
+ margin: 0 5px;
text-decoration: none;
color: #333;
- margin: 0 15px; /* Większy odstęp między linkami */
font-weight: bold;
- padding: 10px 12px; /* Większy padding dla lepszej interakcji */
- transition: background 0.3s, color 0.3s; /* Dodano przejście dla koloru tekstu */
- border-radius: 4px; /* Zaokrąglone rogi dla spójności */
+ border-radius: 4px;
+ transition: all 0.3s;
}
nav a:hover {
background: #e0e0e0;
- color: #000; /* Ciemniejszy kolor tekstu przy najechaniu */
+}
+
+nav a.active {
+ background: #4CAF50;
+ color: #fff;
}
/* GŁÓWNA SEKCJA */
main {
- border: 1px solid #ccc;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- gap: 25px; /* Większy odstęp między sekcjami */
- padding: 25px;
- border-radius: 4px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ padding: 20px;
}
-/* KONTENERY W MAIN */
-.form-section,
-.table-section {
- flex: 1 1 450px; /* Minimalna szerokość 450px, a reszta elastycznie */
- border: 1px solid #ddd;
+/* ZAKŁADKI */
+.tab-content {
+ display: none;
padding: 20px;
background: #fafafa;
- border-radius: 4px; /* Zaokrąglone rogi */
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Lekki cień */
+ border: 1px solid #ddd;
+ border-radius: 4px;
}
-.form-section h2,
-.table-section h2 {
+.tab-content.active {
+ display: block;
+}
+
+.tab-content h2 {
margin-bottom: 15px;
- font-size: 1.5em; /* Większy nagłówek dla lepszej czytelności */
- border-bottom: 2px solid #ccc; /* Grubsza linia pod nagłówkiem */
+ font-size: 1.5em;
+ border-bottom: 2px solid #ccc;
padding-bottom: 5px;
- color: #444;
+}
+
+/* STRONA GŁÓWNA */
+#home ul {
+ list-style: disc;
+ margin: 0 0 15px 20px;
+}
+
+#home a {
+ color: #4CAF50;
+ text-decoration: none;
+}
+
+#home a:hover {
+ text-decoration: underline;
}
/* FORMULARZ */
@@ -99,66 +108,38 @@ form {
}
form label {
- display: flex;
- flex-direction: column;
font-weight: bold;
- color: #555; /* Ciemniejszy kolor etykiet */
+ color: #555;
}
-form input[type="date"],
-form input[type="number"],
-form input[type="text"],
-form select {
- padding: 8px; /* Większy padding dla lepszej użyteczności */
- width: 100%;
+form input, form select {
+ padding: 8px;
border: 1px solid #ddd;
- border-radius: 4px; /* Zaokrąglone rogi */
+ border-radius: 4px;
font-size: 1em;
transition: border-color 0.3s;
}
-form input[type="date"]:focus,
-form input[type="number"]:focus,
-form input[type="text"]:focus,
-form select:focus {
- border-color: #4CAF50; /* Zielona obwódka przy fokusie */
+form input:focus, form select:focus {
+ border-color: #4CAF50;
outline: none;
}
form button {
- align-self: flex-start;
- padding: 10px 20px; /* Większy padding dla lepszej widoczności */
- background-color: #4CAF50;
+ padding: 10px 20px;
+ background: #4CAF50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
- font-size: 1.1em; /* Nieco większy tekst przycisku */
- transition: background 0.3s, transform 0.2s; /* Dodano transform dla animacji */
+ transition: all 0.3s;
}
form button:hover {
- background-color: #45a049;
- transform: scale(1.05); /* Nieznaczne powiększenie przy najechaniu */
-}
-
-/* TABELA I PRZYCISK W SEKCJI TABELI */
-.table-section .table-controls button {
- padding: 10px 20px; /* Większy padding dla spójności z formularzem */
- background-color: #4CAF50;
- color: #fff;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- font-size: 1.1em;
- transition: background 0.3s, transform 0.2s;
-}
-
-.table-section .table-controls button:hover {
- background-color: #45a049;
- transform: scale(1.05); /* Powiększenie przy najechaniu */
+ background: #45a049;
}
+/* TABELA */
.table-header {
display: flex;
justify-content: space-between;
@@ -166,43 +147,44 @@ form button:hover {
margin-bottom: 15px;
}
-/* TABELA */
+.table-header button {
+ padding: 10px 20px;
+ background: #4CAF50;
+ color: #fff;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: all 0.3s;
+}
+
+.table-header button:hover {
+ background: #45a049;
+}
+
#ordersTable {
width: 100%;
border-collapse: collapse;
- margin-top: 10px;
}
#ordersTable th, #ordersTable td {
border: 1px solid #ccc;
- padding: 12px; /* Większy padding dla czytelności */
+ padding: 12px;
text-align: left;
}
#ordersTable th {
- background-color: #eee;
+ background: #eee;
font-weight: bold;
- color: #444;
}
/* STOPKA */
footer {
- border: 1px solid #ccc;
text-align: center;
- margin-top: 0;
- font-size: 1em; /* Większy tekst stopki */
background: #f9f9f9;
- border-radius: 4px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
- header, nav, main, footer {
- margin: 5px auto;
- padding: 10px;
- }
-
header h1 {
font-size: 2em;
}
@@ -214,36 +196,21 @@ footer {
nav a {
margin: 5px 0;
- padding: 8px 10px;
}
- main {
+ main, .tab-content {
padding: 15px;
- gap: 15px;
- }
-
- .form-section,
- .table-section {
- flex: 1 1 100%; /* Pełna szerokość na małych ekranach */
- margin-bottom: 15px;
}
#ordersTable th, #ordersTable td {
padding: 8px;
- font-size: 0.9em;
- }
-
- form button,
- .table-section .table-controls button {
- padding: 8px 16px;
- font-size: 1em;
}
}
@media (max-width: 480px) {
#ordersTable th, #ordersTable td {
- font-size: 0.8em;
padding: 6px;
+ font-size: 0.9em;
}
.table-header {
@@ -251,8 +218,8 @@ footer {
align-items: flex-start;
}
- .table-controls {
+ .table-header button {
margin-top: 10px;
- text-align: left;
}
}
+
diff --git a/index.html b/index.html
index 2dc6130..12f51e7 100644
--- a/index.html
+++ b/index.html
@@ -3,10 +3,14 @@
Panel zamówień
+
+
+
+
-
+
@@ -17,69 +21,77 @@
+
+
+ Witaj w Aplikacji Zamówień
+ Ta aplikacja umożliwia zarządzanie zamówieniami w prosty i intuicyjny sposób.
+
+ - Dodaj zamówienie: Wypełnij formularz, aby dodać nowe zamówienie do systemu.
+ - Lista zamówień: Przeglądaj wszystkie zapisane zamówienia w formie tabeli.
+ - Informacje: Aplikacja jest responsywna i działa na różnych urządzeniach.
+
+ Skontaktuj się z nami pod adresem: support@zamowienia.pl
+
-
-
-
-
-
-
-
-
-
- Imię |
- Nazwisko |
- Data zamówienia |
- Kwota |
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Imię |
+ Nazwisko |
+ Data zamówienia |
+ Kwota |
+
+
+
+
+
+
+
-
-