Skip to content

Instantly share code, notes, and snippets.

View owebboy's full-sized avatar

Oliver Pope owebboy

View GitHub Profile
// header.scss
// oliver pope
// VARIABLES
// Base Styles
$ff: "Helvetica Neue", Arial, Helvetica, sans-serif; // font
$tx: #333; // color of text
$bg: #fff; // color of <html> background
@owebboy
owebboy / dabblet.css
Created January 26, 2014 07:09
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
html {
margin: 3em 15%;
font-family: Helvetica, Arial, sans-serif;
color: #111;
background: #0074D9;
}
@owebboy
owebboy / A-Pen-by-Oliver-Pope.markdown
Created January 25, 2014 04:21
A Pen by Oliver Pope.
@owebboy
owebboy / dabblet.css
Created January 7, 2014 17:17
Checkbox Hack
/* Checkbox Hack */
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
-webkit-appearance: push-button;
-moz-appearance: button;
@owebboy
owebboy / dabblet.css
Created December 6, 2013 16:07
HEADER
@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
margin: 0;
font-family: "Open Sans";
}
body {
margin: 0;
@owebboy
owebboy / dabblet.css
Created December 6, 2013 14:37
ABOUT
@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
margin: 0;
font-family: "Merriweather";
}
body {
margin: 0;
@owebboy
owebboy / dabblet.css
Created December 6, 2013 14:22
HEADER
@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(https://fonts.googleapis.com/css?family=Nunito:300);
@import url(https://fonts.googleapis.com/css?family=Merriweather);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
margin: 0;
font-family: "Oswald";
}
body {
@owebboy
owebboy / dabblet.css
Created December 6, 2013 13:13
Untitled
@import url(http://fonts.googleapis.com/css?family=Merriweather);
@import url(http://fonts.googleapis.com/css?family=Oswald);
@owebboy
owebboy / dabblet.css
Created December 5, 2013 01:58
Untitled
@import url(http://fonts.googleapis.com/css?family=Merriweather);
@import url(http://fonts.googleapis.com/css?family=Oswald);
#wrapper {
padding-bottom: 100px;
}
header {
font-family: "Oswald";
position: fixed;
top: 0;
right: 0;

On Hover Spinning Text

A CSS transition is changing the color, text-shadow and the transform properties of the

tag

A Pen by owebboy on CodePen.

License.