From 4fcc479ed7656f675491c3563eff6c966118a30e Mon Sep 17 00:00:00 2001 From: raylu Date: Sat, 19 Oct 2013 18:30:23 -0700 Subject: switch to cleancss --- web/static/css/base.ccss | 31 +++++++++++++++++++++++++++++++ web/static/css/base.less | 37 ------------------------------------- 2 files changed, 31 insertions(+), 37 deletions(-) create mode 100644 web/static/css/base.ccss delete mode 100644 web/static/css/base.less (limited to 'web/static/css') diff --git a/web/static/css/base.ccss b/web/static/css/base.ccss new file mode 100644 index 0000000..e515323 --- /dev/null +++ b/web/static/css/base.ccss @@ -0,0 +1,31 @@ +*: + 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; diff --git a/web/static/css/base.less b/web/static/css/base.less deleted file mode 100644 index 714d5ab..0000000 --- a/web/static/css/base.less +++ /dev/null @@ -1,37 +0,0 @@ -* { - 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; -} -- cgit v1.2.3