Commit 015cf638 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Réduit l'espace verticale, notamment sur les listes.

parent a21b758e
No related merge requests found
Showing with 150 additions and 307 deletions
+150 -307
This diff is collapsed.
...@@ -295,23 +295,24 @@ body { ...@@ -295,23 +295,24 @@ body {
font-variant: small-caps; font-variant: small-caps;
color: #9293a1; } color: #9293a1; }
.reveal .slides section p { .reveal .slides section p {
margin-top: 0.75em; } margin: 0.5em 0; }
.reveal .slides section ul { .reveal .slides section ul {
list-style: none; list-style: none;
color: #5f7a3c; color: #5f7a3c;
margin: 0.2em 0; } margin: 0; }
.reveal .slides section ul li { .reveal .slides section ul li {
margin-top: 0.75em; } margin-top: 0.5em;
list-style: disc outside; }
.reveal .slides section ul ul { .reveal .slides section ul ul {
color: #444444; color: #444444;
list-style: none; list-style: none;
margin-left: 1.5em; } margin-left: 1em; }
.reveal .slides section ul ul li { .reveal .slides section ul ul li {
margin-top: 0.3em; } margin-top: 0.25em;
list-style: square outside; }
.reveal .slides section ul ul ul { .reveal .slides section ul ul ul {
color: #003a80; color: #003a80;
list-style: square inside; margin-left: 1em; }
margin-left: 1.5em; }
@media print { @media print {
.reveal .slides section .fragment.fade-out { .reveal .slides section .fragment.fade-out {
visibility: hidden !important; } } visibility: hidden !important; } }
...@@ -79,31 +79,32 @@ $selectionColor: #fff; ...@@ -79,31 +79,32 @@ $selectionColor: #fff;
} }
p { p {
margin-top: 0.75em; margin: 0.5em 0;
} }
color: $marine; color: $marine;
ul { ul {
list-style: none; list-style: none;
color: $olive; color: $olive;
margin: 0.2em 0; margin: 0;
li { li {
margin-top: 0.75em; margin-top: 0.5em;
list-style: disc outside;
} }
ul { ul {
color: $gris; color: $gris;
list-style: none; list-style: none;
margin-left: 1.5em; margin-left: 1em;
li { li {
margin-top: 0.3em; margin-top: 0.25em;
list-style: square outside;
} }
ul { ul {
color: $marine; color: $marine;
list-style: square inside; margin-left: 1em;
margin-left: 1.5em;
} }
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment