1234567891011121314151617181920212223242526272829303132 |
- body {
- background-color: #230b36;
- font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
- display: flex;
- justify-content: center;
- }
- table {
- border-collapse: collapse;
- color: #000000;
- }
- caption {
- padding: 10px;
- color: white;
- background: #8fd4c1;
- font-size: 18px;
- text-align: left;
- font-weight: bold;
- }
- th {
- border-bottom: 3px solid #b9b29f;
- padding: 10px;
- text-align: left;
- }
- td {
- padding: 10px;
- }
- tr:nth-child(odd) {
- background: white;
- }
- tr:nth-child(even) {
- background: #e8e6d1;
- }
|