blob: 4330af67cf8ca93262e8cf33fa0b34a0e8026709 (
plain)
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
|
<html>
<head>
<title>applause!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<style>
html,body {
width: 100%;
height: 100%;
margin: 0; padding: 0;
overflow: hidden;
background: black;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: white;
text-shadow: 0 0 1px #000;
transition: background-color 100ms;
user-select: none;
}
#header {
position: absolute;
top: 0; left: 0;
width: 100%;
color: #000;
font-size: 32px;
font-weight: 100;
text-align: center;
padding-top: 20px;
}
</style>
</head>
<body>
<div id="header">AMBIENT MUSIC FOR WHISTLEBLOWERS</div>
</body>
<script src='bundle.js'></script>
</html>
|