-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappointment.css
More file actions
131 lines (114 loc) · 2.04 KB
/
appointment.css
File metadata and controls
131 lines (114 loc) · 2.04 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: 50px auto;
padding: 20px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h2 {
text-align: center;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
thead {
background: #007BFF;
color: white;
}
thead th {
padding: 12px;
text-align: left;
border-bottom: 2px solid #ddd;
}
tbody tr:nth-child(even) {
background: #f9f9f9;
}
tbody tr:hover {
background: #f1f1f1;
}
td {
padding: 10px;
border-bottom: 1px solid #ddd;
}
td:last-child {
font-weight: bold;
color: #28a745;
}
@media (max-width: 768px) {
.container {
width: 95%;
}
table, thead, tbody, th, td, tr {
display: block;
}
thead {
display: none;
}
tr {
margin-bottom: 15px;
background: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
td {
display: flex;
justify-content: space-between;
padding: 8px;
}
td::before {
content: attr(data-label);
font-weight: bold;
text-transform: uppercase;
color: #007BFF;
}
}
.join-btn, .cancel-btn {
padding: 8px 12px;
border: none;
cursor: pointer;
border-radius: 5px;
font-size: 14px;
text-decoration: none;
display: inline-block;
}
.join-btn {
background-color: #51d06e;
color: white;
}
.cancel-btn {
background-color: #ea5968;
color: white;
}
.join-btn:hover {
background-color: #118b2c;
}
.cancel-btn:hover {
background-color: #c82333;
}
.back-btn-section {
display: flex;
justify-content: center;
margin-top: 20px;
}
.back-btn {
background-color: #5f9ea0;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.back-btn:hover {
background-color: #4682b4;
}