Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion _data/blog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
- title: Using GitHub Actions & Azure Machine Learning for MLOps
info : May 26, 2020, David Aronchick. An overview of GitHub Actions that integrate with Azure Machine Learning.
link : "https://techcommunity.microsoft.com/t5/azure-ai/using-github-actions-amp-azure-machine-learning-for-mlops/ba-p/1419027"
tags : [cloud-integrations]
tags : [cloud-integrations]
16 changes: 12 additions & 4 deletions _sass/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,12 @@ li {
margin: 0 auto;
padding: 30px;
.content_grid {
display: grid;
gap: 1rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
.content_item {
margin: 10px 0;
width: 100%;
position: relative;
padding: 0 20px;
border: 1px solid $grey-color-dark;
Expand Down Expand Up @@ -463,8 +466,9 @@ li {
display: block;
padding: 20px;
}
.content_grid {
grid-template-columns: 1fr 1fr;
.content .content_grid .content_item {
width: 42%;
margin: 1%;
}
.author_image {
width: 50%;
Expand Down Expand Up @@ -554,6 +558,10 @@ li {
}
}
@media screen and (min-width: 1440px) {
.content .content_grid .content_item {
width: 27%;
margin: 10px;
}
.document {
grid-template-columns: 1fr 260px;
}
Expand Down