More explicit comments

This commit is contained in:
PhilippeVay 2014-06-28 12:59:02 +02:00
parent 9b8b1f45ec
commit d72f279467
4 changed files with 6 additions and 5 deletions

View File

@ -49,7 +49,7 @@
@ultra-large-screen : 1600px; // ultra large screens media query
// misc
@gutter : 20px; // gutter value (%, px, em, rem) for grid layouts
@gutter : 20px; // gutter value for grid layouts. Unit can be: %, px, em, rem
// LESS mixins : don't touch or you'll be banned ;)
// px to em/rem

View File

@ -1,6 +1,6 @@
@import "00-config";
/*!
* www.KNACSS.com V3.0.3 (2014-05-019) @author: Raphael Goetter, Alsacreations
* www.KNACSS.com V3.0.3 (2014-05-19) @author: Raphael Goetter, Alsacreations
* Licence WTFPL http://www.wtfpl.net/
*/
@ -185,7 +185,7 @@ sup {
/* == hiding content */
/* ----------------------------- */
/* hidden but not for assistance tools, Yahoo! method */
/* hidden but not for an assistive technology like a screen reader, Yahoo! method */
.visually-hidden {
position: absolute !important;
border: 0 !important;

View File

@ -4,11 +4,11 @@
/* ----------------------------- */
@media (min-width: @small-screen) {
/* rules for big resources and big screens like: background-images, font-faces, etc. */
/* rules for big resources and big screens like: background-images, font-faces, etc. */
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
/* style adjustments for high density devices */
/* style adjustments for high density devices */
}
/* ---------------------------------- */

View File

@ -70,6 +70,7 @@
*zoom: 1;
}
/* old syntax of clip for IE6/IE7 */
.visually-hidden {
*clip: rect(1px 1px 1px 1px);
}