Last active
September 14, 2015 17:12
-
-
Save kyleskrinak/ecbf27fcc5c74160c851 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
/* for the 2015 TechExpo Duke site | |
/* source: https://gist.github.com/kyleskrinak/ecbf27fcc5c74160c851 | |
@import compass | |
#wpmu-footer-html | |
display: none !important | |
h1.site-title | |
display: none | |
.widget ul, .widget ol | |
margin-left: 0 | |
padding-left: 1em | |
$dukeblue: #0736A4 | |
$periwinkle: rgb(102, 102, 255) | |
$teal: rgb(51, 153, 102) | |
a | |
color: $teal | |
.faux-header-2 | |
display: block | |
color: $periwinkle | |
font-family: arial | |
font-size: 36px | |
font-weight: normal | |
height: 40px | |
line-height: 40px | |
text-rendering: optimizelegibility | |
margin: 0 0 1em | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 | |
color: $teal | |
margin: 0 | |
.hero-unit | |
h1 | |
display: none | |
.single-presentation .page-header::before | |
@extend .faux-header-2 | |
content: 'Presentation Abstract' | |
.post-type-archive-presentation | |
.page-header::before | |
@extend .faux-header-2 | |
content: 'Presentation Abstracts — Page 1' | |
&.post-type-paged-2 .page-header::before | |
@extend .faux-header-2 | |
content: 'Presentation Abstracts — Page 2' | |
&.post-type-paged-3 .page-header::before | |
@extend .faux-header-2 | |
content: 'Presentation Abstracts — Page 3' | |
.vendorlogos a | |
display: inline-block | |
vertical-align: middle | |
padding: 0.5em | |
#text-3 | |
padding: 1em | |
border: 1px solid #d4d4d4 |
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
@charset "UTF-8"; | |
/* for the 2015 TechExpo Duke site */ | |
/* source: https://gist.github.com/kyleskrinak/ecbf27fcc5c74160c851 */ | |
#wpmu-footer-html { display: none !important; } | |
h1.site-title { display: none; } | |
.widget ul, .widget ol { margin-left: 0; padding-left: 1em; } | |
a { color: #339966; } | |
.faux-header-2, .single-presentation .page-header::before, .post-type-archive-presentation .page-header::before, .post-type-archive-presentation.post-type-paged-2 .page-header::before, .post-type-archive-presentation.post-type-paged-3 .page-header::before { display: block; color: #6666ff; font-family: arial; font-size: 36px; font-weight: normal; height: 40px; line-height: 40px; text-rendering: optimizelegibility; margin: 0 0 1em; } | |
h1, h2, h3, h4, h5, h6 { color: #339966; margin: 0; } | |
.hero-unit h1 { display: none; } | |
.single-presentation .page-header::before { content: "Presentation Abstract"; } | |
.post-type-archive-presentation .page-header::before { content: "Presentation Abstracts — Page 1"; } | |
.post-type-archive-presentation.post-type-paged-2 .page-header::before { content: "Presentation Abstracts — Page 2"; } | |
.post-type-archive-presentation.post-type-paged-3 .page-header::before { content: "Presentation Abstracts — Page 3"; } | |
.vendorlogos a { display: inline-block; vertical-align: middle; padding: 0.5em; } | |
#text-3 { padding: 1em; border: 1px solid #d4d4d4; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment