Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
880 B
CSS
Raw Normal View History

2019-09-03 12:04:52 +05:30
.time-slot {
2019-09-09 15:41:20 +05:30
margin-bottom: 2em;
margin-left: 0.5em;
margin-right: 0.5em;
border-radius: 0.4em;
cursor: pointer;
2019-09-03 12:04:52 +05:30
border: 0.5px solid #cccccc;
2019-09-09 15:41:20 +05:30
min-height: 75px;
padding: 0.5em 1em;
2019-10-03 13:18:13 +05:30
}
@media (max-width: 768px) {
#submit-button-area {
display: grid;
grid-template-areas:
"submit"
"back";
}
}
2019-10-15 16:45:24 +05:30
#customer-form{
border-color: black;
}
#customer-form ::placeholder{
color: #ddd;
}
2019-10-03 13:18:13 +05:30
#timeslot-container{
2019-10-15 16:45:24 +05:30
display: flex;
flex-wrap: wrap;
justify-content: center;
2019-09-03 12:04:52 +05:30
}
.time-slot:hover {
background: #ddd;
}
.time-slot.unavailable {
2019-09-09 15:41:20 +05:30
background: #CBD5E0;
cursor: not-allowed;
color: #718096
}
2019-09-03 12:04:52 +05:30
2019-09-09 15:41:20 +05:30
.time-slot.unavailable .text-muted {
color: #718096
2019-09-03 12:04:52 +05:30
}
.time-slot.selected {
color: white;
background: #5e64ff;
2019-09-09 15:41:20 +05:30
}
.time-slot.selected .text-muted {
color: #EDF2F7 !important;
}