summaryrefslogtreecommitdiffstats
path: root/web/static
diff options
context:
space:
mode:
authorraylu <raylu@gridium.com>2013-05-03 03:41:50 -0700
committerraylu <raylu@gridium.com>2013-10-19 18:21:46 -0700
commit224f66a77aa3afa5e06daec656ae97f6e31e0592 (patch)
treef36843c32143c401ec1c6dccd502cddcbba6017c /web/static
downloadykill-224f66a77aa3afa5e06daec656ae97f6e31e0592.tar.xz
start over
Diffstat (limited to 'web/static')
-rw-r--r--web/static/css/base.less37
1 files changed, 37 insertions, 0 deletions
diff --git a/web/static/css/base.less b/web/static/css/base.less
new file mode 100644
index 0000000..714d5ab
--- /dev/null
+++ b/web/static/css/base.less
@@ -0,0 +1,37 @@
+* {
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ height: 100%;
+ background: #000;
+ color: #ddd;
+ font-family: sans-serif;
+}
+
+a {
+ text-decoration: none;
+ color: #dde;
+}
+
+form {
+ input {
+ background: #fff;
+ border: 1px solid #cdd;
+ padding: 5px 10px;
+ }
+}
+
+.clear {
+ clear: both;
+}
+
+#wrapper {
+ width: 900px;
+ margin: 50px auto;
+ background: #111;
+}