main.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. /** HACKPOINT **/
  2. /* Conteneur principal du plugin hackpoint */
  3. .hackpoint {
  4. height: 100%;
  5. }
  6. #hackpoints {
  7. }
  8. /* formulaire d'édition de part */
  9. .hackpoint .part-form {
  10. }
  11. #part-form {
  12. }
  13. #sketchs {
  14. margin:0;
  15. padding:0;
  16. }
  17. /* liste des sketchs */
  18. #sketchs li{
  19. display: inline-block;
  20. margin:0;
  21. padding:5px;
  22. list-style-type: none;
  23. border:0;
  24. }
  25. /* fiche sketch */
  26. .page-sheet-sketch,.page-sheet-sketch body,.page-sheet-sketch .container-fluid{
  27. height: 100%;
  28. min-height: 100%;
  29. overflow: hidden;
  30. box-sizing: border-box;
  31. }
  32. .page-sheet-sketch .cm-s-monokai.CodeMirror {
  33. background: #2e363e;
  34. }
  35. .page-sheet-sketch #mainMenu .navbar-brand {
  36. padding-left: 99px;
  37. }
  38. .page-sheet-sketch .footer{
  39. display: none;
  40. }
  41. .page-sheet-sketch .container-fluid{
  42. padding: 50px 0px 0 0px;
  43. }
  44. #sketch-form{
  45. display: flex;
  46. width: 100%;
  47. height: 100%;
  48. }
  49. #resources-toolbar,#sketch-workspace{
  50. height: 100%;
  51. }
  52. #sketch-workspace .form-control-plaintext {
  53. color: #8e8e8e;
  54. }
  55. #sketch-workspace .input-group-text{
  56. background: #2e363e;
  57. color:#fefefe;
  58. border-color:#2e363e;
  59. }
  60. #resources-toolbar{
  61. width:120px;
  62. background-color: #2b2f35;
  63. color:#fefefe;
  64. height:100%;
  65. min-height: 100%;
  66. position:relative;
  67. }
  68. #sketch-workspace{
  69. flex: 1;
  70. padding:15px;
  71. background: #3e4750;
  72. box-sizing: border-box;
  73. }
  74. #resources-toolbar ul,#resources-toolbar li{
  75. margin:0;
  76. padding:0;
  77. list-style-type: none;
  78. }
  79. #resources-toolbar ul li{
  80. padding:10px;
  81. cursor: pointer;
  82. text-align: center;
  83. border-bottom: 1px solid #21252b;
  84. transition: background 0.15s ease-in-out,transform 0.15s ease-in-out;
  85. position: relative;
  86. }
  87. #resources-toolbar ul li .delete-resource{
  88. position: absolute;
  89. right: 10px;
  90. top:10px;
  91. cursor:pointer;
  92. font-size: 12px;
  93. opacity:0;
  94. transition: opacity 0.2s ease-in-out;
  95. }
  96. #resources-toolbar ul li.active{
  97. background:#212223;
  98. }
  99. #resources-toolbar ul li:hover{
  100. background: #222222;
  101. }
  102. #resources-toolbar ul li:hover i{
  103. transform: scale(1.1);
  104. color:#cecece;
  105. }
  106. #resources-toolbar ul li:hover h3{
  107. color:#ffffff;
  108. }
  109. #resources-toolbar ul li:hover .delete-resource{
  110. opacity:0.7;
  111. }
  112. #resources-toolbar ul li h3{
  113. text-transform: uppercase;
  114. font-size: 11px;
  115. font-weight: bold;
  116. margin:5px 0;
  117. padding:0;
  118. color:#dedede;
  119. }
  120. #resources-toolbar ul li h3 input{
  121. text-align: center;
  122. width: 100%;
  123. text-transform: uppercase;
  124. font-size: 11px;
  125. font-weight: bold;
  126. margin: 0;
  127. padding: 0;
  128. background-color: transparent;
  129. border: 0;
  130. color: #dedede;
  131. }
  132. #resources-toolbar ul li i{
  133. font-size: 30px;
  134. color: #7b7b7b;
  135. transition: transform 0.1s ease-in-out;
  136. }
  137. #resources-toolbar ul li > small{
  138. color:#ffffff;
  139. border-radius: 3px;
  140. padding: 0 3px;
  141. font-size: 10px;
  142. }
  143. #resources-toolbar .btn-add-resource{
  144. margin: auto;
  145. display: block;
  146. }
  147. .fast-spin {
  148. -webkit-animation: fa-spin 0.5s infinite linear;
  149. animation: fa-spin 0.5s infinite linear;
  150. }
  151. .sketch-preloader{
  152. display: none;
  153. }
  154. .resource-dropdown{
  155. position: absolute;
  156. bottom: 0;
  157. }
  158. .resource-dropdown.dropright .dropdown-menu{
  159. border-radius: 0;
  160. background: #333;
  161. top: 0;
  162. max-width: 550px;
  163. min-width: 350px;
  164. right: auto;
  165. left: 100%;
  166. margin-top: 0;
  167. margin-left: 0;
  168. color: #fefefe;
  169. }
  170. .resource-dropdown.dropright .dropdown-menu .dropdown-item:focus,.resource-dropdown.dropright .dropdown-menu .dropdown-item:hover{
  171. background-color: #131313;
  172. }
  173. .resource-dropdown.dropright .dropdown-menu,.resource-dropdown.dropright .dropdown-menu a{
  174. white-space: normal;
  175. }
  176. #sketch-workspace [data-type="dropzone"]{
  177. background:transparent;
  178. color:#cecece;
  179. border:0;
  180. }
  181. div.hackpoint-type-image[data-type="dropzone"] > div{
  182. padding: 15px;
  183. text-align: center;
  184. margin: auto auto 10px auto;
  185. width: 50%;
  186. background: #444e58;
  187. }
  188. #sketch-editor{
  189. overflow: auto;
  190. height: 100%;
  191. box-sizing: border-box;
  192. }
  193. .hackpoint-type-image img{
  194. max-width: 100%!important;
  195. max-height: 100%!important;
  196. margin:5px 0!important;
  197. box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  198. }
  199. .hackpoint-type-image li > a{
  200. display: none;
  201. }
  202. div.hackpoint-type-image[data-type="dropzone"] > ul > li {
  203. vertical-align: top;
  204. display: inline-block;
  205. position: relative;
  206. padding: 5px;
  207. border-bottom: 0;
  208. background: transparent;
  209. }
  210. div.hackpoint-type-image[data-type="dropzone"] > ul > li > i.pointer{
  211. top:15px;
  212. right:5px;
  213. background-color: #333333;
  214. display: inline-block;
  215. padding:5px;
  216. width: 20px;
  217. height: 20px;
  218. font-size: 10px;
  219. text-align: center;
  220. box-sizing: border-box;
  221. border-radius: 100%;
  222. transform: translateY(0px);
  223. }
  224. #parts{
  225. margin:0;
  226. padding:0;
  227. }
  228. #parts li{
  229. width:15%;
  230. display: inline-block;
  231. padding:0px;
  232. margin:5px 5px 5px 0;
  233. }
  234. #parts li .part{
  235. background-color: #2b2f35;
  236. border-radius: 3px;
  237. padding: 15px;
  238. color:#cecece;
  239. min-height: 250px;
  240. position: relative;
  241. }
  242. #parts li .part input{
  243. background-color: #343940;
  244. border-color: #343940;
  245. color:#fefefe;
  246. }
  247. #sketch-workspace .part [data-type="dropzone"]{
  248. border:2px dashed #3e4750;
  249. height:100px;
  250. text-align: center;
  251. text-transform: uppercase;
  252. font-weight: bold;
  253. color:#5e6671;
  254. margin-top:10px;
  255. }
  256. #parts li .part .btn-delete{
  257. color:#cecece;
  258. position: absolute;
  259. bottom: 0;
  260. right: 0;
  261. opacity:0.4;
  262. transition:all 0.2s ease-in-out;
  263. }
  264. #parts li .part .btn-delete:hover{
  265. opacity:0.9;
  266. transform: translateY(-5px) rotate(25deg);
  267. }
  268. #parts li .part .price{
  269. font-weight: bold;
  270. }
  271. #parts li .part .link{
  272. color:#cecece;
  273. position: absolute;
  274. bottom: 0;
  275. left: 0;
  276. padding:5px 10px;
  277. opacity:0.4;
  278. transition:all 0.2s ease-in-out;
  279. }
  280. #parts li .part .brand{
  281. font-size: 10px;
  282. float:right;
  283. margin-top: 5px;
  284. color:#4c7cad;
  285. }
  286. #parts li .part .link:hover{
  287. opacity:0.9;
  288. transform: rotate(180deg);
  289. }