add second page

This commit is contained in:
kevin 2020-06-03 00:31:42 +02:00
parent 92215128b7
commit 82c1862860
7 changed files with 205 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 B

View file

@ -1,4 +1 @@
import '../sass/styles.scss';
console.log('Webpack Boilerplate');
import '../sass/styles.scss';

View 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;
}
}
}
}

View file

@ -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;
}