-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (106 loc) · 2.13 KB
/
style.css
File metadata and controls
120 lines (106 loc) · 2.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
html,body {
min-height: 100%;
min-width: 100%;
}
#month {
display: grid;
grid-template-rows: repeat(auto-fit,minmax(100px,1fr));
grid-template-columns: repeat(auto);
justify-items: center;
text-align: left;
grid-column-gap: 5px;
width: 100%;
height: 100%;
background-color:#ffffff;
}
.monthHeader {
font-family: 'Courier New', Courier, monospace;
font-size: 48px;
/*color: #A4C639;
color: #f88379;*/
color: tomato;
width: 100%;
align-self: center;
}
.weekHeader {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(50px,1fr));
grid-column-gap: 5px;
font-family: 'Courier New', Courier, monospace;
font-size: 24px;
color: tomato;
/*color: #aaa8a8;*/
width: 100%;
align-self: center;
}
.week {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(50px,1fr));
grid-column-gap: 5px;
align-self: center;
width:100%;
height:100%;
}
.day {
display: grid;
align-self: center;
grid-template-rows: 1fr 5fr 1fr;
width:100%;
height:100px;
border-bottom-style: solid;
border-bottom-width: 4px;
/*border-color: #A4C639;
border-color: #f88379;*/
border-color: tomato;
color: #b5bcbc;
}
.dayHeader {
align-self: center;
border-bottom-style: solid;
border-bottom-width: 4px;
border-color: tomato;
/*
border-color: #A4C639;
border-color: #f88379;*/
color: #b5bcbc;
}
.weekend {
background-color: #f4f4f4;
}
.dayNumber {
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
color: #aaa8a8;
height: 20px;
width: 20px;
text-align: center;
}
.today .dayNumber{
color: white;
background-color: tomato;
border-radius: 50%;
text-align: center;
}
div.today :hover {
color: #b5bcbc;
}
.day:hover .dayNumber{
font-weight: bold;
}
/*.day:hover {
border-width: 4px;
border-color: #A4C639;
border-style: solid;
} */
.dayFooter {
justify-self: end;
visibility: hidden;
}
.day:hover .dayFooter{
visibility: visible;
}
.icon {
height: 20px;
width: 20px;
font-size:20px;
}