_buttons.scss 946 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // home
  2. %buttonwithborder {
  3. text-transform: uppercase;
  4. padding: 1rem;
  5. border: solid black 1px;
  6. margin-bottom: 1rem;
  7. background-color: $white-button;
  8. }
  9. // %hoveryellow{
  10. // :hover{
  11. // background-color: $yellow-puca;
  12. // }
  13. // }
  14. .field--type-link {
  15. @extend %buttonwithborder;
  16. width: fit-content;
  17. }
  18. .bouton{
  19. background-color: $white-button !important;
  20. border: none !important;
  21. cursor: pointer;
  22. }
  23. .field--type-file{
  24. @extend %buttonwithborder;
  25. }
  26. .links{
  27. @extend %buttonwithborder;
  28. }
  29. .views-field-edit-node{
  30. @extend %buttonwithborder;
  31. width: fit-content;
  32. margin-top: 1rem;
  33. }
  34. .views-field-edit-user{
  35. @extend %buttonwithborder;
  36. width: fit-content;
  37. margin-top: 1rem;
  38. }
  39. .views-field-edit-user:hover{
  40. background-color: $yellow-puca;
  41. }
  42. footer{
  43. }
  44. #edit-unlock{
  45. display: none;
  46. }
  47. #edit-submit:hover{
  48. background-color: $yellow-puca;
  49. }