diff --git a/public/javascripts/app/templates/post-viewer.handlebars b/public/javascripts/app/templates/post-viewer.handlebars
index 9f131d75462a4cdf40d8d9cbf4e3b366a8fc1c33..dbde01a53a5ff3ce1879b23c229c956ee8c77289 100644
--- a/public/javascripts/app/templates/post-viewer.handlebars
+++ b/public/javascripts/app/templates/post-viewer.handlebars
@@ -5,17 +5,6 @@
 </div>
 
 <div id="post-content"> </div>
-
-{{#if nsfw}}
-  <div id="nsfw-post-content">
-    <div id="nsfw-shield" class="post">
-      <h2>
-        This post is Not Safe For Work.
-      </h2>
-    </div>
-  </div>
-{{/if}}
-
 <div id="post-nav"> </div>
 <div id="post-interactions"> </div>
 
diff --git a/public/stylesheets/sass/new-templates.scss b/public/stylesheets/sass/new-templates.scss
index b39d60d93782bb06ae1b32dcd1fde4f77fa2c9f8..80d68c240b414778e7a9feca404f161d17f3cae7 100644
--- a/public/stylesheets/sass/new-templates.scss
+++ b/public/stylesheets/sass/new-templates.scss
@@ -3,8 +3,6 @@
 $light-grey: #999;
 $pane-width: 420px;
 
-$large-type: 40px;
-
 /* mixins */
 @mixin center($orient:vertical) {
   display: -webkit-box;
@@ -23,13 +21,6 @@ $large-type: 40px;
   box-align: center;
 }
 
-@mixin rotate($orient) {
-  -o-transform: rotate($orient);
-  -moz-transform: rotate($orient);
-  -ms-transform: rotate($orient);
-  -webkit-transform: rotate($orient);
-}
-
 @mixin box-shadow($left, $top, $blur, $color) {
   -webkit-box-shadow: $left $top $blur $color;
   -moz-box-shadow: $left $top $blur $color;
@@ -196,7 +187,7 @@ $large-type: 40px;
 {
   h1 {
     font-weight: bold;
-    font-size: $large-type;
+    font-size: 40px;
   }
 }
 
@@ -614,7 +605,6 @@ body.idle {
   }
 }
 
-#nsfw-post-content,
 #post-content {
   display: table;
 
@@ -652,21 +642,3 @@ body.idle {
   right: 8px;
   top: 8px;
 }
-
-#nsfw-post-content {
-  @include opacity(0.95);
-}
-
-#nsfw-shield {
-  height: 100%;
-  width: 100%;
-  background-image: url('../img/hatched-bg.jpg');
-  background-transparency: url('../img/hatched-bg.jpg');
-
-  h2 {
-    @include rotate(-15deg);
-
-    text-transform: uppercase;
-    color: #979893;
-  }
-}