Sha256: a7584e7073295d171aab6dfc39c4b27ba6df8e043a3c49bc41f1d688a22bb4d4

Contents?: true

Size: 888 Bytes

Versions: 2

Compression:

Stored size: 888 Bytes

Contents

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --color-primary: blue;
  --color-secondary: black;
}
.foo {
  font-size: 32px;
  font-size: 2rem;
  color: red;
  background: blue;
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
}
.imported {
	/* imported style here */
}
.bar {
	color: blue;
	display: block;
	bottom: 0;
}
@media screen and (min-width: 36em) {
  .foo {
    color: black
  }
  .foo {
    background: -webkit-gradient(linear, left top, left bottom, from(green), to(blue));
    background: -webkit-linear-gradient(green, blue);
    background: linear-gradient(green, blue);
  }
  .bar {
    background: -webkit-gradient(linear, left top, left bottom, from(green), to(blue));
    background: -webkit-linear-gradient(green, blue);
    background: linear-gradient(green, blue);
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pleeease-0.0.3 node_modules/pleeease/test/app.min.css
pleeease-0.0.2 node_modules/pleeease/test/app.min.css