Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffisgonnabefriend43546453423 committed Sep 11, 2024
1 parent e3686cd commit 25230b0
Showing 1 changed file with 209 additions and 0 deletions.
209 changes: 209 additions & 0 deletions justfalllol/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
html {
box-sizing: border-box;
}

*,
*:before,
*:after {
box-sizing: inherit;
}

body {
margin: 0;
background: #000!important;
overflow: hidden;
}

#gameContainer {
width: 100vw;
height: 100vh;
background: #000!important;
}

canvas {
width: 100%;
height: 100%;
display: block;
}
/* try to handle mobile dialog */

canvas + * {
z-index: 2;
}

.progress {
margin: 1.5em;
border: 1px solid white;
width: 35vw;
display: none;
position: fixed;
bottom: 15%;
}

.progress .full {
margin: 2px;
background: white;
height: 1em;
transform-origin: top left;
}

#loader {
position: absolute;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("splash.jpg");
background-size: 100% auto;
background-position: center;
background-repeat: no-repeat;
}

.spinner,
.spinner:after {
border-radius: 50%;
width: 5em;
height: 5em;
}

.spinner {
margin: 10px;
font-size: 10px;
position: relative;
text-indent: -9999em;
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
border-left: 1.1em solid #ffffff;
transform: translateZ(0);
animation: spinner-spin 1.1s infinite linear;
}

@keyframes spinner-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

.ad {
background: rgba(0, 0, 0, 0.4);
overflow: hidden;
display: none;
}

.modal{
background:rgba(0,0,0,.4);
display:none;
height:100%;
width: 100%;
position:fixed;
z-index:10000;
top: 0;
left: 0;
bottom: 0;
right: 0;
}

.modalContent{
margin: auto;
width: 100%;
}

.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

#continueWindow{
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 30%;
}

#adWindow{
background: #4382f5;
border: 10px solid #4382f5;
width: 660px;
border-top: 0;
height: 540px;
}

.ads{
height:100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
position: absolute;
z-index:40;
}

.ad-rectangle-bottom {
width: 304px;
height: 258px;
border-style: solid;
border-width: 4px 4px 4px 0px;
border-color: rgba(0, 0, 0, 0.01);
}

.ad-rectangle-upper {
width: 304px;
height: 258px;
border-style: solid;
border-width: 4px 4px 4px 0px;
border-color: rgba(0, 0, 0, 0.01);
}
.ad-leaderboard-bottom {
width: 304px;
height: 608px;
border-style: solid;
border-width: 4px 4px 4px 0px;
border-color: rgba(0, 0, 0, 0.01);
}

@media (min-height: 900px) {
.ad-smallscreen{
display: none;
}
}

@media (max-height: 900px) {
.ad-largescreen{
display: none;
}
}

#adWindow {
border: 10px solid #4382f5 !important;
height: 500px !important;
}

a[onclick*="showConsentToolSettings"] {
right: 0px;
left: auto !important;
}

0 comments on commit 25230b0

Please sign in to comment.