Skip to content

Commit e0f0572

Browse files
authored
FVM & Metamask tutorials (#477)
1 parent 5bcc89f commit e0f0572

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+479
-26
lines changed

assets/scss/common/_custom.scss

+68
Original file line numberDiff line numberDiff line change
@@ -401,3 +401,71 @@ iframe {
401401
max-width: 100%;
402402
}
403403
}
404+
405+
406+
.before-begin {
407+
background-color: #f5f5f5;
408+
border-top: 1px solid #eaeaea;
409+
border-left: 1px solid #eaeaea;
410+
border-right: 1px solid #eaeaea;
411+
border-radius: 8px 8px 0px 0px;
412+
margin-bottom: 20px;
413+
}
414+
415+
[data-dark-mode] .before-begin {
416+
background-color: #3d3d3d;
417+
border-color: #6c6c6c;
418+
}
419+
420+
.before-begin .title {
421+
font-size: 28px;
422+
font-weight: bold;
423+
color: #3a3a3a;
424+
}
425+
426+
[data-dark-mode] .before-begin .title {
427+
color: #e0e0e0;
428+
}
429+
430+
.before-begin .inner-content {
431+
width: 100%;
432+
border-top: 1px solid #DEDEDEFF;
433+
border-radius: 0px 0px 6px 6px;
434+
}
435+
436+
[data-dark-mode] .before-begin .inner-content {
437+
border-top: 1px solid #ababab;
438+
}
439+
440+
[data-dark-mode] .before-begin .container {
441+
border-top: 1px solid #6c6c6c;
442+
border-radius: 0px 0px 6px 6px;
443+
}
444+
445+
.before-begin-element {
446+
background-color: #fafafa;
447+
border-bottom: 1px solid #DEDEDEFF;
448+
color: #313131;
449+
font-weight: bold;
450+
font-size: 20px;
451+
align-items: center;
452+
width: 100%;
453+
height: auto;
454+
padding: 6px;
455+
}
456+
457+
[data-dark-mode] .before-begin-element {
458+
background-color: #696969;
459+
border-bottom: 1px solid #ababab;
460+
color: white;
461+
}
462+
463+
.before-begin-element .title {
464+
color: #525252;
465+
text-transform: uppercase;
466+
font-size: 14px;
467+
}
468+
469+
[data-dark-mode] .before-begin-element .title {
470+
color: #e0e0e0;
471+
}

config/_default/menus/menus.en.toml

+28-1
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,44 @@
162162
identifier = "tutorials-ipfs"
163163
[tutorials.params]
164164
category = "ipfs"
165+
icon = "/logos/ipfs.svg"
166+
iconWidth = 23
167+
iconHeight = 23
165168
image = "/tutorials/intro-ipfs.png"
166169

167-
168170
[[tutorials]]
169171
name = "Building libp2p applications"
170172
weight = 20
171173
identifier = "tutorials-libp2p"
172174
[tutorials.params]
173175
category = "libp2p"
176+
icon = "/logos/libp2p.png"
177+
iconWidth = 22.9
178+
iconHeight = 26.4
174179
image = "/tutorials/libp2p.png"
175180

181+
[[tutorials]]
182+
name = "Building on the FVM"
183+
weight = 30
184+
identifier = "tutorials-fvm"
185+
[tutorials.params]
186+
category = "fvm"
187+
icon = "/logos/fvm.png"
188+
iconWidth = 14.71
189+
iconHeight = 22.30
190+
image = "/tutorials/fvm.png"
191+
192+
[[tutorials]]
193+
name = "Introduction to Metamask"
194+
weight = 40
195+
identifier = "tutorials-metamask-intro"
196+
[tutorials.params]
197+
category = "web3"
198+
icon = "/logos/metamask.png"
199+
iconWidth = 22
200+
iconHeight = 22
201+
image = "/tutorials/metamask.jpeg"
202+
176203
# [[tutorials]]
177204
# name = "Working with IPLD structures"
178205
# weight = 30

content/en/tutorials/fvm/what-is-fvm.md

0 commit comments

Comments
 (0)