Created
November 9, 2017 19:04
-
-
Save MoonTahoe/1cc2ef640363d698f45dfd0e434ecdcd 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
td:last-child { | |
padding: 5px; | |
width: 100px; | |
display: flex; | |
flex-direction: row; | |
align-items: center; | |
justify-content: space-around; | |
} | |
td div { | |
width: 20px; | |
height: 20px; | |
border: solid 1px; | |
border-radius: 50%; | |
cursor: pointer; | |
} | |
td div.open { | |
border-color: green; | |
} | |
td div.open.selected { | |
background-color: green; | |
} | |
td div.hold { | |
border-color: goldenrod; | |
} | |
td div.hold.selected { | |
background-color: goldenrod; | |
} | |
td div.closed { | |
border-color: red; | |
} | |
td div.closed.selected { | |
background-color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment