Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,11 @@ section[view] h1 {

pre, code {
border-radius: 0.7em;
background: rgb(30,30,30);
}

pre > code {

}
code {
margin: 0 0.5em;
padding: 0 0.5em;
Expand All @@ -165,7 +167,10 @@ code {
pre {
overflow: scroll;
text-align: center;
margin: 0 6em 1.612em;
border-radius: 7.7em;
margin: 0 2em 1.612em;
background: rgb(30,30,30);
border: 30px double #3b3b3b;
}

section#installation pre em.comment
Expand Down Expand Up @@ -206,13 +211,12 @@ section#installation pre em.comment
/* HOLY GRAIL */

body { display: flex; flex-flow: column }
body > main, body > aside { flex: 1 }

@media (orientation: landscape) {

body { flex-flow: row wrap }
body > main { margin-left: 20vw; flex-basis: 55vw }
body > aside { flex-basis: 25vw }
body > main { margin-left: 20vw; flex-basis: 55vw; max-width: 55vw; }
body > aside { flex-basis: 24vw } /* This should be 25 WTF? */
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is everything border-box? that can add some surprise outer size to things

body > nav {
top: 0;
left: 0;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h1>Easy Installation</h1>

<pre><code>
<em class=comment>&lt;!-- http(s): protocol required to run locally --&gt;</em>
&lt;script nomodule crossorigin src=https://unpkg.com/snuggsi&gt;&lt;/script&gt;
&lt;script src=https://unpkg.com/snuggsi&gt;&lt;/script&gt;
</pre></code>

<p class=center>Et Voila <em>(that's it!)</em> ツ
Expand Down