Last active
September 16, 2021 11:22
-
-
Save tkadlec/3091105 to your computer and use it in GitHub Desktop.
Revisions
-
tkadlec revised this gist
Nov 6, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -3,7 +3,7 @@ <head> <title>Trigram for heaven icon</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style type="text/css"> li { list-style-type: none; -
tkadlec revised this gist
Oct 28, 2013 . 1 changed file with 1 addition and 0 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,3 +1,4 @@ <!DOCTYPE html> <html> <head> <title>Trigram for heaven icon</title> -
tkadlec revised this gist
Aug 16, 2012 . 1 changed file with 1 addition and 1 deletion.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 @@ -26,6 +26,6 @@ </style> </head> <body> <li id="menu"><a href="#">Menu</a></li> </body> </html> -
tkadlec revised this gist
Aug 16, 2012 . 1 changed file with 20 additions and 17 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 @@ -4,25 +4,28 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <style type="text/css"> li { list-style-type: none; } #menu{ position: relative; } #menu a{ padding-left: 1.25em; /* 20px/16px */ } #menu a:before { content: ""; position: absolute; top: 30%; left:0px; width:.75em; /* 12px/16px */ height:.125em; /* 2px/16px */ border-top: .375em double #000; /* 6px/16px */ border-bottom: .125em solid #000; /* 2px / 16px */ } </style> </head> <body> <li id="menu"><a href="#">Menu</a>></li> </body> </html> -
tkadlec created this gist
Jul 11, 2012 .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,28 @@ <html> <head> <title>Trigram for heaven icon</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <style type="text/css"> #menu{ position: relative; } #menu a{ padding-left: 20px; } #menu a:before { content: ""; position: absolute; top: 30%; left:0px; width:12px; height:2px; border-top: 6px double #000; border-bottom: 2px solid #000; } </style> </head> <body> <p id="menu"><a href="#">Menu</a></p> </body> </html>