styles.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. ::selection {
  21. background:rgba(161,193,190, 0.5);
  22. }
  23. ::-moz-selection {
  24. background:rgba(161,193,190, 0.5);
  25. }
  26. .form {
  27. padding: 10px;
  28. }
  29. .form > div {
  30. width: 25%;
  31. float: left;
  32. margin-right: 20px;
  33. }
  34. .form:after{
  35. visibility: hidden;
  36. display: block;
  37. content: "";
  38. clear: both;
  39. }
  40. input[type=text] {
  41. color:#73A2A3;
  42. background-color: transparent;
  43. border: none;
  44. border-bottom: 1px solid #F3F4E5;
  45. border-radius: 0;
  46. outline: none;
  47. height: 2rem;
  48. width: 100%;
  49. font-size: 1rem;
  50. margin: 0 0 15px 0;
  51. padding: 0;
  52. box-shadow: none;
  53. box-sizing: content-box;
  54. transition: all 0.3s;
  55. }
  56. input[type="text"]:focus{
  57. border-bottom: 1px solid #A1C1BE;
  58. }
  59. input[type="button"]{
  60. background-color: #A1C1BE;
  61. border: 1px solid #73A2A3;
  62. border-radius: 5px;
  63. color: white;
  64. padding: 10px;
  65. text-transform: uppercase;
  66. cursor: pointer;
  67. transition: all 0.5s;
  68. }
  69. input[type="button"]:hover {
  70. background-color: #73A2A3;
  71. }
  72. .tabs > ul {
  73. list-style: none;
  74. margin-left: 0px;
  75. padding-left: 0px;
  76. margin-bottom: 10px;
  77. }
  78. .tabs > ul > li {
  79. display: inline;
  80. padding: 10px;
  81. border: 1px solid #E2E3D9;
  82. border-bottom: none;
  83. border-top-right-radius: 6px;
  84. border-top-left-radius: 6px;
  85. cursor: pointer;
  86. transition: all 0.5s;
  87. text-transform: uppercase;
  88. }
  89. .tabs > ul > li:hover {
  90. background-color: rgba(226,227,217,0.3);
  91. }
  92. .tabs > ul > li.active {
  93. background-color: rgba(226,227,217,0.3);
  94. }
  95. .tabs > ul > li > label {
  96. font-weight: bold;
  97. background-color: rgb(184, 152, 170);
  98. color: white;
  99. border-radius: 15px;
  100. font-size: 90%;
  101. padding: 2px 7px;
  102. }
  103. .tab-content {
  104. border: 1px solid #E2E3D9;
  105. padding: 20px;
  106. background-color: rgba(226,227,217,0.3);
  107. border-top-right-radius: 5px;
  108. border-bottom-right-radius: 5px;
  109. border-bottom-left-radius: 5px;
  110. }
  111. table {
  112. width: 100%;
  113. border-collapse: collapse;
  114. }
  115. th {
  116. padding: 10px;
  117. text-align: left;
  118. border-bottom: 1px solid #A9A59E;
  119. text-transform: uppercase;
  120. font-size: 80%;
  121. }
  122. tr {
  123. border-bottom: 1px solid #E2E3D9;
  124. }
  125. td, tr {
  126. padding: 10px;
  127. }
  128. td > span {
  129. color: #73A2A3;
  130. text-transform: uppercase;
  131. font-size: 80%;
  132. font-weight: bold;
  133. }
  134. td > label {
  135. font-size: 70%;
  136. padding: 5px;
  137. border-radius: 5px;
  138. color: white;
  139. border: 1px solid;
  140. }
  141. td > a {
  142. cursor: pointer;
  143. }
  144. td > ul {
  145. list-style: none;
  146. padding: 0px;
  147. margin-top: 0px;
  148. }
  149. td > i {
  150. color: #929389;
  151. font-size: 80%;
  152. text-decoration: underline;
  153. }
  154. td > ul > li {
  155. margin-bottom: 5px;
  156. margin-left: 10px;
  157. }
  158. td > ul > li:hover {
  159. background-color: rgba(161,193,190, 0.4);
  160. cursor: pointer;
  161. }
  162. td > ul > li > a {
  163. text-decoration: none;
  164. color: #59554E;
  165. }
  166. th.output{
  167. width: 70%;
  168. }
  169. #progress-bar {
  170. position: relative;
  171. width: 100%;
  172. height: 20px;
  173. background-color: #E2E3D9;
  174. border-radius: 3px;
  175. }
  176. #progress {
  177. height: 100%;
  178. background-color: #A1C1BE;
  179. border-radius: 3px;
  180. }
  181. #label {
  182. float:left;
  183. text-align: center;
  184. line-height: 20px;
  185. color: white;
  186. font-size: 75%;
  187. width:100%;
  188. }
  189. .expanded{
  190. vertical-align: top;
  191. }
  192. .WAITING{
  193. background-color:#C1A1B3;
  194. border-color: #B898AA;
  195. }
  196. .DISCONNECTED{
  197. background-color:#A1B9C1;
  198. border-color: #99B1B9;
  199. }
  200. .RECEIVING {
  201. background-color: rgb(237, 186, 158);
  202. border-color: rgb(230, 179, 151);
  203. }
  204. .TIMED.OUT{
  205. background-color: #C9C4B2;
  206. border-color: #BEB9A7;
  207. }
  208. .DOWNLOADING{
  209. background-color: rgb(152, 210, 169);
  210. border-color: rgb(132, 210, 169);
  211. }
  212. .CONNECTED{
  213. background-color: rgb(239, 199, 207);
  214. border-color: rgb(230, 190, 198);
  215. }