mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
Improve package grid style
This commit is contained in:
parent
366ed9913e
commit
a7fcce4448
@ -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;
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user