Advertisement
painted_dreams87

Pinata Coding

Jan 19th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. <style>
  2. table, .sf {
  3. display: none;
  4. }
  5. .page table {
  6. display: table;
  7. }
  8. body {
  9. background-image: url("http://i.imgur.com/6ic8CJG.png");
  10. }
  11. #layout {
  12. width: 600px;
  13. height: 600px;
  14. margin: 0 auto;
  15. background-image: url("http://i.imgur.com/apoNh7s.png");
  16. }
  17. #main {
  18. font: 10pt tahoma;
  19. color: #000000;
  20. top: 175px;
  21. left: 30px;
  22. width: 400px;
  23. height: 400px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 400px;
  28. overflow: auto;
  29. }
  30. #nav {
  31. top: 200px;
  32. left: -200px;
  33. width: 190px;
  34. height: 390px;
  35. overflow: hidden;
  36. text-align: center;
  37. }
  38. .table {
  39. display: inline;
  40. text-align: left;
  41. }
  42. td {
  43. padding: 5px;
  44. font: 8pt tahoma;
  45. color: #000000;
  46. }
  47. h1 {
  48. font: 12pt tahoma;
  49. color: #b33d71;
  50. border-width: 1px;
  51. border-bottom-style: solid;
  52. border-color: #76ae3e;
  53. letter-spacing: 2px;
  54. line-height: 20px;
  55. }
  56. h2 {
  57. font: 10pt tahoma;
  58. color: #ffffff;
  59. text-align: center;
  60. background-color: #5a4681;
  61. letter-spacing: 2px;
  62. line-height: 18px;
  63. }
  64. h2:hover {
  65. font: 10pt tahoma;
  66. color: #5a4681;
  67. text-align: center;
  68. background-color: #ffffff;
  69. letter-spacing: 2px;
  70. line-height: 18px;
  71. }
  72. h3 {
  73. font: 10pt tahoma;
  74. color: #76ae3e;
  75. border-width: 1px;
  76. border-bottom-style: solid;
  77. border-color: #b33d71;
  78. letter-spacing: 2px;
  79. line-height: 18px;
  80. }
  81. b {
  82. color: #e1af4e;
  83. font: 10pt tahoma;
  84. font-weight: bold;
  85. line-height: 14px;
  86. }
  87. i {
  88. color: #b33d71;
  89. font: 10pt tahoma;
  90. font-style: italic;
  91. letter-spacing: 2px;
  92. line-height: 14px;
  93. }
  94. a:link, a:visited, a:active {
  95. color: #76ae3e;
  96. font: 10pt tahoma;
  97. text-decoration: none;
  98. }
  99. a:hover {
  100. color: #e1af4e;
  101. font: 10pt tahoma;
  102. text-decoration: none;
  103. }
  104. </style><br><br><br><div id="layout" style="position: relative;">
  105.  
  106.  
  107. <div id="nav" style="position: absolute;">
  108. <a href="#home" class="nav"><h2>Home</h2></a>
  109. <a href="#link1" class="nav"><h2>Link 1</h2></a>
  110. <a href="#link2" class="nav"><h2>Link 2</h2></a>
  111. </div>
  112.  
  113.  
  114. <div id="main" style="position: absolute;">
  115.  
  116. <a name="home"></a>
  117. <div class="page">
  118. <h1>Welcome!</h1>
  119. <p>
  120. <b>bold</b> <i>italic</i> <a href="/~slugclubministry">link</a>
  121. </p>
  122.  
  123. <h3>Header Three</h3>
  124. </div>
  125.  
  126.  
  127. <a name="link1"></a>
  128. <div class="page">
  129. <h1>Link</h1>
  130. <p>
  131. -
  132. </p>
  133. </div>
  134.  
  135.  
  136. <a name="link2"></a>
  137. <div class="page">
  138. <h1>Link</h1>
  139. <p>
  140. -
  141. </p>
  142. </div>
  143.  
  144.  
  145. </div>
  146. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement