Skip to content

Commit 57fdc5c

Browse files
committed
2 parents 5f88dda + 58922a7 commit 57fdc5c

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

docs/_css/extra_css.css

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
img {
2-
height: auto;
3-
width: auto;
4-
}
1+
52

63
.shadow {
74
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
@@ -10,14 +7,25 @@ img {
107
.zoom {
118
transition: transform ease-in-out 0.5s;
129
cursor: zoom-in;
10+
height: auto;
11+
width: auto;
12+
border: 1px solid #ddd;
13+
border-radius: 6px;
14+
padding: 4px;
15+
background-color: #fff;
1316
}
1417

1518
.image-zoom-large {
16-
transform: scale(2);
19+
transform: scale(1);
1720
cursor: zoom-out;
1821
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
1922
z-index: 100;
2023
position: absolute;
24+
position: absolute;
25+
26+
left: 50%;
27+
transform: translate(-50%, -50%);
28+
2129
}
2230

2331
.md-typeset__table{

docs/_js/extra_js.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
document.querySelectorAll('.zoom').forEach(item => {
2-
item.addEventListener('click', function () {
3-
this.classList.toggle('image-zoom-large');
4-
})
5-
});
1+
document.querySelectorAll('.zoom').forEach((item) => {
2+
item.addEventListener('click', function() {
3+
this.classList.toggle('image-zoom-large');
4+
});
5+
});

docs/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ This video shows how an example of workflow with a complete MLOps project. This
2929

3030
### Architecture
3131
The following diagram shows the complete MLOps flow used on the tutorial. Since the guide is modular, a team can chose to swap tools at any point due to project preferences and use cases.
32-
<img src="./assets/DiagramMLOPs.png" alt="drawing" />
32+
33+
![Diagram](./assets/DiagramMLOPs.png){.zoom}
3334

3435
### Project Tools
3536
The main tools discussed in the guide are shown in the following table.

0 commit comments

Comments
 (0)