skill-assessment-app/app/assets/stylesheets/pages/_error.scss

48 lines
736 B
SCSS
Raw Normal View History

2016-07-28 12:52:54 -05:00
.error {
text-align: center;
background-color: $accent-color-1;
color: #fff;
2016-08-04 17:25:12 -05:00
margin: 2rem 0 .5rem;
padding: .5rem 0;
2016-07-28 12:52:54 -05:00
}
.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;
}
}
2016-07-29 09:15:58 -05:00
.warning {
@extend .error;
background-color: #f39c12;
}
2016-08-04 18:03:23 -05:00
[data-id="live-coder-finish-later"] {
.warning {
margin-bottom: 2rem;
text-align: left;
padding: .5rem 1rem;
}
}
2016-07-28 12:52:54 -05:00
@media only screen and (min-width: $desktop) {
.error-header {
.page-title {
h1 {
font-size: 1.5rem;
}
}
.secondary-btn {
float:right;
}
}
}