HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URL's 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 it's URL and the proper URL extention.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="master.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700' rel='stylesheet' type='text/css'>
<!-- Font Awesome -->
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<!-- Style -->
<body>
<div class="container">
<nav class="navbar-fixed-top">
<input type="checkbox" id="nav" class="hidden">
<label for="nav" class="nav-btn">
<i></i>
<i></i>
<i></i>
</label>
<div class="logo">
<a href="http://ezbots.local/">Ez Bots</a>
</div>
<div class="nav-wrapper">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="#sell">Sell</a></li>
<li><a href="#about">About Us</a></li>
</ul>
</div>
</nav>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<?php wp_nav_menu(); ?>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
</body>
</html>
<div id="wrapper">
<div class="section hero text-center background-dark dark-bg" id="home">
<div class="background-image" style="background: url(https://i.postimg.cc/02YQxBL8/screenshot.jpg) no-repeat center center; background-size: cover; opacity: .2;"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Ez Bots</h2>
<p class="lead">Buy and sell real bots from authentic sellers.</p>
<ul class="list-inline">
<li><a href="#" title="Shop Now" class="btn btn-md btn-info">Shop Now</a></li>
<li><a href="#" title="Sell" class="btn btn-md btn-primary">Sell</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--/.section -->
<span id ="Shop Now">
<div id="shop"></div>
<div class="section background-light">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<span id = "Shop">
<h2 class="section-title">Bots For Sale</h2>
<p class="section-description">Below are the bots currently being sold.</p>
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 1</h3>
<p>Info about bot1</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy Now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 2</h3>
<p>info on bot 2</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 3</h3>
<p>info on bot3</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
</div>
</div>
</div>
<div class="section background-light">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 4</h3>
<p>Info about bot 4</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy Now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 5</h3>
<p>Info on bot 5</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 6</h3>
<p>info on bot 6</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
</div>
</div>
</div>
<div class="section background-light">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 7</h3>
<p>Info about bot 7</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy Now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 8</h3>
<p>info on bot 8</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 9</h3>
<p>info on bot 9</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
</div>
</div>
</div>
<div class="section background-light">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 10</h3>
<p>Info about bot 10</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy Now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 11</h3>
<p>Info on bot 11</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 12</h3>
<p>info on bot 12</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
</div>
</div>
</div>
<div class="section background-light">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 13</h3>
<p>Info about bot 13</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy Now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 14</h3>
<p>Bot 14 info</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
<div class="col-md-4">
<div class="service-block text-center">
<i class="fa fa-rocket"></i>
<h3>Bot 15</h3>
<p>info on bot 15</p>
<a href="#" title="Learn More" class="btn btn-sm btn-primary">Buy now</a>
</div><!--/.service-block-->
</div>
</div>
</div>
</div>
</span>
<!-- START SECTION -->
<div class="section hero text-center background-primary dark-bg">
<div class="background-image" style="background: url(https://i.postimg.cc/02YQxBL8/screenshot.jpg) no-repeat fixed center center; background-size: cover; opacity: .2;"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="text-uppercase letter-spacing-md font-weight-lg margin-zero">Put some random cool saying here.</h3>
</div>
</div>
</div>
</div>
</span>
<!--/.section -->
<!-- START SECTION -->
<div class="section">
<div id="sell"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h2 class="section-title">Want To Sell?</h2>
<p class="section-description">Fill the form for your bot to be listed</p>
</div>
<?php include('form_process.php'); ?>
<div class="container2">
<form id="contact" action="<?= $_SERVER['PHP_SELF']; ?>" method="post">
<fieldset>
<input placeholder="Email Associated With Bot" type="email" name="email"tabindex="1" required>
<span class="error"><?= $email_error?></span>
</fieldset>
<fieldset>
<input placeholder="Bot License" type = "text" name="license" tabindex="2" required>
<span class="error"><?= $license_error?></span>
</fieldset>
<fieldset>
<input placeholder="Discord Link" type = "text" name = "link" tabindex="3" required>
<span class="error"><?= $link_error?></span>
</fieldset>
<fieldset>
<input placeholder="Bot Download Link" type="text" name = "download" tabindex="4" required>
<span class="error"><?= $download_error?></span>
</fieldset>
<fieldset>
<textarea placeholder="Additional Info Here..." type="text" name = "message" tabindex="5" required></textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
<div class = "success"><?= $success; ?></div>
</form>
</div>
</div><!--/.entry-->
</div>
</div><!--/.row-->
</div><!--/.container-->
</div>
<div class="section background-dark dark-bg">
<span id="about"></span>
<div class="container">
<div class="row">
<div class="col-md-3">
<h3 class="text-uppercase font-size-md letter-spacing-md font-weight-lg ">About Us</h3>
<p>ABOUT US INFO HERE</p>
<p>ABOUT US CONTINUED</p>
</div>
<div class="col-md-4 col-md-offset-1">
<h3 class="text-uppercase font-size-md letter-spacing-md font-weight-lg ">More random info</h3>
<address>
<strong>random</strong><br>
random stuff<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
<address>
<strong>Full Name</strong><br>
<a href="mailto:#">first.last@example.com</a>
</address>
</div>
<div class="col-md-4">
<h3 class="text-uppercase font-size-md letter-spacing-md font-weight-lg ">more random</h3>
<address>
<strong>random</strong><br>
more random stuff<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
<address>
<strong>Full Name</strong><br>
<a href="mailto:#">first.last@example.com</a>
</address>
</div>
<div class="col-md-12 margin-top-md margin-bottom-md" style="opacity: .2;">
<hr/>
</div>
<div class="col-md-12 margin-top-md text-center font-size-sm text-upercase">
<p>© <a href="http://nomadtheme.com" title="nomadtheme"><strong>Nomad Theme</strong></a>. Images: <a href="http://picjumbo.com" title="PicJumbo"><strong>Pic Jumbo</strong></a>. By: <a href="http://freebootstraptemplate.com" title="Free Bootstrap Template"><strong>Free Bootstrap Template</strong></a>.</p>
</div>
</div>
</div>
</div>
</div>
<!--/.section -->
nav{
background-color:white;
}
/* push targets down */
:target{
padding-top:67px;
margin-top:-67px;
}
/* push entire content down */
#wrapper{
padding-top:67px;
}
body {
font-family: 'Poppins', sans-serif;
color: #2c3e50;
}
a {
transition: all .3s;
}
/* FORMS
*/
.form-control {
border: 2px solid #cbd0d3;
border-radius: 0;
padding: 0 25px;
line-height: 45px;
height: 45px;
}
/* EXTRA CLASSES
*/
.margin-zero {
margin: 0;
}
.margin-top-md {
margin-top: 30px;
}
.margin-bottom-md {
margin-top: 30px;
}
.letter-spacing-sm {
letter-spacing: 1px;
}
.letter-spacing-md {
letter-spacing: 2px;
}
.letter-spacing-lg {
letter-spacing: 4px;
}
.font-weight-sm {
font-weight: 300;
}
.font-weight-md {
font-weight: 600;
}
.font-weight-lg {
font-weight: 900;
}
.font-size-sm {
font-size: 11px;
}
.font-size-md {
font-size: 18px;
}
.font-size-lg {
font-size: 36px;
}
/* COLORS
*/
.color-grey {
color: #bdc3c7;
}
.color-light {
color: #f6f8f9;
}
.color-dark {
color: #333;
}
.color-primary {
color: #1abc9c;
}
.color-success {
color: #2ecc71;
}
.color-info {
color: #2ecc71;
}
.color-warning {
color: #e67e22;
}
.color-danger {
color: #e74c3c;
}
/* BACKGROUNDS
*/
.background-grey {
background-color: #bdc3c7;
}
.background-light {
background-color: #f6f8f9;
}
.background-dark {
background-color: #2c3e50;
}
.background-primary {
background-color: #1abc9c;
}
.background-success {
background-color: #2ecc71;
}
.background-info {
background-color: #2ecc71;
}
.background-warning {
background-color: #e67e22;
}
.background-danger {
background-color: #e74c3c;
}
.dark-bg, .dark-bg a, .dark-bg a:hover {
color: #FFF;
}
/* ELEMENTS
*/
.btn {
border-radius: 0;
text-transform: uppercase;
font-weight: bold;
border: none;
font-size: 12px;
padding: 0 30px;
line-height: 50px;
}
.btn-xs {
padding: 0 20px;
line-height: 30px;
font-size: 10px;
}
.btn-sm {
padding: 0 25px;
line-height: 40px;
font-size: 11px;
}
.btn-md {
padding: 0 30px;
line-height: 50px;
}
.btn-lg {
padding: 0 45px;
line-height: 70px;
font-size: 14px;
}
.btn-default {
background-color: #34495e;
color: #FFF;
}
.btn-default:hover {
background-color: #2c3e50;
color: #FFF;
}
.btn-primary {
background-color: #1abc9c
}
.btn-primary:hover {
background-color: #16a085
}
.btn-success {
background-color: #2ecc71;
}
.btn-success:hover {
background-color: #27ae60;
}
.btn-info {
background-color: #3498db;
}
.btn-info:hover {
background-color: #2980b9;
}
.btn-warning {
background-color: #e67e22;
}
.btn-warning:hover {
background-color: #d35400;
}
.btn-danger {
background-color: #e74c3c;
}
.btn-danger:hover {
background-color: #c0392b;
}
.btn-link {}
/* NAVBAR
*/
* {
box-sizing: border-box;
}
html {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 200vh;
font-family: Poppins;
font-weight: 400;
background-position: center;
background-size: cover;
}
nav {
padding: 8px;
}
.logo {
float: left;
padding: 8px;
margin-left: 16px;
margin-top: 8px;
}
.logo a {
color: #000;
text-transform: uppercase;
font-weight: 700;
font-size: 20px;
letter-spacing: 0px;
text-decoration: none;
}
nav ul {
float: right;
}
nav ul li {
display: inline-block;
float: left;
}
nav ul li:not(:first-child) {
margin-left: 48px;
}
nav ul li:last-child {
margin-right: 24px;
}
nav ul li a {
display: inline-block;
outline: none;
color: #000;
text-transform: uppercase;
text-decoration: none;
font-size: 12px;
letter-spacing: 1.2px;
font-weight: 600;
}
@media screen and (max-width: 864px) {
.logo {
padding: 0;
}
.nav-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: #fff;
opacity: 0;
transition: all 0.2s ease;
}
.nav-wrapper ul {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
}
.nav-wrapper ul li {
display: block;
float: none;
width: 100%;
text-align: right;
margin-bottom: 10px;
}
.nav-wrapper ul li:nth-child(1) a {
transition-delay: 0.2s;
}
.nav-wrapper ul li:nth-child(2) a {
transition-delay: 0.3s;
}
.nav-wrapper ul li:nth-child(3) a {
transition-delay: 0.4s;
}
.nav-wrapper ul li:nth-child(4) a {
transition-delay: 0.5s;
}
.nav-wrapper ul li:not(:first-child) {
margin-left: 0;
}
.nav-wrapper ul li a {
padding: 10px 24px;
opacity: 0;
color: #000;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.2px;
transform: translateX(-20px);
transition: all 0.2s ease;
}
.nav-btn {
position: fixed;
right: 10px;
top: 10px;
display: block;
width: 48px;
height: 48px;
cursor: pointer;
z-index: 9999;
border-radius: 50%;
}
.nav-btn i {
display: block;
width: 20px;
height: 2px;
background: #000;
border-radius: 2px;
margin-left: 14px;
}
.nav-btn i:nth-child(1) {
margin-top: 16px;
}
.nav-btn i:nth-child(2) {
margin-top: 4px;
opacity: 1;
}
.nav-btn i:nth-child(3) {
margin-top: 4px;
}
}
#nav:checked + .nav-btn {
transform: rotate(45deg);
}
#nav:checked + .nav-btn i {
background: #000;
transition: transform 0.2s ease;
}
#nav:checked + .nav-btn i:nth-child(1) {
transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-btn i:nth-child(2) {
opacity: 0;
}
#nav:checked + .nav-btn i:nth-child(3) {
transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-wrapper {
z-index: 9990;
opacity: 1;
}
#nav:checked ~ .nav-wrapper ul li a {
opacity: 1;
transform: translateX(0);
}
.hidden {
display: none;
}
/* SECTIONS
*/
.section {
padding-top: 80px;
padding-bottom: 80px;
position: relative;
overflow: hidden;
}
.section .background-image {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 0;
}
h2.section-title {
font-weight: bold;
text-transform: uppercase;
font-size: 24px;
letter-spacing: 5px;
margin-bottom: 80px;
}
p.section-description {
font-weight: lighter;
font-size: 16px;
}
h2.section-title + p {
margin-top: -70px;
margin-bottom: 80px;
}
/* SECTION HERO
*/
.hero {
padding-top: 200px;
padding-bottom: 200px;
}
.hero h2 {
font-size: 36px;
text-transform: uppercase;
letter-spacing: 10px;
font-weight: bold;
display: inline-block;
padding: 30px 60px;
border: 1px solid;
}
.hero p.lead {
margin: 30px 0;
margin-bottom: 40px;
max-width: 70%;
}
.hero.text-center p.lead {
margin-left: auto;
margin-right: auto;
font-size: 24px;
}
.hero.text-right p.lead {
margin-right: 0;
margin-left: auto;
}
/* SERVICE BLOCK
*/
.service-block {
display: block;
margin-bottom: 30px;
}
.service-block i {
width: 80px;
height: 80px;
display: inline-block;
line-height: 80px;
text-align: center;
border-radius: 40px;
font-size: 25px;
background: #FFF;
box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.service-block h3 {
text-transform: uppercase;
font-size: 15px;
font-weight: bolder;
margin: 30px 0;
line-height: 1;
}
.service-block.text-center p {
width: 80%;
margin-left: 10%;
margin-right: 10%;
}
.service-block.text-center p + a.btn {
margin-top: 10px;
}
/*contact form CSS
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);
* {
margin:0;
padding:0;
box-sizing:border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-font-smoothing:antialiased;
-moz-font-smoothing:antialiased;
-o-font-smoothing:antialiased;
font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}
.error {
color: red;
}
.success {
color: #ff9966;
text-align: center;
font-weight: bold;
font-size: 14px;
}
body {
font-family:"Open Sans", Helvetica, Arial, sans-serif;
font-weight:300;
font-size: 12px;
line-height:30px;
}
.container2 {
max-width:400px;
width:100%;
margin:0 auto;
position:relative;
}
#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }
#contact {
padding:25px;
margin:50px 0;
}
#contact h3 {
display: block;
font-size: 30px;
font-weight: 400;
}
#contact h4 {
margin:5px 0 15px;
display:block;
font-size:13px;
}
fieldset {
border: medium none !important;
margin: 0 0 10px;
min-width: 100%;
padding: 0;
width: 100%;
}
#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
width:100%;
border:1px solid #CCC;
margin:0 0 5px;
padding:10px;
}
#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
-webkit-transition:border-color 0.3s ease-in-out;
-moz-transition:border-color 0.3s ease-in-out;
transition:border-color 0.3s ease-in-out;
border:1px solid #AAA;
}
#contact textarea {
height:100px;
max-width:100%;
resize:none;
}
#contact button[type="submit"] {
cursor:pointer;
width:100%;
border:none;
background:#35c68f;
color:#FFF;
margin:0 0 5px;
padding:10px;
font-size:15px;
}
#contact button[type="submit"]:hover {
background:#1b6d4e;
-webkit-transition:background 0.3s ease-in-out;
-moz-transition:background 0.3s ease-in-out;
transition:background-color 0.3s ease-in-out;
}
#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }
#contact input:focus, #contact textarea:focus {
outline:0;
border:1px solid #999;
}
::-webkit-input-placeholder {
color:#888;
}
:-moz-placeholder {
color:#888;
}
::-moz-placeholder {
color:#888;
}
:-ms-input-placeholder {
color:#888;
}
Also see: Tab Triggers