Questions tagged [neat]

Neat is an open source semantic grid framework built on top of Sass and Bourbon.

What is it about?

Neat is a semantic grid framework built on top of Sass and Bourbon. It is simple enough to get you up and running in minutes, and powerful enough to handle any responsive layout you can dream of.

Why another grid framework?

Because we are not happy with other frameworks. We built Neat with the aim of promoting clean and semantic markup; it relies entirely on Sass mixins and does not pollute your HTML with presentation classes and extra wrapping div's.

It also aims to stay as lightweight as possible; just enough to handle the most common grid uses in modern Web design.

Is it responsive?

Yes. You can even change the grid settings in a specific breakpoint.

Alright. How do I get started?

Install Neat and its dependencies, read the documentation and check the examples page if you get lost. If you want to use Neat on your Rails app, there is a gem for that. Feedback? If you think something is broken or can be improved, fork the repo. You can also tweet your questions or suggestions at https://twitter.com/kaishin and https://twitter.com/kylefiedler.

Bourbon and Neat are maintained and funded by thoughtbot, inc.

Links

Related tags

305 questions
1
vote
1 answer

Why isn't omega(value) overriden on new breakpoint?

Here's the code on Sassmeister, please let me know if there are any problems with the link: http://sassmeister.com/gist/0b7c3a1897fe3bbe33db I have a $tablet and $bigscreen breakpoint, they use min-width values. There's a media query for $tablet…
user3126277
1
vote
2 answers

How to change the number of automatic columns across media queries in Neat

Bourbon Neat allows you to use the span-column() mixin along with the omega() mixin to create automatic columns similar to foundation 5's block grids. However, these seem to fail miserably when sharing styles across media queries. Take a look at…
jsheffers
  • 1,602
  • 19
  • 41
1
vote
2 answers

chaging max width property of grid in bourbon neat

I am using bourbon neat for thee first time. what I am trying to do is to set max-width property of neat in _grid.css Now I am trying to do it in PX say 700px but by default its $max-width: em(1000) !default; I tried giving it in PX but it doesn't…
designerNProgrammer
  • 2,621
  • 5
  • 34
  • 46
1
vote
0 answers

Bourbon Neat is giving me error after sass watch

Hi guys i am new to Bourbon Neat. ive installed bourbon and neat in a folder. Now after i do this sass --watch scss When it compiles the css generated has following errors. Syntax error: Invalid CSS after "... $grid-columns ": expected "}", was…
designerNProgrammer
  • 2,621
  • 5
  • 34
  • 46
1
vote
1 answer

can i use foundation 5 with bourbon Neat?

hey guys I am totally blown away by the power of clean semantic mark-up.My Question is that can i just use the UI components of fundation with Neat? has anyone tried it yet? thanks.
designerNProgrammer
  • 2,621
  • 5
  • 34
  • 46
1
vote
1 answer

Container padding in Neat/Bourbon

I am working with Neat the first time. I am wondering how I can accomplish a padding for the outer .container. When giving the container a padding, the width of the columns within aren't right anymore and shift to the right/left. Like this…
christophe
  • 692
  • 4
  • 14
  • 27
1
vote
2 answers

where to define body styles

I'm having this issue where I can't seem to override the background color of the body element in my Neat Bourbon website. I defined the background color like this in the _layout.scss file: body { background: lighten($brokenwhite, 5); } but when I…
Toontje
  • 1,415
  • 4
  • 25
  • 43
1
vote
0 answers

Using '@include media' on row of columns messes up the shift in bourbon neat

Have been coming up with this rather irritating error - when my code is benefits { @include outer-container; .benefit_text { @include span-columns(4); @include shift(2); } .benefit_list { @include omega(); @include…
0
votes
1 answer

XNA disable draw method

I am trying to run an evolutionary algorithm using xna i would like only to run the logical side of the game and after a long caculation time add the animation. Does anybody know how to accelerate calculation time and disable the Draw() call.…
laylakn
  • 87
  • 1
  • 1
  • 10
0
votes
0 answers

BigCartel Neat - COLLECTIONS/CATEGORIES on home page

I'm using NEAT theme at BigCartel, and want to have COLLECTIONS/CATEGORIES as my home page, not the current FEATURED items. There doesn't seem to be a simple way to do that, the simplest option seems to be to make the COLLECTIONS/CATEGORIES page my…
RKE
  • 1
0
votes
0 answers

Parameter optimization for NEAT-Python

I've been using the NEAT-Python module (found here https://github.com/CodeReclaimers/neat-python) and have been able to get it working nicely for some problems. However when transitioning to a new problem I'm finding it hard to pinpoint a good set…
Mike
  • 11
  • 1
  • 3
0
votes
0 answers

Obtain the generation number in the eval_genome function in neat-python

I am using the neat-python library to tinker around with neural networks. But the specific example I am trying to do requires the following: def eval_genome(genome, config): pheno = neat.nn.FeedForwardNetwork.create(genome, config) data =…
Ank i zle
  • 2,089
  • 3
  • 14
  • 36
0
votes
0 answers

RuntimeError: 'NEAT' section not found in NEAT configuration file

I'm trying to run a program using neat-python but I'm getting this error constantly. I checked the file it has the neat section and also I tried to uninstall and reinstall neat but nothing works. P.S I'm using VSCode Here's the code I'm trying to…
0
votes
0 answers

Pyhon-NEAT sudden changes in number of genomes diverging from configured population size during training

I have implemented an algorithm using python-NEAT to evolve game agents in a Unity game. The configuration file of python-NEAT is configured to have 72 agents in the population. If i configure the genomes to have anything else than 0 in initial…
Kristian T
  • 30
  • 4
0
votes
0 answers

Print the Aggregation/Activation Function used in Mutation?

Upon experimentation with my game and NEAT, I have found that setting aggregation_mutate_rate to 1.0 and changing the num_hidden determines whether my AI is successful or not in learning the game. If aggregation_mutate_rate changes the activation…
Jiehfeng
  • 753
  • 7
  • 16