Advertisement
painted_dreams87

Rae Ravenclaw Coding

Feb 24th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. <style>
  2. table {
  3. display: none;
  4. }
  5. .page table {
  6. display: table;
  7. }
  8. body {
  9. background-image: url("http://i.imgur.com/HnKh5yJ.png");
  10. }
  11. #layout {
  12. width: 900px;
  13. height: 700px;
  14. margin: 0 auto;
  15. background-image: url("http://i.imgur.com/6FIGVBS.png");
  16. }
  17. #main {
  18. font: 9pt tahoma;
  19. color: #000000;
  20. top: 145px;
  21. left: 165px;
  22. width: 375px;
  23. height: 520px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 520px;
  28. overflow: auto;
  29. }
  30. #navleft {
  31. top: 175px;
  32. left: 27px;
  33. width: 115px;
  34. height: 500px;
  35. overflow: hidden;
  36. text-align: center;
  37. }
  38. #navright {
  39. top: 435px;
  40. left: 563px;
  41. width: 290px;
  42. height: 235px;
  43. overflow: hidden;
  44. text-align: center;
  45. }
  46. h1 {
  47. font-family: times;
  48. font-size: 20px;
  49. font-weight: normal;
  50. color: #e5d4c8;
  51. letter-spacing: 1px;
  52. line-height: 20px;
  53. text-align: left;
  54. padding-left: 15px;
  55. font-style: italic;
  56. background: #485ab4;
  57. border-left: 30px solid #cc9079;
  58. }
  59. h2 {
  60. font: 8pt tahoma;
  61. color: #ffe0d7;
  62. text-align: center;
  63. background-color: #866058;
  64. letter-spacing: 2px;
  65. line-height: 16px;
  66. }
  67. h2:hover {
  68. font: 8pt tahoma;
  69. color: #ffe0d7;
  70. text-align: center;
  71. background-color: #2b3e6d;
  72. letter-spacing: 2px;
  73. line-height: 16px;
  74. }
  75. h3 {
  76. font: 6pt tahoma;
  77. color: #ffe0d7;
  78. text-align: center;
  79. background-color: #2b3e6d;
  80. letter-spacing: 2px;
  81. line-height: 12px;
  82. }
  83. h3:hover {
  84. font: 6pt tahoma;
  85. color: #ffe0d7;
  86. text-align: center;
  87. background-color: #866058;
  88. letter-spacing: 2px;
  89. line-height: 12px;
  90. }
  91. h4 {
  92. font-family: verdana;
  93. font-size: 11px;
  94. font-weight: normal;
  95. color: #e5d4c8;
  96. letter-spacing: 2px;
  97. text-transform: uppercase;
  98. line-height: 13px;
  99. text-align: center;
  100. background: #485ab4;
  101. border-right: 80px solid #cc9079;
  102. border-left: 80px solid #cc9079;
  103. }
  104. b {
  105. color: #485ab4;
  106. font: 10pt tahoma;
  107. font-weight: bold;
  108. line-height: 14px;
  109. }
  110. i {
  111. color: #ba8a7a;
  112. font: 10pt tahoma;
  113. font-style: italic;
  114. line-height: 14px;
  115. }
  116. a:link, a:visited, a:active {
  117. color: #6f78cf;
  118. font: 10pt tahoma;
  119. text-decoration: none;
  120. }
  121. a:hover {
  122. color: #ba8a7a;
  123. font: 10pt tahoma;
  124. text-decoration: none;
  125. }
  126. </style><br><br><br><div id="layout" style="position: relative;">
  127.  
  128.  
  129. <div id="navleft" style="position: absolute;">
  130. <center>
  131. <a href="#home"><h2>Home</h2></a>
  132. <a href="#example"><h2>Example</h2></a>
  133. </center>
  134.  
  135. </div>
  136.  
  137. <div id="navright" style="position: absolute;">
  138. <center>
  139. <a href="#activity"><h3>Activity</h3></a>
  140. <a href="#activity"><h3>Activity</h3></a>
  141. </center>
  142.  
  143. </div>
  144.  
  145.  
  146. <div id="main" style="position: absolute;">
  147. <a name="home"></a>
  148. <div class="page">
  149. <h1>Welcome!</h1>
  150. <b>bold</b> <i>italic</i> <a href="/~slugclubministry">link</a>
  151.  
  152. <h4>Header Four</h4>
  153. </div>
  154.  
  155.  
  156.  
  157. <a name="example"></a>
  158. <div class="page">
  159. <h1>Example</h1>
  160. -
  161. </div>
  162.  
  163.  
  164. <a name="activity"></a>
  165. <div class="page">
  166. <h1>Activity</h1>
  167. -
  168. </div>
  169.  
  170.  
  171.  
  172.  
  173. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement