Skip to content

Commit 743a211

Browse files
committed
final changes before alpha version release
1 parent 2efd924 commit 743a211

File tree

5 files changed

+61
-27
lines changed

5 files changed

+61
-27
lines changed

background.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<html>
22
<head>
3-
<title>Todoist</title>
3+
<title>Anna</title>
44
<script type="text/javascript" src="background.js"></script>
55
</head>
66

elate/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<!-- <li><a href="#" data-nav-section="testimonials"><span>Testimonials</span></a></li> -->
102102
<!-- <li><a href="#" data-nav-section="services"><span>About</span></a></li> -->
103103
<!-- <li><a href="#" data-nav-section="about"><span>About</span></a></li> -->
104-
<li><a href="https://github.com/anna-assistant" ><span>Fork Me on Github</span></a></li>
104+
<li><a target="_blank" href="https://github.com/anna-assistant" ><span>Fork Me on Github</span></a></li>
105105
</ul>
106106
</div>
107107
</nav>
@@ -256,7 +256,7 @@ <h2>Close Tabs</h2>
256256
<div class="row watch-video text-center to-animate">
257257
<span>Watch the video</span>
258258

259-
<a href="https://www.youtube.com/watch?v=17bVrAZMgEY" class="popup-youtube btn-video"><i class="icon-play2"></i></a>
259+
<a target="_blank" href="https://www.youtube.com/watch?v=17bVrAZMgEY" class="btn-video"><i class="icon-play2"></i></a>
260260
</div>
261261
</div>
262262
</section>

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Anna Assistant",
4-
"version": "0.1",
4+
"version": "0.2",
55
"background" : {
66
"scripts" : ["js/jquery.min.js","js/on-off-switch.js","js/on-off-switch-onload.js","background.js"],
77
"persistent" : true

permission.html

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,42 @@
22
<html lang="en">
33
<head>
44
<title>Voice Type</title>
5-
<style>
6-
html, body {
7-
height:100%;
8-
margin: 0;
9-
}
10-
body {
11-
display: flex;
12-
align-items: center;
13-
justify-content: center;
14-
}
15-
h1 {
16-
font-size: 10vh;
17-
}
18-
</style>
5+
<link rel="stylesheet" href="elate/css/style.css">
6+
7+
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
8+
9+
<!-- Animate.css -->
10+
<link rel="stylesheet" href="elate/css/animate.css">
11+
<!-- Icomoon Icon Fonts-->
12+
<link rel="stylesheet" href="elate/css/icomoon.css">
13+
<!-- Simple Line Icons -->
14+
<link rel="stylesheet" href="elate/css/simple-line-icons.css">
15+
<!-- Magnific Popup -->
16+
<link rel="stylesheet" href="elate/css/magnific-popup.css">
17+
<!-- Bootstrap -->
18+
<link rel="stylesheet" href="elate/css/bootstrap.css">
19+
1920
<script src="permission.js"></script>
2021
</head>
2122
<body>
22-
<div>
23-
<h1>Please Grant Microphone Permission</h1>
24-
</div>
23+
<section id="fh5co-home" data-section="home" style="background-image: url(images/full_image_2.jpg);" data-stellar-background-ratio="0.5">
24+
<div class="gradient"></div>
25+
<div class="container">
26+
<div class="text-wrap">
27+
<div class="text-inner">
28+
<div class="row">
29+
<div class="col-md-8 col-md-offset-2">
30+
<h1 class="to-animate">Hey Its Me Anna</h1>
31+
<h4 class="to-animate"> Talk to me to have your work automated </h2>
32+
<h4 class="to-animate"> Your Personal Assistant on Google Chrome</h2>
33+
<h2 class="to-animate"> Please Grand me Microphone permissions.</h2>
34+
</div>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
<div class="slant"></div>
40+
</section>
41+
2542
</body>
2643
</html>

popup.html

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,30 @@
22
<html>
33

44
<head>
5+
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
6+
7+
<!-- Animate.css -->
8+
<link rel="stylesheet" href="elate/css/animate.css">
9+
<!-- Icomoon Icon Fonts-->
10+
<link rel="stylesheet" href="elate/css/icomoon.css">
11+
<!-- Simple Line Icons -->
12+
<link rel="stylesheet" href="elate/css/simple-line-icons.css">
13+
<!-- Magnific Popup -->
14+
<link rel="stylesheet" href="elate/css/magnific-popup.css">
15+
<!-- Bootstrap -->
16+
<link rel="stylesheet" href="elate/css/bootstrap.css">
17+
518
<link rel="stylesheet" type="text/css" href="css/on-off-switch.css" />
619
<style type="text/css">
720
body {
821
height: 150px;
9-
width: 120px;
10-
background: lightskyblue;
22+
width: 130px;
23+
background: lightblue;
1124

1225
}
1326

1427
body:hover {
15-
background-color: lightblue;
28+
background-color: lightskyblue;
1629
-webkit-transition: background-color 1000ms linear;
1730
-ms-transition: background-color 1000ms linear;
1831
transition: background-color 1000ms linear;
@@ -22,13 +35,17 @@
2235

2336
<body>
2437
<div style="text-align: center; display: block;">
38+
39+
40+
41+
2542
<h1>Anna</h1>
2643

27-
<h4>Say "Hey" followed by request</h4>
44+
<p>Say "Hey" followed by request</p>
2845

29-
<input type="checkbox" id="on-off-switch" name="switch1" class="mycheckbox">
46+
<input type="checkbox" id="on-off-switch" name="switch1" class="mycheckbox" style="position: absolute; left: 50%;">
3047

31-
<h3><a target="_blank" href="elate/index.html">Read More</a></h3>
48+
<i><a target="_blank" href="elate/index.html">Read More</a></i>
3249
</div>
3350

3451

0 commit comments

Comments
 (0)