28 lines
394 B
CSS
28 lines
394 B
CSS
/* kubernetes-basics tutorials */
|
|
.tutorials-modules {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.module {
|
|
width: 30%;
|
|
text-align: center;
|
|
}
|
|
|
|
.module img {
|
|
width: 100%;
|
|
}
|
|
|
|
.module h5 {
|
|
margin: 10px 0 0;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.module {
|
|
width: 45%;
|
|
text-align: center;
|
|
}
|
|
}
|