Skip to content

Commit

Permalink
Styling draggable box
Browse files Browse the repository at this point in the history
  • Loading branch information
sirilius committed Oct 27, 2021
1 parent 06d4256 commit 41507c2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@ header {
background: white;
}

.output {
display: flex;
justify-content: center;
align-items: center;
}

.file-wrapper {
margin-bottom: 20px;
width: 100%;
Expand Down Expand Up @@ -369,6 +375,19 @@ footer {
font-weight: 500;
}

.draggable-file {
position: absolute;
height: 520px;
width: 770px;
display: flex;
align-items: center;
justify-content: center;
border: 5px dashed #d7d7d7;
border-radius: 15px;
font-size: 20px;
color: #676767;
}

@media (min-width: 320px) {
.wrapper {
flex-direction: column;
Expand Down Expand Up @@ -409,6 +428,10 @@ footer {
.donate {
font-size: 20px;
}

.draggable-file {
display: none;
}
}

@media (max-width: 640px) {
Expand Down Expand Up @@ -440,6 +463,10 @@ footer {
.donate {
font-size: 20px;
}

.draggable-file {
display: none;
}
}

@media (min-width: 1024px) {
Expand Down

0 comments on commit 41507c2

Please sign in to comment.