D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
oskwazir
Full window
Github gist
JS Bin // source http://jsbin.com/xacawi
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JS Bin</title> <style id="jsbin-css"> .first-face{ background-color:#fff; height:50px; width:50px; border:4px solid #fefefe; border-radius:8px; padding:10px; border-style:outset; } .pip{ background-color:#333; border:1px solid black; border-radius:50%; width:10px; height:10px; display:block; } body{ background-color:#766; } </style> </head> <body> <div class="first-face"> <span class="pip"></span> </div> <script id="jsbin-source-css" type="text/css">.first-face{ background-color:#fff; height:50px; width:50px; border:4px solid #fefefe; border-radius:8px; padding:10px; border-style:outset; } .pip{ background-color:#333; border:1px solid black; border-radius:50%; width:10px; height:10px; display:block; } body{ background-color:#766; }</script> </body> </html>