Edit choicebox

This commit is contained in:
Le Libre Au Quotidien 2020-05-28 19:07:30 +02:00
parent b2f1e75254
commit 91d5caae33
1 changed files with 11 additions and 4 deletions

View File

@ -50,17 +50,24 @@ list: function () {
#choicebox{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
a{
flex-grow: 0;
max-width:150px;
text-align: center;
margin-bottom:5Px;
margin:15px;
}
.adisplay{
display:grid;
grid-template-columns: repeat(3, 20%);
}
@media only screen and (max-width: 460px) {
/* For mobile phones: */
.adisplay{
display:grid;
grid-template-columns: repeat(0, 0%);
}
}
h2::before{
content:\f21b;
}