/* CSS Custom, ce qui permet de customiser NextCloud tout en laissant l'application Theming désactivée. */

:root {
  --color-primary-light: #c90000 !important;
  --color-background-hover: #990000 !important;
}



/* Image pour la page de login (sans utiliser l'application de Theming) */
#body-login {  
    background-image : url("https://sebsauvage.net/galerie/photos/Wallpapers/bi/wallpaper-1135223.jpg"), url("https://sebsauvage.net/images/wallpaper-1135223-fuzzy.jpg") !important; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Éditeur text/markdown en pleine largeur écran */
.editor__content { max-width: 100% !important; }


header#header {
    background-color: #b90000 !important;
}


/* Bannière qui scrolle */
/*
@keyframes animatedBackground {
  from { background-position: 0% 100%; }
  to { background-position: 0% 0%; }
}
header#header {
    background-image : url("https://sebsauvage.net/galerie/photos/Wallpapers/bi/wallpaper-1135223.jpg") !important;
    background-size: cover;
    background-position: 0% 0%;
    animation-name: animatedBackground;
    animation-duration: 120s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
*/

/* Ajustement du texte pour le thème sombre (plus nécessaire depuis la correction de Breeze Dark) */
/* 
.filesize,.date { color:rgb(140, 140, 140); }
#app-content-wrapper,#controls,.jumbotron { background-color: #444; }
*/

/* Supprimer le gros espace vide avant l'éditeur/Readme */
#files-public-content #editor-container #editor { padding-top: 0px !important; padding-bottom: 0px !important; }


/* Supprimer le bouton "Tout télécharger" */
#body-public .header-right #header-primary-action a {
visibility: hidden;
}
