Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC>
- <!-- @NUCLEARVESSEL ON TUMBLR || PLEASE DON'T DELETE CREDIT -->
- <html>
- <head>
- <title>title</title> <!-- add page title here -->
- <link rel="shortcut icon" href="{Favicon}">
- <link href="https://fonts.googleapis.com/css?family=Bitter:400,400i,700|Overpass:400,400i,700,700i" rel="stylesheet">
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
- <style type="text/css">
- ::-moz-selection{background: #c83454; color: #f6f6f6;}
- ::selection {background: #c83454; color: #f6f6f6;}
- ::-webkit-scrollbar-thumb {background: #8a2037;}
- ::-webkit-scrollbar {background: #f6f6f6; width: 5px;}
- * {margin:0; padding:0;}
- body {
- background: #f6f6f6; /* change background color */
- color: #444444; /* change text color */
- font-family: Overpass; /* change font */
- font-size: 13px; /* change font size */
- text-align: justify;
- }
- #container {
- background: #ffffff;
- border-radius: 5px;
- height: 600px;
- left: 50%;
- margin-bottom: 40px;
- overflow: auto;
- padding: 20px;
- position: absolute;
- top: 50%;
- transform: translate(-50%,-50%);
- width: 1000px;
- }
- #draw {
- background-color: #f6f6f6;
- border-radius: 5px;
- float: left;
- height: 500px; /* change if you need more/less space */
- margin-top: 17px;
- padding: 10px;
- width: 200px;
- }
- #status {
- background-color: #f6f6f6;
- border-radius: 5px;
- float: left;
- height: 150px;
- margin-left: 45px;
- margin-top: 17px;
- padding: 10px;
- text-align: center;
- width: 450px;
- }
- #information {
- background-color: #f6f6f6;
- border-radius: 5px;
- float: left;
- height: 310px;
- margin-top: 20px;
- margin-left: 45px;
- overflow: auto;
- padding: 10px;
- width: 450px;
- }
- #rules {
- background-color: #f6f6f6;
- border-radius: 5px;
- float: right;
- height: 500px; /* change if you need more/less space */
- margin-top: 17px;
- padding: 10px;
- width: 200px;
- }
- #credit {
- background-color: #c83454;
- color: #ffffff;
- border-radius: 10px;
- bottom: 0;
- display: inline;
- margin: 10px;
- padding: 10px;
- position: fixed;
- right: 0;
- }
- .home {
- background-color: #c83454; /* background color of home button */
- color: #ffffff; /* color of icon */
- border-radius: 5px;
- display: inline;
- float: left;
- padding: 15px;
- }
- .home:hover, #credit:hover {
- background-color: #8a2037;
- -o-transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -webkit-transition: all 0.4s ease;
- }
- h1 {
- border-bottom: 1px solid #8a2037;
- color: #c83454;
- font-family: Bitter;
- font-size: 20px;
- margin-top: 15px;
- padding-bottom: 20px;
- text-align: center;
- }
- h2 {
- border-bottom: 1px solid #8a2037;
- border-radius: 5px;
- color: #c83454;
- font-family: Bitter;
- font-size: 16px;
- margin-bottom: 10px;
- padding: 5px;
- text-align: center;
- }
- a {
- color: #9e9e9e; /* link color */
- text-decoration: none;
- }
- a:hover {
- color: #222222; /* link hover color */
- -o-transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -webkit-transition: all 0.4s ease;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <a href="/">
- <div class="home">
- <i class="fa fa-home" style="font-size:15px"></i>
- </div>
- </a>
- <h1>Sticky Notes</h1>
- <!-- first box, left -->
- <div id="draw">
- <h2>I Will Draw...</h2>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 1
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 2
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 3
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 4
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 5
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 6
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 7
- <br>
- <i class="fa fa-check" style="font-size:15px"></i>
- Point 8
- <br>
- <h2>I Might Draw...</h2>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 1
- <br>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 2
- <br>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 3
- <br>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 4
- <br>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 5
- <br>
- <i class="fa fa-question" style="font-size:15px"></i>
- Point 6
- <br>
- <h2>I Will Not Draw...</h2>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 1
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 2
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 3
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 4
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 5
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 6
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 7
- <br>
- <i class="fa fa-thumbs-down" style="font-size:15px"></i>
- Point 8
- <br>
- </div>
- <!-- second box, middle top -->
- <div id="status">
- <h2>Status</h2>
- <b>COMMISSIONS STATUS:</b> text goes here. <br><br>
- <b>SLOTS OPEN:</b> text goes here. <br><br>
- <a href="">LINK 1</a>
- <i class="fa fa-star" style="font-size:15px"></i>
- <a href="">LINK 2</a>
- <i class="fa fa-star" style="font-size:15px"></i>
- <a href="">LINK 3</a>
- <i class="fa fa-star" style="font-size:15px"></i>
- <a href="">LINK 4</a>
- <i class="fa fa-star" style="font-size:15px"></i>
- <a href="">LINK 5</a>
- </div>
- <!-- third box, right -->
- <div id="rules">
- <h2>Rules</h2>
- <i class="fa fa-rocket" style="font-size:15px"></i>
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
- <br><br>
- <i class="fa fa-rocket" style="font-size:15px"></i>
- In ante metus dictum at tempor commodo ullamcorper a lacus. Nulla posuere sollicitudin aliquam ultrices sagittis orci a.
- <br><br>
- <i class="fa fa-rocket" style="font-size:15px"></i>
- Egestas congue quisque egestas diam in arcu cursus euismod quis. Scelerisque viverra mauris in aliquam sem. Tellus molestie nunc non blandit massa enim nec.
- <br><br>
- <i class="fa fa-rocket" style="font-size:15px"></i>
- Velit laoreet id donec ultrices tincidunt arcu. Elit pellentesque habitant morbi tristique senectus et netus et malesuada.
- <br><br>
- <i class="fa fa-rocket" style="font-size:15px"></i>
- Quisque egestas diam in arcu cursus. Varius duis at consectetur lorem donec massa. Mollis nunc sed id semper risus in hendrerit.
- </div>
- <!-- fourth box, middle bottom -->
- <div id="information">
- <h2>Details & Prices</h2>
- <h3>Type of Commission // $10</h3>
- <i>Here you can put a short description of what you're selling. This is <b>bold text</b>, this is <u>underlined text</u> and this is <a href="">a link</a>.</i>
- <br><br>
- <h3>Type of Commission // $10</h3>
- <i>Here you can put a short description of what you're selling. This is <b>bold text</b>, this is <u>underlined text</u> and this is <a href="">a link</a>.</i>
- <br><br>
- <h3>Type of Commission // $10</h3>
- <i>Here you can put a short description of what you're selling. This is <b>bold text</b>, this is <u>underlined text</u> and this is <a href="">a link</a>.</i>
- <br><br>
- <h3>Type of Commission // $10</h3>
- <i>Here you can put a short description of what you're selling. This is <b>bold text</b>, this is <u>underlined text</u> and this is <a href="">a link</a>.</i>
- <br><br>
- <h3>Type of Commission // $10</h3>
- <i>Here you can put a short description of what you're selling. This is <b>bold text</b>, this is <u>underlined text</u> and this is <a href="">a link</a>.</i>
- <br><br>
- </div>
- </div>
- <!-- don't edit beyond this point please! colors can be modified in <style> -->
- <a target="blank" href="https://nuclearvessel.tumblr.com/"><div id="credit"><i class="fa fa-star" style="font-size:15px"></i></div></a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment