Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
HRussellZFAC023 authored May 25, 2024
1 parent 96b689b commit b7eed20
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
font-family: 'Press Start 2P', cursive;
}

button {
margin-top: 20px;
}

button:hover {
cursor: pointer;
Expand All @@ -29,6 +32,7 @@ body {
overflow-x: hidden;
max-height: 100vh;
overflow-y: hidden;

}


Expand Down Expand Up @@ -61,15 +65,17 @@ body {
grid-template-rows: 1fr 1fr;
height: 100vh;
background: var(--sky);


}

.sky {

display: grid;
place-items: center;
text-align: center;
display: -webkit-flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
}

.cloud {
Expand Down Expand Up @@ -157,6 +163,11 @@ body {
}

.message {
display: -webkit-flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
position: absolute;
color: var(--pudding);
padding: 1em;
Expand Down Expand Up @@ -268,4 +279,4 @@ body {

.jiggle {
animation: jiggle 0.5s linear;
}
}

0 comments on commit b7eed20

Please sign in to comment.