drop.chapril.org-firefoxsend/public/main.css

113 lines
1.4 KiB
CSS
Raw Normal View History

2017-06-01 19:54:17 +02:00
/*** index.html ***/
/** page-one **/
body {
2017-06-05 16:25:10 +02:00
background: url('resources/background.png');
2017-06-01 19:54:17 +02:00
font-family: 'Fira Sans';
font-weight: 300;
font-style: normal;
background-size: cover;
}
2017-06-05 16:42:26 +02:00
.main-window {
2017-06-01 19:54:17 +02:00
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;
}
2017-06-05 16:42:26 +02:00
.title {
2017-06-01 19:54:17 +02:00
font-size: 14px;
width: 50%;
margin: 50px auto ;
}
2017-06-05 16:42:26 +02:00
.upload-window {
2017-06-01 19:54:17 +02:00
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;
}
2017-06-05 16:42:26 +02:00
#browse {
2017-06-01 19:54:17 +02:00
float: right;
color: blue;
}
2017-06-05 16:42:26 +02:00
#browse-text {
2017-06-01 19:54:17 +02:00
float: left;
width: 128px;
}
2017-06-05 16:42:26 +02:00
#upload-img {
2017-06-01 19:54:17 +02:00
padding-right: 20px;
}
2017-06-05 16:42:26 +02:00
.upload-window>div:nth-child(2) {
2017-06-01 19:54:17 +02:00
font-size: 26px;
}
2017-06-05 16:42:26 +02:00
.upload {
2017-06-01 19:54:17 +02:00
font-size: 12px;
width: auto;
overflow: hidden;
}
2017-06-05 16:42:26 +02:00
.file-upload {
2017-06-01 19:54:17 +02:00
cursor: pointer;
}
2017-06-05 16:42:26 +02:00
2017-06-01 19:54:17 +02:00
input[type="file"] {
display: none;
}
2017-06-05 16:42:26 +02:00
form {
2017-06-01 19:54:17 +02:00
width: 45px;
float: right;
}
/** file-list **/
2017-06-05 16:42:26 +02:00
th {
2017-06-01 19:54:17 +02:00
font-size: 10px;
color: #737373;
font-weight: normal;
text-align: left;
}
2017-06-05 16:42:26 +02:00
td {
2017-06-01 19:54:17 +02:00
font-size: 12px;
vertical-align: top;
}
2017-06-05 16:42:26 +02:00
#uploaded-files {
2017-06-01 19:54:17 +02:00
width: 472px;
margin: 10px auto ;
table-layout: fixed;
overflow-y: scroll;
}
2017-06-05 16:42:26 +02:00
#file-list {
2017-06-01 19:54:17 +02:00
overflow-y: scroll;
height: 90px;
}
2017-06-05 16:42:26 +02:00
.delete-btn {
2017-06-05 16:25:10 +02:00
padding: 0;
border: none;
background: none;
cursor: pointer;
}