_buttons.scss 719 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. .field--type-link {
  10. @extend %buttonwithborder;
  11. width: fit-content;
  12. }
  13. .bouton{
  14. background-color: $white-button !important;
  15. border: none !important;
  16. cursor: pointer;
  17. }
  18. .field--type-file{
  19. @extend %buttonwithborder;
  20. }
  21. .links{
  22. @extend %buttonwithborder;
  23. }
  24. .views-field-edit-node{
  25. @extend %buttonwithborder;
  26. width: fit-content;
  27. margin-top: 1rem;
  28. }
  29. .views-field-edit-user{
  30. @extend %buttonwithborder;
  31. width: fit-content;
  32. margin-top: 1rem;
  33. }
  34. footer{
  35. }
  36. #edit-unlock{
  37. display: none;
  38. }