-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed d230ec6 with MkDocs version: 1.6.0
- Loading branch information
1 parent
5208501
commit fc88124
Showing
57 changed files
with
593 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
.no-bullet { | ||
list-style: none; | ||
} | ||
.checklist-progressbar input[type="checkbox"] { | ||
cursor: pointer; | ||
margin-left: -1.75em; | ||
margin-left: -1.75em; | ||
} | ||
.checklist-progressbar .progressbar { | ||
box-sizing: content-box; | ||
position: relative; | ||
border-radius: 1px; | ||
background-color: #ddd; | ||
height: 10px; | ||
margin-top: 0em; | ||
margin-right: 2em; | ||
} | ||
.checklist-progressbar .progressbar .progressbar-inner { | ||
display: block; | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 0%; | ||
height: 100%; | ||
background-color: green; | ||
transition: all .3s linear; | ||
} | ||
|
||
.checklist-progressbar .progressbar .progressbar-value { | ||
position: absolute; | ||
top: -.25em; | ||
right: -2.6em; | ||
min-width: 2.6em; | ||
width: 15%; | ||
font-size: 1em; | ||
line-height: 1; | ||
text-align: right; | ||
} | ||
|
||
.checklist-progressbar input:checked + label { | ||
font-style: italic; | ||
text-decoration: line-through; | ||
} | ||
|
||
.checklist-progressbar li { | ||
position: relative; | ||
} | ||
|
||
.checklist-progressbar input + label::before{ | ||
content:''; | ||
display:block; | ||
position:absolute; | ||
top: 50%; | ||
left: 1.5em; | ||
width:0%; | ||
height:1px; | ||
background: green; | ||
transition:.25s ease-in-out; | ||
} | ||
|
||
.checklist-progressbar input:checked + label::before{ | ||
width: calc(100% - 3em); | ||
} | ||
.floating-panel { | ||
width: 12%; | ||
position: fixed; | ||
right: 17%; | ||
bottom: 0%; | ||
border-radius: 0px; | ||
padding: 1em; | ||
} |
Oops, something went wrong.