main.css 3.4 KB

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