forked from Laboratoria/DEV011-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (31 loc) · 783 Bytes
/
style.css
File metadata and controls
38 lines (31 loc) · 783 Bytes
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
/*Selector de tipo*/
header{
}
/*Selector de tipo*/
footer{}
/*selector de atributo*/
textarea[name="user-input"]{
width: 300px; /* Ajusta el ancho según tus necesidades */
margin: 0 auto; /* Margen automático a izquierda y derecha para centrar horizontalmente */
display: block;
}
/*selector ID*/
#reset-button {
display: block;
width: 160px;
padding: 20px;
border: 2px solid black;
margin: 0 auto; /* Centra el botón horizontalmente */
text-align: center; /* Centra el texto dentro del botón si es necesario */
}
/*Selectores de clase*/
.li-style{
display: inline-block;
position: relative;
top:25%; right: 0%;
width: 160px;
padding: 20px;
border: 2px solid black;
margin:10px;
text-align: center;
}