This commit is contained in:
vosaul 2020-06-18 13:34:34 +03:00
Родитель 022631bb49
Коммит c2ee04066b
2 изменённых файлов: 13 добавлений и 5 удалений

Просмотреть файл

@ -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]

Просмотреть файл

@ -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;
@ -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%;
@ -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;
}