Renaming landing_page directory to website
BIN
website/src/fonts/04B_03.woff
Normal file
BIN
website/src/fonts/OpenSans-Regular.ttf
Normal file
BIN
website/src/fonts/VCR_OSD.ttf
Normal file
BIN
website/src/fonts/ka1.ttf
Normal file
BIN
website/src/images/BG-briques.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
website/src/images/Desktop HD.png
Normal file
After Width: | Height: | Size: 945 KiB |
BIN
website/src/images/Group-4.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
website/src/images/Group-5.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
website/src/images/Rectangle.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
website/src/images/bg-briques.jpg
Normal file
After Width: | Height: | Size: 511 KiB |
BIN
website/src/images/bg-step.png
Normal file
After Width: | Height: | Size: 754 B |
BIN
website/src/images/btn-bg-2.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
website/src/images/btn-bg-3.png
Normal file
After Width: | Height: | Size: 502 B |
BIN
website/src/images/btn-bg-bw.png
Normal file
After Width: | Height: | Size: 438 B |
BIN
website/src/images/btn-bg-light.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
website/src/images/btn-bg.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
website/src/images/cat.jpg
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
website/src/images/chosse-map.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
website/src/images/cloud.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
website/src/images/demo.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
website/src/images/header.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
website/src/images/lets-go-explore.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
website/src/images/people-love.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
website/src/images/pixelated.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
website/src/images/playicon.png
Normal file
After Width: | Height: | Size: 684 B |
BIN
website/src/images/rect_3.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
website/src/images/select-char.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
website/src/images/sinclair.png
Normal file
After Width: | Height: | Size: 165 KiB |
BIN
website/src/images/sky.jpg
Normal file
After Width: | Height: | Size: 648 KiB |
BIN
website/src/images/start.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
website/src/images/used-by-millions.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
1
website/src/javascript/index.js
Normal file
|
@ -0,0 +1 @@
|
|||
import '../sass/styles.scss';
|
74
website/src/sass/_choose-map.scss
Normal file
|
@ -0,0 +1,74 @@
|
|||
body.choose-map{
|
||||
|
||||
.map-item{
|
||||
cursor: pointer;
|
||||
margin: 1rem 0.5rem;
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
border: 3px transparent solid;
|
||||
|
||||
&.active{
|
||||
border-color: #FFFFFF;
|
||||
}
|
||||
|
||||
p{
|
||||
margin: 1em 0 0;
|
||||
font-size: larger;
|
||||
}
|
||||
}
|
||||
|
||||
#wa-link{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#url-copied{
|
||||
display: none;
|
||||
font-size: 20px;
|
||||
|
||||
img{
|
||||
height: 20px;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.copy-btn{
|
||||
font-family: "Karmatic Arcade";
|
||||
font-size: 30px;
|
||||
border: 4px solid #ffffff;
|
||||
width: auto;
|
||||
box-shadow: 4px 4px white;
|
||||
padding: 1rem;
|
||||
background: #000000;
|
||||
color: white;
|
||||
margin-right: 10px;
|
||||
&:focus{
|
||||
outline: none;
|
||||
}
|
||||
|
||||
small{
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.start-area{
|
||||
img{
|
||||
min-height: 70px;
|
||||
}
|
||||
|
||||
#start-btn{
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
color: #ffffff;
|
||||
border-bottom: 8px solid white;
|
||||
animation: blinker 1s alternate infinite;
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
@keyframes blinker {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
4
website/src/sass/_custom.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
$body-bg: #000;
|
||||
$body-color: #fff;
|
||||
$font-family-sans-serif: Courier, "04b03", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
$h2-font-size: 1.5rem;
|
292
website/src/sass/styles.scss
Normal file
|
@ -0,0 +1,292 @@
|
|||
@import "custom";
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
@import "_choose-map";
|
||||
|
||||
@font-face {
|
||||
font-family: OpenSans;
|
||||
src: url('../fonts/OpenSans-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: '04b03';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('04b03'), url('../fonts/04B_03.woff') format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Karmatic Arcade';
|
||||
src: url('../fonts/ka1.ttf') format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'VCR OSD Mono';
|
||||
src: url('../fonts/VCR_OSD.ttf') format('truetype');
|
||||
}
|
||||
|
||||
header {
|
||||
background: #28A7FC url("../images/sky.jpg") no-repeat bottom;
|
||||
background-size: 100%;
|
||||
height: 37rem;
|
||||
position: relative;
|
||||
.section{
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.over-image {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 33rem;
|
||||
.logo{
|
||||
margin: 1rem 0;
|
||||
}
|
||||
.social-links {
|
||||
text-align: right;
|
||||
padding-top: 36px;
|
||||
a {
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
.title {
|
||||
padding: 5rem 0;
|
||||
color: black;
|
||||
h1 {
|
||||
font-family: 'Karmatic Arcade';
|
||||
font-size: 44px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.clouds {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 162px;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
&.clouds-2 {
|
||||
bottom: 25px;
|
||||
.cloud {
|
||||
transform: translateX(50px);
|
||||
-webkit-animation-duration: 80s;
|
||||
opacity: .6;
|
||||
}
|
||||
}
|
||||
.cloud {
|
||||
background: url('../images/cloud.png') repeat-x;
|
||||
height: 162px;
|
||||
width: 4000px;
|
||||
-webkit-animation-name: prop-600;
|
||||
-webkit-animation-duration: 50s;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
-webkit-animation-direction:alternate;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@-webkit-keyframes prop-600 {
|
||||
0% {
|
||||
-webkit-transform: translateX(0px);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateX(-400px);
|
||||
}
|
||||
}
|
||||
.custom-link{
|
||||
font-family: "VCR OSD Mono";
|
||||
font-size: 18px;
|
||||
letter-spacing: 5px;
|
||||
color: white;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 250px;
|
||||
height: 64px;
|
||||
background-image: url('../images/btn-bg.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: -24px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
z-index: 2;
|
||||
transition: all .1s cubic-bezier(0.000, -0.600, 1.000, 1.650); /* custom */
|
||||
//transition-timing-function: cubic-bezier(0.000, -0.600, 1.000, 1.650); /* custom */
|
||||
&:hover {
|
||||
color: white;
|
||||
transform: translateY(-6px);
|
||||
text-decoration: none;
|
||||
}
|
||||
&.contribute {
|
||||
background-image: url('../images/btn-bg-2.png');
|
||||
}
|
||||
&.play {
|
||||
background-image: url('../images/btn-bg-3.png');
|
||||
}
|
||||
&.start {
|
||||
/*padding-left: 55px;*/
|
||||
&:before {
|
||||
/*content: "";
|
||||
position: absolute;
|
||||
background: url('../images/playicon.png') no-repeat;
|
||||
height: 20px;
|
||||
width: 21px;
|
||||
left: 36px;
|
||||
top: 23px;*/
|
||||
}
|
||||
}
|
||||
&.light{
|
||||
background-image: url('../images/btn-bg-light.png');
|
||||
}
|
||||
|
||||
/*&::after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
background-size: 60%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}*/
|
||||
}
|
||||
|
||||
img{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.bg-white{
|
||||
color: #000000;
|
||||
}
|
||||
.bg-gray{
|
||||
background-color: #3b3b3b !important;
|
||||
}
|
||||
.credits {
|
||||
text-align: center;
|
||||
h2{
|
||||
padding: 1rem 0;
|
||||
margin: 0;
|
||||
min-height: 6rem;
|
||||
font-family: 'Karmatic Arcade';
|
||||
font-size: 34px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
p {
|
||||
|
||||
}
|
||||
}
|
||||
.section{
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 5rem;
|
||||
|
||||
&.used-by{
|
||||
img{
|
||||
padding: 0 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.how-to{
|
||||
padding: 100px 0;
|
||||
background: url('../images/bg-briques.jpg') repeat-x bottom;
|
||||
.image-item{
|
||||
height: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
/*transition: all .25s cubic-bezier(0.000, -0.600, 1.000, 1.650);
|
||||
&:hover {
|
||||
transform: scale(1.1);
|
||||
.step-image {
|
||||
&:after {
|
||||
bottom: -10px;
|
||||
left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.step-image {
|
||||
position: relative;
|
||||
&:after {
|
||||
transition: all .25s cubic-bezier(0.000, -0.600, 1.000, 1.650);
|
||||
content:"";
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: #dcdcdc;
|
||||
position: absolute;
|
||||
bottom: -25px;
|
||||
left: 25px;
|
||||
background: url('../images/bg-step.png') no-repeat bottom right;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
}
|
||||
}*/
|
||||
h2{
|
||||
padding: 1rem 0;
|
||||
margin: 0;
|
||||
min-height: 6rem;
|
||||
font-family: 'Karmatic Arcade';
|
||||
font-size: 22px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.used-by{
|
||||
img{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
&.quotes{
|
||||
h2{
|
||||
font-family: 'Karmatic Arcade';
|
||||
font-size: 34px;
|
||||
margin: 40px 0;
|
||||
}
|
||||
|
||||
.quote-item{
|
||||
padding: 1rem 0;
|
||||
text-align: center;
|
||||
.quote{
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.author{
|
||||
font-size: 1rem;
|
||||
letter-spacing: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
padding: 2rem;
|
||||
.floppy {
|
||||
text-align: right;
|
||||
img {
|
||||
float: right;
|
||||
margin-left: 20px;
|
||||
}
|
||||
div {
|
||||
float: right;
|
||||
margin-left: 15px;
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
padding-top: 10px;
|
||||
span {
|
||||
color: grey;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pixel-title{
|
||||
font-family: "Karmatic Arcade" !important;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-weight: 800;
|
||||
}
|