Skip to content

Instantly share code, notes, and snippets.

@derky1202
Created September 5, 2012 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derky1202/3633497 to your computer and use it in GitHub Desktop.
Save derky1202/3633497 to your computer and use it in GitHub Desktop.
sass/custom/_style.scss
// This File is imported last, and will override other styles in the cascade
// Add styles here to make changes without digging in too much
@media only screen and (min-width: 550px) {
body > header h2 { padding-left: 60px; }
body > footer { margin-bottom: 3em; }
}
header[role="banner"] {
background-image: url(/images/header_bg.png);
background-repeat: repeat;
}
@media only screen and (min-width: 1040px) {
body > nav {
-moz-border-radius: 0.4em;
-webkit-border-radius: 0.4em;
border-radius:0.4em;
margin-bottom: 2em;
}
body > footer{
-moz-border-radius-bottomleft: 0.4em;
-moz-border-radius-bottomright: 0.4em;
-webkit-border-radius: 0 0 0.4em 0.4em;
border-radius: 0 0 0.4em 0.4em;
}
#main{
-moz-border-radius-topleft: 0.4em;
-moz-border-radius-topright: 0.4em;
-webkit-border-radius: 0.4em 0.4em 0 0;
border-radius: 0.4em 0.4em 0 0;
}
#content{
-moz-border-radius-topleft: 0.4em;
-webkit-border-radius: 0.4em 0 0 0;
border-radius: 0.4em 0 0 0;
}
#content .blog-index a[rel="full-article"]{
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment