Advertisement
Noir-Et-Blanc

Page 10. Chara Page {Dessert}

Jun 15th, 2017
868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.82 KB | None | 0 0
  1. <!-- Page 10. Masterlist
  2.  
  3. {. Dessert .}
  4.  
  5. Page #10. (Character Masterlist)
  6. http://noiretblanc-themes.tumblr.com/
  7.  
  8. Please don't use this theme as a base or claim it as your own.
  9. You are free to edit this page as much as you want, please just don't erase the credits.
  10.  
  11. -->
  12.  
  13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  14. <html xmlns="http://www.w3.org/1999/xhtml">
  15. <head>
  16. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  17. <link rel="shortcut icon" href="{Favicon}">
  18. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  19. <link href="https://fonts.googleapis.com/css?family=Abel|Life+Savers" rel="stylesheet">
  20. <title>{Title}</title>
  21.  
  22. <style>
  23.  
  24. ::-webkit-scrollbar-track
  25. {
  26. background-color: #ffffff;
  27. }
  28.  
  29. ::-webkit-scrollbar
  30. {
  31. width: 5px;
  32. background-color: #F696AA;
  33. }
  34.  
  35. ::-webkit-scrollbar-thumb
  36. {
  37. background-color: #f07e96;
  38. background-image: -webkit-linear-gradient(45deg,
  39. rgba(255, 255, 255, .5) 25%,
  40. transparent 25%,
  41. transparent 50%,
  42. rgba(255, 255, 255, .5) 50%,
  43. rgba(255, 255, 255, .5) 75%,
  44. transparent 75%,
  45. transparent)
  46. }
  47.  
  48. body{
  49. margin:0;
  50. padding:0;
  51. font-family: 'Abel', sans-serif;
  52. }
  53.  
  54. a{
  55. -moz-transition:all .4s ease-in-out;
  56. -webkit-transition:all .4s ease-in-out;
  57. -o-transition:all .4s ease-in-out;
  58. transition:all .4s ease-in-out;
  59. }
  60.  
  61. #content{
  62. position: absolute;
  63. left:80px;
  64. right: 80px;
  65. top:80px;
  66. bottom: 0;
  67. background: white; /* Center bg color */
  68. z-index: 1;
  69. padding: 10px;
  70. min-width: 500px;
  71. }
  72.  
  73. .lb, .tb, .rb, .bb{
  74. background: url("https://i.imgur.com/YfDfP8r.png"); /* Border BG image */
  75. }
  76.  
  77. .lb{
  78. position: fixed;
  79. left: 0;
  80. width: 80px;
  81. height: 100%;
  82. z-index: 5;
  83. }
  84.  
  85. .tb{
  86. position: fixed;
  87. left: 0;
  88. right: 0;
  89. height: 80px;
  90. z-index: 4;
  91. }
  92.  
  93. .rb{
  94. position: fixed;
  95. right: 0;
  96. width: 80px;
  97. height: 100%;
  98. z-index: 3;
  99. }
  100.  
  101. .tt{
  102. position: fixed;
  103. z-index: 100;
  104. font-size: 40px;
  105. left:100px;
  106. top:45px;
  107. font-family: 'Life Savers', cursive;
  108. text-shadow: 3px 3px 10px rgba(150, 150, 150, 1);
  109. }
  110.  
  111. .topbar{
  112. position: fixed;
  113. z-index: 10;
  114. width: 100%;
  115. height: 80px;
  116. text-align: center;
  117. min-width: 500px;
  118. }
  119.  
  120. .topbar a{
  121. margin: 30px 10px;
  122. text-decoration: none;
  123. display: inline-block;
  124. background: rgb(255, 255, 255); /* Links bg */
  125. color: #454153; /* Links font color */
  126. height: 50px;
  127. padding: 15px;
  128. box-sizing: border-box;
  129. border-radius: 5px 5px 0 0;
  130. border-bottom: 4px solid transparent;
  131. font-family: 'Life Savers', cursive;
  132. }
  133.  
  134.  
  135. .topbar a:hover:nth-child(odd) {
  136. border-bottom: 4px solid #ff7592; /* Links hover border color */
  137. }
  138.  
  139. .topbar a:hover:nth-child(even) {
  140. border-bottom: 4px solid #74efff; /* Links hover border color */
  141. }
  142.  
  143. .topbar i{
  144. padding-top: 3px;
  145. font-size: 16px
  146. }
  147.  
  148. /*charas*/
  149.  
  150. .container {
  151. position:relative;
  152. overflow:hidden;
  153. margin: 10px;
  154. display: inline-block;
  155. border-radius:15px;
  156. }
  157.  
  158. .container img{
  159. max-height: 300px;
  160. }
  161.  
  162. .container .textbox {
  163. color: white; /* Character descriptions font color */
  164. width:200px;
  165. height:300px;
  166. position:absolute;
  167. top:0;
  168. left:0;
  169. margin-top:-300px;
  170. border-radius:15px;
  171. background-color: rgba(22, 26, 44, 0.7);
  172.  
  173. }
  174. .container:hover .textbox {
  175. margin-top:0;
  176. }
  177. .textbox p{
  178. padding: 0 10px 10px 10px;
  179. margin: 0;
  180. text-align: left;
  181. }
  182.  
  183. .textbox {
  184. -webkit-transition: all 0.7s ease;
  185. transition: all 0.7s ease;
  186. text-align: center;
  187. overflow: auto;
  188.  
  189. }
  190.  
  191. h1{
  192. display: inline-block;
  193. margin-top: 12px;
  194. border-top: 3px solid #10d3ad; /* Name boder color top */
  195. border-bottom: 3px solid #10d3ad; /* Name boder color bottom */
  196. font-size: 24px;
  197. padding-bottom: 2px;
  198. }
  199.  
  200. b{
  201. color: #ffb0d1; /* Character descriptions bold font color */
  202. }
  203.  
  204. .container a{
  205. display: inline-block;
  206. color: inherit;
  207. text-decoration: none;
  208. padding-left: 20px;
  209. }
  210.  
  211.  
  212.  
  213. </style>
  214. </head>
  215.  
  216. <body>
  217.  
  218. <div class="lb"></div> <div class="tb"></div> <div class="rb"></div>
  219.  
  220. <div class="tt">Masterlist</div>
  221.  
  222. <div class="topbar">
  223. <a href="/">Back</a>
  224. <a href="/ask">Ask</a>
  225. <a href="/">Link 1</a>
  226. <a href="/">Link 2</a>
  227. <a href="/">Link 3</a>
  228. <a href="http://noiretblanc-themes.tumblr.com" class="cr"><i class="fa fa-code" aria-hidden="true"></i></a>
  229. </div>
  230.  
  231. <div id="content">
  232. <!-- All characters must go below this line -->
  233.  
  234.  
  235. <!-- Copy from here to create a new character -->
  236. <div class="container">
  237. <img src="https://i.imgur.com/octnI09.png"> <!-- Image size recommended: 200x300 px-->
  238. <div class="textbox">
  239.  
  240. <h1>Character Name</h1>
  241.  
  242. <p class="text">
  243. <b>Fandom:</b> Info<br>
  244. <b>Age:</b> 00 <br>
  245. <b>Ships:</b><br> Person1, Person2, Person3<br><br>
  246.  
  247. Here's some data about the character. Insert anything you want.<br><br>
  248.  
  249. <b>Tags:</b><br>
  250. <a href="">Tag1</a> <a href="">Tag2</a> <a href="">Tag3</a>
  251. </p>
  252.  
  253. </div>
  254. </div>
  255. <!-- End of new character -->
  256.  
  257.  
  258. <!-- All characters must go above this line -->
  259. </div>
  260.  
  261.  
  262.  
  263. </body>
  264. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement