User:Jeremy/sandbox: Difference between revisions

From WikiMSK
No edit summary
(Replaced content with "{{Test|section3=Test3|section3-title=test|section3-text=test}}")
Tag: Replaced
Line 1: Line 1:
{{Test|section3=Test3|section3-title=test|section3-text=test}}
{{Test|section3=Test3|section3-title=test|section3-text=test}}
<html>
<!--
ย 
ย  Radio version of tabs.
ย  Requirements:
ย  - not rely on specific IDs for CSS (the CSS shouldn't need to know specific IDs)
ย  - flexible for any number of unkown tabs [2-6]
ย  - accessible
ย  Caveats:
ย  - since these are checkboxes the tabs not tab-able, need to use arrow keys
ย  Also worth reading:
ย  http://simplyaccessible.com/article/danger-aria-tabs/
-->
<div class="tabset">
ย  <!-- Tab 1 -->
ย  <input type="radio" name="tabset" id="tab1" aria-controls="marzen" checked>
ย  <label for="tab1">Mรคrzen</label>
ย  <!-- Tab 2 -->
ย  <input type="radio" name="tabset" id="tab2" aria-controls="rauchbier">
ย  <label for="tab2">Rauchbier</label>
ย  <!-- Tab 3 -->
ย  <input type="radio" name="tabset" id="tab3" aria-controls="dunkles">
ย  <label for="tab3">Dunkles Bock</label>
ย 
ย  <div class="tab-panels">
ย  ย  <section id="marzen" class="tab-panel">
ย  ย  ย  <h2>6A. Mรคrzen</h2>
ย  ย  ย  <p><strong>Overall Impression:</strong> An elegant, malty German amber lager with a clean, rich, toasty and bready malt flavor, restrained bitterness, and a dry finish that encourages another drink. The overall malt impression is soft, elegant, and complex, with a rich aftertaste that is never cloying or heavy.</p>
ย  ย  ย  <p><strong>History:</strong> As the name suggests, brewed as a stronger โ€œMarch beerโ€ in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Mรคrzen name is much older than 1841; the early ones were dark brown, and in Austria the name implied a strength band (14 ยฐP) rather than a style. The German amber lager version (in the Viennese style of the time) was first served at Oktoberfest in 1872, a tradition that lasted until 1990 when the golden Festbier was adopted as the standard festival beer.</p>
ย  </section>
ย  ย  <section id="rauchbier" class="tab-panel">
ย  ย  ย  <h2>6B. Rauchbier</h2>
ย  ย  ย  <p><strong>Overall Impression:</strong>ย  An elegant, malty German amber lager with a balanced, complementary beechwood smoke character. Toasty-rich malt in aroma and flavor, restrained bitterness, low to high smoke flavor, clean fermentation profile, and an attenuated finish are characteristic.</p>
ย  ย  ย  <p><strong>History:</strong> A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Mรคrzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).</p>
ย  ย  </section>
ย  ย  <section id="dunkles" class="tab-panel">
ย  ย  ย  <h2>6C. Dunkles Bock</h2>
ย  ย  ย  <p><strong>Overall Impression:</strong> A dark, strong, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish.</p>
ย  ย  ย  <p><strong>History:</strong> Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. The name โ€œbockโ€ is based on a corruption of the name โ€œEinbeckโ€ in the Bavarian dialect, and was thus only used after the beer came to Munich. โ€œBockโ€ also means โ€œRamโ€ in German, and is often used in logos and advertisements.</p>
ย  ย  </section>
ย  </div>
ย 
</div>
<p><small>Source: <cite><a href="https://www.bjcp.org/stylecenter.php">BJCP Style Guidelines</a></cite></small></p>
<style>
/*
CSS for the main interaction
*/
.tabset > input[type="radio"] {
ย  position: absolute;
ย  left: -200vw;
}
.tabset .tab-panel {
ย  display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
ย  display: block;
}
/*
Styling
*/
body {
ย  font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
ย  color: #333;
ย  font-weight: 300;
}
.tabset > label {
ย  position: relative;
ย  display: inline-block;
ย  padding: 15px 15px 25px;
ย  border: 1px solid transparent;
ย  border-bottom: 0;
ย  cursor: pointer;
ย  font-weight: 600;
}
.tabset > label::after {
ย  content: "";
ย  position: absolute;
ย  left: 15px;
ย  bottom: 10px;
ย  width: 22px;
ย  height: 4px;
ย  background: #8d8d8d;
}
.tabset > label:hover,
.tabset > input:focus + label {
ย  color: #06c;
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
ย  background: #06c;
}
.tabset > input:checked + label {
ย  border-color: #ccc;
ย  border-bottom: 1px solid #fff;
ย  margin-bottom: -1px;
}
.tab-panel {
ย  padding: 30px 0;
ย  border-top: 1px solid #ccc;
}
/*
Demo purposes only
*/
*,
*:before,
*:after {
ย  box-sizing: border-box;
}
.tabset {
ย  max-width: 65em;
}
</style>
</html>

Revision as of 07:44, 18 April 2022

WELCOME TO WIKIMSK
The New Zealand Musculoskeletal Medicine Wiki