forked from uphadeharsh45/Pulse-Hospital
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappoinment.css
106 lines (96 loc) · 1.73 KB
/
appoinment.css
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
* {
margin: 0;
padding: 0;
font-family: Montserrat;
user-select: none;
}
nav {height: 10vh;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #F0F0F8;
}
nav img,
a {
padding: 1rem;
margin: 0 1rem;
}
nav a {
text-decoration: none;
background-color: #FF3444;
color: white;
border-radius: 0.75rem;
transition: all 0.3s ease;
font-weight: 800;
}
nav a:hover {
color: #FF3444;
background-color: #F0F0F8;
}
.container {
display: flex;
margin-left: 100px;
height: 83vh;
}
.main{
height: 85;
}
.form-body {
margin-left: 220px;
margin-top: 25px;
height: 75vh;
width: 65vh;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
border-radius: 50px;
box-shadow: 5px 4px 0px 0px #FF3444;
background-color: #F0F0F8;
}
.form-body input {
height: 50px;
width: 319px;
margin-left: 8px;
border-radius: 10px;
border: 1px solid #FF3444;
}
.form_heading {
font-size: 30px;
font-weight: 600;
text-align: center;
}
.btn {
padding: 17px 60px;
align-items: center;
color: white;
background-color: #FF3444;
border-radius: 10px;
font-size: 15px;
font-weight:900;
margin-left: 65px;
border: none;
}
#Doctor_name {
height: 50px;
width: 326px;
margin: 5px;
margin-left: 8px;
padding: 10px;
border-radius: 10px;
border-color: #FF3444;
background-color: white;
}
#Time_slot {
height: 50px;
width: 326px;
margin: 5px;
margin-left: 8px;
padding: 10px;
border-radius: 10px;
border-color: #FF3444;
background-color: white;
}
footer{width: 100vw;
height: 10vh;
}