diff options
Diffstat (limited to 'desk')
-rw-r--r-- | desk/landing/html_remind/calendar.css | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/desk/landing/html_remind/calendar.css b/desk/landing/html_remind/calendar.css new file mode 100644 index 0000000..d9cf58f --- /dev/null +++ b/desk/landing/html_remind/calendar.css | |||
@@ -0,0 +1,81 @@ | |||
1 | body { | ||
2 | color: #cdd6f4; | ||
3 | background-color: #1e1e2e; | ||
4 | line-height: 1.4; | ||
5 | max-width: 1200px; | ||
6 | margin: 20px auto; | ||
7 | padding: 0 10px; | ||
8 | word-wrap: break-word; | ||
9 | } | ||
10 | |||
11 | table.rem-cal { | ||
12 | font-size: 12pt; | ||
13 | } | ||
14 | |||
15 | table.rem-sc-table { | ||
16 | font-size: 10pt; | ||
17 | width: 95%; | ||
18 | float: left; | ||
19 | } | ||
20 | |||
21 | caption.rem-cal-caption { | ||
22 | font-size: 14pt; | ||
23 | font-weight: bold; | ||
24 | } | ||
25 | |||
26 | th.rem-cal-hdr { | ||
27 | width: 14%; | ||
28 | border-style: solid; | ||
29 | border-width: 1px; | ||
30 | vertical-align: top; | ||
31 | } | ||
32 | td.rem-empty, td.rem-cell, td.rem-small-calendar { | ||
33 | width: 14%; | ||
34 | height: 7em; | ||
35 | border-style: solid; | ||
36 | border-width: 1px; | ||
37 | vertical-align: top; | ||
38 | } | ||
39 | td.rem-today { | ||
40 | width: 14%; | ||
41 | height: 7em; | ||
42 | border-style: solid; | ||
43 | border-width: 2px; | ||
44 | border-color: #EE3333; | ||
45 | vertical-align: top; | ||
46 | } | ||
47 | |||
48 | table.rem-cal { | ||
49 | width: 100%; | ||
50 | border-collapse: collapse; | ||
51 | } | ||
52 | |||
53 | div.rem-daynumber { | ||
54 | float: right; | ||
55 | text-align: right; | ||
56 | vertical-align: top; | ||
57 | font-size: 14pt; | ||
58 | } | ||
59 | |||
60 | p.rem-entry { | ||
61 | clear: both; | ||
62 | } | ||
63 | |||
64 | div.rem-moon { | ||
65 | float: left; | ||
66 | text-align: left; | ||
67 | vertical-align: top; | ||
68 | } | ||
69 | |||
70 | th.rem-sc-hdr { | ||
71 | text-align: right; | ||
72 | } | ||
73 | |||
74 | td.rem-sc-empty-cell, td.rem-sc-cell { | ||
75 | text-align: right; | ||
76 | width: 14%; | ||
77 | } | ||
78 | |||
79 | caption.rem-sc-caption { | ||
80 | font-size: 12pt; | ||
81 | } | ||