initial commit file manager project

This commit is contained in:
2021-05-23 09:54:48 +02:00
commit d276d45b7a
20 changed files with 966 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
html, body {
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
overflow: hidden;
background: #212121;
font-family: "Ubuntu", sans-serif;
}
body {
display: flex;
flex-direction: column;
}
main {
flex: 1 1 auto;
overflow-y: scroll;
}
footer {
/*flex: 0 0 auto;*/
text-align: right;
}
header {
flex: 0 0 auto;
}
.app-header {
box-shadow: 1px 1px 10px rgb(33, 33, 33);
overflow: hidden;
-webkit-user-select: none;
background-color: #404040;
color: #ffffff;
display: grid;
grid-gap: 5%;
grid-template-columns: 25% 40% 25%;
height: auto;
max-height: 100px;
padding: 10px;
}
.title {
margin: 5px;
font-size: 2em;
}
.box {
padding: 5px;
height: 100%;
}
button {
cursor: pointer;
}
.material-icon {
font-family: Material Icons, sans-serif !important;
font-weight: 400;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: "liga";
-webkit-font-smoothing: antialiased;
}

View File

@@ -0,0 +1,88 @@
#wrapper {
color: white;
padding: 5px;
}
#wrapper1 {
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 30% 70%;
}
#tree {
grid-column: 1;
margin: 5px;
}
#path {
padding-bottom: 10px;
}
.arrow-pointer {
display: inline-block;
height: 2em;
background: #404040;
position: relative;
color: #ffffff;
margin-left: 1em;
}
.arrow-pointer:first-child {
margin-left: 0;
}
.arrow-pointer span {
padding-left: 1.5em;
padding-right: 0.5em;
padding-top: 0.5em;
}
.arrow-pointer:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 0;
border-left: 1em solid #212121;
border-top: 1em solid #404040;
border-bottom: 1em solid #404040;
}
.arrow-pointer:before {
content: '';
position: absolute;
right: -1em;
bottom: 0;
width: 0;
height: 0;
border-left: 1em solid #404040;
border-top: 1em solid #212121;
border-bottom: 1em solid #212121;
}
#files {
grid-column: 2;
margin: 5px;
}
table {
width: 100%;
border-collapse: collapse;
}
tr {
height: 3em;
}
th, td {
border-bottom: 1px solid #ccc;
}
thead tr {
text-align: left;
background: #0062ff;
}

View File

@@ -0,0 +1,38 @@
#wrapper {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#login {
margin-right: auto;
margin-left: auto;
color: #ffffff;
}
#login h1 {
text-align: center;
}
#login input, #login button {
font-size: 2em;
-webkit-appearance: none;
box-sizing: border-box;
height: 2.5em;
width: 100%;
border: none;
border-radius: 5px;
padding: 10px;
margin: 5px;
}
#login input {
background-color: #404040;
color: #ffffff;
}
#login button {
background-color: #003100;
color: #ffffff;
}