-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (90 loc) · 2.7 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sentimental</title>
<link href="https://fonts.googleapis.com/css?family=Ultra" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-47082559-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-47082559-2');
</script>
<style media="screen">
.navbar {
border-top: 4px solid #6C307D;
box-sizing: border-box;
height: 64px;
background-color: #222;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
display: flex;
justify-content: space-between;
}
.navbar-header {
font-weight: bold;
font-size: 30px;
}
.navbar-header a img {
height: 24px;
}
.navbar a {
color: #fff;
line-height: 60px;
margin-left: 0;
text-decoration: none;
}
.navbar a.navbar-brand {
margin-left: 20px;
}
.navbar-right {
margin: 0;
line-height: 50px;
list-style: none;
}
.navbar-right li {
float: left;
margin-right: 20px;
text-transform: uppercase;
letter-spacing: 1px;
padding-left: 20px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<div class="navbar">
<div class="navbar-header">
<a href="https://winkjs.org/" title="wink" class="navbar-brand">
<img src="https://winkjs.org/images/logo.svg">
wink
</a>
</div>
<ul class="nav navbar-nav navbar-right collapse navbar-collapse" id="main-nav">
<li><a href="https://winkjs.org/packages.html" class="">Packages</a></li>
<li><a href="https://winkjs.org/showcase.html" class="">Showcase</a></li>
<li><a href="https://winkjs.org/blog.html" class="">Blog</a></li>
<li><a href="http://github.com/winkjs">Github</a></li>
<li><a href="https://winkjs.org/about.html" class="">About</a></li>
</ul>
</div>
</header>
<header class="header">
<h1 class="header-heading">Sentimental</h1>
<p class="header-poweredby"><a href="https://github.com/winkjs/wink-sentiment">Github</a> · <a href="https://winkjs.org/blog/sentimental-ai.html">Blog</a> </p>
</header>
<div class="legend">
<span class="legend-score" id="score">0</span>
</div>
<!-- <div id="text" class="full">hi</div> -->
<textarea id="textarea" class="inputArea">Type something happy or sad!</textarea>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>