style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. body {
  2. /* padding: 50px; */
  3. font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  4. }
  5. a {
  6. color: #00B7FF;
  7. }
  8. .box{width:100%;}
  9. .test-box {
  10. display: flex;
  11. max-width: 640px;
  12. width:100%;
  13. margin:auto;
  14. height: 70px;
  15. background: #E2E2E2;
  16. margin-top: 20px;
  17. font-size: 26px;
  18. align-items: center;
  19. padding-left: 20px;
  20. }
  21. .detail-box {
  22. max-width: 640px;
  23. width:100%;
  24. height: auto;
  25. background: #E2E2E2;
  26. margin-top: 2px;
  27. font-family: Consolas;
  28. font-size: 16px;
  29. padding-top: 15px;
  30. padding-left: 15px;
  31. padding-bottom: 15px;
  32. margin:auto;
  33. }
  34. #test-content {
  35. display: flex;
  36. display: -webkit-flex;
  37. align-items: center;
  38. flex-direction: column;
  39. }
  40. .title {
  41. width: 600px;
  42. height: 70px;
  43. color: white;
  44. align-items: center;
  45. display: flex;
  46. padding-left: 20px;
  47. }
  48. .container{padding:0!important;}
  49. .header {
  50. display: flex;
  51. flex-direction: row;
  52. background: #4f7dc9;
  53. max-width: 700px;
  54. margin-bottom: 20px;
  55. align-items: center;
  56. width:100%;
  57. margin:auto;
  58. padding:0 10px;
  59. }
  60. .btn-circle {
  61. width: 30px;
  62. height: 30px;
  63. text-align: center;
  64. padding: 6px 0;
  65. font-size: 12px;
  66. line-height: 1.428571429;
  67. border-radius: 15px;
  68. }
  69. .btn-circle.btn-lg {
  70. width: 50px;
  71. height: 50px;
  72. padding: 10px 16px;
  73. font-size: 18px;
  74. line-height: 1.33;
  75. border-radius: 25px;
  76. }
  77. .btn-circle.btn-xl {
  78. width: 70px;
  79. height: 70px;
  80. padding: 10px 16px;
  81. font-size: 24px;
  82. line-height: 1.33;
  83. border-radius: 35px;
  84. }
  85. #start-btn {
  86. display: flex;
  87. font-size: 20px;
  88. color: black;
  89. background: #99dd99;
  90. }
  91. #detail-info {
  92. display: flex;
  93. display: -webkit-flex;
  94. -webkit-flex-direction: column;
  95. }
  96. .title {
  97. color: black;
  98. font-size: 20px;
  99. }
  100. #stunserver {
  101. }
  102. div#meters{
  103. padding:10px;
  104. }
  105. div#meters > div {
  106. margin: 0 0 0 0;
  107. }
  108. div#meters div.label {
  109. display: inline-block;
  110. font-weight: 400;
  111. margin: 0 0.5em 0 0;
  112. width: 5em;
  113. color:#000
  114. }
  115. div#meters div.value {
  116. display: inline-block;
  117. }
  118. meter {
  119. width: 50%;
  120. }
  121. meter#clip {
  122. color: #db4437;
  123. }
  124. meter#slow {
  125. color: #f4b400;
  126. }
  127. meter#instant {
  128. color: #0f9d58;
  129. }