Skip to content

Instantly share code, notes, and snippets.

@andrunix
Created March 25, 2016 19:36
Show Gist options
  • Select an option

  • Save andrunix/77776e8260512697fb12 to your computer and use it in GitHub Desktop.

Select an option

Save andrunix/77776e8260512697fb12 to your computer and use it in GitHub Desktop.

Revisions

  1. andrunix created this gist Mar 25, 2016.
    41 changes: 41 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
    margin: 0;
    padding: 0;
    }
    .verify-bar {
    background-color: #f66;
    height: 30px;
    padding: 4px;
    margin-top: 15px;
    width: 95%;
    }
    .navbar {
    /* display: none; */
    background-color: #6f6;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 30px;
    width: 90%;
    }
    .container {
    background-color: #66f;
    min-height: 600px;
    }
    </style>
    </head>
    <body>
    <header>
    <div class="navbar">navbar</div>
    </header>
    <div class="verify-bar">verify</div>
    <div class="container">
    <div> container</div>
    </div>
    </body>
    </html>