style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. *{
  2. margin:0em;
  3. padding:0em;
  4. }
  5. body {
  6. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  7. /* background: #403833; */
  8. background:#2f3241;
  9. font-family: 'Open Sans';
  10. font-weight: 100;
  11. color:#f2f2f2;
  12. font-size:100%;
  13. margin:0em;
  14. padding:0em;
  15. }
  16. .loader {
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. -webkit-transform: translate(-50%, -50%);
  21. -moz-transform: translate(-50%, -50%);
  22. -mos-transform: translate(-50%, -50%);
  23. -o-transform: translate(-50%, -50%);
  24. transform: translate(-50%, -50%);
  25. text-align:center;
  26. -webkit-touch-callout: none;
  27. -webkit-user-select: none;
  28. -khtml-user-select: none;
  29. -moz-user-select: none;
  30. -ms-user-select: none;
  31. user-select: none;
  32. cursor:default;
  33. }
  34. .line{
  35. white-space: nowrap;
  36. border-bottom:5px solid #f2f2f2;
  37. overflow:hidden;
  38. width:100%;
  39. -webkit-animation: line 2s ease-in-out infinite;
  40. -moz-animation: line 2s ease-in-out infinite;
  41. -mos-animation: line 2s ease-in-out infinite;
  42. -o-animation: line 2s ease-in-out infinite;
  43. animation: line 2s ease-in-out infinite;
  44. color:#f2f2f2;
  45. font-size:4em;
  46. text-shadow: 0 1px 0 #ccc,
  47. 0 2px 0 #c9c9c9,
  48. 0 3px 0 #bbb,
  49. 0 4px 0 #b9b9b9,
  50. 0 5px 0 #aaa,
  51. 0 6px 1px rgba(0,0,0,.1),
  52. 0 0 5px rgba(0,0,0,.1),
  53. 0 1px 3px rgba(0,0,0,.1),
  54. 0 3px 5px rgba(0,0,0,.1),
  55. 0 5px 10px rgba(0,0,0,.1),
  56. 0 10px 10px rgba(0,0,0,.1),
  57. 0 20px 20px rgba(0,0,0,.15);
  58. box-shadow: inset 0px -5px 10px -7px rgba(0,0,0,0.75), inset 0px 5px 10px -7px rgba(0,0,0,0.75);
  59. }
  60. .cap{
  61. position:absolute;
  62. left:-1px;
  63. height:100%;
  64. border-bottom:5px solid #403833;
  65. -webkit-animation: cap 2s ease-in-out infinite;
  66. -moz-animation: cap 2s ease-in-out infinite;
  67. -mos-animation: cap 2s ease-in-out infinite;
  68. -o-animation: cap 2s ease-in-out infinite;
  69. animation: cap 2s ease-in-out infinite;
  70. /* background:#403833; */
  71. background:#2f3241;
  72. }
  73. @-webkit-keyframes line{
  74. 0% {width:0%;}
  75. 50%,100% {width:100%;}
  76. }
  77. @-moz-keyframes line{
  78. 0% {width:0%;}
  79. 50%,100% {width:100%;}
  80. }
  81. @-mos-keyframes line{
  82. 0% {width:0%;}
  83. 50%,100% {width:100%;}
  84. }
  85. @-o-keyframes line{
  86. 0% {width:0%;}
  87. 50%,100% {width:100%;}
  88. }
  89. @keyframes line{
  90. 0% {width:0%;}
  91. 50%,100% {width:100%;}
  92. }
  93. @-webkit-keyframes cap{
  94. 0%,50% {width:0%;}
  95. 100% {width:100%;}
  96. }
  97. @-moz-keyframes cap{
  98. 0%,50% {width:0%;}
  99. 100% {width:100%;}
  100. }
  101. @-mos-keyframes cap{
  102. 0%,50% {width:0%;}
  103. 100% {width:100%;}
  104. }
  105. @-o-keyframes cap{
  106. 0%,50% {width:0%;}
  107. 100% {width:100%;}
  108. }
  109. @keyframes cap{
  110. 0%,50% {width:0%;}
  111. 100% {width:100%;}
  112. }