confirm_window.sass 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .confirm-window
  2. position: fixed
  3. top: 0px
  4. left: 0px
  5. width: 100%
  6. height: 100%
  7. display: flex
  8. flex-direction: row
  9. align-items: center
  10. justify-content: center
  11. background-color: rgba(0, 0, 0, 0.7)
  12. .center
  13. width: 300px
  14. border-radius: 10px
  15. border: 2px solid $primary
  16. box-sizing: border-box
  17. background-color: $secondary
  18. background-color: $primary
  19. .title h3
  20. color: $secondary
  21. text-align: center
  22. .description
  23. background-color: $background
  24. padding: 10px
  25. p
  26. text-align: center
  27. .title, .description, .buttons
  28. padding: 10px
  29. .buttons
  30. display: flex
  31. flex-direction: row
  32. align-items: center
  33. justify-content: center
  34. gap: 10px
  35. .cancel, .confirm
  36. padding: 10px
  37. border: none
  38. border-radius: 10px
  39. transition: transform 0.5s
  40. .cancel:hover
  41. transform: rotate(30deg)
  42. .confirm:hover
  43. transform: scale(1.2)
  44. .cancel
  45. background-color: red
  46. color: white
  47. .confirm
  48. background-color: $secondary
  49. color: $primary