_alert.css.scss 538 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .alert {
  2. &.alert-error {
  3. color: #9D341C;
  4. padding: 20px;
  5. font-weight: 700;
  6. font-size: 1.4em;
  7. }
  8. }
  9. #error_explanation {
  10. border: 1px solid #9D341C;
  11. background: #FBE3E4;
  12. padding: 0;
  13. ul {
  14. list-style: none;
  15. margin: 0;
  16. li {
  17. border-bottom: 1px solid #9D341C;
  18. color: #9D341C;
  19. padding: 10px 20px;
  20. &:first-child {
  21. border-top: 1px solid #9D341C;
  22. }
  23. &:last-child {
  24. border-bottom: none;
  25. }
  26. }
  27. }
  28. margin-bottom: 20px;
  29. }
  30. .error {
  31. display: none;
  32. }