smoke.scss 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @import "vars";
  2. .smoke {
  3. text-align: center;
  4. background-color: white;
  5. box-shadow: 0 0px 20px #666;
  6. }
  7. .smoke-base {
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. bottom: 0;
  12. right: 0;
  13. visibility: hidden;
  14. opacity: 0;
  15. background: rgba(0, 0, 0, 0.3);
  16. }
  17. .smoke-base.smoke-visible {
  18. opacity: 1;
  19. visibility: visible;
  20. }
  21. .smokebg {
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. bottom: 0;
  26. right: 0;
  27. }
  28. .smoke-base .smoke-dialog {
  29. margin: auto;
  30. margin-top: 200px;
  31. border-radius: 20px;
  32. width: 400px;
  33. padding: 10px;
  34. font-size: 13pt;
  35. text-align: left;
  36. }
  37. .smoke-dialog-prompt {
  38. margin-top: 15px;
  39. text-align: center;
  40. }
  41. .smoke-dialog-buttons {
  42. margin: 20px 0 0 0;
  43. }
  44. .smoke-dialog-buttons button {
  45. background-color: $blue;
  46. color: $light;
  47. margin: 10px 0px 0px 5px;
  48. }
  49. .smoke-dialog-buttons button.cancel {
  50. background-color: $light;
  51. color: $dark;
  52. }
  53. .smoke-dialog-prompt input {
  54. width: 75%;
  55. }
  56. .smoke-base .smoke-dialog-inner {
  57. padding: 20px;
  58. color: #202020;
  59. }