Events are now sorted by time. Added is_suggested and is_only_for_gm for events

This commit is contained in:
2022-11-02 10:19:40 +03:00
parent f066d10d93
commit 29871e5155
4 changed files with 54 additions and 23 deletions
@@ -42,7 +42,9 @@ table.month td.current a {
color: white;
}
div.calendar {
div.calendar,
div.calendar-events,
div.calendar-error {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
@@ -54,7 +56,9 @@ table.month {
max-width: 350px;
}
div.event {
div.event,
div.event-gm,
div.event-suggested {
border: 1px solid black;
padding: 20px;
margin: 20px;
@@ -62,6 +66,18 @@ div.event {
width: 100%;
}
div.event {
border: 1px solid black;
}
div.event-gm {
border: 2px solid BlueViolet;
}
div.event-suggested {
border: 2px solid crimson;
}
div.event-time {
border: 1px solid black;
border-radius: 3px;
@@ -86,7 +102,7 @@ p.event-description {
}
p.calendar-error {
color: Crimson;
color: crimson;
font-size: 200%;
}