hiding the ugly upload button
This commit is contained in:
parent
5313968fc1
commit
9dabbf9beb
|
@ -15,19 +15,18 @@
|
|||
}
|
||||
|
||||
#main-upload {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 10%;
|
||||
margin-bottom: 30%;
|
||||
width: 30%;
|
||||
border: 5px solid rebeccapurple;
|
||||
height: 30vw;
|
||||
padding: 10px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: rgba(13, 6, 19, 0.4);
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
@ -36,8 +35,8 @@
|
|||
<body>
|
||||
<h1>file upload</h1>
|
||||
<div id="main-upload">
|
||||
<form id="upload-form" method="post" action="/v1/upload" enctype="multipart/form-data">
|
||||
<label for="upload">Upload a file</label>
|
||||
<p>Paste a file to upload it</p>
|
||||
<form id="upload-form" method="post" action="/v1/upload" enctype="multipart/form-data" hidden>
|
||||
<input type="file" id="upload" name="upload" accept="*" value="upload">
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue