forked from la-grappe-numerique/list-communities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.css
More file actions
94 lines (78 loc) · 1.57 KB
/
calendar.css
File metadata and controls
94 lines (78 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.calendar-container {
margin: 20px 0;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Override de certains styles de Docsify */
.calendar-container table {
display: table;
width: 100%;
}
.calendar-container th,
.calendar-container td {
border: 1px solid #dee2e6;
padding: 8px;
}
.calendar-container thead {
display: table-header-group;
}
.calendar-container tbody {
display: table-row-group;
}
/* Styles pour les événements */
.calendar-container .fc-event {
cursor: pointer;
}
/* Styles pour le popover */
.event-popover {
max-width: 300px;
}
.event-details {
padding: 10px;
}
.event-details .event-title {
font-weight: bold;
margin-bottom: 8px;
color: #2c3e50;
}
.event-details .event-info {
margin-bottom: 8px;
color: #666;
}
.event-details a {
color: #3498db;
text-decoration: none;
}
.event-details a:hover {
color: #2980b9;
text-decoration: underline;
}
.event-details .event-link {
display: inline-block;
margin-top: 12px;
padding: 6px 12px;
background-color: #3498db;
color: white !important;
text-decoration: none;
border-radius: 4px;
font-size: 0.9em;
transition: background-color 0.2s;
}
.event-details .event-link:hover {
background-color: #2980b9;
text-decoration: none;
}
.event-details .location-link {
color: #2c3e50;
text-decoration: none;
}
.event-details .location-link:hover {
color: #3498db;
}
.event-info i {
width: 20px;
text-align: center;
margin-right: 4px;
}