style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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; -webkit-border-radius:0;
  19. }
  20. button i{
  21. float: right;
  22. padding-right: 30px;
  23. margin-top: 3px;
  24. }
  25. button.a{
  26. background-color: #1aaaf8;
  27. }
  28. button.b{
  29. background-color: #00cbca;
  30. }
  31. #tip{
  32. text-align: left;
  33. color: #c0c9ce;
  34. font-size: 14px;
  35. }
  36. #hostname{
  37. position: absolute;
  38. bottom: 100px;
  39. right: 0;
  40. left: 0;
  41. color: #8f9ea8;
  42. font-size: 24px;
  43. }
  44. #content-container{
  45. z-index: 2;
  46. position: relative;
  47. margin: 0 auto;
  48. display: table;
  49. padding: 10px;
  50. max-width: 940px;
  51. height: 100%;
  52. }
  53. #content-container-center{
  54. display: table-cell;
  55. text-align: center;
  56. }
  57. #content-container-center h3{
  58. color: #254356;
  59. }
  60. #choice{
  61. transition: all 300ms linear;
  62. line-height: 1.3em;
  63. display: inline;
  64. vertical-align: middle;
  65. font-size: 3em;
  66. }
  67. #choice a{
  68. text-decoration:none;
  69. }
  70. #choice a:hover, #choice a:focus{
  71. outline:0;
  72. text-decoration:underline;
  73. }
  74. #choice button{
  75. display: block;
  76. height: 80px;
  77. width: 330px;
  78. border: none;
  79. color: white;
  80. text-transform: uppercase;
  81. font-size:18px;
  82. font-weight: 700;
  83. margin-top: 10px;
  84. margin-bottom: 10px;
  85. text-align: left;
  86. padding-left: 50px;
  87. }
  88. #choice button.a:hover{
  89. background-color: #1488c6;
  90. }
  91. #choice button.b:hover{
  92. background-color: #00a2a1;
  93. }
  94. #choice button.a:focus{
  95. background-color: #1488c6;
  96. }
  97. #choice button.b:focus{
  98. background-color: #00a2a1;
  99. }
  100. #background-stats{
  101. z-index:1;
  102. height:100%;
  103. width:100%;
  104. position:absolute;
  105. }
  106. #background-stats div{
  107. transition: width 400ms ease-in-out;
  108. display:inline-block;
  109. margin-bottom:-4px;
  110. width:50%;
  111. height:100%;
  112. }