summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-09 20:53:11 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-09 20:53:11 -0500
commit2d4f72e613445ca68ba2e748a803ea9fd6b3a5bc (patch)
tree8a371ab362f0b827113c2802c72fdcef9d5a687a
parent72508ae97af9e046ff4304a13b30abc2a37942c8 (diff)
downloadaskbot-2d4f72e613445ca68ba2e748a803ea9fd6b3a5bc.tar.gz
askbot-2d4f72e613445ca68ba2e748a803ea9fd6b3a5bc.tar.bz2
askbot-2d4f72e613445ca68ba2e748a803ea9fd6b3a5bc.zip
fixed css a little
-rwxr-xr-xaskbot/skins/default/media/style/style.css26
-rw-r--r--askbot/skins/default/templates/base.html2
2 files changed, 8 insertions, 20 deletions
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index 8ae0d5b6..ef598cb5 100755
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -123,11 +123,9 @@ blockquote {
background-color: #F5F5F5;
}
-#askbot {
+#askbot-content {
width: 960px;
margin: auto;
- margin-bottom: 40px;
- padding: 0;
}
#roof {
@@ -140,14 +138,13 @@ blockquote {
width: 710px;
float: left;
position: relative;
- padding: 0 5px;
-
+ padding: 0 5px 10px 5px;
}
#CARight {
- width: 235px;
+ width: 230px;
float: right;
- padding-right: 5px;
+ padding: 0 5px 10px 5px;
}
#CAFull {
@@ -160,8 +157,7 @@ blockquote {
width: 100%;
clear: both;
border-top: 1px solid #000;
- padding-top: 6px;
- padding-bottom: 0px;
+ padding: 6px 0 0 0;
text-align: center;
background: #777;
}
@@ -1770,16 +1766,8 @@ ul.form-horizontal-rows li input {
margin-bottom: 0;
}
-#contrib-users, #related-tags, #tagSelector {
- padding-left: 7px;
-}
-
-#contrib-users h2 {
- padding: 0 0 5px 0;
-}
-
-#tagSelector h2{
- padding: 0px;
+#related-tags {
+ padding-left: 3px;
}
#hideIgnoredTagsControl {
diff --git a/askbot/skins/default/templates/base.html b/askbot/skins/default/templates/base.html
index ef5ed7e8..f2ee98af 100644
--- a/askbot/skins/default/templates/base.html
+++ b/askbot/skins/default/templates/base.html
@@ -46,7 +46,7 @@
{% include "blocks/system_messages.html" %}
{% include "custom_header.html" ignore missing %}
{% include "blocks/header.html" %}
- <div id="askbot">
+ <div id="askbot-content">
{% block body %}
{% endblock %}
</div>