forked from Laboratoria/DEV010-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (71 loc) · 1.82 KB
/
style.css
File metadata and controls
83 lines (71 loc) · 1.82 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
/* Estilo */
body{
background-color: #f0f0f0;
}
.contenedor{
display: flex;
justify-content: center;
}
/* Estilos para el textarea */
textarea[name="user-input"] {
font-size: 16px;
height: 20%;
margin: 0;
outline: 0;
padding: 15px;
width: 60%;
background-color: white;
color: #93cbfb ;
border-color: #93cbfb;
border: solid 1px;
margin-bottom: 25px;
resize: none;
}
/* Estilos para los elementos de la lista */
.item {
font-size: 1rem;
display: flex;
flex-direction: column;
align-items: center;
margin: auto auto;
border: solid 1px;
border-color: #93cbfb;
background-color: white;
padding: 1px;
width: 25%;
list-style: none;
}
/* Estilos para el footer */
footer {
font-size: 2rem;
color: #7993c2 ;
}
/* Estilos para el header */
header {
display: flex;
justify-content: center; /* Centra el contenido horizontalmente */
align-items: center; /* Centra el contenido verticalmente */
overflow: hidden;
background-color: #93cbfb ; /* Color de fondo del encabezado */
padding: 10px 5px; /* Espaciado interno (arriba/abajo:, izquierda/derecha:) */
color: white; /* Color del texto dentro del encabezado */
}
/* Estilos para el botón */
button.contenedor {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Ajusta la altura del contenedor según tus necesidades */
}
#reset-button {
font-size: 15px; /* Tamaño del texto del botón*/
padding: 10px 15px; /* Tamaño botton */
background-color: #7993c2 ; /* Color de fondo del encabezado */
color: white;
border: none;
cursor: pointer;
}
img {
width: 10%; /* Ancho de la imagen */
height: 10%; /* Altura de la imagen */
}