mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-10 15:07:35 +01:00
Improve CSS and overall design
This commit is contained in:
parent
57c43e7994
commit
fe53b6f3f3
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,10 @@ nav li a {
|
|||||||
border-left: 1px solid #444;
|
border-left: 1px solid #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nav ul li:last-child a {
|
||||||
|
border-right: 1px solid #444;
|
||||||
|
}
|
||||||
|
|
||||||
nav a:hover {
|
nav a:hover {
|
||||||
color: #eee;
|
color: #eee;
|
||||||
background: #444;
|
background: #444;
|
||||||
@ -61,8 +65,7 @@ li.dropdown {
|
|||||||
background: #333;
|
background: #333;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
right: 0;
|
right: 0;
|
||||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
|
||||||
// display: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown:hover ul {
|
.dropdown:hover ul {
|
||||||
|
@ -4,18 +4,17 @@
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.packagegrid li {
|
.packagegrid li {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: block;
|
display: block;
|
||||||
min-width: 246px;
|
min-width: 300px;
|
||||||
min-height: 164px;
|
min-height: 200px;
|
||||||
padding: 1;
|
padding: 1;
|
||||||
margin: 5px;
|
margin: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.packagegrid a {
|
.packagegrid a {
|
||||||
@ -24,18 +23,52 @@
|
|||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.packagegrid a:hover {
|
||||||
|
// box-shadow: 0px 0px 16px 6px rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
.packagegrid a span {
|
.packagegridscrub {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
top: 50%;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background: rgba(255, 255, 255, 0.3);
|
background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
|
||||||
color: black;
|
}
|
||||||
|
|
||||||
|
.packagegridinfo {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.packagegridinfo h3 {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.packagegridinfo p {
|
||||||
|
display: none;
|
||||||
|
color: #ddd;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.packagegrid a:hover .packagegridinfo {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.packagegrid a:hover p {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.packagegrid a:hover .packagegridscrub {
|
||||||
|
top: 0;
|
||||||
|
background: rgba(0,0,0,0.8);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
.screenshot_list, .screenshot_list li, .screenshot_list li a {
|
.screenshot_list, .screenshot_list li, .screenshot_list li a {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -6,16 +6,25 @@ html, body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav, main, #alerts {
|
.container, main, #alerts, footer {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
max-width: 960px;
|
max-width: 1024px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding: 7px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1, header p, header form {
|
||||||
|
padding: 0 10px;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
padding: 20px;
|
padding: 30px;
|
||||||
background: #258;
|
background: #258;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,16 +32,6 @@ header p {
|
|||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
|
|
||||||
footer {
|
|
||||||
width: 80%;
|
|
||||||
max-width: 860px;
|
|
||||||
margin: auto;
|
|
||||||
padding: 50px 0 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer a {
|
footer a {
|
||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
@ -12,64 +12,65 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
<ul class="nav navbar-nav navbar-left">
|
<div class="container">
|
||||||
<li><a href="/"><img src="/static/logo_dark.svg" /></a></li>
|
<ul class="nav navbar-nav navbar-left">
|
||||||
{% for item in current_menu.children recursive %}
|
<li><a href="/"><img src="/static/logo_dark.svg" /></a></li>
|
||||||
{% if item.visible %}
|
{% for item in current_menu.children recursive %}
|
||||||
<li{% if item.children %} class="dropdown"{% endif %}>
|
{% if item.visible %}
|
||||||
<a href="{{ item.url }}"
|
<li{% if item.children %} class="dropdown"{% endif %}>
|
||||||
|
<a href="{{ item.url }}"
|
||||||
|
{% if item.children %}
|
||||||
|
class="dropdown-toggle"
|
||||||
|
data-toggle="dropdown"
|
||||||
|
role="button"
|
||||||
|
aria-expanded="false"
|
||||||
|
{% endif %}>
|
||||||
|
{{ item.text }}
|
||||||
{% if item.children %}
|
{% if item.children %}
|
||||||
class="dropdown-toggle"
|
<span class="caret"></span>
|
||||||
data-toggle="dropdown"
|
{% endif %}
|
||||||
role="button"
|
</a>
|
||||||
aria-expanded="false"
|
|
||||||
{% endif %}>
|
|
||||||
{{ item.text }}
|
|
||||||
{% if item.children %}
|
{% if item.children %}
|
||||||
<span class="caret"></span>
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
{{ loop(item.children) }}
|
||||||
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
|
||||||
{% if item.children %}
|
|
||||||
<ul class="dropdown-menu" role="menu">
|
|
||||||
{{ loop(item.children) }}
|
|
||||||
</ul>
|
|
||||||
{% endif %}
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
{% if current_user.is_authenticated %}
|
|
||||||
<li><a href="{{ url_for('notifications_page') }}">({{ current_user.notifications | length }})</a></li>
|
|
||||||
<li><a href="{{ url_for('create_edit_package_page') }}">+</a></li>
|
|
||||||
<li class="dropdown">
|
|
||||||
<a href="{{ url_for('user_profile_page', username=current_user.username) }}"
|
|
||||||
class="dropdown-toggle"
|
|
||||||
data-toggle="dropdown"
|
|
||||||
role="button"
|
|
||||||
aria-expanded="false">{{ current_user.display_name }}
|
|
||||||
<span class="caret"></span></a>
|
|
||||||
|
|
||||||
<ul class="dropdown-menu" role="menu">
|
|
||||||
<li>
|
|
||||||
<a href="{{ url_for('user_profile_page', username=current_user.username) }}">Profile</a>
|
|
||||||
</li>
|
</li>
|
||||||
{% if current_user.canAccessTodoList() %}
|
{% endif %}
|
||||||
<li><a href="{{ url_for('todo_page') }}">Work Queue</a></li>
|
{% endfor %}
|
||||||
{% endif %}
|
</ul>
|
||||||
{% if current_user.rank == current_user.rank.ADMIN %}
|
<ul class="nav navbar-nav navbar-right">
|
||||||
<li><a href="{{ url_for('admin_page') }}">Admin</a></li>
|
{% if current_user.is_authenticated %}
|
||||||
{% endif %}
|
<li><a href="{{ url_for('notifications_page') }}">({{ current_user.notifications | length }})</a></li>
|
||||||
<li><a href="{{ url_for('user.logout') }}">Sign out</a></li>
|
<li><a href="{{ url_for('create_edit_package_page') }}">+</a></li>
|
||||||
</ul>
|
<li class="dropdown">
|
||||||
</li>
|
<a href="{{ url_for('user_profile_page', username=current_user.username) }}"
|
||||||
{% else %}
|
class="dropdown-toggle"
|
||||||
<li><a href="{{ url_for('user.login') }}">Sign in</a></li>
|
data-toggle="dropdown"
|
||||||
{% endif %}
|
role="button"
|
||||||
</ul>
|
aria-expanded="false">{{ current_user.display_name }}
|
||||||
<div style="clear:both;"></div>
|
<span class="caret"></span></a>
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li>
|
||||||
|
<a href="{{ url_for('user_profile_page', username=current_user.username) }}">Profile</a>
|
||||||
|
</li>
|
||||||
|
{% if current_user.canAccessTodoList() %}
|
||||||
|
<li><a href="{{ url_for('todo_page') }}">Work Queue</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% if current_user.rank == current_user.rank.ADMIN %}
|
||||||
|
<li><a href="{{ url_for('admin_page') }}">Admin</a></li>
|
||||||
|
{% endif %}
|
||||||
|
<li><a href="{{ url_for('user.logout') }}">Sign out</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{ url_for('user.login') }}">Sign in</a></li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
<div style="clear:both;"></div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
{% block flash_messages %}
|
{% block flash_messages %}
|
||||||
{%- with messages = get_flashed_messages(with_categories=true) -%}
|
{%- with messages = get_flashed_messages(with_categories=true) -%}
|
||||||
|
@ -4,8 +4,9 @@
|
|||||||
Dashboard
|
Dashboard
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block container %}
|
||||||
<header>
|
<header>
|
||||||
|
<div class="container">
|
||||||
<h1>Content DB</h1>
|
<h1>Content DB</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -19,16 +20,26 @@ Dashboard
|
|||||||
<input type="text" name="q" value="{{ query or ''}}" />
|
<input type="text" name="q" value="{{ query or ''}}" />
|
||||||
<input type="submit" value="Search" />
|
<input type="submit" value="Search" />
|
||||||
</form>
|
</form>
|
||||||
</header>
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
<ul class="packagegrid">
|
<ul class="packagegrid">
|
||||||
{% for p in packages %}
|
{% for p in packages %}
|
||||||
<li><a href="{{ p.getDetailsURL() }}"
|
<li><a href="{{ p.getDetailsURL() }}"
|
||||||
style="background-image: url({{ p.getMainScreenshotURL() or '/static/placeholder.png' }});">
|
style="background-image: url({{ p.getMainScreenshotURL() or '/static/placeholder.png' }});">
|
||||||
<span>{{ p.title }} by {{ p.author.display_name }}</span>
|
<div class="packagegridscrub"></div>
|
||||||
|
<div class="packagegridinfo">
|
||||||
|
<h3>{{ p.title }} by {{ p.author.display_name }}</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
{{ p.shortDesc }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</a></li>
|
</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><i>No packages available</i></ul>
|
<li><i>No packages available</i></ul>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
</main>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user