Files
eruda/src/DevTools/DevTools.scss
2016-03-13 23:11:40 +08:00

56 lines
989 B
SCSS

@import "../color";
#eruda {
.dev-tools {
position: absolute;
width: 100%;
height: 100%;
padding-top: 50px;
background: #fff;
z-index: 500;
display: none;
&.show {
display: block;
animation: show-menu .3s linear both;
}
&.hide {
display: block;
animation: hide-menu .3s linear both;
}
.tools {
height: 100%;
width: 100%;
position: relative;
overflow: auto;
.tool {
position: absolute;
left: 0;
top: 0;
background: $gray-light;
width: 100%;
height: 100%;
}
}
}
}
@keyframes show-menu {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes hide-menu {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}