You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.rtl.css 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * alertifyjs 1.13.1 http://alertifyjs.com
  3. * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
  4. * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
  5. * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
  6. .alertify .ajs-dimmer {
  7. background-color: #000;
  8. opacity: .5;
  9. }
  10. .alertify .ajs-dialog {
  11. max-width: 600px;
  12. min-height: 122px;
  13. background-color: #fff;
  14. border: 1px solid rgba(0, 0, 0, 0.2);
  15. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  16. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  17. border-radius: 6px;
  18. }
  19. .alertify .ajs-header {
  20. color: #333;
  21. border-bottom: 1px solid #e5e5e5;
  22. border-radius: 6px 6px 0 0;
  23. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  24. font-size: 18px;
  25. }
  26. .alertify .ajs-body {
  27. font-family: 'Roboto', sans-serif;
  28. color: black;
  29. }
  30. .alertify.ajs-resizable .ajs-content,
  31. .alertify.ajs-maximized:not(.ajs-resizable) .ajs-content {
  32. top: 58px;
  33. bottom: 68px;
  34. }
  35. .alertify .ajs-footer {
  36. background-color: #fff;
  37. padding: 15px;
  38. border-top: 1px solid #e5e5e5;
  39. border-radius: 0 0 6px 6px;
  40. }
  41. .alertify-notifier .ajs-message {
  42. background: rgba(255, 255, 255, 0.95);
  43. color: #000;
  44. text-align: center;
  45. border: solid 1px #ddd;
  46. border-radius: 2px;
  47. }
  48. .alertify-notifier .ajs-message.ajs-success {
  49. color: #fff;
  50. background: rgba(91, 189, 114, 0.95);
  51. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  52. }
  53. .alertify-notifier .ajs-message.ajs-error {
  54. color: #fff;
  55. background: rgba(217, 92, 92, 0.95);
  56. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  57. }
  58. .alertify-notifier .ajs-message.ajs-warning {
  59. background: rgba(252, 248, 215, 0.95);
  60. border-color: #999;
  61. }