diff --git a/_layouts/default.html b/_layouts/default.html index b9c72ed..8787307 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -13,6 +13,12 @@ + +

{{ site.title | default: site.github.repository_name }}

{{ site.description | default: site.github.project_tagline }}

diff --git a/assets/css/style.scss b/assets/css/style.scss index ac8b8ca..ecc7e07 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -300,4 +300,47 @@ blockquote.warning { background-color: var(--dark-purple-trans); border: medium double var(--light-purple); padding: 5px 5px 5px 10px; +} + +#modal { + display: none; + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgb(0,0,0); + background-color: rgba(0,0,0,0.4); + } + +#modal-content { + background-color: #fefefe; + margin: 15% auto; + padding: 20px; + border: 1px solid #888; + width: 90%; + background-repeat: no-repeat; +} + +.close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; +} + +.close:hover, .close:focus { + color: black; + text-decoration: none; + cursor: pointer; +} + +#modal-content img.demo { + max-width: unset; + max-height: unset; + width: 100%; + margin: unset; + padding: unset; } \ No newline at end of file diff --git a/index.md b/index.md index f9add04..3d633a9 100644 --- a/index.md +++ b/index.md @@ -44,6 +44,46 @@ Once you are done setting up the rules you can hit the red `Separate Passages!` ## Showcase: -Here's an example workflow - - \ No newline at end of file +Here's an example workflow (left mouse click to enlarge) + + + + + \ No newline at end of file