2025-02-12 13:27:22 +00:00
|
|
|
/* Ogólne style */
|
2025-02-12 13:05:01 +00:00
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
margin: 20px;
|
|
|
|
background-color: #f4f4f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
margin-top: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2025-02-14 10:23:48 +00:00
|
|
|
select, input {
|
2025-02-12 13:05:01 +00:00
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2025-02-12 13:27:22 +00:00
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
margin: 20px auto;
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #007bff;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
2025-02-12 13:05:01 +00:00
|
|
|
}
|
|
|
|
|
2025-02-12 13:27:22 +00:00
|
|
|
button:hover {
|
|
|
|
background-color: #0056b3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Zakładki */
|
|
|
|
.tabs {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs button {
|
|
|
|
padding: 10px;
|
|
|
|
border: none;
|
|
|
|
background-color: #007bff;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs button:hover {
|
|
|
|
background-color: #0056b3;
|
|
|
|
}
|
|
|
|
|
2025-02-14 10:23:48 +00:00
|
|
|
/* Lista kryteriów */
|
|
|
|
#criteria-list div {
|
|
|
|
margin: 10px 0;
|
2025-02-12 13:05:01 +00:00
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
|
|
|
|
2025-02-14 10:23:48 +00:00
|
|
|
/* Formularze */
|
|
|
|
form {
|
|
|
|
margin-top: 20px;
|
2025-02-12 13:27:22 +00:00
|
|
|
}
|
|
|
|
|
2025-02-14 10:23:48 +00:00
|
|
|
form label {
|
|
|
|
margin-top: 10px;
|
2025-02-12 13:27:22 +00:00
|
|
|
}
|
|
|
|
|
2025-02-14 10:23:48 +00:00
|
|
|
form input, form select {
|
|
|
|
margin-bottom: 10px;
|
2025-02-12 13:05:01 +00:00
|
|
|
}
|