fileuploader_style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .upload{
  2. font-family:'PT Sans Narrow', sans-serif;
  3. width: auto;
  4. padding: 0px;
  5. border-radius: 0px;
  6. margin: 0px auto 0px;
  7. }
  8. .drop{
  9. width: 100%;
  10. padding: 0px;
  11. margin: 0px;
  12. text-align: left;
  13. text-transform: uppercase;
  14. font-size:16px;
  15. font-weight:bold;
  16. color:#7f858a;
  17. }
  18. .drop a{
  19. width: 100%;
  20. background-color:#0986a3;
  21. color:#fff;
  22. padding: 9px;
  23. font-size:14px;
  24. cursor:pointer;
  25. display:inline-block;
  26. margin-top: 0px;
  27. line-height:1;
  28. }
  29. .drop a:hover{
  30. background-color:#0986a3;
  31. }
  32. .drop input{
  33. display:none;
  34. }
  35. .upload ul{
  36. list-style:none;
  37. margin:0 -30px;
  38. width: 100%;
  39. }
  40. .upload ul li{
  41. background-color:#333639;
  42. background-image:-webkit-linear-gradient(top, #333639, #303335);
  43. background-image:-moz-linear-gradient(top, #333639, #303335);
  44. background-image:linear-gradient(top, #333639, #303335);
  45. padding:10px;
  46. height: 70px;
  47. position: relative;
  48. }
  49. .upload ul li input{
  50. display: none;
  51. }
  52. .upload ul li p{
  53. width: 100%;
  54. overflow: hidden;
  55. white-space: nowrap;
  56. color: #EEE;
  57. font-size: 16px;
  58. font-weight: bold;
  59. position: absolute;
  60. top: 20px;
  61. left: 0px;
  62. }
  63. .upload ul li i{
  64. font-weight: normal;
  65. font-style:normal;
  66. color:#7f7f7f;
  67. display:block;
  68. }
  69. .upload ul li canvas{
  70. top: 15px;
  71. left: 32px;
  72. position: absolute;
  73. }
  74. .upload ul li span{
  75. width: 15px;
  76. height: 12px;
  77. background: url('../img/icons_fileuploader.png') no-repeat;
  78. position: absolute;
  79. top: 34px;
  80. right: 0px;
  81. cursor:pointer;
  82. }
  83. .upload ul li.working span{
  84. height: 16px;
  85. background-position: 0 -12px;
  86. }
  87. .upload ul li.error p{
  88. color:red;
  89. }