39 lines
632 B
CSS
39 lines
632 B
CSS
:root {
|
|
--primary: #e5989b;
|
|
--accent: #ffb4a2;
|
|
--background: #fff1f2;
|
|
--card-background: #ffe5ec;
|
|
--text: #3e3e3e;
|
|
}
|
|
|
|
header {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Barre du haut en noir */
|
|
header.navbar {
|
|
background-color: #111 !important;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
|
|
/* Texte du titre plus petit et blanc */
|
|
header .title {
|
|
font-size: 1.2rem;
|
|
color: #fff !important;
|
|
}
|
|
|
|
/* Cache le sous-titre */
|
|
header .subtitle {
|
|
display: none;
|
|
}
|
|
|
|
/* Réduit la taille du logo */
|
|
header .logo img {
|
|
height: 32px !important;
|
|
}
|
|
|
|
/* Garde la barre de recherche visible à droite */
|
|
.navbar .ml-auto {
|
|
margin-left: auto;
|
|
}
|