feat: import code from CWS listing
This is an import from the code as uploaded to the Chrome Web Store in
version 0.1.4.
It also adds a .gitreview file to facilitate uploading the code for
review in Gerrit.
Change-Id: Ib15fdf3b9508b2cc9e49ac0414fcaea3e6441bbb
diff --git a/popup.css b/popup.css
new file mode 100644
index 0000000..620d6a8
--- /dev/null
+++ b/popup.css
@@ -0,0 +1,26 @@
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+ -webkit-user-select: none;
+}
+div#options {
+ border: solid 1px gray;
+ border-radius: 2px;
+ width: 150px;
+}
+div#options div.option {
+ text-align:center;
+ padding:8px;
+ background-color:#EEEEEE;
+ border-bottom: solid 1px gray;
+ cursor: pointer;
+}
+div#options div.option:hover {
+ background-color:#DDDDDD;
+}
+div#options div.option:active {
+ background-color:#CCCCCC;
+}
+div#options div.option:last-child {
+ border-bottom: none;
+}