diff options
author | Jay Parikh | 2012-06-25 17:28:28 +0530 |
---|---|---|
committer | Jay Parikh | 2012-06-25 17:28:28 +0530 |
commit | 1712353f3646e24de7ec359bdbb9c9a3012b1597 (patch) | |
tree | 25aaf810ca401d1f986a31fc3552ed295768f2f3 /testapp/static/exam/css | |
parent | 5743fd26a6c844e45a306f9ad5aa589a95c34afe (diff) | |
download | online_test-1712353f3646e24de7ec359bdbb9c9a3012b1597.tar.gz online_test-1712353f3646e24de7ec359bdbb9c9a3012b1597.tar.bz2 online_test-1712353f3646e24de7ec359bdbb9c9a3012b1597.zip |
implemented tabs & line numbers in textarea
Diffstat (limited to 'testapp/static/exam/css')
-rw-r--r-- | testapp/static/exam/css/question.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testapp/static/exam/css/question.css b/testapp/static/exam/css/question.css index a57b6dd..4bf5913 100644 --- a/testapp/static/exam/css/question.css +++ b/testapp/static/exam/css/question.css @@ -23,3 +23,20 @@ padding: 35px 20px 10px; margin: -20px -20px 20px; } +#codeTextarea{ + + } + .textAreaWithLines{ + font-family:courier; + border:1px solid #eee; + + } + .textAreaWithLines textarea,.textAreaWithLines div{ + border:0px; + line-height:120%; + font-size:12px; + } + .lineObj{ + color: grey; + } + |