assets.sys.styles.css.go 1.9 KB

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