Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

semantic.rtl.css 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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: rgba(0, 0, 0, 0.85);
  8. opacity: 1;
  9. }
  10. .alertify .ajs-dialog {
  11. max-width: 50%;
  12. min-height: 137px;
  13. background-color: #F4F4F4;
  14. border: 1px solid #DDD;
  15. -webkit-box-shadow: none;
  16. box-shadow: none;
  17. border-radius: 5px;
  18. }
  19. .alertify .ajs-header {
  20. padding: 1.5rem 2rem;
  21. border-bottom: none;
  22. border-radius: 5px 5px 0 0;
  23. color: #555;
  24. background-color: #fff;
  25. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  26. font-size: 1.6em;
  27. font-weight: 700;
  28. }
  29. .alertify .ajs-body {
  30. font-family: 'Roboto', sans-serif;
  31. color: #555;
  32. }
  33. .alertify .ajs-body .ajs-content .ajs-input {
  34. width: 100%;
  35. margin: 0;
  36. padding: .65em 1em;
  37. font-size: 1em;
  38. background-color: #FFF;
  39. border: 1px solid rgba(0, 0, 0, 0.15);
  40. outline: 0;
  41. color: rgba(0, 0, 0, 0.7);
  42. border-radius: .3125em;
  43. -webkit-transition: background-color 0.3s ease-out, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  44. transition: background-color 0.3s ease-out, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  45. transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  46. transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  47. -webkit-box-sizing: border-box;
  48. box-sizing: border-box;
  49. }
  50. .alertify .ajs-body .ajs-content .ajs-input:active {
  51. border-color: rgba(0, 0, 0, 0.3);
  52. background-color: #FAFAFA;
  53. }
  54. .alertify .ajs-body .ajs-content .ajs-input:focus {
  55. border-color: rgba(0, 0, 0, 0.2);
  56. color: rgba(0, 0, 0, 0.85);
  57. }
  58. .alertify.ajs-resizable .ajs-content,
  59. .alertify.ajs-maximized:not(.ajs-resizable) .ajs-content {
  60. top: 64px;
  61. bottom: 74px;
  62. }
  63. .alertify .ajs-footer {
  64. background-color: #fff;
  65. padding: 1rem 2rem;
  66. border-top: none;
  67. border-radius: 0 0 5px 5px;
  68. }
  69. .alertify-notifier .ajs-message {
  70. background: rgba(255, 255, 255, 0.95);
  71. color: #000;
  72. text-align: center;
  73. border: solid 1px #ddd;
  74. border-radius: 2px;
  75. }
  76. .alertify-notifier .ajs-message.ajs-success {
  77. color: #fff;
  78. background: rgba(91, 189, 114, 0.95);
  79. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  80. }
  81. .alertify-notifier .ajs-message.ajs-error {
  82. color: #fff;
  83. background: rgba(217, 92, 92, 0.95);
  84. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  85. }
  86. .alertify-notifier .ajs-message.ajs-warning {
  87. background: rgba(252, 248, 215, 0.95);
  88. border-color: #999;
  89. }