I'm using Sass to compose my stylesheets for my Django project, and
Blueprint of course as the framework.
The problem I'm having is that "ruby compress.rb -p project1" is not
compiling a block of changes in grid.css (or any of the four core files
where I put this code block).
The CSS is:
div #header {
background-color: #c6d729;
height: 124px;
-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5); }
div #subheader {
background-color: #0f3b5f;
height: 100px;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); }
div #top {
height: 310px;
background: #c6d729;
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); }
div #stripe {
height: 270px;
background: #0f3b5f; }
(This is of course after sass has compiled from scss to css)
I can implement any other changes and compress will pick them up and put
them in my screen.css, but not that specific code block. What am I missing?
--
You received this message because you are subscribed to the Google Groups
"Blueprint CSS" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/blueprintcss?hl=en.