main.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .input-mini{
  2. max-width:60px;
  3. }
  4. .input-medium{
  5. max-width:150px;
  6. }
  7. .ui-helper-hidden-accessible div{
  8. display:none;
  9. }
  10. .ui-autocomplete{
  11. list-style-type:none;
  12. background:#ffffff;
  13. box-shadow:0 0 5px rgba(0,0,0,0.4);
  14. max-width:300px;
  15. margin:0;
  16. z-index: 2000;
  17. padding:0;
  18. }
  19. .ui-autocomplete li{
  20. padding:10px;
  21. transition:all 0.2s eas-in-out;
  22. cursor:pointer;
  23. color:#222222;
  24. min-height: 70px;
  25. margin:0;
  26. }
  27. .ui-autocomplete li img{
  28. margin: 0 15px 0 0;
  29. }
  30. .ui-autocomplete li small{
  31. color:#cecece;
  32. font-style: italic;
  33. }
  34. .ui-autocomplete li:hover{
  35. background-color:#4FC1E9;
  36. color:#ffffff;
  37. }
  38. .ui-autocomplete li:hover a{
  39. color:#ffffff;
  40. }
  41. .dropdown-menu li a{
  42. cursor:pointer;
  43. }
  44. .footer{
  45. color:#ffffff;
  46. text-align:center;
  47. }
  48. /* ==========================================================================
  49. Author's custom styles
  50. ========================================================================== */
  51. div.CodeMirror{
  52. height:auto;
  53. }
  54. .navbar {
  55. border-radius:0px;
  56. }
  57. #sketchTitle input{
  58. border:none;
  59. border-bottom: 1px solid #cecece;
  60. width:100%;
  61. transition:all 0.2s ease-in-out;
  62. }
  63. #sketchTitle input:focus{
  64. color:#4FC1E9;
  65. border-color: #4FC1E9;
  66. }
  67. .resources a{
  68. position:relative;
  69. cursor:pointer;
  70. }
  71. .resources-options{
  72. position:absolute;
  73. right:5px;
  74. top:5px;
  75. opacity:0;
  76. color:#777777;
  77. transition:opacity 0.2s ease-in-out;
  78. }
  79. .resources a:hover .resources-options{
  80. opacity:0.8;
  81. }
  82. .resources-options i{
  83. transition:color 0.2s ease-in-out;
  84. }
  85. .resources-options i:hover{
  86. color:#000;
  87. }
  88. .sketchOptions{
  89. list-style-type: none;
  90. margin:0;
  91. padding:0;
  92. float:right;
  93. }
  94. .sketchOptions li{
  95. display: inline-block;
  96. }
  97. .sketchOptions li i{
  98. cursor:pointer;
  99. color:#6D6D6D;
  100. font-size: 20px;
  101. font-weight: normal;
  102. position:relative;
  103. transition:all 0.2s ease-in-out;
  104. margin:5px 5px 0 0;
  105. }
  106. .sketchOptions li:hover i{
  107. color:#4FC1E9;
  108. font-size: 26px;
  109. margin:0;
  110. }
  111. #dropZoneFiles{
  112. background: #f8f8f8 none repeat scroll 0 0;
  113. border-bottom: 5px solid #f2f2f2;
  114. color: #818181;
  115. cursor: pointer;
  116. font-size: 20px;
  117. padding: 15px;
  118. text-transform:uppercase;
  119. text-align: center;
  120. }
  121. #resource{
  122. transition:all 0.5s linear;
  123. }
  124. #sketchs.table tbody tr td{
  125. vertical-align:middle;
  126. }
  127. #sketchs tbody tr{
  128. cursor:pointer;
  129. }
  130. #sketchs tbody tr a{
  131. display:block;
  132. width:100%;
  133. height:100%;
  134. }
  135. #files tbody a{
  136. color:#222222;
  137. font-size:20px;
  138. line-height:32px;
  139. transition: color 0.2s linear;
  140. }
  141. #files tbody a:hover{
  142. color:#4FC1E9;
  143. }
  144. #files tbody a i{
  145. color:#cecece;
  146. font-size:25px;
  147. font-weight:normal;
  148. }
  149. #parts tbody td{
  150. vertical-align:middle;
  151. }
  152. #parts tbody td a,#parts tbody td code,#parts tbody td div{
  153. vertical-align:middle;
  154. display:inline-block;
  155. font-size:18px;
  156. }
  157. #parts tbody td i{
  158. font-size:14px;
  159. }
  160. #parts tbody td div{
  161. margin-right:10px;
  162. }
  163. .componentImage{
  164. width:100px;
  165. height:100px;
  166. background:#ffffff;
  167. box-shadow: 0 0 5px 2px #e3e3e3;
  168. overflow:hidden;
  169. display:table-cell;
  170. vertical-align:middle;
  171. }
  172. .componentImage img{
  173. vertical-align:middle;
  174. display:inline-block;
  175. }
  176. .preloader{
  177. display:none;
  178. background : url('../img/preloader.gif') center center no-repeat ;
  179. width:64px;
  180. height:64px;
  181. margin:10% auto;
  182. }
  183. .dz-preview{
  184. display:none;
  185. }
  186. .dz-default{
  187. padding:5px;
  188. background:#656D78;
  189. color:#ffffff;
  190. cursor:pointer;
  191. text-align: center;
  192. }