Skip to content

Instantly share code, notes, and snippets.

@k1r8r0wn
k1r8r0wn / main.css
Last active April 12, 2016 04:47
Absolute horizontal & vertical centering block
.centered {
position: absolute;
top: 50%;
left: 50%;
text-align: center;
z-index: 1;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
@k1r8r0wn
k1r8r0wn / main.css
Last active August 29, 2015 14:22
Sticky footer styles
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
@k1r8r0wn
k1r8r0wn / index.html
Last active September 2, 2019 08:03
Animated CSS contact-button #css #button
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Animated CSS contact-button</title>
<style>
.phone {
position: fixed;
top: 308px;
right: 45%;