Commit 0bfb9e94d60f6a924a2a1993895ef0c541dd4f20

Authored by Felipe Henrique de Almeida Bormann
1 parent 39ef2414

fixed my subjects title

amadeus/static/css/base/amadeus.css
... ... @@ -23,6 +23,14 @@
23 23 margin-left: 20%;
24 24 width: 70%;
25 25 }
  26 +
  27 +.my-subjects-title{
  28 + text-align: center;
  29 + font-family: Roboto;
  30 + font-size: 18px;
  31 + color: #26A69A;
  32 +}
  33 +
26 34 /* initial page ends */
27 35 /* sidebar menu */
28 36  
... ...
subjects/templates/subjects/initial.html
1 1 {% extends "categories/home.html" %}
2 2  
3   -{% load static pagination %}
  3 +{% load static pagination i18n %}
4 4  
5 5 {% block content %}
6 6  
... ... @@ -13,8 +13,9 @@
13 13 </ul>
14 14 </div>
15 15 </div>
16   -
  16 +
17 17 <div class="col-md-12 cards-content">
  18 + <h2 class="text-center my-subjects-title">{% trans "Meus Assuntos" %}</h2>
18 19 <div class="panel-group" id="subject-accordion" role="tablist" aria-multiselectable="true">
19 20 {% for subject in subjects %}
20 21 {% include "subjects/subject_card.html" with accordion_id="subject-accordion" %}
... ...