diff options
author | prathamesh | 2015-04-07 15:33:23 +0530 |
---|---|---|
committer | prathamesh | 2015-04-07 15:33:23 +0530 |
commit | bcfaf246852cb90a519aab3d0cea21599fd1fd55 (patch) | |
tree | b5646fa2d68373310bbf55e75cf15bb8f3b2e333 /testapp/exam/static | |
parent | 1e26be51bc269fc3884d75ace33bfd6c4627547f (diff) | |
parent | b0551e3cb8dc59fb83ea622375c9e53003fcb489 (diff) | |
download | online_test-bcfaf246852cb90a519aab3d0cea21599fd1fd55.tar.gz online_test-bcfaf246852cb90a519aab3d0cea21599fd1fd55.tar.bz2 online_test-bcfaf246852cb90a519aab3d0cea21599fd1fd55.zip |
Question navigator implemented
Diffstat (limited to 'testapp/exam/static')
-rw-r--r-- | testapp/exam/static/exam/css/base.css | 70 |
1 files changed, 69 insertions, 1 deletions
diff --git a/testapp/exam/static/exam/css/base.css b/testapp/exam/static/exam/css/base.css index 051ba22..3570098 100644 --- a/testapp/exam/static/exam/css/base.css +++ b/testapp/exam/static/exam/css/base.css @@ -245,7 +245,30 @@ body { .container:after { clear: both; } - +.container-fluid { + position: relative; + min-width: 940px; + padding-left: 20px; + padding-right: 20px; + zoom: 1; +} +.container-fluid:before, .container-fluid:after { + display: table; + content: ""; + zoom: 1; +} +.container-fluid:after { + clear: both; +} +.container-fluid > .sidebar { + position: absolute; + top: 0; + left: 20px; + width: 220px; +} +.container-fluid > .content { + margin-left: 240px; +} a { color: #0069d6; text-decoration: none; @@ -2257,3 +2280,48 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { .tab-content > .active, .pill-content > .active { display: block; } +.pagination { + height: 36px; + margin: 18px 0; +} +.pagination ul { + float: left; + margin: 0; + border: 1px solid #ddd; + border: 1px solid rgba(0, 0, 0, 0.15); + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.pagination li { + display: inline; +} +.pagination a { + float: left; + padding: 0 14px; + line-height: 34px; + border-right: 1px solid; + border-right-color: #ddd; + border-right-color: rgba(0, 0, 0, 0.15); + *border-right-color: #ddd; + /* IE6-7 */ + + text-decoration: none; +} +.pagination a:hover, .pagination .active a { + background-color: #c7eefe; +} +/*custom classes*/ +.pagination .done a { + background-color: #00CC66; +} +.pagination .disabled a, .pagination .disabled a:hover { + background-color: transparent; + color: #bfbfbf; +} +.pagination .next a { + border: 0; +} |