style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. overflow: hidden;
  7. }
  8. body {
  9. font-size: 14px;
  10. font-family: HelveticaNeue, "Lucida Grande", Helvetica, Arial, sans-serif;
  11. color: #010101;
  12. }
  13. button {
  14. background-image: linear-gradient(-180deg, #4C98FE 0%, #0664E3 100%);
  15. box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.15);
  16. border-radius: 3px;
  17. font-size: 14px;
  18. color: #FFFFFF;
  19. letter-spacing: -0.11px;
  20. line-height: 12px;
  21. height: 21px;
  22. width: 60px;
  23. border: 0.5px solid #247EFF;
  24. }
  25. button:disabled {
  26. background: #eee;
  27. color: #aaa;
  28. }
  29. button:hover {
  30. background-image: linear-gradient(-180deg, #5DA9FF 0%, #1775F4 100%);
  31. box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
  32. }
  33. button:hover:disabled {
  34. background: #eee;
  35. color: #aaa;
  36. }
  37. select {
  38. width: 254px;
  39. height: 21px;
  40. font-size: 13px;
  41. }
  42. label {
  43. font-size: 13px;
  44. }
  45. footer {
  46. position:fixed;
  47. left:0;
  48. bottom:0;
  49. height:30px;
  50. padding-top:10px;
  51. width:100%;
  52. text-align: center;
  53. border-top: 1px solid #EDEAE8;
  54. background: white;
  55. }
  56. #app {
  57. margin:27px auto;
  58. display: flex;
  59. background: white;
  60. width: 500px;
  61. }
  62. #logo svg {
  63. width:180px;
  64. }
  65. #form .field {
  66. margin-top:20px;
  67. line-height: 1.5;
  68. }
  69. #form .button {
  70. margin-top: 10px;
  71. text-align: right;
  72. }
  73. @keyframes moveLeft {
  74. 0% {margin-left: 0px;}
  75. 100% {margin-left: 160px;}
  76. }
  77. @keyframes moveBack {
  78. 0% {margin-left: 160px;}
  79. 100% {margin-left: 0px;}
  80. }
  81. #app.flashing #logo {
  82. animation: moveLeft 500ms ease-in;
  83. margin-left: 160px;
  84. }
  85. #app.flashing #form {
  86. display: none;
  87. }
  88. #app.finished #logo {
  89. animation: moveBack 500ms ease-in;
  90. margin-left: 0px;
  91. }
  92. #app.finished #form {
  93. display: inline-block;
  94. }
  95. #warning p {
  96. line-height: 1.5;
  97. margin-top:5px;
  98. }
  99. .code {
  100. background: #ccc;
  101. border: 1px solid #999;
  102. font-family: monospace;
  103. padding: 2px 4px;
  104. border-radius: 4px;
  105. }
  106. #warning p.code {
  107. padding:1px 10px;
  108. display: inline-block;
  109. }