-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
152 lines (137 loc) · 2.98 KB
/
styles.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 90%;
height: 80vh;
padding: 20px;
border-radius: 20px;
box-shadow: 0px 5px 25px rgba(0,0,0,0.2);
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
}
.container form{
width: 100%;
height: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
}
.inputBox{
width: 100%;
margin: 10px 0;
border-radius: 5px;
overflow: hidden;
}
.inputBox input[type="text"], .inputBox input[type="email"]{
width: 100%;
height: 50px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox input[type="text"], .inputBox input[type="age"]{
width: 100%;
height: 50px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox input[type="text"], .inputBox input[type="Address"]{
width: 100%;
height: 50px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox input[type="text"], .inputBox input[type="Medical reports"]{
width: 100%;
height: 50px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox input[type="text"], .inputBox input[type="Medications"]{
width: 100%;
height: 50px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox textarea{
width: 100%;
height: 120px;
border-radius: 5px;
border: none;
outline: none;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.2);
padding: 0px 10px;
font-size: 16px;
color: #444;
}
.inputBox button{
width: 100%;
padding: 10px 20px;
border: none;
outline: none;
background: rgb(0, 119, 255);
color: #FFF;
font-size: 20px;
font-weight: bold;
cursor: pointer;
}
.inputBox button:hover{
background: rgb(0, 17, 255);
transition: all 0.3s ease;
}
::placeholder{
font-size: 16px;
}
.alert{
width: 100%;
background: rgb(0, 255, 106);
padding: 10px 20px;
border-radius: 5px;
text-align: center;
font-size: 18px;
font-weight: 900;
display: none;
}