Upload styles.css
Browse files- styles.css +190 -0
styles.css
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Reset some default styles */
|
| 2 |
+
* {
|
| 3 |
+
margin: 0;
|
| 4 |
+
padding: 0;
|
| 5 |
+
box-sizing: border-box;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
body {
|
| 9 |
+
font-family: Arial, sans-serif;
|
| 10 |
+
background: #101820;
|
| 11 |
+
color: #fff;
|
| 12 |
+
line-height: 1.6;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
a {
|
| 16 |
+
color: #00ffee;
|
| 17 |
+
text-decoration: none;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
a:hover {
|
| 21 |
+
text-decoration: underline;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
/* Header styles */
|
| 25 |
+
header {
|
| 26 |
+
background: rgba(0, 0, 0, 0.85);
|
| 27 |
+
padding: 10px 0;
|
| 28 |
+
border-bottom: 2px solid #00ffee;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
nav {
|
| 32 |
+
max-width: 1200px;
|
| 33 |
+
margin: 0 auto;
|
| 34 |
+
padding: 0 20px;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
nav ul {
|
| 38 |
+
list-style: none;
|
| 39 |
+
padding: 0;
|
| 40 |
+
margin: 0;
|
| 41 |
+
display: flex;
|
| 42 |
+
flex-wrap: wrap;
|
| 43 |
+
justify-content: center;
|
| 44 |
+
gap: 10px;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
nav ul li {
|
| 48 |
+
display: inline-block;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
/* Logo styles */
|
| 52 |
+
.logo {
|
| 53 |
+
text-align: center;
|
| 54 |
+
margin: 20px 0;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
.logo-img {
|
| 58 |
+
max-width: 100%;
|
| 59 |
+
height: auto;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
/* Section styles */
|
| 63 |
+
.section {
|
| 64 |
+
margin: 40px auto;
|
| 65 |
+
max-width: 900px;
|
| 66 |
+
padding: 32px 24px;
|
| 67 |
+
background: rgba(10, 20, 30, 0.92);
|
| 68 |
+
border-radius: 16px;
|
| 69 |
+
box-shadow: 0 0 24px #00ffee33;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
h1, h2, h3 {
|
| 73 |
+
margin-bottom: 20px;
|
| 74 |
+
color: #00ffee;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
h1 {
|
| 78 |
+
font-size: 2.5em;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
h2 {
|
| 82 |
+
font-size: 2em;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
/* Button styles */
|
| 86 |
+
.button {
|
| 87 |
+
display: flex;
|
| 88 |
+
flex-direction: column;
|
| 89 |
+
align-items: center;
|
| 90 |
+
justify-content: center;
|
| 91 |
+
text-align: center;
|
| 92 |
+
padding: 18px 24px;
|
| 93 |
+
font-size: 1.3em;
|
| 94 |
+
min-width: 220px;
|
| 95 |
+
min-height: 60px;
|
| 96 |
+
box-sizing: border-box;
|
| 97 |
+
line-height: 1.2;
|
| 98 |
+
white-space: normal;
|
| 99 |
+
word-break: break-word;
|
| 100 |
+
background: rgba(0, 255, 255, 0.1);
|
| 101 |
+
color: #00ffee;
|
| 102 |
+
border: 2px solid #00ffee;
|
| 103 |
+
border-radius: 8px;
|
| 104 |
+
transition: all 0.3s ease;
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
.button span, .button strong {
|
| 108 |
+
display: block;
|
| 109 |
+
width: 100%;
|
| 110 |
+
text-align: center;
|
| 111 |
+
}
|
| 112 |
+
|
| 113 |
+
.button:hover {
|
| 114 |
+
background: rgba(0, 255, 255, 0.2);
|
| 115 |
+
color: #00ffee;
|
| 116 |
+
box-shadow: 0 0 10px #00ffee;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
/* Form styles */
|
| 120 |
+
form {
|
| 121 |
+
display: flex;
|
| 122 |
+
flex-direction: column;
|
| 123 |
+
gap: 10px;
|
| 124 |
+
}
|
| 125 |
+
|
| 126 |
+
input[type="text"] {
|
| 127 |
+
padding: 10px;
|
| 128 |
+
font-size: 1em;
|
| 129 |
+
border: 2px solid #00ffee;
|
| 130 |
+
border-radius: 8px;
|
| 131 |
+
background: rgba(255, 255, 255, 0.1);
|
| 132 |
+
color: #fff;
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
input[type="text"]:focus {
|
| 136 |
+
outline: none;
|
| 137 |
+
border-color: #00ffee;
|
| 138 |
+
box-shadow: 0 0 5px #00ffee;
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
/* Phishing result styles */
|
| 142 |
+
.phishing-result {
|
| 143 |
+
margin-top: 10px;
|
| 144 |
+
padding: 10px;
|
| 145 |
+
border-radius: 8px;
|
| 146 |
+
background: rgba(255, 255, 255, 0.1);
|
| 147 |
+
color: #fff;
|
| 148 |
+
}
|
| 149 |
+
|
| 150 |
+
/* Log output styles */
|
| 151 |
+
.log-output {
|
| 152 |
+
background: rgba(255, 255, 255, 0.05);
|
| 153 |
+
padding: 10px;
|
| 154 |
+
border-radius: 8px;
|
| 155 |
+
max-height: 300px;
|
| 156 |
+
overflow-y: auto;
|
| 157 |
+
color: #00ffee;
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
/* Map styles */
|
| 161 |
+
#map {
|
| 162 |
+
width: 100%;
|
| 163 |
+
height: 400px;
|
| 164 |
+
min-height: 300px;
|
| 165 |
+
border: 1px solid #0ff;
|
| 166 |
+
border-radius: 8px;
|
| 167 |
+
margin: 0 auto;
|
| 168 |
+
box-sizing: border-box;
|
| 169 |
+
}
|
| 170 |
+
|
| 171 |
+
.leaflet-container {
|
| 172 |
+
background: #101820 !important;
|
| 173 |
+
border-radius: 8px;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
/* Chatbot iframe styles */
|
| 177 |
+
.chatbot-iframe {
|
| 178 |
+
width: 100%;
|
| 179 |
+
height: 650px;
|
| 180 |
+
border: none;
|
| 181 |
+
border-radius: 12px;
|
| 182 |
+
overflow: hidden;
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
/* Media queries */
|
| 186 |
+
@media (max-width: 700px) {
|
| 187 |
+
.section { padding: 18px 4px; }
|
| 188 |
+
.button { min-width: 120px; font-size: 1em; padding: 10px 8px; }
|
| 189 |
+
nav ul { flex-direction: column; gap: 4px; }
|
| 190 |
+
}
|