Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions assets/css/partners.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.partner-images {
display: flex;
flex-direction: row;
max-width: 900px;
justify-content: center;
margin: 30px;
}

.partner-images > a {
height: 75px;
width: auto;
padding: 0 30px;
margin: 30px 0;
}

@media only screen and (max-width: 850px) {
.partner-images {
flex-direction: column;
}

.partner-images > img {
height: auto;
margin: 30px 0;
padding: 0;
}
}
29 changes: 0 additions & 29 deletions layouts/shortcodes/partners.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,3 @@
<img src="/images/logos/nvidia.png" width="200" alt="Logo of NVIDIA" />
</a>
</div>

<style>
.partner-images {
display: flex;
flex-direction: row;
max-width: 900px;
justify-content: center;
margin: 30px;
}

.partner-images > a {
height: 75px;
width: auto;
padding: 0 30px;
margin: 30px 0;
}

@media only screen and (max-width: 850px) {
.partner-images {
flex-direction: column;
}

.partner-images > img {
height: auto;
margin: 30px 0;
padding: 0;
}
}
</style>