-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
49 lines (43 loc) · 924 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>vue-balloon</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
<style>
html,
body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: Roboto;
}
h1, h2 {
color: #333;
margin: 0;
text-align: center;
padding: 30px;
}
h1 {
font-weight: 300;
font-size: 100px;
padding-top: 20%;
}
h2 {
font-weight: normal;
}
</style>
</head>
<body>
<h1>
Vue Balloon
</h1>
<h2>
Click on the fixed ballon in the bottom right corner to expand it.
</h2>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>