frederic.daviere.html 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Fred Planning</title>
  6. <style>
  7. ::before,
  8. ::after {
  9. box-sizing: border-box;
  10. }
  11. :root {
  12. --color-primary-100: hsl(10, 59%, 25%);
  13. --color-primary-200: hsl(10, 59%, 45%);
  14. --color-primary-400: hsl(37, 100%, 45%);
  15. --color-primary-600: hsl(37, 100%, 65%);
  16. --color-primary-800: hsl(37, 100%, 85%);
  17. --color-accent-100: hsl(179, 52%, 15%);
  18. --color-accent-200: hsl(179, 52%, 25%);
  19. --color-accent-400: hsl(172, 58%, 40%);
  20. --color-accent-500: hsl(172, 58%, 53%);
  21. --color-accent-600: hsl(172, 58%, 66%);
  22. --color-accent-700: hsl(172, 60%, 70%);
  23. --color-accent-800: hsl(172, 60%, 80%);
  24. --color-accent-850: hsl(172, 70%, 90%);
  25. --color-accent-900: hsl(172, 85%, 95%);
  26. --color-accent-950: hsl(172, 96%, 98%);
  27. --color-neutral-100: hsl(37, 5%, 15%);
  28. --color-neutral-200: hsl(37, 5%, 25%);
  29. --color-neutral-300: hsl(37, 5%, 35%);
  30. --color-neutral-400: hsl(37, 5%, 45%);
  31. --color-neutral-600: hsl(37, 5%, 60%);
  32. --color-neutral-800: hsl(37, 5%, 80%);
  33. }
  34. .icon {
  35. font-family: "Material Icons";
  36. font-weight: normal;
  37. font-style: normal;
  38. font-size: 24px;
  39. line-height: 1;
  40. letter-spacing: normal;
  41. text-transform: none;
  42. display: inline-block;
  43. white-space: nowrap;
  44. word-wrap: normal;
  45. direction: ltr;
  46. font-feature-settings: "liga";
  47. -moz-font-feature-settings: "liga";
  48. -moz-osx-font-smoothing: grayscale;
  49. }
  50. .benevole {
  51. vertical-align: middle;
  52. display: inline-block;
  53. }
  54. .benevole .icon {
  55. vertical-align: bottom;
  56. }
  57. .planning-container {
  58. max-width: 800px;
  59. width: 100%;
  60. }
  61. .daily-agenda {
  62. border: solid 1px var(--color-neutral-200);
  63. }
  64. .day-header {
  65. background: var(--color-neutral-200);
  66. color: var(--color-accent-800);
  67. padding: 12px;
  68. font-size: 1.8rem;
  69. font-weight: bold;
  70. text-transform: capitalize;
  71. }
  72. .agenda-creneau-header {
  73. padding: 12px;
  74. background: var(--color-accent-850);
  75. position: relative;
  76. border-bottom: 1px solid var(--color-accent-600);
  77. }
  78. .agenda-creneau-time {
  79. padding-right: 8px;
  80. }
  81. .agenda-creneau-title {
  82. font-weight: bold;
  83. text-transform: capitalize;
  84. }
  85. .agenda-creneau-action {
  86. position: absolute;
  87. top: 8px;
  88. right: 12px;
  89. background: transparent;
  90. outline: 0;
  91. border: 0;
  92. cursor: pointer;
  93. }
  94. .agenda-creneau-action:hover {
  95. color: var(--color-neutral-400);
  96. }
  97. .transformation-container {
  98. height: auto;
  99. overflow: hidden;
  100. }
  101. .agenda-creneau-details {
  102. padding: 4px 12px;
  103. display: flex;
  104. flex-wrap: wrap;
  105. overflow: hidden;
  106. opacity: 1;
  107. transform-origin: 0px 0px;
  108. transition: height 0.3s ease-in-out;
  109. }
  110. .agenda-creneau-details--title {
  111. width: 100%;
  112. font-weight: 600;
  113. margin: 8px 0px;
  114. }
  115. .agenda-creneau-details--content {
  116. width: 100%;
  117. margin: 0px 0px 8px;
  118. }
  119. @media (min-width: 600px) {
  120. .name-header {
  121. text-align: center;
  122. }
  123. .planning-container {
  124. margin-left: auto;
  125. margin-right: auto;
  126. }
  127. .agenda-creneau-time {
  128. padding-right: 2rem;
  129. }
  130. .agenda-creneau-details--title {
  131. width: 16.6%;
  132. margin-bottom: 12px;
  133. }
  134. .agenda-creneau-details--content {
  135. width: calc(33.3% - 8px);
  136. padding-right: 8px;
  137. margin: 8px 0px 16px;
  138. }
  139. }
  140. .agenda-creneau-details--content .chip {
  141. margin: 2px;
  142. }
  143. .hide {
  144. display: none;
  145. }
  146. #links {
  147. list-style-type: none;
  148. max-width: 200px;
  149. margin: 0 auto;
  150. border-top: 1px solid var(--color-neutral-400);
  151. padding: 0;
  152. }
  153. .link-item {
  154. padding: 8px 12px;
  155. margin: 0 auto;
  156. border: solid 1px var(--color-neutral-400);
  157. border-top: 0px;
  158. }
  159. .link-item a {
  160. display: block;
  161. }
  162. .formcontrol {
  163. all: initial;
  164. display: block;
  165. box-sizing: border-box;
  166. font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  167. }
  168. .formcontrol.home-search {
  169. margin: 3rem auto 1rem;
  170. max-width: 400px;
  171. }
  172. .formcontrol:not(:last-child) {
  173. margin-bottom: 1rem;
  174. }
  175. .formcontrol-control {
  176. width: 100%;
  177. }
  178. .formcontrol-label {
  179. color: var(--color-neutral-200);
  180. display: -webkit-box;
  181. display: flex;
  182. font-size: 0.9rem;
  183. font-family: inherit;
  184. font-weight: 500;
  185. line-height: 1.5rem;
  186. margin-bottom: 0.2rem;
  187. }
  188. .formcontrol-label > button {
  189. margin-left: 0.25rem;
  190. }
  191. .formcontrol-optional {
  192. -webkit-box-flex: 1;
  193. flex: 1;
  194. color: #647592;
  195. font-size: 0.75rem;
  196. margin-top: 0.25rem;
  197. text-align: right;
  198. line-height: 1.125rem;
  199. margin-left: 0.25rem;
  200. }
  201. .formcontrol-help {
  202. color: #647592;
  203. display: -webkit-box;
  204. display: flex;
  205. font-size: 0.75rem;
  206. margin-top: 0.5rem;
  207. font-family: inherit;
  208. line-height: 1.125rem;
  209. }
  210. .formcontrol-helplink {
  211. -webkit-box-flex: 1;
  212. flex: 1;
  213. margin-top: calc(-0.25rem);
  214. text-align: right;
  215. }
  216. .formcontrol--error .formcontrol-help {
  217. color: #e4002b;
  218. }
  219. .formcontrol--success .formcontrol-help {
  220. color: #08875b;
  221. }
  222. .input {
  223. all: initial;
  224. color: var(--color-neutral-100);
  225. width: 100%;
  226. border: none;
  227. height: 2rem;
  228. margin: 0;
  229. outline: 0;
  230. padding: 0.2rem 0.5rem;
  231. font-size: 0.875rem;
  232. -webkit-appearance: none;
  233. -moz-appearance: none;
  234. appearance: none;
  235. box-shadow: 0 -1px 0 0 var(--color-accent-700) inset;
  236. box-sizing: border-box;
  237. -webkit-transition: 0.1s ease-in-out;
  238. transition: 0.1s ease-in-out;
  239. font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  240. line-height: 1.25rem;
  241. background-color: var(--color-accent-950);
  242. -webkit-transition-property: box-shadow, border;
  243. transition-property: box-shadow, border;
  244. }
  245. .input::-webkit-input-placeholder {
  246. color: #505d74;
  247. }
  248. .input:-ms-input-placeholder {
  249. color: #505d74;
  250. }
  251. .input::-ms-input-placeholder {
  252. color: #505d74;
  253. }
  254. .input::placeholder {
  255. color: #505d74;
  256. }
  257. .input:hover {
  258. background-color: var(--color-accent-850);
  259. }
  260. .input:focus {
  261. box-shadow: 0 0 0 2px var(--color-accent-700);
  262. border-color: transparent;
  263. background-color: var(--color-accent-950);
  264. }
  265. .input:disabled {
  266. color: #c1c7d3 !important;
  267. -webkit-user-select: none;
  268. -moz-user-select: none;
  269. -ms-user-select: none;
  270. user-select: none;
  271. border-color: transparent;
  272. pointer-events: none;
  273. }
  274. .input:disabled::-webkit-input-placeholder {
  275. color: #c1c7d3;
  276. }
  277. .input:disabled:-ms-input-placeholder {
  278. color: #c1c7d3;
  279. }
  280. .input:disabled::-ms-input-placeholder {
  281. color: #c1c7d3;
  282. }
  283. .input:disabled::placeholder {
  284. color: #c1c7d3;
  285. }
  286. .input--small {
  287. height: 2rem;
  288. font-size: 0.875rem;
  289. line-height: 1.125rem;
  290. padding-top: 0.25rem;
  291. padding-bottom: 0.25rem;
  292. }
  293. .input--adorned-start {
  294. padding-left: 2rem;
  295. }
  296. .input--adorned-end {
  297. padding-right: 2rem;
  298. }
  299. .input--valid {
  300. box-shadow: 0 -1px 0 0 #08875b inset !important;
  301. }
  302. .input--valid:focus {
  303. box-shadow: 0 0 0 2px #08875b !important;
  304. }
  305. .input--invalid {
  306. box-shadow: 0 -1px 0 0 #e93255 inset !important;
  307. }
  308. .input--invalid:focus {
  309. box-shadow: 0 0 0 2px #e93255 !important;
  310. }
  311. #search {
  312. background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%232ba191%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M15.5%2014h-.79l-.28-.27C15.41%2012.59%2016%2011.11%2016%209.5%2016%205.91%2013.09%203%209.5%203S3%205.91%203%209.5%205.91%2016%209.5%2016c1.61%200%203.09-.59%204.23-1.57l.27.28v.79l5%204.99L20.49%2019l-4.99-5zm-6%200C7.01%2014%205%2011.99%205%209.5S7.01%205%209.5%205%2014%207.01%2014%209.5%2011.99%2014%209.5%2014z%22%2F%3E%3C%2Fsvg%3E");
  313. background-repeat: no-repeat;
  314. padding-left: 30px;
  315. background-position: 4px;
  316. }
  317. </style>
  318. </head>
  319. <body>
  320. <p>Bonjour Fred,</p>
  321. <p>
  322. tu trouveras ci dessous et ci joint le récapitulatif de tes créneaux pour BDLG.<br />
  323. Blabla à faire valider à la com bénévole.
  324. </p>
  325. <p>Cordialement,<br />La commission Bénévole</p>
  326. <div class="planning-container">
  327. <div class="daily-agenda">
  328. <div class="day-header">vendredi 09 septembre</div>
  329. <div>
  330. <div>
  331. <div class="agenda-creneau-header">
  332. <span class="agenda-creneau-time">22h00-23h00 </span>
  333. <span class="agenda-creneau-title">Bar Durante </span>
  334. </div>
  335. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  336. <div class="agenda-creneau-details--content">Les gens sont en autonomie pour les bières mais votre créneau sera de changer les futs, nettoyer la zone du bar + gérer l&#39;alcool fort : ne pas ouvrir 1000 bouteilles en même temps, et servir le vin blanc et rosé qui sont au frais
  337. + passer la serpillère si bière renversée</div>
  338. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  339. <div class="agenda-creneau-details--content">
  340. <div class="benevole">
  341. <svg
  342. class="icon"
  343. xmlns="http://www.w3.org/2000/svg"
  344. height="24px"
  345. viewBox="0 0 24 24"
  346. width="24px"
  347. fill="currentcolor"
  348. >
  349. <path d="M0 0h24v24H0z" fill="none" />
  350. <path
  351. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  352. />
  353. </svg>
  354. <span>Armand FP : 06 03 46 59 48</span>
  355. </div>
  356. </div>
  357. <div class="agenda-creneau-details--title">Le responsable</div>
  358. <div class="agenda-creneau-details--content">
  359. <div class="benevole">
  360. <svg
  361. class="icon"
  362. xmlns="http://www.w3.org/2000/svg"
  363. height="24px"
  364. viewBox="0 0 24 24"
  365. width="24px"
  366. fill="currentcolor"
  367. >
  368. <path d="M0 0h24v24H0z" fill="none" />
  369. <path
  370. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  371. />
  372. </svg>
  373. <span>Stef : 06 66 33 03 09</span>
  374. </div>
  375. </div>
  376. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  377. <div class="agenda-creneau-details--content">
  378. <div class="benevole">
  379. <svg
  380. class="icon"
  381. xmlns="http://www.w3.org/2000/svg"
  382. height="24px"
  383. viewBox="0 0 24 24"
  384. width="24px"
  385. fill="currentcolor"
  386. >
  387. <path d="M0 0h24v24H0z" fill="none" />
  388. <path
  389. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  390. />
  391. </svg>
  392. <span>David : 06 20 63 29 57</span>
  393. </div>
  394. <div class="benevole">
  395. <svg
  396. class="icon"
  397. xmlns="http://www.w3.org/2000/svg"
  398. height="24px"
  399. viewBox="0 0 24 24"
  400. width="24px"
  401. fill="currentcolor"
  402. >
  403. <path d="M0 0h24v24H0z" fill="none" />
  404. <path
  405. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  406. />
  407. </svg>
  408. <span>PierreQ : 06 70 43 76 31</span>
  409. </div>
  410. </div>
  411. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  412. <div class="agenda-creneau-details--content">
  413. <div class="benevole">
  414. <svg
  415. class="icon"
  416. xmlns="http://www.w3.org/2000/svg"
  417. height="24px"
  418. viewBox="0 0 24 24"
  419. width="24px"
  420. fill="currentcolor"
  421. >
  422. <path d="M0 0h24v24H0z" fill="none" />
  423. <path
  424. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  425. />
  426. </svg>
  427. <span>Cédric : 06 85 75 55 08</span>
  428. </div>
  429. <div class="benevole">
  430. <svg
  431. class="icon"
  432. xmlns="http://www.w3.org/2000/svg"
  433. height="24px"
  434. viewBox="0 0 24 24"
  435. width="24px"
  436. fill="currentcolor"
  437. >
  438. <path d="M0 0h24v24H0z" fill="none" />
  439. <path
  440. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  441. />
  442. </svg>
  443. <span>Nicholas : 07 77 82 44 89</span>
  444. </div>
  445. </div>
  446. </div>
  447. </div>
  448. </div>
  449. </div>
  450. <div class="daily-agenda">
  451. <div class="day-header">samedi 10 septembre</div>
  452. <div>
  453. <div>
  454. <div class="agenda-creneau-header">
  455. <span class="agenda-creneau-time">11h00-12h30 </span>
  456. <span class="agenda-creneau-title">Installation du jardin des plantes </span>
  457. </div>
  458. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  459. <div class="agenda-creneau-details--content">Installation du catering (barrières / tables / chaises / autowash)
  460. Installation du bar (barnum / tireuses / logistique).
  461. installation signalétique
  462. </div>
  463. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  464. <div class="agenda-creneau-details--content">
  465. <div class="benevole">
  466. <svg
  467. class="icon"
  468. xmlns="http://www.w3.org/2000/svg"
  469. height="24px"
  470. viewBox="0 0 24 24"
  471. width="24px"
  472. fill="currentcolor"
  473. >
  474. <path d="M0 0h24v24H0z" fill="none" />
  475. <path
  476. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  477. />
  478. </svg>
  479. <span>Sophie : 06 16 48 88 23</span>
  480. </div>
  481. </div>
  482. <div class="agenda-creneau-details--title">Le responsable</div>
  483. <div class="agenda-creneau-details--content">
  484. <div class="benevole">
  485. <svg
  486. class="icon"
  487. xmlns="http://www.w3.org/2000/svg"
  488. height="24px"
  489. viewBox="0 0 24 24"
  490. width="24px"
  491. fill="currentcolor"
  492. >
  493. <path d="M0 0h24v24H0z" fill="none" />
  494. <path
  495. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  496. />
  497. </svg>
  498. <span>Lieu : Marine 06 32 99 84 98
  499. Bar : Stef 06 66 33 03 09
  500. Logistique : Lorraine 06 71 35 76 12
  501. </span>
  502. </div>
  503. </div>
  504. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  505. <div class="agenda-creneau-details--content">
  506. <div class="benevole">
  507. <svg
  508. class="icon"
  509. xmlns="http://www.w3.org/2000/svg"
  510. height="24px"
  511. viewBox="0 0 24 24"
  512. width="24px"
  513. fill="currentcolor"
  514. >
  515. <path d="M0 0h24v24H0z" fill="none" />
  516. <path
  517. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  518. />
  519. </svg>
  520. <span>Theo : 06 51 13 60 36</span>
  521. </div>
  522. <div class="benevole">
  523. <svg
  524. class="icon"
  525. xmlns="http://www.w3.org/2000/svg"
  526. height="24px"
  527. viewBox="0 0 24 24"
  528. width="24px"
  529. fill="currentcolor"
  530. >
  531. <path d="M0 0h24v24H0z" fill="none" />
  532. <path
  533. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  534. />
  535. </svg>
  536. <span>Simon : 06 35 10 27 15</span>
  537. </div>
  538. </div>
  539. </div>
  540. </div>
  541. <div>
  542. <div class="agenda-creneau-header">
  543. <span class="agenda-creneau-time">23h00-23h30 </span>
  544. <span class="agenda-creneau-title">créneau propreté / chiottes + poubelles</span>
  545. </div>
  546. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  547. <div class="agenda-creneau-details--content">Laver les toilettes (cuvettes) / remettre du PQ, savon, etc. Que t&#39;ai toi-même envie d&#39;y aller après.
  548. Faire le tour des poubelles pour vérfier état (changer sac) et vérifier le tri</div>
  549. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  550. <div class="agenda-creneau-details--content">
  551. <div class="benevole">
  552. <svg
  553. class="icon"
  554. xmlns="http://www.w3.org/2000/svg"
  555. height="24px"
  556. viewBox="0 0 24 24"
  557. width="24px"
  558. fill="currentcolor"
  559. >
  560. <path d="M0 0h24v24H0z" fill="none" />
  561. <path
  562. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  563. />
  564. </svg>
  565. <span>Edouard : 06 47 49 38 68</span>
  566. </div>
  567. </div>
  568. <div class="agenda-creneau-details--title">Le responsable</div>
  569. <div class="agenda-creneau-details--content">
  570. <div class="benevole">
  571. <svg
  572. class="icon"
  573. xmlns="http://www.w3.org/2000/svg"
  574. height="24px"
  575. viewBox="0 0 24 24"
  576. width="24px"
  577. fill="currentcolor"
  578. >
  579. <path d="M0 0h24v24H0z" fill="none" />
  580. <path
  581. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  582. />
  583. </svg>
  584. <span>Marine : 06 32 99 84 98
  585. Louise :
  586. Poubelle : Alexis : 06 79 99 31 24</span>
  587. </div>
  588. </div>
  589. </div>
  590. </div>
  591. <div>
  592. <div class="agenda-creneau-header">
  593. <span class="agenda-creneau-time">23h30-00h00 </span>
  594. <span class="agenda-creneau-title">Démontage barnum</span>
  595. </div>
  596. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  597. <div class="agenda-creneau-details--content">démonter le barnum</div>
  598. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  599. <div class="agenda-creneau-details--content">
  600. <div class="benevole">
  601. <svg
  602. class="icon"
  603. xmlns="http://www.w3.org/2000/svg"
  604. height="24px"
  605. viewBox="0 0 24 24"
  606. width="24px"
  607. fill="currentcolor"
  608. >
  609. <path d="M0 0h24v24H0z" fill="none" />
  610. <path
  611. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  612. />
  613. </svg>
  614. <span>Aymeric Pompom : 06 78 57 28 15</span>
  615. </div>
  616. <div class="benevole">
  617. <svg
  618. class="icon"
  619. xmlns="http://www.w3.org/2000/svg"
  620. height="24px"
  621. viewBox="0 0 24 24"
  622. width="24px"
  623. fill="currentcolor"
  624. >
  625. <path d="M0 0h24v24H0z" fill="none" />
  626. <path
  627. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  628. />
  629. </svg>
  630. <span>Anne Croute : 06 33 02 77 18</span>
  631. </div>
  632. <div class="benevole">
  633. <svg
  634. class="icon"
  635. xmlns="http://www.w3.org/2000/svg"
  636. height="24px"
  637. viewBox="0 0 24 24"
  638. width="24px"
  639. fill="currentcolor"
  640. >
  641. <path d="M0 0h24v24H0z" fill="none" />
  642. <path
  643. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  644. />
  645. </svg>
  646. <span>Armand TB : 06 46 24 64 37</span>
  647. </div>
  648. <div class="benevole">
  649. <svg
  650. class="icon"
  651. xmlns="http://www.w3.org/2000/svg"
  652. height="24px"
  653. viewBox="0 0 24 24"
  654. width="24px"
  655. fill="currentcolor"
  656. >
  657. <path d="M0 0h24v24H0z" fill="none" />
  658. <path
  659. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  660. />
  661. </svg>
  662. <span>Alexis Méca : 06 74 57 10 12</span>
  663. </div>
  664. <div class="benevole">
  665. <svg
  666. class="icon"
  667. xmlns="http://www.w3.org/2000/svg"
  668. height="24px"
  669. viewBox="0 0 24 24"
  670. width="24px"
  671. fill="currentcolor"
  672. >
  673. <path d="M0 0h24v24H0z" fill="none" />
  674. <path
  675. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  676. />
  677. </svg>
  678. <span>Armel : 06 35 56 46 52</span>
  679. </div>
  680. <div class="benevole">
  681. <svg
  682. class="icon"
  683. xmlns="http://www.w3.org/2000/svg"
  684. height="24px"
  685. viewBox="0 0 24 24"
  686. width="24px"
  687. fill="currentcolor"
  688. >
  689. <path d="M0 0h24v24H0z" fill="none" />
  690. <path
  691. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  692. />
  693. </svg>
  694. <span>Nils : 06 35 38 72 26</span>
  695. </div>
  696. <div class="benevole">
  697. <svg
  698. class="icon"
  699. xmlns="http://www.w3.org/2000/svg"
  700. height="24px"
  701. viewBox="0 0 24 24"
  702. width="24px"
  703. fill="currentcolor"
  704. >
  705. <path d="M0 0h24v24H0z" fill="none" />
  706. <path
  707. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  708. />
  709. </svg>
  710. <span>Nicolas : 06 88 18 89 44</span>
  711. </div>
  712. </div>
  713. <div class="agenda-creneau-details--title">Le responsable</div>
  714. <div class="agenda-creneau-details--content">
  715. <div class="benevole">
  716. <svg
  717. class="icon"
  718. xmlns="http://www.w3.org/2000/svg"
  719. height="24px"
  720. viewBox="0 0 24 24"
  721. width="24px"
  722. fill="currentcolor"
  723. >
  724. <path d="M0 0h24v24H0z" fill="none" />
  725. <path
  726. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  727. />
  728. </svg>
  729. <span>Lorraine 06 71 35 76 12</span>
  730. </div>
  731. </div>
  732. </div>
  733. </div>
  734. <div>
  735. <div class="agenda-creneau-header">
  736. <span class="agenda-creneau-time">00h00-01h30 </span>
  737. <span class="agenda-creneau-title">Rangement/démontage JdP</span>
  738. </div>
  739. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  740. <div class="agenda-creneau-details--content">Ranger / nettoyer. Tout doit disparaitre et être remis dans les camions</div>
  741. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  742. <div class="agenda-creneau-details--content">
  743. <div class="benevole">
  744. <svg
  745. class="icon"
  746. xmlns="http://www.w3.org/2000/svg"
  747. height="24px"
  748. viewBox="0 0 24 24"
  749. width="24px"
  750. fill="currentcolor"
  751. >
  752. <path d="M0 0h24v24H0z" fill="none" />
  753. <path
  754. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  755. />
  756. </svg>
  757. <span>Elodie : 06 72 31 32 91</span>
  758. </div>
  759. <div class="benevole">
  760. <svg
  761. class="icon"
  762. xmlns="http://www.w3.org/2000/svg"
  763. height="24px"
  764. viewBox="0 0 24 24"
  765. width="24px"
  766. fill="currentcolor"
  767. >
  768. <path d="M0 0h24v24H0z" fill="none" />
  769. <path
  770. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  771. />
  772. </svg>
  773. <span>Armand TB : 06 46 24 64 37</span>
  774. </div>
  775. <div class="benevole">
  776. <svg
  777. class="icon"
  778. xmlns="http://www.w3.org/2000/svg"
  779. height="24px"
  780. viewBox="0 0 24 24"
  781. width="24px"
  782. fill="currentcolor"
  783. >
  784. <path d="M0 0h24v24H0z" fill="none" />
  785. <path
  786. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  787. />
  788. </svg>
  789. <span>Vincent DP : 06 24 10 96 05</span>
  790. </div>
  791. <div class="benevole">
  792. <svg
  793. class="icon"
  794. xmlns="http://www.w3.org/2000/svg"
  795. height="24px"
  796. viewBox="0 0 24 24"
  797. width="24px"
  798. fill="currentcolor"
  799. >
  800. <path d="M0 0h24v24H0z" fill="none" />
  801. <path
  802. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  803. />
  804. </svg>
  805. <span>Voleur Elie : 06 43 71 56 83</span>
  806. </div>
  807. <div class="benevole">
  808. <svg
  809. class="icon"
  810. xmlns="http://www.w3.org/2000/svg"
  811. height="24px"
  812. viewBox="0 0 24 24"
  813. width="24px"
  814. fill="currentcolor"
  815. >
  816. <path d="M0 0h24v24H0z" fill="none" />
  817. <path
  818. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  819. />
  820. </svg>
  821. <span>Hutch : 06 89 09 67 29</span>
  822. </div>
  823. <div class="benevole">
  824. <svg
  825. class="icon"
  826. xmlns="http://www.w3.org/2000/svg"
  827. height="24px"
  828. viewBox="0 0 24 24"
  829. width="24px"
  830. fill="currentcolor"
  831. >
  832. <path d="M0 0h24v24H0z" fill="none" />
  833. <path
  834. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  835. />
  836. </svg>
  837. <span>Marine : 06 32 99 84 98</span>
  838. </div>
  839. <div class="benevole">
  840. <svg
  841. class="icon"
  842. xmlns="http://www.w3.org/2000/svg"
  843. height="24px"
  844. viewBox="0 0 24 24"
  845. width="24px"
  846. fill="currentcolor"
  847. >
  848. <path d="M0 0h24v24H0z" fill="none" />
  849. <path
  850. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  851. />
  852. </svg>
  853. <span>Anne-Gaëlle : 06 66 96 14 07</span>
  854. </div>
  855. <div class="benevole">
  856. <svg
  857. class="icon"
  858. xmlns="http://www.w3.org/2000/svg"
  859. height="24px"
  860. viewBox="0 0 24 24"
  861. width="24px"
  862. fill="currentcolor"
  863. >
  864. <path d="M0 0h24v24H0z" fill="none" />
  865. <path
  866. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  867. />
  868. </svg>
  869. <span>Camille : 06 98 35 89 88</span>
  870. </div>
  871. <div class="benevole">
  872. <svg
  873. class="icon"
  874. xmlns="http://www.w3.org/2000/svg"
  875. height="24px"
  876. viewBox="0 0 24 24"
  877. width="24px"
  878. fill="currentcolor"
  879. >
  880. <path d="M0 0h24v24H0z" fill="none" />
  881. <path
  882. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  883. />
  884. </svg>
  885. <span>Simon : 06 35 10 27 15</span>
  886. </div>
  887. <div class="benevole">
  888. <svg
  889. class="icon"
  890. xmlns="http://www.w3.org/2000/svg"
  891. height="24px"
  892. viewBox="0 0 24 24"
  893. width="24px"
  894. fill="currentcolor"
  895. >
  896. <path d="M0 0h24v24H0z" fill="none" />
  897. <path
  898. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  899. />
  900. </svg>
  901. <span>PierreQ : 06 70 43 76 31</span>
  902. </div>
  903. </div>
  904. <div class="agenda-creneau-details--title">Le responsable</div>
  905. <div class="agenda-creneau-details--content">
  906. <div class="benevole">
  907. <svg
  908. class="icon"
  909. xmlns="http://www.w3.org/2000/svg"
  910. height="24px"
  911. viewBox="0 0 24 24"
  912. width="24px"
  913. fill="currentcolor"
  914. >
  915. <path d="M0 0h24v24H0z" fill="none" />
  916. <path
  917. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  918. />
  919. </svg>
  920. <span>Bar : Stef 06 66 33 03 09
  921. Logistique : Lorraine 06 71 35 76 12
  922. Général : Marine 06 32 99 84 98
  923. </span>
  924. </div>
  925. </div>
  926. </div>
  927. </div>
  928. </div>
  929. </div>
  930. <div class="daily-agenda">
  931. <div class="day-header">dimanche 11 septembre</div>
  932. <div>
  933. <div>
  934. <div class="agenda-creneau-header">
  935. <span class="agenda-creneau-time">09h00-11h00 </span>
  936. <span class="agenda-creneau-title">Install / prépa public</span>
  937. </div>
  938. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  939. <div class="agenda-creneau-details--content">Mettre en place pour arrivée du public : signalétique / tables / chaises, etc. </div>
  940. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  941. <div class="agenda-creneau-details--content">
  942. <div class="benevole">
  943. <svg
  944. class="icon"
  945. xmlns="http://www.w3.org/2000/svg"
  946. height="24px"
  947. viewBox="0 0 24 24"
  948. width="24px"
  949. fill="currentcolor"
  950. >
  951. <path d="M0 0h24v24H0z" fill="none" />
  952. <path
  953. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  954. />
  955. </svg>
  956. <span>Silvia : 06 98 09 84 36</span>
  957. </div>
  958. <div class="benevole">
  959. <svg
  960. class="icon"
  961. xmlns="http://www.w3.org/2000/svg"
  962. height="24px"
  963. viewBox="0 0 24 24"
  964. width="24px"
  965. fill="currentcolor"
  966. >
  967. <path d="M0 0h24v24H0z" fill="none" />
  968. <path
  969. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  970. />
  971. </svg>
  972. <span>Lucas : 06 63 77 27 86</span>
  973. </div>
  974. <div class="benevole">
  975. <svg
  976. class="icon"
  977. xmlns="http://www.w3.org/2000/svg"
  978. height="24px"
  979. viewBox="0 0 24 24"
  980. width="24px"
  981. fill="currentcolor"
  982. >
  983. <path d="M0 0h24v24H0z" fill="none" />
  984. <path
  985. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  986. />
  987. </svg>
  988. <span>Katharina „Tshik Tshik“ : 49176 43 49 76 81</span>
  989. </div>
  990. <div class="benevole">
  991. <svg
  992. class="icon"
  993. xmlns="http://www.w3.org/2000/svg"
  994. height="24px"
  995. viewBox="0 0 24 24"
  996. width="24px"
  997. fill="currentcolor"
  998. >
  999. <path d="M0 0h24v24H0z" fill="none" />
  1000. <path
  1001. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  1002. />
  1003. </svg>
  1004. <span>Stanislaw : 06 75 27 65 48</span>
  1005. </div>
  1006. </div>
  1007. <div class="agenda-creneau-details--title">Le responsable</div>
  1008. <div class="agenda-creneau-details--content">
  1009. <div class="benevole">
  1010. <svg
  1011. class="icon"
  1012. xmlns="http://www.w3.org/2000/svg"
  1013. height="24px"
  1014. viewBox="0 0 24 24"
  1015. width="24px"
  1016. fill="currentcolor"
  1017. >
  1018. <path d="M0 0h24v24H0z" fill="none" />
  1019. <path
  1020. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  1021. />
  1022. </svg>
  1023. <span>Sylvain : 06 72 29 46 90</span>
  1024. </div>
  1025. </div>
  1026. </div>
  1027. </div>
  1028. </div>
  1029. </div>
  1030. </div>
  1031. </body>
  1032. </html>