JSFiddle - React, Tailwind, and code Playground
by DMSChris
HTML
<body>
<div class="jumbotron">
<h1 class="text-centered">Hello, I'm Chris Pena</h1>
<img height="250px" alt="Chris Pena's Picture" class="centered slideDown" src="http://demos.pixelized.cz/freelancer/v1.1/image/jonathan.png"> <br />
<button class="centered slideUp"><a href="https://twitter.com/DmsChris" target="_blank">Learn More</a></button>
</div>
<div class="half-col">
<h2 class="text-centered pullDown">About Me</h2>
<p class="text-centered">Hello my name is Chris Pena and I'm a senior at the University of Houston. I've been programming for around 3 years now and have mostly stayed on the frontend. My goal is to become a full stack developer and challenge myself. I've mainly worked with frameworks such as Bootstrap, Angular, ReactJS and other javascript and css libraries.</p>
</div>
<div class="half-col">
<h2 class="text-centered pullDown">Favorite Food</h2>
<p class="text-centered">Anything from a Mexican Restaurant. And I mean anything.</p>
<h2 class="text-centered pullDown">Subreddit of Choice</h2>
<p class="text-centered">It's definitely between r/Cringe and r/Web_Design</p>
</div>
<div class="half-col">
<h2 class="text-centered pullDown">What do you want to be when you grow up?</h2>
<p class="text-centered">I want to be just like Cody Shipley :D</p>
</div>
<div class="half-col responsive-div">
<h2 class="text-centered pullDown">Favorite Type of Music</h2>
<p class="text-centered thicken">Definitely R&B. Boyz 2 Men, Brain Mcknight, Lauryn Hill all the way!</p>
</div>
<footer><p>Follow me on <a href="https://twitter.com/DmsChris">Twitter</a>, <a href="https://www.facebook.com/chris.pena.33449">Facebook</a>, or <a href="#">Google Plus</a>!</p></footer>
</body>
CSS
html {
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0px 0px 0px 0px;
background-color: #34495E;
color: white;
}
h1 {
margin: 0px;
color: white;
font-weight: 200;
}
h2 {
font-size: 24px;
margin: 5px 5px 5px 5px;
border-bottom: 1px solid white;
padding-bottom: 20px;
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
p {
}
a {
color: white;
text-decoration: none;
}
a:hover{
color: #D2F9E8;
}
button {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 12px 24px;
font-size: 13px;
line-height: 1.42857143;
border-radius: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #ffffff;
background-color: #EA3F00;
border-color: #EA3F00;
}
footer p {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#00A258;
text-align: center;
color: white;
font-size: 14px;
line-height: 30px;
margin-bottom: 0px;
border-top: 3px solid #EA3F00;
}
.jumbotron {
height: 370px;
width:100%;
background-color: #00A258;
background-size: 100% 100%;
margin-top: 0px;
padding: 0px 0px 0px 0px;
}
.jumbotron h2 {
text-align: center;
padding-top: 30px;
padding-bottom: 2px;
}
.centered {
display: block;
margin-left: auto;
margin-right: auto
}
.text-centered {
text-align: center;
}
.half-col {
width: 50%;
line-height: 25px;
float: left;
padding-top: 40px;
}
.thicken {
margin-bottom: 50px;
}
.responsive-div {
float: right;
}
/* Animations right here */
.pullDown{
animation-name: pullDown;
-webkit-animation-name:...