Advertisement
painted_dreams87

Susan Coding

Mar 21st, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 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("https://i.imgur.com/fNJ4FGF.png");
  10. }
  11. #layout {
  12. width: 694px;
  13. height: 717px;
  14. margin: 0 auto;
  15. background-image: url("https://i.imgur.com/O7G4d3Z.png");
  16. }
  17. #main {
  18. font: 9pt tahoma;
  19. color: #000000;
  20. top: 205px;
  21. left: 190px;
  22. width: 480px;
  23. height: 485px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 485px;
  28. overflow: auto;
  29. }
  30. #nav {
  31. top: 390px;
  32. left: 25px;
  33. width: 100px;
  34. height: 215px;
  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: 10pt tahoma;
  49. color: #ef967f;
  50. border-width: 1px;
  51. border-bottom-style: solid;
  52. border-color: #efde7f;
  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: #f5c28b;
  61. letter-spacing: 2px;
  62. line-height: 18px;
  63. }
  64. h2:hover {
  65. font: 10pt tahoma;
  66. color: #ffffff;
  67. text-align: center;
  68. background-color: #ef967f;
  69. letter-spacing: 2px;
  70. line-height: 18px;
  71. }
  72. h3 {
  73. font: 10pt tahoma;
  74. color: #ef967f;
  75. border-width: 1px;
  76. border-bottom-style: solid;
  77. border-color: #ecd6a9;
  78. letter-spacing: 2px;
  79. line-height: 18px;
  80. }
  81. b {
  82. color: #ef967f;
  83. font: 9pt tahoma;
  84. font-weight: bold;
  85. line-height: 14px;
  86. letter-spacing: 1px;
  87. }
  88. i {
  89. color: #efde7f;
  90. font: 9pt tahoma;
  91. font-style: italic;
  92. line-height: 14px;
  93. }
  94. a:link, a:visited, a:active {
  95. color: #e9c670;
  96. font: 10pt tahoma;
  97. text-decoration: none;
  98. }
  99. a:hover {
  100. color: #ef967f;
  101. font: 10pt tahoma;
  102. text-decoration: none;
  103. }
  104. .column {
  105. display: inline-block;
  106. width: 130px;
  107. padding: 5px;
  108. }
  109. </style><br><br><br><div id="layout" style="position: relative;">
  110.  
  111.  
  112. <div id="nav" style="position: absolute;">
  113. <h3>Navigation</h3>
  114. <a href="#home" class="nav"><h2>Home</h2></a>
  115. <a href="#link1" class="nav"><h2>Link 1</h2></a>
  116. <a href="#link2" class="nav"><h2>Link 2</h2></a>
  117. <a href="#link3" class="nav"><h2>Link 3</h2></a>
  118. <a href="#link4" class="nav"><h2>Link 4</h2></a>
  119. <a href="#link5" class="nav"><h2>Link 5</h2></a>
  120. </div>
  121.  
  122.  
  123. <div id="main" style="position: absolute;">
  124. <a name="home"></a>
  125. <div class="page">
  126. <h1>Header 1</h1>
  127. <b>Bold</b> <i>Italic</i> <a href="/">link</a>
  128.  
  129. <h3>Header 3</h3>
  130. </div>
  131.  
  132.  
  133. <a name="link1"></a>
  134. <div class="page">
  135. <h1>Header 1</h1>
  136. Page 2
  137. </div>
  138.  
  139.  
  140. <a name="link2"></a>
  141. <div class="page">
  142. <h1>Header 1</h1>
  143. Page 3
  144. </div>
  145.  
  146.  
  147. <a name="link3"></a>
  148. <div class="page">
  149. <h1>Header 1</h1>
  150. Page 4
  151. </div>
  152.  
  153.  
  154. <a name="link4"></a>
  155. <div class="page">
  156. <h1>Header 1</h1>
  157. Page 5
  158. </div>
  159.  
  160.  
  161.  
  162. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement