Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>Extragram</title>
- <style type="text/css">
- @import url(http://fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext);
- .font {
- font-family: Lobster, Helvetica, Arial, sans-serif;
- }
- #header {
- position: absolute;
- margin: 0;
- width: 100%;
- top: 0;
- padding: 0;
- left: 0;
- height: 45px;
- background: #7d7e7d; /* Old browsers */
- background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* IE10+ */
- background: linear-gradient(to bottom, #7d7e7d 0%,#0e0e0e 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
- }
- #header table {
- margin: 0;
- padding: 0;
- top: 0;
- position: absolute;
- }
- #header h1 {
- font-family: Lobster, Helvetica, Arial, sans-serif;
- color: white;
- text-shadow: 0px 0px 1px black;
- /* text-align: center;*/
- margin: 0;
- width: 128px;
- }
- .headerbtn {
- position: relative;
- float: right;
- margin: 0;
- }
- body {
- overflow-x: hidden;
- width: 100%;
- height: 100%;
- background: #0e0e0e; /* Old browsers */
- background: -moz-linear-gradient(left, #0e0e0e 1%, #3f3f3f 47%, #0e0e0e 99%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, right top, color-stop(1%,#0e0e0e), color-stop(47%,#3f3f3f), color-stop(99%,#0e0e0e)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(left, #0e0e0e 1%,#3f3f3f 47%,#0e0e0e 99%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(left, #0e0e0e 1%,#3f3f3f 47%,#0e0e0e 99%); /* Opera 11.10+ */
- background: -ms-linear-gradient(left, #0e0e0e 1%,#3f3f3f 47%,#0e0e0e 99%); /* IE10+ */
- background: linear-gradient(to right, #0e0e0e 1%,#3f3f3f 47%,#0e0e0e 99%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e0e0e', endColorstr='#0e0e0e',GradientType=1 ); /* IE6-9 */
- }
- .button {
- display: inline-block;
- zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
- *display: inline;
- vertical-align: baseline;
- margin: 0 2px;
- outline: none;
- cursor: pointer;
- text-align: center;
- text-decoration: none;
- font: 14px/100% Arial, Helvetica, sans-serif;
- padding: .5em 2em .55em;
- text-shadow: 0 1px 1px rgba(0,0,0,.3);
- -webkit-border-radius: .5em;
- -moz-border-radius: .5em;
- border-radius: .5em;
- -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
- -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
- box-shadow: 0 1px 2px rgba(0,0,0,.2);
- color: #d9eef7;
- border: solid 1px #0076a3;
- background: #0095cd;
- background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
- background: -moz-linear-gradient(top, #00adee, #0078a5);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
- }
- .button:hover {
- text-decoration: none;
- background: #007ead;
- background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
- background: -moz-linear-gradient(top, #0095cc, #00678e);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
- }
- .button:active {
- position: relative;
- top: 1px;
- color: #80bed6;
- background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
- background: -moz-linear-gradient(top, #0078a5, #00adee);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
- }
- </style>
- </head>
- <body>
- <div id="all">
- <div id="header">
- <!-- tableless didn't work. fuck you with your webstandards -->
- <table>
- <tr>
- <td width="80%">
- <h1>Extragram</h1>
- </td>
- <td>
- <a href="#" class="headerbtn button" id="fblink">
- Facebook
- </a>
- </td>
- <td>
- <a href="#" class="headerbtn button" id="dllink">
- Download
- </a>
- </td>
- </tr>
- </table>
- </div>
- <div id="display">
- <img src="#" id="displayimg" />
- </div>
- <div id="gallery">
- <table>
- <tr>
- </tr>
- <tr>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment