-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the banner color to Inria red and add the Inria logo.
- Loading branch information
1 parent
eca6d48
commit e57c1c9
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
/* Applique une ombre légère et un arrondi à toutes les images du site */ | ||
img { | ||
box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.2); | ||
border-radius: 10px | ||
box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.2); /* Ombre légère */ | ||
border-radius: 10px; /* Coins arrondis */ | ||
} | ||
|
||
/* Supprime l'ombre et l'arrondi uniquement pour l'icône du logo */ | ||
.md-header__button.md-logo img { | ||
box-shadow: none !important; /* Supprime l'ombre */ | ||
border-radius: 0 !important; /* Supprime l'arrondi */ | ||
background-color: transparent; /* Facultatif : assure que l'arrière-plan est transparent */ | ||
} | ||
|
||
/* Change la couleur du bandeau */ | ||
.md-header { | ||
background-color: #C9191E !important; /* Rouge foncé */ | ||
} | ||
|
||
/* Facultatif : ajuste la couleur du texte et des boutons pour un meilleur contraste */ | ||
.md-header__title, | ||
.md-header__button, | ||
.md-header__button svg { | ||
color: #ffffff !important; /* Texte blanc pour contraste */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters