-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.scheduler.css
122 lines (102 loc) · 1.87 KB
/
jquery.scheduler.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
* {
box-sizing: border-box;
}
html {
}
body {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
text-align: center;
}
#scheduler {
display: inline-flex;
flex-direction: column;
background: white;
font-family: Verdana, sans-serif;
cursor: default;
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
background: linear-gradient(to bottom right, #595959, #a6a6a6);
color: white;
text-transform: uppercase;
letter-spacing: 3px;
}
.header > div {
padding: 12px 12px;
}
.button:hover {
background: #595959;
cursor: pointer;
}
.body {
display: flex;
flex-direction: row;
position: relative;
border-right: 1px solid #d9d9d9;
border-bottom: 1px solid #d9d9d9;
}
.row-header-container {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.row-header {
display: flex;
color: #595959;
align-items: center;
justify-content: center;
overflow: hidden;
}
.row-container {
display: flex;
flex-direction: column;
position: relative;
}
.column-header {
display: flex;
flex-direction: row;
}
.hour {
height: 100%;
background: linear-gradient(#f2f2f2, #d9d9d9);
border-left: 1px solid #d9d9d9;
padding: 4px 0px;
color: #595959;
}
.rsvn-container {
position: relative;
}
.row {
display: flex;
flex-direction: row;
}
.cell {
border-left: 1px solid #d9d9d9;
border-top: 1px solid #d9d9d9;
}
.reservation {
position: absolute;
border: 1px solid #a6a6a6;
border-radius: 5px;
z-index: 1;
}
.reservation-final {
background: #fffff0;
background: linear-gradient(#3e9ee5, #216ccc);
z-index: 2;
}
.reservation-creating {
background: #b3b3b3;
background: linear-gradient(#b3b3b3, #a6a6a6);
opacity: .75;
z-index: 1;
}
.reservation-error {
background: #ff944d;
background: linear-gradient(#ff944d, #ff8533);
}