Last active
August 14, 2017 21:10
-
-
Save dsdsdsdsdsds/edecc3c8360198343e96 to your computer and use it in GitHub Desktop.
Revisions
-
dsdsdsdsdsds revised this gist
Aug 14, 2017 . 1 changed file with 4 additions and 8 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,15 @@ ul { position: relative; margin-left: 0; padding-left: 1em; list-style-type: none; li { &:before { content: "?"; position: absolute; left: 0; } } } -
dsdsdsdsdsds revised this gist
Mar 20, 2016 . No changes.There are no files selected for viewing
-
dsdsdsdsdsds created this gist
Mar 20, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ $list-indent: 1em; ul { // Reset default styles margin-left: 0; padding-left: 0; list-style-type: none; li { position: relative; margin-left: $list-indent; &:before { position: absolute; left: -$list-indent; content: "?"; } } }