-
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.
- Loading branch information
1 parent
74881fc
commit 2cfbd78
Showing
29 changed files
with
3,224 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,282 @@ | ||
* { | ||
margin: 0 auto; | ||
padding:0; | ||
} | ||
|
||
html { | ||
margin: 0 auto; | ||
padding:0; | ||
scroll-behavior:smooth; | ||
} | ||
|
||
::-webkit-scrollbar { | ||
width:6.5px; | ||
background:rgba(255,255,255,1); | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background:rgba(0,0,0,0.8); | ||
border-radius:10px; | ||
} | ||
|
||
.img-container { | ||
padding-top:22%; | ||
padding-bottom:19%; | ||
width:100%; | ||
height:80%; | ||
background-position:center; | ||
background-repeat:no-repeat; | ||
background-size:cover; | ||
background-attachment:fixed; | ||
position:relative; | ||
} | ||
|
||
.inner-container { | ||
width:100%; | ||
min-width:1000px; | ||
text-align:center; | ||
position:absolute; | ||
width:100%; | ||
color:white; | ||
height:auto; | ||
margin-top:200px; | ||
opacity:0; | ||
top:5px; | ||
} | ||
|
||
.img-container h1 { | ||
font-size:4em; | ||
font-family: 'Questrial', sans serif; | ||
text-align:center; | ||
color:#fff; | ||
animation:title 1000ms; | ||
|
||
} | ||
|
||
.learn-more i { | ||
color:#fff; | ||
font-size:50px; | ||
transition: 0.4s ease; | ||
|
||
} | ||
|
||
.learn-more { | ||
margin-left:47.5%; | ||
animation:title 1000ms; | ||
} | ||
|
||
.learn-more i:hover { | ||
transform: translate(0%, 40%); | ||
transition: 0.4s ease-out; | ||
} | ||
|
||
@keyframes title { | ||
0% { | ||
display:none; | ||
visibility:hidden; | ||
opacity:0; | ||
top:100px; | ||
} | ||
50% { | ||
display:none; | ||
visibility:hidden; | ||
opacity:0; | ||
top:35px; | ||
} | ||
100% { | ||
opacity:1; | ||
top:0px; | ||
position:relative; | ||
} | ||
} | ||
|
||
.img-container h2 { | ||
margin-top:-17px; | ||
font-size:1.7em; | ||
font-family: 'Questrial', sans serif; | ||
text-align:center; | ||
font-weight:400; | ||
color:#fff; | ||
animation:title 1000ms; | ||
} | ||
|
||
.img-container h3 { | ||
font-size:1.3em; | ||
font-family: 'Questrial', sans serif; | ||
text-align:center; | ||
font-weight:400; | ||
color:#fff; | ||
animation:title 1000ms; | ||
} | ||
|
||
a { | ||
text-align:center; | ||
margin-top:20px; | ||
font-size:1.3em; | ||
font-family:'Source Sans Pro', sans serif; | ||
} | ||
|
||
.img-container .btn { | ||
animation:title 1000ms; | ||
position:center; | ||
display: inline-block; | ||
width:200px; | ||
font-weight:bold; | ||
padding:10px; | ||
color:#fff; | ||
border: 4px solid #fff; | ||
text-align:center; | ||
outline:none; | ||
text-decoration:none; | ||
margin-left:550px; | ||
transition: background-color 0.2s ease-out, color 0.2s ease-out; | ||
} | ||
|
||
.btn:hover,.btn:active { | ||
text-align:center; | ||
background-color:#fff; | ||
color:#000; | ||
transition:background-color 0.3s ease-in, color 0.3s ease-in; | ||
} | ||
|
||
|
||
.text-container { | ||
width:100%; | ||
background-color:#fff; | ||
padding-top:5%; | ||
position:relative; | ||
margin-bottom:25%; | ||
} | ||
|
||
.inner-container { | ||
text-align:center; | ||
position:absolute; | ||
width:100%; | ||
color:white; | ||
height:auto; | ||
margin-top:200px; | ||
opacity:0; | ||
top:5px; | ||
|
||
} | ||
|
||
.text-container h3 { | ||
|
||
margin-top:-17px; | ||
padding:20px 50px; | ||
font-size:19px; | ||
font-family: 'Questrial', sans serif; | ||
text-align:center; | ||
font-weight:400; | ||
color:#fff; | ||
|
||
} | ||
|
||
.text-container p { | ||
margin-top:-17px; | ||
padding:20px 50px; | ||
font-size:1.3em; | ||
font-family: 'Questrial', sans serif; | ||
font-weight:400; | ||
color:#000; | ||
} | ||
|
||
.text-container .btn { | ||
position:center; | ||
display: inline-block; | ||
width:55%; | ||
font-weight:bold; | ||
padding:10px; | ||
color:#000; | ||
border: 4px solid #000; | ||
text-align:center; | ||
outline:none; | ||
text-decoration:none; | ||
margin-left:20%; | ||
transition:color 0.2s ease-out, border 0.2s ease-out; | ||
margin-bottom:3%; | ||
} | ||
|
||
.text-container .btn:hover,.btn:active { | ||
text-align:center; | ||
background-color:#fff; | ||
color:#3498db; | ||
border: 4px solid #3498db; | ||
transition:color 0.3s ease-in, border 0.3s ease-in; | ||
} | ||
|
||
.btn-right:hover,.btn:active { | ||
text-align:center; | ||
background-color:#fff; | ||
color:#000; | ||
transition:background-color 0.3s ease-in, color 0.3s ease-in; | ||
} | ||
|
||
#footerTable img { | ||
width:60%; | ||
} | ||
|
||
.footer { | ||
width:100%; | ||
background-color:#000; | ||
height:50%; | ||
background-position:center; | ||
background-repeat:no-repeat; | ||
background-size:cover; | ||
position:fixed; | ||
bottom:0; | ||
z-index:-1; | ||
} | ||
|
||
.footer h3 { | ||
font-family: 'Source Sans Pro', sans serif; | ||
font-weight:bold; | ||
text-transform:uppercase; | ||
color:#fff; | ||
font-size:1em; | ||
|
||
} | ||
|
||
.inner-container { | ||
text-align:center; | ||
position:absolute; | ||
width:100%; | ||
color:white; | ||
height:auto; | ||
margin-top:200px; | ||
opacity:0; | ||
top:5px; | ||
|
||
} | ||
|
||
.footer p { | ||
text-align:center; | ||
margin-top:-17px; | ||
padding:20px 50px; | ||
font-size:0.75em; | ||
font-family: 'Source Sans Pro', sans serif; | ||
font-weight:bold; | ||
text-transform:uppercase; | ||
color:#fff; | ||
} | ||
|
||
.footer img { | ||
padding-bottom:20px; | ||
padding-left:30px; | ||
padding-right:30px; | ||
display:inline-block; | ||
margin-top:10px; | ||
} | ||
|
||
#descriptionTable tr td img { | ||
width:100%; | ||
} | ||
|
||
#descriptionTable tr .img { | ||
width:30%; | ||
padding:2%; | ||
} | ||
|
||
.footerTable { | ||
width:100%; | ||
} |
Oops, something went wrong.