/* Fichier style du contenu des posts dans contenugratuit.blade.php */

/* titres */
.post-content h2 {
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
}

.post-content h3 {
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.post-content h4 {
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
}

/* listes à puces */
.post-content ul {
    list-style-type: disc; /* niveau 3 : point */
}

.post-content ul ul {
    list-style-type: circle; /* niveau 3 : cercle */
}

.post-content ul ul ul {
  list-style-type: square; /* niveau 3 : carré */
}

.post-content ol {
  list-style-type: decimal; /* niveau 1 */
}

.post-content ol ol {
  list-style-type: lower-alpha; /* niveau 2 */
}

.post-content ol ol ol {
  list-style-type: lower-roman; /* niveau 3 */
}

.post-content ol ol ol ol {
  list-style-type: upper-alpha; /* niveau 4 */
}

.post-content ol ol ol ol ol {
  list-style-type: upper-roman; /* niveau 5 */
}

.post-content ul,
.post-content ol {
    padding-left: 40px;
    margin-top: 1em;
    margin-bottom: 1em;
}

.post-content li {
    margin-bottom: 0.5em;
}

/* images */
.post-content img {
    margin: auto;
}
