Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. body {
  2.  
  3. font-family: '04B03';
  4. background-color: #f2f2f2;
  5. font-size: 32px;
  6. cursor: default;
  7. overflow: hidden;
  8.  
  9. }
  10.  
  11. img {
  12.  
  13. z-index: -2;
  14. position: fixed;
  15. max-height: 900px;
  16. bottom: 0%;
  17. left: 5%;
  18.  
  19. }
  20.  
  21. #navparent {
  22.  
  23. position: absolute;
  24. top: 45%;
  25. margin-top: -200px;
  26. left: 0;
  27. width: 100%;
  28.  
  29. }
  30.  
  31. nav {
  32.  
  33. position: fixed;
  34. text-align: center;
  35. cursor: default;
  36. width: 100%;
  37. margin-left: auto;
  38. margin-right: auto;
  39. z-index: 2;
  40.  
  41. }
  42.  
  43. a {
  44.  
  45. text-decoration: none;
  46. cursor: default;
  47. color: #cecde2;
  48. transition: color 0.2s;
  49.  
  50. }
  51.  
  52. a:hover{
  53.  
  54. color: #551a8b;
  55.  
  56. }
  57.  
  58.  
  59. li > ul {
  60.  
  61. visibility: hidden;
  62. opacity: 0;
  63. transition: all 0.5s;
  64. overflow-y: hidden;
  65. max-height: 0;
  66. padding: 0 5px;
  67.  
  68. }
  69.  
  70. li:hover > ul {
  71.  
  72. visibility: visible;
  73. opacity: 1;
  74. transition: all 0.5s;
  75. max-height: 200px;
  76. max-width: auto;
  77. overflow-y: hidden;
  78.  
  79. }
  80.  
  81. nav > ul > li {
  82.  
  83. background: #ffffff;
  84. padding: 1px 20px;
  85. border: 1px solid #cecde2;
  86. display: inline-table;
  87. border-radius: 5px;
  88.  
  89.  
  90. }
  91.  
  92. nav ul ul li {
  93.  
  94. display: block;
  95. padding: 5px 0px;
  96.  
  97.  
  98. }
  99.  
  100. p {
  101. position: fixed;
  102. font-size: 150px;
  103. color: #551a8b;
  104. top: -30px;
  105. width: 100%;
  106. left: 50px;
  107. text-align: center;
  108. font-family: 'jackeyfont';
  109. cursor: default;
  110. }
  111.  
  112. hr {
  113.  
  114. position: fixed;
  115. margin-bottom: -10px;
  116. width: 50%;
  117. top: 33%;
  118. left: 26%;
  119. z-index: -2;
  120. color: #cecde2;
  121. height: 1px;
  122. border-top: 1px solid #cecde2;
  123.  
  124.  
  125. }
  126.  
  127. .nav2 {
  128.  
  129. position: relative;
  130. width: 50%;
  131. top: 80px;
  132. margin-left:auto;
  133. margin-right:auto;
  134. cursor: default;
  135. z-index: 1;
  136.  
  137.  
  138. }
  139.  
  140. .nav2 > .ul2 > li,a {
  141.  
  142. border: none;
  143. background: none;
  144.  
  145. }
  146.  
  147. .ul2 > li a {
  148.  
  149. font-size: 50%;
  150.  
  151. }
  152.  
  153. #searchfield .textinput {
  154.  
  155. position: absolute;
  156. top:1%;
  157. left:30%;
  158. border:1px solid #cecde2;
  159. border-top-left-radius: 5px 5px;
  160. border-bottom-left-radius: 5px 5px;
  161.  
  162. }
  163.  
  164. #searchfield .submitinput {
  165.  
  166. position: fixed;
  167. top:1%;
  168. left:71%;
  169. border:1px solid #cecde2;
  170. border-top-right-radius: 5px 5px;
  171. border-bottom-right-radius: 5px 5px;
  172. color: #cecde2;
  173. transition: all 0.2s;
  174.  
  175. }
  176.  
  177. #searchfield .submitinput:active {
  178.  
  179. color: #551a8b;
  180. background-color: #eaeaea;
  181.  
  182. }
  183.  
  184. .submitinput::-moz-focus-inner {
  185.  
  186. border: 0;
  187.  
  188. }
  189.  
  190.  
  191. @font-face {
  192.  
  193. font-family: jackeyfont;
  194. src: url (../fonts/jackeyfont.ttf);
  195. font-weight: normal;
  196. font-style: normal;
  197.  
  198. }
  199.  
  200. @font-face {
  201.  
  202. font-family: 04B03;
  203. src: url (../fonts/04B_03__.ttf);
  204. font-weight: normal;
  205. font-style: normal;
  206.  
  207. }
  208.  
  209.  
  210. @media screen and (max-width: 920px) {
  211.  
  212.  
  213. /* You can edit this portion to make it phone/tablet compatible */
  214.  
  215. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement