forked from Laboratoria/DEV013-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (80 loc) · 1.73 KB
/
style.css
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
:root{
--blanco: #ffffff;
--gris: #757575;
--oscuro: #212121;
--primario: #77DAF4;
--secundario: #0097a7;
--fuente: 'Montserrat', sans-serif;
}
body{
background-image: url(fondo2.png);
margin: 10px;
}
header{
padding: 5px;
text-align: center;
color: var(--oscuro);
font-family: var(--fuente);
font-size: 20px;
font-weight: bold;
text-shadow: 0px 0px 8px rgb(0,0,0, .5);
}
textarea[name="user-input"]{
display: block;
box-sizing: border-box;
font-family: var(--fuente);
resize: none;
width: 95%;
margin: 0 auto;
padding: 5px;
border: solid var(--oscuro) 2px;
border-radius: 5px;
box-shadow: 12px 12px 0px 0px rgb(0,0,0,.2);
}
textarea::placeholder{
font-family: var(--fuente);
font-size: 20px;
text-align: center;
padding: 5px;
}
ul{
margin: 30px;
padding: 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.caja{
font-family: var(--fuente);
background-color: var(--blanco);
text-align: center;
list-style-type: none;
box-sizing: border-box ;
border: solid #0097a7 2px;
border-radius: 5px;
margin: 10px;
padding: 10px;
box-shadow: 8px 8px 0px 0px rgb(0,0,0,.2 );
}
#reset-button{
font-family: var(--fuente);
font-size: 20px;
border: solid var(--oscuro) 2px;
border-radius: 5px;
box-shadow: 8px 8px 0px 0px rgb(0,0,0,.2 );
font-weight: bold;
padding: 10px 30px;
margin-left: 50%;
transform: translateX(-50%);
cursor: pointer;
}
button:hover{
background-color: var(--primario);
transition: all 0.5s ease;
}
footer{
font-family: var(--fuente);
font-size: 20px;
text-align: center;
color: var(--oscuro);
margin-top: 30px;
}