-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalendar.css
More file actions
107 lines (91 loc) · 1.47 KB
/
calendar.css
File metadata and controls
107 lines (91 loc) · 1.47 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body{
width: 760px; /* how wide to make your web page */
background-color: teal; /* what color to make the background */
margin: 0 auto;
padding: 0;
margin-top: 10;
font:12pt/15pt "Avenir", sans-serif; /* default font */
}
div#main{
background-color: #FFF;
margin: 0;
padding: 10px;
}
table {
background: #fff;
border-collapse: collapse;
color: #222;
font-family: 'PT Sans', sans-serif;
font-size: 13px;
width: 100%;
overflow: hidden;
table-layout: auto;
}
td {
border: 1px solid #ccc;
color: #444;
vertical-align: top;
/*line-height: 80px;*/
/*text-align: center;
/*vertical-align: top;*/
}
tr:first-child td {
color: #222;
text-align: center;
font-weight: 700;
line-height: 22px;
text-align: center;
vertical-align: center;
}
#month_display {
display: inline-block;
text-align: center;
}
#prev_month_btn {
float: left;
}
#next_month_btn {
float: right;
}
h4{
margin: 3px;
}
.editable {
height: 83px;
width: 89.9667px;
text-align: left;
position: relative;
/*vertical-align: top;
padding: 0;*/
}
.events{
margin: 0;
padding-top: 1;
padding-bottom: 1;
text-align: left;
background-color: aquamarine;
}
#mydialog {
display: none;
}
#shareDialog{
display: none;
}
#showmore {
display: none;
}
.extraevents {
padding: 0;
margin: 0;
color: blue;
}
.extraevents:hover{
text-decoration: underline;
}
.singleevent {
padding: 0;
margin: 0;
}
.sharedEvents{
background-color: lightsalmon;
}