diff options
author | Jayaram Pai | 2013-12-08 20:43:40 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-08 20:43:40 +0530 |
commit | b596364cf3f871887cce519291b684341cc5c014 (patch) | |
tree | 48dcb9366be1f1110f2fda27afa6485b6c3bdb64 /static/website/css/main.css | |
parent | 41e5496301cd02bff34dad877d20b2dd30349866 (diff) | |
download | spoken-tutorial-forums-b596364cf3f871887cce519291b684341cc5c014.tar.gz spoken-tutorial-forums-b596364cf3f871887cce519291b684341cc5c014.tar.bz2 spoken-tutorial-forums-b596364cf3f871887cce519291b684341cc5c014.zip |
added nicEdit / on-the-fly question edit
Diffstat (limited to 'static/website/css/main.css')
-rw-r--r-- | static/website/css/main.css | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/static/website/css/main.css b/static/website/css/main.css index cd42d84..07d38a6 100644 --- a/static/website/css/main.css +++ b/static/website/css/main.css @@ -1,3 +1,6 @@ +.container { + max-width: 970px; +} #header-wrapper { } @@ -13,14 +16,23 @@ #content{ } #content .question { + position: relative; padding: 15px 0 15px 0; border-bottom: 1px solid #f5f5f5; } +#content .editable { + padding: 15px 5px 15px 5px; + background: lightyellow; +} #content .question .title a{ padding: 0 0 7px 0; font-size: 1.3em; color: #424242; } +#content .question .body { + padding: 10px; + background: #fafafa; +} #content .question .category a, #content .question .tutorial a, #content .question .minute_range a, @@ -48,10 +60,31 @@ background: #f5f5f5; color: #424242; } +#content .question .user { + position: absolute; + right: 0px; + bottom: 0px; + padding: 2px 7px; + background: #f5f5f5; +} +#questionNicPanel { + display: none; +} +.modify { + display: none; + position: absolute; + top: 0; + right:0; +} +.modify a.edit { +} +.modify a.save { + display: none; +} #content .reply { position: relative; border-bottom: 1px solid #f5f5f5; - padding: 25px 0; + padding: 20px 0; } #content .reply .body { } |