Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!--
Inspired by:
https://themeforest.net/item/cenus-modern-minimalist-website-template/480470?ref=blueberry1
-->

<aside id="sidebar">
  <nav>
    <li><a class="active" href="#">Active Item</a></li>
    <li><a href="#">Menu Item</a></li>
    <li><a href="#">Menu Item</a></li>
    <li><a href="#">Menu Item</a></li>
    <li><a href="#">Menu Item</a></li>
  </nav>
</aside>
<main>
  <h1>Main Title</h1>
  <p>
_a._ GENERAL. The health and general physical condition of a pigeon
largely depend on the amount of food, time of feeding, and the kind of
food provided. Pigeons should not refuse food unless they have just
been fed. They will be alert, active, happy, and much more manageable
if kept a little hungry. It is easy to overfeed pigeons so that they
become sluggish and listless. Many good pigeons have been spoiled by
overfeeding. The pigeoneer should hand-feed the birds and watch them
closely while they are eating because their appetite reflects their
general health and condition. Sick birds may be discovered by their
failure to eat. Pigeons become better acquainted with the pigeoneer
through hand-feeding, and he in turn can keep them alert and under
control.
  </p>
  <p>
_b._ METHOD. Feed pigeons _twice_ a day during training, light feeding
in the morning and heavier in the evening. After each exercise,
training, or other flight, call the pigeons into the loft and give them
a small quantity of feed as a reward. While the pigeons are taking
their morning exercise, clean the loft and place in it a fresh supply
of grit and drinking water. Call the birds in when they have completed
their exercises, then scatter the food slowly on the sand-covered floor
as the birds enter through the trap. Scatter the feed, a handful at
a time. Wait until the pigeons have eaten nearly all the feed before
distributing another handful. The feed should be well scattered so
that individual birds do not get all of the choice grains. No harm
is done if the pigeons eat some of the sand, providing it is clean,
as sand supplements grit as an aid to digestion. There are several
reasons why pigeons should be fed only a handful at a time. If the
whole amount of grain for one feeding is thrown on the floor at once,
the actual amount needed cannot be estimated exactly. If the amount
estimated was too little, the pigeons are underfed; if the amount was
excessive, the grain not immediately consumed becomes contaminated and
may cause sickness if eaten later. Another reason for scattering feed
in small quantities is to prevent the pigeons from picking out the
kinds of grain they particularly like and leaving those which contain
food elements they need for proper development. Pigeons always drink
immediately after feeding. When the first pigeon stops eating and takes
a drink, it is a sign that the pigeons have had enough food so do not
scatter any more grain.
  </p>
  <p>
_c._ BREEDING PIGEONS. Parent pigeons feed their young in the nest
by ejecting food from their own crops into the youngster’s crop.
Therefore, when young pigeons are in the nest, return in about 30
minutes after the initial feeding and offer additional food to the
parents. When the youngsters are approximately 18 days of age, start
placing a handful of grain each day in the back corner of the nest
compartment out of the way of the droppings. The parent pigeons will
eat a few grains in the presence of the youngsters. The youngsters will
imitate their parents and thus learn to eat by themselves more rapidly.
  </p>
  <p><a href="http://www.gutenberg.org/ebooks/55084">Read More</a></p>
</main>
              
            
!

CSS

              
                body {
  font-family: sans-serif;
  color: #111;
  line-height: 1.3;
}

h1, h2, h3, h4, h5 {
  color: #85144b;
}

a {
  color: #85144b;
  text-decoration: none;
  border-bottom: 1px solid #85144b;
}

aside#sidebar {
  position: fixed;
  width: 200px;
  height: 90vh;
  border-right: solid 3px #ccc;
}

main {
  margin-left: 230px;
  margin-right: 75px;
}

nav li {
  display: block;
  list-style: none;
}

nav a {
  display: block;
  padding: 10px 15px;
  margin-left: 10px;
  border-bottom: 1px solid #ccc;
  
  text-decoration: none;
  color: inherit;
}

nav a:hover, nav a:focus {
  background-color: #ccc;
}

nav a.active {
  background-color: #ccc;
  border-left: 5px solid #85144b;
}
              
            
!

JS

              
                
              
            
!
999px

Console