Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html id="page">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <link rel="stylesheet" href="stylesheet.css">
  6. <script src="script.js"></script>
  7. <script src="jquery.js"></script>
  8. </head>
  9. <body>
  10. <img id="backgroundimg" onload="fadeIn(backgroundimg)" src="C:UsersJessica and LarryDesktopProjectsTest Template 1imgbackground1.jpg">
  11. <div id="navpane">
  12. <ul id="options">
  13. <li><button id="shirtdrop"><a>Shirts</a></button></li><li><button id="shoedrop"><a>Pants</a></button></li><li><button id="pantsdrop"><a>Shoes</a></button></li>
  14. </ul>
  15. </div>
  16. <div id="photochanger">
  17. <img>
  18. </div>
  19. </body>
  20. </html>
  21.  
  22. header {
  23. width: 100%;
  24. }
  25.  
  26. body {
  27. margin: 0;
  28. height: 100%;
  29. }
  30.  
  31. #page {
  32. height: 100%;
  33. width: 100%;
  34. margin: 0;
  35. padding: 0;
  36. }
  37.  
  38. #backgroundimg {
  39. display: none;
  40. opacity: 0.4;
  41. width: 100%;
  42. height: 100%;
  43. padding: 0;
  44. margin: 0;
  45. }
  46.  
  47. #navpane {
  48. text-align: center;
  49. height: 60px;
  50. width: 100%;
  51. background: #d7dfed;
  52. position: absolute;
  53. opacity: 0.4;
  54. top: 0;
  55. }
  56.  
  57. #options {
  58. list-style: none;
  59. max-width: 100%;
  60. margin: 0;
  61. padding: 0 10%;
  62.  
  63. }
  64.  
  65. #options li {
  66. display: inline-block;
  67. padding: 0 10%;
  68. margin: 0;
  69. text-align: none;
  70. }
  71.  
  72. #options a {
  73. float: left;
  74. font-size: 30px;
  75. padding: 15px 0px;
  76. }
  77.  
  78. #shirtdrop {
  79. background-color: inherit;
  80. outline: none;
  81. border: none;
  82. padding: 0;
  83. }
  84.  
  85. #shoedrop {
  86. max-width: 140px;
  87. background-color: inherit;
  88. outline: none;
  89. border: none;
  90. padding: 0;
  91. }
  92.  
  93. #pantsdrop {
  94. background-color: inherit;
  95. outline: none;
  96. border: none;
  97. padding: 0;
  98. }
  99.  
  100. #photochanger {
  101. position: absolute;
  102. height: 20%;
  103. width: 70%;
  104. border: black;
  105. border-width: 1px;
  106. border-style: solid;
  107. bottom: 45%;
  108. left: 15%;
  109. }
Add Comment
Please, Sign In to add comment