aboutsummaryrefslogtreecommitdiff
path: root/sass/themes/classic/partials/_navigation.scss
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-06-07 10:45:01 -0400
committerBrandon Mathis <brandon@imathis.com>2011-06-07 10:45:01 -0400
commitd8b796acb9275e74324c3ea04324314ecbe1b664 (patch)
tree475d78d3b5ee9f5bba1bf8147e8368aa9278e4fa /sass/themes/classic/partials/_navigation.scss
parent8698a276f937cb1cd6f67f7f213e2ea438500d7e (diff)
downloadmy_new_personal_website-d8b796acb9275e74324c3ea04324314ecbe1b664.tar.xz
my_new_personal_website-d8b796acb9275e74324c3ea04324314ecbe1b664.zip
Another massive commit:
1. Major improvements to the responsive styling. 2. Toggleable sidebar 3. Upgraded to modernizr 2.0 which includes Respond.js 4. IE7-9 testing and fixes 5. New theming system which should make forkers happy 6. New rake task for installing Octopress themes 7. Magic
Diffstat (limited to 'sass/themes/classic/partials/_navigation.scss')
-rw-r--r--sass/themes/classic/partials/_navigation.scss67
1 files changed, 0 insertions, 67 deletions
diff --git a/sass/themes/classic/partials/_navigation.scss b/sass/themes/classic/partials/_navigation.scss
deleted file mode 100644
index 30685034..00000000
--- a/sass/themes/classic/partials/_navigation.scss
+++ /dev/null
@@ -1,67 +0,0 @@
-body > nav {
- > div > div {
- float: right;
- position: relative;
- padding: .45em 0 0 0;
- a {
- float: right;
- @include replace-text-with-dimensions('rss.png');
- }
- form {
- margin: 0; padding: 0;
- @include background-clip(padding-box);
- input[type='text']{
- margin: 0;
- @include border-radius(1em);
- float: left;
- border: 1px solid #ccc;
- color: #888;
- background: image-url('search.png') no-repeat .5em .4em #f6f6f6;
- padding: .4em .8em .1em 1.8em;
- line-height: 1.35em;
- font-size: .85em;
- &:focus {
- color: #444;
- border-color: #80b1df;
- @include box-shadow(#80b1df 0 0 4px, #80b1df 0 0 3px inset);
- background-color: #fff;
- outline: none;
- }
- }
- }
- }
- @extend .group;
- position: relative;
- z-index: 1;
- background-color: $nav-bg;
- @include background-image(linear-gradient(#fcfcfc, #f4f4f4 0.3, #dddddd));
- border: {
- top: 1px solid $nav-border-top;
- bottom: 1px solid $nav-border-bottom; };
- ul {
- position: relative;
- @include horizontal-list;
- margin: 0 auto;
- padding: .5em 0;
- }
- ul li {
- padding: 0 1em;
- margin: 0;
- border-left: 1px solid $nav-border-left;
- border-right: 1px solid $nav-border-right;
- &:first-child {
- border-left: none;
- padding-left: 0; }
- &:last-child {
- border-right: 0; }
- a {
- display: inline-block;
- color: $nav-color;
- line-height: 150%;
- text-decoration: none;
- &:hover {
- color: $nav-color-hover;
- }
- }
- }
-}