Skip to content

Instantly share code, notes, and snippets.

@tkadlec
Last active September 16, 2021 11:22
Show Gist options
  • Select an option

  • Save tkadlec/3091105 to your computer and use it in GitHub Desktop.

Select an option

Save tkadlec/3091105 to your computer and use it in GitHub Desktop.

Revisions

  1. tkadlec revised this gist Nov 6, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion trigram.html
    Original 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" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type="text/css">
    li {
    list-style-type: none;
  2. tkadlec revised this gist Oct 28, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions trigram.html
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,4 @@
    <!DOCTYPE html>
    <html>
    <head>
    <title>Trigram for heaven icon</title>
  3. tkadlec revised this gist Aug 16, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion trigram.html
    Original file line number Diff line number Diff line change
    @@ -26,6 +26,6 @@
    </style>
    </head>
    <body>
    <li id="menu"><a href="#">Menu</a>></li>
    <li id="menu"><a href="#">Menu</a></li>
    </body>
    </html>
  4. tkadlec revised this gist Aug 16, 2012. 1 changed file with 20 additions and 17 deletions.
    37 changes: 20 additions & 17 deletions trigram.html
    Original 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">
    #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;
    }
    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>
    <p id="menu"><a href="#">Menu</a></p>
    <li id="menu"><a href="#">Menu</a>></li>
    </body>
    </html>
  5. tkadlec created this gist Jul 11, 2012.
    28 changes: 28 additions & 0 deletions trigram.html
    Original 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>