From 2d2efca92351293ab179956efee78ef8f697afd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Pu=C5=A1nik?= Date: Fri, 25 Sep 2015 17:52:01 +0200 Subject: refactor menu + some forms to use bootstrap properly --- css/codeq.css | 51 +++- index.html | 68 ++--- js/codeq/prolog.js | 712 ++++++++++++++++++++++++++--------------------------- js/codeq/python.js | 658 ++++++++++++++++++++++++------------------------- res/eve.png | Bin 0 -> 147225 bytes res/prolog.png | Bin 0 -> 46745 bytes res/python.png | Bin 0 -> 26237 bytes 7 files changed, 771 insertions(+), 718 deletions(-) create mode 100644 res/eve.png create mode 100644 res/prolog.png create mode 100644 res/python.png 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; diff --git a/index.html b/index.html index 1dfe0e0..3613ad9 100644 --- a/index.html +++ b/index.html @@ -22,6 +22,7 @@