Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkas-Overgold authored Nov 19, 2024
1 parent 1a093c5 commit bc387e9
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,33 @@ button:hover {
background-color: silver;
}

#drag-drop-area {
border: 2px dashed #ccc;
padding: 20px;
margin: 20px auto;
width: 50%;
text-align: center;
background-color: #f9f9f9;
transition: background-color 0.3s;
}

#drag-drop-area.drag-over {
background-color: #e0ffe0;
border-color: #45a049;
}

#drag-drop-area p {
color: #333;
font-size: 16px;
}

#file-input-trigger {
color: #45a049;
cursor: pointer;
text-decoration: underline;
}


#results {
margin-top: 20px;
}
Expand Down Expand Up @@ -71,4 +98,4 @@ a {

.grafico-box h3 {
margin-bottom: 10px;
}
}

0 comments on commit bc387e9

Please sign in to comment.