-
Notifications
You must be signed in to change notification settings - Fork 10
/
homepage.css
209 lines (194 loc) · 3.78 KB
/
homepage.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
@keyframes imageflip {
0% {
background-image: url("get-info-medicine.jpg");
background-repeat: no-repeat;
background-size: 100%}
50% {
background-image: url("sympcheck.jpg");
background-repeat: no-repeat;
background-size: 100%;}
100% {
background-image: url("doctor.jpg");
background-size: 100%;
background-repeat: no-repeat;
}
}
div.image {
position: relative;
top: 60px;
min-height: 550px;
min-width: 85%;
margin-left: 7%;
margin-right: 7%;
z-index: -1;
border-radius: 2px;
animation: imageflip 20s;
animation-timing-function: linear;
animation-direction: alternate-reverse;
animation-iteration-count: infinite;
}
/* BMI CSS */
/* The Modal (background) */
.modal
{
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
background-color: #555555;
opacity: 0.97;
}
/* Modal Content */
.modal-content
{
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 5px solid #2E86C1;
width:20%;
overflow:auto;
border-radius:12px;
text-align:center;
font-family: Arial;
font-size:18px;
}
.modal-content input[type="text"]
{
padding: 4px;
border: 4px solid #A3E4D7;
font-family: Arial;
border-radius: 3px;
width: 80%;
}
.modal-content input[type="submit"]
{
padding: 4px;
border: 3px solid #7DCEA0;
border-radius: 3px;
width: 60%;
}
.modal-content input[type="submit"]:hover
{
cursor: pointer;
}
#p1, #p2, #p3, #p4
{
font-size: 13px;
color: red;
font-family: Arial;
}
/* The Close Button */
.close {
display: block;
color: #FBFCFC;
float:right;
top:0px;
font-size: 28px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
border: 1px solid red;
border-radius: 2px;
padding-left: 8px;
padding-right: 8px;
padding-top: 1px;
padding-bottom: 1px;
background-color: #EDBB99;
}
.close:hover,
.close:focus {
background-color: #E74C3C;
cursor: pointer;
}
#myBtn {
color: #5DADE2;
}
#myBtn:hover {
color: #1B4F72;
cursor: pointer;
}
span#links ,p#links
{
color: #5DADE2;
text-decoration: none;
}
span#links:hover ,p#links:hover
{
color: #1B4F72;
}
.home { /* Home page information*/
margin-top: 166px;
max-width: 70%;
}
.home h2 { /*formatting heading*/
font-family: 'Droid Sans', sans-serif;
letter-spacing: 3px;
word-spacing: 4px;
color: midnightblue;
padding: 14px;
text-shadow: 1px 1px 1px 2px midnightblue;
}
.home h4 {
font-family: 'Droid Sans', sans-serif;
letter-spacing: 2px;
word-spacing: 4px;
color: midnightblue;
padding: 14px;
text-shadow: 1px 1px 1px 2px midnightblue;
}
#asidel span{
font-size: 18px;
font-family:'Droid Sans', sans-serif;
color:#262227;
}
#asider span{
font-size:18px;
font-family:'Droid Sans', sans-serif;
color:#262227;
} /* CONTENT */
#asider hr{
background-color:#598287;
height: 7px;
border:0px;
}
#asidel hr{
background-color:#598287;
height: 7px;
border:0px;
}
div#footer, div#footer a {
background-color: #003375;
min-width: 40%;
width: 100%;
position: relative;
left: 0px;
right: 0px;
color: #DCFFFE;
font-size: 14px;
font-family: "Droid Sans", sans-serif;
letter-spacing: 2px;
overflow: auto;
text-decoration: none;
}
div#footer ul#credits {
list-style-type: circle;
color: #DCFFFE;
}
div#footer span#footright1 {
margin-left: 85%;
font-size: 19px;
position: absolute;
top: 50%;
}
div#footer span#footright2 {
margin-left: 85%;
font-size: 14px;
position: absolute;
top: 65%;
}