windhamdavid 10 years ago
parent
commit
4bc791715c
7 changed files with 214 additions and 41 deletions
  1. 1 1
      footer-home.php
  2. 1 1
      footer-studio.php
  3. 1 0
      functions.php
  4. 4 0
      js/scripts.js
  5. 38 6
      js/studio.js
  6. 98 18
      page-studio.php
  7. 71 15
      style.css

+ 1 - 1
footer-home.php

@@ -8,7 +8,7 @@
 					<li><a href="http://code.davidawindham.com"><span class="fa fa-code fa-fw"></span> Code</a></li>
 				</ul>
 				<ul>
-					<li><a href="<?php echo home_url( '/' ); ?>studio"><span class="fa fa-lightbulb-o fa-fw"></span> Studio</a></li>
+					<li><a href="<?php echo home_url( '/' ); ?>studio"><span class="fa fa-flask fa-fw"></span> Studio</a></li>
 					<li><a href="<?php echo home_url( '/' ); ?>contact"><span class="fa fa-envelope-o fa-fw"></span> Contact</a></li>
 					<li><a href="<?php echo home_url( '/' ); ?>sitemap"><span class="fa fa-sitemap fa-fw"></span> Sitemap</a></li>
 				</ul>

+ 1 - 1
footer-studio.php

@@ -8,7 +8,7 @@
 					<li><a href="http://code.davidawindham.com"><span class="fa fa-code fa-fw"></span> Code</a></li>
 				</ul>
 				<ul>
-					<li><a href="<?php echo home_url( '/' ); ?>studio"><span class="fa fa-lightbulb-o fa-fw"></span> Studio</a></li>
+					<li><a href="<?php echo home_url( '/' ); ?>studio"><span class="fa fa-flask fa-fw"></span> Studio</a></li>
 					<li><a href="<?php echo home_url( '/' ); ?>contact"><span class="fa fa-envelope-o fa-fw"></span> Contact</a></li>
 					<li><a href="<?php echo home_url( '/' ); ?>sitemap"><span class="fa fa-sitemap fa-fw"></span> Sitemap</a></li>
 				</ul>

+ 1 - 0
functions.php

@@ -13,6 +13,7 @@ function dw_setup() {
 	add_theme_support( 'post-formats', array( 'aside', 'gallery', 'image', 'video', 'audio', 'quote', 'link', 'status', 'chat' ) );
 	set_post_thumbnail_size( 150, 150, true );
 	add_image_size( 'post-large', 770, 577, true );
+	add_image_size( 'studio', 400, 300, true );
 }
 endif; 
 add_action( 'after_setup_theme', 'dw_setup' );

File diff suppressed because it is too large
+ 4 - 0
js/scripts.js


+ 38 - 6
js/studio.js

@@ -33,16 +33,19 @@ jQuery(document).ready(function($) {
 			}  
 		);
 	});
-
+	$("#studio-caro").wallpaper({source: "../wp-content/themes/dw/img/desk2.jpg"});
 	$('.caro-grad').appear();
 	$('.caro-grad').one('appear', dw_appear);
 	function dw_appear() {
 		$('#caro').carousel({
-			interval: 7000,
+			interval: 9000,
 			wrap: true,
-			pause: false,
+			//pause: false,
+			cycle: false,
 			keyboard: true
 		});
+		$('#svg-imac').addClass('bg');
+		
 		var anima = new DrawFillSVG({elementId: 'svg-imac'});
 		anima.replay();
 	};
@@ -59,14 +62,41 @@ jQuery(document).ready(function($) {
 	$('#caro').on('slid.bs.carousel', function(event) {
 		var consta = $(event.target);
 		setTimeout(function() {
+			if (consta.find('.item.active').data('id') === 0) {
+				$('#studio-caro').addClass('caro-grad5').removeClass('caro-grad caro-grad3 caro-grad2 caro-grad5');
+				$('.site-title a').addClass('light');
+				$('.carousel-indicators li').removeClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper({source: "../wp-content/themes/dw/img/desk2.jpg"});
+			}
 			if (consta.find('.item.active').data('id') === 1) {
-				$('#studio-caro').addClass('caro-grad').removeClass('caro-grad3 caro-grad2');
+				$('#studio-caro').addClass('caro-grad').removeClass('caro-grad3 caro-grad2 caro-grad5');
+				$('.site-title a').addClass('light');
+				$('.carousel-indicators li').removeClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper("destroy");
 			}
 			if (consta.find('.item.active').data('id') === 2) {
-				$('#studio-caro').removeClass('caro-grad caro-grad3').addClass('caro-grad2');
+				$('#studio-caro').addClass('caro-grad2').removeClass('caro-grad caro-grad3 caro-grad5');
+				$('.site-title a').addClass('light');
+				$('.carousel-indicators li').removeClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper("destroy");
 			}
 			if (consta.find('.item.active').data('id') === 3) {	
-				$( '#studio-caro' ).addClass('caro-grad3').removeClass('caro-grad2 caro-grad');
+				$( '#studio-caro' ).addClass('caro-grad3').removeClass('caro-grad2 caro-grad caro-grad5');
+				$('.site-title a').removeClass('light');
+				$('.carousel-indicators li').addClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper("destroy");
+			}
+			if (consta.find('.item.active').data('id') === 4) {	
+				$('#studio-caro').removeClass('caro-grad caro-grad3').addClass('caro-grad5');
+				$('.site-title a').addClass('light');
+				$('.carousel-indicators li').removeClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper({source: {poster:"../wp-content/themes/dw/img/camera.jpg",mp4:"../wp-content/themes/dw/img/camera.mp4"}});
+			}
+			if (consta.find('.item.active').data('id') === 5) {	
+				$( '#studio-caro' ).addClass('caro-grad3').removeClass('caro-grad2 caro-grad caro-grad5');
+				$('.site-title a').removeClass('light');
+				$('.carousel-indicators li').addClass('darken-carousel-indicators');
+				$("#studio-caro").wallpaper("destroy");
 			}
 		}, 10);
 	});
@@ -95,5 +125,7 @@ jQuery(document).ready(function($) {
 		    screenit();
 		});
 	});
+	
+
 		
 });

+ 98 - 18
page-studio.php

@@ -1,22 +1,35 @@
 <?php get_header('studio'); ?>
-	<div id="studio-caro" class="container-fluid leader caro-grad">
+	<div id="studio-caro" class="container-fluid leader">
 		<div id="caro" class="carousel slide">
 			<ol class="carousel-indicators">
 			    <li data-target="#caro" data-slide-to="0" class="active"></li>
 			    <li data-target="#caro" data-slide-to="1"></li>
 			    <li data-target="#caro" data-slide-to="2"></li>
+				<li data-target="#caro" data-slide-to="3"></li>
+				<li data-target="#caro" data-slide-to="4"></li>
+				<li data-target="#caro" data-slide-to="5"></li>
 			  </ol>
 			<div class="carousel-inner">
-				<div class="item active" data-id="1">
+				<div class="item active" data-id="0">
+					<div class="container animac">
+						<div class="row">
+							<div class="col-sm-12">
+								<h1 class="light super-duper cm-sans">Studio</h1>
+								<h1 class="light super cm"></h1>
+							</div>
+						</div>
+					</div>
+				</div>
+				<div class="item" data-id="1">
 					<div class="container animac">
 						<div class="row">
 							<div class="col-sm-6">
-								<h1 class="light super cm-sans">Project Title</h1>
+								<h1 class="light super cm-sans">I Can Haz Fancy Communication Designs</h1>
 								<h4 class="light cm">And a Fun Tagline Too</h4>
 								<h5 class="light">How about a couple lines for a description<br/>A second line</h5>
 							</div>
 							<div class="col-sm-6">
-								<svg id="svg-imac" viewBox="0 0 460 400">
+								<svg id="svg-imac" class="bg" viewBox="0 0 460 400">
 									<path fill="#B4BEC8" stroke="#B4BEC8" stroke-width="2" stroke-miterlimit="10" d="M312.5,381.9l-26.5-26.4c-6.5-7.7-5.6-33.4-5.5-37h-99.9c0.1,3.6,1,29.2-5.5,37l-26.5,26.4c-1.1,1.3-1.6,2.3-1.5,3.1h0c0.7,7,6.1,5.8,12.4,5.8h142c6.1,0,11.3,1.2,12.3-5.1C314.2,384.8,313.9,383.6,312.5,381.9L312.5,381.9z"/>
 									<path fill="#C8D2DC" stroke="#C8D2DC" stroke-width="2" stroke-miterlimit="10" d="M442.1,9H18.9C11.5,9,5,15.2,5,23v281.6c0,7.7,6.5,14.5,13.9,14.5h423.2c7.4,0,13.9-6.7,13.9-14.5V23C456,15.2,449.5,9,442.1,9z M438,249H23V26h415V249z"/>
 									<path fill="#FFFFFF" stroke="#C8D2DC" stroke-width="2" stroke-miterlimit="10" d="M238.7,294.2c0-3.8,3.1-5.7,3.3-5.8c-1.8-2.6-4.6-3-5.5-3c-2.4-0.2-4.6,1.4-5.8,1.4s-3.1-1.4-5-1.3c-2.6,0-5,1.5-6.3,3.8c-2.7,4.6-0.7,11.5,1.9,15.3c1.3,1.8,2.8,3.9,4.8,3.8c1.9-0.1,2.6-1.2,5-1.2c2.3,0,3,1.2,5,1.2c2.1,0,3.4-1.9,4.6-3.7c1.5-2.1,2.1-4.2,2.1-4.3C242.7,300.3,238.7,298.8,238.7,294.2 M234.9,282.9c1.1-1.3,1.8-3.1,1.6-4.8c-1.5,0.1-3.4,1-4.5,2.3c-1,1.1-1.8,3-1.6,4.7C232.1,285.2,233.8,284.2,234.9,282.9"/>
@@ -49,16 +62,49 @@
 				</div>
 				<div class="item" data-id="3">
 					<div class="container animac hide-svg">
-						<svg id="svg-mac" class="svg" height="300px" viewBox="0 0 960 480">
-							<path fill="#B4BEC8" stroke="#B4BEC8" stroke-width="2px" stroke-miterlimit="10" d="M570.14 440.2l-29.165-28.99c-7.103-8.5-6.152-36.718-6.02-40.665H425.048c.133 3.947 1.082 32.164-6.018 40.666l-29.166 28.99c-1.237 1.404-1.712 2.505-1.623 3.37h-.054c.76 7.727 6.664 6.332 13.607 6.332H558.01c6.696 0 12.412 1.27 13.493-5.56.58-.953.274-2.282-1.364-4.14z"/>
-							<path fill="#C8D2DC" stroke="#C8D2DC" stroke-width="2px" stroke-miterlimit="10" d="M727.488 355.125c0 8.514-6.597 15.42-14.738 15.42h-465.5c-8.14 0-14.74-6.906-14.74-15.42V45.42c0-8.517 6.6-15.42 14.74-15.42h465.5c8.142 0 14.738 6.903 14.738 15.42v309.705z"/>
-							<path fill="#fff" stroke="#C8D2DC" stroke-width="2px" stroke-miterlimit="10" d="M489.01 343.713c-.042-4.223 3.447-6.254 3.605-6.352-1.963-2.866-5.018-3.263-6.102-3.31-2.602-.26-5.074 1.53-6.39 1.53s-3.356-1.49-5.506-1.448c-2.836.04-5.445 1.645-6.907 4.182-2.942 5.11-.75 12.672 2.116 16.814 1.4 2.02 3.072 4.305 5.268 4.22 2.114-.08 2.913-1.362 5.467-1.362 2.556 0 3.274 1.363 5.51 1.322 2.273-.04 3.716-2.064 5.105-4.098 1.61-2.35 2.273-4.63 2.313-4.748-.05-.02-4.434-1.7-4.48-6.75M484.807 331.31c1.168-1.41 1.953-3.37 1.738-5.327-1.68.068-3.713 1.12-4.916 2.53-1.08 1.247-2.027 3.245-1.77 5.16 1.87.143 3.784-.95 4.947-2.362"/>
-							<path fill="#3C4650" stroke="#3C4650" stroke-width="2px" stroke-miterlimit="10" d="M727.488 315.527V45.982c0-8.828-6.597-15.982-14.738-15.982h-465.5c-8.14 0-14.74 7.155-14.74 15.982v269.545H727.49z"/>
-							<path fill="#141E28" stroke="#141E28" stroke-width="2px" stroke-miterlimit="10" d="M251.2 48.887h457.205v245.52H251.2z"/>
+						<svg id="svg-mac" class="svg" height="300px" viewBox="0 0 500 300">
+						<path fill="#000" stroke="#000000" stroke-width="0.5" stroke-miterlimit="10" d="M487.7,268h-44.1c0.5-1.5,0.8-3.1,0.8-4.7V22.9
+							c0-8-6.5-14.5-14.5-14.5H70.1c-8,0-14.5,6.5-14.5,14.5v240.4c0,1.6,0.3,3.2,0.8,4.7H12.2c-0.4,0-0.8,0.3-0.8,0.7v7.4
+							c0,0.2,0,0.8,0.6,1.2c0.1,0.1,0.3,0.2,0.4,0.3c0,0,0,0,0,0c3.3,2.3,11.5,5.6,20.8,5.6h433.5c9.2,0,17.5-3.4,20.8-5.6c0,0,0,0,0,0
+							c0.2-0.1,0.4-0.3,0.5-0.4c0.4-0.3,0.4-0.9,0.4-1.1v-7.5C488.5,268.3,488.2,268,487.7,268z M56.6,263.3V22.9c0-7.4,6-13.5,13.5-13.5
+							H430c7.4,0,13.5,6,13.5,13.5v240.4c0,1.7-0.3,3.2-0.9,4.7h-39.4l0-0.2l-1.2-5.2h35.1c2.8,0,5-2.2,5-5v-23.4v-1.3V22.7
+							c0-6.6-5.4-12-12-12H69.9c-6.6,0-12,5.4-12,12v210.2v1.3v23.4c0,2.8,2.2,5,5,5h34l-1.2,5.2l0,0.2H57.5
+							C56.9,266.5,56.6,264.9,56.6,263.3z M216.3,268h-49.4h-15.7H96.7l1.2-5.4h53.3h15.7h234.1l1.2,5.4H283.7H216.3z M282.7,269
+							c-0.3,1.6-1.9,4.4-4.7,4.4h-56c-2.8,0-4.4-2.8-4.7-4.4H282.7z M63,261.5c-2.2,0-4-1.8-4-4v-23.4v-1.3V22.7c0-6,4.9-11,11-11h360.2
+							c6,0,11,4.9,11,11v210.2v1.3v23.4c0,2.2-1.8,4-4,4H63z M12.5,269h83h1.3h54.5h15.7h49.4c0.3,2.1,2.3,5.4,5.7,5.4h56
+							c3.4,0,5.4-3.3,5.7-5.4h118.5h1.3h84.1v7.2c0,0.1,0,0.2,0,0.3c-0.1,0.1-0.2,0.2-0.4,0.3H12.9c-0.1-0.1-0.2-0.1-0.3-0.2
+							c-0.1-0.1-0.1-0.2-0.1-0.4V269z M466.8,282.3H33.2c-7.8,0-14.9-2.5-18.7-4.5h470.9C481.7,279.8,474.6,282.3,466.8,282.3z"/>
+						<path fill="#000" stroke="#000000" stroke-width="0.5" stroke-miterlimit="10" d="M431.2,23.8H68.8c-0.7,0-1.3,0.6-1.3,1.3v226.6
+							c0,0.7,0.6,1.3,1.3,1.3h362.4c0.7,0,1.3-0.6,1.3-1.3V25.1C432.4,24.4,431.9,23.8,431.2,23.8z M431.2,251.7H68.8V25.1h362.4V251.7z"
+							/>
+						<path fill="#000" stroke="#000000" stroke-width="0.5" stroke-miterlimit="10" d="M250.1,20.5c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2
+							c-1.1,0-2,0.9-2,2C248.1,19.6,249,20.5,250.1,20.5z M250.1,17.4c0.6,0,1,0.5,1,1c0,0.6-0.5,1-1,1c-0.6,0-1-0.5-1-1
+							C249.1,17.9,249.5,17.4,250.1,17.4z"/>
 						</svg>
 					</div>
 				</div>
-				
+				<div class="item" data-id="4">
+					<div class="container">
+						<div class="row">
+							<div class="col-sm-6">
+								<h1 class="light cm">Media</h1>
+							</div>
+							<div class="col-sm-6">
+							</div>
+						</div>
+					</div>
+				</div>
+				<div class="item" data-id="5">
+					<div class="container animac hide-svg">
+						<div class="row">
+							<div class="col-sm-6">
+								<h1 class="cm">Art</h1>
+							</div>
+							<div class="col-sm-6">
+							</div>
+						</div>
+					</div>
+				</div>
 			</div>
 		</div>
 	</div>
@@ -68,13 +114,11 @@
 				<article class="blurb">
 						<div class="entry-content">
 								<ul>
-									<li><a href="#"><span class="fa fa-desktop fa-fw"></span> Web</a></li>
-									<li><a href="#"><span class="fa fa-terminal fa-fw"></span> UX</a></li>
-									<li><a href="#"><span class="fa fa-film fa-fw"></span> Media</a></li>
-									<li><a href="#"><span class="fa fa-image fa-fw"></span> Photo</a></li>
-									<li><a href="#"><span class="fa fa-pencil fa-fw"></span> Graphic</a></li>
-									<li><a href="#"><span class="fa fa-paint-brush fa-fw"></span> Art</a></li>
-									<li><a href="#"><span class="fa fa-headphones fa-fw"></span> Music</a></li>
+									<li data-target="#caro" data-slide-to="1"><a href="#"><span class="fa fa-desktop fa-fw"></span> Web</a></li>
+									<li data-target="#caro" data-slide-to="2"><a href="#"><span class="fa fa-terminal fa-fw"></span> UX</a></li>
+									<li data-target="#caro" data-slide-to="3"><a href="#"><span class="fa fa-pencil fa-fw"></span> Graphic</a></li>
+									<li data-target="#caro" data-slide-to="4"><a href="#"><span class="fa fa-film fa-fw"></span> Media</a></li>	
+									<li data-target="#caro" data-slide-to="5"><a href="#"><span class="fa fa-paint-brush fa-fw"></span> Art</a></li>
 								</ul>
 						</div>
 				</article>
@@ -90,5 +134,41 @@
 			</div>
 		</div>
 	</div>
+	<div class="container">
+		<div class="row">							
+			<?php query_posts('category_name=studio&showposts=3'); ?>
+			<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+			<div class="col-sm-4 wow fadeInLeft">
+				<div class="studio-thumbnail">
+					<?php $img_url = wp_get_attachment_image_src(get_post_thumbnail_id(),'medium'); ?>
+					<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img class="studio-thumb" src="<?php echo $img_url[0];?>" width="100%" alt="<?php the_title(); ?>"/></a>
+				</div>
+				<article class="studio">
+					<div class="entry-content">		
+						<h4><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h4>
+						<?php dw_good_excerpt(110); ?>
+					</div>
+				</article>
+			</div>
+			<?php endwhile; ?>
+		</div>
+		<div class="row">							
+			<?php query_posts('category_name=studio&offset=3&showposts=3'); ?>
+			<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+			<div class="col-sm-4 wow fadeInLeft">
+				<div class="studio-thumbnail">
+					<?php $img_url = wp_get_attachment_image_src(get_post_thumbnail_id(),'studio'); ?>
+					<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img class="studio-thumb" src="<?php echo $img_url[0];?>" width="100%" alt="<?php the_title(); ?>"/></a>
+				</div>
+				<article class="studio">
+					<div class="entry-content">		
+						<h4><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h4>
+						<?php dw_good_excerpt(110); ?>
+					</div>
+				</article>
+			</div>
+			<?php endwhile; ?>
+		</div>
+	</div>
 	
 <?php get_footer('studio'); ?>

+ 71 - 15
style.css

@@ -166,6 +166,11 @@ h1.super {
 	font-weight: bold;
 	letter-spacing: -2px;
 }
+h1.super-duper {
+	font-size: 123px;
+	font-weight: bold;
+	letter-spacing: -2px;
+}
 h5.contact {
 	margin: 0 0 5px !important;
 }
@@ -645,11 +650,18 @@ h5.contact {
 	margin: 0;
 	float: right;
 }
-#caro svg#svg-imac.bg {
-	max-height: 460px;
-	margin: 0;
-	float: right;
+#caro #svg-imac {
+	max-height: 420px;
+}
+#caro #svg-imac.bg {
 	background: transparent url('img/web.gif') no-repeat 28% 15%;
+	background-size:95%;
+}
+#studio-caro {
+	-webkit-transition: all 1s ease;
+	-moz-transition: all 1s ease;
+	-o-transition: all 1s ease;
+	transition: all 1s ease;
 }
 .caro-grad {
 	background: #5E7A9B;
@@ -659,18 +671,19 @@ h5.contact {
 	background: linear-gradient(top, #355069 0, #5e7a9b 100%);
 }
 .caro-grad2 {
-	background: #5E7A9B;
-	background: -webkit-linear-gradient(top, #000 0, #5e7a9b 100%);
-	background: -moz-linear-gradient(top, #000 0, #5e7a9b 100%);
-	background: -o-linear-gradient(top, #000 0, #5e7a9b 100%);
-	background: linear-gradient(top, #000 0, #5e7a9b 100%);
+	background: #000000;
 }
 .caro-grad3 {
-	background: #5E7A9B;
-	background: -webkit-linear-gradient(top, #fff 0, #5e7a9b 100%);
-	background: -moz-linear-gradient(top, #fff 0, #5e7a9b 100%);
-	background: -o-linear-gradient(top, #fff 0, #5e7a9b 100%);
-	background: linear-gradient(top, #fff 0, #5e7a9b 100%);
+	background: #ffffff;
+}
+.caro-grad5 {
+	background: none;
+}
+.darken-carousel-indicators {
+	border: 1px solid #000 !important;
+}
+.carousel-indicators .darken-carousel-indicators.active  {
+	background: #000 !important;
 }
 .bg1 {
 	background-size: cover;
@@ -722,7 +735,28 @@ h5.contact {
 	-webkit-animation: vidunblur 4s;
 	animation: vidunblur 4s;
 }
-
+.wallpaper,
+.wallpaper .wallpaper-container,
+.wallpaper .wallpaper-media {
+	-webkit-transition: none !important;
+	        transition: none !important;
+}
+.wallpaper { overflow: hidden; position: relative; }
+.wallpaper .wallpaper-container { height: 100%; overflow: hidden; position: absolute; top: 0; left:0px; width: 100%; z-index: -1; }
+.wallpaper .wallpaper-media { left: 0; opacity: 0; position: absolute; top: 0; }
+.wallpaper .wallpaper-media.animated {
+ 	-webkit-transition: opacity 0.5s linear !important;
+	        transition: opacity 0.5s linear !important;
+}
+.wallpaper .wallpaper-media img,
+.wallpaper .wallpaper-media video,
+.wallpaper .wallpaper-media iframe { display: block; height: 100%; width: 100%; }
+.wallpaper .wallpaper-embed.ready:after { content: ''; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 1; }
+.wallpaper .wallpaper-embed.ready iframe { /* pointer-events: none; - safari doesn't like this :/ */ z-index: 0; }
+.wallpaper .wallpaper-media.native { background-position: center; background-size: cover; height: 100%; width: 100%; }
+.wallpaper .wallpaper-media.native img { display: none; }
+.wallpaper .wallpaper-media.fixed { background-position: center; background-attachment: fixed; height: 100%; width: 100%; }
+.wallpaper .wallpaper-media.fixed img { display: none; }
 
 /*============================================
 					Navbar 
@@ -1106,6 +1140,27 @@ article.blurb {
 	margin:25px 0;
 	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
 }
+article.studio {
+	background: #fff;
+	padding: 0 15px 10px;
+	margin:0 0 20px;
+	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
+}
+.studio-thumbnail {
+	max-height:180px;
+	overflow:hidden;
+}
+img.studio-thumb {
+	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
+    -webkit-filter: saturate(0) opacity(0.6);
+    filter: saturate(0) opacity(0.6);
+	-webkit-transition: all 1s;
+	transition: all 1s;
+}
+img.studio-thumb:hover {
+    -webkit-filter: saturate(1) opacity(1);
+    filter: saturate(1) opacity(1);
+}
 .post {
 	margin-bottom: 40px;
 }
@@ -1779,6 +1834,7 @@ li.comment.thread-odd {
 
 
 /*===== Images ======*/
+
 img.avatar {
 	width: 50px;
 	height: 50px;

Some files were not shown because too many files changed in this diff