Commit c6f7fd2c8f5218f57756e92975c6f0cd6a4e602a

Authored by Felipe Henrique de Almeida Bormann
1 parent a491b352

fixed titles on initial page

amadeus/static/css/base/amadeus.css
... ... @@ -25,7 +25,7 @@
25 25 }
26 26  
27 27 .my-subjects-title{
28   - text-align: center;
  28 +
29 29 font-family: Roboto;
30 30 font-size: 18px;
31 31 color: #26A69A;
... ...
subjects/templates/subjects/initial.html
... ... @@ -3,9 +3,9 @@
3 3 {% load static pagination i18n %}
4 4  
5 5 {% block content %}
6   -
  6 + <h2 class=" my-subjects-title"><b><i>{% trans "Palavras-chave mais populares" %}</i></b></h2>
7 7 <div id="" class="col-md-12">
8   - <h2 class="text-center my-subjects-title">{% trans "Palavras-chave mais populares" %}</h2>
  8 +
9 9 <div class="users-cloud div-users-cloud">
10 10 <ul class=" users-cloud">
11 11 {% for marker in markers %}
... ... @@ -16,7 +16,7 @@
16 16 </div>
17 17  
18 18 <div class="col-md-12 cards-content">
19   - <h2 class="text-center my-subjects-title">{% trans "Meus Assuntos" %}</h2>
  19 + <h2 class=" my-subjects-title"><b><i>{% trans "Meus Assuntos" %}</i></b></h2>
20 20 <div class="panel-group" id="subject-accordion" role="tablist" aria-multiselectable="true">
21 21 {% for subject in subjects %}
22 22 {% include "subjects/subject_card.html" with accordion_id="subject-accordion" %}
... ...