error.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .error{
  2. text-align: center;
  3. padding: 50px;
  4. font-family: Arial, sans-serif;
  5. color: #333;
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: center;
  10. width: 50% !important;
  11. .error-icon {
  12. font-size: 3rem;
  13. color: #dc3545;
  14. margin-bottom: 0.3rem;
  15. }
  16. .error-title {
  17. font-size: 1.8rem;
  18. font-weight: 600;
  19. margin-bottom: 1rem;
  20. color: #212529;
  21. }
  22. .error-desc {
  23. font-size: 1rem;
  24. line-height: 1.6;
  25. margin-bottom: 2rem;
  26. opacity: 0.8;
  27. }
  28. .error-actions {
  29. display: flex;
  30. gap: 1rem;
  31. justify-content: center;
  32. }
  33. .btn {
  34. padding: 0.75rem 1.5rem;
  35. border-radius: 8px;
  36. border: none;
  37. font-weight: 500;
  38. cursor: pointer;
  39. transition: all 0.2s ease;
  40. }
  41. .btn-primary {
  42. background-color: #007bff;
  43. color: white;
  44. }
  45. .btn-primary:hover {
  46. background-color: #0056b3;
  47. }
  48. .btn-outline {
  49. background-color: transparent;
  50. border: 1px solid #ced4da;
  51. color: #495057;
  52. }
  53. .btn-outline:hover {
  54. background-color: #f1f3f5;
  55. }
  56. }