diff --git a/src/colab/static/css/screen.css b/src/colab/static/css/screen.css index 81ab4b0..f998ff7 100644 --- a/src/colab/static/css/screen.css +++ b/src/colab/static/css/screen.css @@ -99,3 +99,39 @@ /* Overwritting max-width for better web responsive */ max-width: 95% !important; } + +/* Forms */ +.required label:before { + color: #f00; + content: "* "; +} + +input[type="text"], +input[type="password"] { + width: 300px; + padding: 3px; +} +/* End Forms */ + +/* Changing Bootstrap*/ +fieldset>legend { + display:block; + font-weight:bold; + font-size:1.2em; + margin-top:-0.2em; + margin-bottom:0em; + border: none; +} + +.well { + background:#e5eCf9 !important; +} + +.col-lg-6 .well{ + max-width:570px; +} + +.col-lg-3 .well{ + max-width:285px; +} +/* End changes */ diff --git a/src/planet/templates/feedzilla/base.html b/src/planet/templates/feedzilla/base.html index 33d7e5d..a3adc5e 100644 --- a/src/planet/templates/feedzilla/base.html +++ b/src/planet/templates/feedzilla/base.html @@ -6,25 +6,21 @@

{% trans 'Planet' %}


-
- {% block feedzilla_content %}{% endblock %} -
- -
-
- {% trans "Submit a blog" %} -
-
-
-
-

{% trans 'Tags' %}

- {% feedzilla_tag_cloud %} -
-
-
-

{% trans 'Source Blogs' %}

- {% feedzilla_donor_list %} + {% block feedzilla_content %}{% endblock %} + +
+ +
+

{% trans 'Tags' %}

+ {% feedzilla_tag_cloud %} +
+
+

{% trans 'Source Blogs' %}

+ {% feedzilla_donor_list %} +
{% endblock %} diff --git a/src/planet/templates/feedzilla/submit_blog.html b/src/planet/templates/feedzilla/submit_blog.html index 636d5bf..96ba98a 100644 --- a/src/planet/templates/feedzilla/submit_blog.html +++ b/src/planet/templates/feedzilla/submit_blog.html @@ -2,22 +2,31 @@ {% load i18n %} {% block feedzilla_content %} -

{% trans "Submit a blog" %}

-{% if success %} -

{% trans "Thank you. Your application has been accepted and will be reviewed by admin in the near time." %}

-{% else %} -

-
+
+

{% trans "Submit a blog" %}

+ + {% if success %} + +

{% trans "Thank you. Your application has been accepted and will be reviewed by admin in the near time." %}

+ {% else %} +

+ {% csrf_token %} -
- {% trans "Blog Information" %} -


-


-


-



{% trans "You can specify what exactly feed you want submit" %}

-

+
+ {% trans "Blog Information" %} +


+


+


+



{% trans "You can specify what exactly feed you want submit" %}

+

- -{% endif %} + + + {% endif %} + +
+ +
+ {% endblock %} -- libgit2 0.21.2