skill-assessment-app/app/assets/stylesheets/pages/_error.scss
Jennifer Siegfried 635297884d Misc style updates
2016-08-04 17:03:23 -06:00

48 lines
736 B
SCSS

.error {
text-align: center;
background-color: $accent-color-1;
color: #fff;
margin: 2rem 0 .5rem;
padding: .5rem 0;
}
.error-header {
@include outer-container;
.page-title {
display: inline-block;
h1 {
font-family: $heading-font-face;
font-size: 1.5rem;
}
}
.secondary-btn {
margin-top: 1rem;
}
}
.warning {
@extend .error;
background-color: #f39c12;
}
[data-id="live-coder-finish-later"] {
.warning {
margin-bottom: 2rem;
text-align: left;
padding: .5rem 1rem;
}
}
@media only screen and (min-width: $desktop) {
.error-header {
.page-title {
h1 {
font-size: 1.5rem;
}
}
.secondary-btn {
float:right;
}
}
}