-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-sticky-bar.html
53 lines (49 loc) · 1.03 KB
/
simple-sticky-bar.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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="simple-sticky-bar.js"></script>
<style>
.bar {
position: fixed;
bottom: 0;
display: block;
z-index: 99999;
box-sizing: border-box;
width: 100%;
padding: 1.5em 2.5em;
background-color: #fff;
color: #000;
font-size: 1em;
line-height: 1.5;
text-align: center;
transition: bottom 1s;
p,
a {
color: inherit;
margin: 0;
}
a[href*="http"] {
text-decoration: underline;
}
.dismiss {
position: absolute;
top: 1em;
right: 0.75em;
font-size: 1.5em;
line-height: 1;
color: inherit;
}
}
</style>
</head>
<body>
<!-- The sticky bar -->
<div id="bar" class="bar">
<p>Don't miss this special event. <a href="https://www.google.com">Register now!</a></p>
<a href="#" class="dismiss">×</a>
</div>
<script>
stickyBar();
</script>
</body>
</html>