aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlecalendar/calendar.css
blob: 7cd726b7fbd22aeedf287920eada1fc96142c958 (plain) (blame)
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
#franz-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

#franz-modal.open {
    display: block;
}

#franz-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#franz-modal .close {
    color: #aaa;
    float: right;
    margin-top: -10px;
    font-size: 20px;
    font-weight: bold;
}

#franz-modal .close:hover,
#franz-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}