-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (78 loc) · 2.2 KB
/
index.html
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
{% extends 'hospital/homebase.html' %}
{% load static %}
{% block content %}
<head>
<style media="screen">
.jumbotron {
margin-top: 0px;
margin-bottom: 0px;
background-image: url('../../static/images/Home.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.Covid{
text-align: right;
font-size: 30px;
color: red;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
.lead{
text-align: left;
}
.register{
text-align: right;
}
.jumbotron h5 {
text-align: center;
font-size: 60px;
color: pink;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
.em{
text-align: left;
font-size: 30px;
color: red;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
.alert {
margin: 0px;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #9554b3, 0 0 60px #9554b3, 0 0 70px #9554b3;
}
to {
text-shadow: 0 0 20px #eeeeee, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}
</style>
</head>
<br>
<br>
<div class="jumbotron" style="margin-bottom: 0px;margin-top: 0px;">
<br>
<h5 class="display-3 glow">We are always there for you!</h5>
<br><br><br><br><br>
<p>
<h3 class="em">Emergency ?</h3>
<p class="lead">
<a class="btn btn-primary btn-lg" href="/patientclick" role="button">Book Appointment</a>
</p>
<br><br>
<br>
<br><br><br>
<p>
<h3 class="Covid">COVID-19?</h3>
<p class="register">
<a class="btn btn-primary btn-lg" href="https://www.cowin.gov.in/" role="button">Register Here</a>
</p>
<br><br>
</div>
<br><br><br>
{% endblock content %}