mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-27 06:19:21 +00:00
24 lines
405 B
CSS
24 lines
405 B
CSS
/**
|
|
* About group page
|
|
*
|
|
* @author Pierre Hubert
|
|
*/
|
|
|
|
.about-group-page .props-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.about-group-page .props-list .prop {
|
|
width: 50%;
|
|
padding: 5px;
|
|
margin-bottom: 5px;
|
|
min-height: 70px;
|
|
max-width: 200px;
|
|
}
|
|
|
|
.about-group-page .props-list .prop .title {
|
|
font-weight: bold;
|
|
} |