site.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. @import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,600);
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html, body {
  6. margin: 0;
  7. padding: 0;
  8. background-color: #F7F8F9;
  9. height: 100vh;
  10. font-family: 'Open Sans';
  11. }
  12. button {
  13. border-radius: 0;
  14. width: 100%;
  15. height: 50%;
  16. }
  17. button[type="submit"] {
  18. -webkit-appearance: none;
  19. -webkit-border-radius: 0;
  20. }
  21. button i {
  22. float: right;
  23. padding-right: 30px;
  24. margin-top: 3px;
  25. }
  26. button.a {
  27. background-color: #1aaaf8;
  28. }
  29. button.b {
  30. background-color: #00cbca;
  31. }
  32. #tip {
  33. text-align: left;
  34. color: #c0c9ce;
  35. font-size: 14px;
  36. }
  37. #hostname {
  38. position: absolute;
  39. bottom: 100px;
  40. right: 0;
  41. left: 0;
  42. color: #8f9ea8;
  43. font-size: 24px;
  44. }
  45. #content-container {
  46. z-index: 2;
  47. position: relative;
  48. margin: 0 auto;
  49. display: table;
  50. padding: 10px;
  51. max-width: 940px;
  52. height: 100%;
  53. }
  54. #content-container-center {
  55. display: table-cell;
  56. text-align: center;
  57. }
  58. #content-container-center h3 {
  59. color: #254356;
  60. }
  61. #choice {
  62. transition: all 300ms linear;
  63. line-height: 1.3em;
  64. display: inline;
  65. vertical-align: middle;
  66. font-size: 3em;
  67. }
  68. #choice a {
  69. text-decoration: none;
  70. }
  71. #choice a:hover, #choice a:focus {
  72. outline: 0;
  73. text-decoration: underline;
  74. }
  75. #choice button {
  76. display: block;
  77. height: 80px;
  78. width: 330px;
  79. border: none;
  80. color: white;
  81. text-transform: uppercase;
  82. font-size: 18px;
  83. font-weight: 700;
  84. margin-top: 10px;
  85. margin-bottom: 10px;
  86. text-align: left;
  87. padding-left: 50px;
  88. }
  89. #choice button.a:hover {
  90. background-color: #1488c6;
  91. }
  92. #choice button.b:hover {
  93. background-color: #00a2a1;
  94. }
  95. #choice button.a:focus {
  96. background-color: #1488c6;
  97. }
  98. #choice button.b:focus {
  99. background-color: #00a2a1;
  100. }
  101. #background-stats {
  102. z-index: 1;
  103. height: 100%;
  104. width: 100%;
  105. position: absolute;
  106. }
  107. #background-stats div {
  108. transition: width 400ms ease-in-out;
  109. display: inline-block;
  110. margin-bottom: -4px;
  111. width: 50%;
  112. height: 100%;
  113. }