Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTeacherDude authored Apr 30, 2024
1 parent b7518f8 commit 6658814
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.container {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}

.draggable {
width: 100px;
padding: 10px;
background-color: #f4f4f4;
border: 1px solid #ddd;
cursor: pointer;
text-align: center;
}

.dropzone {
width: 300px;
height: 50px;
padding: 10px;
background-color: #eee;
border: 1px dashed #ccc;
text-align: center;
line-height: 30px;
}

.draggable.over {
border-color: #000;
}

0 comments on commit 6658814

Please sign in to comment.