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

              
                <div class='buttons'>
  <a href='#' title='Title 1'>
    <i data-feather="coffee"></i>
  </a>
  <a class='active' href='#' title='Title 2'>
    <i data-feather="box"></i>
  </a>
  <a href='#' title='Title 3'>
    <i data-feather="heart"></i>
  </a>
  <a href='#' title='Title 4'>
    <i data-feather="link-2"></i>
  </a>
</div>
              
            
!

CSS

              
                html {
  display: table;
  width: 100%;
  height: 100%;
}

body {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.buttons {
  white-space: nowrap;
  min-height: 33px;
  position: relative;
  width: 205px;
  margin: 0 auto;
  transform: scale(3);
}

.buttons a {
  animation: bounceInDown 900ms 200ms ease-in-out both;
  width: 50px;
  height: 40px;
  position: absolute;
  top: 0;
  text-decoration: none;
  outline-width: 0px;
  z-index: 990;
  color: #a675b3;
  text-align: center;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buttons a svg {
  width: 20px;
  height: 20px;
}

.buttons a:not(.active) {
  box-shadow: inset 0 1px 1px rgba(111, 55, 125, 0.8),
    inset 0 -1px 0px rgba(63, 59, 113, 0.2), 0 9px 16px 0 rgba(0, 0, 0, 0.3),
    0 4px 3px 0 rgba(0, 0, 0, 0.3), 0 0 0 1px #150a1e;
  background-image: linear-gradient(#3b2751, #271739);
  text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 -1px 0 #311d47;
}

.buttons a:not(.active):hover,
.buttons a:not(.active):focus {
  transition: color 200ms linear, text-shadow 500ms linear;
  color: #caadd2;
  text-shadow: 0 0 21px rgba(223, 206, 228, 0.5),
    0 0 10px rgba(223, 206, 228, 0.4), 0 0 2px #2a153c;
}

.buttons a:not(.active):active {
  color: #e4e3ce !important;
}

.buttons a.active,
.buttons a:active {
  box-shadow: 0 9px 16px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #170c22,
    0 2px 1px 0 rgba(121, 65, 135, 0.5), inset 0 0 4px 3px rgba(15, 8, 22, 0.2);
  background-image: linear-gradient(#1f132e, #311d47);
  text-shadow: 0 0 21px rgba(223, 206, 228, 0.5),
    0 0 10px rgba(223, 206, 228, 0.4), 0 0 2px #2a153c;
  color: #e4e3ce;
}

.buttons a.active:before,
.buttons a:active:before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  top: 1px;
  left: -2px;
  background-image: linear-gradient(
    rgba(91, 35, 105, 0),
    #5b2369 41%,
    #5b2369 59%,
    rgba(91, 35, 105, 0)
  );
  box-shadow: -2px 0 6px 0 #5b2369;
}

.buttons a.active:after,
.buttons a:active:after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 36px;
  top: 1px;
  right: -2px;
  background-image: linear-gradient(
    rgba(91, 35, 105, 0),
    #5b2369 41%,
    #5b2369 59%,
    rgba(91, 35, 105, 0)
  );
  box-shadow: 2px 0 6px 0 #5b2369;
}

.buttons a.active {
  z-index: 1000;
}

.buttons a:active {
  z-index: 999;
}

.buttons a:last-of-type {
  border-radius: 0 7px 7px 0;
}

.buttons a:first-of-type {
  border-radius: 7px 0 0 7px;
  left: 0;
}

.buttons a:nth-of-type(2) {
  left: 51px;
}

.buttons a:nth-of-type(3) {
  left: 102px;
}

.buttons a:nth-of-type(4) {
  left: 153px;
}

.buttons a:nth-of-type(5) {
  left: 204px;
}

.buttons a:nth-of-type(6) {
  left: 255px;
}

.buttons a:nth-of-type(7) {
  left: 306px;
}

.buttons a:nth-of-type(8) {
  left: 357px;
}

.buttons a i:before {
  margin-left: 2px;
  font-size: 22px;
}

.buttons a i.icon-bar-chart:before {
  font-size: 20px;
  margin-top: 0px;
}

.buttons a i.icon-sync:before {
  font-size: 20px;
  margin-left: 3px;
  margin-top: 1px;
}

.buttons a i.icon-download:before {
  font-size: 19px;
  margin-top: 1px;
  margin-left: 4px;
}

/* peripherial stuff: text and body */

p {
  position: absolute;
  bottom: 50px;
  left: 13px;
  right: 50px;
  color: #a99bad;
  font-family: Helvetica, sans-serif;
  font-size: 10px;
  margin-top: 250px;
  margin-left: 50px;
}

p > a {
  color: white;
  font-weight: bold;
}

body,
html {
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-image: linear-gradient(#862077, #140027);
}

              
            
!

JS

              
                feather.replace();

              
            
!
999px

Console