summaryrefslogtreecommitdiff
path: root/static/website
diff options
context:
space:
mode:
Diffstat (limited to 'static/website')
-rw-r--r--static/website/css/main.css5
-rw-r--r--static/website/images/logo.pngbin4166 -> 19335 bytes
-rw-r--r--static/website/images/originals/703487.pngbin0 -> 12217 bytes
-rw-r--r--static/website/templates/base.html2
-rw-r--r--static/website/templates/index.html17
5 files changed, 13 insertions, 11 deletions
diff --git a/static/website/css/main.css b/static/website/css/main.css
index 5587da7..f97843d 100644
--- a/static/website/css/main.css
+++ b/static/website/css/main.css
@@ -166,9 +166,10 @@ table .tutorial {
color:#a26dc8;
font-weight:bold;
}
-table .title a {
+table .question a{
font-size: 1.1em;
- color: #424242;
+ color: #2619bd;
+ font-weight:bold;
}
#similar-link {
display: none;
diff --git a/static/website/images/logo.png b/static/website/images/logo.png
index bdb36a5..ecd7e44 100644
--- a/static/website/images/logo.png
+++ b/static/website/images/logo.png
Binary files differ
diff --git a/static/website/images/originals/703487.png b/static/website/images/originals/703487.png
new file mode 100644
index 0000000..635449a
--- /dev/null
+++ b/static/website/images/originals/703487.png
Binary files differ
diff --git a/static/website/templates/base.html b/static/website/templates/base.html
index d876c70..726bd0a 100644
--- a/static/website/templates/base.html
+++ b/static/website/templates/base.html
@@ -32,7 +32,7 @@
</button>
<a class="navbar-brand" href="{% url 'website:home' %}">
<img id="logo" src="{% static 'website/images/logo.png' %}">
- Spoken Tutorial Forums
+ FOSSEE Forums
</a>
</div> <!-- /.navbar-header -->
diff --git a/static/website/templates/index.html b/static/website/templates/index.html
index bad1d6b..48f0227 100644
--- a/static/website/templates/index.html
+++ b/static/website/templates/index.html
@@ -41,7 +41,7 @@
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3 align="center"><strong>{% total_question_count %}</strong></h3>
- <h3 align="center">Questions</h3>
+ <h3 align="center" text-color="#7395d9" >Questions</h3>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3 align="center"><strong>{% total_answer_count %}</strong></h3>
@@ -59,7 +59,7 @@
</div>
<div class="panel-body">
<table class="table table-bordered table-hover">
- <th> FOSS </th>
+ <th> FOSS <span class="glyphicon glyphicon-link"></span></th>
<!--<th> Tutorial</th>-->
<th> Question <span class="glyphicon glyphicon-link"></span></th>
<th> Date</th>
@@ -69,17 +69,18 @@
{% for question in questions %}
<tr>
<td>
- <span href="#" class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}">
- {{ question.category|truncatechars:12 }}
- </span>
- <a class="pull-right" href="{% url 'website:filter' question.category %}?qid={{ question.id }}">
- <span class="glyphicon glyphicon-search"></span>
+ <span class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}">
+
+ <a class="pull-left" href="{% url 'website:filter' question.category %}?qid={{ question.id }}">
+ {{ question.category|truncatechars:12 }}
+
</a>
+ </span>
</td>
<td>
- <span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
+ <span class="question" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
<a href="{% url 'website:get_question' question.id %}{% prettify question.title %}">{{ question.title|truncatechars:40 }}</a>
</span>
</td>