-
Notifications
You must be signed in to change notification settings - Fork 0
/
gongonzacal.css
83 lines (76 loc) · 1.49 KB
/
gongonzacal.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
.gongonzacal{
width: 600px;
border: 1px solid black;
margin: 10px;
border-radius: 3px;
background-color: #FAFAFA;
font-family: arial;
}
.gongonzacal #top_bar{
height: 30px;
line-height: 30px;
margin: 15px 0 40px 0;
}
.gongonzacal #top_bar #prev_nav,
.gongonzacal #top_bar #next_nav {
width: 75px;
float: left;
text-align: center;
cursor: pointer;
}
.gongonzacal #top_bar #prev_nav a,
.gongonzacal #top_bar #next_nav a{
display: block;
}
.gongonzacal #top_bar #title {
width: 450px;
float: left;
font-size: 28px;
text-align: center;
font-weight: bold;
}
.gongonzacal #label_bar{
display: block;
width: 554px;
margin: 0px auto 5px auto;
font-weight: bold;
}
.gongonzacal #label_bar .lab_cell{
float: left;
width: 79px;
text-align: center;
}
.gongonzacal #calendar_cells{
width: 554px;
margin: 0px auto 20px auto;
}
.gongonzacal #calendar_cells .cal_cell{
float: left;
border-left: 1px solid black;
border-top: 1px solid black;
width: 78px;
height: 50px;
text-align: center;
font-size: 25px;
line-height: 50px;
}
.gongonzacal #calendar_cells .cal_cell a.cell_selector{
display: block;
cursor: pointer;
}
.gongonzacal #calendar_cells .right_cell{
border-right: 1px solid black;
}
.gongonzacal #calendar_cells .bottom_cell{
border-bottom: 1px solid black;
}
.gongonzacal #calendar_cells .date_selected{
background-color: #AAAAFF;
color: white;
font-weight: bold;
}
.gongonzacal #calendar_cells .cal_cell:hover {
background-color: #3377FF;
font-weight: bold;
color: white;
}