28 lines
466 B
CSS
28 lines
466 B
CSS
@import "common.css";
|
|
|
|
.appContainer {
|
|
width: 70%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.appContainer div {
|
|
background-color: #EBEBEB;
|
|
margin: 20px;
|
|
padding: 0 0 35px 0;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.appContainer div img {
|
|
border-radius: 1em;
|
|
padding: 20px;
|
|
background-color: white;
|
|
height: 152px;
|
|
width: 152px;
|
|
margin: 35px;
|
|
}
|