Sha256: 8398c649f65eb158d5632fff79716ec640768e7c9ca8debeffa62b58572e0232

Contents?: true

Size: 407 Bytes

Versions: 2

Compression:

Stored size: 407 Bytes

Contents

*,
*::after,
*::before {
  box-sizing: border-box;
}
:root {
  --color-primary: blue;
  --color-secondary: black;
}
.foo {
  font-size: 2rem;
  color: red;
  background: var(--color-primary);
  width: calc(100% - 50px);
}
@media screen and (min-width: 36em) {
  .foo {
    color: var(--color-secondary)
  }
}
@media screen and (min-width: 36em) {
  .foo {
    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/foo.css
pleeease-0.0.2 node_modules/pleeease/test/foo.css