34 lines
887 B
CSS
34 lines
887 B
CSS
/*
|
|
* This is a manifest file that'll be compiled into application.css.
|
|
*
|
|
* With Propshaft, assets are served efficiently without preprocessing steps. You can still include
|
|
* application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
|
|
* cascading order, meaning styles declared later in the document or manifest will override earlier ones,
|
|
* depending on specificity.
|
|
*
|
|
* Consider organizing styles into separate files for maintainability.
|
|
*/
|
|
|
|
/* JSON Validator Styles */
|
|
.json-valid {
|
|
border-color: #10b981 !important;
|
|
box-shadow: 0 0 0 1px #10b981 !important;
|
|
}
|
|
|
|
.json-invalid {
|
|
border-color: #ef4444 !important;
|
|
box-shadow: 0 0 0 1px #ef4444 !important;
|
|
}
|
|
|
|
.json-valid-status {
|
|
color: #10b981;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.json-invalid-status {
|
|
color: #ef4444;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|