38 lines
737 B
CSS
38 lines
737 B
CSS
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 img {
|
|
background-color: var(--pico-h1-color);
|
|
border-radius: 100%;
|
|
background-origin: content-box;
|
|
padding: 0;
|
|
height: 0.7em;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
#grille {
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
#grille input[type=text] {
|
|
font-size: 2em;
|
|
text-transform: capitalize;
|
|
width: 1.3em;
|
|
height: 1.3em;
|
|
padding: 0.15em;
|
|
text-align: center;
|
|
border-radius: 0.3rem;
|
|
vertical-align: center;
|
|
}
|
|
|
|
.lettre-bien-placee {
|
|
background-color: #D93526D0;
|
|
}
|
|
|
|
.lettre-mal-placee {
|
|
background-image: radial-gradient(ellipse at center, #FFBF00A0 70%, transparent 70%);
|
|
background-origin: border-box-box;
|
|
background-repeat: no-repeat;
|
|
} |