Skip to content

Commit

Permalink
Se actualizo la ubicacion de los archivos
Browse files Browse the repository at this point in the history
  • Loading branch information
mateodevcode committed Aug 10, 2024
1 parent 2a6d63f commit 937137d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes
File renamed without changes
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand All @@ -20,24 +20,24 @@
<section>
<div id="start-game">
Start Game
<img src="img/favicon.png" alt="start" />
<img src="favicon.png" alt="start" />
</div>
</section>
<canvas></canvas>
</div>
<strong>Score: <span></span></strong>
<div id="controles" class="controles ocultar-controles">
<div id="left">
<img src="img/flecha.png" alt="left" />
<img src="flecha.png" alt="left" />
</div>
<div id="up">
<img src="img/rotate.png" alt="up" />
<img src="rotate.png" alt="up" />
</div>
<div id="down">
<img src="img/flecha.png" alt="down" />
<img src="flecha.png" alt="down" />
</div>
<div id="right">
<img src="img/flecha.png" alt="right" />
<img src="flecha.png" alt="right" />
</div>
</div>
<script type="module" src="js/main.js"></script>
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions css/style.css → style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ body {
display: grid;
place-content: center;
height: 100vh;
background: url('/tetriss.jpg') no-repeat center center/cover;
background: url('tetriss.jpg') no-repeat center center/cover;
}

section {
position: absolute;
background: url('/tetris.jpg') no-repeat center center/cover;
background: url('tetris.jpg') no-repeat center center/cover;
width: 100vw;
height: 100vh;
top: 0;
Expand Down

0 comments on commit 937137d

Please sign in to comment.