51 lines
833 B
CSS
51 lines
833 B
CSS
:root {
|
|
font-size: 125%;
|
|
}
|
|
|
|
nav button svg {
|
|
display: block;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
filter: drop-shadow(0.08em 0.06em #8888);
|
|
}
|
|
|
|
h1 img,
|
|
h3 img {
|
|
background-color: var(--pico-h1-color);
|
|
border-radius: 100%;
|
|
background-origin: content-box;
|
|
padding: 0;
|
|
height: 0.75em;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
#grille {
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
#grille input[type=text] {
|
|
font-size: 1.5em;
|
|
text-transform: capitalize;
|
|
width: 1.3em;
|
|
height: 1.3em;
|
|
padding: 0.15em;
|
|
text-align: center;
|
|
border-radius: 0.3rem;
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.lettre-bien-placee {
|
|
background-color: #D93526D0;
|
|
}
|
|
|
|
.lettre-mal-placee {
|
|
background-image: radial-gradient(ellipse at center, #FFBF00A0 70%, transparent 70%);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#grille input[type=text]:disabled {
|
|
opacity: 100%;
|
|
} |