@import "/foo.css";
@import '../bar.css';
@import url('../baz.css');
@import url(crazy.css);
@import url("../bing.css", relative);

.foo {
  background-image: url('../photo.png');
}
.whatever {
  background-image: url("../photo.png");
}
.bar {
  background-image: 'oh noes';
}
.bing {
  background-image: url(../photoB.png);
}

/*
.bing {
  background-image: url(../photoB.png);
}
*/

/**
 *  .bing {
 *    background-image: url(../photoB.png);
 *  }
 */

@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('photoC.png');
  src: url('photoC.png') format('embedded-opentype'), url("../photoC.png") format('woff'), url('haha.png') format('truetype'), url('whatever.jpg') format('svg');
}
