diff options
Diffstat (limited to 'web/static')
-rw-r--r-- | web/static/css/base.ccss (renamed from web/static/css/base.less) | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/web/static/css/base.less b/web/static/css/base.ccss index 714d5ab..e515323 100644 --- a/web/static/css/base.less +++ b/web/static/css/base.ccss @@ -1,37 +1,31 @@ -* { +*: box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -} -body { +body: margin: 0; padding: 0; height: 100%; background: #000; color: #ddd; font-family: sans-serif; -} -a { +a: text-decoration: none; color: #dde; -} -form { - input { +form: + input: background: #fff; border: 1px solid #cdd; padding: 5px 10px; } -} -.clear { +.clear: clear: both; -} -#wrapper { +#wrapper: width: 900px; margin: 50px auto; background: #111; -} |