Pack a CSS file to decrease its weight.
Program removes all comments, new lines, useless spaces and useless semicolons.
- Remove comments (remove them at first because they can be everywhere and would make all other steps more complicated if they have to handle them).
- Remove new line characters so they do not have to be taken into account by the next steps.
- Remove unneeded semicolons.
- Remove all unused spaces.