144 lines
2.6 KiB
CSS
144 lines
2.6 KiB
CSS
body{
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
background-color:#c5c0c0;
|
|
margin: 0%;
|
|
}
|
|
#cover{
|
|
position: fixed;
|
|
top:0;
|
|
height:100%;
|
|
width:100%;
|
|
background-color: rgba(0,0,0,0.25);
|
|
z-index:3;
|
|
}
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
.container{
|
|
padding:0.5rem;
|
|
/*display: flex;*/
|
|
}
|
|
@media only screen and (max-width: 750px){
|
|
.container{
|
|
padding:0;
|
|
}
|
|
}
|
|
|
|
.navbar-container{
|
|
/* Primary color */
|
|
background-color: #2196f3;
|
|
}
|
|
.navbar{
|
|
position:float;
|
|
padding:1rem;
|
|
font-size:1.5em;
|
|
}
|
|
.content{
|
|
padding:0.5rem;
|
|
border-radius: 0.25rem;
|
|
width:75%;
|
|
margin:0.5rem auto 0.5rem auto;
|
|
background-color: aliceblue;
|
|
}
|
|
|
|
@media only screen and (min-width: 750px){
|
|
.content{
|
|
min-width:40rem;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 750px){
|
|
.content{
|
|
width: auto;
|
|
border-radius: 0;
|
|
margin-top:0;
|
|
}
|
|
}
|
|
|
|
.nav-bottom-container{
|
|
position: fixed;
|
|
bottom:0;
|
|
width:100%;
|
|
}
|
|
|
|
.nav-bottom{
|
|
background-color:aliceblue;
|
|
z-index:2;
|
|
padding:0.5rem;
|
|
height: 2rem;
|
|
width:100%;
|
|
font-size:1.5em;
|
|
}
|
|
.nav-bottom-button-container{
|
|
width:100%;
|
|
text-align: right;
|
|
}
|
|
.nav-bottom-button{
|
|
margin-bottom: 1rem;
|
|
margin-right:1rem;
|
|
margin-left: auto;
|
|
width:4.5rem;
|
|
height:4.5rem;
|
|
padding:auto;
|
|
border-radius: 10em;
|
|
outline: none;
|
|
/* Button - Secondary color */
|
|
background-color:royalblue;
|
|
border:0.5rem royalblue solid;
|
|
color:white;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.nav-bottom-pad{
|
|
height:1.5rem;
|
|
margin-top:0.5rem;
|
|
}
|
|
|
|
.icon-tabs{
|
|
float:right;
|
|
padding-right:1em;
|
|
}
|
|
.icon-tabs .file-download-button,.icon-tabs .file-rename-button{
|
|
margin-left:0.5em;
|
|
}
|
|
|
|
table#files-details{
|
|
width:100%;
|
|
}
|
|
table{
|
|
border-collapse: collapse;
|
|
}
|
|
table tr{
|
|
border-bottom: 1px #c5c0c0 solid;
|
|
}
|
|
table td{
|
|
padding:0.25em;
|
|
}
|
|
tbody tr:last-child{
|
|
border:0;
|
|
}
|
|
tbody td.file-isDir{
|
|
font-style: italic;
|
|
}
|
|
tbody td.file-isDir::after{
|
|
content: '/';
|
|
}
|
|
|
|
|
|
.box-shadow-1{
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
|
}
|
|
.box-shadow-2, .box-shadow-1-active:active{
|
|
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
|
}
|
|
.box-shadow-3, .box-shadow-2-active:active{
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
|
}
|
|
|
|
.box-shadow-4, .box-shadow-3-active:active{
|
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
|
}
|
|
|
|
.box-shadow-1-active,.box-shadow-2-active,.box-shadow-3-active{
|
|
transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
|
|
} |