Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC>
- <!-- @NUCLEARTHEMES ON TUMBLR || PLEASE DON'T DELETE CREDIT -->
- <html>
- <head>
- <title>{Name} / solitude</title> <!-- add page title here -->
- <link rel="shortcut icon" href="{Favicon}">
- <link href="https://fonts.googleapis.com/css?family=Poppins: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">
- /* custom colors for selection */
- ::-moz-selection {background: #7459cf; color: #f0f0f0;}
- ::selection {background: #7459cf; color: #f0f0f0;}
- /* custom scrollbar */
- ::-webkit-scrollbar-thumb {background: #7459cf;}
- ::-webkit-scrollbar {background: #ab98e8; width: 5px;}
- * {margin:0; padding:0;}
- body {
- background: #f0f0f0; /* change background color */
- color: #4a4a4a; /* change text color */
- font-family: Poppins; /* change font */
- font-size: 13px; /* change font size */
- text-align: justify;
- }
- #container {
- background: #cbbff3; /* change container background color */
- border-radius: 10px;
- height: 600px;
- left: 50%;
- margin-bottom: 40px;
- overflow: auto;
- padding: 20px;
- position: absolute;
- top: 50%;
- transform: translate(-50%,-50%);
- width: 750px;
- -ms-overflow-style: none;
- }
- #container::-webkit-scrollbar {
- display: none;
- }
- h1 { /* page title */
- color: #7459cf;
- font-family: Poppins;
- font-size: 30px;
- margin-bottom: 10px;
- padding-bottom: 10px;
- text-align: right;
- text-transform: uppercase;
- }
- h2 { /* story titles */
- color: #b5ffea;
- font-family: Poppins;
- font-size: 16px;
- margin: 2px;
- text-align: left;
- }
- a {
- color: #7459cf; /* link color */
- text-decoration: none;
- }
- a:hover {
- color: #b5ffea; /* link hover color */
- transition: 0.4s;
- }
- #contentcontainer { /* bordered container for content */
- border: 1px solid #b5ffea;
- border-top: none;
- height: 470px;
- overflow: auto;
- padding: 6px 12px;
- -ms-overflow-style: none;
- }
- #contentcontainer::-webkit-scrollbar {
- display: none;
- }
- #topbanner { /* colored banner above content */
- background-color: #ab98e8;
- border: 1px solid #b5ffea;
- height: 48px;
- overflow: hidden;
- }
- .chaptercontainers { /* story boxes */
- float: left;
- height: 160px;
- margin: 10px 10px 10px 5px;
- width: 347px;
- }
- .numbers { /* number box */
- background-color: #b5ffea;
- border-radius: 10px 0px 0px 0px;
- border-right: 5px solid #ab98e8;
- float: left;
- font-size: 20px;
- font-weight: bold;
- height: 30px;
- padding: 3px 0px 0px 0px;
- text-align: center;
- width: 35px;
- }
- .titles { /* title box */
- background-color: #7459cf;
- border-radius: 0px 10px 0px 0px;
- float: right;
- height: 30px;
- padding: 3px 0px 0px 5px;
- width: 302px;
- }
- .chapterlist { /* linkbox */
- background-color: #ab98e8;
- border-radius: 0px 0px 10px 10px;
- float: left;
- height: 130px;
- overflow-y: scroll;
- width: 347px;
- }
- .links { /* individual link boxes */
- border-radius: 5px;
- display: block;
- margin: 5px;
- padding: 8px;
- text-transform: uppercase;
- }
- .links:hover { /* link box on hover */
- background-color: #7459cf;
- padding-left: 20px;
- transition: 0.4s;
- }
- #home {
- background-color: #7459cf;
- border-radius: 10px;
- color: #cbbff3;
- display: inline;
- float: left;
- margin-right: 5px;
- padding: 15px;
- }
- #credit {
- background-color: #7459cf;
- color: #cbbff3;
- border-radius: 12px;
- bottom: 0;
- display: inline;
- margin: 8px;
- padding: 8px;
- position: fixed;
- right: 0;
- }
- #credit:hover, #home:hover {
- background-color: #b5ffea;
- transition: 0.4s;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <a href="/">
- <div id="home">
- <i class="fa fa-home" style="font-size:15px"></i>
- </div>
- </a>
- <h1>solitude</h1> <!-- main title -->
- <div id="topbanner"></div>
- <div id="contentcontainer">
- <!-- START BLOCKS -->
- <div class="chaptercontainers">
- <div class="numbers">1</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <div class="chaptercontainers">
- <div class="numbers">2</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <div class="chaptercontainers">
- <div class="numbers">3</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <div class="chaptercontainers">
- <div class="numbers">4</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <div class="chaptercontainers">
- <div class="numbers">5</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <div class="chaptercontainers">
- <div class="numbers">6</div>
- <div class="titles">
- <h2>Story Title</h2>
- </div>
- <div class="chapterlist">
- <a class="links" href="/">chapter 1</a>
- <a class="links" href="/">chapter 2</a>
- <a class="links" href="/">chapter 3</a>
- <a class="links" href="/">chapter 4</a>
- <a class="links" href="/">chapter 5</a>
- </div>
- </div>
- <!-- END BLOCKS -->
- </div>
- </div>
- <!-- don't edit beyond this point please! colors can be modified in <style> -->
- <a id="credit" target="blank" href="https://nuclearthemes.tumblr.com/"><i class="fa fa-anchor" style="font-size:15px"></i></a>
- </body>
- </html>
Add Comment
Please, Sign In to add comment