laureenforgues.html 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Laureen 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. <h1 class="name-header">Laureen</h1>
  321. <div class="planning-container">
  322. <div class="daily-agenda">
  323. <div class="day-header">samedi 10 septembre</div>
  324. <div>
  325. <div>
  326. <div class="agenda-creneau-header">
  327. <span class="agenda-creneau-time">07h30-09h00 </span>
  328. <span class="agenda-creneau-title">Finir nettoyage Durante</span>
  329. </div>
  330. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  331. <div class="agenda-creneau-details--content">L&#39;équipe du soir a normalement tout rangé et commencé le gros du nettoyage. Repasser un coup de balai et de serpillère pour que tout soit propre pour le petit dej. Faire un tour au toilettes / cleaner et mettre du PQ.</div>
  332. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  333. <div class="agenda-creneau-details--content">
  334. <div class="benevole">
  335. <svg
  336. class="icon"
  337. xmlns="http://www.w3.org/2000/svg"
  338. height="24px"
  339. viewBox="0 0 24 24"
  340. width="24px"
  341. fill="currentcolor"
  342. >
  343. <path d="M0 0h24v24H0z" fill="none" />
  344. <path
  345. 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"
  346. />
  347. </svg>
  348. <span>Aymeric Pompom : 06 78 57 28 15</span>
  349. </div>
  350. <div class="benevole">
  351. <svg
  352. class="icon"
  353. xmlns="http://www.w3.org/2000/svg"
  354. height="24px"
  355. viewBox="0 0 24 24"
  356. width="24px"
  357. fill="currentcolor"
  358. >
  359. <path d="M0 0h24v24H0z" fill="none" />
  360. <path
  361. 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"
  362. />
  363. </svg>
  364. <span>Clovis : 06 68 79 86 73</span>
  365. </div>
  366. </div>
  367. <div class="agenda-creneau-details--title">Le responsable</div>
  368. <div class="agenda-creneau-details--content">
  369. <div class="benevole">
  370. <svg
  371. class="icon"
  372. xmlns="http://www.w3.org/2000/svg"
  373. height="24px"
  374. viewBox="0 0 24 24"
  375. width="24px"
  376. fill="currentcolor"
  377. >
  378. <path d="M0 0h24v24H0z" fill="none" />
  379. <path
  380. 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"
  381. />
  382. </svg>
  383. <span>Sylvain : 06 72 29 46 90</span>
  384. </div>
  385. </div>
  386. </div>
  387. </div>
  388. <div>
  389. <div class="agenda-creneau-header">
  390. <span class="agenda-creneau-time">13h30-14h00 </span>
  391. <span class="agenda-creneau-title">Formation bar</span>
  392. </div>
  393. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  394. <div class="agenda-creneau-details--content">Tous les bénévoles qui font du bar dans la soirée se réunissent pour voir lieu / fonctionnement, etc.</div>
  395. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  396. <div class="agenda-creneau-details--content">
  397. <div class="benevole">
  398. <svg
  399. class="icon"
  400. xmlns="http://www.w3.org/2000/svg"
  401. height="24px"
  402. viewBox="0 0 24 24"
  403. width="24px"
  404. fill="currentcolor"
  405. >
  406. <path d="M0 0h24v24H0z" fill="none" />
  407. <path
  408. 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"
  409. />
  410. </svg>
  411. <span>Jonas : 06 69 74 79 04</span>
  412. </div>
  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>Adrien : 06 71 80 48 30</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>Nadège : 06 78 64 72 56</span>
  444. </div>
  445. <div class="benevole">
  446. <svg
  447. class="icon"
  448. xmlns="http://www.w3.org/2000/svg"
  449. height="24px"
  450. viewBox="0 0 24 24"
  451. width="24px"
  452. fill="currentcolor"
  453. >
  454. <path d="M0 0h24v24H0z" fill="none" />
  455. <path
  456. 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"
  457. />
  458. </svg>
  459. <span>Julien : 06 34 54 45 41</span>
  460. </div>
  461. <div class="benevole">
  462. <svg
  463. class="icon"
  464. xmlns="http://www.w3.org/2000/svg"
  465. height="24px"
  466. viewBox="0 0 24 24"
  467. width="24px"
  468. fill="currentcolor"
  469. >
  470. <path d="M0 0h24v24H0z" fill="none" />
  471. <path
  472. 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"
  473. />
  474. </svg>
  475. <span>David : 06 20 63 29 57</span>
  476. </div>
  477. <div class="benevole">
  478. <svg
  479. class="icon"
  480. xmlns="http://www.w3.org/2000/svg"
  481. height="24px"
  482. viewBox="0 0 24 24"
  483. width="24px"
  484. fill="currentcolor"
  485. >
  486. <path d="M0 0h24v24H0z" fill="none" />
  487. <path
  488. 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"
  489. />
  490. </svg>
  491. <span>Armand FP : 06 03 46 59 48</span>
  492. </div>
  493. <div class="benevole">
  494. <svg
  495. class="icon"
  496. xmlns="http://www.w3.org/2000/svg"
  497. height="24px"
  498. viewBox="0 0 24 24"
  499. width="24px"
  500. fill="currentcolor"
  501. >
  502. <path d="M0 0h24v24H0z" fill="none" />
  503. <path
  504. 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"
  505. />
  506. </svg>
  507. <span>Nicholas : 07 77 82 44 89</span>
  508. </div>
  509. <div class="benevole">
  510. <svg
  511. class="icon"
  512. xmlns="http://www.w3.org/2000/svg"
  513. height="24px"
  514. viewBox="0 0 24 24"
  515. width="24px"
  516. fill="currentcolor"
  517. >
  518. <path d="M0 0h24v24H0z" fill="none" />
  519. <path
  520. 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"
  521. />
  522. </svg>
  523. <span>Theo : 06 51 13 60 36</span>
  524. </div>
  525. <div class="benevole">
  526. <svg
  527. class="icon"
  528. xmlns="http://www.w3.org/2000/svg"
  529. height="24px"
  530. viewBox="0 0 24 24"
  531. width="24px"
  532. fill="currentcolor"
  533. >
  534. <path d="M0 0h24v24H0z" fill="none" />
  535. <path
  536. 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"
  537. />
  538. </svg>
  539. <span>Anne-Gaëlle : 06 66 96 14 07</span>
  540. </div>
  541. <div class="benevole">
  542. <svg
  543. class="icon"
  544. xmlns="http://www.w3.org/2000/svg"
  545. height="24px"
  546. viewBox="0 0 24 24"
  547. width="24px"
  548. fill="currentcolor"
  549. >
  550. <path d="M0 0h24v24H0z" fill="none" />
  551. <path
  552. 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"
  553. />
  554. </svg>
  555. <span>Laurie : 07 77 23 11 34</span>
  556. </div>
  557. <div class="benevole">
  558. <svg
  559. class="icon"
  560. xmlns="http://www.w3.org/2000/svg"
  561. height="24px"
  562. viewBox="0 0 24 24"
  563. width="24px"
  564. fill="currentcolor"
  565. >
  566. <path d="M0 0h24v24H0z" fill="none" />
  567. <path
  568. 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"
  569. />
  570. </svg>
  571. <span>Vincent M. : 06 25 57 25 99</span>
  572. </div>
  573. <div class="benevole">
  574. <svg
  575. class="icon"
  576. xmlns="http://www.w3.org/2000/svg"
  577. height="24px"
  578. viewBox="0 0 24 24"
  579. width="24px"
  580. fill="currentcolor"
  581. >
  582. <path d="M0 0h24v24H0z" fill="none" />
  583. <path
  584. 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"
  585. />
  586. </svg>
  587. <span>Mathilde : 07 71 14 41 46</span>
  588. </div>
  589. <div class="benevole">
  590. <svg
  591. class="icon"
  592. xmlns="http://www.w3.org/2000/svg"
  593. height="24px"
  594. viewBox="0 0 24 24"
  595. width="24px"
  596. fill="currentcolor"
  597. >
  598. <path d="M0 0h24v24H0z" fill="none" />
  599. <path
  600. 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"
  601. />
  602. </svg>
  603. <span>Maxime : 06 16 13 39 41</span>
  604. </div>
  605. <div class="benevole">
  606. <svg
  607. class="icon"
  608. xmlns="http://www.w3.org/2000/svg"
  609. height="24px"
  610. viewBox="0 0 24 24"
  611. width="24px"
  612. fill="currentcolor"
  613. >
  614. <path d="M0 0h24v24H0z" fill="none" />
  615. <path
  616. 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"
  617. />
  618. </svg>
  619. <span>Nicole : 06 34 10 06 88</span>
  620. </div>
  621. <div class="benevole">
  622. <svg
  623. class="icon"
  624. xmlns="http://www.w3.org/2000/svg"
  625. height="24px"
  626. viewBox="0 0 24 24"
  627. width="24px"
  628. fill="currentcolor"
  629. >
  630. <path d="M0 0h24v24H0z" fill="none" />
  631. <path
  632. 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"
  633. />
  634. </svg>
  635. <span>Maël : 06 10 31 87 30</span>
  636. </div>
  637. <div class="benevole">
  638. <svg
  639. class="icon"
  640. xmlns="http://www.w3.org/2000/svg"
  641. height="24px"
  642. viewBox="0 0 24 24"
  643. width="24px"
  644. fill="currentcolor"
  645. >
  646. <path d="M0 0h24v24H0z" fill="none" />
  647. <path
  648. 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"
  649. />
  650. </svg>
  651. <span>Stefan : 06 66 33 03 09</span>
  652. </div>
  653. <div class="benevole">
  654. <svg
  655. class="icon"
  656. xmlns="http://www.w3.org/2000/svg"
  657. height="24px"
  658. viewBox="0 0 24 24"
  659. width="24px"
  660. fill="currentcolor"
  661. >
  662. <path d="M0 0h24v24H0z" fill="none" />
  663. <path
  664. 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"
  665. />
  666. </svg>
  667. <span>Félix : 06 38 30 68 67</span>
  668. </div>
  669. </div>
  670. <div class="agenda-creneau-details--title">Le responsable</div>
  671. <div class="agenda-creneau-details--content">
  672. <div class="benevole">
  673. <svg
  674. class="icon"
  675. xmlns="http://www.w3.org/2000/svg"
  676. height="24px"
  677. viewBox="0 0 24 24"
  678. width="24px"
  679. fill="currentcolor"
  680. >
  681. <path d="M0 0h24v24H0z" fill="none" />
  682. <path
  683. 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"
  684. />
  685. </svg>
  686. <span>Stef 06 66 33 03 09
  687. Jonas 06 69 74 79 04</span>
  688. </div>
  689. </div>
  690. </div>
  691. </div>
  692. <div>
  693. <div class="agenda-creneau-header">
  694. <span class="agenda-creneau-time">15h00-16h00 </span>
  695. <span class="agenda-creneau-title">Bar : samedi aprem</span>
  696. </div>
  697. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  698. <div class="agenda-creneau-details--content">Bah tu tiens un bar !</div>
  699. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  700. <div class="agenda-creneau-details--content">
  701. <div class="benevole">
  702. <svg
  703. class="icon"
  704. xmlns="http://www.w3.org/2000/svg"
  705. height="24px"
  706. viewBox="0 0 24 24"
  707. width="24px"
  708. fill="currentcolor"
  709. >
  710. <path d="M0 0h24v24H0z" fill="none" />
  711. <path
  712. 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"
  713. />
  714. </svg>
  715. <span>Adrien : 06 71 80 48 30</span>
  716. </div>
  717. <div class="benevole">
  718. <svg
  719. class="icon"
  720. xmlns="http://www.w3.org/2000/svg"
  721. height="24px"
  722. viewBox="0 0 24 24"
  723. width="24px"
  724. fill="currentcolor"
  725. >
  726. <path d="M0 0h24v24H0z" fill="none" />
  727. <path
  728. 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"
  729. />
  730. </svg>
  731. <span>Theo : 06 51 13 60 36</span>
  732. </div>
  733. <div class="benevole">
  734. <svg
  735. class="icon"
  736. xmlns="http://www.w3.org/2000/svg"
  737. height="24px"
  738. viewBox="0 0 24 24"
  739. width="24px"
  740. fill="currentcolor"
  741. >
  742. <path d="M0 0h24v24H0z" fill="none" />
  743. <path
  744. 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"
  745. />
  746. </svg>
  747. <span>Nicole : 06 34 10 06 88</span>
  748. </div>
  749. </div>
  750. <div class="agenda-creneau-details--title">Le responsable</div>
  751. <div class="agenda-creneau-details--content">
  752. <div class="benevole">
  753. <svg
  754. class="icon"
  755. xmlns="http://www.w3.org/2000/svg"
  756. height="24px"
  757. viewBox="0 0 24 24"
  758. width="24px"
  759. fill="currentcolor"
  760. >
  761. <path d="M0 0h24v24H0z" fill="none" />
  762. <path
  763. 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"
  764. />
  765. </svg>
  766. <span>Stef 06 66 33 03 09
  767. Jonas 06 69 74 79 04</span>
  768. </div>
  769. </div>
  770. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  771. <div class="agenda-creneau-details--content">
  772. <div class="benevole">
  773. <svg
  774. class="icon"
  775. xmlns="http://www.w3.org/2000/svg"
  776. height="24px"
  777. viewBox="0 0 24 24"
  778. width="24px"
  779. fill="currentcolor"
  780. >
  781. <path d="M0 0h24v24H0z" fill="none" />
  782. <path
  783. 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"
  784. />
  785. </svg>
  786. <span>Julien : 06 34 54 45 41</span>
  787. </div>
  788. <div class="benevole">
  789. <svg
  790. class="icon"
  791. xmlns="http://www.w3.org/2000/svg"
  792. height="24px"
  793. viewBox="0 0 24 24"
  794. width="24px"
  795. fill="currentcolor"
  796. >
  797. <path d="M0 0h24v24H0z" fill="none" />
  798. <path
  799. 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"
  800. />
  801. </svg>
  802. <span>David : 06 20 63 29 57</span>
  803. </div>
  804. <div class="benevole">
  805. <svg
  806. class="icon"
  807. xmlns="http://www.w3.org/2000/svg"
  808. height="24px"
  809. viewBox="0 0 24 24"
  810. width="24px"
  811. fill="currentcolor"
  812. >
  813. <path d="M0 0h24v24H0z" fill="none" />
  814. <path
  815. 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"
  816. />
  817. </svg>
  818. <span>Mathilde : 07 71 14 41 46</span>
  819. </div>
  820. </div>
  821. </div>
  822. </div>
  823. <div>
  824. <div class="agenda-creneau-header">
  825. <span class="agenda-creneau-time">16h00-17h00 </span>
  826. <span class="agenda-creneau-title">Chasse au trésor</span>
  827. </div>
  828. <div class="agenda-creneau-details">
  829. </div>
  830. </div>
  831. <div>
  832. <div class="agenda-creneau-header">
  833. <span class="agenda-creneau-time">18h00-19h30 </span>
  834. <span class="agenda-creneau-title">Bar : samedi aprem</span>
  835. </div>
  836. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  837. <div class="agenda-creneau-details--content">Bah tu tiens un bar !</div>
  838. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  839. <div class="agenda-creneau-details--content">
  840. <div class="benevole">
  841. <svg
  842. class="icon"
  843. xmlns="http://www.w3.org/2000/svg"
  844. height="24px"
  845. viewBox="0 0 24 24"
  846. width="24px"
  847. fill="currentcolor"
  848. >
  849. <path d="M0 0h24v24H0z" fill="none" />
  850. <path
  851. 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"
  852. />
  853. </svg>
  854. <span>Adrien : 06 71 80 48 30</span>
  855. </div>
  856. <div class="benevole">
  857. <svg
  858. class="icon"
  859. xmlns="http://www.w3.org/2000/svg"
  860. height="24px"
  861. viewBox="0 0 24 24"
  862. width="24px"
  863. fill="currentcolor"
  864. >
  865. <path d="M0 0h24v24H0z" fill="none" />
  866. <path
  867. 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"
  868. />
  869. </svg>
  870. <span>Nicholas : 07 77 82 44 89</span>
  871. </div>
  872. <div class="benevole">
  873. <svg
  874. class="icon"
  875. xmlns="http://www.w3.org/2000/svg"
  876. height="24px"
  877. viewBox="0 0 24 24"
  878. width="24px"
  879. fill="currentcolor"
  880. >
  881. <path d="M0 0h24v24H0z" fill="none" />
  882. <path
  883. 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"
  884. />
  885. </svg>
  886. <span>Mathilde : 07 71 14 41 46</span>
  887. </div>
  888. </div>
  889. <div class="agenda-creneau-details--title">Le responsable</div>
  890. <div class="agenda-creneau-details--content">
  891. <div class="benevole">
  892. <svg
  893. class="icon"
  894. xmlns="http://www.w3.org/2000/svg"
  895. height="24px"
  896. viewBox="0 0 24 24"
  897. width="24px"
  898. fill="currentcolor"
  899. >
  900. <path d="M0 0h24v24H0z" fill="none" />
  901. <path
  902. 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"
  903. />
  904. </svg>
  905. <span>Stef 06 66 33 03 09
  906. Jonas 06 69 74 79 04</span>
  907. </div>
  908. </div>
  909. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  910. <div class="agenda-creneau-details--content">
  911. <div class="benevole">
  912. <svg
  913. class="icon"
  914. xmlns="http://www.w3.org/2000/svg"
  915. height="24px"
  916. viewBox="0 0 24 24"
  917. width="24px"
  918. fill="currentcolor"
  919. >
  920. <path d="M0 0h24v24H0z" fill="none" />
  921. <path
  922. 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"
  923. />
  924. </svg>
  925. <span>Laurie : 07 77 23 11 34</span>
  926. </div>
  927. <div class="benevole">
  928. <svg
  929. class="icon"
  930. xmlns="http://www.w3.org/2000/svg"
  931. height="24px"
  932. viewBox="0 0 24 24"
  933. width="24px"
  934. fill="currentcolor"
  935. >
  936. <path d="M0 0h24v24H0z" fill="none" />
  937. <path
  938. 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"
  939. />
  940. </svg>
  941. <span>Maxime : 06 16 13 39 41</span>
  942. </div>
  943. </div>
  944. </div>
  945. </div>
  946. <div>
  947. <div class="agenda-creneau-header">
  948. <span class="agenda-creneau-time">20h30-22h00 </span>
  949. <span class="agenda-creneau-title">Bar : samedi soirée</span>
  950. </div>
  951. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  952. <div class="agenda-creneau-details--content">Bah tu tiens un bar !</div>
  953. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  954. <div class="agenda-creneau-details--content">
  955. <div class="benevole">
  956. <svg
  957. class="icon"
  958. xmlns="http://www.w3.org/2000/svg"
  959. height="24px"
  960. viewBox="0 0 24 24"
  961. width="24px"
  962. fill="currentcolor"
  963. >
  964. <path d="M0 0h24v24H0z" fill="none" />
  965. <path
  966. 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"
  967. />
  968. </svg>
  969. <span>Adrien : 06 71 80 48 30</span>
  970. </div>
  971. <div class="benevole">
  972. <svg
  973. class="icon"
  974. xmlns="http://www.w3.org/2000/svg"
  975. height="24px"
  976. viewBox="0 0 24 24"
  977. width="24px"
  978. fill="currentcolor"
  979. >
  980. <path d="M0 0h24v24H0z" fill="none" />
  981. <path
  982. 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"
  983. />
  984. </svg>
  985. <span>Nadège : 06 78 64 72 56</span>
  986. </div>
  987. <div class="benevole">
  988. <svg
  989. class="icon"
  990. xmlns="http://www.w3.org/2000/svg"
  991. height="24px"
  992. viewBox="0 0 24 24"
  993. width="24px"
  994. fill="currentcolor"
  995. >
  996. <path d="M0 0h24v24H0z" fill="none" />
  997. <path
  998. 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"
  999. />
  1000. </svg>
  1001. <span>Nicole : 06 34 10 06 88</span>
  1002. </div>
  1003. </div>
  1004. <div class="agenda-creneau-details--title">Le responsable</div>
  1005. <div class="agenda-creneau-details--content">
  1006. <div class="benevole">
  1007. <svg
  1008. class="icon"
  1009. xmlns="http://www.w3.org/2000/svg"
  1010. height="24px"
  1011. viewBox="0 0 24 24"
  1012. width="24px"
  1013. fill="currentcolor"
  1014. >
  1015. <path d="M0 0h24v24H0z" fill="none" />
  1016. <path
  1017. 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"
  1018. />
  1019. </svg>
  1020. <span>Stef 06 66 33 03 09
  1021. Jonas 06 69 74 79 04</span>
  1022. </div>
  1023. </div>
  1024. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  1025. <div class="agenda-creneau-details--content">
  1026. <div class="benevole">
  1027. <svg
  1028. class="icon"
  1029. xmlns="http://www.w3.org/2000/svg"
  1030. height="24px"
  1031. viewBox="0 0 24 24"
  1032. width="24px"
  1033. fill="currentcolor"
  1034. >
  1035. <path d="M0 0h24v24H0z" fill="none" />
  1036. <path
  1037. 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"
  1038. />
  1039. </svg>
  1040. <span>Julien : 06 34 54 45 41</span>
  1041. </div>
  1042. <div class="benevole">
  1043. <svg
  1044. class="icon"
  1045. xmlns="http://www.w3.org/2000/svg"
  1046. height="24px"
  1047. viewBox="0 0 24 24"
  1048. width="24px"
  1049. fill="currentcolor"
  1050. >
  1051. <path d="M0 0h24v24H0z" fill="none" />
  1052. <path
  1053. 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"
  1054. />
  1055. </svg>
  1056. <span>David : 06 20 63 29 57</span>
  1057. </div>
  1058. <div class="benevole">
  1059. <svg
  1060. class="icon"
  1061. xmlns="http://www.w3.org/2000/svg"
  1062. height="24px"
  1063. viewBox="0 0 24 24"
  1064. width="24px"
  1065. fill="currentcolor"
  1066. >
  1067. <path d="M0 0h24v24H0z" fill="none" />
  1068. <path
  1069. 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"
  1070. />
  1071. </svg>
  1072. <span>Armand FP : 06 03 46 59 48</span>
  1073. </div>
  1074. <div class="benevole">
  1075. <svg
  1076. class="icon"
  1077. xmlns="http://www.w3.org/2000/svg"
  1078. height="24px"
  1079. viewBox="0 0 24 24"
  1080. width="24px"
  1081. fill="currentcolor"
  1082. >
  1083. <path d="M0 0h24v24H0z" fill="none" />
  1084. <path
  1085. 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"
  1086. />
  1087. </svg>
  1088. <span>Nicholas : 07 77 82 44 89</span>
  1089. </div>
  1090. </div>
  1091. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  1092. <div class="agenda-creneau-details--content">
  1093. <div class="benevole">
  1094. <svg
  1095. class="icon"
  1096. xmlns="http://www.w3.org/2000/svg"
  1097. height="24px"
  1098. viewBox="0 0 24 24"
  1099. width="24px"
  1100. fill="currentcolor"
  1101. >
  1102. <path d="M0 0h24v24H0z" fill="none" />
  1103. <path
  1104. 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"
  1105. />
  1106. </svg>
  1107. <span>Julien : 06 34 54 45 41</span>
  1108. </div>
  1109. <div class="benevole">
  1110. <svg
  1111. class="icon"
  1112. xmlns="http://www.w3.org/2000/svg"
  1113. height="24px"
  1114. viewBox="0 0 24 24"
  1115. width="24px"
  1116. fill="currentcolor"
  1117. >
  1118. <path d="M0 0h24v24H0z" fill="none" />
  1119. <path
  1120. 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"
  1121. />
  1122. </svg>
  1123. <span>David : 06 20 63 29 57</span>
  1124. </div>
  1125. <div class="benevole">
  1126. <svg
  1127. class="icon"
  1128. xmlns="http://www.w3.org/2000/svg"
  1129. height="24px"
  1130. viewBox="0 0 24 24"
  1131. width="24px"
  1132. fill="currentcolor"
  1133. >
  1134. <path d="M0 0h24v24H0z" fill="none" />
  1135. <path
  1136. 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"
  1137. />
  1138. </svg>
  1139. <span>Armand FP : 06 03 46 59 48</span>
  1140. </div>
  1141. <div class="benevole">
  1142. <svg
  1143. class="icon"
  1144. xmlns="http://www.w3.org/2000/svg"
  1145. height="24px"
  1146. viewBox="0 0 24 24"
  1147. width="24px"
  1148. fill="currentcolor"
  1149. >
  1150. <path d="M0 0h24v24H0z" fill="none" />
  1151. <path
  1152. 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"
  1153. />
  1154. </svg>
  1155. <span>Nicholas : 07 77 82 44 89</span>
  1156. </div>
  1157. </div>
  1158. </div>
  1159. </div>
  1160. <div>
  1161. <div class="agenda-creneau-header">
  1162. <span class="agenda-creneau-time">23h00-00h00 </span>
  1163. <span class="agenda-creneau-title">Bar : samedi soirée</span>
  1164. </div>
  1165. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  1166. <div class="agenda-creneau-details--content">Bah tu tiens un bar !</div>
  1167. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  1168. <div class="agenda-creneau-details--content">
  1169. <div class="benevole">
  1170. <svg
  1171. class="icon"
  1172. xmlns="http://www.w3.org/2000/svg"
  1173. height="24px"
  1174. viewBox="0 0 24 24"
  1175. width="24px"
  1176. fill="currentcolor"
  1177. >
  1178. <path d="M0 0h24v24H0z" fill="none" />
  1179. <path
  1180. 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"
  1181. />
  1182. </svg>
  1183. <span>Adrien : 06 71 80 48 30</span>
  1184. </div>
  1185. </div>
  1186. <div class="agenda-creneau-details--title">Le responsable</div>
  1187. <div class="agenda-creneau-details--content">
  1188. <div class="benevole">
  1189. <svg
  1190. class="icon"
  1191. xmlns="http://www.w3.org/2000/svg"
  1192. height="24px"
  1193. viewBox="0 0 24 24"
  1194. width="24px"
  1195. fill="currentcolor"
  1196. >
  1197. <path d="M0 0h24v24H0z" fill="none" />
  1198. <path
  1199. 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"
  1200. />
  1201. </svg>
  1202. <span>Stef 06 66 33 03 09
  1203. Jonas 06 69 74 79 04</span>
  1204. </div>
  1205. </div>
  1206. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  1207. <div class="agenda-creneau-details--content">
  1208. <div class="benevole">
  1209. <svg
  1210. class="icon"
  1211. xmlns="http://www.w3.org/2000/svg"
  1212. height="24px"
  1213. viewBox="0 0 24 24"
  1214. width="24px"
  1215. fill="currentcolor"
  1216. >
  1217. <path d="M0 0h24v24H0z" fill="none" />
  1218. <path
  1219. 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"
  1220. />
  1221. </svg>
  1222. <span>Theo : 06 51 13 60 36</span>
  1223. </div>
  1224. <div class="benevole">
  1225. <svg
  1226. class="icon"
  1227. xmlns="http://www.w3.org/2000/svg"
  1228. height="24px"
  1229. viewBox="0 0 24 24"
  1230. width="24px"
  1231. fill="currentcolor"
  1232. >
  1233. <path d="M0 0h24v24H0z" fill="none" />
  1234. <path
  1235. 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"
  1236. />
  1237. </svg>
  1238. <span>Mathilde : 07 71 14 41 46</span>
  1239. </div>
  1240. </div>
  1241. </div>
  1242. </div>
  1243. </div>
  1244. </div>
  1245. </div>
  1246. </body>
  1247. </html>