Improve package grid style

This commit is contained in:
rubenwardy 2018-12-23 16:28:15 +00:00
parent 366ed9913e
commit a7fcce4448
4 changed files with 13 additions and 4 deletions

View File

@ -46,6 +46,12 @@ li.d-flex {
font-weight: bold;
}
.packagegridinfo small {
color: #ddd;
font-size: 75%;
font-weight: bold;
}
.packagegridinfo p {
display: none;
color: #ddd;

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}title{% endblock %} - {{ config.USER_APP_NAME }}</title>
<link rel="stylesheet" type="text/css" href="/static/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/static/custom.css">
<link rel="stylesheet" type="text/css" href="/static/custom.css?v=2">
{% block headextra %}{% endblock %}
</head>

View File

@ -6,8 +6,8 @@
<h3>
{{ package.title }}
{% if show_author %}
by {{ package.author.display_name }}
{% if show_author %}<br />
<small>{{ package.author.display_name }}</small>
{% endif %}
</h3>

View File

@ -13,7 +13,10 @@
background-repeat: no-repeat;
background-position: center;">
<div class="container">
<h1 class="display-3">{{ package.title }} by {{ package.author.display_name }}</h1>
<h1 class="display-3">
{{ package.title }}
<small>by {{ package.author.display_name }}</small>
</h1>
<p class="lead">
{{ package.shortDesc }}