Skip to content

Commit

Permalink
Add Video Game Section and Tetra Master article
Browse files Browse the repository at this point in the history
  • Loading branch information
xvw committed Sep 7, 2023
1 parent 6d66404 commit 80601ea
Show file tree
Hide file tree
Showing 22 changed files with 1,549 additions and 3 deletions.
21 changes: 21 additions & 0 deletions content/games.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Jeux vidéo
description: Articles relatifs aux jeux-vidéos, conception, développement et mécaniques
synopsis:
Même si, depuis 2007, je joue largement moins aux jeux vidéo qu'à l'aube de mon
adolescence, je maintiens un intérêt tout particulier pour leur conception et
leur analyse. Ces expériences de conception se matérialisant souvent par des
embryons de projets destinés à rester à l'état de fœtus, j'ai décidé _d'essayer_
de leur donner un peu plus de consistance en les transformant en _notes ou articles_.
tags:
- jeu-vidéo
- game-design
- programmation
toc: false
indexes:
- name: Mécaniques de jeux
synopsis: Articles décrivant (ou critiquant) des mécaniques de jeux.
links:
- name: L'infernal Tetra Master dans Final Fantasy 9
href: /pages/tetra-master.html
---
2 changes: 2 additions & 0 deletions content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ indexes:
links:
- name: Bribes & Encodages
href: /tricks.html
- name: Jeux vidéo
href: /games.html
- name: Catalogue de dApps
href: /dapps.html
- name: Adresses
Expand Down
1,463 changes: 1,463 additions & 0 deletions content/pages/tetra-master.md

Large diffs are not rendered by default.

63 changes: 63 additions & 0 deletions css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ main p a {
border-bottom: 1px dotted var(--regular-link-color);
}

a strong {
font-weight: 700;
}

main .table-of-contents a {
color: var(--regular-link-color);
text-decoration: unerline;
Expand Down Expand Up @@ -239,6 +243,56 @@ article blockquote {
font-weight: 100;
}

article table {
margin: 64px auto;
border-collapse: collapse;
}

article th {
background-color: var(--layout-bg-rev-color);
}

article th,
article td {
border: 1px solid var(--layout-font-color);
padding: 0 12px;
}

article td:empty {
visibility: hidden;
border: 0 solid transparent;
}

article details {
padding: 0 8px;
cursor: pointer;
margin: 48px 0;
position: relative;
}

article details summary {
border-bottom: 4px solid var(--layout-bg-rev-color);
background-color: var(--layout-bg-color);
padding: 8px;
color: var(--regular-link-color);
font-family: var(--sans-serif-font);
position: sticky;
top: 0;
user-select: none;
}

article summary::before {
content: "Ouvrir ";
}

article details[open] summary::before {
content: "Fermer ";
}

article details summary article details table {
margin: 22px auto;
}

.indexes > div {
margin: 32px 0;
padding-bottom: 12px;
Expand Down Expand Up @@ -500,6 +554,11 @@ code {
padding: 4px 8px;
}

.centered-fig {
display: block;
margin: auto;
}

@media all and (max-width: 960px) {
.container {
padding: 20px;
Expand Down Expand Up @@ -545,4 +604,8 @@ code {
flex-direction: column;
margin-bottom: 6px;
}

.centered-fig {
width: 100%;
}
}
Binary file added images/tetra-basic-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-basic-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-basic-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-basic-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-basic-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-battle1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-battle2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-battle3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-battle4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-card-template.kra
Binary file not shown.
Binary file added images/tetra-card-template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-combo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-multiple-battle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-permut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tetra-type-lattice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions playground/dune

This file was deleted.

Empty file removed playground/exp.ml
Empty file.

0 comments on commit 80601ea

Please sign in to comment.