Last active
October 3, 2018 07:19
-
-
Save johnhw/d3e2237f401e315d68edff8aef89ec48 to your computer and use it in GitHub Desktop.
CSS for jupyter cell highlight
This file contains 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
div.cell.text_cell.rendered.selected | |
{ | |
border: 4px solid orange; | |
} | |
div.cell.code_cell.rendered.selected | |
{ | |
border: 4px solid orange; | |
} | |
blockquote{ | |
background-color: #e7e7e7; | |
padding-top: 1em; | |
padding-bottom: 1em; | |
font-size: 16pt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment