main.css 6.9 KB

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