-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-HebrewCalendar.css
82 lines (68 loc) · 1.49 KB
/
MMM-HebrewCalendar.css
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.MMM-HebrewCalendar .wrapper {
width: 100%;
table-layout: fixed;
direction: rtl;
background-color: white;
border-spacing:5px;
background-image: url("flower-background.jpg");
background-size: cover;
color: black;
}
.MMM-HebrewCalendar .header {
text-align: center;
}
.MMM-HebrewCalendar .cell {
height: 110px;
text-align: center;
vertical-align: top;
background-color: rgba(255, 250, 250, 0.818);
color: black;
border-radius: 15px;
padding: 2px;
box-shadow: 1px 1px rgb(171, 171, 171);
}
.MMM-HebrewCalendar .cell-header {
display: flex;
justify-content: space-between;
padding: 0 10px;
font-weight: bold;
}
.MMM-HebrewCalendar .today {
box-shadow: 0px 0px 13px goldenrod
}
.MMM-HebrewCalendar .shabbat {
/* background-color: rgb(201, 243, 251); */
box-shadow: 3px 3px rgb(202, 189, 165);
background-color: rgba(251, 215, 192, 0.818);
}
.MMM-HebrewCalendar .event-line {
display: flex;
justify-content: space-between;
padding: 0 1px;
font-size: 0.9em;
}
.MMM-HebrewCalendar .event-text {
text-align: left;
}
/*
.MMM-HebrewCalendar .event {
text-align: right;
margin-bottom: 1px;
border-radius: 4px;
color: black;
} */
.MMM-HebrewCalendar .event-full-day {
background-color: goldenrod;
color: white;
text-align: center;
}
.MMM-HebrewCalendar .event-nowrap {
white-space: nowrap;
overflow-x: hidden;
}
.MMM-HebrewCalendar .other-month {
filter: brightness(45%);
}
.MMM-HebrewCalendar .past-date {
filter: brightness(97%);
}