blob: 6c49fde739ebbaf0a6a3da1bb83a4862478dd579 [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
0Pranavb1e9fb92019-11-13 15:32:56 +053012@media (max-width: 768px) {
13 #submit-button-area {
14 display: grid;
15 grid-template-areas:
16 "submit"
17 "back";
18 }
19}
0Pranav7c274362019-10-15 16:45:24 +053020#customer-form{
21 border-color: black;
22}
23#customer-form ::placeholder{
24 color: #ddd;
25}
Pranav Nachanekar59c54352019-10-03 13:18:13 +053026#timeslot-container{
0Pranav7c274362019-10-15 16:45:24 +053027 display: flex;
28 flex-wrap: wrap;
29 justify-content: center;
pranav nachnekar27910542019-09-03 12:04:52 +053030}
31
32.time-slot:hover {
33 background: #ddd;
34}
35
36.time-slot.unavailable {
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053037 background: #CBD5E0;
38 cursor: not-allowed;
39 color: #718096
40}
pranav nachnekar27910542019-09-03 12:04:52 +053041
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053042.time-slot.unavailable .text-muted {
43 color: #718096
pranav nachnekar27910542019-09-03 12:04:52 +053044}
45
pranav nachnekar27910542019-09-03 12:04:52 +053046.time-slot.selected {
47 color: white;
48 background: #5e64ff;
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053049}
50
51.time-slot.selected .text-muted {
52 color: #EDF2F7 !important;
53}