-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.css
127 lines (107 loc) · 1.74 KB
/
calendar.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.container {
width: 400px;
height: 400px;
margin: 0px auto;
}
.calendarBox {
width: 80%;
min-height: 75%;
border: 4px solid #336699;
margin: 0px auto;
margin-top: 10%;
}
.headerHolder {
text-align: center;
}
.calendarHeader,
.dayHeader {
display: inline-block;
width: 80%;
margin: 0px auto;
margin-top: 10%;
border: 1px solid black;
text-align: center;
}
.calendarHeader {
background: #003366;
font-family: 'avenir';
color: white;
}
.dayHeader {
border: none;
display: block;
width: 80%;
margin-bottom: 10%;
}
.dayBoxTop {
width: 13.5%;
display: inline-block;
border: 1px solid black;
text-align: center;
margin: -3px;
background-color: #FFCC66;
border-color: white;
color: black;
font-family: 'avenir'
}
.dayHolder {
width: 80%;
height: 60%;
margin: 0px auto;
}
.dayBox,
.blankBox {
display: inline-block;
width: 13%;
height: 16%;
border: 1px solid white;
margin: 0px auto;
text-align: center;
}
.dayBox {
background-color: #336699;
color: white;
font-family: 'avenir'
}
.blankBox {
border: none;
width: 13.8%;
}
#arrowRight {
width: 0px;
height: 0px;
border-style: solid;
border-width: 7.5px 0 7.5px 13.0px;
border-color: transparent transparent transparent #007bff;
display: inline-block;
}
#arrowLeft {
width: 0px;
height: 0px;
border-style: solid;
border-width: 7.5px 13.0px 7.5px 0;
border-color: transparent #007bff transparent transparent;
display: inline-block;
}
.alertBox {
border: 1px solid black;
position: absolute;
height: 200px;
width: 200px;
margin-left: 60px;
margin-top: 60px;
background-color: #625D5D;
opacity: .9;
color: white;
text-align: center;
font-family: 'avenir';
display: none;
}
footer {
text-align: center;
font-family: 'avenir';
}
a,
a:active {
color: black;
}