maralvic commited on
Commit
d511beb
·
verified ·
1 Parent(s): 2efd43c

Update index.html

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