main.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. html, body, #wrap {
  2. height: 100%;
  3. background-color: #ebebeb;
  4. }
  5. body > #wrap {
  6. min-height: 100%;
  7. height: auto;
  8. padding-bottom: 60px;
  9. }
  10. .input-mini{
  11. max-width:60px;
  12. }
  13. .input-medium{
  14. max-width:150px;
  15. }
  16. .ui-helper-hidden-accessible div{
  17. display:none;
  18. }
  19. .ui-autocomplete{
  20. list-style-type:none;
  21. background:#ffffff;
  22. box-shadow:0 0 5px rgba(0,0,0,0.4);
  23. max-width:300px;
  24. margin:0;
  25. z-index: 2000;
  26. padding:0;
  27. }
  28. .ui-autocomplete li{
  29. padding:10px;
  30. transition:all 0.2s eas-in-out;
  31. cursor:pointer;
  32. color:#222222;
  33. min-height: 70px;
  34. margin:0;
  35. }
  36. .ui-autocomplete li img{
  37. margin: 0 15px 0 0;
  38. }
  39. .ui-autocomplete li small{
  40. color:#cecece;
  41. font-style: italic;
  42. }
  43. .ui-autocomplete li:hover{
  44. background-color:#4FC1E9;
  45. color:#ffffff;
  46. }
  47. .ui-autocomplete li:hover a{
  48. color:#ffffff;
  49. }
  50. .dropdown-menu li a{
  51. cursor:pointer;
  52. }
  53. #sketchBlock h2,#componentBlock h2{
  54. margin:0 10px 0 0;
  55. display:inline-block;
  56. vertical-align:top;
  57. }
  58. .footer{
  59. position: relative;
  60. height: 60px;
  61. margin-top: -60px;
  62. padding: 20px 0;
  63. color: #ffffff;
  64. text-align: center;
  65. }
  66. #resources .list-group-item:nth-child(2){
  67. border-top-left-radius: 4px;
  68. border-top-right-radius: 4px;
  69. }
  70. .list-group-item.active i{
  71. color:#ffffff;
  72. }
  73. /* ==========================================================================
  74. Author's custom styles
  75. ========================================================================== */
  76. div.CodeMirror{
  77. height:auto;
  78. }
  79. .navbar {
  80. border-radius:0px;
  81. }
  82. #sketchTitle{
  83. margin-bottom:0;
  84. }
  85. #sketchTitle input{
  86. border:none;
  87. border-bottom: 1px solid #cecece;
  88. font-size: 30px;
  89. font-weight: 200;
  90. background-color:#EBEBEB;
  91. width:100%;
  92. transition:all 0.2s ease-in-out;
  93. }
  94. #sketchTitle input:focus{
  95. color:#4FC1E9;
  96. border-color: #4FC1E9;
  97. }
  98. #resourceContent{
  99. padding-top: 12px;
  100. }
  101. .resources a{
  102. position:relative;
  103. cursor:pointer;
  104. }
  105. .resources-options{
  106. position:absolute;
  107. right:5px;
  108. top:5px;
  109. opacity:0;
  110. color:#777777;
  111. transition:opacity 0.2s ease-in-out;
  112. }
  113. .resources a:hover .resources-options{
  114. opacity:0.8;
  115. }
  116. .resources-options i{
  117. transition:color 0.2s ease-in-out;
  118. }
  119. .resources-options i:hover{
  120. color:#000;
  121. }
  122. .sketchOptions{
  123. list-style-type: none;
  124. margin:0;
  125. padding:0;
  126. float:right;
  127. }
  128. .sketchOptions li{
  129. display: inline-block;
  130. }
  131. .sketchOptions li i{
  132. cursor:pointer;
  133. color:#6D6D6D;
  134. font-size: 20px;
  135. font-weight: normal;
  136. position:relative;
  137. transition:all 0.2s ease-in-out;
  138. margin:5px 5px 0 0;
  139. }
  140. .sketchOptions li:hover i{
  141. color:#4FC1E9;
  142. font-size: 26px;
  143. margin:0;
  144. }
  145. #dropZoneFiles{
  146. background: #f8f8f8 none repeat scroll 0 0;
  147. border-bottom: 5px solid #f2f2f2;
  148. color: #818181;
  149. cursor: pointer;
  150. font-size: 20px;
  151. padding: 15px;
  152. text-transform:uppercase;
  153. text-align: center;
  154. }
  155. #resource{
  156. transition:all 0.5s linear;
  157. }
  158. #sketchs{
  159. margin-bottom:0;
  160. }
  161. #sketchs.table tbody tr td{
  162. vertical-align:middle;
  163. }
  164. #sketchs tbody tr{
  165. cursor:pointer;
  166. }
  167. #sketchs tbody tr a{
  168. display:block;
  169. width:100%;
  170. height:100%;
  171. }
  172. #files tbody a{
  173. color:#222222;
  174. font-size:20px;
  175. line-height:32px;
  176. transition: color 0.2s linear;
  177. }
  178. #files tbody a:hover{
  179. color:#4FC1E9;
  180. }
  181. #files tbody a i{
  182. color:#cecece;
  183. font-size:25px;
  184. font-weight:normal;
  185. }
  186. #parts tbody td{
  187. vertical-align:middle;
  188. }
  189. #parts tbody td a,#parts tbody td code,#parts tbody td div{
  190. vertical-align:middle;
  191. display:inline-block;
  192. font-size:18px;
  193. }
  194. #parts tbody td i{
  195. font-size:14px;
  196. }
  197. #parts tbody td div{
  198. margin-right:10px;
  199. }
  200. #loginBlock{
  201. max-width:500px;
  202. margin:10px auto 10px auto;
  203. padding:15px;
  204. }
  205. #loginBlock h2{
  206. margin-top:0;
  207. }
  208. #loginForm {
  209. color: #8c8c8c;
  210. margin: 15px 0px 0 0;
  211. }
  212. #loginForm input {
  213. width: 100px;
  214. height: auto;
  215. border-radius: 0;
  216. padding: 0 5px 0 5px;
  217. }
  218. .componentImage{
  219. width:100px;
  220. height:100px;
  221. background:#ffffff;
  222. box-shadow: 0 0 5px 2px #e3e3e3;
  223. overflow:hidden;
  224. display:table-cell;
  225. vertical-align:middle;
  226. }
  227. .componentImage img{
  228. vertical-align:middle;
  229. display:inline-block;
  230. }
  231. .preloader{
  232. display:none;
  233. background : url('../img/preloader.gif') center center no-repeat ;
  234. width:64px;
  235. height:64px;
  236. margin:10% auto;
  237. }
  238. .pulse:hover {
  239. -webkit-animation: pop-in 0.3s;
  240. -moz-animation: pop-in 0.3s;
  241. -ms-animation: pop-in 0.3s;
  242. }
  243. .btn.btn-rounded {
  244. border-radius: 40px;
  245. }
  246. .btn-mini {
  247. padding: 0 4px;
  248. font-size:14px!important;
  249. border-radius: 4px;
  250. }
  251. .dz-preview{
  252. display:none;
  253. }
  254. .dz-default{
  255. padding:5px;
  256. background:#656D78;
  257. color:#ffffff;
  258. cursor:pointer;
  259. text-align: center;
  260. }
  261. a.navbar-brand {
  262. padding-left: 45px;
  263. background: url('../img/icon.png') no-repeat 5px center !important;
  264. }
  265. .pointer{
  266. cursor:pointer;
  267. }
  268. .right{
  269. float:right;
  270. }
  271. .left{
  272. float:left;
  273. }
  274. .clear{
  275. clear:both;
  276. }
  277. /* ANIMATIONS */
  278. @-webkit-keyframes pop-in {
  279. 0% { -webkit-transform: scale(1); }
  280. 50% { -webkit-transform: scale(1.3); }
  281. 100% { -webkit-transform: scale(1); }
  282. }
  283. @-moz-keyframes pop-in {
  284. 0% { -moz-transform: scale(1); }
  285. 50% { -moz-transform: scale(1.3); }
  286. 100% { -moz-transform: scale(1); }
  287. }
  288. @keyframes pop-in {
  289. 0% { transform: scale(1); }
  290. 50% { transform: scale(1.3); }
  291. 100% { transform: scale(1); }
  292. }