12345678910111213141516171819202122232425262728293031323334353637 |
- .alert {
- &.alert-error {
- color: #9D341C;
- padding: 20px;
- font-weight: 700;
- font-size: 1.4em;
- }
- }
- #error_explanation {
- border: 1px solid #9D341C;
- background: #FBE3E4;
- padding: 0;
- ul {
- list-style: none;
- margin: 0;
- li {
- border-bottom: 1px solid #9D341C;
- color: #9D341C;
- padding: 10px 20px;
- &:first-child {
- border-top: 1px solid #9D341C;
- }
- &:last-child {
- border-bottom: none;
- }
- }
- }
- margin-bottom: 20px;
- }
- .error {
- display: none;
- }
|