ponozky/assets/tabulka.css

34 lines
473 B
CSS
Raw Normal View History

2024-06-06 10:00:58 +02:00
body {
2024-06-09 17:08:02 +02:00
font-family: Arial, sans-serif;
2024-06-06 10:00:58 +02:00
}
h1 {
text-align: center;
}
table {
2024-06-08 17:00:51 +02:00
width: 120%;
2024-06-06 10:00:58 +02:00
border-collapse: collapse;
2024-06-08 16:57:55 +02:00
margin: 20px 0; font-family:serif;
2024-06-06 10:00:58 +02:00
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 {
2024-06-08 17:06:13 +02:00
background-color: #c0c0c0;
2024-06-06 10:00:58 +02:00
}
tbody tr:hover {
2024-06-08 17:06:13 +02:00
background-color: #7a7a7a;
2024-06-06 10:00:58 +02:00
}