Skip to content

Commit

Permalink
Styled with Movement labs colors
Browse files Browse the repository at this point in the history
  • Loading branch information
andygolay committed Mar 26, 2024
1 parent fc551e7 commit 594629b
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 3 deletions.
4 changes: 2 additions & 2 deletions quizzes/ch01-01-features-of-move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ type = "MultipleChoice"
prompt.prompt = """
Which of the following is NOT a feature of Move?
"""
answer.answer = "Closed-source, not community-driven"
answer.answer = "Closed-source"
prompt.distractors = [
"Resources concept",
"Move Prover",
"Complated into BCS Bytecode"
"Compiles into BCS Bytecode"
]
context = """
Move language is open source, and so are all popular versions.
Expand Down
2 changes: 1 addition & 1 deletion src/ch01-01-the-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Move is a significant advancement in blockchain technology, offering a secure an

## References

1. The language of money, Part one: Why build Move? Diem blog: https://www.diem.com/en-us/blog/why-build-move/
1. The language of money, Part one: Why build Move? Diem blog: [https://www.diem.com/en-us/blog/why-build-move/](https://www.diem.com/en-us/blog/why-build-move/)
84 changes: 84 additions & 0 deletions theme/2018-edition.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,87 @@ span.caption code {
font-size: 0.875em;
font-weight: 400;
}

blockquote {
background: #FFD013;
padding: 20px;
border-radius: 10px;
}

html {
background-color: #000!important;
}

.page, .sidebar-resize-handle {
background-color: #000;
color: #fff;
}

a.header {
color: #fff!important;
}

.sidebar-scrollbox {
background: #FFD013!important;
color: #000!important;
}

.prompt {
background: rgba(255,208,19, 0.5)!important;
color: #000!important;
}

h2 {
margin-top: 20px;
}


.mdbook-quiz {
border-color: #FFD013!important;
}

.menu-bar {
background-color: rgba(255,208,19, 1)!important;
border: #000!important;
border-width: 2px!important;
}

.menu-title {
color: #000!important;
}

.start, input[type="submit"], button {
padding: 8px 15px !important;
font-size: 16px;
text-transform: uppercase;
color: #fff!important;
background-color: #0337FF!important;
transition: background-color .25s ease-in-out, color .25s ease-in-out, box-shadow .25s ease-in-out;
}

.start:hover, input[type="submit"]:hover, button:hover {
color: #000 !important;
background-color: #fff !important;
}

.expanded {
color: #000!important;
}

.trigger {
display:none!important;
}

#theme-toggle {
display: none!important;
}

blockquote h2, blockquote a.header {
margin-top: 20px;
color: #000!important;
}

#search-toggle {
padding: 0 8px!important;
}

0 comments on commit 594629b

Please sign in to comment.