<article class='drag'>
  <form>
    <span class='entypo-mic'></span>
    <span class='entypo-sound'></span>
    <span class='entypo-adjust'></span>
    <input type='text' name='q' id='search-box'>
    <label class='entypo-search' for='search-box'></label>
    <span class='entypo-tools'></span>
    <span class='entypo-cog'></span>
  </form>
  
  <ul>
    <li class='entypo-user'>by <a href='https://escss.blogspot.com/2013/11/dinamyc-easy-rwd-blur-pure-css.html'>EsCss</a> blog</li>
    <li class='entypo-arrows-ccw'>under Beerware licence</li>
    <li class='entypo-heart'>if you can imagine, <a href='https://escss.blogspot.com/'>CSS</a> will make it real</li>
    <li class='entypo-camera'>Image from unknow</li>
    <li class='entypo-address'>other demos css: here, in codepen, and in my blog</li>
    <li class='entypo-resize-full'>Please, resize the window and</li>
    <li class='entypo-flow-parallel'>Scroll down &amp; up</li>
  </ul>
  <h2 class='entypo-star-empty'>Inside blur pure CSS</h2>
</article>

<article>
<h1>DINAMYC INSIDE BLUR<br/> PURE CSS</h1>
</article>



<article class='notice'>
  <h2 class='entypo-attention'>Inside blur: warning!</h2>
  <ul>
    <li class='entypo-block'>Don´t use in a real work!</li>
    <li class='entypo-lamp'>This is only a Css play</li>
    <li class='entypo-eye'>so that you can see the power of</li>
    <li class='entypo-light-up'>the Imagination and Css working together</li>
    <li class='entypo-thumbs-up'>Now it's your turn, because</li>
    <li class='entypo-hourglass'>I'm waiting to play with your demos</li>
  </ul>
  <form>
    <span class='entypo-attention'></span>
    <span class='entypo-alert'></span>
    <input type='text' name='q' id='search-box'>
    <label class='entypo-search' for='search-box'></label>
    <span class='entypo-paper-plane'></span>
  </form>
</article>

<article>
  <p>You can see the complementary version</p>
  <h1><a href='https://codepen.io/Kseso/full/oipwL' title='see the outside version'>DINAMYC OUTSIDE BLUR<br/> PURE CSS</a></h1>
</article>

<p class='aviso'>Link the <a href='https://escss.blogspot.com/2013/11/dinamyc-easy-rwd-blur-pure-css.html'>POST</a>, show the PEN</p>


<svg version="1.1" xmlns='http://www.w3.org/2000/svg'>
 <filter id='blur'>
   <feGaussianBlur stdDeviation='6' />
   </filter>
</svg>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100);
@import url(http://weloveiconfonts.com/api/?family=entypo);
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
* {margin:0;padding:0;border: 0 none;position: relative;}
[class*="entypo-"]:before {font-family: 'entypo', sans-serif; display: inline-block; margin-right: .5rem;}

h2:after {content:"\2606";font-family: 'entypo', sans-serif; display: inline-block; margin-left: 1rem;;
}
html {
  background: url(https://2.bp.blogspot.com/-LwilPQw9Zc0/Unzm09oXDxI/AAAAAAAAHwo/30a7ZqSp3jE/s1600/blur-static+.jpg) no-repeat 50% fixed;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  font-family: roboto;
  font-weight: 100;
  overflow-y: scroll;
}
body {
  width: 100%;
  min-height: 100%;
  background: inherit;
  overflow: hidden;
}
article {
  background: inherit;
  position: relative;
  width: 60%;
  margin: 10vh auto 15vh;
  border-radius: 15px;
  border: 10px solid rgba(255,255,255,.15);
  box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  z-index: 5;
  font-size: 1.4rem;
  cursor: move;
}
article:before {
  content: '';
  position: absolute;
  top: 0; left:0; right:0; bottom:0;
  background: inherit;
  filter: blur(5px); 
  -webkit-filter: blur(6px); 
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: url(#blur);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='6');
}

h1 {
  font-size: 5rem;
  font-weight: 100;
  text-align: center;
  color: #183142;
}
h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #183142;
  border-top: 1px solid rgba(255,255,255,.3);
  margin: 2rem 0 0 0;
  padding: 1rem 0;
}
form {
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: #183142;
  text-align: justify;
  line-height: 1;
  position: relative;
  padding: 1rem 1rem 0;
}
form [class*="entypo-"]:last-child:before {margin-right: 0;}
form:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 0;
  line-height:0;
  visibility: hidden;
  font-size: 0;
}
form span {
  display: inline-block;
  vertical-align: middle;
}
input[type='text'] {
  color: inherit;
  background: none;
  display: inline-block;
  border: 1px solid;
  border-radius: 5px;
  line-height: 20px;
  vertical-align: middle;
  width: 45%;
  margin: 0 .5rem 0;
}
ul {
  list-style-type: none;
  margin-top: 2rem;
  padding: 0 1rem;
}
li {
  margin-bottom: .5rem;
  color: #000;
}
li:before {color: #597572;}
a {
  background: rgba(0,0,0,.1);
  color: yellow;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 5px;
}
.notice {margin-bottom: 100px;}
.notice h2 {
  border-top: 0 none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  margin: 0 0 2rem;
}
.notice form {
  border-bottom: 0 none;
  border-top: 1px solid rgba(255,255,255,.3);
  margin: 2rem 0 0 0;
}
svg {
  height:0;
  width: 0;
  position: absolute;
}
.aviso {
  position: fixed;
  bottom: 0;
  right: 0;
  background: orange;
  color: #fff;
  font-weight: 400;
  padding: .5rem;
  border-radius: 5px 0 0;
  box-shadow: 0 0 4px rgba(0,0,0,.4);
  z-index: 100;
}
.aviso a {
  text-decoration: none;
  color: #000;
}
// Js only for drag the articles
$(function() {
	$( "article" ).draggable();
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.