Skip to content
Permalink
8238af286c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
40 lines (34 sloc) 735 Bytes
.letter{
background-color: lightcoral;
font-size: 70px;
color: black;
font-family: 'hobeaux-rococeaux-background', Helvetica;
display: flex;
align-content: center;
justify-content: center;
padding: 20px;
}
.wrapper{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr ;
grid-column-gap: 1px;
grid-row-gap: 1px;
}
@media screen and (min-width: 400px) {
.wrapper {
grid-template-columns: 1fr;
grid-template-rows: 1fr ;
}
}
@media screen and (min-width: 600px) {
.wrapper {
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr ;
}
}
@media screen and (min-width: 800px) {
.wrapper {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}