demo.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .vegas-timer {
  2. z-index: 99999 !important;
  3. }
  4. .vegas-timer-progress {
  5. background: #F24535;
  6. }
  7. .vegas-overlay {
  8. opacity: 1;
  9. }
  10. *, *:before, *:after {
  11. -webkit-box-sizing: border-box;
  12. box-sizing: border-box;
  13. }
  14. html, body {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. body {
  19. position: relative;
  20. background: #000;
  21. color: #fff;
  22. font: 1em Arial, sans-serif;
  23. }
  24. a {
  25. text-decoration: none;
  26. color: inherit;
  27. }
  28. .banner {
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. right: 0;
  33. background: #000;
  34. color: #eee;
  35. text-align: center;
  36. text-transform: uppercase;
  37. font-size: 12px;
  38. padding: 10px;
  39. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  40. box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  41. }
  42. .banner a {
  43. color: #F24535;
  44. }
  45. .container {
  46. position: relative;
  47. min-width: 1280px;
  48. min-height: 800px;
  49. width: 100%;
  50. height: 100%;
  51. }
  52. .logo {
  53. width: 500px;
  54. position: absolute;
  55. left: 2.5%;
  56. bottom: 8%;
  57. transition: 1s all;
  58. }
  59. .logo.collapsed {
  60. opacity: 0;
  61. transform: rotateX(90deg);
  62. transform-style: preserve3d;
  63. }
  64. .characters {
  65. position: absolute;
  66. bottom: 8%;
  67. right: 5%;
  68. width: 580px;
  69. height: 500px;
  70. transition: 2.5s;
  71. }
  72. .animated .characters {
  73. -webkit-transform: rotate(5deg);
  74. transform: rotate(5deg);
  75. }
  76. .characters-list {
  77. position: absolute;
  78. bottom: -5px;
  79. left: 0;
  80. width: 280px;
  81. list-style: none;
  82. margin: 0;
  83. padding: 0;
  84. text-transform: uppercase;
  85. text-shadow: 2px 2px 2px #000;
  86. font: bold 22px "Arial Narrow", Arial, sans-serif;
  87. text-align: right;
  88. line-height: 1.7;
  89. }
  90. .characters-list li {
  91. opacity: 0;
  92. transition: 0.5s;
  93. transform: translateX(20px);
  94. margin: 0;
  95. }
  96. .characters-list li a {
  97. padding: 5px 20px;
  98. }
  99. .animated .characters-list li {
  100. opacity: 1;
  101. transform: translateX(0);
  102. }
  103. .animated .characters-list li:nth-child(1) {
  104. transition-delay: 0.2s;
  105. }
  106. .animated .characters-list li:nth-child(2) {
  107. transition-delay: 0.4s;
  108. }
  109. .animated .characters-list li:nth-child(3) {
  110. transition-delay: 0.6s;
  111. }
  112. .animated .characters-list li:nth-child(4) {
  113. transition-delay: 0.8s;
  114. }
  115. .animated .characters-list li:nth-child(5) {
  116. transition-delay: 1.0s;
  117. }
  118. .animated .characters-list li:nth-child(6) {
  119. transition-delay: 1.2s;
  120. }
  121. .animated .characters-list li:nth-child(7) {
  122. transition-delay: 1.4s;
  123. }
  124. .animated .characters-list li:nth-child(8) {
  125. transition-delay: 1.6s;
  126. }
  127. .animated .characters-list li:nth-child(9) {
  128. transition-delay: 1.8s;
  129. }
  130. .animated .characters-list li:nth-child(10) {
  131. transition-delay: 2s;
  132. }
  133. .characters-list .active a {
  134. color: #F24535;
  135. }
  136. .characters-poster {
  137. position: absolute !important;
  138. bottom: 0;
  139. right: 0;
  140. border: 5px solid #fff;
  141. box-shadow: 0 5px 30px #000;
  142. width: 300px;
  143. height: 444px;
  144. background: #000;
  145. cursor: pointer;
  146. }
  147. .characters-label {
  148. position: absolute;
  149. right: -20px;
  150. bottom: 5px;
  151. width: 125px;
  152. text-align: center;
  153. background: #fff;
  154. color: #000;
  155. text-transform: uppercase;
  156. border: 2px solid #000;
  157. padding: 5px;
  158. font: bold 18px "Marker Felt", "Comic Sans MS", Arial, sans-serif;
  159. display: inline-block;
  160. box-shadow: 0 5px 30px #000;
  161. transition: .2s;
  162. opacity: 0;
  163. -webkit-transform: rotateX(90deg) rotateZ(-15deg);
  164. -ms-transform: rotateX(90deg) rotateZ(-15deg);
  165. transform: rotateX(90deg) rotateZ(-15deg);
  166. }
  167. .characters-label.animated {
  168. opacity: 1;
  169. -webkit-transform: rotateX(0deg) rotateZ(-15deg);
  170. -ms-transform: rotateX(0deg) rotateZ(-15deg);
  171. transform: rotateX(0deg) rotateZ(-15deg);
  172. }
  173. #adpacks {
  174. position: absolute;
  175. top: 15px;
  176. left: 15px;
  177. padding: 8px 10px;
  178. width: 150px;
  179. height: 200px;
  180. color: #fff;
  181. background: #000;
  182. font-size: 11px;
  183. line-height: 1.4;
  184. text-align: center;
  185. border: 1px solid #444;
  186. box-shadow: 0 0 20px #000;
  187. }
  188. .adpacks-img img {
  189. border: 1px solid #444;
  190. margin-bottom: 8px;
  191. }
  192. .adpacks-poweredby {
  193. color: #aaa;
  194. display: block;
  195. font-size: 10px;
  196. text-transform: capitalize;
  197. margin-top: 5px;
  198. }