radare/radare2-webui

View on GitHub
www/t/css/style.css

Summary

Maintainability
Test Coverage
img {
    border: 0px;
}

div {
    overflow:hidden;
}

p {
    margin:0px;
    border:0px;
}
textarea {
    background-color: #203040;
    color:white;
    border:0px;
    padding:5px;
}
a {
    color: #a06000;
}
a:hover {
    color: white;
}

.link {
    color:white;
}
html, body {
    overflow:hidden;
    background-color:black;
}
iframe {
    width:100%;
    border: 1px solid black;
}
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.modal {
    font-family: monospace;
    border: 3px solid black;

    left:10%;
    top:10%;
    right:10%;
    border-radius: 1em;
    padding-top:20px;
    bottom:10%;
    background-color: #202020;
    color: #e0e0e0;
    position:absolute;
    z-index: 10000 !important;
}
.modal_title {
    position:absolute;
    background-color:black;
    color:#e0e0e0;
    padding:0px;
    top:0px;
    height:20px;
    font-family: monospace;
    width:100%;
    z-index:10001;
}
.frame {
    font-family: monospace;
    border: 1px solid black;
    height:100%;
    background-color:#505050;
    color: #e0e0e0;
}
.frame_title {
    background-color:black;
    color:white;
    padding:0px;
    top:0px;
    height:20px;
    font-family: monospace;
    width:100%;
}
.frame_body {
    background-color:#303030;
    overflow:scroll;
    height:100%;
}
.canvas {
    padding-top:3px;
    width:100%;
    height:100%;
    background-color:black;
    border-top:5px;
    font-size:12px;
    font-family:monospace;
}
input {
    width: 98%;
    border: 1px solid black;
    text-align:left;
    margin:5px;
    background-color: rgba(0,0,0,0.3);
    overflow:hidden;
    color: white;
    font-family: monospace;
}
h2 {
    padding:0px;
    color:black;
    border:0px;
    margin:10px;
}
.minibut {
    text-decoration: none;
    font-weight: bold;
    font-family: monospace;
    color: #a0a0f0;
}

::-webkit-scrollbar {
    width: 0.5em;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
::-webkit-scrollbar:hover {
    width: 0.7em;
}