Last active
November 16, 2020 16:34
-
-
Save chiroptical/f0efafe2e54c6cf0481bfe4a58c6f69b to your computer and use it in GitHub Desktop.
CRC Status CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table { | |
width: 100%; | |
text-align: center; | |
color: rgb(230 230 230 / 1); | |
} | |
table, | |
th, | |
td { | |
border: 1px solid black; | |
} | |
tr:nth-child(odd) { | |
background-color: #003594; | |
} | |
tr:nth-child(even) { | |
background-color: #ffb81c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment