_errorpage.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // Layout
  3. //
  4. .error-container {
  5. display: flex;
  6. flex-direction: row;
  7. }
  8. .error-row {
  9. display: flex;
  10. flex-direction: row;
  11. }
  12. .error-column {
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .error-space-between {justify-content: space-between;}
  17. .graph-box {
  18. width: 62%;
  19. padding: 2rem 1rem;
  20. }
  21. .info-box {
  22. width: 38%;
  23. padding: 2rem 1rem 2rem;
  24. }
  25. .graph-percentage {padding: 0 0 1.5rem;}
  26. .image-box {padding: .5rem}
  27. .left-margin{padding: 0 0 0 5rem;}
  28. .current-box {justify-content: flex-end;}
  29. //
  30. // Text
  31. //
  32. .current-text {
  33. color: $blue;
  34. font-weight: bold;
  35. line-height: 1rem;
  36. }
  37. .error-link {color: $orange;}
  38. .error-minus {
  39. color: #7eb26d;
  40. padding: 0 .5rem;
  41. line-height: 1.5rem;
  42. }
  43. .graph-percentage p {
  44. text-align: right;
  45. margin: 0;
  46. line-height: 1rem;
  47. }
  48. .graph-text {margin: 0;}
  49. @include media-breakpoint-down(sm) {
  50. .graph-box {
  51. width: 50%;
  52. }
  53. .info-box {
  54. width: 50%;
  55. }
  56. }
  57. @include media-breakpoint-down(xs) {
  58. .error-container {
  59. flex-direction: column;
  60. }
  61. .graph-box {
  62. width: 100%;
  63. }
  64. .info-box {
  65. width: 100%;
  66. }
  67. .error-full-width {
  68. width: 100%;
  69. }
  70. }