-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunfinished_banner.html
47 lines (47 loc) · 1.14 KB
/
unfinished_banner.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
<!-- Message that this is unfinished -->
<!-- TODO: delete this when finished -->
<div>
<script>
function closeUnfinishedBanner() {
// Make the element with the id of unfinished-banner invisible
var banner = document.getElementById("unfinished-banner");
banner.style.display = "none"
}
</script>
<div id="unfinished-banner" style="
color: white;
display: block;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #ff0051;
font-family: sans-serif;
width=100%;
overflow: hidden;
padding: 20px;
font-size: 11pt;
">
<div class="message" style="
display: inline-block; padding: 10px;
">
<b>Please Note:</b> This page is UNFINISHED! You may see some Lorem Ipsum text around, missing graphics, etc.
</div>
<button class="close-button" onclick="closeUnfinishedBanner()" style="
display: inline-block;
background-color: #de004a;
border-style: none;
color: white;
font-weight: bold;
float: right;
border-radius: 4px;
padding: 10px;
"
onmouseover=this.style.backgroundColor="#8c002f"
onmouseout=this.style.backgroundColor="#de004a"
>
×
I understand. Close this message.
</button>
</div>
</div>