summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron <byroncorrales@gmail.com>2011-11-06 23:57:41 -0600
committerByron <byroncorrales@gmail.com>2011-11-06 23:57:41 -0600
commit603ee601994bdc2202a772c81d77d82316a80408 (patch)
tree9ca5f9635d85a3a8f492f2a41173c168c1974bca
parent28710b54699b52867df147e4f5f63464bf1b371e (diff)
downloadaskbot-603ee601994bdc2202a772c81d77d82316a80408.tar.gz
askbot-603ee601994bdc2202a772c81d77d82316a80408.tar.bz2
askbot-603ee601994bdc2202a772c81d77d82316a80408.zip
flat pages style
-rw-r--r--askbot/skins/default/media/style/lib_style.less2
-rw-r--r--askbot/skins/default/media/style/style.css44
-rw-r--r--askbot/skins/default/templates/faq.html1
-rw-r--r--askbot/skins/default/templates/feedback.html4
-rw-r--r--askbot/skins/default/templates/privacy.html4
5 files changed, 48 insertions, 7 deletions
diff --git a/askbot/skins/default/media/style/lib_style.less b/askbot/skins/default/media/style/lib_style.less
index e6d554b1..4f2bad79 100644
--- a/askbot/skins/default/media/style/lib_style.less
+++ b/askbot/skins/default/media/style/lib_style.less
@@ -8,7 +8,7 @@
@button-label:#4a757f;
@section-title:#7ea9b3;
@info-text:#707070;
-@info-text-dark:#6b6b6b;
+@info-text-dark:#525252;
/* Variables for fonts*/
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index 6ecea8de..dbd45398 100644
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -2013,20 +2013,60 @@ span.delete-icon:hover {
.meta,
.users-page,
{
- font-size:14px;
- line-height:1.4;
+ font-size:13px;
+ line-height:1.3;
color:@info-text-dark;
p{
font-size:13px;
color:@info-text;
line-height:1.3;
font-family:@body-font;
+ color:@info-text-dark;
+ margin-bottom:12px;
}
h2{
color:@info-text-dark;
padding-left:0px;
font-size:16px;
}
+ #id_email,#id_name{
+ border:#cce6ec 3px solid;
+ height:25px;
+ padding-left:5px;
+ width:395px;
+ font-size:14px;
+ }
+ textarea{
+ border:#cce6ec 3px solid;
+ padding-left:5px;
+ padding-top:5px;
+ width:395px;
+ font-size:14px;
+ }
+ input.submit{
+ background:url(../images/small-button-blue.png) repeat-x top;
+ border:0;
+ color:@button-label;
+ font-weight:bold;
+ font-size:12px;
+ height:24px;
+ margin-top:-2px;
+ cursor:pointer;
+ .rounded-corners(4px);
+ .text-shadow(0px,1px,0px,#E6F6FA);
+ .box-shadow(1px, 1px, 2px, #808080);
+ }
+ input.submit:hover{
+ background:url(../images/small-button-blue.png) repeat-x bottom;
+ text-decoration:none;
+ }
+ .cancel{
+ background:url(../images/small-button-cancel.png) repeat-x top !important;
+ color:#525252 !important;
+ }
+ .cancel:hover{
+ background:url(../images/small-button-cancel.png) repeat-x bottom !important;
+ }
}
#email-input-fs,#local_login_buttons,#password-fs,#openid-fs{
diff --git a/askbot/skins/default/templates/faq.html b/askbot/skins/default/templates/faq.html
index be25d2ee..51873a06 100644
--- a/askbot/skins/default/templates/faq.html
+++ b/askbot/skins/default/templates/faq.html
@@ -3,6 +3,7 @@
{% block title %}{% spaceless %}{% trans %}FAQ{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
<div class="content">
+<h1 class="section-title">FAQ</h1>
{{forum_faq}}
</div>
{% endblock %}
diff --git a/askbot/skins/default/templates/feedback.html b/askbot/skins/default/templates/feedback.html
index d5e8b3a7..60ea2fca 100644
--- a/askbot/skins/default/templates/feedback.html
+++ b/askbot/skins/default/templates/feedback.html
@@ -2,7 +2,7 @@
<!-- template feedback.html -->
{% block title %}{% spaceless %}{% trans %}Feedback{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
-<h1>{% trans %}Give us your feedback!{% endtrans %}</h1>
+<h1 class="section-title">{% trans %}Give us your feedback!{% endtrans %}</h1>
<form method="post" action="{% url feedback %}" accept-charset="utf-8">{% csrf_token %}
{% if user.is_authenticated() %}
<p class="message">
@@ -39,7 +39,7 @@
{{form.next}}
<div class="submit-row">
<input type="submit" class="submit" value="{% trans %}Send Feedback{% endtrans %}"/>&nbsp;
- <input type="submit" class="submit" name="cancel" value="{% trans %}Cancel{% endtrans %}"/>
+ <input type="submit" class="submit cancel" name="cancel" value="{% trans %}Cancel{% endtrans %}"/>
</div>
</form>
{% endblock %}
diff --git a/askbot/skins/default/templates/privacy.html b/askbot/skins/default/templates/privacy.html
index 61f4d945..e9b6f58b 100644
--- a/askbot/skins/default/templates/privacy.html
+++ b/askbot/skins/default/templates/privacy.html
@@ -1,8 +1,8 @@
-{% extends "one_column_body.html" %}
+{% extends "two_column_body.html" %}
<!-- privacy.html -->
{% block title %}{% spaceless %}{% trans %}Privacy policy{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
-<h1>{% trans %}Privacy policy{% endtrans %}</h1>
+<h1 class="section-title">{% trans %}Privacy policy{% endtrans %}</h1>
{{settings.FORUM_PRIVACY}}
{% endblock %}
<!-- end privacy.html -->