-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles5.css
More file actions
96 lines (81 loc) · 1.76 KB
/
Copy pathstyles5.css
File metadata and controls
96 lines (81 loc) · 1.76 KB
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
90
91
92
93
94
95
96
/* Estilos generales para centrar el contenido */
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
/* Contenedor principal */
.container {
width: 100%;
max-width: 600px;
background-color: #fff;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
/* Estilos para cada sección */
#div_select, #div_btn, #div_btns, #div_resultado, #seccion_ejercicio06 {
margin-bottom: 20px;
}
#seccion_ejercicio06 {
display: none; /* Oculto por defecto */
}
/* Botones */
button {
padding: 10px 20px;
margin-top: 10px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
width: 200px;
}
button:hover {
background-color: #0056b3;
}
/* Estilos para inputs y select */
input[type="text"]{
width: calc(100% - 40px);
padding: 10px;
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
select{
width: calc(100% - 24px);
padding: 10px;
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Estilo para las listas */
ul {
list-style-type: none;
padding: 0;
}
p, ul, label {
margin: 10px 0;
}
.div_btns{
display: flex;
justify-content: space-evenly;
gap: 10px;
align-items: center;
}
.div_inputElimina{
margin-top: 3rem;
}
.div_btncategoria6{
display: flex;
justify-content: space-evenly;
gap: 1rem;
}