Merge pull request #258 from sgmap/add_alert_in_new_style
Css: add alert css to new style
This commit is contained in:
commit
2acf71ce97
3 changed files with 14 additions and 0 deletions
|
@ -3,3 +3,6 @@ $light-blue: rgba(61, 149, 236, 0.8);
|
||||||
$black: #333333;
|
$black: #333333;
|
||||||
$grey: #999999;
|
$grey: #999999;
|
||||||
$light-grey: #F8F8F8;
|
$light-grey: #F8F8F8;
|
||||||
|
$dark-red: #A94442;
|
||||||
|
$ligt-red: #EBCCD1;
|
||||||
|
$lighter-red: #F2DEDE;
|
||||||
|
|
10
app/assets/stylesheets/new_alert.scss
Normal file
10
app/assets/stylesheets/new_alert.scss
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.alert {
|
||||||
|
padding: 15px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-danger {
|
||||||
|
background-color: $lighter-red;
|
||||||
|
border-color: $light-red;
|
||||||
|
color: $dark-red;
|
||||||
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
// = require common
|
// = require common
|
||||||
// = require utils
|
// = require utils
|
||||||
// = require fonts
|
// = require fonts
|
||||||
|
// = require new_alert
|
||||||
// = require new_header
|
// = require new_header
|
||||||
// = require new_footer
|
// = require new_footer
|
||||||
// = require landing
|
// = require landing
|
||||||
|
|
Loading…
Reference in a new issue