mdbpanel/resources/sass/app.scss

150 lines
2.5 KiB
SCSS

// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Variables
@import 'variables';
// Bulma
@import '~bulma/bulma';
@import '~bulma-badge/dist/css/bulma-badge';
// html, body, #app {
// height: 100%;
// }
// #app {
// min-height: 100%;
// //display: flex;
// //flex-direction: column;
// }
tr{
line-height: 2rem;
}
.sidebar{
display: block;
top: 0;
bottom: 0;
position: fixed;
overflow-y: auto;
background-color: #32393F;
padding: 0px;
padding-top: 30px;
}
.sidebar a{
color:#cacaca;
}
.sidebar .icon{
padding-right: 20px;
padding-left: 10px;
}
.menu-label {
padding-left: 4em;
}
.menu-list a {
border-radius: 0px;
padding: 0.5em 4em;
}
.menu-list a:hover, .menu-list .router-link-exact-active, .menu-list .router-link-active{
background-color:#282e32;
color: white;
}
.tabs li .router-link-exact-active, .tabs li .router-link-active {
border-bottom-color: #3273dc !important;
color: #3273dc !important;
}
.logo {
padding-left: 50px;
font-size: 1.7rem;
color: white;
font-weight: 200;
}
.logo strong{
color:white;
}
.maincontent{
padding-left: 25%;
padding-top: 50px;
}
.feh-actions {
list-style: none;
padding: 0;
padding-top:10px;
margin: 0;
// margin-top:-10px;
position: absolute;
right: 0px;
top: -5px;
height: 45px;
min-width: 45px;
text-align: center;
border-radius: 50%;
z-index: 11;
transition: ease-in-out;
transition-duration: .3s;
background: whitesmoke;
}
.feh-actions:hover {
border: 0;
background: grey;
color:white;
}
.table td, .table th {
padding-left: 30px;
}
.tbl-icon {
display: inline-block;
vertical-align: top;
background-color: #f5f5f5;
padding-left: 6px;
padding-top: 2px;
margin-right: 10px;
border-radius: 50%;
width: 35px;
height: 35px;
transition: background-color;
transition-duration: .25s;
}
tr:hover span.icon.tbl-icon:first-child {
/* code */
background-color:grey !important;
}
tr:hover i{
/* code */
color:white !important;
}
.fade-enter-active,
.fade-leave-active {
transition-duration: 0.2s;
transition-property: opacity;
transition-timing-function: ease;
}
.fade-enter,
.fade-leave-active {
opacity: 0
}
// .content{
// min-height:100%;
// float:left;
// overflow-y:auto;
// margin: 0 auto;
// position: relative;
// }
[v-cloak] {
display:none;
}