gitextract_bfb6tb_w/ ├── .babelrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs/ │ ├── CNAME │ ├── assets/ │ │ └── img/ │ │ └── edgrid-poster_tmp23195 │ ├── casos-de-exito/ │ │ └── index.html │ ├── changelog/ │ │ └── index.html │ ├── creditos/ │ │ └── index.html │ ├── css/ │ │ └── styles.css │ ├── documentacion/ │ │ ├── alineacion.1.html │ │ ├── alineacion.html │ │ ├── banner.html │ │ ├── base.1.html │ │ ├── base.html │ │ ├── botones.html │ │ ├── breakpoints.html │ │ ├── cards.html │ │ ├── css.html │ │ ├── distribucion.html │ │ ├── estructura.html │ │ ├── flexbox-helpers.html │ │ ├── funciones.html │ │ ├── grids.html │ │ ├── helpers.html │ │ ├── imagenes.html │ │ ├── index.html │ │ ├── instalacion.html │ │ ├── layout-css-grid.html │ │ ├── layout-flexbox.html │ │ ├── layout.html │ │ ├── mediaqueries.html │ │ ├── menu-responsive.html │ │ ├── menus.html │ │ ├── modo-dev.html │ │ ├── offset.html │ │ ├── personalizar.html │ │ ├── prototipado-avanzado.html │ │ ├── prototipado.html │ │ ├── ratios.html │ │ ├── sass.html │ │ ├── skeleton.html │ │ ├── videos.html │ │ └── visibilidad.html │ ├── index.html │ ├── js/ │ │ ├── scripts-min.js │ │ └── scripts.js │ ├── sitemap.xml │ └── test.html ├── ed-grid.scss ├── gulpfile.babel.js ├── index.js ├── package.json ├── poster.psd ├── src/ │ ├── css/ │ │ └── ed-grid.css │ ├── data/ │ │ └── casos-de-exito.json │ ├── js/ │ │ ├── index.js │ │ └── modules/ │ │ ├── activeMenu.js │ │ ├── menu.js │ │ └── scrollBarWIdth.js │ ├── md/ │ │ ├── alineacion.md │ │ ├── base.md │ │ ├── breakpoints.md │ │ ├── cards.md │ │ ├── distribucion.md │ │ ├── docs/ │ │ │ ├── botones.md │ │ │ ├── flexbox.md │ │ │ ├── menu.md │ │ │ ├── offset.md │ │ │ └── videos.md │ │ ├── estructura.md │ │ ├── funciones.md │ │ ├── grids.md │ │ ├── helpers.md │ │ ├── layout-css-grid.md │ │ ├── layout-flexbox.md │ │ ├── layout.md │ │ ├── mediaqueries.md │ │ ├── menu-responsive.md │ │ ├── modo-dev.md │ │ ├── personalizar.md │ │ ├── prototipado-avanzado.md │ │ ├── prototipado.md │ │ ├── ratios.md │ │ ├── skeleton.md │ │ └── visibilidad.md │ ├── pug/ │ │ ├── config/ │ │ │ ├── config.pug │ │ │ └── template.pug │ │ ├── includes/ │ │ │ ├── banner.pug │ │ │ ├── cards.pug │ │ │ ├── collaborator.pug │ │ │ ├── docs-menu.pug │ │ │ ├── feature-item.pug │ │ │ ├── footer.pug │ │ │ ├── header.pug │ │ │ ├── main-banner.pug │ │ │ └── main-menu.pug │ │ └── pages/ │ │ ├── casos-de-exito/ │ │ │ └── index.pug │ │ ├── changelog/ │ │ │ └── index.pug │ │ ├── creditos/ │ │ │ └── index.pug │ │ ├── documentacion/ │ │ │ ├── alineacion.pug │ │ │ ├── banner.pug │ │ │ ├── base.pug │ │ │ ├── breakpoints.pug │ │ │ ├── cards.pug │ │ │ ├── distribucion.pug │ │ │ ├── estructura.pug │ │ │ ├── flexbox-helpers.pug │ │ │ ├── funciones.pug │ │ │ ├── grids.pug │ │ │ ├── helpers.pug │ │ │ ├── index.pug │ │ │ ├── instalacion.pug │ │ │ ├── layout-css-grid.pug │ │ │ ├── layout-flexbox.pug │ │ │ ├── layout.pug │ │ │ ├── mediaqueries.pug │ │ │ ├── menu-responsive.pug │ │ │ ├── menus.pug │ │ │ ├── modo-dev.pug │ │ │ ├── offset.pug │ │ │ ├── personalizar.pug │ │ │ ├── prototipado-avanzado.pug │ │ │ ├── prototipado.pug │ │ │ ├── ratios.pug │ │ │ ├── sass.pug │ │ │ ├── skeleton.pug │ │ │ ├── videos.pug │ │ │ └── visibilidad.pug │ │ └── index.pug │ └── scss/ │ ├── ed-grid/ │ │ ├── components/ │ │ │ ├── _alignment.scss │ │ │ ├── _base.scss │ │ │ ├── _core-flexbox.scss │ │ │ ├── _core-grid.scss │ │ │ ├── _dev.scss │ │ │ ├── _layout.scss │ │ │ ├── _media-queries.scss │ │ │ ├── _prototype.scss │ │ │ ├── _video.scss │ │ │ └── _visibility.scss │ │ ├── helpers/ │ │ │ ├── _functions.scss │ │ │ └── _mixins.scss │ │ └── legacy/ │ │ ├── _ed-menu.scss │ │ ├── _grid.scss │ │ ├── _legacy.scss │ │ └── _offset.scss │ ├── ed-grid-css.scss │ ├── ed-grid.scss │ ├── styles.scss │ └── web-styles/ │ ├── base/ │ │ └── base.scss │ ├── components/ │ │ ├── _buttons.scss │ │ ├── _demo.scss │ │ ├── _main-features.scss │ │ ├── _menu-responsive.scss │ │ └── _menus.scss │ ├── config/ │ │ ├── _functions.scss │ │ └── _variables.scss │ ├── hacks/ │ │ └── _hacks.scss │ ├── layout/ │ │ └── _layout.scss │ ├── libraries/ │ │ └── _prism.scss │ └── theme/ │ ├── _banner.scss │ ├── _footer.scss │ ├── _icons.scss │ └── _typography.scss └── test.html