style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Basic layout */
  2. h4 {
  3. margin-top: 1.25em;
  4. }
  5. a {
  6. padding: 1px;
  7. }
  8. a:hover, a.hover {
  9. color: red;
  10. }
  11. label {
  12. display: block;
  13. }
  14. label span {
  15. display: block;
  16. line-height: 1.8em;
  17. }
  18. /* Layout elements */
  19. .file-list {
  20. list-style: none;
  21. margin: 0;
  22. border: 1px solid #ddd;
  23. border-right-color: #ccc;
  24. border-bottom-color: #ccc;
  25. min-height: 100px;
  26. }
  27. .file-placeholder {
  28. color: #999;
  29. text-align: center;
  30. line-height: 100px;
  31. }
  32. .file-list-fail {
  33. color: red;
  34. min-height: 0;
  35. }
  36. .button-select {
  37. margin-bottom: 0.5em;
  38. }
  39. .file-list .file {
  40. display: block;
  41. padding: 5px 7px;
  42. }
  43. .file-list .file-title {
  44. font-weight: bold;
  45. }
  46. .file-list .file-status {
  47. font-size: 0.9em;
  48. color: #666;
  49. padding-left: 10px;
  50. display: inline;
  51. }
  52. .file-list .file-progress {
  53. font-size: 0.9em;
  54. color: #666;
  55. }
  56. .file-list .file-links {
  57. float: right;
  58. font-size: 0.8em;
  59. }
  60. .file-list .file-links a {
  61. padding: 0 3px;
  62. }
  63. .file-running.file-list {
  64. color: #000;
  65. }
  66. .button-start {
  67. width: 149px;
  68. height: 31px;
  69. display: block;
  70. padding: 0;
  71. outline: 0;
  72. text-indent: -9999px;
  73. background: url(../../assets/button_start.black.png) no-repeat 0 0;
  74. }
  75. .button-start:hover {
  76. background-position: 0 -31px;
  77. }
  78. .button-start:active {
  79. background-position: 0 -62px;
  80. }
  81. .button-start-disabled {
  82. background-position: 0 -93px !important;
  83. cursor: default;
  84. }
  85. /* Dynamic elements */
  86. #overlay-select {
  87. background-color: #fff;
  88. position: absolute;
  89. z-index: 9999;
  90. color: #000;
  91. font-size: 5em;
  92. text-align: center;
  93. }