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

              
                <!--

  HTML & CSS Building
  By : Girish Patil 
  Follow me on twitter : https://twitter.com/theevilhead
  Originally designed by : Leslie Wilkins
  Checkout the design here : https://dribbble.com/shots/1401986-Building-Illustration

-->

<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">

<div class="wrap">

  <div>
    <div id="building">

      <div class="roof">
        <div class="layer-1"></div>
        <div class="layer-2"></div>
      </div>

      <div class="wall">

        <div class="floors floor-2">
          <div class="window window-1">
            <div class="pane"></div>
            <div></div>
          </div>
          <div class="window window-2">
            <div class="glass"></div>
            <div>
              <span class="glare"></span>
            </div>
          </div>
          <div class="window window-3">
            <div class="glass"></div>
            <div>
              <span class="glare"></span>
            </div>
          </div>
        </div>

        <div class="floors floor-1">
          <div class="window window-1">
            <div class="glass"></div>
            <div>
              <span class="glare"></span>
            </div>
          </div>

          <div class="window window-2">
            <div class="glass"></div>
            <div>
              <div class="pot">
                <div class="leaves"></div>
              </div>
            </div>
          </div>

          <div class="window window-3">
            <div class="pane"></div>
            <div></div>
          </div>

        </div>

        <div class="basement">

          <div id="door">
            <div class="ventilation">
              <div class="glass"></div>
            </div>
            <div class="main">
              <div class="glass">
              </div>
              <div class="glass">
                <span class="knob"></span>
              </div>
            </div>
            <div class="bar"></div>
            <div class="bottom">
              <span></span>
              <span></span>
            </div>
          </div>

          <div id="main-window">
            <div class="cloth">
              <ul>
                <li></li><li></li><li></li><li></li><li></li><li></li><li></li><li></li>                 <li></li><li></li><li></li><li></li>
              </ul>
            </div>
            <div class="window">
              <div class="glass">
              </div>
            </div>
          </div>

        </div>

      </div>
    </div>
    
    <!--   Honest brags   -->
    <br>
    <div class="evilhead" style="text-align: center">
      <h2> HTML & CSS only building </h2>
      <h3> I so want this to be my workplace. </h3>
      <h3> Try resizing the screen to see the responsive effect.
      <br>
      <center>
        <a href="https://twitter.com/theevilhead"> Twitter </a>
        &nbsp &amp; &nbsp;
        <a href="https://www.instagram.com/theevilhead"> Instagram </a>
      </center>
      <br>
      <div style="text-align:center">
    Originally designed by <a href="https://dribbble.com/shots/1401986-Building-Illustration"> <b>Leslie Wilkins</b> </a>
      </div>
    </div>

  </div>
  
</div>

              
            
!

CSS

              
                $blue : #1b3957;
$olive : #bfbfa2;
$orange : #f5865e;
$sky : #89d3d9;
$green : #68a694;

html,body{
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

h3{
  text-align: center;
}

a{
  color: rgba(0,0,0,.5);
  text-decoration: none;
  
  &:hover{
    color: rgba(0,0,0,1);  
  }
  
}

*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrap{
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
  background: $sky;
}

#building{
  width: 215px;
  margin: 0 auto;
  -webkit-transition: .22s width linear;
  -o-transition: .22s width linear;
  transition: .22s width linear;
}

.roof{
  
  span{
    background: #bfbfa2;
    border: 5px solid #1b3957;
    margin: 0 auto;
  }
  
  .layer-1,.layer-2{
    width: 100%;
    height: 17px;
    position: relative;
    margin: 0 auto;
    
    &::before{
      content: '';
      width: 52%;
      height: 10px;
      border: 7px solid #1b3957;
      border-right: none;
      position: absolute;
      top: 0;
      left: 2px;
      -webkit-transform: skew(10deg);
          -ms-transform: skew(10deg);
              transform: skew(10deg);
      -webkit-box-shadow: -1px 0px 0 1px rgba(0,0,0,.15);
              box-shadow: -1px 0px 0 1px rgba(0,0,0,.15);
      background: #bfbfa2;
    }
    
    &::after{
      content: '';
      width: 52%;
      height: 10px;
      border: 7px solid #1b3957;
      border-left: none;
      position: absolute;
      top: 0;
      right: 2px;
      -webkit-transform: skew(-10deg);
          -ms-transform: skew(-10deg);
              transform: skew(-10deg);
      background: #bfbfa2;
      -webkit-box-shadow: 3px 0px 0 1px rgba(0,0,0,.15);
              box-shadow: 3px 0px 0 1px rgba(0,0,0,.15);
    }
    
  }
  .layer-2{
    width: 90%;
    height: 17.5px;
  }
  
}

@media screen and (min-width : 750px){
  #building{
    width: 715px;
  }
  .wall{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: 'row';
            flex-direction: 'row';

    & > div{
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
    }
  }

}

.wall{
  background: $orange;
  width: 87%;
  border: 5px solid #1b3957;
  margin: 0 auto;
  
  
  
  .floors{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px;
    
    .window{
      width: calc(33.333333% - 10px);
      height: 100px;
      border: 4px solid #1b3957;
      border-bottom: 12px solid #1b3957;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-shadow: 0 5px 0 1px rgba(0,0,0,.15);
              box-shadow: 0 5px 0 1px rgba(0,0,0,.15);
      background: #fff;
      
      & > div{
        height: 50%;
        width: 100%;
        position: relative;
        
        &:first-child{
          border-bottom: 4px solid #1b3957;
          -webkit-box-shadow: 0 3px 0 1px rgba(0,0,0,.15);
                  box-shadow: 0 3px 0 1px rgba(0,0,0,.15);
        }

        &.pane{
          background: #bfbfa2;
          
          &::before{
            content : '';
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            margin: 0 auto;
            width: 2px;
            height: 30px;
            background: #1b3957;
          }
          
          &::after{
            content : '';
            position: absolute;
            top: calc(100% + 30px);
            left: 0;
            right: 0;
            margin: 0 auto;
            width: 5px;
            height: 8px;
            background: $blue;
          }
          
        }
        
        .pot{
          position: absolute;
          height: 20px;
          width: 20px;
          bottom: 0;
          
          &::before{
            content: '';
            position: absolute;
            bottom: 0;
            width: 6px;
            height: 10px;
            left: 3px;
            -webkit-transform: skew(10deg);
                -ms-transform: skew(10deg);
                    transform: skew(10deg);
            border: 2px solid $blue;
            border-right: none;
            background: $orange;
          }
          
          &::after{
            content: '';
            position: absolute;
            right: 3px;
            bottom: 0;
            width: 6px;
            height: 10px;
            -webkit-transform: skew(-10deg);
                -ms-transform: skew(-10deg);
                    transform: skew(-10deg);
            border: 2px solid $blue;
            border-left: none;
            background: $orange;
          }
          
          .leaves{
            
            &::before{
              content: '';
              position: absolute;
              border-radius: 50px;
              -webkit-transform: rotate(45deg);
                  -ms-transform: rotate(45deg);
                      transform: rotate(45deg);
              width: 12px;
              height: 2.5px;
              left: -0px;
              top: 0;
              background: $green;
            }
            
            &::after{
              content: '';
              position: absolute;
              border-radius: 50px;
              -webkit-transform: rotate(-45deg);
                  -ms-transform: rotate(-45deg);
                      transform: rotate(-45deg);
              width: 12px;
              height: 2.5px;
              right: -0px;
              top: 0;
              background: $green;
            }
            
          }
          
        }
        
        &{
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          
          .glare{
            width: 30px;
            height: 2.1px;
            display: block;
            background: #89d3d9;
            border-radius: 10px;
            -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                    transform: rotate(-45deg);
            position: relative;
            
            &::before{
              content: '';
              position: absolute;
              width: 8px;
              height: 1.5px;
              top: 6px;
              border-radius: 10px;
              left: -3px;
              background: #89d3d9;
            }
            
            &::after{
              content: '';
              position: absolute;
              width: 15px;
              height: 1.5px;
              top: 6px;
              right: 5px;
              border-radius: 10px;
              background: #89d3d9;
            }
            
          }
          
        }
        
      }
      
    }
    
  }

}

.basement{
  padding: 20px 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#door{
  width: 37%;
  background: #fff;
  border: 4px solid $blue;
  margin-bottom: -3px;
  
  .ventilation{
    padding: 4px 5px;
    background: $olive;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 4px solid $blue;
    -webkit-box-shadow: 0 8px 0 1px rgba(0,0,0,.15);
            box-shadow: 0 8px 0 1px rgba(0,0,0,.15);
    
    .glass{
      width: 100%;
      height: 13px;
      background: #fff;
      border: 2px solid $blue;
      border-radius: 10px 10px 0 0;
    }
    
  }
  
  .main{
    padding: 8px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    
    .glass{
      width: calc(50% - 8px);
      height: 50px;
      background: #89d3d9;
      border: 2px solid $blue;
      border-top: 3px solid $blue;
      border-bottom: 3px solid $blue;
      position: relative;

      &::before{
        content: '';
        position: absolute;
        width: 10px;
        height: 1.5px;
        top: 40%;
        border-radius: 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: #fff;
        -webkit-transform: rotate(-50deg);
            -ms-transform: rotate(-50deg);
                transform: rotate(-50deg);
      }

      &::after{
        content: '';
        position: absolute;
        width: 10px;
        height: 1.5px;
        top: calc(40% + 10px);
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 10px;
        background: #fff;
        -webkit-transform: rotate(-50deg);
            -ms-transform: rotate(-50deg);
                transform: rotate(-50deg);
      }
      
        .knob{
          width: 3px;
          height: 3px;
          background: $orange;
          position: absolute;
          bottom: 5px;
          right: 2px;
        }
      
    }
    
  }
  
  .bar{
    width: 70%;
    height: 2px;
    border-radius: 5px;
    background: $blue;
    margin: 5px auto;
  }
  
  .bottom{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-bottom: 8px;
    
    span{
      width: calc(50% - 8px);
      height: 17px;
      border: 2px solid $blue;
    }
    
  }
  
}

ul,li{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#main-window{
  width: 50%;
  height: 85px;
  border: 4px solid $blue;
  background: #fff;
  -webkit-box-shadow: 0 7px 0 1px rgba(0,0,0,.15);
          box-shadow: 0 7px 0 1px rgba(0,0,0,.15);
  
  .cloth{
    
    ul{
      background: $olive;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      border-bottom: 3px solid $blue;
      -webkit-box-shadow: 0 7px 0 1px rgba(0,0,0,.15);
              box-shadow: 0 7px 0 1px rgba(0,0,0,.15);

      li{
        width: 2px;
        height: 22px;
        background: #fff;
        position: relative;
        
        &::before{
          content: '';
          position: absolute;
          -webkit-box-shadow: 0 2px 0 1px rgba(0,0,0,.15);
                  box-shadow: 0 2px 0 1px rgba(0,0,0,.15);
          border-radius: 100px;
          width: 3px;
          height: 3px;
          background: $blue;
          bottom: -5px;
        }
        
      }
      
    }
    
  }
  
  .window{
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 0 4px 0 4px;

    .glass{
      width: 100%;
      height: 100%;
      margin: 0 auto;
      background: $sky;
      border: 2px solid $blue;
      border-top: none;
    }

  }
  
}

.evilhead{
  width: 100%;
  color: $blue;
}
              
            
!

JS

              
                
              
            
!
999px

Console