PotatoCSS
PotatoCSS copied to clipboard
Create new utility classes
@ummahusla I would like to contribute, what kind of utility classes shall I add?
@hardikyjoshi Cool! I would suggest to take a look at Bootstrap/Foundation utility classes and evaluate them and check what they have in general.
Here is the current list of utility classes
/* Utilities */
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.text-justify {
text-align: justify;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.font-light {
font-weight: lighter;
}
.font-normal {
font-weight: normal;
}
.font-bold {
font-weight: bold;
}
/* Unordered list markers */
.inline-potato {
display: inline;
padding: 0;
}
.inline-potato li {
display: inline;
}
.circle-potato {
list-style-type: circle;
}
.square-potato {
list-style-type: square;
}
.roman-potato {
list-style-type: upper-roman;
}
.alpha-potato {
list-style-type: lower-alpha;
}
Sure @ummahusla ! I'm on it!
@ummahusla It seems the repo doesn't comprise of the gulpfile, I found it in one of your commits. I'm somehow unable to build the projects. Just wanted to know if I'm missing something. Thanks!
@hardikyjoshi Gulp was removed, it will be added back in order to compile SASS/LESS at some point. I had no time to fix the gulpfile. If you have - you can take a look at this as well.
@ummahusla I could add yet mixins ?
@hostel I would preferably try not to use them for now