When will there be another update on the repository move!
Bootstrap 2.2.2 is out
11–20 of 28 posts
Re: Bootstrap 2.2.2 is out
#12While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
I really like LESS. What am I missing out on?
Re: Bootstrap 2.2.2 is out
#13While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
Re: Bootstrap 2.2.2 is out
#14While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
> use Stylus/Sass not LESS I really like LESS. What am I missing out on?
Re: Bootstrap 2.2.2 is out
#15While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
Re: Bootstrap 2.2.2 is out
#16While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
Zurb Foundation seems to be what you are looking for. It uses SASS and actually predates bootstrap and is being actively maintained. Its a great alternative. http://foundation.zurb.com
Re: Bootstrap 2.2.2 is out
#17While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
> use Stylus/Sass not LESS I really like LESS. What am I missing out on?
Re: Bootstrap 2.2.2 is out
#18While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
> use Stylus/Sass not LESS I really like LESS. What am I missing out on?
I think it might be a result of trying to be "better CSS" instead of "a language for generating CSS".
Say you wanted to delay a slide-in-right animation for 50ms per list item. (So item 1 slides in immediately, item 2 50ms later, item 3 50ms later, etc.)
For that portion, this is what the LESS looks like:
-animation-delay(@delay) { animation-delay: @delay; ...vendor prefixes... }
.delay-child-animations {
&:nth-child(2n){ .animation-delay: 50ms; }
&:nth-child(3n){ .animation-delay: 100ms; }
&:nth-child(4n){ .animation-delay: 150ms; }
... more things here ...
}
In SASS, we could do something like @mixin delay-child-animations($max-children: 20) {
@for $i from 1 to $max-children {
&:nth-child(#{$i}n){ .animation-delay: ($i - 1)*50ms;
}
}
References:http://stackoverflow.com/questions/8294400/css-animations-wi... http://radiatingstar.com/css-keyframes-animations-with-less
Re: Bootstrap 2.2.2 is out
#19Earlier quoted context omitted.
Zurb Foundation seems to be what you are looking for. It uses SASS and actually predates bootstrap and is being actively maintained. Its a great alternative. http://foundation.zurb.com
It does use Sass, but was released after Bootstrap.
Discussion here: http://news.ycombinator.com/item?id=4588053
Re: Bootstrap 2.2.2 is out
#20While Bootstrap is "great" it really needs a viable competitor. There's a tons of things that could be done better. The competitor must be really nice looking by default, responsive, use Stylus/Sass not LESS, and be modular. There isn't one today, but I hope there will be one in 2013.
What about Zurb Foundation?