messagebox.css 586 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .bg-white
  2. {
  3. background-color: #263238;
  4. }
  5. .bg-transparent{
  6. background-color: transparent;
  7. }
  8. .no-border{
  9. border: none;
  10. }
  11. .no-shadow{
  12. box-shadow: none;
  13. }
  14. .rounded{
  15. border-radius:10px ;
  16. }
  17. .rounded-top{
  18. border-top-left-radius:10px ;
  19. border-top-right-radius:10px ;
  20. }
  21. .rounded-bottom{
  22. border-bottom-left-radius:10px ;
  23. border-bottom-right-radius:10px ;
  24. }
  25. .full-rounded{
  26. border-radius: 100px;
  27. }
  28. .sm-font{
  29. font-size: 8px;
  30. }
  31. .close{
  32. background-color: #f34c4c;
  33. min-width: 1px;
  34. min-height: 3px;
  35. }
  36. .bg-blue{
  37. background-color: #78cdf6;
  38. }