This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style Changes for CS Sample Navigation for new walker
- Loading branch information
andrewmbacon
committed
Jul 23, 2014
1 parent
5c053f6
commit fe7036e
Showing
49 changed files
with
1,556 additions
and
768 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Alignments | ||
- - - - - - - - - - - - - - - - - - - */ | ||
.alignleft { | ||
display: inline; | ||
float: left; | ||
margin-right: 1.5em; | ||
} | ||
|
||
.alignright { | ||
display: inline; | ||
float: right; | ||
margin-left: 1.5em; | ||
} | ||
|
||
.aligncenter { | ||
clear: both; | ||
display: block; | ||
margin: 0 auto; | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Captions | ||
- - - - - - - - - - - - - - - - - - - */ | ||
.wp-caption { | ||
margin-bottom: 1.5em; | ||
max-width: 100%; | ||
} | ||
|
||
.wp-caption img[class*="wp-image-"] { | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
.wp-caption-text { | ||
text-align: center; | ||
} | ||
|
||
.wp-caption .wp-caption-text { | ||
margin: 0.8075em 0; | ||
} |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Fonts | ||
- - - - - - - - - - - - - - - - - - - */ | ||
@font-face { | ||
font-family: 'Proxima Nova'; | ||
src: url("../../global/fonts/proximanova_regular/ProximaNova-Reg-webfont.eot"); | ||
src: url("../../global/fonts/proximanova_regular/ProximaNova-Reg-webfont.eot?#iefix") format("embedded-opentype"), url("../../global/fonts/proximanova_regular/ProximaNova-Reg-webfont.svg#proxima_nova_rgregular") format("svg"), url("../../global/fonts/proximanova_regular/ProximaNova-Reg-webfont.woff") format("woff"), url("../../global/fonts/proximanova_regular/ProximaNova-Reg-webfont.ttf") format("truetype"); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Proxima Nova'; | ||
src: url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.eot"); | ||
src: url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.eot?#iefix") format("embedded-opentype"), url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.svg#proxima_nova_ltsemibold") format("svg"), url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.woff") format("woff"), url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.ttf") format("truetype"); | ||
font-weight: 500; | ||
font-style: normal; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#footers { | ||
background-color: #eeeeee; | ||
margin-top: 1.5em 0 0 0; | ||
border: 0px solid transparent; | ||
border-color: #cccccc; | ||
border-width: 2px 0 0 0; | ||
} | ||
|
||
body.sticky #footers { | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
} | ||
|
||
#mega-footer { | ||
padding-top: 1em; | ||
background-color: transparent; | ||
} | ||
#mega-footer .widget { | ||
color: black; | ||
background-color: transparent; | ||
border: none; | ||
} | ||
#mega-footer .widget a { | ||
color: blue; | ||
} | ||
#mega-footer .widget a:hover { | ||
color: red; | ||
} | ||
#mega-footer .widget .widget-head { | ||
background-color: transparent; | ||
color: black; | ||
border: none; | ||
} | ||
|
||
#footer { | ||
padding: 1.5em 0; | ||
color: blue; | ||
} | ||
#footer a { | ||
color: blue; | ||
} | ||
#footer a:hover { | ||
color: red; | ||
} | ||
|
||
#footer ul { | ||
padding: 0; | ||
} | ||
|
||
#footer li { | ||
display: inline; | ||
margin-right: 1em; | ||
} | ||
|
||
#footer li:last-child { | ||
margin-right: 0; | ||
} | ||
|
||
#footer .glyphicon { | ||
display: none; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Galleries | ||
- - - - - - - - - - - - - - - - - - - */ | ||
.gallery { | ||
margin-bottom: 1.5em; | ||
} | ||
|
||
.gallery-item { | ||
display: inline-block; | ||
text-align: center; | ||
vertical-align: top; | ||
width: 100%; | ||
} | ||
|
||
.gallery-columns-2 .gallery-item { | ||
max-width: 50%; | ||
} | ||
|
||
.gallery-columns-3 .gallery-item { | ||
max-width: 33.33%; | ||
} | ||
|
||
.gallery-columns-4 .gallery-item { | ||
max-width: 25%; | ||
} | ||
|
||
.gallery-columns-5 .gallery-item { | ||
max-width: 20%; | ||
} | ||
|
||
.gallery-columns-6 .gallery-item { | ||
max-width: 16.66%; | ||
} | ||
|
||
.gallery-columns-7 .gallery-item { | ||
max-width: 14.28%; | ||
} | ||
|
||
.gallery-columns-8 .gallery-item { | ||
max-width: 12.5%; | ||
} | ||
|
||
.gallery-columns-9 .gallery-item { | ||
max-width: 11.11%; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Header Image | ||
- - - - - - - - - - - - - - - - - - - */ | ||
#masthead { | ||
-ms-word-break: break-all; | ||
word-break: break-all; | ||
word-break: break-word; | ||
-webkit-hyphens: auto; | ||
-moz-hyphens: auto; | ||
hyphens: auto; | ||
} | ||
|
||
#masthead.header-image .container { | ||
position: relative; | ||
} | ||
|
||
#header-image-wrap { | ||
overflow: hidden; | ||
max-height: 250px; | ||
} | ||
|
||
#header-image { | ||
min-height: 100px; | ||
width: 100%; | ||
} | ||
|
||
#masthead.header-image .site-branding { | ||
position: absolute; | ||
top: 30px; | ||
left: 30px; | ||
} | ||
|
||
#masthead.header-image .container .row { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
margin: 0; | ||
} | ||
|
||
#site-title .searchform { | ||
float: right; | ||
padding-top: 30px; | ||
} | ||
|
||
#site-title .parent-spacing .searchform { | ||
margin-top: 10px; | ||
} | ||
|
||
#primary-nav .searchform .form-control { | ||
display: inline-block; | ||
width: auto; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
#nav-wrapper .container { | ||
padding: 0; | ||
} | ||
|
||
.dropdown-menu .dropdown-menu { | ||
padding-left: 20px; | ||
} | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* - - - - - - - - - - - - - - - - - - - | ||
== Media | ||
- - - - - - - - - - - - - - - - - - - */ | ||
.page-content img.wp-smiley, | ||
.entry-content img.wp-smiley, | ||
.comment-content img.wp-smiley { | ||
border: none; | ||
margin-bottom: 0; | ||
margin-top: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Make sure embeds and iframes fit their containers */ | ||
embed, | ||
iframe, | ||
object { | ||
max-width: 100%; | ||
} |
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
Oops, something went wrong.