Advertisement
HeroGeek

Sailor

Feb 28th, 2020
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. <style>
  2.  
  3. body {
  4. color:#00BFFF;
  5. }
  6.  
  7. .side{
  8. background-image:url(http://i63.tinypic.com/24nf9zk.jpg);
  9. background-size:100%;
  10. background-position:top;
  11. background-repeat: no-repeat;
  12. position:fixed;
  13. top: 1px;
  14. left: 0px;
  15. width: 1900px;
  16. height: 1900px;
  17. }
  18.  
  19. .leftpic {background: none;
  20. background: url(https://img00.deviantart.net/bccf/i/2016/096/7/7/sailor_galaxia_by_isack503-d9xyk10.png);
  21. background-size: 100%;
  22. background-repeat: no-repeat;
  23. position: fixed;
  24. text-align: center;
  25. width: 200px;
  26. height: 570px;
  27. top: 100px;
  28. left: 300px;
  29. border-radius: 0px;
  30. border: 0px solid #404040;}
  31.  
  32. .rightpic {background: none;
  33. background: url(http://i64.tinypic.com/2n7o1gp.jpg);
  34. background-size: 120%;
  35. background-position: center;
  36. background-repeat: no-repeat;
  37. position:fixed;
  38. text-align:center;
  39. width: 250px;
  40. height: 210px;
  41. top: 30px;
  42. left: 720px;
  43. border-radius: 0px;
  44. border: 5px solid #ccc;}
  45.  
  46.  
  47. .info {
  48. opacity: 0.0;
  49. z-index: -9
  50. }
  51.  
  52. .info:target {
  53. z-index: 99;
  54. opacity: 1;
  55. }
  56.  
  57.  
  58. #box{
  59. position: fixed;
  60. top: 350px;
  61. left: 570px;
  62. width: 550px;
  63. height: 350px;
  64. background-color: #A71B04;
  65. border: 1px solid #000;
  66. border-radius: 50px;
  67. font-family: calibri;
  68. text-align: center;
  69. font-size: 15px;
  70. z-index: 9;
  71.  
  72. }
  73.  
  74. #nav{
  75. position: fixed;
  76. top: 270px;
  77. left: 700px;
  78. width: 300px;
  79. height: 300px;
  80.  
  81. font-size: 15px;
  82. }
  83.  
  84. #nav a{
  85. display: block;
  86. text-decoration: none;
  87. text-align: center;
  88. width: 50px;
  89. height: 30px;
  90. color: #602020;
  91. opacity: 0.5;
  92. letter-spacing: 1px;
  93. border: 1px solid #000;
  94. border-radius: 100px;
  95. margin-top: 10px;
  96. margin-left: 5px;
  97. float: left;
  98. transition-duration: 0.8s;
  99. }
  100.  
  101. #nav a:hover{
  102. background-color: #000;
  103. transition-duration: 0.8s;
  104. }
  105.  
  106. </style>
  107.  
  108. <div class="side"></div>
  109.  
  110. <div class="leftpic"></div>
  111.  
  112. <div class="rightpic"></div>
  113.  
  114. <div id="nav">
  115. <a href="#one"></a>
  116. <a href="#two"></a>
  117. <a href="#three"></a>
  118. <a href="#four"></a>
  119. <a href="#reset"></a>
  120. </div>
  121.  
  122.  
  123. <div id="one" class="info">
  124. <div id="box">
  125. one
  126. </div>
  127. </div>
  128.  
  129. <div id="two" class="info">
  130. <div id="box">
  131. two
  132. </div>
  133. </div>
  134.  
  135. <div id="three" class="info">
  136. <div id="box">
  137. three
  138. </div>
  139. </div>
  140.  
  141. <div id="four" class="info">
  142. <div id="box">
  143. four
  144. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement