gcss
gcss copied to clipboard
Pure Go CSS Preprocessor
Ticket #22 - Created the basic setup of a go module to get this project to compile - Added a run script to show examples of how to compile and...
Code is not setup to run under modules, need to call go mod init ; go tidy.
dead?
The last commit was 2014. Issues do not seem to get answered. Is it safe to assume that this project can be considered unmaintained?
Has anyone gotten media queries working with gcss? Any '@' rules I try to use just get striped. I've tried it with variables, nesting, and even just good'ol css.
Without space padding variables don't work within parentheses. If I pad them with spaces like this `( $url )` they work though. GCSS: ``` $image-url: ../image/svg/footer.svg $background-mixin($url) background-image: url($url) #background...
`max-width: 100%` will not parse and produces: `max-width: 100%! (MISSING)`. `display:block` will not parse and produces no output. spaces should not necessarily be required between rules but if they are,...
Hi, I'm trying to reference an external stylesheet from GCSS. Can it be done? Is there a way? ``` $font: 'Lato' @import url("//fonts.googleapis.com/css?family=" + $font) body font-family: $font, sans-serif ```...
I was using tabs in the .gcss file, and the output was missing selectors and brackets. No errors were thrown. Converting tabs to spaces will fix it.
I'm trying to use Gcss with [polymer](https://www.polymer-project.org) and some of the components require the use `@apply` in the CSS. Currently `gcss` strips these tags out when compiled. It would be...
``` $ printf '$a: black\n$b: $a\nbody\n background-color: $b\n'|gcss body{background-color:$a;} ``` I expected "black".