ponozky/assets/tabulka.css

34 lines
437 B
CSS
Raw Normal View History

2024-06-06 10:00:58 +02:00
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 18px;
text-align: left;
}
th, td {
padding: 12px;
2024-06-06 10:11:49 +02:00
border-bottom: 1px solid #000000;
2024-06-06 10:00:58 +02:00
}
thead {
2024-06-06 10:11:49 +02:00
background-color: #5c5b5b6b;
2024-06-06 10:00:58 +02:00
}
2024-06-08 16:16:25 +02:00
tbody tr:nth-child {
background-color: #f1f1f1;
2024-06-06 10:00:58 +02:00
}
tbody tr:hover {
background-color: #f1f1f1;
}