Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                	<div class="fullWidth gradient-box" id="gradient-box">
		<div class="white center row">
			<h3 class="klinicBold gradient-t large-8 large-offset-3 medium-12 small-12 columns">CLICK HERE TO READ ABOUT THE TOOLS WE USE EVERYDAY <img class="click-here end" src="http://uberops.com/img/clicky.png"></h3>
		</div>
	</div>
	<div class="fullWidth" id="more">
		<div class="row top-pad">
			<div class="large-3 medium-3 small-6 klinicBook white panel-head columns"> 
				<h3 class="klinicBook top-floor">Software & </h3> 
<!-- 				<br>  -->
				<h3 class="klinicBook" style="border-bottom: 2px solid #fff; display: inline-block;">Programming</h3>
		</div>
			<div class="large-3 medium-3 hide-for-small-only white columns">
				<h4 class="klinicBold software-title">INTEGRATION</h4>
				<p class="work software-list">Cloverleaf/QDX Integrator, JCAPS (Seebeyond ICAN), Rhapsody, Mirth</p>
			</div>
			<div class="large-3 medium-3 hide-for-small-only white columns">
				<h4 class="klinicBold  invisible software-title">INTEGRATION</h4>
				<p class="work software-list">QDX Screen Rejuvenator, OpenSpan Studio/Integrator</p>
			</div>
			<div class="show-for-small-only white columns">
				<h4 class="klinicBold software-title">NWHIN</h4>
				<p class="work software-list">Experts in Nationwide Health Information Network/Exchange- Connect.</p>
			</div>
			<div class="large-3 medium-3 small-6 white columns end">
				<h4 class="klinicBold software-title">DIRECT</h4>
				<p class="work software-list">Implementors of DIRECT standards and protocols. Interoperability between DIRECT and PHINMS.</p>
			</div>
		</div>
		
		<div class="row">
			<div class="large-3 medium-3 small-12 white columns">
				<h4 class="klinicBold software-title">MICROSOFT</h4>
				<p class="work software-list">Visual Studio, SourceSafe, Project, Visio, Outlook, Word, Excel, Virtual PC, InfoPath, SharePoint</p>
			</div>
			<div class="large-3 medium-3 small-12 white columns">
				<h4 class="klinicBold software-title">DATABASE</h4>
				<p class="work software-list">Oracle, SQL Server, Access, MySQL, Postgress</p>
			</div>
			<div class="large-6 medium-6 small-12 columns gradient-box">
				<div class="large-6 medium-6 small-6 white columns">
					<h4 class="klinicBold software-title">LANGUAGES</h4>
					<p class="work software-list">C#, C/C++, Java & JavaScript,
VB, VB.NET, VBA, VB Script & ASP
TCL, PHP, & Perl</p>
				</div>
				<div class="large-6 medium-6 small-6 white columns">
					<h4 class="klinicBold  invisible software-title">LANGUAGES</h4>
					<p class="work software-list">HTML, DHTML, CSS, XML & XSLT
SQL (Transact SQL & PL SQL)
BASH, CSH, & KSH</p>
				</div>
			</div>
		</div>
			
	</div>
              
            
!

CSS

              
                body {
  font-family: "Helvetica Neue", sans-serif;
}
.gradient-box {
  background-image: -moz-linear-gradient( 0deg, rgb(62,55,149) 0%, rgb(140,44,96) 49%, rgb(218,33,43) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(62,55,149) 0%, rgb(140,44,96) 49%, rgb(218,33,43) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(62,55,149) 0%, rgb(140,44,96) 49%, rgb(218,33,43) 100%);
  box-shadow: inset 0px 7px 0px 0px rgba(255, 255, 255, 0.004);
    padding: 35px;
}

.gradient-t {
	margin-bottom: 0;
}

img.click-here.end {
    vertical-align: middle;
}

.click-here {
  height: 30px;
	transition: 100ms ease;
}

.exit-here {
	transform: rotate(135deg);
	transition: 200ms ease;
}

#more {
	background-color: #161f49;
	display: none;
}

.icons {
	vertical-align: top;
	height: 88px;
	margin-top: 20px;
}

h3,h4,p {
  color: white;
}

h3.klinicBold.gradient-t {
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: "Klinic Slab", "Helvetica", sans-serif;
  font-weight: 600;
}

.top-pad {
  padding-top: 3rem;
}
              
            
!

JS

              
                $(document).foundation();

 $(document).ready(function(){
	$('#gradient-box').click(function () {
		$(this).find('.click-here').toggleClass('exit-here');
		$('#more').slideToggle();
	});
 });
              
            
!
999px

Console