action popup html and npm setup

This commit is contained in:
Kyle Spearrin 2016-08-31 22:47:37 -04:00
parent 870768ec6c
commit 54695c5673
4 changed files with 69 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.vs
node_modules

59
src/action_popup.html Normal file
View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<style>
* {
box-sizing: border-box;
}
body {
width: 300px;
margin: 0;
padding: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333333;
background-color: #fff;
}
a, a:visited, a:focus, a:active {
color: blue;
}
header {
height: 60px;
background-color: blue;
color: white;
}
header a {
color: white;
}
footer {
height: 60px;
background-color: #cccccc;
border-top: 1px solid #999999;
}
</style>
</head>
<body>
<section id="menu">
<header></header>
<content>
<ul>
<li><a href="#">My Vault</a></li>
<li><a href="#">Sites</a></li>
<li><a href="#">Matching Sites</a></li>
<li><a href="#">Settings</a></li>
</ul>
</content>
<footer>
Logout
</footer>
</section>
</body>
</html>

View File

@ -19,6 +19,7 @@
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "bitwarden"
"default_title": "bitwarden",
"default_popup": "action_popup.html"
}
}

7
src/package.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "bitwarden",
"version": "0.0.1",
"devDependencies": {
}
}