rattle-snake

Additionnal CSS for Visual bookmarks

Jan 23rd, 2021 (edited)
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.09 KB | None | 0 0
  1. /* Additionnal CSS for Visual bookmarks */
  2.  
  3. .bg {
  4.     background-position: center
  5.     }
  6.  
  7. .grid {
  8.     /* Nombre de colonnes de vignettes (dynamique auto) + largeur en pixel des vignettes */
  9.     grid-template-columns: repeat(var(--grid-columns), 170px);
  10.     /* Hauteur de la 1ere ligne de vignettes*/
  11.     grid-template-rows: 150px;
  12.     /*Hauteur des autres vignettes*/
  13.     grid-auto-rows: 150px;
  14.     /* Espace entre les vignettes */
  15.     grid-gap: 30px;
  16. }
  17.  
  18. :root {
  19.     --font-size-base : 13px;  /* Taille text label */
  20.     --bookmark-caption-color:rgb(199, 199, 199);  /* Color text label */
  21.     --bookmark-caption-height : 21px; /* Hauteur du bandeau du label */
  22. }
  23.  
  24. .dark {
  25.     --bookmark-caption-bg : rgba(16, 16, 16, 0.95); /* bg color du label */
  26. }
  27.  
  28. /* léger filtre de fond */
  29. .app:before {
  30.     content: "";
  31.     position: absolute;
  32.     width: 100%;
  33.     height: 100%;
  34.     background: rgba(255, 255, 255, 0.15);
  35. }
  36.  
  37. /* Couleur de fond sur le dropDown des favoris plus sombre*/
  38. .has-image .header .form-control:not(:focus) {
  39.     background-color: rgba(51, 51, 51, 0.45);
  40. }
Add Comment
Please, Sign In to add comment