Created
July 7, 2013 01:23
-
-
Save mynameispj/5941888 to your computer and use it in GitHub Desktop.
Global Drupal overrides. Props to Jeff Glenn (@jeffaglenn) at Deluge.
This file contains 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
/*-------------------------------------------------------------------------------*/ | |
/* GLOBAL / DRUPAL OVERRIDES */ | |
/*-------------------------------------------------------------------------------*/ | |
html { | |
background: #fff; | |
} | |
body { | |
background: #fff; | |
color: #111011; | |
font-size: 87.5%; | |
} | |
.wrap { | |
width: 1140px; /*978px / 1024px = 91.601563% | 978px is original width*/ | |
/* | |
max-width: 978px; | |
*/ | |
margin: 0px auto; | |
position: relative; | |
} | |
ul.menu li { | |
margin: 0; | |
padding: 0; | |
} | |
ul.inline li { | |
padding: 0; | |
} | |
ul li.leaf { | |
list-style-image: none; | |
list-style-type: none; | |
} | |
.item-list ul { | |
padding: 0; | |
margin: 0; | |
} | |
.item-list ul li { | |
margin: 0; | |
padding: 0; | |
} | |
.form-item, .form-actions { | |
margin: 0; | |
} | |
ul li.expanded, ul li.collapsed { | |
list-style-image: none; | |
list-style-type: none; | |
} | |
a { | |
color: $gold; | |
&:hover { | |
color: darken($gold, 10%); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment