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
5
votes
1 answer

NEAT-Python not finding Visualize.py

So recently I have found about a NEAT algorithm and wanted to give it a try using NEAT-Python(not sure if this is even the correct source :| ). So I created my virtual environment activated it and installed the neat-python using pip in the VE. When…
J.Paravicini
  • 882
  • 12
  • 39
5
votes
3 answers

Remove margin on span columns with Bourbon Neat

I'm starting to use Thoughtbot's Bourbon Neat for responsive grids. Overall, it's pretty slick and I really like it, but I'm hung up on one little issue. I'm trying to get two columns to butt up next to each other without the margins, but after…
ultraloveninja
  • 1,969
  • 5
  • 27
  • 56
5
votes
6 answers

Vary outer-container size with Bourbon Neat

I'm learning to work with Bourbon Neat and I always worked with Bootstrap's grid system. I'm trying to recreate this Bootstrap grid page to learn the basics of Bourbon Neat. The settings I use are: // Bourbon Neat Grid Settings $column:…
Jesse
  • 879
  • 1
  • 12
  • 26
5
votes
4 answers

How do I show the columns of the grid of Bourbon Neat?

In my CSS file apply the commands of Bourbon Neat and not show columns in html file, if show the result of apply but not show columns. .container{ @include outer-container; @include span-columns(2 of 8, table); border: 1px solid red; …
4
votes
1 answer

How do i save and retrain a neat-python model?

I train a neat-python model to play snake. I want to save the model after 50 generations, and after that i want to load it and retrain it from there, is it possible? I saw a method where you can replay it, but just replay it one time, not retraining…
4
votes
1 answer

NEAT: Speciating

I was trying to implement neat myself, using the original paper but got stuck. Let's say that in the last generation I had the following species: Specie 1: members: 100 avg_score: 100 Specie 2: members: 150 avg_score: 120 Specie 3: …
Finn Eggers
  • 857
  • 8
  • 21
4
votes
4 answers

NeuroEvolution of Augmenting Topologies (NEAT) and global innovation number

I was not able to find why we should have a global innovation number for every new connection gene in NEAT. From my little knowledge of NEAT, every innovation number corresponds directly with an node_in, node_out pair, so, why not only use this pair…
TlmaK0
  • 3,578
  • 2
  • 31
  • 51
4
votes
1 answer

Sass Gulp Corrupted

We have gulp running sass and browser sync, and had been running without problems for about 6 months. We have about 60 sass and scss filed being compiled on the fly into CSS. Everything was going fine and smooth and then suddenly the front end…
jojojohn
  • 725
  • 2
  • 10
  • 19
4
votes
1 answer

How to make a select image in form

I need a form with images selectables, I´ve serched in google and I try with select option but this not working Can you give any idea to resolve this please? I am using bourbon & neat (SASS)
cfranco
  • 3,155
  • 5
  • 19
  • 20
4
votes
0 answers

Using breakpoints with bourbon and neat with the media( ) mixin

I've set up 3 different breakpoints using bourbon and neat. I've followed some of the info in bitters to set up to variable to use in the media mixin. This makes it ridiculously easy to throw in breakpoints. @include media($small-screen-up) { .foo…
Erik Hanson
  • 155
  • 5
4
votes
3 answers

Bourbon Neat: How to expand column to match outer-container?

I'm testing out Bourbon Neat, and I have two columns within an outer-container, and I want the columns to be equal height (so as tall as the tallest column). Using @include fill-parent on the short column doesn't work, it just makes it as wide as…
Ber
  • 695
  • 1
  • 11
  • 17
4
votes
2 answers

Adding padding to the container but outside of the grid

I'm trying to add padding to the .container without it effecting the grid. The best example I can think of is I don't want the content to hit the sides of the .container because if the design has say a blue background and the .container is white I…
Sulcalibur
  • 71
  • 7
3
votes
2 answers

Representing a 2D map of doubles in as few "parameters" as possible

I am working on a turn-based-game AI using a neural-network technique known as NEAT. I am attempting to train a network that can move around a two dimensional (X&Y coords) space given a variety of values that are stored in what is effectively a two…
Aidos
  • 2,753
  • 3
  • 27
  • 31
3
votes
1 answer

NEAT - What to do with single member species?

I'm working on implementing NEAT from scratch, and have stumbled upon an issue I can't find a concrete answer to. How does the NEAT algorithm respond to species with only a single member in them, after every other network has been speciated? I've…
Theometrus
  • 31
  • 2
3
votes
1 answer

Applying saved NEAT-Python Genome to test environment after training

I have used some NEAT algorithms to code my own AI for some easy games like flappy bird. Everything works fine and I know what is going on. The problem is I do not know what to do with the result. The AI learns something and I want to save that…
Gruny
  • 55
  • 1
  • 4
1
2
3
20 21