Giter Site home page Giter Site logo

wakkos-css-framework's People

Contributors

agenestar avatar alexigp avatar bazo81 avatar chuntin avatar dpoquet avatar fjaguado avatar ignaciodenuevo avatar liamato avatar matiasvme avatar nucliweb avatar pablocrs avatar termalgyn avatar tirsofreelance avatar wakkos avatar zzztor avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wakkos-css-framework's Issues

reset / normalize

Veo que tenemos tanto un archivo _normailze.scss como uno _reset.scss.
En los imports, sólo estamos utilizando el _reset.scss, así que podríamos eliminar el _normalize.scss para no crear confusión.

También veo que en _contenido.scss no se hace mención a _normalizae.scss

Descripción del repo

La descripción del repositorio dice WakkLESS, creo que al haber pasado a Sass, ya no tiene sentido esa descripción.

Guiones archivos sass

Porqué incluyes los guiones delante de los archivos que importa el styles.scss? a la hora de importar los en en este archivo no se incluyen y sin embargo los importa igual sin dar error, Sass se salta ese guión y lee directamente el nombre del archivo?

translate3d mixin

Se te ha colado translate en vez de translate3d en la linea 229 de _mixins.scss en este mixin:

@mixin translate3d($x: 0, $y: 0, $z: 0) {
    -webkit-transform : translate($x, $y, $z);
    -moz-transform : translate($x, $y, $z);
    -ms-transform : translate($x, $y, $z);
    -o-transform : translate($x, $y, $z);
    transform : translate($x, $y, $z);
}

También creo que podrías refactorizar todos los mixins usando el mixin de vendor, quedando algo así:

@mixin translate3d($x: 0, $y: 0, $z: 0) {
  @include vendor(transform, translate3d($x, $y, $z));
}

no se si tendrías que escapar los $x, $y y $z, pero ahorras muchas lineas y así solo tienes que configurar los prefijos en el mixin vendor.

Warning on line 103 _tipografia.scss

Al compilar usando compass a travé de Grunt sale este warning que puede causar problemas con futuras versiones de Sass.

"WARNING on line 103 of wakkos-framework/scss/componentes/_tipografia.scss: ".header .a-rss" failed to @extend "hide-text".
The selector "hide-text" was not found.
This will be an error in future releases of Sass.
Use "@extend hide-text !optional" if the extend should be able to fail."

duda sobre este framework?

Hola Wakkos. Estoy viendo un tutorial que diste para Platzi sobre wordpress y me gustaría tener ese framework de css para seguirte fácilmente durante el curso. ¿es este framework?

Que tal un Font-family por defecto en el reset?

Hola Wakkos,
Estoy haciendo mi propio framework css basandome en el tuyo, excelente trabajo. Ademas soy alumno del curso de CSS que estas impartiendo estos días.
Viendo el archivo_reset.scss me surge una duda: Sería correcto ponerle un font-family por defecto a los elementos de la línea nº10 ? yo le pondría por ejemplo un font-family: $basefont;

Un saludo

Sergio

framework support

it is really interesting the adoption of this framework for real-life web projects

so, is this projects still being in maintenance?

Código limpio

Hola,

creo que habría que decidir que sistema utilizar para definir las propiedades:valores.

En todo el código hay varias metodologías:

propiedad:valor; (sin espacios)
propiedad: valor; (1 espacio)
propiedad : valor; (2 espacios)

Por otro lado, también habría que decidir el método para alinear los valores. En el archivo _varibles.scss hay varios método (adjunto capturas, ya que no sé si el comentario no espeta los espaciados).

https://dl.dropboxusercontent.com/u/346211/Wakkos/Wakkos-CSS-Framework/align-1.png

https://dl.dropboxusercontent.com/u/346211/Wakkos/Wakkos-CSS-Framework/align-2.png

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.