diff options
author | Prabhu Ramachandran | 2011-11-25 02:24:34 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-25 02:24:34 +0530 |
commit | b4023e17d6f97e51ffde740c17d19630b5a9c2d1 (patch) | |
tree | 78b015a1d6e9ffa1d4fbf673b6ef21491833b564 /static/exam | |
parent | 3375839bfc531329adc45994659be382295038b6 (diff) | |
download | online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.tar.gz online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.tar.bz2 online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.zip |
ENH: First cut of CSS for pages.
This is largely taken from other sites and looks reasonable for now.
Also added links to the admin page from the
monitor/user_data/grade_user.
Diffstat (limited to 'static/exam')
-rw-r--r-- | static/exam/css/base.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/static/exam/css/base.css b/static/exam/css/base.css new file mode 100644 index 0000000..d51be30 --- /dev/null +++ b/static/exam/css/base.css @@ -0,0 +1,26 @@ +body { font-family: 'Georgia', serif; font-size: 17px; color: #000; background: #eee;} +h1, h2, h3, h4 { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; } +h1 { margin: 0 0 30px 0; font-size: 36px;} +h1 span { display: none; } +h2 { font-size: 24px; margin: 15px 0 5px 0; } +h3 { font-size: 19px; margin: 15px 0 5px 0; } +h4 { font-size: 15px; margin: 15px 0 5px 0; } + +.box { width: 700px; margin: 10px auto ; } +.page { margin: 2em auto; width: 35em; border: 5px solid #ccc; + padding: 0.8em; background: white; } +.entries { list-style: none; margin: 0; padding: 0; } +.entries li { margin: 0.8em 1.2em; } +.entries li h2 { margin-left: -1em; } +.add-entry { font-size: 0.9em; border-bottom: 1px solid #ccc; } +.add-entry dl { font-weight: bold; } +.metanav { text-align: right; font-size: 0.8em; padding: 0.3em; + margin-bottom: 1em; background: #fafafa; } +.flash { background: #CEE5F5; padding: 0.5em; + border: 1px solid #AACBE2; } +.error { background: #F0D6D6; padding: 0.5em; } +textarea, code, +pre { font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', + monospace!important; font-size: 14px; background: #eee; } +pre { padding: 0px 30px; margin: 15px -30px; line-height: 1.3; } + |