-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathalert.html
More file actions
116 lines (111 loc) · 2.85 KB
/
alert.html
File metadata and controls
116 lines (111 loc) · 2.85 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<style>
.marquee {
position: sticky;
z-index: 111;
width: 100%;
background-color: red;
color: white;
font-weight: 1000;
height: auto;
font-size: large;
}
.hover_bkgr_fricc {
background: rgba(0, 0, 0, 0.4);
cursor: pointer;
display: none;
height: 100%;
position: fixed;
text-align: center;
top: 0;
width: 100%;
z-index: 10000;
}
.hover_bkgr_fricc .helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.hover_bkgr_fricc > div {
background-color: #f36969;
box-shadow: 10px 10px 60px #555;
display: inline-block;
height: auto;
max-width: 551px;
min-height: 100px;
vertical-align: middle;
width: 60%;
position: relative;
border-radius: 8px;
padding: 15px 5%;
}
.popupCloseButton {
background-color: #fff;
border: 3px solid #999;
border-radius: 50px;
cursor: pointer;
display: inline-block;
font-family: arial;
font-weight: bold;
position: absolute;
top: -20px;
right: -20px;
font-size: 25px;
line-height: 30px;
width: 30px;
height: 30px;
text-align: center;
}
.popupCloseButton:hover {
background-color: #ccc;
}
.trigger_popup_fricc {
cursor: pointer;
font-size: 20px;
margin: 20px;
display: inline-block;
font-weight: bold;
}
</style>
<div class="marquee navbar-inverse" data-spy="affix" data-offset-top="150">
<marquee
id="confcancel"
onMouseOver="document.all.confcancel.stop()"
onMouseOut="document.all.confcancel.start()"
>As per the government orders, conference is postponed till further notice.
We are apologize for the inconvenience that might result from this change.
Postponements in the future will be communicated early enough to reduce
inconveniences.
</marquee>
</div>
<div class="hover_bkgr_fricc">
<span class="helper"></span>
<div>
<div class="popupCloseButton">×</div>
<h1>
<u
><b><span style="font-size: 0.8em;">Conference Postponed</span> </b></u
>
</h1>
<p style="color: whitesmoke;font-weight: 600;">
In wake of COVID-19 outbreak going on in the country and to comply with
UGC, AICTE, Ministry of Health- Government of India and Government of
Rajasthan circulars, we have postponed all the conferences, scheduled on
3rd-4th April,2020. <br />
<br />
We are apologize for the inconvenience that might result from this change.
Postponements in the future will be communicated early enough to reduce
inconveniences.
</p>
</div>
</div>
<script>
$(window).ready(function() {
$('.hover_bkgr_fricc').show();
$('.hover_bkgr_fricc').click(function() {
$('.hover_bkgr_fricc').hide();
});
$('.popupCloseButton').click(function() {
$('.hover_bkgr_fricc').hide();
});
});
</script>