Skip to content
This repository was archived by the owner on Apr 25, 2020. It is now read-only.
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
113 changes: 113 additions & 0 deletions components/Features.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
import React from 'react';
import ReactDOM from 'react-dom';

class Features extends React.Component {

constructor(props) {
super(props);
this.state = {

};
}

render () {

return (
<div className="Features">
<div className="FeaturesContainer">
<h1>FEATURES</h1>
<ul>
<li>
<a href="">
<img src="/static/img/sand-clock.png" alt=""/>
<p>Real Time</p>
</a>
</li>
<li>
<a href="">
<img src="/static/img/forefinger.png" alt=""/>
<p>Add Lizad Spock for more fun</p>
</a>
</li>
<li>
<a href="">
<img src="/static/img/smartphone.png" alt=""/>
<p>Social Chat</p>
</a>
</li>
<li>
<a href="">
<img src="/static/img/sand-clock.png" alt=""/>
<p>Other</p>
</a>
</li>
</ul>
</div>

<style jsx global>{`

.Features {
width: 100%;
margin-bottom: 40px;
color: #35477d;
}

.FeaturesContainer {
padding: 30px 0;
display: flex;
box-shadow: -1px 4px 25px 5px rgba(228,55,118,0.08);
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
max-width: 1200px;
width: 80%;
margin: auto;
}

.Features h1 {
font-size: 40px;
}

.Features ul {
display: flex;
justify-content: space-evenly;
align-items: center;
width: 100%;
}

.Features li {
text-align: center;
margin-top: 20px;
margin-bottom: 10px;
}

.Features li:hover img {
transform: scale(1.5);
}

.Features li:hover p {
color: #6c5b7b;
}

.Features p {
text-align: center;
margin-top: 20px;
margin-bottom: 10px;
color: #f67280;
}

.Features img {
max-width: 50px;
margin: 20px auto;
transform: scale(1.1);
transition: .2s linear;
}

`}</style>
</div>
);
}
}

export default Features;
157 changes: 157 additions & 0 deletions components/Game.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
import React from 'react';
import ReactDOM from 'react-dom';

class Game extends React.Component {

constructor(props) {
super(props);
this.state = {

};
}

render () {

return (
<div className="Game">
<div className="GameContainer">

<a href="" className="btnRosa">
PLAY OUR GAME
</a>
<div className="Game-register">
<div className="verifyDates-social">
<p>Si deseas ingresa con tus <strong>Redes Sociales</strong></p>

<ul>
<li className="headerNetworkSocial">
<a href="">
<figure className="">
<img src="/static/img/Group.svg" alt=""/>
</figure>
</a>
<a href="">
<figure className="">
<img src="/static/img/vector.svg" alt=""/>
</figure>
</a>
<a href="">
<figure className="">
<img src="/static/img/instagram.svg" alt=""/>
</figure>
</a>
</li>
</ul>

</div>
</div>
</div>

<style jsx global>{`

.Game {
background: url(/static/img/acertijo.png) center center repeat;
position: relative;
overflow: hidden;
animation: emma 100s linear;
width: 60%;
box-shadow: -1px 4px 25px 5px rgba(228,55,118,0.08);
margin-right: 10px;
padding: 20px 0;
}

.GameContainer {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
flex-direction: column;
}

.Game h1 {
font-size: 40px;
color: #35477d;
}

.btnRosa {
background: linear-gradient(90deg, #E43776 -4.07%, #E43776 44.81%, #FA5236 103.82%);
box-shadow: 0px 2px 10px rgba(228, 55, 118, 0.35);
border-radius: 10px 2px 10px 2px;
text-align: center;
line-height: 30px;
color: white;
padding: 3px 40px;
font-family: 'Baloo';
margin-top: 20px;
border: none;
font-size: 17px;
transform: scale(1);
}

.btnRosa:hover {
animation: rubberBand .75s;
}

.verifyDates-social {
padding-top: 50px;
font-size: 14px;
color: #35477d;
}

.verifyDates-social strong {
font-family: Baloo;
color: #f67280;
}

.headerNetworkSocial {
text-align: center;
color: white;
}
.headerNetworkSocial figure {
width: 35px;
height: 35px;
transition: .3s linear;
border-radius: 10px;
margin: 6px;
margin-top: 15px;
box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background: #F64D42;
transform: scale(1);
}
.headerNetworkSocial figure:hover {
background: #F64D42;
animation: rubberBand .75s;
}
.headerNetworkSocial img {
padding-top: 10px;
}

.verifyDates-btns {
position: absolute;
max-width: 300px;
width: 100%;
top: -20px;
left: 0;
right: 0;
margin: auto;
}



@keyframes emma {
0% {
background-position: 0px 0px;
}
100% {
background-position: 10000px 0px;
}
}

`}</style>
</div>
);
}
}

export default Game;
Loading