forked from dantoth24/GameDesignWebsite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalendar.css
97 lines (85 loc) · 1.76 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
/* Calendar styling */
table#calendar {
border: 1px solid #eee;
margin: 2px;
font-size: 18px;
width: 100%;
background-color: white;
border-collapse: collapse;
}
table#gamejam {
border: 1px solid #eee;
margin: 2px;
font-size: 18px;
width: 100%;
background-color: white;
border-collapse: collapse;
}
table#calendar td {
padding: 10px;
margin: 4px;
border: .5px solid #ccc;
}
table#calendar .td-left {
text-align: left;
text-decoration: none;
}
table#gamejam td {
padding: 10px;
margin: 4px;
border: .5px solid #ccc;
}
table#gamejam .td-left {
text-align: left;
text-decoration: none;
}
table#gamejam th{
background-color: rgb(156,39,176);
padding: 5px;
margin: 4px;
border: 1px solid #ccc;
color: #fff;
font-weight: normal;
}
table#calendar th {
padding: 5px;
margin: 4px;
border: 1px solid #ccc;
background-color: rgb(63,81,181);
color: #fff;
font-weight: normal;
}
table#calendar .proj1 {
background-color: #c4e6ff;
}
table#calendar .proj2 {
background-color: #cbe9b0;
}
table#calendar .proj3 {
background-color: #ffe4b4;
}
table#calendar .gray-bg {
background: #eee;
}
table#calendar .white-bg {
background: #fff;
}
table#gamejam .gray-bg {
background: #eee;
}
table#calendar tr th:nth-child(2) {
}
table#calendar tr th:nth-child(4) {
text-align: left;
}
table#calendar tr:not(:first-child):hover td:not(.weeknum) {
background: #ffffd8;
}
table#gamejam tr th:nth-child(2) {
}
table#gamejam tr th:nth-child(4) {
text-align: left;
}
table#gamejam tr:not(:first-child):hover td:not(.weeknum) {
background: #ffffd8;
}