Advertisement
PassionneDemoness

Untitled

Oct 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <style>
  4. /* Last Update: 03/31/18 */
  5.  
  6. /* PAGE BACKGROUND AND FONT */
  7. body {
  8. background-image: url(https://i.pinimg.com/originals/5d/51/99/5d5199a9cf40991eab4a6edb5db5b097.jpg);
  9. background-attachment:fixed;
  10. background-repeat:no-repeat;
  11. background-size:auto 100%;
  12. background-position:45%;
  13. background-color:#000000;
  14. font-family:Papyrus,'Trade Winds', serif;
  15. font-size:85%;
  16. text-align:center;
  17. }
  18.  
  19. /* MAIN DISPLAY COLORS */
  20. .color, #navbar a {
  21. background-color:#000000;
  22. border:2px solid #FF0000;
  23. color: #FF0000;
  24. opacity:0;
  25. }
  26. a {
  27. text-decoration:none;
  28. color:#ffffff;
  29. font-weight:bold;
  30. }
  31.  
  32. /* GOOGLE CHROME SCROLLBARS */
  33. ::-webkit-scrollbar {
  34. width:8px;
  35. height:8px;
  36. background-color:#000000;
  37. }
  38. ::-webkit-scrollbar-thumb:vertical {
  39. background-color: #FF0000;
  40. }
  41. ::-webkit-scrollbar-thumb:horizontal {
  42. background-color: #FF0000;
  43. }
  44.  
  45. /* CSS MEAT */
  46. #content {
  47. position:fixed;
  48. left:0%;
  49. right:0%;
  50. top:0%;
  51. bottom:0%;
  52. }
  53. #statbox, #infobox, #navbar, #navbar a {
  54. padding:1%;
  55. transition:1.5s;
  56. -o-transition:1.5s;
  57. -moz-transition:1.5s;
  58. -webkit-transition:1.5s;
  59. }
  60. #statbox {
  61. position:fixed;
  62. top:5%;
  63. left:0%;
  64. height:85%;
  65. width:25%;
  66. overflow-y:auto;
  67. }
  68. #infobox {
  69. position:fixed;
  70. top:5%;
  71. right:0%;
  72. height:80%;
  73. width:30%;
  74. }
  75. #navbar {
  76. position:fixed;
  77. top:95%;
  78. right:7.5%;
  79. height:95%;
  80. width:28%;
  81. padding:0%;
  82. }
  83. #content:hover #statbox {
  84. left:2.5%;
  85. opacity:0.9;
  86. }
  87. #content:hover #infobox {
  88. right:2.5%;
  89. opacity:0.9;
  90. }
  91. #content:hover #navbar {
  92. top:92.5%;
  93. }
  94. #content:hover #navbar a {
  95. opacity:0.9;
  96. }
  97. .tab {
  98. height:100%;
  99. width:100%;
  100. overflow-y:auto;
  101. }
  102. #statbox img, #infobox img {
  103. width:100%;
  104. }
  105. #credit {
  106. position:fixed;
  107. height:17px;
  108. right:1%;
  109. bottom:0%;
  110. background-color:#ffffff;
  111. border-radius:5px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement