mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
42 lines
542 B
CSS
42 lines
542 B
CSS
.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;
|
|
}
|