30 lines
444 B
CSS
30 lines
444 B
CSS
|
.plan-du-site-section {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
.plan-du-site-section h2 {
|
||
|
color: #1a1a1a;
|
||
|
font-size: 28px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.plan-du-site-section ul {
|
||
|
list-style-type: disc;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.plan-du-site-section li {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.plan-du-site-section a {
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.plan-du-site-section a:hover {
|
||
|
color: #1a1a1a;
|
||
|
}
|