mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 21:22:35 +01:00
92 lines
1.3 KiB
CSS
92 lines
1.3 KiB
CSS
|
/*** index.html ***/
|
||
|
|
||
|
/** page-one **/
|
||
|
body {
|
||
|
font-family: 'Fira Sans';
|
||
|
font-weight: 300;
|
||
|
font-style: normal;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
.main-window{
|
||
|
border: 1px solid;
|
||
|
width: 606px;
|
||
|
height: 447px;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
margin: auto;
|
||
|
background-color: white;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
.title{
|
||
|
font-size: 14px;
|
||
|
width: 50%;
|
||
|
margin: 50px auto ;
|
||
|
}
|
||
|
.upload-window{
|
||
|
border: 1px dashed;
|
||
|
width: 50%;
|
||
|
margin: 0 auto;
|
||
|
width: 470px;
|
||
|
height: 250px;
|
||
|
border-radius: 5px;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
#browse{
|
||
|
float: right;
|
||
|
color: blue;
|
||
|
}
|
||
|
#browse-text{
|
||
|
float: left;
|
||
|
width: 128px;
|
||
|
}
|
||
|
#upload-img{
|
||
|
padding-right: 20px;
|
||
|
}
|
||
|
.upload-window>div:nth-child(2){
|
||
|
font-size: 26px;
|
||
|
}
|
||
|
.upload{
|
||
|
font-size: 12px;
|
||
|
width: auto;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.file-upload{
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
input[type="file"] {
|
||
|
display: none;
|
||
|
}
|
||
|
form{
|
||
|
width: 45px;
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
/** file-list **/
|
||
|
th{
|
||
|
font-size: 10px;
|
||
|
color: #737373;
|
||
|
font-weight: normal;
|
||
|
text-align: left;
|
||
|
}
|
||
|
td{
|
||
|
font-size: 12px;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
#uploaded-files{
|
||
|
width: 472px;
|
||
|
margin: 10px auto ;
|
||
|
float: top;
|
||
|
table-layout: fixed;
|
||
|
overflow-y: scroll;
|
||
|
}
|
||
|
#file-list{
|
||
|
overflow-y: scroll;
|
||
|
height: 90px;
|
||
|
}
|