if u wants to create custom css then
go to C: \ xampp \ htdocs \ SlideNave-WithBarCharts \ resources \ sass
and create a new custom.scss file like this
@import 'custom/css3';
@mixin buttonize($base_color:
-webkit-box-sizing: border-box;
display: inline-block;
color:
text-decoration: none;
line-height: $button_size;
padding: 0 $button_size/2;
height: $button_size;
@include border-radius($button_size/2);
border: 1px solid darken($base_color, 20%);
text-shadow: darken($base_color, 10%) 0 -1px 0;
}
body {
font-family: Helvetica;
margin: 50px;
}
.button {
@include buttonize;
}
.green_button {
@include buttonize(
}
and enter
compass compile sass
then check the css file created in
C: \ xampp \ htdocs \ SlideNave-WithBarCharts \ resources \ css (custom.css)
(befrore that installs the compass on your gem install compass computer )