Guest User

Untitled

a guest
Oct 25th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. html {
  2. min-width: 1000px;
  3. max-width: 1000px;
  4. margin: 0 auto;
  5. height: 100%;
  6. }
  7.  
  8.  
  9.  
  10. body {
  11. background: #db2811;
  12. margin: 0 auto;
  13. padding: 2em 2em 4em;
  14. max-width: 50%;
  15. box-shadow: 0 0 2px rgba(0,0);
  16. height: 100%;
  17. float: none;
  18. }
  19.  
  20. img {
  21. width: 100%;
  22. }
  23.  
  24. div#page-wrap {
  25. max-width: 1000px;
  26. margin: 0 auto;
  27. }
  28. div.wrapper {
  29. width: 120%;
  30. height: auto;
  31. position: relative;
  32. left: -10%;
  33. margin-top: 17%
  34. }
  35. ul {
  36. display: block;
  37. position: absolute;
  38. bottom: 0;
  39. }
  40.  
  41. ul li {
  42. color: #fff200;
  43. font-size: 20px;
  44. font-weight: 600;
  45. display: inline-block;
  46. list-style: none;
  47. padding-left: 52px;
  48. }
  49.  
  50. a {
  51. color: #fff200;
  52. text-decoration: none;
  53.  
  54. }
  55.  
  56. a:hover {
  57. color: ghostwhite;
  58. }
  59.  
  60. div.lanturn-left {
  61. width: 60%;
  62. margin-left: -40%;
  63. margin-top: -8%;
  64. }
  65.  
  66. div.lanturn-right {
  67. width: 60%;
  68. margin-left: 85%;
  69. margin-top: -46%;
  70. transform: scaleX(-1);
  71. }
  72.  
  73. h2 {
  74. color:#fff200;
  75. font-size: 30px;
  76. font-style: italic;
  77. border-bottom: 3px solid #fff200;
  78. text-align: center;
  79.  
  80. }
  81.  
  82. p {
  83. font-size: 20px;
  84. color: aliceblue;
  85. text-align: center
  86. }
  87.  
  88. div.lunch {
  89. border: 6px inset #fff200;
  90. width: 25%;
  91. margin-left: -20%;
  92. margin-top: 19%;
  93. position: absolute;
  94.  
  95.  
  96. }
  97.  
  98. div.early-bird {
  99. border: 6px outset #fff200;
  100. width: 20%;
  101. margin-left: 10%;
  102. margin-top: 19%;
  103. position: absolute;
  104. width: 30%;
  105. }
  106.  
  107. div.dinner {
  108. position: absolute;
  109. border: 6px inset #fff200;
  110. width: 25%;
  111. margin-left: 45%;
  112. margin-top: 19%;
  113. }
  114.  
  115. div.to-go {
  116. border: 6px outset #fff200;
  117. width: 25%;
  118. margin-left: -20%;
  119. margin-top: 50%;
  120.  
  121. position: absolute;
  122.  
  123. }
  124. div.comment {
  125. width: 27%;
  126. margin-left: 12%;
  127. margin-top: 50%;
  128.  
  129. position: absolute;
  130.  
  131. }
  132.  
  133. div.krab {
  134.  
  135. border: 6px outset #fff200;
  136. width: 25%;
  137. margin-left: 45%;
  138. margin-top: 50%;
  139. position: absolute;
  140. }
  141.  
  142. #smaller {
  143. font-size: 15px;
  144. border-bottom: none;
  145. font-style: normal;
  146. margin-top: -8%;
  147. }
  148.  
  149. #bigger {
  150. font-size: 40px;
  151.  
  152. }
  153.  
  154. #no-link {
  155. text-decoration: line-through;
  156.  
  157. }
  158.  
  159. @-webkit-keyframes swinging{
  160. 0%{-webkit-transform: rotate(2deg);}
  161. 50%{-webkit-transform: rotate(-2deg)}
  162. 100%{-webkit-transform: rotate(2deg);}
  163. }
  164.  
  165. @keyframes swinging{
  166. 0%{transform: rotate(2deg);}
  167. 50%{transform: rotate(-2deg)}
  168. 100%{transform: rotate(2deg);}
  169. }
  170.  
  171. .swingimage{
  172. -webkit-transform-origin: 50% 0;
  173. transform-origin: 50% 0;
  174. -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
  175. animation: swinging 3.5s ease-in-out forwards infinite;
  176.  
  177. }
Add Comment
Please, Sign In to add comment