Update index.html
Browse files- index.html +127 -0
index.html
CHANGED
|
@@ -7,7 +7,134 @@
|
|
| 7 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
@import url('https://fonts.cdnfonts.com/css/arial-rounded-mt');
|
| 13 |
|
|
|
|
| 7 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
<style>
|
| 10 |
+
<!-- Pesquisa Dropdown Section -->
|
| 11 |
+
* {
|
| 12 |
+
margin: 0;
|
| 13 |
+
padding: 0;
|
| 14 |
+
box-sizing: border-box;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.container {
|
| 18 |
+
background: white;
|
| 19 |
+
padding: 40px;
|
| 20 |
+
border-radius: 15px;
|
| 21 |
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
| 22 |
+
text-align: center;
|
| 23 |
+
max-width: 500px;
|
| 24 |
+
width: 100%;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.search-form {
|
| 28 |
+
margin-bottom: 20px;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.input-group {
|
| 32 |
+
display: flex;
|
| 33 |
+
gap: 10px;
|
| 34 |
+
margin-bottom: 20px;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
input[type="text"] {
|
| 38 |
+
flex: 1;
|
| 39 |
+
padding: 15px;
|
| 40 |
+
border: 2px solid #e0e0e0;
|
| 41 |
+
border-radius: 8px;
|
| 42 |
+
font-size: 16px;
|
| 43 |
+
transition: border-color 0.3s ease;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
input[type="text"]:focus {
|
| 47 |
+
outline: none;
|
| 48 |
+
border-color: #667eea;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.btn-acessar {
|
| 52 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 53 |
+
color: white;
|
| 54 |
+
border: none;
|
| 55 |
+
padding: 15px 30px;
|
| 56 |
+
border-radius: 8px;
|
| 57 |
+
font-size: 16px;
|
| 58 |
+
cursor: pointer;
|
| 59 |
+
transition: transform 0.2s ease;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.btn-acessar:hover {
|
| 63 |
+
transform: translateY(-2px);
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.help-text {
|
| 67 |
+
color: #666;
|
| 68 |
+
font-size: 14px;
|
| 69 |
+
margin-top: 10px;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
/* Modal styles */
|
| 73 |
+
.modal {
|
| 74 |
+
display: none;
|
| 75 |
+
position: fixed;
|
| 76 |
+
z-index: 1000;
|
| 77 |
+
left: 0;
|
| 78 |
+
top: 0;
|
| 79 |
+
width: 100%;
|
| 80 |
+
height: 100%;
|
| 81 |
+
background-color: rgba(0, 0, 0, 0.5);
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.modal-content {
|
| 85 |
+
background-color: white;
|
| 86 |
+
margin: 15% auto;
|
| 87 |
+
padding: 30px;
|
| 88 |
+
border-radius: 10px;
|
| 89 |
+
width: 90%;
|
| 90 |
+
max-width: 400px;
|
| 91 |
+
text-align: center;
|
| 92 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
.modal-header {
|
| 96 |
+
font-size: 1.5em;
|
| 97 |
+
font-weight: bold;
|
| 98 |
+
color: #333;
|
| 99 |
+
margin-bottom: 20px;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
.modal-body {
|
| 103 |
+
color: #666;
|
| 104 |
+
margin-bottom: 25px;
|
| 105 |
+
font-size: 16px;
|
| 106 |
+
}
|
| 107 |
|
| 108 |
+
.btn-ok {
|
| 109 |
+
background: #667eea;
|
| 110 |
+
color: white;
|
| 111 |
+
border: none;
|
| 112 |
+
padding: 12px 25px;
|
| 113 |
+
border-radius: 6px;
|
| 114 |
+
font-size: 16px;
|
| 115 |
+
cursor: pointer;
|
| 116 |
+
transition: background-color 0.3s ease;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.btn-ok:hover {
|
| 120 |
+
background: #5a6fd8;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
@media (max-width: 600px) {
|
| 124 |
+
.container {
|
| 125 |
+
padding: 30px 20px;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
h1 {
|
| 129 |
+
font-size: 1.8em;
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
.input-group {
|
| 133 |
+
flex-direction: column;
|
| 134 |
+
}
|
| 135 |
+
}
|
| 136 |
+
|
| 137 |
+
<!-- Original Section -->
|
| 138 |
|
| 139 |
@import url('https://fonts.cdnfonts.com/css/arial-rounded-mt');
|
| 140 |
|