-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathticker.php
61 lines (52 loc) · 1.32 KB
/
ticker.php
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
<html>
<head>
<style>
@media screen and (max-width: 80px) {
.news {
position:relative;margin-left:auto;margin-right:auto;margin-top:400px ;
}
.text1{
box-shadow:none !important;
position:relative;
margin-left:auto;margin-right:auto;
}
}
.blue {
background: #347fd0;
}
.news {
box-shadow: inset 0 -15px 30px rgba(10,4,60,0.4), 0 5px 10px rgba(10,20,100,0.5);
width: 100%;
height:50px;
margin-top:0px;
overflow: hidden;
border-radius: 4px;
padding: 1px;
-webkit-user-select: none;
}
.news span {
float: left;
color: #fff;
padding: 9px;
position: relative;
top: 1%;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
font: 16px 'Raleway', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-webkit-user-select: none;
cursor: pointer;
}
.text1{
box-shadow:none !important;
position:relative;
width:90%
}
</style>
</head>
<body>
<div class="news blue">
<span style="background-color:#F60F0F;width:125px;height:50px">Latest Updates</span><span class="text1" ><marquee>First blood donation camp to be organised in Hisar By Varun in collabration with Blood Bank& Donation Management System on <b>01/09/2020 at Community Centre PLA.</b> Come and Be a Part of this Noble Cause :) </marquee></span>
</div>
</body>
</head>
</html>