Skip to content

Commit

Permalink
I LOVE MONEY
Browse files Browse the repository at this point in the history
  • Loading branch information
sky-is-winning committed Jun 4, 2024
1 parent d1fba76 commit 8e0ad24
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
29 changes: 27 additions & 2 deletions client/styles/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
@font-face {
font-family: 'Proxima Nova';
src: url(/client/fonts/cpProximaNova-Regular.woff2) format('woff2'),
url(/client/fonts/cpProximaNova-Regular.ttf) format('ttf');
font-weight: normal;
font-style: normal;
}

:root {
--bg: #22a4f3;
--text: #eceff4;
Expand All @@ -23,13 +31,30 @@ a {
text-decoration: none;
}

.footer {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
width: 980px;
padding-top: 25px;
margin: 0 auto;
font-size: 18px;
text-align: center;
color: var(--text);
font-family: 'Proxima Nova';
}

.footer a:link, .footer a:visited {
color: #ffcc00;
}

/* Game */

.game {
width: 100%;
height: 100%;
height: 90%;
min-width: 500px;
margin: 0 auto;
margin: 1% auto;
overflow: hidden;
}

Expand Down
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
<input type="text" id='dummyForMobileKeyboard' class="dummyForMobileKeyboard"/>

<div id="game" class="game"></div>

<footer class="footer">
<a href="https://buymeacoffee.com/sky.is.winning" target="_blank">Buy me a coffee <3</a>
&nbsp;| &nbsp;
<a href="https://github.com/sky-is-winning/igloo-sandbox/" target="_blank">View source on GitHub</a>
</footer>

<script>
var dummyBox = document.getElementById('dummyForMobileKeyboard');
Expand Down

0 comments on commit 8e0ad24

Please sign in to comment.