diff --git a/CHANGELOG.md b/CHANGELOG.md index c2cc85c..98fa073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ Cette version contient en plus des modifications de base l'adaptation de celles ### Modifiés - [meta] Passage de OGL à Creative Commons +- [style] Taille de texte un peu plus grande +- [style] Amélioration style tableau - [core] Simplification du système de classe - [core] Baisse du nombre de rang - [core] Révision non-lethal diff --git a/assets/rulebook.css b/assets/rulebook.css index 52502ea..727ca8a 100644 --- a/assets/rulebook.css +++ b/assets/rulebook.css @@ -1,3 +1,11 @@ +body { + font-size:1em; +} + +.markdown-section { + max-width: 1100px; +} + /* Style the tab */ .tab { overflow: hidden; @@ -37,3 +45,13 @@ .tabcontent.active { display:block; } + +.markdown-section table { + display:table; + width:100%; + table-layout: fixed; +} + +.markdown-section tr:nth-child(2n) { + background-color:#fff; +}