JSFiddle - React, Tailwind, and code Playground
by Marventus
HTML
<script src="//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&#038;subset=latin%2Clatin-ext&#038;ver=4.1"></script>
<link rel="stylesheet" href="http://thegeekinvasion.com/wp-content/plugins/contact-form-7/includes/css/styles.css">
<link rel="stylesheet" href="http://thegeekinvasion.com/wp-content/plugins/siteorigin-panels/css/front.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="//fonts.googleapis.com/css?family=Roboto+Condensed%3A700&#038;ver=4.1"></script>
<script src="//fonts.googleapis.com/css?family=Roboto%3A400%2C400italic%2C700%2C700italic&#038;ver=4.1"></script>
<p>Body Height: <span class="bodyHeight"></span></p>
<p>Doc Height: <span class="docHeight"></span></p>
<div class="site-content clearfix" id="content">
<div class="fp-content-area" id="primary">
<main class="site-main" id="main" role="main">
<div class="entry-content">
<div id="pl-26">
<div class="panel-grid" id="pg-26-0">
<div class="panel-grid-cell" id="pgc-26-0-0">
<section class="pages-area">
<div class="container">
<h3 class="widget-title"><span class=
"wow bounce">Mission</span></h3>
<div class="page-text">
<div class="service col-md-4 col-sm-6 col-xs-6"> <span class="service-icon wow zoomInDown animated fa fa-medkit" style="-webkit-animation: zoomInDown; font-style: italic; visibility: visible">
</span>
<h4 class="service-title wow fadeInUp animated" style="visibility: visible; -webkit-animation: fadeInUp;">
Mission</h4>
...
CSS
html {
background:#c99;
}
body > p {
color:#666;
}
.bodyHeight, .docHeight {
color:#c00;
}
/*.panel-grid:before {
content:none!important;
}*/
/* Inline */
.welcome-button {
box-shadow: 0 5px 0 #c2503d;
}
.welcome-button:active {
box-shadow: 0 2px 0 #c2503d;
}
.site-title a {
color: #ffffff;
}
.top-bar {
background-color: #2a2a2a;
}
.site-logo {
max-width:300px;
}
/* Moesia Styles */
body {
font-family:'Roboto', sans-serif;
color: #aaa;
background-color: #f5f5f5;
line-height: 1.5;
word-break: break-word;
-webkit-font-smoothing: antialiased;
}
#page {
display: none;
-webkit-animation: fadein 1s;
animation: fadein 1s;
}
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
h1, h2, h3, h4, h5, h6 {
font-family:'Roboto Condensed', sans-serif;
color: #444;
font-weight: 700;
}
blockquote {
border: 0;
}
blockquote:before {
float: left;
margin-right: 10px;
font-family: FontAwesome;
font-size: 30px;
line-height: 1;
content:'\f10d';
color: #ff6b53;
}
cite {
font-style: italic;
padding: 0 20px;
}
.nicescroll-rails {
z-index: 9999 !important;
}
code {
white-space: pre-wrap;
}
::selection {
background-color: #ff6b53;
color: #fff;
}
/* Tables - extracted from Bootstrap and changed so it applies by default */
table {
width: 100%;
margin-bottom: 20px;
border: 1px solid #dddddd;
}
th {
background-color: #F8F8F8;
}
table > thead > tr > th, table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
}
table > thead > tr > th, table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td {
...
JavaScript
$(".bodyHeight").text( $("body").height() + "px" );
$(".docHeight").text( $(document).height() + "px" );