Created
October 7, 2024 12:18
-
-
Save uicodee/5cff4ace91b15d8a91694d092d9ae38e to your computer and use it in GitHub Desktop.
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
| * { | |
| margin: 0; | |
| padding: 0; | |
| font-family: "Poppins", sans-serif; | |
| } | |
| table { | |
| border: none; | |
| } | |
| td { | |
| font-size: 14px; | |
| } | |
| table, | |
| th, | |
| td { | |
| padding: 20px; | |
| border: 1px solid #ccc; | |
| border-collapse: collapse; | |
| background-color: #f7f7f7; | |
| } | |
| th { | |
| font-weight: 500; | |
| } | |
| .tags { | |
| display: flex; | |
| column-gap: 5px; | |
| } | |
| .tags > span { | |
| padding: 6px 10px; | |
| border-radius: 5px; | |
| font-size: 12px; | |
| } | |
| .pink { | |
| background-color: #ffcff4; | |
| } | |
| .green { | |
| background-color: #90fcb4; | |
| } | |
| .yellow { | |
| background-color: #fff4ab; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment