Details
Description
In CSS files, we are having various inconsistency in the formatting of the code for e.g. we have following types of code formatting
// No space
ul#preferences-menu a:hover { text-decoration: none; }
// Space of 2
div.autocomplete ul { list-style-type:none; margin:0; padding:0; }
// Space of 4
.control-area a { font-size: 1.1em; color: #5CA3D7; }
For better readability we should format the existing files with space of 4.
Also for some theme, we named CSS files as maincss.css and for some, we named it as style.css. We can rename these file as per best practices for consistency.