-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeacialist.css
More file actions
97 lines (82 loc) · 1.55 KB
/
speacialist.css
File metadata and controls
97 lines (82 loc) · 1.55 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('images/blur-hospital.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #00897b;
width: 80%;
max-width: 800px;
border-radius: 10px;
padding: 20px;
}
.header h1 {
margin: 0;
padding: 20px;
color: white;
background-color: #5f9ea0;
border-radius: 10px 10px 0 0;
text-align: left;
}
.content {
background-color: #dcdcdc;
padding: 20px;
border-radius: 10px;
text-align: center;
}
h2 {
margin-top: 0;
margin-bottom: 20px;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
td {
padding: 15px;
text-align: left;
}
td span.icon {
display: inline-block;
width: 50px;
height: 50px;
background-image: url('doctor.png');
background-size: cover;
border-radius: 50%;
margin-right: 10px;
}
.book-btn {
background-color: #00bfa5;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.book-btn:hover {
background-color: #00897b;
}
.back-btn-section {
text-align: center;
}
.back-btn {
background-color: #5f9ea0;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.back-btn:hover {
background-color: #4682b4;
}