blob: d5202065eacbadf058e8013977035c5fb392f845 [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}
12
13#timeslot-container{
14 display: grid;
15 grid-template-columns: repeat(6, 1fr);
pranav nachnekar27910542019-09-03 12:04:52 +053016}
17
18.time-slot:hover {
19 background: #ddd;
20}
21
22.time-slot.unavailable {
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053023 background: #CBD5E0;
24 cursor: not-allowed;
25 color: #718096
26}
pranav nachnekar27910542019-09-03 12:04:52 +053027
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053028.time-slot.unavailable .text-muted {
29 color: #718096
pranav nachnekar27910542019-09-03 12:04:52 +053030}
31
32input[type="radio"] {
33 visibility: hidden;
34 display: none;
35}
36
37.time-slot.selected {
38 color: white;
39 background: #5e64ff;
Pranav Nachanekar10711dd2019-09-09 15:41:20 +053040}
41
42.time-slot.selected .text-muted {
43 color: #EDF2F7 !important;
44}