new-zoz/style.css

143 lines
2.1 KiB
CSS
Raw Normal View History

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;
}
select {
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;
}
/* Zakładka Uczniowie */
2025-02-12 13:05:01 +00:00
details {
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f9f9f9;
}
summary {
font-weight: bold;
cursor: pointer;
outline: none;
}
.criteria-list {
margin-left: 20px;
}
.criteria-item {
display: flex;
align-items: center;
margin: 5px 0;
}
2025-02-12 13:27:22 +00:00
.criteria-item span {
margin-right: 10px;
font-weight: bold;
}
.criteria-item .points-info {
font-size: 12px;
color: #666;
margin-left: 10px;
}
2025-02-12 13:05:01 +00:00
.criteria-item input {
width: 50px;
margin-left: 10px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}
2025-02-12 13:27:22 +00:00
/* Zakładka Statystyka */
.stat-item {
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
display: flex;
justify-content: space-between;
align-items: center;
2025-02-12 13:05:01 +00:00
}
2025-02-12 13:27:22 +00:00
.stat-item strong {
font-size: 16px;
}
.stat-item .points {
font-weight: bold;
font-size: 18px;
}
.stat-item .points.positive {
color: green;
}
.stat-item .points.negative {
color: red;
2025-02-12 13:05:01 +00:00
}