diff options
author | Marko Pušnik <marko.pusnik@guru.si> | 2015-09-25 17:52:01 +0200 |
---|---|---|
committer | Marko Pušnik <marko.pusnik@guru.si> | 2015-09-25 17:52:01 +0200 |
commit | 2d2efca92351293ab179956efee78ef8f697afd6 (patch) | |
tree | 4664bb71aa60f942e9393e6e91d630065c2734a2 /css | |
parent | 23352d5f8a99d1457e64b76a958ca12dc789065d (diff) |
refactor menu + some forms to use bootstrap properly
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq.css | 51 |
1 files changed, 49 insertions, 2 deletions
diff --git a/css/codeq.css b/css/codeq.css index d293787..153e870 100644 --- a/css/codeq.css +++ b/css/codeq.css @@ -3,11 +3,58 @@ body { } -#title { - color: whitesmoke; +.title { + /*color: whitesmoke;*/ margin-left: 5px; } +/* form-signin */ +.form-signin { + max-width: 330px; + padding: 15px; + margin: 0 auto; +} +.form-signin .form-signin-heading, +.form-signin .checkbox { + margin-bottom: 10px; +} +.form-signin .checkbox { + font-weight: normal; +} +.form-signin .form-control { + position: relative; + height: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 10px; + font-size: 16px; +} +.form-signin .form-control:focus { + z-index: 2; +} +.form-signin input[type="text"] { + margin-bottom: -1px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.form-signin input[type="password"] { + margin-bottom: 10px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + + +/* screen language */ +#screen_language { + margin-top: 20px; + margin-bottom: 20px; +} +#screen_language .col-lg-4 { + cursor: pointer; +} + +/* screen problems code*/ .block { border-right: 1px solid #e5e5e5; |