Last active
December 17, 2015 16:18
-
-
Save ahaywood/5637343 to your computer and use it in GitHub Desktop.
SCSS: Default CSS Document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS DOCUMENT */ | |
@import "base"; | |
// @import "compass/css3/"; | |
// SPRITES | |
// $my-icons-spacing: 5px; | |
// @import "../images/my-icons/*.png"; | |
// $icons: sprite-map("my-icons/*.png"); | |
/* ------------------ REDEFINE STYLES ----------------------- */ | |
html, html > body, body { margin: 0; padding: 0; } | |
body { font-size: 16px; } | |
/* FORM */ | |
form { margin: 0; padding: 0; } | |
textarea, | |
input[type=text], | |
input[type=email], | |
input[type=password], | |
input[type=tel], | |
input[type=url] { } | |
textarea { } | |
button, | |
input[type=submit] { text-shadow: none; box-shadow: none; border: none; cursor: pointer; | |
&:focus, | |
&:hover, | |
&:active { text-shadow: none; box-shadow: none; } | |
} | |
/* ------------------ LAYOUT STYLES ------------------------- */ | |
/* HEADER */ | |
header { | |
#logo { text-indent: -9999px; } | |
nav { | |
ul { | |
li { | |
a { | |
&:hover { } | |
} | |
} | |
} | |
} | |
} | |
/* FOOTER */ | |
footer { } | |
/* ------------------ PIECES -------------------------------- */ | |
ul.social-media { @extend %no-bullets; | |
li { float: left; | |
a { margin-right: 10px; | |
&:hover { } | |
} | |
} | |
} | |
/* ------------------ PAGE SPECIFIC STYLES ------------------ */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment