blob: 0959d5c4cda386d4245d4d88a11f5bfb49f2d026 [file] [log] [blame]
pranav nachnekar27910542019-09-03 12:04:52 +05301.time-slot {
Pranav Nachanekar10711dd2019-09-09 15:41:20 +05302 margin-bottom: 2em;
3 margin-left: 0.5em;
4 margin-right: 0.5em;
5 border-radius: 0.4em;
6 cursor: pointer;
pranav nachnekar27910542019-09-03 12:04:52 +05307 border: 0.5px solid #cccccc;
Pranav Nachanekar10711dd2019-09-09 15:41:20 +05308 min-height: 75px;
9 padding: 0.5em 1em;
Pranav Nachanekar59c54352019-10-03 13:18:13 +053010}
11
0Pranav7c274362019-10-15 16:45:24 +053012#customer-form{
13 border-color: black;
14}
15#customer-form ::placeholder{
16 color: #ddd;
17}
Pranav Nachanekar59c54352019-10-03 13:18:13 +053018#timeslot-container{
0Pranav7c274362019-10-15 16:45:24 +053019 display: flex;
20 flex-wrap: wrap;
21 justify-content: center;
pranav nachnekar27910542019-09-03 12:04:52 +053022}
23
24.time-slot:hover {
25 background: #ddd;
26}
27
28.time-slot.unavailable {
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053029 background: #CBD5E0;
30 cursor: not-allowed;
31 color: #718096
32}
pranav nachnekar27910542019-09-03 12:04:52 +053033
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053034.time-slot.unavailable .text-muted {
35 color: #718096
pranav nachnekar27910542019-09-03 12:04:52 +053036}
37
pranav nachnekar27910542019-09-03 12:04:52 +053038.time-slot.selected {
39 color: white;
40 background: #5e64ff;
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053041}
42
43.time-slot.selected .text-muted {
44 color: #EDF2F7 !important;
45}