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

              
                .ui.segment(ng-app='speechBubbles', ng-controller='mainCtrl')
  h1.ui.blue.header CSS speech bubbles the Semantic UI way
  .ui.blue.segment(ng-repeat='variant in variants')
    h2.ui.blue.header {{variant}} variant
    .ui.blue.inverted.segment(ng-repeat='pointer in pointers')
      h3.ui.header {{pointer}} pointer
      .ui.three.column.stackable.grid
        .row(ng-repeat='(direction,positions) in directions')
          .column(ng-repeat='position in positions')
            .speech(ng-class='{{[variant,pointer,"pointed",position,direction]}}')
              | .speech .{{variant}} .{{pointer}} .pointed .{{position}} .{{direction}}

              
            
!

CSS

              
                @import "nib"

.ui.blue.inverted
  padding 5em

.speech
  position relative
  margin 1em
  padding 1.5em
  background-color white
  color black
  z-index 2
    
  &:before, &.pointed.down:before
    content ''
    position absolute
    bottom -1em
    border-style solid
    border-width 1em 1em 0
    border-color white transparent
    z-index -1
  &.pointed
    &.center:before
      right 50%
      transform translateX(50%)
    &.near::before
      left 1em
    &.far::before
      right 1em
    &.up
      &::before
        bottom auto
        top -1em
        border-width 0 1em 1em

    &.left, &.right
      &::before, &.high::before
        bottom auto
        border-color transparent white
      &.middle::before
        bottom 50%
        transform translateY(50%)
      &.low::before
        bottom 1em

    &.left::before
      left -1em
      border-width 1em 1em 1em 0
      border-color transparent white

    &.right::before
      right -1em
      border-width 1em 0 1em 1em

  &.bubble
    border-radius 1em

  &.round
    border-radius 50%
    &.pointed
      &.down, &.up
        &::before
          border 1.5em solid transparent
          border-radius 50%
          box-shadow 1em 0 0 0 white

        &.far::before
          box-shadow -1em 0 0 0 white
                
      &.left, &.right
        &::before
          border 1.5em solid transparent
          border-radius 50%
          box-shadow 0 1em 0 0 white

        &.high::before
          box-shadow 0 -1em 0 0 white
                

              
            
!

JS

              
                angular.module('speechBubbles', [])

.controller('mainCtrl', function ($scope) {
  $scope.variants = [
    'square',
    'bubble',
    'round'
  ];
  $scope.pointers = [
    'triangle'
  ];
  $scope.directions = {
    'down': ['near', 'center', 'far'],
    'up': ['near', 'center', 'far'],
    'left': ['high', 'middle', 'low'],
    'right': ['high', 'middle', 'low']
  };
})

;
              
            
!
999px

Console