Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 26 additions & 20 deletions App.jsx
Original file line number Diff line number Diff line change
@@ -1,46 +1,52 @@
import React from 'react';
import './App.css';

document.body.style.backgroundColor = "steelblue";
document.body.style.backgroundColor = 'steelblue';
class App extends React.Component {
render() {
return (
<div>
<Header/>
<Content/>
<Header />
<Content />
</div>
);
}
}

class Header extends React.Component {
render() {
return(
return (
<div>
<h1 className="headerOne" style={{ color: '#27ae60', font: '70px Tahoma, Helvetica, Arial, Sans-Serif', textShadow: '0px 2px 3px rgb(114, 220, 159)' }}>Another boring '
<span class="amber">H</span>
<span class="pink">e</span>
<span class="yellow">l</span>
<h1
className="headerOne"
style={{
color: '#27ae60',
font: '70px Tahoma, Helvetica, Arial, Sans-Serif',
textShadow: '0px 2px 3px rgb(114, 220, 159)',
}}>
Another boring '
<span class="violet">H</span>
<span class="indigo">e</span>
<span class="blue">l</span>
<span class="green">o</span>
<span class="green">l</span>
<span class="yellow">o</span>
<span class=""> </span>
<span class="lime">W</span>
<span class="grey">o</span>
<span class="deepOrange">r</span>
<span class="pink">l</span>
<span class="amber">d</span>
<span class="deepOrange">!</span>


' app!</h1>
<span class="orange">W</span>
<span class="red">o</span>
<span class="orange">r</span>
<span class="yellow">l</span>
<span class="green">d</span>
<span class="blue">!</span>
' app!
</h1>
</div>
);
}
}

class Content extends React.Component {
render(){
return(
render() {
return (
<div id="initialDiv">
<h2 className="headerTwo">Can we improve it?</h2>
<p>Maybe we can together ...</p>
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
1. [beven](https://github.com/beven)
2. [mrclan](https://github.com/mrclan)
3. [mblascoe](https://github.com/mblascoe)
4. [pixidust724](https://github.com/pixidust724)
4. [pixidust724](https://github.com/pixidust724)
5. [khemmapon](https://github.com/khemmapon)
39 changes: 19 additions & 20 deletions main.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,34 @@
body, html {
padding:0px;
margin:0px;
body,
html {
padding: 0px;
margin: 0px;
font-family: sans-serif;
}
.amber{
color: #ffc107;
}

.blue{
color: #64b5f6;
.violet {
color: #9400d3;
}

.deepOrange{
color: #ff5722;
.indigo {
color: #4b0082;
}

.green{
color: #4caf50;
.blue {
color: #0000ff;
}

.grey{
color: #eeeeee;
.green {
color: #00ff00;
}

.lime{
color: #cddc39;
.yellow {
color: #ffff00;
}
.pink{
color: #e91e63;

.orange {
color: #ff7f00;
}

.yellow{
color: #ffeb3b;
.red {
color: #ff0000;
}