aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authorJoris2021-11-21 18:12:11 +0100
committerJoris2021-11-21 18:12:11 +0100
commit3c5be0300f281d809cbe2ecdf52a4ef34598f084 (patch)
tree5de6256d0d20c8bb0c3e4d88e1f84e17f3f6a7fd /src/style.css
parent54bcca5c48b4586433a92fe4aad9cddd2e5500dc (diff)
downloadcalendar-3c5be0300f281d809cbe2ecdf52a4ef34598f084.tar.gz
calendar-3c5be0300f281d809cbe2ecdf52a4ef34598f084.tar.bz2
calendar-3c5be0300f281d809cbe2ecdf52a4ef34598f084.zip
Show static events on the calendar
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css25
1 files changed, 20 insertions, 5 deletions
diff --git a/src/style.css b/src/style.css
index bd58799..0a8292f 100644
--- a/src/style.css
+++ b/src/style.css
@@ -1,20 +1,35 @@
.g-Calendar__DayTitle {
- border: 1px solid #CCCCCC;
- font-weight: bold;
+ border-right: 1px solid #D2D2D2;
+ border-bottom: 1px solid #D2D2D2;
padding: 4px;
+ background-color: white;
+ font-weight: bold;
}
.g-Calendar__Day {
background-color: white;
- border: 1px solid #CCCCCC;
+ border-right: 1px solid #D2D2D2;
+ border-bottom: 1px solid #D2D2D2;
padding: 4px;
}
.g-Calendar__Day--Today {
- background-color: #FFEC40;
+ background-color: #FFFCD8;
}
.g-Calendar__DayNumber {
- color: #333333;
font-size: 90%;
+ margin-bottom: 4px;
+}
+
+.g-Calendar__DayEvent {
+ background-color: #A8C2E0;
+ color: white;
+ border-radius: 4px;
+ padding: 4px;
+ margin: 4px;
+}
+
+.g-Calendar__DayEvent:hover {
+ background-color: pink;
}