zabawa kolorki i kilka funkcji
This commit is contained in:
parent
7e0dcc5287
commit
d3d04b837b
|
@ -11,6 +11,9 @@
|
||||||
.category-buttons {
|
.category-buttons {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
background-color: #A9A9A9;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-buttons button {
|
.category-buttons button {
|
||||||
|
@ -18,10 +21,12 @@
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: #f2f2f2;
|
background-color: lightgray;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid black;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
transition: background-color 0.3s, color 0.3s, border 0.3s;
|
transition: background-color 0.3s, color 0.3s, border 0.3s;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-buttons button.active {
|
.category-buttons button.active {
|
||||||
|
@ -35,20 +40,21 @@ table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
background-color: whitesmoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
th, td {
|
th, td {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid grey;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
background-color: #f2f2f2;
|
background-color: whitesmoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {
|
tr:nth-child(even) {
|
||||||
background-color: #f9f9f9;
|
background-color: whitesmoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Stylizacja kontenera klasy */
|
/* Stylizacja kontenera klasy */
|
||||||
|
@ -127,6 +133,8 @@ footer.footer {
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Stylizacja przycisków ogólna */
|
/* Stylizacja przycisków ogólna */
|
||||||
|
@ -150,3 +158,15 @@ input[type="checkbox"] {
|
||||||
z-index: 1000; /* zapewnia, że będzie na wierzchu */
|
z-index: 1000; /* zapewnia, że będzie na wierzchu */
|
||||||
border-bottom: 1px solid #ccc; /* opcjonalnie, aby oddzielić od treści */
|
border-bottom: 1px solid #ccc; /* opcjonalnie, aby oddzielić od treści */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark-background {
|
||||||
|
background-color: #2e2e2e; /* Ciemnoszare tło */
|
||||||
|
color: #ffffff; /* Jasny kolor tekstu dla lepszej czytelności */
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lead {
|
||||||
|
background-color: #555;
|
||||||
|
}
|
15
index.html
15
index.html
|
@ -12,16 +12,18 @@
|
||||||
th {
|
th {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
background-color: beige; /* Kolor tła nagłówka */
|
background-color: lightgray; /* Kolor tła nagłówka */
|
||||||
z-index: 10; /* Zapewnia, że nagłówek będzie nad innymi elementami */
|
z-index: 10; /* Zapewnia, że nagłówek będzie nad innymi elementami */
|
||||||
border: 1px solid #ddd; /* Opcjonalnie: Dodanie obramowania */
|
border: 1px solid #ddd; /* Opcjonalnie: Dodanie obramowania */
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="dark-background">
|
||||||
|
|
||||||
|
<h1 class="lead" style="font-size: 48px;"><em>Ocena Zachowania</em></h1>
|
||||||
|
|
||||||
|
|
||||||
<h1>Ocena Zachowania</h1>
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<button onclick="showTab('criteria')">Ocena z zachowania</button>
|
<button onclick="showTab('criteria')">Ocena z zachowania</button>
|
||||||
|
@ -168,15 +170,18 @@
|
||||||
<div id="stats-output"></div>
|
<div id="stats-output"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<hr class="footer-line">
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="footer-left">
|
<div class="footer-left">
|
||||||
<p>B. Hrynowiecki</p>
|
<p>B. Hrynowiecki</p>
|
||||||
<p>K. Michalak</p>
|
<p>K. Michalak</p>
|
||||||
<p>F. Kowalski</p>
|
<p>F. Kowalski</p>
|
||||||
|
<p>S. Ptak</p>
|
||||||
|
<p>M. Marszalik</p>
|
||||||
</div>
|
</div>
|
||||||
<hr class="footer-line">
|
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
<p>Led and Authored by M. Pabiszczak</p>
|
<p>M. Pabiszczak</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue