_errorpage.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 {
  17. justify-content: space-between;
  18. }
  19. .graph-box {
  20. width: 62%;
  21. padding: $space-xl $space-md;
  22. }
  23. .info-box {
  24. width: 38%;
  25. padding: $space-xl $space-md;
  26. }
  27. .graph-percentage {
  28. padding: 0 0 18px;
  29. }
  30. .image-box {
  31. padding: $space-sm;
  32. }
  33. .left-margin {
  34. padding: 0 0 0 64px;
  35. }
  36. .current-box {
  37. justify-content: flex-end;
  38. }
  39. //
  40. // Text
  41. //
  42. .current-text {
  43. color: $blue;
  44. font-weight: bold;
  45. line-height: 14px;
  46. }
  47. .error-link {
  48. color: $orange;
  49. }
  50. .error-minus {
  51. color: #7eb26d;
  52. padding: 0 $space-sm;
  53. line-height: 21px;
  54. }
  55. .graph-percentage p {
  56. text-align: right;
  57. margin: 0;
  58. line-height: 14px;
  59. }
  60. .graph-text {
  61. margin: 0;
  62. }
  63. @include media-breakpoint-down(sm) {
  64. .graph-box {
  65. width: 50%;
  66. }
  67. .info-box {
  68. width: 50%;
  69. }
  70. }
  71. @include media-breakpoint-down(xs) {
  72. .error-container {
  73. flex-direction: column;
  74. }
  75. .graph-box {
  76. width: 100%;
  77. }
  78. .info-box {
  79. width: 100%;
  80. }
  81. .error-full-width {
  82. width: 100%;
  83. }
  84. }