summaryrefslogtreecommitdiff
path: root/src/leap/bitmask_js/app/css
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-08-26 21:09:53 -0700
committerKali Kaneko (leap communications) <kali@leap.se>2016-09-01 01:41:24 -0400
commit62f069ef0af1444089a4d477f05ac7279897fa32 (patch)
treebde623ee4ec8de240ed5504d3cdbc01c5d6755fc /src/leap/bitmask_js/app/css
parent50a258d45e851a865801da9d888037b5869a3489 (diff)
[feat] added initial bitmask_js (WIP)
Diffstat (limited to 'src/leap/bitmask_js/app/css')
-rw-r--r--src/leap/bitmask_js/app/css/bootstrap.less5
-rw-r--r--src/leap/bitmask_js/app/css/common.css59
2 files changed, 64 insertions, 0 deletions
diff --git a/src/leap/bitmask_js/app/css/bootstrap.less b/src/leap/bitmask_js/app/css/bootstrap.less
new file mode 100644
index 0000000..3b77228
--- /dev/null
+++ b/src/leap/bitmask_js/app/css/bootstrap.less
@@ -0,0 +1,5 @@
+//
+// require npm modules 'bootstrap'
+//
+@import "~bootstrap/less/bootstrap";
+
diff --git a/src/leap/bitmask_js/app/css/common.css b/src/leap/bitmask_js/app/css/common.css
new file mode 100644
index 0000000..4b48010
--- /dev/null
+++ b/src/leap/bitmask_js/app/css/common.css
@@ -0,0 +1,59 @@
+body {
+ padding: 0;
+ margin: 0;
+}
+
+.debug-panel {
+ background-color: rgba(0,0,0,0.1);
+ position: absolute;
+ bottom: 0;
+ left: 50%;
+ z-index: 1000;
+ padding: 20px;
+}
+.debug-panel a {
+ cursor: pointer;
+ margin: 10px;
+}
+
+
+.area-light {
+ background-color: #f7f7f7;
+}
+.area-dark {
+ background-color: #e7e7e7;
+}
+.area-clear {
+ background-color: #fff;
+}
+
+/*
+ * Greeter
+ */
+.greeter {
+ border-color: #555;
+ border-width: 8px;
+}
+
+/*
+ * bootstrap
+ */
+
+.help-block {
+ margin: 2px 0 0 0;
+ font-size: small;
+ opacity: 0.7;
+}
+.btn.btn-inverse {
+ color: white;
+ background-color: #333;
+}
+.btn.btn-flat {
+ border-color: transparent;
+ background-color: transparent;
+}
+
+/*.btn.btn-default {
+ background-color: #eee !important;
+}
+*/ \ No newline at end of file