styles.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*COLORS:*/
  2. /*brown: #59554E
  3. light blue: #A1C1BE rgba(161,193,190, 1)
  4. light blue -darker-: #73A2A3
  5. lilac: #C1A1B3
  6. lilac -darker-: #B898AA
  7. cream: #F3F4E5
  8. dirty white: #E2E3D9*/
  9. body, html {
  10. height: 100%;
  11. font-family: Verdana, Geneva, sans-serif;
  12. font-size: 10pt;
  13. background-color: #FFF;
  14. color: #59554E;
  15. }
  16. h2 {
  17. color: #A1C1BE;
  18. border-bottom: 1px solid rgba(226,227,217, 0.5);
  19. }
  20. .form {
  21. padding: 10px;
  22. }
  23. .form > div {
  24. width: 25%;
  25. float: left;
  26. margin-right: 20px;
  27. }
  28. .form:after{
  29. visibility: hidden;
  30. display: block;
  31. content: "";
  32. clear: both;
  33. }
  34. input[type=text] {
  35. color:#73A2A3;
  36. background-color: transparent;
  37. border: none;
  38. border-bottom: 1px solid #F3F4E5;
  39. border-radius: 0;
  40. outline: none;
  41. height: 2rem;
  42. width: 100%;
  43. font-size: 1rem;
  44. margin: 0 0 15px 0;
  45. padding: 0;
  46. box-shadow: none;
  47. box-sizing: content-box;
  48. transition: all 0.3s;
  49. }
  50. input[type="text"]:focus{
  51. border-bottom: 1px solid #A1C1BE;
  52. }
  53. input[type="button"]{
  54. background-color: #A1C1BE;
  55. border: 1px solid #73A2A3;
  56. border-radius: 5px;
  57. color: white;
  58. padding: 10px;
  59. text-transform: uppercase;
  60. cursor: pointer;
  61. transition: all 0.5s;
  62. }
  63. input[type="button"]:hover {
  64. background-color: #73A2A3;
  65. }
  66. .tabs > ul {
  67. list-style: none;
  68. margin-left: 0px;
  69. padding-left: 0px;
  70. margin-bottom: 10px;
  71. }
  72. .tabs > ul > li {
  73. display: inline;
  74. padding: 10px;
  75. border: 1px solid #E2E3D9;
  76. border-bottom: none;
  77. border-top-right-radius: 6px;
  78. border-top-left-radius: 6px;
  79. cursor: pointer;
  80. transition: all 0.5s;
  81. text-transform: uppercase;
  82. }
  83. .tabs > ul > li:hover {
  84. background-color: rgba(226,227,217,0.3);
  85. }
  86. .tabs > ul > li.active {
  87. background-color: rgba(226,227,217,0.3);
  88. }
  89. .tab-content {
  90. border: 1px solid #E2E3D9;
  91. padding: 20px;
  92. background-color: rgba(226,227,217,0.3);
  93. border-top-right-radius: 5px;
  94. border-bottom-right-radius: 5px;
  95. border-bottom-left-radius: 5px;
  96. }
  97. table {
  98. width: 100%;
  99. border-collapse: collapse;
  100. }
  101. th {
  102. padding: 15px 5px;
  103. text-align: left;
  104. border-bottom: 1px solid #A9A59E;
  105. text-transform: uppercase;
  106. font-size: 80%;
  107. }
  108. tr {
  109. border-bottom: 1px solid #E2E3D9;
  110. }
  111. td, tr {
  112. padding: 10px;
  113. }
  114. td > span {
  115. color: #73A2A3;
  116. text-transform: uppercase;
  117. font-size: 80%;
  118. font-weight: bold;
  119. }
  120. td > label {
  121. font-size: 70%;
  122. padding: 5px;
  123. border-radius: 5px;
  124. color: white;
  125. border: 1px solid;
  126. }
  127. td > a {
  128. cursor: pointer;
  129. }
  130. td > ul {
  131. list-style: none;
  132. padding: 0px;
  133. }
  134. td > ul > li {
  135. margin-bottom: 5px;
  136. }
  137. td > ul > li:hover {
  138. background-color: rgba(161,193,190, 0.4);
  139. cursor: pointer;
  140. }
  141. td > ul > li > a {
  142. text-decoration: none;
  143. color: #59554E;
  144. }
  145. th.output{
  146. width: 70%;
  147. }
  148. .expanded{
  149. vertical-align: top;
  150. }
  151. .WAITING{
  152. background-color:#C1A1B3;
  153. border-color: #B898AA;
  154. }
  155. .DISCONNECTED{
  156. background-color:#A1B9C1;
  157. border-color: #99B1B9;
  158. }
  159. .RECEIVING {
  160. background-color: rgb(237, 186, 158);
  161. border-color: rgb(230, 179, 151);
  162. }
  163. .TIMED.OUT{
  164. background-color: #C9C4B2;
  165. border-color: #BEB9A7;
  166. }
  167. .DOWNLOADING{
  168. background-color: rgb(152, 210, 169);
  169. border-color: rgb(132, 210, 169);
  170. }
  171. .CONNECTED{
  172. background-color: rgb(239, 199, 207);
  173. border-color: rgb(230, 190, 198);
  174. }