
/* feuille minimale */
/* elle est éventuellement complétée par une autre */

/* couleurs selon mode sombre ou clair */
:root {
    --bg-color: white;
    --text-color: black; 
    --button-color: white; 
    --button-hover: whitesmoke;
    --border-radius: 6px;
}

@media (prefers-color-scheme: dark) {
:root {
    --bg-color: black;
    --text-color: whitesmoke;
    --button-color: grey;
    --button-hover: dimgrey;
}
}

html, body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family : arial;
    font-size : medium;
    margin : 0;
    padding : 0;
}

/* pour la mise en page des boutons */

button {
    font-size : medium;
    background : var(--button-color);
    border : 1px var(--text-color) solid;
    color : var(--text-color);
    border-radius: var(--border-radius);
}
button:hover {
    background : var(--button-hover);
}

/* pour la mise en page des outils et prières */
.outils h1 {
    text-align : center;
    min-height: 90px;
}

.outils {
    margin: 1em;
    padding-bottom: 1em;
    background: url('/images/christ-roi-72.png');
    background-repeat : no-repeat;
}

.priere {
    text-align: center;
    margin: .5em;
    background: url('/images/christ-roi-72.png');
    background-repeat : no-repeat;
}

.priere p {
    font-size: x-large;
}

textarea, input {
    font-size : medium;
}

/* pour la mise en page de texte */
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.justify {
    text-align: justify;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}
.red {
    color: red;
}

.normal {
    font-style: normal;
    text-align: left;
    font-weight: normal;
    text-decoration: none;
}
