67 lines
797 B
CSS

section.list
{
display : flex;
justify-content : space-between;
flex-wrap:wrap;
}
section.list > div
{
width : 30%;
}
section.list img {
display:inline-block;
}
.short-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* modification par Yann */
nav {
position: fixed;
width: 100%;
background-color: #283d5d;
top: 0;
right: 0;
}
main.container {
margin-top: 60px;
}
.container ul {
left: 0;
}
.container li {
margin-right : 20px;
}
.sous {
display: none;
box-shadow: 0px 1px 2px;
background-color: white;
}
nav > ul li:hover .sous{
display: block;
}
section.connexion {
display: flex;
justify-content: space-between;
}
div.authentification {
width: 45%;
}
div.new {
width: 45%;
}