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
80 lines (70 loc) · 1.3 KB
/
style.css
File metadata and controls
80 lines (70 loc) · 1.3 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
textarea[name="user-input"]
{
width: 500px;
height: 200px;
padding: 10px;
margin-bottom: 10px;
border: 2px solid transparent;
margin: 0 auto; /*me ayuda a centrar*/
border-radius: 10px;
}
body {
display: flex;
font-family: Verdana;
flex-direction: column;
}
label {
display: block;
margin-bottom: 10px;
}
header {
background-image: linear-gradient(
to right,
rgb(246, 124, 195),
rgb(253, 210, 210),
rgb(255, 101, 152)
); /*linear -gradient, degradado de colores de fondo*/
height: 40px;
width: 50%;
padding: 40px;
border-radius: 10px; /*ayuda a redondear los bordes*/
text-align: center;
margin: 0 auto;
font-size: 100%;
position: relative;
color:rgb(80, 73, 73);
}
.box {
background: #fd81ae;
padding: 01% 01% 01% 01%;
display: inline-block;
text-align: center;
margin-left: 20px;
width: 70;
border: 10px;
border-color: #da5151;
border-radius: 10px;
color: rgb(71, 63, 66);
}
ul {
margin-bottom: 05%;
display: flex;
text-align: center;
}
#reset-button {
border: 0;
background-image:linear-gradient( to right,
rgb(246, 124, 195),
rgb(253, 210, 210),
rgb(255, 101, 152) );
position: center;
font-size: 18px;
padding: 4px;
border-radius: 8px;
transition: .3s;
margin: 0 auto;
cursor: auto;
}
footer {
font-size: 1rem;
}