Skip to content

Instantly share code, notes, and snippets.

View denzildoyle's full-sized avatar
🎯
Growing

Denzil Doyle denzildoyle

🎯
Growing
View GitHub Profile
@denzildoyle
denzildoyle / Vertical Center.css
Created June 6, 2014 01:30
Vertical align anything with out the need to define its height. With only 5 lines of code.
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);

#Installing PhoneGap Install Nodejs from
http://nodejs.org/

If you have homebrew installed brew update
brew install node

##Install Android SDK
brew install android-sdk

@denzildoyle
denzildoyle / fade.css
Created May 23, 2014 23:59
CSS Keyframe Animation Color Change
@-webkit-keyframes fade {
0%, 100% { color: #e95545; }
12.5% { color: #924ead; }
25% {
color: #63b6d2; }
37.5% {
color: #76d78b; }
@denzildoyle
denzildoyle / browser -texteditor.html
Last active August 29, 2015 14:01
Enter this code in your browser URL and just like that you have an in browser text editor.
data:text/html,
<body contenteditable
style="
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
font-family:'Open Sans', sans-serif;
font-weight:300;
font-size:2rem;
line-height:1.4;
max-width:60rem;
margin:0 auto;
@denzildoyle
denzildoyle / bootstrap-fixes.md
Created May 7, 2014 18:51
A collection of my bootstrap updates
  ul.nav li.dropdown:hover > ul.dropdown-menu {
      display: block;    

}

box-shadow: 0px 1px 2px #555 inset;

How to press a site

How to create wordpress custom themes

  • installing wordpress
  • install xampp
  • download wordpress
  • create empty database
  • install wordpress in browser
  • installing blank theme
@denzildoyle
denzildoyle / Facebook With CI
Created March 31, 2014 13:06
Facebook page tab application with codeigniter
Google analytics
http://www.savio.no/blogg/a/104/how-to-track-facebook-iframes-with-google-analytics
.arrow {
display: block;
width: 30px;
height: 30px;
position: absolute;
bottom: 50px;
left: 50%;
margin-left: -15px;
border: 2px solid rgba(255, 255, 255, 0.35);
background: rgba(0,0,0,0);