aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/google-calendar/calendar.css
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/google-calendar/calendar.css')
-rw-r--r--recipes/google-calendar/calendar.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes/google-calendar/calendar.css b/recipes/google-calendar/calendar.css
new file mode 100644
index 0000000..7cd726b
--- /dev/null
+++ b/recipes/google-calendar/calendar.css
@@ -0,0 +1,41 @@
1#franz-modal {
2 display: none;
3 position: fixed;
4 z-index: 9999;
5 left: 0;
6 top: 0;
7 right: 0;
8 bottom: 0;
9 overflow: auto;
10 background-color: rgba(0, 0, 0, 0.8);
11}
12
13#franz-modal.open {
14 display: block;
15}
16
17#franz-modal .modal-content {
18 background-color: #fefefe;
19 margin: 15% auto;
20 padding: 20px;
21 border: 1px solid #888;
22 width: 30%;
23 -webkit-border-radius: 3px;
24 -moz-border-radius: 3px;
25 border-radius: 3px;
26}
27
28#franz-modal .close {
29 color: #aaa;
30 float: right;
31 margin-top: -10px;
32 font-size: 20px;
33 font-weight: bold;
34}
35
36#franz-modal .close:hover,
37#franz-modal .close:focus {
38 color: black;
39 text-decoration: none;
40 cursor: pointer;
41}