main.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. // @import './node_modules/@mdi/font/scss/materialdesignicons.scss';
  2. @import "./base.scss";
  3. @import "./colors.scss";
  4. @import "./common.scss";
  5. @import "./layout.scss";
  6. @import "./fonts/snap_it/snap_it.css";
  7. @import "./fonts/avara/avara.css";
  8. @import "./fonts/public-sans/public-sans.css";
  9. body{
  10. background-color: $back;
  11. font-family: 'public_sans';
  12. font-weight: 300;
  13. font-size: 16px;
  14. }
  15. #app{
  16. }
  17. #app>header#header{
  18. // background-color: $front;
  19. pointer-events: none;
  20. display: flex;
  21. flex-direction: row;
  22. align-items: baseline;
  23. .row{
  24. display: flex;
  25. flex-direction: row;
  26. pointer-events: none;
  27. margin: 0;
  28. padding: 0;
  29. >*{
  30. margin-right: 1em;
  31. pointer-events: all;
  32. }
  33. // &.top{
  34. // }
  35. }
  36. h1.row{
  37. font-family: "avara";
  38. margin: 0 1em 0 0;
  39. a{
  40. margin: 0;
  41. span.title{
  42. font-size: 2em;
  43. }
  44. }
  45. }
  46. .row.top{
  47. >*{
  48. label,a{
  49. padding: 0;
  50. span{
  51. display:none;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. #main-content{
  58. #map-backgrounds{
  59. .map-bg-canvas{
  60. mix-blend-mode: multiply;
  61. // filter: contrast(170%);
  62. &.gradient{
  63. // filter: blur(10px);
  64. }
  65. &.trame{
  66. // display:none;
  67. }
  68. }
  69. }
  70. #map-concernements{
  71. }
  72. #map-nav{
  73. pointer-events: none;
  74. ul{
  75. display: flex;
  76. flex-flow: row;
  77. gap: 1em;
  78. pointer-events: none;
  79. li{
  80. list-style: none;
  81. pointer-events: all;
  82. margin-right: 1em;
  83. a{
  84. @include btn();
  85. display: block;
  86. line-height: 2.1;
  87. &.disabled{
  88. pointer-events: none;
  89. opacity: 0.4;
  90. cursor: default;
  91. }
  92. }
  93. }
  94. }
  95. }
  96. #content{
  97. @mixin main-cartouche{
  98. background-color: rgba(255, 255, 255, 0.9);
  99. box-sizing: border-box;
  100. width:450px;
  101. height: 100%;
  102. padding: 1rem 1rem 1rem;
  103. overflow-y: auto;
  104. overflow-x: hidden;
  105. //
  106. display: flex;
  107. flex-direction: column;
  108. }
  109. section.static{
  110. @include main-cartouche();
  111. h2{
  112. font-weight: 400;
  113. font-size: 1.323em;
  114. padding: 1em 0;
  115. }
  116. p:not(:last-of-type){
  117. margin-bottom: 1em;
  118. }
  119. img{
  120. width: 100%;
  121. }
  122. iframe{
  123. width: 100%;
  124. aspect-ratio: 4 / 3;
  125. }
  126. }
  127. section.concernement{
  128. @include main-cartouche();
  129. justify-content: flex-end;
  130. // layout
  131. >header{
  132. flex: 0 0 auto;
  133. padding: 0 0 1em 0;
  134. }
  135. >main{
  136. flex: 1 1 auto;
  137. }
  138. >footer{
  139. flex: 0 0 auto;
  140. padding: 1em 0 0;
  141. }
  142. >header{
  143. flex: 0 0 auto;
  144. }
  145. // contents
  146. >header{
  147. display: flex;
  148. // height: 8rem;
  149. flex-direction: column;
  150. justify-content: flex-end;
  151. div.entite{
  152. // min-height: 10em;
  153. // display: flex;
  154. // flex-direction: column;
  155. // justify-content: flex-end;
  156. label, h3{
  157. // height: 70px;
  158. box-sizing: border-box;
  159. // padding: 0 0 1em 0;
  160. // flex-grow: auto;
  161. }
  162. h3{
  163. font-weight: 400;
  164. font-size: 1.323em;
  165. }
  166. span.menacemaintient{
  167. display: block;
  168. font-weight: 100;
  169. font-size: 0.882em;
  170. padding: 0.5em 0;
  171. }
  172. }
  173. div.concernement-cartouche-icons{
  174. h2{
  175. font-weight: 400;
  176. font-size: 1.323em;
  177. // &.faded{
  178. // font-weight: 100;
  179. // }
  180. }
  181. nav.icons{
  182. ul{
  183. display: flex;
  184. flex-direction: row;
  185. li{
  186. margin: 0.4em 0.6em 0 0;
  187. >svg{
  188. display: inline-block;
  189. $d: 35px;
  190. width:$d; height:$d;
  191. border-radius: $d * 0.5;
  192. background-color: #fff;
  193. padding: 2px;
  194. box-sizing: border-box;
  195. color: #333;
  196. // font-size: 2em;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. >main{
  204. overflow-y: auto;
  205. >section:not(:last-of-type),
  206. .multiple >section:not(:last-of-type){
  207. padding-bottom: 1em;
  208. }
  209. figure{
  210. margin:0.5em 0;
  211. img{
  212. max-width: 100%;
  213. }
  214. }
  215. section.entite{
  216. .sources{
  217. .liens{
  218. a{
  219. text-decoration: underline;
  220. }
  221. }
  222. }
  223. }
  224. // PUISSANCE D'AGIR
  225. ul.besoins{
  226. li.besoin{
  227. position: relative;
  228. label.mdi:before{
  229. font-size: 0.8em;
  230. padding-right: 0.2em;
  231. }
  232. svg.open-btn{
  233. position: absolute;
  234. right:0; top:0;
  235. cursor: pointer;
  236. }
  237. >header{
  238. padding: 0 0 0 0;
  239. cursor: pointer;
  240. >label{
  241. padding:0.3em 0 0.5em 0;
  242. svg{
  243. width:0.7em; height:0.7em;
  244. }
  245. &.hover{
  246. svg{
  247. color:#01ffe2;
  248. }
  249. }
  250. }
  251. h4.besoin-description{
  252. font-weight: 400;
  253. font-size: 1.2em;
  254. // padding: 0.5em 0;
  255. }
  256. }
  257. ul.reponses{
  258. overflow: hidden;
  259. max-height: 1px;
  260. transition: all 0.7s ease-in-out;
  261. li.reponse{
  262. padding:0.5em 0 0;
  263. &:last-of-type{
  264. padding: 0.5em 0 1em;
  265. }
  266. >label{
  267. padding:0 0 0.5em 0;
  268. svg{
  269. width:0.7em;height:0.7em;
  270. }
  271. &.hover{
  272. svg{
  273. color:#01ffe2;
  274. }
  275. }
  276. }
  277. section{
  278. &:not(:last-of-type){
  279. padding: 0 0 0.5em 0;
  280. }
  281. label{ padding:0; }
  282. p{margin:0;}
  283. }
  284. }
  285. }
  286. a.contribute-link{
  287. display: flex;
  288. flex-direction: row;
  289. justify-content: flex-end;
  290. align-items:flex-end;
  291. font-weight: 100;
  292. font-size: 0.882em;
  293. svg{
  294. width:1em; height:1em; margin-right: 0.5em;
  295. }
  296. }
  297. &.opened{
  298. ul.reponses{
  299. max-height: 1000px;
  300. }
  301. }
  302. padding-bottom: 0.5em;
  303. border-bottom: #aaa 1px solid;
  304. margin-bottom: 1em;
  305. }
  306. }
  307. // CERCLE POLITIQUE
  308. section.content-doleances{
  309. >main{
  310. padding: 1em 0;
  311. h5{
  312. margin: 0 0 1em 0;
  313. }
  314. }
  315. label{
  316. margin:0;
  317. padding:0 0 0.5em 0;
  318. }
  319. p{
  320. margin:0;
  321. padding:0 0 0.5em 0;
  322. }
  323. ul{
  324. // padding:0 0 0 1em;
  325. }
  326. .v-select{
  327. input.vs__search{
  328. display: none;
  329. }
  330. div.vs__dropdown-toggle{
  331. border-radius: 0;
  332. border: none;
  333. }
  334. div.vs__selected-options{
  335. padding: 0;
  336. span.vs__selected{
  337. padding: 0;
  338. margin: 0;
  339. font-weight: 400;
  340. font-size: 1.323em;
  341. color:inherit;
  342. line-height: 1.15;
  343. }
  344. }
  345. ul.vs__dropdown-menu{
  346. border-radius: 0;
  347. border: none;
  348. li.vs__dropdown-option{
  349. white-space:normal;
  350. padding:1em 1em 0 1em;
  351. &:last-of-type{
  352. padding:1em;
  353. }
  354. color: #aaa;
  355. transition: color 0.2s ease-in-out;
  356. &.vs__dropdown-option--highlight{
  357. color:#000;
  358. background-color: #fff;
  359. }
  360. }
  361. }
  362. }
  363. }
  364. }
  365. >footer{
  366. section.infos{
  367. position: relative;
  368. svg.open-btn{
  369. position: absolute;
  370. right:0;
  371. top: 0;
  372. cursor: pointer;
  373. }
  374. div.wrapper{
  375. overflow-y: hidden;
  376. max-height: 0.1px;
  377. transition: all 0.5s ease-in-out;
  378. &.opened{
  379. max-height: 200px;
  380. }
  381. }
  382. div.info{
  383. font-size: 0.882em;
  384. font-weight: 100;
  385. // white-space:nowrap;
  386. &.author{
  387. cursor: pointer;
  388. }
  389. >span.label{
  390. font-weight: 100;
  391. }
  392. p{
  393. // display: inline-block;
  394. font-size: inherit;
  395. font-weight: inherit;
  396. }
  397. }
  398. }
  399. section.sliders{
  400. padding: 1em 0 0.5em;
  401. section.historique{
  402. >label{
  403. padding:0;
  404. }
  405. }
  406. .vue-slider-process{
  407. background-color: #01ffe2;
  408. height: 2px!important;
  409. top:calc(50% - 1px)!important;
  410. }
  411. }
  412. }
  413. h3{
  414. font-weight: 400;
  415. font-size: 1.2em;
  416. }
  417. h4{
  418. font-weight: 400;
  419. font-size: 1.2em;
  420. }
  421. h5{
  422. font-weight: 400;
  423. font-size: 1.1em;
  424. }
  425. section>div, p{
  426. font-size: 1em;
  427. font-weight: 300;
  428. line-height: 1.40;
  429. }
  430. label{
  431. display: block;
  432. font-weight: 100;
  433. font-size: 0.882em;
  434. padding: 0 0 0.5em 0;
  435. }
  436. ul, li{
  437. padding:0; margin:0;
  438. list-style: none;
  439. }
  440. }
  441. &.recit-opened {
  442. padding-bottom: 3rem;
  443. }
  444. p{
  445. a{
  446. text-decoration: underline;
  447. }
  448. }
  449. }
  450. #recit-player{
  451. --plyr-color-main: #01ffe2;
  452. --plyr-control-icon-size: 14px;
  453. --plyr-audio-controls-background: rgba(255,255,255,0.4);
  454. --plyr-control-spacing: 4px;
  455. --plyr-range-track-height: 2px;
  456. // --plyr-control-radius: 10px;
  457. >div.plyr{
  458. width:450px;
  459. >div.plyr__controls{
  460. border-radius: 3px;
  461. // border: #fff 1px solid;
  462. }
  463. }
  464. &:not(.visible){
  465. display: none;
  466. }
  467. }
  468. #map-popup{
  469. position: absolute;
  470. z-index: 10;
  471. pointer-events: none;
  472. // outline: 1px solid red;
  473. // top:0;
  474. // left: 0;
  475. .popup-content-wrapper{
  476. display: flex;
  477. flex-direction: row;
  478. align-items:center;
  479. .concernement-map-popup{
  480. background-color: white;
  481. padding: 0.5em;
  482. border-radius: 3px;
  483. max-width: 30em;
  484. ul.icons{
  485. display: flex;
  486. flex-direction: row;
  487. padding: 0.5em 0 0;
  488. margin: 0;
  489. li{
  490. list-style:none;
  491. padding:0;
  492. margin:0 1em 0 0;
  493. }
  494. }
  495. }
  496. .concernement-map-popup-recit{
  497. padding-left: 0.8em;
  498. >svg{
  499. display: inline-block;
  500. $d: 55px;
  501. width:$d; height:$d;
  502. border-radius: $d * 0.5;
  503. background-color: #fff;
  504. padding: 10px;
  505. box-sizing: border-box;
  506. color: #333;
  507. // font-size: 2em;
  508. }
  509. }
  510. .entite-map-popup,
  511. .besoin-map-popup,
  512. .reponse-map-popup{
  513. background-color: white;
  514. padding: 1em;
  515. border-radius: 3px;
  516. max-width: 30em;
  517. >div{
  518. margin-bottom: 0.5em;
  519. label{
  520. display: block;
  521. font-weight: 100;
  522. font-size: 0.882em;
  523. }
  524. }
  525. }
  526. h1, div{
  527. font-size: 1em;
  528. font-weight: 400;
  529. }
  530. // h1{
  531. // padding-bottom: 0.5em;
  532. // }
  533. }
  534. &:before{
  535. content: "";
  536. display: block;
  537. height: 0;
  538. width: 2.9em;
  539. border-top: 1px solid #01ffe2;
  540. position: absolute;
  541. }
  542. &[pos="top-right"]{
  543. padding: 0 0 2em 2em;
  544. &:before{
  545. bottom: 0;
  546. left: 0;
  547. transform-origin: 0 0;
  548. transform: rotate(-45deg);
  549. }
  550. }
  551. &[pos="bottom-right"]{
  552. padding: 2em 0 0 2em;
  553. &:before{
  554. top: 0;
  555. left: 0;
  556. transform-origin: 0 0;
  557. transform: rotate(45deg);
  558. }
  559. }
  560. &[pos="top-left"]{
  561. padding: 0 2em 2em 0;
  562. &:before{
  563. bottom: 0;
  564. right: 0;
  565. transform-origin: right bottom;
  566. transform: rotate(45deg);
  567. }
  568. .popup-content-wrapper{
  569. flex-direction:row-reverse;
  570. .concernement-map-popup-recit{
  571. padding-right: 0.8em;
  572. }
  573. }
  574. }
  575. &[pos="bottom-left"]{
  576. padding: 2em 2em 0 0;
  577. &:before{
  578. top: 0;
  579. right: 0;
  580. transform-origin: right top;
  581. transform: rotate(-45deg);
  582. }
  583. .popup-content-wrapper{
  584. flex-direction:row-reverse;
  585. .concernement-map-popup-recit{
  586. padding-right: 0.8em;
  587. }
  588. }
  589. }
  590. }
  591. }