File size: 1,696 Bytes
a990e71
 
f857521
 
 
6b4f3b6
 
 
a990e71
 
 
f857521
 
 
 
 
 
82fb148
 
 
 
 
 
 
f857521
82fb148
 
 
 
 
 
a990e71
 
 
f857521
 
 
 
 
 
5329473
 
 
f857521
 
5329473
 
 
f857521
 
a990e71
 
 
f857521
a990e71
 
5329473
f857521
a990e71
 
5329473
fe3510c
5329473
 
f857521
fe3510c
 
 
f857521
 
5329473
6b4f3b6
 
 
 
a990e71
0a7af4b
fe3510c
 
 
f857521
fe3510c
 
 
f857521
fe3510c
0a7af4b
a990e71
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
83
84
85
86
87
88
89
css = """
#app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto; /* Asegura la barra de desplazamiento vertical si el contenido es demasiado alto */
    height: 100vh; /* Utiliza el 100% de la altura de la ventana de visualización */
    box-sizing: border-box; /* Incluye el padding y el borde en el tamaño total */
}

input, textarea, select {
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #cccccc;
    width: calc(100% - 40px);
    box-sizing: border-box;
    padding-right: 40px;
}

input[type="text"] {
    position: relative;
}

input[type="text"]::after {
    content: "✕";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

button {
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid black;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

button.primary {
    background-color: green;
    color: black;
}

button.secondary {
    background-color: #f5f5f5;
    color: #333333;
}

button:hover {
    background-color: #e0e0e0;
}

h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

@media (max-width: 768px) {
    .button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .button-container button {
        width: auto;
        margin-top: 10px;
    }

    #reset-button {
        display: none; /* Oculta el botón de reinicio en pantallas móviles */
    }
}

@media (min-width: 769px) {
    .button-container {
        display: flex;
        justify-content: flex-end;
    }

    .button-container button {
        width: auto;
    }
}
"""