-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 901 Bytes
/
index.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
<html>
<head>
<title>Sample App</title>
<style>
body {
font-family: sans-serif;
font-size: 1.5em;
}
.list {
width: 600px;
margin: 0 auto;
}
.list-title {
font-weight: bold;
text-align: center;
}
.list-item {
margin: 5px 0;
padding: 10px;
cursor: pointer;
}
.title, .speaker {
display: inline;
}
.title:after {
content: '\A';
white-space: pre;
}
.title {
font-size: 1.1em;
font-weight: bold;
}
.speaker {
font-size: .9em;
font-style: italic;
}
.time {
float: right;
font-size: 1.5em;
margin-top: -20px;
}
</style>
</head>
<body>
<div id='root'>
</div>
<script src="/static/bundle.js"></script>
</body>
</html>