reverse-shell-generator/css/dark-mode.css

134 lines
2.2 KiB
CSS
Raw Normal View History

2021-02-28 21:06:23 +00:00
.prompt-sign {
position: absolute;
top: 25px;
left: 40px;
pointer-events: none;
font-size: 1em;
}
2021-02-28 21:06:23 +00:00
.highlighted-parameter {
2021-03-16 01:46:01 +00:00
color: #426992;
2021-02-28 21:06:23 +00:00
font-weight: bold;
font-size: 1em;
}
2021-02-28 21:06:23 +00:00
.highlighted-warning {
color: red;
font-weight: bold;
}
2021-02-28 21:06:23 +00:00
.custom-switch label {
cursor: pointer;
user-select: none;
}
2021-03-14 21:55:08 +00:00
.nav-tabs {
border-bottom: none !important;
}
.nav-tabs .nav-link:hover {
background-color: #375a7f;
}
.nav-tabs .nav-link.active {
background-color: #375a7f;
}
2021-02-28 21:06:23 +00:00
_:-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);
2021-03-02 02:33:21 +00:00
max-height: 20rem;
2021-02-28 21:06:23 +00:00
}
2021-03-14 21:55:08 +00:00
#bind-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;
}
#msfvenom-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;
}
2021-03-02 02:33:21 +00:00
2021-02-28 21:06:23 +00:00
.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);
2021-03-02 02:33:21 +00:00
height: 100% !important;
2021-02-28 21:06:23 +00:00
}
2021-03-02 02:33:21 +00:00
h2 {
2021-02-28 21:06:23 +00:00
color: white;
text-align: center;
}
2021-03-02 02:33:21 +00:00
.pre-wrap {
white-space: pre-wrap;
}
.card-body {
max-height: 40rem;
2021-03-13 22:46:18 +00:00
}
.list-group-item.active,
.list-group-item-action:focus,
.list-group-item-action:hover {
background-color: #375a7f;
2021-03-14 21:55:08 +00:00
}
2021-03-23 13:43:12 +00:00
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}