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

              
                <h1>Easy Tooltips</h1>
<section>
  <article>
    <p> This is an example of a tooltip on the right top corner <span class="tooltip up-left">↖</span> </p>
  </article>
  <article>
    <p> <span class="tooltip center-left">→</span> This is an example of a tooltip on the left center.</p>
  </article>
  <article>
    <p> This is an example of a tooltip centered at the bottom <span class="tooltip bottom-center"> ↓</span> </p>
  </article>
</section>
              
            
!

CSS

              
                @import "bourbon";
@import "neat";
@import url(https://fonts.googleapis.com/css?family=Oswald);

// Variables
$deep-orange: #E67E22;
$base-font-size: 1.5em;
$main-text: 'Oswald', sans-serif;
$after-before: "&:after, &:before";

// Neat Breakpoints
$medium-screen: em(640);

body {
  background: $deep-orange;
  font-family: $main-text;
  font-size: $base-font-size;
  text-align: center;
  padding: 100px;
}

// Grid Settings
section {
  @include outer-container;
}

article {
  @include media($medium-screen) {
   @include span-columns(4); 
  }
}

// General Tooltip styles
.tooltip {
  @include size(20px);
  background: lighten($deep-orange, 25%);
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-family: $helvetica;
  font-size: $base-font-size * 0.5;
  position: relative;
  z-index: auto;

  #{$after-before} {
    @include position(absolute, null null null null);
    @include transition(all .25s ease-in-out);
    opacity: 0;
    text-align: left;
    visibility: hidden;
    z-index: 1;
  }
  
  &:after { 
    @include size(100px);
    background: white;
    border-radius: 10px;
    color: black;
    padding: 10px;
  }
  
  &:before {
    content: "";
  }
  
  &:hover {
    
    #{$after-before} {
      opacity: 1;
      visibility: visible;
    }
  }
}

// Up - Left
.up-left {
  
  &:after {
    @include position(null, 25px -110px null null);   
    content: "Direction up left";
  }

  &:before {
    @include position(null, 25px -35px null null);
    @include triangle(25px 25px, white transparent, up-left);
  }
}

// Bottom - Left
.bottom-center {
  
  &:after {
    @include position(null, null -40px 45px null);
    content: "Direction Down";
  }

  &:before {
    @include position(null, null 0px 25px null);
    @include triangle(20px 20px, white transparent, down);
  }
}

// Left - Center
.center-left {
  
  &:after {
    @include position(null, -35px -120px null null);
    content: "Direction center left";
  }

  &:before {
    @include position(null, 0 -20px null null);
    @include triangle(25px, white, left);
  }
}

              
            
!

JS

              
                
              
            
!
999px

Console