diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-12-08 16:45:23 +0100 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-12-08 16:45:23 +0100 |
commit | 7b248e0b899c9ddfba286d55082e99348657d713 (patch) | |
tree | 68c60237d68ab17b7f70dac42891ef651bfe041e /view/css | |
parent | b8454cbd1df76bb96af6a6d65ff40f08f6919dc5 (diff) | |
parent | 18defb2984db8447a43de6bcffb3bdc5e596a8e0 (diff) | |
download | volse-hubzilla-7b248e0b899c9ddfba286d55082e99348657d713.tar.gz volse-hubzilla-7b248e0b899c9ddfba286d55082e99348657d713.tar.bz2 volse-hubzilla-7b248e0b899c9ddfba286d55082e99348657d713.zip |
Merge branch 'bootstrap'
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/default.css | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/view/css/default.css b/view/css/default.css index deb39fbe2..eb39b31d5 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -32,3 +32,70 @@ section { } +/* override some bootstrap settings */ +*, +*:before, +*:after { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +html { +font-size: 100%; +} + +.panel-body .form-control{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.profile-jot-text{ + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + + +h1, +.h1 { + font-size: 24px; +} + +h2, +.h2 { + font-size: 18px; +} + +h3, +.h3 { + font-size: 16px; +} + +h4, +.h4 { + font-size: 14px; +} + +h5, +.h5 { + font-size: 12px; +} + +h6, +.h6 { + font-size: 10px; +} +textarea { +line-height: initial; +} + +.radio, .checkbox{ +padding-left: 0px; +margin-left: 0px; +} + +.checkbox input[type="checkbox"], inline input[type="checkbox"]{ +float:none; +margin-left:0px; +} |