-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (71 loc) · 2.33 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simulate a lively, fake Twitch chat that displays similar to Streamlabs OBS's twitch chat plugin." />
<title>Autopog</title>
<link rel="icon" href="./icon.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bulma Version 0.9.x -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/bulma.min.css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto');
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
section.hero {
background-color: #151E61;
}
section.hero .title, section.hero .subtitle {
color: #FFF;
}
.autopog {
color: #FFF;
font-weight: bold;
font-size: 45px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1em;
}
.autopog > img {
margin-right: 5px;
}
</style>
</head>
<body>
<section class="hero is-fullheight is-default is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered">
<div class="column is-5">
<figure class="image">
<img src="https://images.squarespace-cdn.com/content/v1/556ce555e4b0bcb104348de7/1619044388415-J0RYV07SHMUZG2AKT2NO/chat4.gif" alt="Twitch Chat GIF"/>
</figure>
</div>
<div class="column is-6 is-offset-1">
<div class="autopog">
<img src="icon60px.png" alt="Autopog Logo"> Autopog
</div>
<h1 class="title is-2">
Twitch chat, simulated.
</h1>
<h2 class="subtitle is-4">
Presenting a configurable popup designed to immitate a lively Twitch chat feed.
</h2>
<br>
<p class="has-text-centered">
<button id="miniwindow" class="button is-medium is-info is-outlined">Open Popup</button>
</p>
</div>
</div>
</div>
</div>
</section>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>