apps: Style the title for disabled icons section

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-05-07 16:04:59 -07:00
parent 4aae99d695
commit dba0e40020
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 18 additions and 1 deletions

View File

@ -56,7 +56,7 @@
{% if show_secondary %}
<div class="container card-container">
<div class="card-title text-center">{% trans "Disabled" %}</div>
<div class="card-section-title text-center">{% trans "Disabled" %}</div>
<div class="row">
<div class="card-list card-list-secondary">
{% for item in submenu.sorted_items %}

View File

@ -308,6 +308,23 @@ footer {
filter: grayscale(1) opacity(1);
}
.card-section-title {
display: flex;
font-style: italic;
font-weight: 800;
font-size: 20px;
padding: 0 4.6rem;
margin: 2rem 0;
}
.card-section-title:before, .card-section-title:after {
color: white;
content: '';
flex: 1;
border-bottom: #d4d4d4 solid 2px;
margin: auto 1.8rem;
}
a.menu_link {
text-decoration: none;
}