46 lines
674 B
CSS
46 lines
674 B
CSS
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 10px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
|
|
th, td {
|
|
border: 1px solid #ccc;
|
|
padding: 8px 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
th {
|
|
background-color: #f2f2f2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
gap: 20px;
|
|
padding: 15px 25px;
|
|
border-bottom: 1px solid #ccc;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
nav a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
|
|
nav a:hover {
|
|
text-decoration: underline;
|
|
}
|