matthias.ax.roger.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Matthias 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. <p>Bonjour Matthias,</p>
  320. <p>
  321. tu trouveras ci dessous et ci joint le récapitulatif de tes créneaux pour BDLG.<br />
  322. Blabla à faire valider à la com bénévole.
  323. </p>
  324. <p>Cordialement,<br />La commission Bénévole</p>
  325. <div class="planning-container">
  326. <div class="daily-agenda">
  327. <div class="day-header">jeudi 08 septembre</div>
  328. <div>
  329. <div>
  330. <div class="agenda-creneau-header">
  331. <span class="agenda-creneau-time">14h00-18h00 </span>
  332. <span class="agenda-creneau-title">bouffe</span>
  333. </div>
  334. <div class="agenda-creneau-details">
  335. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  336. <div class="agenda-creneau-details--content">
  337. <div class="benevole">
  338. <svg
  339. class="icon"
  340. xmlns="http://www.w3.org/2000/svg"
  341. height="24px"
  342. viewBox="0 0 24 24"
  343. width="24px"
  344. fill="currentcolor"
  345. >
  346. <path d="M0 0h24v24H0z" fill="none" />
  347. <path
  348. 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"
  349. />
  350. </svg>
  351. <span>Fabien : 06 79 15 25 84</span>
  352. </div>
  353. <div class="benevole">
  354. <svg
  355. class="icon"
  356. xmlns="http://www.w3.org/2000/svg"
  357. height="24px"
  358. viewBox="0 0 24 24"
  359. width="24px"
  360. fill="currentcolor"
  361. >
  362. <path d="M0 0h24v24H0z" fill="none" />
  363. <path
  364. 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"
  365. />
  366. </svg>
  367. <span>Jérémie : 06 89 26 95 92</span>
  368. </div>
  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>Clovis : 06 68 79 86 73</span>
  384. </div>
  385. <div class="benevole">
  386. <svg
  387. class="icon"
  388. xmlns="http://www.w3.org/2000/svg"
  389. height="24px"
  390. viewBox="0 0 24 24"
  391. width="24px"
  392. fill="currentcolor"
  393. >
  394. <path d="M0 0h24v24H0z" fill="none" />
  395. <path
  396. 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"
  397. />
  398. </svg>
  399. <span>Alexis FP : 06 95 52 90 88</span>
  400. </div>
  401. <div class="benevole">
  402. <svg
  403. class="icon"
  404. xmlns="http://www.w3.org/2000/svg"
  405. height="24px"
  406. viewBox="0 0 24 24"
  407. width="24px"
  408. fill="currentcolor"
  409. >
  410. <path d="M0 0h24v24H0z" fill="none" />
  411. <path
  412. 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"
  413. />
  414. </svg>
  415. <span>Nicolas : 06 88 18 89 44</span>
  416. </div>
  417. </div>
  418. </div>
  419. </div>
  420. </div>
  421. </div>
  422. <div class="daily-agenda">
  423. <div class="day-header">vendredi 09 septembre</div>
  424. <div>
  425. <div>
  426. <div class="agenda-creneau-header">
  427. <span class="agenda-creneau-time">14h00-17h00 </span>
  428. <span class="agenda-creneau-title">Prépa boisson vendredi aprem</span>
  429. </div>
  430. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  431. <div class="agenda-creneau-details--content">Faire la citronnade et autres soft</div>
  432. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  433. <div class="agenda-creneau-details--content">
  434. <div class="benevole">
  435. <svg
  436. class="icon"
  437. xmlns="http://www.w3.org/2000/svg"
  438. height="24px"
  439. viewBox="0 0 24 24"
  440. width="24px"
  441. fill="currentcolor"
  442. >
  443. <path d="M0 0h24v24H0z" fill="none" />
  444. <path
  445. 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"
  446. />
  447. </svg>
  448. <span>Jonas : 06 69 74 79 04</span>
  449. </div>
  450. <div class="benevole">
  451. <svg
  452. class="icon"
  453. xmlns="http://www.w3.org/2000/svg"
  454. height="24px"
  455. viewBox="0 0 24 24"
  456. width="24px"
  457. fill="currentcolor"
  458. >
  459. <path d="M0 0h24v24H0z" fill="none" />
  460. <path
  461. 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"
  462. />
  463. </svg>
  464. <span>Océane : 07 81 36 48 86</span>
  465. </div>
  466. <div class="benevole">
  467. <svg
  468. class="icon"
  469. xmlns="http://www.w3.org/2000/svg"
  470. height="24px"
  471. viewBox="0 0 24 24"
  472. width="24px"
  473. fill="currentcolor"
  474. >
  475. <path d="M0 0h24v24H0z" fill="none" />
  476. <path
  477. 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"
  478. />
  479. </svg>
  480. <span>Audrey : 06 71 20 80 36</span>
  481. </div>
  482. <div class="benevole">
  483. <svg
  484. class="icon"
  485. xmlns="http://www.w3.org/2000/svg"
  486. height="24px"
  487. viewBox="0 0 24 24"
  488. width="24px"
  489. fill="currentcolor"
  490. >
  491. <path d="M0 0h24v24H0z" fill="none" />
  492. <path
  493. 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"
  494. />
  495. </svg>
  496. <span>Edouard : 06 47 49 38 68</span>
  497. </div>
  498. <div class="benevole">
  499. <svg
  500. class="icon"
  501. xmlns="http://www.w3.org/2000/svg"
  502. height="24px"
  503. viewBox="0 0 24 24"
  504. width="24px"
  505. fill="currentcolor"
  506. >
  507. <path d="M0 0h24v24H0z" fill="none" />
  508. <path
  509. 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"
  510. />
  511. </svg>
  512. <span>Gaëlle : 06 70 36 77 33</span>
  513. </div>
  514. </div>
  515. <div class="agenda-creneau-details--title">Le responsable</div>
  516. <div class="agenda-creneau-details--content">
  517. <div class="benevole">
  518. <svg
  519. class="icon"
  520. xmlns="http://www.w3.org/2000/svg"
  521. height="24px"
  522. viewBox="0 0 24 24"
  523. width="24px"
  524. fill="currentcolor"
  525. >
  526. <path d="M0 0h24v24H0z" fill="none" />
  527. <path
  528. 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"
  529. />
  530. </svg>
  531. <span>Jonas : 06 69 74 79 04</span>
  532. </div>
  533. </div>
  534. </div>
  535. </div>
  536. <div>
  537. <div class="agenda-creneau-header">
  538. <span class="agenda-creneau-time">20h00-21h00 </span>
  539. <span class="agenda-creneau-title">Service repas durante</span>
  540. </div>
  541. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  542. <div class="agenda-creneau-details--content">mise en place du repas, service, s&#39;assurer qu&#39;il y a de tout</div>
  543. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  544. <div class="agenda-creneau-details--content">
  545. <div class="benevole">
  546. <svg
  547. class="icon"
  548. xmlns="http://www.w3.org/2000/svg"
  549. height="24px"
  550. viewBox="0 0 24 24"
  551. width="24px"
  552. fill="currentcolor"
  553. >
  554. <path d="M0 0h24v24H0z" fill="none" />
  555. <path
  556. 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"
  557. />
  558. </svg>
  559. <span>José : 07 69 12 30 48</span>
  560. </div>
  561. </div>
  562. <div class="agenda-creneau-details--title">Le responsable</div>
  563. <div class="agenda-creneau-details--content">
  564. <div class="benevole">
  565. <svg
  566. class="icon"
  567. xmlns="http://www.w3.org/2000/svg"
  568. height="24px"
  569. viewBox="0 0 24 24"
  570. width="24px"
  571. fill="currentcolor"
  572. >
  573. <path d="M0 0h24v24H0z" fill="none" />
  574. <path
  575. 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"
  576. />
  577. </svg>
  578. <span>Alexis : 06 79 99 31 24</span>
  579. </div>
  580. </div>
  581. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  582. <div class="agenda-creneau-details--content">
  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>Ilyes : 06 76 68 30 66</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>Anne Croute : 06 33 02 77 18</span>
  614. </div>
  615. </div>
  616. </div>
  617. </div>
  618. </div>
  619. </div>
  620. <div class="daily-agenda">
  621. <div class="day-header">samedi 10 septembre</div>
  622. <div>
  623. <div>
  624. <div class="agenda-creneau-header">
  625. <span class="agenda-creneau-time">11h00-12h30 </span>
  626. <span class="agenda-creneau-title">Installation déco matin </span>
  627. </div>
  628. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  629. <div class="agenda-creneau-details--content">Mise en place des éléments de déco</div>
  630. <div class="agenda-creneau-details--title">Le responsable</div>
  631. <div class="agenda-creneau-details--content">
  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>Quang Huy : 06 74 44 36 35</span>
  647. </div>
  648. </div>
  649. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  650. <div class="agenda-creneau-details--content">
  651. <div class="benevole">
  652. <svg
  653. class="icon"
  654. xmlns="http://www.w3.org/2000/svg"
  655. height="24px"
  656. viewBox="0 0 24 24"
  657. width="24px"
  658. fill="currentcolor"
  659. >
  660. <path d="M0 0h24v24H0z" fill="none" />
  661. <path
  662. 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"
  663. />
  664. </svg>
  665. <span>Paul-Erwan : 07 87 76 64 76</span>
  666. </div>
  667. </div>
  668. </div>
  669. </div>
  670. <div>
  671. <div class="agenda-creneau-header">
  672. <span class="agenda-creneau-time">22h30-00h00 </span>
  673. <span class="agenda-creneau-title">surveillance boite à don</span>
  674. </div>
  675. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  676. <div class="agenda-creneau-details--content">se metre à côté de la boite vers la fin de soirée et indiquer aux personnes qui partent qu&#39;il y a une boite à don + surveiller pour éviter les vols</div>
  677. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  678. <div class="agenda-creneau-details--content">
  679. <div class="benevole">
  680. <svg
  681. class="icon"
  682. xmlns="http://www.w3.org/2000/svg"
  683. height="24px"
  684. viewBox="0 0 24 24"
  685. width="24px"
  686. fill="currentcolor"
  687. >
  688. <path d="M0 0h24v24H0z" fill="none" />
  689. <path
  690. 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"
  691. />
  692. </svg>
  693. <span>Marlène : 06 83 91 98 02</span>
  694. </div>
  695. </div>
  696. <div class="agenda-creneau-details--title">Le responsable</div>
  697. <div class="agenda-creneau-details--content">
  698. <div class="benevole">
  699. <svg
  700. class="icon"
  701. xmlns="http://www.w3.org/2000/svg"
  702. height="24px"
  703. viewBox="0 0 24 24"
  704. width="24px"
  705. fill="currentcolor"
  706. >
  707. <path d="M0 0h24v24H0z" fill="none" />
  708. <path
  709. 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"
  710. />
  711. </svg>
  712. <span>GPS 06 79 27 36 04</span>
  713. </div>
  714. </div>
  715. </div>
  716. </div>
  717. <div>
  718. <div class="agenda-creneau-header">
  719. <span class="agenda-creneau-time">02h00-04h00 </span>
  720. <span class="agenda-creneau-title">soupe à l&#39;oignon</span>
  721. </div>
  722. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  723. <div class="agenda-creneau-details--content">tout est indiqué dans le cahier de route de la commission repas</div>
  724. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  725. <div class="agenda-creneau-details--content">
  726. <div class="benevole">
  727. <svg
  728. class="icon"
  729. xmlns="http://www.w3.org/2000/svg"
  730. height="24px"
  731. viewBox="0 0 24 24"
  732. width="24px"
  733. fill="currentcolor"
  734. >
  735. <path d="M0 0h24v24H0z" fill="none" />
  736. <path
  737. 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"
  738. />
  739. </svg>
  740. <span>PierreQ : 06 70 43 76 31</span>
  741. </div>
  742. </div>
  743. <div class="agenda-creneau-details--title">Le responsable</div>
  744. <div class="agenda-creneau-details--content">
  745. <div class="benevole">
  746. <svg
  747. class="icon"
  748. xmlns="http://www.w3.org/2000/svg"
  749. height="24px"
  750. viewBox="0 0 24 24"
  751. width="24px"
  752. fill="currentcolor"
  753. >
  754. <path d="M0 0h24v24H0z" fill="none" />
  755. <path
  756. 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"
  757. />
  758. </svg>
  759. <span>Olivier : 06 82 50 92 85
  760. Alexis : 06 79 99 31 24</span>
  761. </div>
  762. </div>
  763. <div class="agenda-creneau-details--title">Ceux que tu remplaces</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>Aymeric Pompom : 06 78 57 28 15</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>Nicole : 06 34 10 06 88</span>
  796. </div>
  797. </div>
  798. </div>
  799. </div>
  800. </div>
  801. </div>
  802. </div>
  803. </body>
  804. </html>