Skip to content

Commit

Permalink
Use kramdown syntax to form a dl element in cmd.md
Browse files Browse the repository at this point in the history
* Use css to hide dt elements when using foundation horizontal tabs
  • Loading branch information
reuben453 committed May 13, 2017
1 parent 2154955 commit 69e7faa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
12 changes: 9 additions & 3 deletions cmd.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@ you will work on and save your programs.

Select the operating system you are working on.

<dl id="install-tabs" data-tab="" class="tabs contained three-up">
| [OSX](#tab-osx) || [Linux](#tab-linux) || [Windows](#tab-windows) |
</dl>
{:.tabs.contained.three-up #install-tabs data-tab=""}
OSX
: {:.active} [OSX](#tab-osx)

Linux
: [Linux](#tab-linux)

Windows
: [Windows](#tab-windows)

<div id="install-content" class="tabs-content">

Expand Down
3 changes: 3 additions & 0 deletions stylesheets/tessel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ body {
text-align: center;
background: #008cba;
}
dl.tabs[data-tab] > dt {
display: none;
}
}
h1 {
letter-spacing: 0.04em;
Expand Down

0 comments on commit 69e7faa

Please sign in to comment.