mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
55 lines
1015 B
SCSS
55 lines
1015 B
SCSS
// Access to Bootstrap variables and mixins
|
|
@import '~ChillMainAssets/module/bootstrap/shared';
|
|
|
|
// Chill mixins
|
|
@import './scss/mixins';
|
|
|
|
// Chill entity render box system
|
|
@import './scss/render_box';
|
|
|
|
// Chill flex responsive table/block presentation
|
|
@import './scss/flex_table';
|
|
|
|
/*
|
|
* Specific rules
|
|
*/
|
|
|
|
.custom_field_no_data,
|
|
.chill-no-data-statement {
|
|
font-style: italic;
|
|
}
|
|
|
|
// styles communs pour tous les bandeaux
|
|
div.banner {
|
|
|
|
a.phone,
|
|
a.email {
|
|
color: white;
|
|
}
|
|
ul.list-content {
|
|
//margin: 0 auto;
|
|
}
|
|
span.age {
|
|
margin-left: 0.5em;
|
|
&:before { content: '('; }
|
|
&:after { content: ')'; }
|
|
}
|
|
div.members {
|
|
display: flex;
|
|
flex-direction: row;
|
|
span.badge-member {
|
|
border: 1px solid #ffffff3b;
|
|
color: #ffffff;
|
|
padding: 0.4em 0.8em;
|
|
margin-right: 0.3em;
|
|
border-radius: 8px;
|
|
&.holder {
|
|
order: -1;
|
|
}
|
|
&.child {
|
|
order: 2;
|
|
}
|
|
}
|
|
}
|
|
}
|