first landingpage release
BIN
landing_page/src/fonts/04B_03.woff
Normal file
BIN
landing_page/src/fonts/OpenSans-Regular.ttf
Normal file
BIN
landing_page/src/images/Desktop HD.png
Normal file
After Width: | Height: | Size: 945 KiB |
BIN
landing_page/src/images/Group-4.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
landing_page/src/images/Group-5.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
landing_page/src/images/Rectangle.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
landing_page/src/images/amstrad.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
landing_page/src/images/atari.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
landing_page/src/images/bitmap.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
landing_page/src/images/btn-bg-light.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
landing_page/src/images/btn-bg.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
landing_page/src/images/cat.jpg
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
landing_page/src/images/chosse-map.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
landing_page/src/images/demo.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
landing_page/src/images/header.png
Normal file
After Width: | Height: | Size: 269 KiB |
BIN
landing_page/src/images/lets-go-explore.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
landing_page/src/images/logo.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
landing_page/src/images/people-love.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
landing_page/src/images/pixelated.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
landing_page/src/images/rect_3.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
landing_page/src/images/select-char.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
landing_page/src/images/sinclair-2.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
landing_page/src/images/sinclair.png
Normal file
After Width: | Height: | Size: 165 KiB |
BIN
landing_page/src/images/start.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
landing_page/src/images/super-nintendo.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
landing_page/src/images/used-by-millions.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
4
landing_page/src/javascript/index.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
import '../sass/styles.scss';
|
||||
|
||||
console.log('Webpack Boilerplate');
|
||||
|
4
landing_page/src/sass/_custom.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
$body-bg: #000;
|
||||
$body-color: #fff;
|
||||
$font-family-sans-serif: "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;
|
131
landing_page/src/sass/styles.scss
Normal file
|
@ -0,0 +1,131 @@
|
|||
@import "custom";
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
|
||||
@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');
|
||||
}
|
||||
|
||||
header {
|
||||
background: url("../images/header.png") no-repeat;
|
||||
background-size: 100%;
|
||||
height: 28rem;
|
||||
position: relative;
|
||||
|
||||
.over-image {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
.logo{
|
||||
margin: 1rem 0 0 5rem
|
||||
}
|
||||
|
||||
.title {
|
||||
padding: 5rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.custom-link{
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 250px;
|
||||
height: 80px;
|
||||
background-image: url('../images/btn-bg.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100%;
|
||||
position: relative;
|
||||
|
||||
&.light{
|
||||
background-image: url('../images/btn-bg-light.png');
|
||||
}
|
||||
|
||||
&::after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
background-size: 60%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
&.start::after{
|
||||
background: url("../images/start.png") no-repeat center center;
|
||||
}
|
||||
|
||||
&.demo::after{
|
||||
background: url("../images/demo.png") no-repeat center center;
|
||||
}
|
||||
}
|
||||
|
||||
img{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.bg-white{
|
||||
color: #000000;
|
||||
}
|
||||
.bg-gray{
|
||||
background-color: #3b3b3b !important;
|
||||
}
|
||||
.section{
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 5rem;
|
||||
|
||||
&.used-by{
|
||||
img{
|
||||
padding: 0 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.how-to{
|
||||
.image-item{
|
||||
height: 100%;
|
||||
max-width: 300px;
|
||||
margin: 0 auto;
|
||||
background-color: #f9dcb0;
|
||||
padding: 1rem;
|
||||
|
||||
h2{
|
||||
padding: 1rem 0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.used-by{
|
||||
img{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
&.quotes{
|
||||
h2{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.quote-item{
|
||||
padding: 1rem 0;
|
||||
text-align: right;
|
||||
.quote{
|
||||
font-size: 1.5rem;
|
||||
margin-right: 3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.author{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|