-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a266ce
commit f3aae30
Showing
2 changed files
with
190 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Rubik+Bubbles&display=swap"); | ||
|
||
body { | ||
font-family: "Poppins", sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.container { | ||
color: #fff; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 5%; | ||
width: 100vw; | ||
height: 100vh; | ||
overflow: hidden; | ||
background: rgba(152, 140, 241, 0.5); | ||
} | ||
|
||
.heading-container { | ||
font-family: "Rubik Bubbles", sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.heading { | ||
color: #455eb5; | ||
font-size: 4rem; | ||
font-weight: bold; | ||
} | ||
|
||
.drop-container { | ||
position: relative; | ||
display: flex; | ||
gap: 10px; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
height: 200px; | ||
padding: 20px; | ||
border-radius: 10px; | ||
border: 2px dashed #555; | ||
color: #444; | ||
cursor: pointer; | ||
background-color: #fff; | ||
transition: background 0.2s ease-in-out, border 0.2s ease-in-out; | ||
} | ||
|
||
.drop-container:hover, | ||
.drop-container.drag-active { | ||
background: #eee; | ||
border-color: #111; | ||
} | ||
|
||
.drop-container:hover .drop-title, | ||
.drop-container.drag-active .drop-title { | ||
color: #222; | ||
} | ||
|
||
.drop-title { | ||
color: #444; | ||
font-size: 20px; | ||
font-weight: bold; | ||
text-align: center; | ||
transition: color 0.2s ease-in-out; | ||
} | ||
|
||
input[type="file"] { | ||
width: 350px; | ||
max-width: 100%; | ||
color: #444; | ||
padding: 5px; | ||
background: #ffffff; | ||
border-radius: 10px; | ||
font-family: inherit; | ||
border: 1px solid #555; | ||
} | ||
|
||
input[type="file"]::file-selector-button { | ||
margin-right: 20px; | ||
border: none; | ||
background: #455eb5; | ||
padding: 10px 20px; | ||
border-radius: 10px; | ||
color: #fff; | ||
cursor: pointer; | ||
font-family: inherit; | ||
transition: background 0.2s ease-in-out; | ||
} | ||
|
||
input[type="file"]::file-selector-button:hover { | ||
background: #0d45a5; | ||
} | ||
|
||
/* CSS */ | ||
.random-btn { | ||
background-image: linear-gradient( | ||
92.88deg, | ||
#455eb5 9.16%, | ||
#5643cc 43.89%, | ||
#673fd7 64.72% | ||
); | ||
border-radius: 8px; | ||
border-style: none; | ||
box-sizing: border-box; | ||
color: #ffffff; | ||
cursor: pointer; | ||
flex-shrink: 0; | ||
font-family: inherit; | ||
font-size: 16px; | ||
font-weight: 500; | ||
height: 4rem; | ||
text-align: center; | ||
text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px; | ||
transition: all 0.5s; | ||
user-select: none; | ||
-webkit-user-select: none; | ||
touch-action: manipulation; | ||
padding: 0 2.6rem; | ||
} | ||
|
||
.random-btn:hover { | ||
box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px; | ||
transition-duration: 0.1s; | ||
} | ||
|
||
.random-btn:active { | ||
transform: scale(0.95); | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.heading { | ||
font-size: 1rem; | ||
} | ||
.random-btn { | ||
padding: 0 1.6rem; | ||
} | ||
} |