ponozky/assets/tabulka.css
2024-06-08 16:31:11 +02:00

36 lines
473 B
CSS

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: 13px;
border-bottom: 4px solid #000000;
border: 2px solid #000000
}
thead {
background-color: #3752346b;
}
tbody tr:nth-child {
background-color: #f1f1f1;
}
tbody tr:hover {
background-color: #a1a1a1;
}