You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
713 B
29 lines
713 B
@import 'compass/css3/border-radius'; |
|
@import 'compass/css3/text-shadow'; |
|
|
|
.content { |
|
#error_explanation { |
|
@include border-top-radius(6px); |
|
border-left: 1px solid #993624; |
|
border-right: 1px solid #993624; |
|
border-bottom: 1px solid #993624; |
|
h2 { |
|
background-color: #cc4831; |
|
color: white; |
|
padding: 10px 15px; |
|
margin: 0; |
|
@include text-shadow(none); |
|
@include border-top-radius(6px); |
|
} |
|
} |
|
.field_with_errors { |
|
display: inline; |
|
|
|
label { |
|
color: #cc4831; |
|
} |
|
input, textarea, select { |
|
border: 1px solid #cc4831; |
|
} |
|
} |
|
}
|
|
|