Gradient - Responsive

owl
			
	.gradient {
	  max-width: 100%;
	  position: relative;
	}
	
	.gradient img {
	  max-width: 100%;
	  height: auto;
	  border-top: 2px solid #d8d8d8;
	  border-bottom: 2px solid #0e0e0e;
	}
	
	.gradient:after,
	.gradient:before {
	  content: "";
	  height: 97%;
	  left: 0px;
	  position: absolute;
	  top: 0;
	  width: 2px;
	  z-index: 4;  
	  background: linear-gradient(top, #d8d8d8 0%,#0e0e0e 100%);
	}
	
	.gradient:before {
	  left: auto;
	  right: 0px;
	}
	
	.gradient:after {
	  left: 0px;
	  right: auto;
	}			
			
		

Faux Gradient - Fixed

owl
			
	.faux-gradient-fixed {
	  width: 480px;
	}
	
	.faux-gradient-fixed img {
	  width: 480px;
	  padding: 2px;
	}
	.faux-gradient-fixed img { 
	  background: linear-gradient(top, #d8d8d8 0%,#0e0e0e 100%);
	}			
			
		

Faux Gradient - Responsive

owl
			
	.faux-gradient-responsive {
	  max-width: 100%;
	}
	
	.faux-gradient-responsive img {
	  max-width: 100%;
	  height: auto;
	  width: 100%;
	  padding: .5%;
	}
	
	.faux-gradient-responsive img { 
	  background: linear-gradient(top, #d8d8d8 0%,#0e0e0e 100%);
	}			
			
		

Faux Gradient - Responsive Two

owl
			
	.faux-gradient-responsive-two { 
		position: relative;
		width: 99%;
		margin: 0 auto;
		z-index: 10;
		display: block;
	}
	
	.faux-gradient-responsive-two img { 
		max-width: 100%;
		height: auto;
	}
	
	.faux-gradient-responsive-two:before { 
		content: "";
		position: absolute;
		width: 101%;
		left: -.5%;
		top: -1%;
		height: 99%;
	  background: linear-gradient(top, #d8d8d8 0%,#0e0e0e 100%);
		z-index: -10;
	}