143 lines
2.3 KiB
CSS
143 lines
2.3 KiB
CSS
/*
|
|
Theme Name: WP Theme SEN2
|
|
Version: 1.3.0
|
|
*/
|
|
|
|
/* Réinitialisation et base */
|
|
body {
|
|
font-family: 'Montserrat', sans-serif;
|
|
background-color: #F9F9F9;
|
|
color: #333333;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Header et navigation */
|
|
header {
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.main-navigation {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #EEEEEE;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.main-navigation ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.main-navigation a {
|
|
font-weight: 500;
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.main-navigation a:hover {
|
|
color: #E1306C;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.secondary-navigation {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
z-index: 10;
|
|
}
|
|
|
|
.site-branding {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.site-slogan {
|
|
display: block;
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
color: #555555;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.secondary-navigation ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.secondary-navigation li {
|
|
writing-mode: vertical-rl;
|
|
text-orientation: mixed;
|
|
}
|
|
|
|
.secondary-navigation a {
|
|
font-size: 14px;
|
|
color: #555555;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.secondary-navigation a:hover {
|
|
color: #E1306C;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.header-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.secondary-navigation {
|
|
position: static;
|
|
transform: none;
|
|
writing-mode: horizontal-tb;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.secondary-navigation ul {
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.secondary-navigation li {
|
|
writing-mode: horizontal-tb;
|
|
text-orientation: initial;
|
|
}
|
|
|
|
.main-navigation ul {
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
/* Footer et autres styles (à conserver) */
|
|
footer {
|
|
background-color: #F9F9F9;
|
|
padding: 20px 0;
|
|
text-align: center;
|
|
border-top: 1px solid #EEEEEE;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
/* Le reste de ton CSS existant... */ |