Add category and tag pages

This commit is contained in:
Guillaume Bertholon 2020-11-22 19:01:21 +01:00
parent be99a76829
commit 68dea4002c
16 changed files with 161 additions and 44 deletions

View file

@ -248,9 +248,13 @@ iframe {
}
img {
max-width: 50%;
width: 50%;
border: solid $indexbar_bg_color_1;
border-radius: 10px;
@media (max-width: 500px) {
width: 75%;
}
}
#details {

View file

@ -396,9 +396,12 @@ iframe {
#game_infos {
flex-direction: column; } }
#game_infos img {
max-width: 50%;
width: 50%;
border: solid rgba(107, 184, 196, 0.75);
border-radius: 10px; }
@media (max-width: 500px) {
#game_infos img {
width: 75%; } }
#game_infos #details {
flex: 1 0 auto;
text-align: left;

View file

@ -1,5 +1,3 @@
{% load static %}
<!DOCTYPE html>
<html lang="fr">
<head>

View file

@ -4,5 +4,5 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GestioJeux</title>
<link type="text/css" rel="stylesheet" href="{% static "css/style.css" %}" />
<link rel="shortcut icon" type="image/png" href="/static/img/favicon.png"/>
<link rel="shortcut icon" type="image/png" href="{% static "img/favicon.png" %}"/>
<script src="{% static "js/jquery-3.4.1.min.js" %}"></script>