Dashboard sipadu mbip
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.

notification.css 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .alert {
  2. padding: 15px;
  3. margin-bottom: 18px;
  4. border: 1px solid transparent;
  5. border-radius: 2px;
  6. }
  7. .alert h4 {
  8. margin-top: 0;
  9. color: inherit;
  10. }
  11. .alert .alert-link {
  12. font-weight: bold;
  13. }
  14. .alert > p,
  15. .alert > ul {
  16. margin-bottom: 0;
  17. }
  18. .alert > p + p {
  19. margin-top: 5px;
  20. }
  21. .alert-dismissable,
  22. .alert-dismissible {
  23. padding-right: 35px;
  24. }
  25. .alert-dismissable .close,
  26. .alert-dismissible .close {
  27. position: relative;
  28. top: -2px;
  29. right: -21px;
  30. color: inherit;
  31. }
  32. /* .alert-success {
  33. background-color: #4caf50;
  34. border-color: transparent;
  35. color: #ffffff;
  36. } */
  37. .alert-success hr {
  38. border-top-color: rgba(0, 0, 0, 0);
  39. }
  40. .alert-success .alert-link {
  41. color: #e6e6e6;
  42. }
  43. /* .alert-info {
  44. background-color: #2196f3;
  45. border-color: transparent;
  46. color: #ffffff;
  47. } */
  48. .alert-info hr {
  49. border-top-color: rgba(0, 0, 0, 0);
  50. }
  51. .alert-info .alert-link {
  52. color: #e6e6e6;
  53. }
  54. /* .alert-warning {
  55. background-color: #ffc107;
  56. border-color: transparent;
  57. color: #ffffff;
  58. } */
  59. .alert-warning hr {
  60. border-top-color: rgba(0, 0, 0, 0);
  61. }
  62. .alert-warning .alert-link {
  63. color: #e6e6e6;
  64. }
  65. /*
  66. .alert-danger {
  67. background-color: #f44336;
  68. border-color: transparent;
  69. color: #ffffff;
  70. } */
  71. .alert-danger hr {
  72. border-top-color: rgba(0, 0, 0, 0);
  73. }
  74. .alert-danger .alert-link {
  75. color: #e6e6e6;
  76. }
  77. @-webkit-keyframes progress-bar-stripes {
  78. from {
  79. background-position: 40px 0;
  80. }
  81. to {
  82. background-position: 0 0;
  83. }
  84. }
  85. @keyframes progress-bar-stripes {
  86. from {
  87. background-position: 40px 0;
  88. }
  89. to {
  90. background-position: 0 0;
  91. }
  92. }
  93. .alert {
  94. padding-left: 30px;
  95. font-size: 13px;
  96. }
  97. .alert span {
  98. cursor: pointer;
  99. }
  100. .alert:not(.alert-dismissible) {
  101. padding-right: 30px;
  102. }
  103. .alert.alert-dismissable {
  104. padding-right: 44px;
  105. }
  106. .alert-inverse {
  107. background-color: #333333;
  108. border-color: transparent;
  109. color: #ffffff;
  110. }
  111. .alert-inverse hr {
  112. border-top-color: rgba(0, 0, 0, 0);
  113. }
  114. .alert-inverse .alert-link {
  115. color: #e6e6e6;
  116. }
  117. .growl-animated.alert-inverse {
  118. box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
  119. }
  120. .growl-animated.alert-info {
  121. box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
  122. }
  123. .growl-animated.alert-success {
  124. box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  125. }
  126. .growl-animated.alert-warning {
  127. box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
  128. }
  129. .growl-animated.alert-danger {
  130. box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
  131. }
  132. .alert-link {
  133. color: #fff !important;
  134. }