_sidebar.scss 997 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .sidebar-right{
  2. position: fixed;
  3. width: 15%;
  4. height: 100%;
  5. right: 0;
  6. top: 0;
  7. display: inline-flex;
  8. .list-projets{
  9. margin: auto;
  10. ul{
  11. &:nth-child(1){
  12. margin-top: 0;
  13. }
  14. margin: $marg $marg 0px 0;
  15. text-align: right;
  16. li{
  17. &:hover{
  18. a{
  19. color: black;
  20. }
  21. }
  22. }
  23. a{
  24. color: grey;
  25. &::before{
  26. content: " ";
  27. width: 5px;
  28. height: 5px;
  29. display: inline-block;
  30. border-radius: 5px;
  31. vertical-align: middle;
  32. margin-right: 5px;
  33. }
  34. &#culturelle{
  35. &::before{
  36. background: $color_culturelle;
  37. }
  38. }
  39. &#sociale{
  40. &::before{
  41. background: $color_sociale;
  42. }
  43. }
  44. &#publique{
  45. &::before{
  46. background: $color_publique;
  47. }
  48. }
  49. &.active{
  50. color: black;
  51. }
  52. }
  53. }
  54. }
  55. }