alert.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
  2. @import url("https://fonts.googleapis.com/css2?family=Dosis:wght@800&display=swap");
  3. .alert-wrapper {
  4. display: flex;
  5. width: 100%;
  6. height: 100%;
  7. align-items: center;
  8. justify-content: center;
  9. margin: 0px auto;
  10. padding: 0px auto;
  11. left: 0;
  12. top: 0;
  13. overflow: hidden;
  14. position: fixed;
  15. background: rgb(0, 0, 0, 0.3);
  16. }
  17. @keyframes open-frame {
  18. 0% {
  19. transform: scale(1);
  20. }
  21. 25% {
  22. transform: scale(0.95);
  23. }
  24. 50% {
  25. transform: scale(0.97);
  26. }
  27. 75% {
  28. transform: scale(0.93);
  29. }
  30. 100% {
  31. transform: scale(1);
  32. }
  33. }
  34. .alert-frame {
  35. background: #fff;
  36. min-height: 400px;
  37. width: 400px;
  38. box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
  39. border-radius: 10px;
  40. animation: open-frame 0.3s linear;
  41. }
  42. .alert-header {
  43. display: flex;
  44. flex-direction: row;
  45. height: 175px;
  46. border-top-left-radius: 5px;
  47. border-top-right-radius: 5px;
  48. }
  49. .alert-img {
  50. height: 80px;
  51. position: absolute;
  52. left: 0;
  53. right: 0;
  54. margin-left: auto;
  55. margin-right: auto;
  56. align-self: center;
  57. }
  58. .alert-close {
  59. width: 30px;
  60. height: 30px;
  61. color: rgb(0, 0, 0, 0.2);
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. font-family: "Dosis", sans-serif;
  66. font-weight: 700;
  67. font-size: 16px;
  68. cursor: pointer;
  69. line-height: 30px;
  70. transition: color 0.5s;
  71. margin-left: auto;
  72. margin-right: 5px;
  73. margin-top: 5px;
  74. }
  75. .alert-close-circle {
  76. width: 30px;
  77. height: 30px;
  78. background: #e4eae7;
  79. color: #222;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. border-radius: 17.5px;
  84. margin-top: -15px;
  85. margin-right: -15px;
  86. font-family: "Dosis", sans-serif;
  87. font-weight: 700;
  88. font-size: 12px;
  89. cursor: pointer;
  90. line-height: 30px;
  91. transition: background 0.5s;
  92. margin-left: auto;
  93. }
  94. .alert-close-circle:hover {
  95. background: #fff;
  96. }
  97. .alert-close:hover {
  98. color: rgb(0, 0, 0, 0.5);
  99. }
  100. .alert-body {
  101. padding: 30px 30px;
  102. display: flex;
  103. flex-direction: column;
  104. text-align: center;
  105. }
  106. .alert-title {
  107. font-size: 18px !important;
  108. font-family: "Open Sans", sans-serif;
  109. font-weight: 700;
  110. font-size: 15px;
  111. margin-bottom: 35px;
  112. color: #222;
  113. align-self: center;
  114. }
  115. .alert-message {
  116. font-size: 15px !important;
  117. color: #666;
  118. font-family: "Open Sans", sans-serif;
  119. font-weight: 400;
  120. font-size: 15px;
  121. text-align: center;
  122. margin-bottom: 35px;
  123. line-height: 1.6;
  124. align-self: center;
  125. }
  126. .alert-button {
  127. min-width: 140px;
  128. height: 35px;
  129. border-radius: 20px;
  130. font-family: "Open Sans", sans-serif;
  131. font-weight: 400;
  132. font-size: 15px;
  133. color: white;
  134. border: none;
  135. cursor: pointer;
  136. transition: background 0.5s;
  137. padding: 0 15px;
  138. align-self: center;
  139. display: inline-flex;
  140. align-items: center;
  141. justify-content: center;
  142. }
  143. .alert-button:focus {
  144. outline: 0;
  145. }
  146. .question-buttons {
  147. display: flex;
  148. flex-direction: row;
  149. justify-content: center;
  150. }
  151. .confirm-button {
  152. min-width: 100px;
  153. height: 35px;
  154. border-radius: 20px;
  155. font-family: "Open Sans", sans-serif;
  156. font-weight: 400;
  157. font-size: 15px;
  158. color: white;
  159. border: none;
  160. cursor: pointer;
  161. transition: background 0.5s;
  162. padding: 0 15px;
  163. margin-right: 10px;
  164. display: inline-flex;
  165. align-items: center;
  166. justify-content: center;
  167. }
  168. .confirm-button:focus {
  169. outline: 0;
  170. }
  171. .cancel-button {
  172. min-width: 100px;
  173. height: 35px;
  174. border-radius: 20px;
  175. font-family: "Open Sans", sans-serif;
  176. font-weight: 400;
  177. font-size: 15px;
  178. color: white;
  179. border: none;
  180. cursor: pointer;
  181. padding: 0;
  182. line-height: 1.6;
  183. transition: background 0.5s;
  184. padding: 0 15px;
  185. display: inline-flex;
  186. align-items: center;
  187. justify-content: center;
  188. }
  189. .cancel-button:focus {
  190. outline: 0;
  191. }
  192. @keyframes open-toast {
  193. 0% {
  194. transform: scaleX(1) scaleY(1);
  195. }
  196. 20%,
  197. 45% {
  198. transform: scaleX(1.35) scaleY(0.1);
  199. }
  200. 65% {
  201. transform: scaleX(0.8) scaleY(1.7);
  202. }
  203. 80% {
  204. transform: scaleX(0.6) scaleY(0.85);
  205. }
  206. 100% {
  207. transform: scaleX(1) scaleY(1);
  208. }
  209. }
  210. .toast-container {
  211. top: 15px;
  212. right: 15px;
  213. overflow: hidden;
  214. position: fixed;
  215. border-radius: 5px;
  216. box-shadow: 0 0 20px rgb(0, 0, 0, 0.2);
  217. animation: open-toast 0.3s linear;
  218. }
  219. .toast-frame {
  220. padding: 5px 15px;
  221. display: flex;
  222. min-width: 100px;
  223. height: 60px;
  224. border-top-left-radius: 10px;
  225. border-top-right-radius: 10px;
  226. align-items: center;
  227. flex-wrap: wrap;
  228. }
  229. .toast-img {
  230. height: 40px;
  231. }
  232. .toast-message {
  233. font-size: 14px !important;
  234. font-family: "Open Sans", sans-serif;
  235. font-weight: 600;
  236. font-size: 15px;
  237. color: #fff;
  238. margin-left: 15px;
  239. }
  240. .toast-close {
  241. color: rgb(0, 0, 0, 0.2);
  242. font-family: "Dosis", sans-serif;
  243. font-weight: 700;
  244. font-size: 16px;
  245. cursor: pointer;
  246. transition: color 0.5s;
  247. margin-left: 25px;
  248. }
  249. @keyframes timer {
  250. 0% {
  251. width: 100%;
  252. }
  253. 25% {
  254. width: 75%;
  255. }
  256. 50% {
  257. width: 50%;
  258. }
  259. 75% {
  260. width: 25%;
  261. }
  262. 100% {
  263. width: 1%;
  264. }
  265. }
  266. .toast-timer {
  267. width: 1%;
  268. height: 5px;
  269. }
  270. .toast-close:hover {
  271. color: rgb(0, 0, 0, 0.5);
  272. }
  273. .error-bg {
  274. background: #d85261;
  275. }
  276. .success-bg {
  277. background: #2dd284;
  278. }
  279. .warning-bg {
  280. background: #fada5e;
  281. }
  282. .question-bg {
  283. background: #779ecb;
  284. }
  285. .error-btn:hover {
  286. background: #e5a4b4;
  287. }
  288. .success-btn:hover {
  289. background: #6edaa4;
  290. }
  291. .warning-btn:hover {
  292. background: #fcecae;
  293. }
  294. .info-btn:hover {
  295. background: #c3e6fb;
  296. }
  297. .question-btn:hover {
  298. background: #bacee4;
  299. }
  300. .error-timer {
  301. background: #e5a4b4;
  302. }
  303. .success-timer {
  304. background: #6edaa4;
  305. }
  306. .warning-timer {
  307. background: #fcecae;
  308. }
  309. .info-timer {
  310. background: #c3e6fb;
  311. }
  312. .info-bg {
  313. background: #88cef7;
  314. }
  315. .modal {
  316. position: fixed;
  317. top: 0;
  318. left: 0;
  319. right: 0;
  320. bottom: 0;
  321. z-index: 10;
  322. display: none
  323. }
  324. .modal.active {
  325. display: block
  326. }
  327. .modal .modal-wraper {
  328. display: flex;
  329. justify-content: center;
  330. align-items: center;
  331. width: 100%;
  332. height: 100%;
  333. color: #666;
  334. margin-top: 20px
  335. }
  336. .modal .modal-wraper .modal-content {
  337. position: relative;
  338. width: 500px;
  339. height: 500px;
  340. max-width: 80%;
  341. padding: 25px;
  342. background: #fff;
  343. border-radius: 5px;
  344. margin-top: 30px;
  345. transition: all .3s;
  346. z-index: 99;
  347. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  348. }
  349. .modal .modal-wraper .modal-content .popup-title{
  350. border-bottom: 1px solid #DDD;
  351. FONT-SIZE: 16PX;
  352. MARGIN-BOTTOM: 30PX;
  353. }
  354. .modal .modal-wraper .modal-content li{
  355. line-height:
  356. }
  357. .modal .modal-wraper .modal-content.active {
  358. margin-top: 0;
  359. opacity: 1
  360. }
  361. .modal .modal-wraper .modal-content .close {
  362. border-radius: 10PX;
  363. text-align: center;
  364. margin: 50PX auto;
  365. color: #FFF;
  366. BACKGROUND: #9ad48a;
  367. PADDING: 5PX 10PX;
  368. WIDTH: 200PX;
  369. FONT-SIZE: 16PX;
  370. }
  371. .modal .modal-wraper .prominent{
  372. color:#9ad48a;
  373. }