forked from DGNum/gestiojeux
Add category and tag pages
This commit is contained in:
parent
be99a76829
commit
68dea4002c
16 changed files with 161 additions and 44 deletions
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
{% load static %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue