main.less 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. html {
  2. height: 100%;
  3. width: 100%;
  4. }
  5. body {
  6. background-color: #333;
  7. background: url("../img/background.png") no-repeat top center fixed;
  8. background-size: cover;
  9. margin: 0;
  10. padding: 0;
  11. height: 100%;
  12. width: 100%;
  13. overflow: auto;
  14. }
  15. a {
  16. text-decoration: none;
  17. }
  18. .bg-warning {
  19. color: #8a6d3b;
  20. background-color: #fcf8e3;
  21. border-color: #faebcc;
  22. padding: 10px;
  23. margin: 1em;
  24. }
  25. .bg-info {
  26. color: #31708f;
  27. background-color: #d9edf7;
  28. border-color: #bce8f1;
  29. padding: 10px;
  30. margin: 1em;
  31. text-align: center;
  32. }
  33. .title {
  34. position: absolute;
  35. z-index: 9999999999;
  36. cursor: pointer;
  37. }
  38. .data-loading-txt {
  39. position: relative;
  40. top: -40px;
  41. left: 50px;
  42. font-size: 15px;
  43. font-weight: bold;
  44. color: #666;
  45. }
  46. #result {
  47. background: white;
  48. opacity: 0.9;
  49. height: 0px;
  50. overflow: hidden;
  51. background: url("../img/filter.png") bottom left repeat-x;
  52. }
  53. #result .result-container {
  54. height: 100%;
  55. margin: 0;
  56. padding: 1em;
  57. box-sizing: border-box;
  58. }
  59. .other-radio {
  60. border: none;
  61. border-bottom: 1px solid #ddd;
  62. height: 30px;
  63. line-height: 30px;
  64. }
  65. #result .result-box {
  66. background: white;
  67. border-radius: 10px;
  68. height: calc(~'100% - 15px');
  69. }
  70. .box-header {
  71. display: table;
  72. width: 100%;
  73. table-layout: fixed;
  74. }
  75. .box-description {
  76. height: 80px;
  77. overflow: auto;
  78. }
  79. .box-description-more {
  80. text-align: right;
  81. }
  82. .box-eligibilite-title {
  83. text-transform: uppercase;
  84. color: #666;
  85. }
  86. .box-eligibilite-title .btn{
  87. float: right;
  88. z-index: 1000;
  89. position: relative;
  90. }
  91. .box-eligibilite-yes {
  92. color: #8cc474;
  93. }
  94. .box-eligibilite-no {
  95. color: #e46f61;
  96. }
  97. .box-eligibilite {
  98. height: calc(~'100% - 140px');
  99. }
  100. .box-eligibilite > div {
  101. height: 100%;
  102. }
  103. .box-eligibilite-spinner {
  104. text-align: center;
  105. position:relative;
  106. top: 50%;
  107. margin-top: -28px;
  108. }
  109. .box-eligibilite-none {
  110. text-align: center;
  111. position:relative;
  112. top: 50%;
  113. font-size: 25px;
  114. text-transform: uppercase;
  115. color: #bbb;
  116. margin-top: -35px;
  117. }
  118. .box-body {
  119. overflow: auto;
  120. padding: 1em;
  121. box-sizing: border-box;
  122. height: calc(~'100% - 100px');
  123. border-left: 7px solid silver;
  124. border-radius: 0 0 0 10px;
  125. }
  126. hr {
  127. margin-top: 5px !important;
  128. margin-bottom: 5px !important;
  129. }
  130. .box-logo,
  131. .box-title-description {
  132. display: table-cell;
  133. vertical-align: top;
  134. }
  135. .box-title {
  136. text-align: center;
  137. font-size: 24px;
  138. white-space: nowrap;
  139. font-weight: 200;
  140. margin-top: 5px;
  141. }
  142. .box-desc {
  143. height: 60px;
  144. overflow: auto;
  145. padding-left: 4px;
  146. }
  147. .solution {
  148. font-size: 16px;
  149. }
  150. .box-logo,
  151. .box-logo img {
  152. width: 100px;
  153. height: 100px;
  154. border-radius: 10px 0 10px 0;
  155. }
  156. .md-sidenav-right {
  157. z-index: 99999999999999;
  158. }
  159. .md-sidenav-right .md-toolbar-tools {
  160. font-size: 20px;
  161. position: relative;
  162. top: 21px;
  163. }
  164. .md-sidenav-right md-progress-circular {
  165. position: absolute;
  166. right: 7px;
  167. top: 7px;
  168. }
  169. .force-hidden .md-inner {
  170. display: none !important;
  171. }
  172. .md-sidenav-right md-progress-circular .md-right .md-half-circle {
  173. border-right-color: white !important;
  174. border-top-color: white !important;
  175. }
  176. .md-sidenav-right md-progress-circular .md-left .md-half-circle {
  177. border-left-color: white !important;
  178. border-top-color: white !important;
  179. }
  180. .md-sidenav-right md-progress-circular .md-inner {
  181. display: none;
  182. }
  183. .md-label:before {
  184. content: no-close-quote;
  185. }
  186. .md-sidenav-right .section-title {
  187. text-transform: uppercase;
  188. color: #999;
  189. white-space: nowrap;
  190. font-size: 13px;
  191. padding-bottom: 10px;
  192. margin-bottom: 7px;
  193. border-bottom: 1px solid #999;
  194. }
  195. .md-sidenav-rightmd-checkbox .md-label {
  196. position: relative;
  197. top: -2px;
  198. }
  199. md-checkbox {
  200. margin: 5px 0 0 0;
  201. }
  202. .address-bar {
  203. position: absolute;
  204. right: 20px;
  205. z-index: 1000;
  206. }
  207. .address-bar .input-type {
  208. position: absolute;
  209. top: 20px;
  210. right: 128px;
  211. .loading-typeahead-results,
  212. .no-typeahead-results {
  213. padding: 0 5px;
  214. height: 40px;
  215. line-height: 40px;
  216. background: white;
  217. }
  218. }
  219. .address-bar input {
  220. width: 420px;
  221. height: 41px;
  222. padding: 0 10px;
  223. font-size: 15px;
  224. line-height: 30px;
  225. color: #777;
  226. }
  227. .ellipsis {
  228. overflow: hidden;
  229. white-space: nowrap;
  230. text-overflow: ellipsis;
  231. width: inherit;
  232. }
  233. .address-bar ul.dropdown-menu {
  234. margin: -1px;
  235. border-radius: 0;
  236. width: 510px;
  237. padding: 0;
  238. li {
  239. height: 40px;
  240. line-height: 40px;
  241. a {
  242. .ellipsis;
  243. padding: 0px 5px;
  244. height: 100%;
  245. line-height: 40px;
  246. }
  247. }
  248. }
  249. .address-bar button {
  250. height: 41px;
  251. position: absolute;
  252. top: 20px;
  253. right: 40px;
  254. border-radius: 0 0 0 0 !important;
  255. box-shadow: none;
  256. }
  257. .address-bar .md-menu {
  258. position: absolute;
  259. top: 10px;
  260. right: -12px;
  261. cursor: pointer;
  262. color: white;
  263. font-size: 45px;
  264. }
  265. .address-bar button i {
  266. padding: 0 10px;
  267. }
  268. .title img {
  269. height: 50px;
  270. margin: 1em;
  271. }
  272. #map {
  273. height: 100%;
  274. width: 100%;
  275. }
  276. .popup-title {
  277. font-weight: bold;
  278. }
  279. .popup-line {
  280. white-space: nowrap;
  281. position: relative;
  282. }
  283. .leaflet-popup-content {
  284. width: 380px !important;
  285. max-height: 380px;
  286. overflow: auto;
  287. }
  288. .popup-label {
  289. color: rgba(0,0,0,0.54);
  290. width: inherit;
  291. text-overflow: ellipsis;
  292. white-space: nowrap;
  293. overflow: auto;
  294. font-size: 12px;
  295. }
  296. .popup-value {
  297. color: #333;
  298. font-size: 14px;
  299. height: 26px;
  300. line-height: 23px;
  301. border-bottom: 1px solid #ddd;
  302. margin-bottom: 13px;
  303. }
  304. .popup-small-date {
  305. position: absolute;
  306. font-size: 10px;
  307. right: 0px;
  308. top: 20px;
  309. }
  310. md-toast {
  311. padding-top: 10px !important;
  312. font-size: 14px !important;
  313. }
  314. md-toast.md-bottom {
  315. bottom: 15px;
  316. }
  317. md-toast.md-right {
  318. right: 15px;
  319. }
  320. md-radio-group.md-default-theme:focus:not(:empty) {
  321. border-color: transparent !important;
  322. }
  323. md-radio-button {
  324. margin: 5px 0px;
  325. }
  326. .modal-backdrop.in {
  327. opacity: 0.7 !important;
  328. }
  329. .formulaire .section {
  330. padding-bottom: 20px;
  331. }
  332. .formulaire .no-padding {
  333. padding-bottom: 0px;
  334. }
  335. .formulaire .section-name {
  336. text-transform: uppercase;
  337. font-size: 22px;
  338. }
  339. .formulaire md-input-container {
  340. padding-left: 10px;
  341. padding-bottom: 20px;
  342. }
  343. .formulaire md-select,
  344. .formulaire input {
  345. }
  346. .formulaire md-select-value > span,
  347. .formulaire md-input-container label {
  348. height: 16px;
  349. margin-bottom: 5px;
  350. }
  351. .formulaire md-select-value.md-select-placeholder > span {
  352. position: relative;
  353. top: -2px;
  354. font-weight: bold;
  355. }
  356. .formulaire md-select-value {
  357. width: 100%;
  358. }
  359. .formulaire md-select-value > span {
  360. position: relative;
  361. top: 6px;
  362. }
  363. .formulaire md-content {
  364. display: flex;
  365. }
  366. .formulaire md-content,
  367. .formulaire md-content input {
  368. width: 100%;
  369. vertical-align: top;
  370. }
  371. .formulaire md-select,
  372. .formulaire textarea {
  373. width: 100%;
  374. }
  375. .formulaire .md-select-icon {
  376. display: none;
  377. }
  378. .md-select-menu-container {
  379. z-index: 1050;
  380. }
  381. .form-required {
  382. color: rgb(196,59,29);
  383. }
  384. md-checkbox .md-label:before {
  385. display: none;
  386. }
  387. md-checkbox {
  388. padding: 0;
  389. }
  390. md-checkbox .md-label {
  391. margin-left: 25px;
  392. line-height: 16px;
  393. font-size: 12px;
  394. }
  395. md-checkbox .md-container {
  396. position: absolute;
  397. top: 10px;
  398. }
  399. .formulaire .pres-text {
  400. font-size: 12px;
  401. line-height: 16px;
  402. }
  403. #mn_inscription .modal-body {
  404. max-height: 400px;
  405. overflow: auto;
  406. min-height: 150px;
  407. }
  408. .mn-form-in-progress,
  409. .mn-form-error,
  410. .mn-form-ok {
  411. text-align: center;
  412. font-size: 20px;
  413. }
  414. .mn-form-error i{
  415. color: #EF5050;
  416. }
  417. .mn-form-ok i{
  418. color: #68C782;
  419. }
  420. .mn-form-in-progress i,
  421. .mn-form-error i,
  422. .mn-form-ok i {
  423. font-size: 80px;
  424. margin-bottom: 30px;
  425. }
  426. .mn-form md-radio-group,
  427. .mn-form md-radio-button {
  428. display: block;
  429. }
  430. .mn-form md-radio-button .md-label{
  431. white-space: nowrap;
  432. }
  433. .mn-form .alerte {
  434. margin-top: 30px;
  435. color: rgb(196,59,29);
  436. }