PotatoCSS icon indicating copy to clipboard operation
PotatoCSS copied to clipboard

Create new utility classes

Open ummahusla opened this issue 8 years ago • 7 comments

ummahusla avatar Dec 19 '16 15:12 ummahusla

@ummahusla I would like to contribute, what kind of utility classes shall I add?

hardikyjoshi avatar Oct 07 '17 15:10 hardikyjoshi

@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;
}

ummahusla avatar Oct 07 '17 15:10 ummahusla

Sure @ummahusla ! I'm on it!

hardikyjoshi avatar Oct 07 '17 15:10 hardikyjoshi

@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 avatar Oct 07 '17 15:10 hardikyjoshi

@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 avatar Oct 07 '17 15:10 ummahusla

@ummahusla I could add yet mixins ?

hostel avatar Oct 16 '17 18:10 hostel

@hostel I would preferably try not to use them for now

ummahusla avatar Oct 16 '17 19:10 ummahusla