Skip to content

Commit

Permalink
Merge pull request #1 from Code4Community/cardGameBaker
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Tran <[email protected]>
  • Loading branch information
freshav0cado and danielxtran authored Oct 1, 2024
2 parents a121841 + e58c913 commit 234c3ad
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# CardGame
# CardGame
<!DOCTYPE html>
<html lang="en">
<head>
<title>Card Game</title>
</head>
<body>
</body>
</html>
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="script.js"></script>
</head>
<body>
<title>Card Game</title>
<div class = "card point-card">
<p> +1 </p>



</div>
</body>
</html>
Empty file added script.js
Empty file.
14 changes: 14 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.card {
display: inline-block;
width: 150px;
height: 250px;
padding: 5px;
border: 1px black;
background-color: red;
border-radius: 20px;
}

.card:hover{
box-shadow: 5px 5px 5px #363636;
transform: scale(1.05);
}

0 comments on commit 234c3ad

Please sign in to comment.