Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-11-12 20:49:14 +0400
committerJo-Philipp Wich <jow@openwrt.org>2012-11-12 20:49:14 +0400
commitecdf523b074ff80c18183c4b94ca9f194739e1ab (patch)
tree3d203ad8db744ec3317ee13330275d5abed08c00 /themes
parent71b595d4f3c9e7108a8041b3400aff29cc779fb4 (diff)
bootstrap: add padding to body and header areas (#505)
Diffstat (limited to 'themes')
-rw-r--r--themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css
index 286ed25e77..bb732485e7 100644
--- a/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css
+++ b/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css
@@ -13,11 +13,16 @@
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
-html, body {
+html {
margin: 0;
padding: 0;
}
+body {
+ margin: 0;
+ padding: 5px;
+}
+
h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, code, del, em, img, q, s,
small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset,
form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
@@ -789,6 +794,7 @@ header .fill {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ padding: 0 5px;
}
header div > ul, .nav {