1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
.container {
margin:0px;
padding:0px;
display:flex;
flex-direction: row;
justify-content: space-between;
background-color: rgb(88, 197, 199);
border: 15px solid rgb(39, 60, 73);
border-radius: 8px;
}
h1 {
text-align: center;
}
li {
list-style-type: none;
/*border-right: 2px solid rgb(39, 60, 73);*/
}
.container a {
/*display:block;*/
line-height: 49px; /* hauteur ajustée */
text-align: center;
font-size: 1.3em;
font-family: Arial, Helvetica, sans-serif;
color:white;
text-decoration: none;
padding: 10px;
background-color: rgb(88, 197, 199);
}
.container a:hover {
background-color: rgb(73, 164, 166);
border-radius: 10px;
}
.container a:active {
background-color: yellow;
}
/*@media all and (max-width:800px) {
.container {
justify-content:space-around;
}
li {
list-style-type: none;
border: none;
}
}*/
@media all and (max-width:650px) {
.container {
flex-flow:column wrap;
text-align: center; /* ajouté*/
min-width: 300px;
}
li {
border-top: 1px solid white;
}
} |
Partager