_fail.scss 602 B

12345678910111213141516171819202122232425262728293031323334
  1. ._fail { // Don't use CSS variables, in case the browser doesn't support them.
  2. display: block;
  3. position: relative;
  4. top: 1.5rem;
  5. width: 24rem;
  6. max-width: 90%;
  7. margin: 0 auto;
  8. padding: 1rem 1.5rem;
  9. background: #eaefef;
  10. border-radius: 5px;
  11. @extend %border-box;
  12. &:after { // margin
  13. content: '';
  14. position: relative;
  15. top: 3rem;
  16. float: left;
  17. width: 1px;
  18. height: 1px;
  19. }
  20. }
  21. ._fail-title {
  22. margin: 0 0 1rem;
  23. font-size: 1rem;
  24. font-weight: bold;
  25. }
  26. ._fail-text, ._fail-list {
  27. margin: 0 0 1rem;
  28. font-size: .875rem;
  29. }
  30. ._fail-text:last-child { margin: 0; }