/* change box sizing so padding behaves appropriately */ * { box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; } /* set body height so we can scroll */ body { min-height:2000px; } h2 small { color:#BBB; font-weight:normal; } /* basic positioning of 3 buttons */ #sp-links { padding-top:20px; position:fixed; text-align:center; width:100%; } /* styling each circle */ #sp-links a { color:#FFF; display:inline-block; font-size:80px; height:120px; margin:0 30px; padding-top:20px; width:120px; border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; -webkit-border-radius:50%; } /* set the background color of each circle */ #sp-facebook { background:#43609C; } #sp-twitter { background:#1CC1F7; } #sp-google { background:#DD4C3B; } .info { position:fixed; bottom:5%; width:100%; text-align:center; line-height:1.5; color:#333; } .info a { text-decoration:none; }