mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
47 lines
918 B
HTML
47 lines
918 B
HTML
<div class="container">
|
|
<form>
|
|
<label for="arquivo">Choose a file:</label>
|
|
<input accept=".jpg, .jpeg, .png, .gif, .pdf" class="inpdddut" name="arquivo" id="arquivo" type="file">
|
|
<input value="Send" type="submit" class="inpdddut">
|
|
</form>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by guilhermeyohan - Tags: form */
|
|
.container {
|
|
max-width: 300px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #13121269;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
label {
|
|
font-weight: bold;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.inpdddut[type="file"] {
|
|
padding: 10px;
|
|
margin-bottom: 20px;
|
|
border: none;
|
|
background-color: #1aa3bb;
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inpdddut[type="submit"] {
|
|
padding: 10px 20px;
|
|
background-color: #008CBA;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inpdddut[type="submit"]:hover {
|
|
background-color: #006F8F;
|
|
}
|
|
|
|
</style>
|