forked from vergnet/site-accueil-insa
30 lines
No EOL
542 B
CSS
30 lines
No EOL
542 B
CSS
section {
|
|
display: block;
|
|
background-color: rgba(255,255,255,0.5);
|
|
width: 80%;
|
|
max-width: 800px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 50px;
|
|
font-size: 1.2rem;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
a.team {
|
|
display: block;
|
|
color: black;
|
|
padding: 10px;
|
|
margin: auto;
|
|
margin-top: 10px;
|
|
background-color: white;
|
|
width: 50%;
|
|
text-decoration: none;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
a.team:hover {
|
|
text-decoration: underline;
|
|
text-decoration-color: red;
|
|
transition: 0.3s ease-out;
|
|
border: 2px solid red;
|
|
} |