2020-10-06 14:29:05 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Rubik:wght@300;500&display=swap');
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--blue: rgb(17, 76, 202);
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
}
|
|
|
|
|
2020-10-11 18:01:41 +02:00
|
|
|
*{
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
body {
|
2020-10-06 14:29:05 +02:00
|
|
|
background-color: rgb(189, 188, 188);
|
2020-10-11 18:01:41 +02:00
|
|
|
margin 0 auto;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#nav-bar {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2020-10-11 16:29:42 +02:00
|
|
|
height: 4rem;
|
2020-10-06 02:08:26 +02:00
|
|
|
background-color: rgb(179, 179, 179);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2020-10-06 14:29:05 +02:00
|
|
|
align-content: center;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.nav-bar a {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
#header-img {
|
2020-10-11 16:29:42 +02:00
|
|
|
height: 100%;
|
2020-10-06 14:29:05 +02:00
|
|
|
margin: 0 1em 0;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
.push {
|
|
|
|
margin-left: auto;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#nav-links {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2020-10-06 14:29:05 +02:00
|
|
|
align-items: center;
|
|
|
|
padding-left: 1rem;
|
|
|
|
padding-right: 1rem;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-link {
|
2020-10-06 14:29:05 +02:00
|
|
|
background: var(--blue);
|
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
border-radius: 10px;
|
2020-10-06 14:29:05 +02:00
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
color: #FFFFFF;
|
2020-10-06 14:29:05 +02:00
|
|
|
font-family: 'Rubik', sans-serif;
|
|
|
|
|
|
|
|
padding: 5px 40px;
|
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
box-shadow: 1px 1px 20px 0px #000000;
|
|
|
|
-webkit-box-shadow: 1px 1px 20px 0px #000000;
|
|
|
|
-moz-box-shadow: 1px 1px 20px 0px #000000;
|
2020-10-06 14:29:05 +02:00
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
text-shadow: 1px 1px 20px #000000;
|
2020-10-06 14:29:05 +02:00
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
border: solid #337FED 1px;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
2020-10-06 14:29:05 +02:00
|
|
|
}
|
2020-10-06 02:08:26 +02:00
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
.btn-link + .btn-link {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
2020-10-06 02:08:26 +02:00
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
|
|
|
|
.btn-link:hover {
|
|
|
|
border: double 1px;
|
|
|
|
}
|
2020-10-06 02:08:26 +02:00
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
#empty-space {
|
|
|
|
display: block;
|
|
|
|
padding: 1.5em;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 18:01:41 +02:00
|
|
|
section {
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put spacing between the section title (first element) and the next element below */
|
|
|
|
section :nth-child(2) {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
/* Form Section */
|
|
|
|
|
|
|
|
#formsection {
|
|
|
|
text-align: center;
|
2020-10-06 14:29:05 +02:00
|
|
|
font-family: 'Rubik', sans-serif;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 25px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#formsection #email {
|
2020-10-11 18:01:41 +02:00
|
|
|
margin-top: 1rem;
|
2020-10-06 14:29:05 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
font-size: 25px;
|
|
|
|
border: 2px solid var(--blue);
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#formsection #submit {
|
|
|
|
background-color: var(--blue);
|
|
|
|
color: white;
|
|
|
|
margin-top: 1rem;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 500;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Games Section */
|
|
|
|
#games {
|
2020-10-06 14:29:05 +02:00
|
|
|
margin-top: 2rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-10-06 02:08:26 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid {
|
|
|
|
display: flex;
|
2020-10-11 18:01:41 +02:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
flex-grow: 1;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#games .icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 125px;
|
2020-10-06 15:41:02 +02:00
|
|
|
width: 25px;
|
2020-10-06 14:29:05 +02:00
|
|
|
color: var(--blue);
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#games .details {
|
2020-10-06 14:29:05 +02:00
|
|
|
margin-left: 2rem;
|
2020-10-06 02:08:26 +02:00
|
|
|
text-align: left;
|
2020-10-11 18:01:41 +02:00
|
|
|
height: auto;
|
2020-10-06 14:29:05 +02:00
|
|
|
width: 50vw;
|
2020-10-06 02:08:26 +02:00
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* How To Section */
|
|
|
|
#videos {
|
2020-10-11 16:59:47 +02:00
|
|
|
text-align: center;
|
2020-10-06 14:29:05 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 18:01:41 +02:00
|
|
|
.video {
|
|
|
|
width: 420px;
|
|
|
|
height: 315px;
|
|
|
|
}
|
|
|
|
|
2020-10-06 14:29:05 +02:00
|
|
|
.video + .video {
|
|
|
|
margin-top: 1rem;
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Pricing Section */
|
|
|
|
#features {
|
2020-10-11 18:01:41 +02:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2020-10-06 14:29:05 +02:00
|
|
|
width: 60%;
|
2020-10-06 02:08:26 +02:00
|
|
|
text-align: center;
|
2020-10-11 18:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* start handling at 700 for menu */
|
|
|
|
@media screen and (max-width: 700px) {
|
2020-10-06 14:29:05 +02:00
|
|
|
|
2020-10-06 02:08:26 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 18:01:41 +02:00
|
|
|
/* below video tweak video sizes */
|
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
#formsection #email {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video {
|
|
|
|
width: 90%;
|
|
|
|
height: calc((90vw / 4) * 3);
|
|
|
|
}
|
|
|
|
}
|