-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
137 lines (121 loc) · 2.39 KB
/
Copy pathstyles.css
File metadata and controls
137 lines (121 loc) · 2.39 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* Basic styling for the body */
body {
font-family: Arial, sans-serif;
margin: 20px;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
/* Styles for the main heading */
h1 {
font-size: 24px;
margin-bottom: 20px;
}
/* Styles for forms */
form {
width: 100%;
}
/* Styles for labels */
label {
display: block;
margin-top: 15px;
font-weight: bold;
}
/* Styles for input fields and select */
input[type="date"],
select {
width: 100%;
padding: 10px;
margin-top: 5px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
/* Styles for the date input calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
float: right;
padding: 8px;
}
/* Styles for buttons */
button {
margin-top: 15px;
padding: 10px 20px;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #e0e0e0;
}
/* Styles for the availability time slots */
#availability {
margin-top: 20px;
}
/* Styles for individual time slots */
.time-slot {
display: inline-block;
padding: 10px 15px;
margin: 5px;
border: 1px solid #007BFF;
border-radius: 5px;
color: #007BFF;
cursor: pointer;
}
/* Hover effect for time slots */
.time-slot:hover {
background-color: #007BFF;
color: #fff;
}
/* Styles for the response message */
#response {
font-size: 1.2em;
margin-top: 20px;
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
margin-left: 5px;
}
/* Tooltip icon */
.tooltip i {
color: #007bff;
cursor: pointer;
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
/* Tooltip arrow */
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Show tooltip on hover */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}