Skip to content

Commit

Permalink
deploy: 707b159
Browse files Browse the repository at this point in the history
  • Loading branch information
pandermatt committed Jan 15, 2024
1 parent 04c5d16 commit d07a88e
Show file tree
Hide file tree
Showing 38 changed files with 182 additions and 44 deletions.
4 changes: 3 additions & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Laptop Setup Guide for macOS</li><li class="chapter-item expanded "><a href="index.html"><strong aria-hidden="true">1.</strong> Overview</a></li><li class="chapter-item expanded "><a href="non-technical-setup/index.html"><strong aria-hidden="true">2.</strong> Non-technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="non-technical-setup/macos_setup.html"><strong aria-hidden="true">2.1.</strong> macOS Setup</a></li><li class="chapter-item expanded "><a href="non-technical-setup/software_programs.html"><strong aria-hidden="true">2.2.</strong> Software & Programs</a></li><li class="chapter-item expanded "><a href="non-technical-setup/finish_setup.html"><strong aria-hidden="true">2.3.</strong> Finish Setup</a></li></ol></li><li class="chapter-item expanded "><a href="technical-setup/index.html"><strong aria-hidden="true">3.</strong> Technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="technical-setup/xcode.html"><strong aria-hidden="true">3.1.</strong> XCode</a></li><li class="chapter-item expanded "><a href="technical-setup/iterm2.html"><strong aria-hidden="true">3.2.</strong> iTerm2</a></li><li class="chapter-item expanded "><a href="technical-setup/homebrew.html"><strong aria-hidden="true">3.3.</strong> Homebrew</a></li><li class="chapter-item expanded "><a href="technical-setup/vim.html"><strong aria-hidden="true">3.4.</strong> Console Editor</a></li><li class="chapter-item expanded "><a href="technical-setup/zsh.html"><strong aria-hidden="true">3.5.</strong> ZSH</a></li><li class="chapter-item expanded "><a href="technical-setup/git.html"><strong aria-hidden="true">3.6.</strong> Git</a></li><li class="chapter-item expanded "><a href="technical-setup/git_flow.html"><strong aria-hidden="true">3.7.</strong> Git Flow</a></li><li class="chapter-item expanded "><a href="technical-setup/gpg.html"><strong aria-hidden="true">3.8.</strong> GPG</a></li><li class="chapter-item expanded "><a href="technical-setup/setup_ssh_key.html"><strong aria-hidden="true">3.9.</strong> Setup SSH Key</a></li><li class="chapter-item expanded "><a href="technical-setup/asdf.html"><strong aria-hidden="true">3.10.</strong> asdf</a></li><li class="chapter-item expanded "><a href="technical-setup/yarn.html"><strong aria-hidden="true">3.11.</strong> Yarn</a></li><li class="chapter-item expanded "><a href="technical-setup/postgresql.html"><strong aria-hidden="true">3.12.</strong> PostgreSQL</a></li><li class="chapter-item expanded "><a href="technical-setup/redis.html"><strong aria-hidden="true">3.13.</strong> Redis</a></li><li class="chapter-item expanded "><a href="technical-setup/heroku_cli.html"><strong aria-hidden="true">3.14.</strong> Heroku CLI</a></li><li class="chapter-item expanded "><a href="technical-setup/renuo_cli.html"><strong aria-hidden="true">3.15.</strong> Renuo CLI</a></li><li class="chapter-item expanded "><a href="technical-setup/important_homebrew_apps.html"><strong aria-hidden="true">3.16.</strong> Important Homebrew Apps</a></li><li class="chapter-item expanded "><a href="technical-setup/verify_setup.html"><strong aria-hidden="true">3.17.</strong> Verify Setup</a></li></ol></li><li class="chapter-item expanded "><a href="nice_to_have/index.html"><strong aria-hidden="true">4.</strong> Nice to have</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="nice_to_have/rubymine.html"><strong aria-hidden="true">4.1.</strong> Rubymine</a></li><li class="chapter-item expanded "><a href="nice_to_have/google_chrome_shortcuts.html"><strong aria-hidden="true">4.2.</strong> Google Chrome Shortcuts</a></li><li class="chapter-item expanded "><a href="nice_to_have/raycast.html"><strong aria-hidden="true">4.3.</strong> Raycast</a></li><li class="chapter-item expanded "><a href="nice_to_have/autojump.html"><strong aria-hidden="true">4.4.</strong> Autojump</a></li><li class="chapter-item expanded "><a href="nice_to_have/increase_github_quota.html"><strong aria-hidden="true">4.5.</strong> Increase GitHub Quota</a></li><li class="chapter-item expanded "><a href="nice_to_have/puma_or_hotel.html"><strong aria-hidden="true">4.6.</strong> Puma-dev or Hotel</a></li></ol></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
<div class="sidebar-resize-indicator"></div>
</div>
</nav>

<!-- Track and set sidebar scroll position -->
Expand Down
35 changes: 27 additions & 8 deletions css/chrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,14 @@ pre > .buttons button {
/* On mobile, make it easier to tap buttons. */
padding: 0.3rem 1rem;
}

.sidebar-resize-indicator {
/* Hide resize indicator on devices with limited accuracy */
display: none;
}
}
pre > code {
display: block;
padding: 1rem;
}

Expand Down Expand Up @@ -422,22 +428,35 @@ ul#searchresults span.teaser em {
position: absolute;
cursor: col-resize;
width: 0;
right: 0;
right: calc(var(--sidebar-resize-indicator-width) * -1);
top: 0;
bottom: 0;
display: flex;
align-items: center;
}

.sidebar-resize-handle .sidebar-resize-indicator {
width: 100%;
height: 12px;
background-color: var(--icons);
margin-inline-start: var(--sidebar-resize-indicator-space);
}

[dir=rtl] .sidebar .sidebar-resize-handle {
left: calc(var(--sidebar-resize-indicator-width) * -1);
right: unset;
}
[dir=rtl] .sidebar .sidebar-resize-handle { right: unset; left: 0; }
.js .sidebar .sidebar-resize-handle {
cursor: col-resize;
width: 5px;
width: calc(var(--sidebar-resize-indicator-width) - var(--sidebar-resize-indicator-space));
}
/* sidebar-hidden */
#sidebar-toggle-anchor:not(:checked) ~ .sidebar {
transform: translateX(calc(0px - var(--sidebar-width)));
transform: translateX(calc(0px - var(--sidebar-width) - var(--sidebar-resize-indicator-width)));
z-index: -1;
}
[dir=rtl] #sidebar-toggle-anchor:not(:checked) ~ .sidebar {
transform: translateX(var(--sidebar-width));
transform: translateX(calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width)));
}
.sidebar::-webkit-scrollbar {
background: var(--sidebar-bg);
Expand All @@ -448,15 +467,15 @@ ul#searchresults span.teaser em {

/* sidebar-visible */
#sidebar-toggle-anchor:checked ~ .page-wrapper {
transform: translateX(var(--sidebar-width));
transform: translateX(calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width)));
}
[dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper {
transform: translateX(calc(0px - var(--sidebar-width)));
transform: translateX(calc(0px - var(--sidebar-width) - var(--sidebar-resize-indicator-width)));
}
@media only screen and (min-width: 620px) {
#sidebar-toggle-anchor:checked ~ .page-wrapper {
transform: none;
margin-inline-start: var(--sidebar-width);
margin-inline-start: calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width));
}
[dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper {
transform: none;
Expand Down
2 changes: 1 addition & 1 deletion css/print.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}

#page-wrapper.page-wrapper {
transform: none;
transform: none !important;
margin-inline-start: 0px;
overflow-y: initial;
}
Expand Down
2 changes: 2 additions & 0 deletions css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

:root {
--sidebar-width: 300px;
--sidebar-resize-indicator-width: 8px;
--sidebar-resize-indicator-space: 2px;
--page-padding: 15px;
--content-max-width: 750px;
--menu-bar-height: 50px;
Expand Down
49 changes: 48 additions & 1 deletion highlight.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Laptop Setup Guide for macOS</li><li class="chapter-item expanded "><a href="index.html" class="active"><strong aria-hidden="true">1.</strong> Overview</a></li><li class="chapter-item expanded "><a href="non-technical-setup/index.html"><strong aria-hidden="true">2.</strong> Non-technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="non-technical-setup/macos_setup.html"><strong aria-hidden="true">2.1.</strong> macOS Setup</a></li><li class="chapter-item expanded "><a href="non-technical-setup/software_programs.html"><strong aria-hidden="true">2.2.</strong> Software & Programs</a></li><li class="chapter-item expanded "><a href="non-technical-setup/finish_setup.html"><strong aria-hidden="true">2.3.</strong> Finish Setup</a></li></ol></li><li class="chapter-item expanded "><a href="technical-setup/index.html"><strong aria-hidden="true">3.</strong> Technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="technical-setup/xcode.html"><strong aria-hidden="true">3.1.</strong> XCode</a></li><li class="chapter-item expanded "><a href="technical-setup/iterm2.html"><strong aria-hidden="true">3.2.</strong> iTerm2</a></li><li class="chapter-item expanded "><a href="technical-setup/homebrew.html"><strong aria-hidden="true">3.3.</strong> Homebrew</a></li><li class="chapter-item expanded "><a href="technical-setup/vim.html"><strong aria-hidden="true">3.4.</strong> Console Editor</a></li><li class="chapter-item expanded "><a href="technical-setup/zsh.html"><strong aria-hidden="true">3.5.</strong> ZSH</a></li><li class="chapter-item expanded "><a href="technical-setup/git.html"><strong aria-hidden="true">3.6.</strong> Git</a></li><li class="chapter-item expanded "><a href="technical-setup/git_flow.html"><strong aria-hidden="true">3.7.</strong> Git Flow</a></li><li class="chapter-item expanded "><a href="technical-setup/gpg.html"><strong aria-hidden="true">3.8.</strong> GPG</a></li><li class="chapter-item expanded "><a href="technical-setup/setup_ssh_key.html"><strong aria-hidden="true">3.9.</strong> Setup SSH Key</a></li><li class="chapter-item expanded "><a href="technical-setup/asdf.html"><strong aria-hidden="true">3.10.</strong> asdf</a></li><li class="chapter-item expanded "><a href="technical-setup/yarn.html"><strong aria-hidden="true">3.11.</strong> Yarn</a></li><li class="chapter-item expanded "><a href="technical-setup/postgresql.html"><strong aria-hidden="true">3.12.</strong> PostgreSQL</a></li><li class="chapter-item expanded "><a href="technical-setup/redis.html"><strong aria-hidden="true">3.13.</strong> Redis</a></li><li class="chapter-item expanded "><a href="technical-setup/heroku_cli.html"><strong aria-hidden="true">3.14.</strong> Heroku CLI</a></li><li class="chapter-item expanded "><a href="technical-setup/renuo_cli.html"><strong aria-hidden="true">3.15.</strong> Renuo CLI</a></li><li class="chapter-item expanded "><a href="technical-setup/important_homebrew_apps.html"><strong aria-hidden="true">3.16.</strong> Important Homebrew Apps</a></li><li class="chapter-item expanded "><a href="technical-setup/verify_setup.html"><strong aria-hidden="true">3.17.</strong> Verify Setup</a></li></ol></li><li class="chapter-item expanded "><a href="nice_to_have/index.html"><strong aria-hidden="true">4.</strong> Nice to have</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="nice_to_have/rubymine.html"><strong aria-hidden="true">4.1.</strong> Rubymine</a></li><li class="chapter-item expanded "><a href="nice_to_have/google_chrome_shortcuts.html"><strong aria-hidden="true">4.2.</strong> Google Chrome Shortcuts</a></li><li class="chapter-item expanded "><a href="nice_to_have/raycast.html"><strong aria-hidden="true">4.3.</strong> Raycast</a></li><li class="chapter-item expanded "><a href="nice_to_have/autojump.html"><strong aria-hidden="true">4.4.</strong> Autojump</a></li><li class="chapter-item expanded "><a href="nice_to_have/increase_github_quota.html"><strong aria-hidden="true">4.5.</strong> Increase GitHub Quota</a></li><li class="chapter-item expanded "><a href="nice_to_have/puma_or_hotel.html"><strong aria-hidden="true">4.6.</strong> Puma-dev or Hotel</a></li></ol></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
<div class="sidebar-resize-indicator"></div>
</div>
</nav>

<!-- Track and set sidebar scroll position -->
Expand Down
4 changes: 3 additions & 1 deletion nice_to_have/autojump.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Laptop Setup Guide for macOS</li><li class="chapter-item expanded "><a href="../index.html"><strong aria-hidden="true">1.</strong> Overview</a></li><li class="chapter-item expanded "><a href="../non-technical-setup/index.html"><strong aria-hidden="true">2.</strong> Non-technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../non-technical-setup/macos_setup.html"><strong aria-hidden="true">2.1.</strong> macOS Setup</a></li><li class="chapter-item expanded "><a href="../non-technical-setup/software_programs.html"><strong aria-hidden="true">2.2.</strong> Software & Programs</a></li><li class="chapter-item expanded "><a href="../non-technical-setup/finish_setup.html"><strong aria-hidden="true">2.3.</strong> Finish Setup</a></li></ol></li><li class="chapter-item expanded "><a href="../technical-setup/index.html"><strong aria-hidden="true">3.</strong> Technical Setup</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../technical-setup/xcode.html"><strong aria-hidden="true">3.1.</strong> XCode</a></li><li class="chapter-item expanded "><a href="../technical-setup/iterm2.html"><strong aria-hidden="true">3.2.</strong> iTerm2</a></li><li class="chapter-item expanded "><a href="../technical-setup/homebrew.html"><strong aria-hidden="true">3.3.</strong> Homebrew</a></li><li class="chapter-item expanded "><a href="../technical-setup/vim.html"><strong aria-hidden="true">3.4.</strong> Console Editor</a></li><li class="chapter-item expanded "><a href="../technical-setup/zsh.html"><strong aria-hidden="true">3.5.</strong> ZSH</a></li><li class="chapter-item expanded "><a href="../technical-setup/git.html"><strong aria-hidden="true">3.6.</strong> Git</a></li><li class="chapter-item expanded "><a href="../technical-setup/git_flow.html"><strong aria-hidden="true">3.7.</strong> Git Flow</a></li><li class="chapter-item expanded "><a href="../technical-setup/gpg.html"><strong aria-hidden="true">3.8.</strong> GPG</a></li><li class="chapter-item expanded "><a href="../technical-setup/setup_ssh_key.html"><strong aria-hidden="true">3.9.</strong> Setup SSH Key</a></li><li class="chapter-item expanded "><a href="../technical-setup/asdf.html"><strong aria-hidden="true">3.10.</strong> asdf</a></li><li class="chapter-item expanded "><a href="../technical-setup/yarn.html"><strong aria-hidden="true">3.11.</strong> Yarn</a></li><li class="chapter-item expanded "><a href="../technical-setup/postgresql.html"><strong aria-hidden="true">3.12.</strong> PostgreSQL</a></li><li class="chapter-item expanded "><a href="../technical-setup/redis.html"><strong aria-hidden="true">3.13.</strong> Redis</a></li><li class="chapter-item expanded "><a href="../technical-setup/heroku_cli.html"><strong aria-hidden="true">3.14.</strong> Heroku CLI</a></li><li class="chapter-item expanded "><a href="../technical-setup/renuo_cli.html"><strong aria-hidden="true">3.15.</strong> Renuo CLI</a></li><li class="chapter-item expanded "><a href="../technical-setup/important_homebrew_apps.html"><strong aria-hidden="true">3.16.</strong> Important Homebrew Apps</a></li><li class="chapter-item expanded "><a href="../technical-setup/verify_setup.html"><strong aria-hidden="true">3.17.</strong> Verify Setup</a></li></ol></li><li class="chapter-item expanded "><a href="../nice_to_have/index.html"><strong aria-hidden="true">4.</strong> Nice to have</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../nice_to_have/rubymine.html"><strong aria-hidden="true">4.1.</strong> Rubymine</a></li><li class="chapter-item expanded "><a href="../nice_to_have/google_chrome_shortcuts.html"><strong aria-hidden="true">4.2.</strong> Google Chrome Shortcuts</a></li><li class="chapter-item expanded "><a href="../nice_to_have/raycast.html"><strong aria-hidden="true">4.3.</strong> Raycast</a></li><li class="chapter-item expanded "><a href="../nice_to_have/autojump.html" class="active"><strong aria-hidden="true">4.4.</strong> Autojump</a></li><li class="chapter-item expanded "><a href="../nice_to_have/increase_github_quota.html"><strong aria-hidden="true">4.5.</strong> Increase GitHub Quota</a></li><li class="chapter-item expanded "><a href="../nice_to_have/puma_or_hotel.html"><strong aria-hidden="true">4.6.</strong> Puma-dev or Hotel</a></li></ol></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
<div class="sidebar-resize-indicator"></div>
</div>
</nav>

<!-- Track and set sidebar scroll position -->
Expand Down
Loading

0 comments on commit d07a88e

Please sign in to comment.