D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
brendon-gonzalez
Full window
Github gist
Button Overrides
<!doctype html> <html class="no-js"> <head> <meta charset="utf-8"> <title>Bootstrap Nonsense</title> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.8.0.min.js"></script> </head> <body> <div class="container"> <header class="page-header"> <h1>Hello World and stuff</h1> </header> <article class="row"> <section class="col-md-6"> <button type="button" class="btn-large btn">DO this!</button> <p>Left Stuff</p> </section> <section class="col-md-6"> Right Stuff </section> </article> <footer class="page-footer"> <ul class="list-inline"> <li><a href="/">Link 1</a></li> <li><a href="/">Link 2</a></li> <li><a href="/">Link 3</a></li> </ul> </footer> </div> </body> </html>