-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
119 lines (113 loc) · 2.19 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
116
117
118
119
body{
color: #82500D;
height: 100vh;
margin: auto;
text-align: center;
}
a{
color:#d89f52;
}
pre{
text-align:left;
border: antiquewhite 1px solid;
padding: 13px 33px;
}
hr{
border: #d89f52 1px solid;
}
.container{
text-align: left;
width: 57%;
margin: 7% auto 0;
}
#calendarThis{
margin: 3% auto;
display: inline-block;
transition: box-shadow .25s;
border-radius: 2px;
padding: 9px 7px 9px 7px;
background: #FFFCF9;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}
#calendarThis li, .day-of-week{
display: inline-block;
padding: 13px 7px;
width: 33px;
border: #FFF9F2 1px solid;
text-align: center;
background: antiquewhite;
cursor: pointer;
}
#calendarThis li:hover{
border: #F9E0B6 1px solid;
background: #fff;
}
.float-left, .day-view{
float: left;
}
.float-right, .month-view{
float: right;
}
.month-view ul{
padding: 0;
margin: 0 0 0 8px;
text-align: left;
}
.day-view{
text-align: center;
font-weight: bold;
}
.day-header{
padding: 13px 0;
border: antiquewhite 2px solid;
background: #fff;
}
.day-number{
display:block;
margin: 10% auto;
font-size: 144px;
background: #fff;
width: 83%;
border-radius: 2px;
border: #FFE2BB 1px dotted;
position: relative;
top: 64%;
transform: translateY(12%);
}
.day-view, .month-view{
width: 357px;
display: block;
}
.day-of-week{
background: #FFFCF9 !important;
font-weight: bold;
border: #fff 1px solid;
color: #D89F52;
}
.month-header{
width: 99%;
display: block;
text-align: center;
padding: 13px 0;
border: antiquewhite 2px solid;
background: #fff;
margin: 0 0 2px 0;
font-weight: bold;
}
.today{
background: #FFFDFA !important;
}
.arrow{
width: 45px;
height: 35px;
margin: auto 0 auto 0;
text-align: center;
font-weight: bold;
cursor: pointer;
}
/* Portrait and Landscape */
@media (max-width: 767px) {
#calendarThis{
width: 358px;
}
}