-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (72 loc) · 1.68 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* General */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
/* Contenedor principal */
div {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Estilo de la caja de entrada */
#input-text {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
#input-text:focus {
outline: none;
border-color: #007BFF;
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
/* Contenedor de sugerencias */
#suggestions {
border: 1px solid #ccc;
max-height: 150px;
overflow-y: auto;
background: white;
z-index: 1;
margin-bottom: 10px; /* Separación entre #suggestions y #analyze-button */
}
.suggestion {
padding: 8px;
cursor: pointer;
}
.suggestion:hover {
background-color: #e0e0e0;
}
/* Botón de análisis */
#analyze-button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
#analyze-button:hover {
background-color: #0056b3;
}
/* Estilo de la salida */
#output {
padding: 15px;
background-color: #f8f9fa;
border-radius: 5px;
margin-top: 20px;
font-family: 'Courier New', Courier, monospace;
color: #007BFF;
border: 1px solid #007BFF;
box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
white-space: pre-wrap;
}