43 lines
1.1 KiB
SCSS
43 lines
1.1 KiB
SCSS
// Place all the styles related to the Reposts controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
/* flash messages */
|
|
#error {
|
|
background-color: red;
|
|
}
|
|
#alert {
|
|
background-color: #ffffe0;
|
|
}
|
|
#notice {
|
|
background-color: green;
|
|
color: rgb(249, 249, 249);
|
|
}
|
|
#alert, #error, #notice {
|
|
border-bottom-color: #e6db55;
|
|
border-left-color: #e6db55;
|
|
border-right-color: #e6db55;
|
|
border-top-color: #e6db55;
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
border-left-style: solid;
|
|
border-left-width: 1px;
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
margin-bottom: 16px;
|
|
margin-left: 8px;
|
|
margin-right: 0px;
|
|
margin-top: 0px;
|
|
padding-bottom: 12px;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
padding-top: 12px;
|
|
}
|
|
.flash {
|
|
line-height: 1.75em;
|
|
}
|