1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
.sponsors {
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
margin: 1rem 0;
}
.sponsors > div {
text-align: center;
width: 33%;
padding-bottom: 20px;
}
.sponsors span {
display: block;
}
@media screen and (max-width: 599px) {
.sponsors span {
display: none;
}
}
.sponsors img {
width: 65%;
border-radius: 5px;
}
/*blog post*/
aside.blog {
display: flex;
align-items: center;
}
aside.blog img {
width: 50px;
height: 50px;
border-radius: 25px;
margin-right: 20px;
}
/* Define the company grid layout */
#grid-container {
width: 100%;
text-align: center;
}
#company-grid {
display: inline-block;
margin: 0 auto;
gap: 10px;
align-content: center;
justify-content: center;
grid-auto-flow: column;
}
[data-md-color-scheme="slate"] #company-grid {
background-color: #ffffff;
border-radius: .5rem;
}
.tile {
display: flex;
text-align: center;
width: 120px;
height: 120px;
display: inline-block;
margin: 10px;
padding: 5px;
border-radius: .5rem;
}
.tile img {
width: 100px;
}
|