diff options
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..99d2396 --- /dev/null +++ b/public/index.html | |||
@@ -0,0 +1,70 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="fr"> | ||
3 | <head> | ||
4 | <meta charset="utf-8" /> | ||
5 | <title>fullcalendar</title> | ||
6 | <script src='lib/fullcalendar/packages/core/index.global.min.js'></script> | ||
7 | <script src='lib/fullcalendar/packages/daygrid/index.global.min.js'></script> | ||
8 | <script src='lib/fullcalendar/packages/timegrid/index.global.min.js'></script> | ||
9 | <script src='lib/fullcalendar/packages/list/index.global.min.js'></script> | ||
10 | <script src='lib/fullcalendar/packages/interaction/index.global.min.js'></script> | ||
11 | <script src='lib/fullcalendar/packages/core/locales/fr.global.min.js'></script> | ||
12 | <!-- <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/fullcalendar/main.min.css' /> --> | ||
13 | <script src="js/calendar.js"></script> | ||
14 | <style> | ||
15 | #calendar_zone{ | ||
16 | display: flex; | ||
17 | max-width: 1000px; | ||
18 | } | ||
19 | #calendar{ | ||
20 | width: -moz-available; | ||
21 | } | ||
22 | .event_title_box{ | ||
23 | display: flex; | ||
24 | align-items: center; | ||
25 | justify-content: space-between; | ||
26 | } | ||
27 | .event_close_button{ | ||
28 | height: fit-content; | ||
29 | } | ||
30 | .fc-toolbar-title{ | ||
31 | font-size: x-large !important; | ||
32 | } | ||
33 | .fc-button{ | ||
34 | padding: 0.2em 0.4em !important; | ||
35 | } | ||
36 | td .fc-timegrid-axis{ | ||
37 | font-size: small; | ||
38 | text-align: center; | ||
39 | } | ||
40 | .fc-day-other{ | ||
41 | background-color: #f0f0f0; | ||
42 | } | ||
43 | .fc-daygrid-day-top{ | ||
44 | justify-content: center; | ||
45 | } | ||
46 | .fc-day-today .fc-daygrid-day-number{ /* vue mois */ | ||
47 | color: white; | ||
48 | background-color: #00679e; | ||
49 | border-radius: 5px; | ||
50 | height: 27px; | ||
51 | aspect-ratio: 1 / 1; | ||
52 | text-align: center; | ||
53 | } | ||
54 | .fc-day-today .fc-col-header-cell-cushion{ /* vue semaine */ | ||
55 | color: white; | ||
56 | background-color: #00679e; | ||
57 | border-radius: 5px; | ||
58 | } | ||
59 | </style> | ||
60 | </head> | ||
61 | |||
62 | <body> | ||
63 | <div id="calendar_zone"> | ||
64 | <div id="calendar"></div> | ||
65 | |||
66 | <!-- si admin --> | ||
67 | <aside id="event_modal" class="modal"></aside> | ||
68 | </div> | ||
69 | </body> | ||
70 | </html> | ||