main.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. #resource{
  112. transition:all 0.5s linear;
  113. }
  114. #sketchs.table tbody tr td{
  115. vertical-align:middle;
  116. }
  117. #sketchs tbody tr{
  118. cursor:pointer;
  119. }
  120. #sketchs tbody tr a{
  121. display:block;
  122. width:100%;
  123. height:100%;
  124. }
  125. #parts tbody td{
  126. vertical-align:middle;
  127. }
  128. #parts tbody td a,#parts tbody td code,#parts tbody td div{
  129. vertical-align:middle;
  130. display:inline-block;
  131. font-size:18px;
  132. }
  133. #parts tbody td i{
  134. font-size:14px;
  135. }
  136. #parts tbody td div{
  137. margin-right:10px;
  138. }
  139. .componentImage{
  140. width:100px;
  141. height:100px;
  142. background:#ffffff;
  143. box-shadow: 0 0 5px 2px #e3e3e3;
  144. overflow:hidden;
  145. display:table-cell;
  146. vertical-align:middle;
  147. }
  148. .componentImage img{
  149. vertical-align:middle;
  150. display:inline-block;
  151. }
  152. .preloader{
  153. display:none;
  154. background : url('../img/preloader.gif') center center no-repeat ;
  155. width:64px;
  156. height:64px;
  157. margin:10% auto;
  158. }
  159. .dz-preview{
  160. display:none;
  161. }
  162. .dz-default{
  163. padding:5px;
  164. background:#656D78;
  165. color:#ffffff;
  166. cursor:pointer;
  167. text-align: center;
  168. }