Skip to content

Commit

Permalink
Fixing image
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Felton committed Jul 9, 2024
1 parent b511853 commit b1d499a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
Binary file removed Jax.jpg
Binary file not shown.
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
</head>
<body>
<div class="center">
<img src="Jax.jpg" alt="Jax" class="spin">
</div>
<div class="content">
<img src="jax.png" alt="Jax" class="spin">
<p class="coming-soon">Coming Soon...</p>
</div>
</body>
</html>
Binary file added jax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,23 @@ body, html {
align-items: center;
}

.content {
text-align: center;
}

.spin {
animation: spin 4s linear infinite;
}

.coming-soon {
line-height: 80px;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-size: 50pt;
margin-top: 20px;
text-align: center;
}

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

0 comments on commit b1d499a

Please sign in to comment.