143 lines
2.1 KiB
CSS
143 lines
2.1 KiB
CSS
/* Ogólne style */
|
|
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;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin: 20px auto;
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
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 */
|
|
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;
|
|
}
|
|
|
|
.criteria-item span {
|
|
margin-right: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.criteria-item .points-info {
|
|
font-size: 12px;
|
|
color: #666;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.criteria-item input {
|
|
width: 50px;
|
|
margin-left: 10px;
|
|
padding: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
.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;
|
|
} |