This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathjquery.filthypillow.css
140 lines (127 loc) · 2.76 KB
/
jquery.filthypillow.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.filthypillow {
position: relative;
}
.fp-container .active {
background: lightblue;
border-radius: 0px;
}
.fp-description {
display: none;
font-weight: 700;
padding: 5px 0;
}
.fp-errors {
background: #FF7878;
color: white;
padding: 4px 0;
display: none;
}
.fp-container {
font-size: 0.9em;
font-family: sans-serif;
text-transform: uppercase;
text-align: center;
line-height: 1em;
box-shadow: 2px 2px 2px 2px rgba( 0, 0, 0, 0.4 );
z-index: 9999;
position: absolute;
width: 300px;
background: #fff;
}
.fp-option {
border-radius: 4px;
background: #fff;
margin: 2px;
padding: 2px;
cursor: pointer;
}
.fp-save {
text-transform: uppercase;
float: right;
margin: 4px 4px 0 0;
display: inline;
}
.fp-clock, .fp-calendar {
width: 35%;
padding: 8px 0;
margin: 6px 5px 5px 5px;
border-radius: 4px;
background: white;
border: 1px solid #c0c0c0;
display: inline-block;
}
.fp-calendar {
text-align: left;
}
.fp-clock {
margin-right: 0;
}
/* Calendar */
.fp-cal-container {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
width: 300px;
height: 235px;
position: absolute;
bottom: -235px;
background: #fff;
box-shadow: 2px 4px 2px 2px rgba( 0, 0, 0, 0.4 );
color: #000;
}
.fp-cal-container table, th, tr, td {
border: 0;
}
.fp-cal-container table {
font-size: inherit;
width: 100%;
padding: 0;
}
.fp-cal-nav {
padding: 10px 10px 10px 10px;
text-align: center;
}
.fp-cal-right {
float: right;
cursor: pointer;
}
.fp-cal-left {
float: left;
cursor: pointer;
}
.fp-cal-day-label {
width: 14%;
}
.fp-cal-date {
vertical-align: middle;
height: 30px;
cursor: pointer;
text-align: center;
}
.btn-primary {
padding: 4px 8px;
font-size: 14px;
line-height: 20px;
}
.fp-cal-date.active,
.btn-primary {
border-radius: 4px;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #006dcc;
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
border-color: #0044cc #0044cc #002a80;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #0044cc;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.fp-cal-date.fp-disabled {
color: #a0a0a0;
cursor: default;
}