sys.styles.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. html {
  2. min-height: 100%;
  3. height: 100%;
  4. position: relative
  5. }
  6. body {
  7. background: #205081 url(/assets/sys/bg.png) repeat 0 0;
  8. margin: 0;
  9. padding: 0;
  10. color: #FFF;
  11. font-family: Arial, sans-serif;
  12. font-weight: 300;
  13. font-size: 18px;
  14. line-height: 21px;
  15. position: relative;
  16. width: 100%;
  17. min-height: 100%;
  18. height: 100%;
  19. height: auto;
  20. display: table
  21. }
  22. .wrapper {
  23. padding: 15px;
  24. text-align: center;
  25. display: table-cell;
  26. vertical-align: middle
  27. }
  28. .wrapper .logo {
  29. width: 332px;
  30. height: 203px;
  31. margin: 0 auto;
  32. background: url(/assets/sys/logo.png) no-repeat 0 0
  33. }
  34. .wrapper .logo .svg {
  35. width: 150px;
  36. height: 150px;
  37. margin: 0 auto;
  38. position: relative;
  39. padding-top: 40px
  40. }
  41. .wrapper .logo .svg img {
  42. top: 50%;
  43. left: 50%;
  44. position: absolute;
  45. width: 150px;
  46. height: 150px;
  47. margin-top: -75px;
  48. margin-left: -75px;
  49. animation-name: fave;
  50. animation-duration: 1000ms;
  51. animation-iteration-count: infinite;
  52. animation-timing-function: linear
  53. }
  54. @keyframes fave {
  55. 0% {
  56. width: 150px;
  57. height: 150px;
  58. margin-top: -75px;
  59. margin-left: -75px
  60. }
  61. 40% {
  62. width: 150px;
  63. height: 150px;
  64. margin-top: -75px;
  65. margin-left: -75px
  66. }
  67. 60% {
  68. width: 120px;
  69. height: 120px;
  70. margin-top: -60px;
  71. margin-left: -60px
  72. }
  73. 100% {
  74. width: 150px;
  75. height: 150px;
  76. margin-top: -75px;
  77. margin-left: -75px
  78. }
  79. }
  80. h1, h2 {
  81. font-weight: 400;
  82. font-size: 34px;
  83. line-height: 36px;
  84. margin: 10px 0
  85. }
  86. h2 {
  87. font-weight: 350;
  88. font-size: 14px;
  89. line-height: 18px;
  90. margin-bottom: 0
  91. }
  92. @media only screen and (max-width:800px) {
  93. .wrapper {
  94. padding: 15px 0
  95. }
  96. h1, h2 {
  97. padding: 0 15px
  98. }
  99. }