File manager frontend
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
.container {
|
||||
display: flex;
|
||||
height: 100vh; /* Adjust to desired height */
|
||||
}
|
||||
|
||||
.column {
|
||||
flex: 1;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.column:nth-child(1),
|
||||
.column:nth-child(2) {
|
||||
flex-basis: 15%;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
.column:nth-child(3) {
|
||||
flex-basis: 70%;
|
||||
background-color: #e6e6e6;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.spinner {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.spinner:after {
|
||||
content: " ";
|
||||
display: block;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
margin: 0px;
|
||||
border-radius: 50%;
|
||||
border: 6px solid #333;
|
||||
border-color: #333 transparent #333 transparent;
|
||||
animation: spinner 1.2s linear infinite;
|
||||
}
|
||||
@keyframes spinner {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user