-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'yet to put functionality to the contact component'
- Loading branch information
1 parent
d9521e3
commit ccfbf70
Showing
12 changed files
with
305 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
.stage-cube-cont{ | ||
width: 42%; | ||
height: 70%; | ||
top: 0; | ||
padding-top: 15%; | ||
margin-left: 0; | ||
position: absolute; | ||
right: 2%; | ||
overflow: auto; | ||
} | ||
|
||
.cubespinner{ | ||
animation-name: spinner; | ||
animation-timing-function: ease-in-out; | ||
animation-duration: 12s; | ||
animation-iteration-count: infinite; | ||
transform-style: preserve-3d; | ||
transform-origin: 100px 100px 0; | ||
margin-left: calc(42% - 100px); | ||
|
||
div { | ||
position: absolute; | ||
width: 200px; | ||
height: 200px; | ||
border: 1px solid #ccc; | ||
background: rgba(255,255,255,0.4); | ||
text-align: center; | ||
font-size: 100px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
} | ||
|
||
.face1{ | ||
transform: translateZ(100px); | ||
} | ||
.face2{ | ||
transform: rotateY(90deg) translateZ(100px); | ||
} | ||
.face3{ | ||
transform: rotateY(90deg) rotateX(90deg) translateZ(100px); | ||
} | ||
.face4{ | ||
transform: rotateY(180deg) rotateZ(90deg) translateZ(100px); | ||
} | ||
.face5{ | ||
transform:rotateY(-90deg) rotateZ(90deg) translateZ(100px); | ||
} | ||
.face6{ | ||
transform: rotateX(-90deg) translateZ(100px); | ||
} | ||
} | ||
|
||
|
||
@keyframes spinner { | ||
from, | ||
to{ | ||
transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); | ||
|
||
} | ||
17% { | ||
transform: rotateY(-90deg); | ||
} | ||
34% { | ||
transform: rotateY(-90deg) rotateZ(90deg); | ||
|
||
} | ||
|
||
50%{ | ||
transform: rotateY(-180deg) rotateZ(90deg); | ||
|
||
} | ||
67%{ | ||
transform: rotateY(-270deg) rotateZ(90deg); | ||
|
||
} | ||
84%{ | ||
transform: rotateX(90deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import './index.scss' | ||
|
||
const Contact = () => { | ||
return( | ||
<div className='container contact-page'> | ||
<div className='text-zone'> | ||
<h1>Contact Me</h1> | ||
<p> | ||
I am open to freelance opportunities and projects in data science | ||
and software engineering. Feel free to reach out to me via the form | ||
below. I look forward to hearing from you. | ||
</p> | ||
<div className='contact-form'> | ||
<form> | ||
<ul> | ||
<li className='half'> | ||
<input type='text' name='name' placeholder='FirstName LastName' required /> | ||
|
||
</li> | ||
<li className='half'> | ||
<input type='email' name='email' placeholder='[email protected]' required /> | ||
|
||
</li> | ||
|
||
<li> | ||
<input type='text' placeholder='Subject' name='subject' required /> | ||
</li> | ||
|
||
<li> | ||
<textarea placeholder='Message' name='message' required> | ||
|
||
</textarea> | ||
</li> | ||
<li> | ||
<input type='submit' className='flat-button' value='SEND' /> | ||
</li> | ||
|
||
</ul> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default Contact |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
.contact-form{ | ||
width: 100%; | ||
margin-top: 20px; | ||
|
||
|
||
ul{ | ||
padding: 0; | ||
margin: 0; | ||
|
||
li{ | ||
padding: 0; | ||
margin: 0; | ||
list-style: none; | ||
margin-bottom: 10px; | ||
overflow:hidden; | ||
display:block; | ||
position: relative; | ||
opacity: 0; | ||
animation: fadeInUp 2s 2s; | ||
animation-fill-mode: forwards; | ||
clear: both; | ||
|
||
|
||
} | ||
|
||
li.half { | ||
width: 49%; | ||
margin-left: 2%; | ||
float: left; | ||
clear: none; | ||
|
||
&:first-child{ | ||
margin-left: 0; | ||
} | ||
|
||
} | ||
} | ||
|
||
input[type='text'], | ||
input[type='email']{ | ||
width:100%; | ||
border:0; | ||
background-color: #d8d4c7; | ||
color: #1a0000; | ||
padding: 0 20px; | ||
box-sizing: border-box; | ||
|
||
} | ||
|
||
textarea{ | ||
width: 100%; | ||
border:0; | ||
background-color: #d8d4c7; | ||
height:50px; | ||
font-size: 16px; | ||
color:#1a0000; | ||
padding:20px; | ||
min-height: 150px; | ||
box-sizing: border-box; | ||
|
||
} | ||
|
||
.flat-button{ | ||
color: #2b3a55; | ||
background: 0 0; | ||
font: 11px; | ||
letter-spacing: 3px; | ||
text-decoration: none; | ||
padding: 8px 10px; | ||
border: 1px solid #2b3a55; | ||
float: right; | ||
border-radius: 4px; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import './index.scss' | ||
|
||
const Projects = () => { | ||
return( | ||
<div> | ||
|
||
|
||
</div> | ||
) | ||
} | ||
|
||
export default Projects |
Empty file.
Oops, something went wrong.