Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 118 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
body {
font-family: Helvetica;
color: #e0e0e0;
background-color: #f5f5f5;
background-image: url('https://journal.ahima.org/Portals/0/EasyDNNnews/2633/img-Federal-cybersecurity-image-iStock-1420039900.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 100vh;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 2px 4px rgba(230, 226, 226, 0);
border-radius: 8px;
}
h1 {
font-size: 44px;
text-align: center;
color: #ffffff;
}
.search-bar {
display: flex;
margin-bottom: 20px;
}
.search-bar input[type="text"] {
flex: 1;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
margin-right: 5px;
}
.search-bar button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
font-size: 16px;
color: white;
background: linear-gradient(to right, #ff0000b6, #0400ffb7);
border: none;
border-radius: 5px;
position: relative;
cursor: pointer;
text-decoration: none;
}
.search-bar button span {
padding-left: 5px;
z-index: 3;
margin: 1px;
}
.search-bar button:hover {
background: linear-gradient(to right, #ff0000b6, #0400ffb7);
}
.search-bar button:disabled {
background-color: #444444;
cursor: not-allowed; /* Indicates the button is disabled */
opacity: 0.65; /* Slight transparency */
}
.result {
margin-top: 20px;
color: #e0e0e0;
}
.result h2 {
color: #0f0d0d;
}
.result p {
font-size: 14px;
color: #e0e0e0;
}
.no-result {
text-align: center;
color: #e0e0e0;
}

.cvss-badge {
border-radius: 2px;
display: inline;
font-weight: 600;
padding: 10px;
color: #e0e0e0;
background: linear-gradient(to right, #6d00ff, #c100ff);
}

.cve-status-badge {
border-radius: 2px;
display: inline;
font-weight: 600;
padding: 5px;
border-radius: 5px;
color: #e0e0e0;
background: linear-gradient(to right, #6d00ff, #c100ff);
}

.msf_module_card {
border: 1px solid #ddd;
border-radius: 4px;
padding: 10px;
margin-bottom: 5px;
color: #e0e0e0;
background: linear-gradient(to right, #6d00ff, #c100ff);
}
.msf_module_title {
font-size: 1rem;
font-weight: 600;
color: #e0e0e0;
background: linear-gradient(to right, #6d00ff, #c100ff);
}
.msf_module_name {
font-size: 0.8rem;
font-weight: 500;
color: #e0e0e0;
background: linear-gradient(to right, #6d00ff, #c100ff);
}