ponozky/assets/tabulka.css

36 lines
473 B
CSS
Raw Normal View History

2024-06-06 10:00:58 +02:00
body {
font-family: Arial, sans-serif;
margin: 20px;
2024-06-08 16:31:11 +02:00
2024-06-06 10:00:58 +02:00
}
h1 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 18px;
text-align: left;
}
th, td {
2024-06-08 16:31:11 +02:00
padding: 13px;
border-bottom: 4px solid #000000;
border: 2px solid #000000
2024-06-06 10:00:58 +02:00
}
thead {
2024-06-08 16:31:11 +02:00
background-color: #3752346b;
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 {
2024-06-08 16:31:11 +02:00
background-color: #a1a1a1;
2024-06-06 10:00:58 +02:00
}