Untitled

 avatar
unknown
plain_text
a year ago
529 B
1
Indexable
/* Font Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #191970; /* MidnightBlue */
}

/* Heading Styles */
h1, h2 {
    color: inherit;
}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}

th, td {
    border: 1px solid #696969; /* DimGray */
    text-align: left;
    padding: 8px;
}

/* Optional: Style for alternating rows */
tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}
Leave a Comment