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
### | |
# | |
# copy/paste me into your javascript console (as compiled JS) | |
# | |
### | |
# ----------------------------------------------------------------------------- | |
# ----------------------------------------------------------------------------- | |
# Load JQUERY (load this up first before doing anything else...) | |
# ----------------------------------------------------------------------------- |
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
li:before { | |
/* add space, create an "L" from borders, and rotate to make a checkmark */ | |
content:"\00a0"; | |
/* Make it a small rectangle so the border will create an L-shape */ | |
width: 6px; | |
height: 12px; | |
/* Add a white border on the bottom and left, creating that 'L' */ | |
border: solid #fff; |