add second page
This commit is contained in:
parent
92215128b7
commit
82c1862860
7 changed files with 205 additions and 4 deletions
BIN
landing_page/src/images/btn-bg-bw.png
Normal file
BIN
landing_page/src/images/btn-bg-bw.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 438 B |
|
@ -1,4 +1 @@
|
|||
import '../sass/styles.scss';
|
||||
|
||||
console.log('Webpack Boilerplate');
|
||||
|
||||
import '../sass/styles.scss';
|
62
landing_page/src/sass/_choose-map.scss
Normal file
62
landing_page/src/sass/_choose-map.scss
Normal file
|
@ -0,0 +1,62 @@
|
|||
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: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#wa-link{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
@import "custom";
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
@import "_choose-map";
|
||||
|
||||
@font-face {
|
||||
font-family: OpenSans;
|
||||
|
@ -279,3 +280,6 @@ img{
|
|||
}
|
||||
}
|
||||
|
||||
.pixel-title{
|
||||
font-family: "Karmatic Arcade" !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue