_sidebar.scss 411 B

12345678910111213141516171819202122232425262728
  1. .sidebar-right{
  2. position: fixed;
  3. width: 20%;
  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. }
  26. }
  27. }
  28. }