aboutsummaryrefslogtreecommitdiff
path: root/src/gui/style.css
diff options
context:
space:
mode:
authorJoris2022-02-26 18:57:55 +0100
committerJoris2022-02-26 18:57:55 +0100
commitf9f49285c5ecc76d3edfb0a54ffab53c2e296d7f (patch)
treef77f9b625446de7f0b9de1553fc52d702c4cbc69 /src/gui/style.css
parent2d80413609130f1c121dcae39a150a27dd9f02ea (diff)
downloadcalendar-f9f49285c5ecc76d3edfb0a54ffab53c2e296d7f.tar.gz
calendar-f9f49285c5ecc76d3edfb0a54ffab53c2e296d7f.tar.bz2
calendar-f9f49285c5ecc76d3edfb0a54ffab53c2e296d7f.zip
Apply linter advices
Diffstat (limited to 'src/gui/style.css')
-rw-r--r--src/gui/style.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/gui/style.css b/src/gui/style.css
new file mode 100644
index 0000000..4828e41
--- /dev/null
+++ b/src/gui/style.css
@@ -0,0 +1,49 @@
+.g-Calendar__DayTitle {
+ 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-right: 1px solid #D2D2D2;
+ border-bottom: 1px solid #D2D2D2;
+ padding: 4px;
+}
+
+.g-Calendar__Day--Today {
+ background-color: #FFFCD8;
+}
+
+.g-Calendar__DayNumber {
+ 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;
+}
+
+.g-Form {
+ background-color: white;
+ color: black;
+ padding: 10px;
+}
+
+.g-Form__Input {
+ text-align: left;
+}
+
+.g-Form__RadioInput {
+ width: 20px;
+}