From 977640fd9caaaa11b4ebf670068d0d9bddae6907 Mon Sep 17 00:00:00 2001 From: Nurlan Naghiyev <58104042+nurlanngyv@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:12:43 +0400 Subject: [PATCH] Add files via upload --- index.css | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 index.css diff --git a/index.css b/index.css new file mode 100644 index 0000000..8ed612a --- /dev/null +++ b/index.css @@ -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); +} \ No newline at end of file