/**
 * comment
 */
.class {
  padding: 10px;
}

/*comment*/
.foo {
  color: red;
}

/*
  at rule
 */
@media only screen {
  /* inner at rule comment */
  .foo {
    display: none;
  }

  /*
   * another comment
   */
  .bar {
    color: yellow;
  }
}
