lrnt.dcngl.html 27 KB

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