mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-18 19:06:09 +00:00
75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
.prompt-sign {
|
|
position: absolute;
|
|
top: 25px;
|
|
left: 40px;
|
|
pointer-events: none;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.highlighted-parameter {
|
|
color: #c0c0ba;
|
|
font-weight: bold;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.highlighted-warning {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.custom-switch label {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
_:-ms-fullscreen,
|
|
:root body {
|
|
/* IE11 */
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#listener-command {
|
|
border: none !important;
|
|
border-radius: 5px;
|
|
box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
|
|
}
|
|
|
|
#reverse-shell-command {
|
|
border: none !important;
|
|
border-radius: 5px;
|
|
box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
|
|
background-color: rgb(70, 70, 70);
|
|
max-height: 20rem;
|
|
}
|
|
|
|
|
|
.custom-select {
|
|
background-color: #646464;
|
|
color: white;
|
|
}
|
|
|
|
.container {
|
|
padding: 10px;
|
|
border-radius: 20px;
|
|
box-shadow: 10px 0px 20px 0px rgba(0, 0, 0, 0.75);
|
|
height: 100% !important;
|
|
}
|
|
|
|
h2 {
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.pre-wrap {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.card-body {
|
|
max-height: 40rem;
|
|
}
|
|
|
|
.list-group-item.active,
|
|
.list-group-item-action:focus,
|
|
.list-group-item-action:hover {
|
|
background-color: #375a7f;
|
|
} |