-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (111 loc) · 1.82 KB
/
style.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
@CHARSET "ISO-8859-1";
.title {
background-color: #000;
padding: 10px;
text-align: center;
}
body {
font-family: Verdana, Geneva, sans-serif;
background-color: #0080C0;
color: #FFF;
}
body a {
color: #FFF;
}
table.calendar-main {
background: #000;
margin: 0 auto;
}
.calendar-header{
font-size: 24px;
font-weight: bold;
}
td.calendar-day-header {
font-weight: bold;
font-size: 16px;
text-align: center;
background-color: #0CF;
color: #000;
height: 50px;
width: 120px;
padding-top: 10px;
}
td.calendar-day {
height: 100px;
width: 120px;
background: #0CF;
cursor: pointer;
cursor: hand;
}
td.calendar-day:hover {
background: #00FFFF;
}
td.calendar-day-today {
background: #00FFFF;
cursor: pointer;
cursor: hand;
}
.calendar-day-numbox {
position: relative;
margin: -1px -1px 0px 0px;
text-align: right;
font-weight: bold;
background: #000;
font-size: 12px;
height: 30px;
width: 30px;
float: right;
color: #FFF;
top: -35px;
}
.entry-main-box {
background: #000;
margin: 0 auto;
padding: 10px;
width: 800px;
height: 900px;
}
.entry-inner-box {
margin: 0 auto;
padding-top: 5%;
width: 400px;
}
.entry-item {
color: #000;
font-weight: bold;
background: #0CF;
padding: 10px;
width: 400px;
}
.notes-item {
color: #000;
font-weight: bold;
background: #0CF;
padding: 10px;
width: 400px;
height: 100px;
}
.textbox {
float: right;
}
.backbutton {
width: 150px;
height: 60px;
float: left;
text-decoration: none;
background-color: #0CF;
color: #000;
text-align: center;
font-size: 24px;
}
.savebutton {
width: 150px;
height: 60px;
float: right;
margin-right: -20px;
text-decoration: none;
background-color: #0CF;
color: #000;
text-align: center;
font-size: 24px;
}