Conforming to a standard is not an indicator of code quality. However, I use Font Awesome in all my projects, because following a standard saves time. For some weird reason, Font Awesome is also bright light… thusly I have my own custom CSS for a darker, simpler and cleaner way to view and search FA-icons.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | body { background: #111; color: #aaa; } .fontawesome-icon-list .fa-hover a { color: #aaa; } .alert { background: #222; border-color: #333; } .jumbotron, #social-buttons, #footer, #fusionads, .fonticons { display: none; } .navbar { -webkit-filter: grayscale(100%); } .navbar-inverse { background: #222; } pre { background-color: #000; border-color: #222 } |