Files
nodejs-fm/static/base.css

125 lines
2.3 KiB
CSS
Raw Normal View History

2019-05-19 18:48:50 +05:30
body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color:#c5c0c0;
margin: 0%;
}
.container{
padding:0.5rem;
/*display: flex;*/
}
2019-05-20 16:51:43 +05:30
@media only screen and (max-width: 750px){
.container{
padding:0;
}
}
2019-05-19 18:48:50 +05:30
.navbar-container{
/* Primary color */
background-color: #2196f3;
}
2019-05-20 21:53:36 +05:30
.navbar{
position:float;
padding:1rem;
font-size:1.5em;
}
2019-05-19 18:48:50 +05:30
.content{
padding:0.5rem;
border-radius: 0.25rem;
2019-05-20 16:51:43 +05:30
width:75%;
2019-05-19 18:48:50 +05:30
margin:0.5rem auto 0.5rem auto;
background-color: aliceblue;
}
2019-05-20 16:51:43 +05:30
@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;
}
}
2019-05-19 18:48:50 +05:30
.nav-bottom-container{
position: fixed;
bottom:0;
width:100%;
}
.nav-bottom{
background-color:aliceblue;
2019-05-20 12:51:35 +05:30
z-index:2;
2019-05-19 18:48:50 +05:30
padding:0.5rem;
height: 1.5rem;
width:100%;
}
.nav-bottom-button-container{
width:100%;
text-align: right;
}
.nav-bottom-button{
2019-05-20 16:51:43 +05:30
margin-bottom: 1rem;
margin-right:1rem;
2019-05-19 18:48:50 +05:30
margin-left: auto;
2019-05-20 12:51:35 +05:30
width:4.5rem;
height:4.5rem;
padding:auto;
border-radius: 10em;
outline: none;
2019-05-19 18:48:50 +05:30
/* Button - Secondary color */
background-color:royalblue;
2019-05-20 12:51:35 +05:30
border:0.5rem royalblue solid;
2019-05-19 18:48:50 +05:30
color:white;
2019-05-20 12:51:35 +05:30
font-size: 2rem;
2019-05-19 18:48:50 +05:30
}
.nav-bottom-pad{
height:1.5rem;
margin-top:0.5rem;
}
2019-05-21 19:37:11 +05:30
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;
}
2019-05-21 20:31:41 +05:30
tbody td.file-isDir{
font-style: italic;
}
tbody td.file-isDir::after{
content: '/';
}
2019-05-21 19:37:11 +05:30
2019-05-19 18:48:50 +05:30
.box-shadow-1{
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
2019-05-20 12:51:35 +05:30
.box-shadow-2, .box-shadow-1-active:active{
2019-05-19 18:48:50 +05:30
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
2019-05-20 12:51:35 +05:30
.box-shadow-3, .box-shadow-2-active:active{
2019-05-19 18:48:50 +05:30
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
2019-05-20 12:51:35 +05:30
}
.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);
2019-05-19 18:48:50 +05:30
}