Testing cool stuff - Blurry Pictures

https://css-tricks.com/snippets/css/monotone-image-css/ https://css-tricks.com/snippets/css/multiple-borders/

by MegaScience

HTML

<div class="clearfixChildren">
  <span>xD</span>
  <div style="background-image: url(http://i.imgur.com/rXIabqP.png)"></div>
  <div style="background-image: url(http://i.imgur.com/qWIfJls.png)"></div>
  <div style="background-image: url(http://i.imgur.com/6F9wMCG.png)"></div>
</div>
// Add blur back in CSS.

CSS

body {
  background-color: yellow;
  text-align: center;
  margin: 0;
}

div:not([style]) {
  height: calc(100vmin - 12px * 2);
  overflow-clip-box: content-box;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 100pt;
  background-color: purple;
  color: red;
  /*-webkit-filter: blur(2px) hue-rotate(90deg) sepia(20%);
  filter: blur(2px) hue-rotate(90deg) sepia(20%);*/
  -webkit-filter: hue-rotate(90deg) sepia(20%);
  filter: hue-rotate(90deg) sepia(20%);
  background-clip: content-box;
  padding: 12px;
  margin: 12px;
  border: 3px dotted green;
}

img,
div[style] {
  display: inline-block;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 50vmin;
  width: 50vmin;
  border-radius: 50%;
}

div.clearFixChildren {
  overflow: hidden;
}

div.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

div.clearfixChildren > *:after {
  content: "";
  display: table;
  clear: both;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform-origin: 45% 66%;
    transform-origin: 45% 66%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="0" /><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
    -webkit-filter: hue-rotate(0deg) blur(2px);
    filter: hue-rotate(0deg) blur(2px);
  }
  100% {
    -webkit-transform-origin: 57% 47%;
    transform-origin: 57% 47%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="360" /><feGaussianBlur...