forked from Laboratoria/DEV013-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 loc) · 986 Bytes
/
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
* {
box-sizing: border-box;
padding: 0;
margin: 10px;
}
body {
background-color: #F7DFF0;
}
header {
font-size: 1em;
font-family: cursive, sans-serif;
color: #34045A;
text-align: center;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
}
textarea[name="user-input"] {
border: none;
border-radius: 15px;
text-align: justify;
padding: 20px;
}
.metricas {
border: none;
background-color: #F5EDD5;
color: #34045A;
font-family: 'Iceland', 'Jura', 'Junge';
border-radius: 8px;
padding: 5px;
height: 40px;
width: 300px;
margin: 10px;
list-style: none;
padding: 10px;
text-align: justify;
}
#reset-button {
border: none;
background-color: #D5B4EF;
font-family: 'Iceland', 'Jura', 'Junge';
border-radius: 8px;
height: 30px;
width: 100px;
font-size: 20px;
}
footer {
color: #34045A;
text-align: center;
font-family: 'Jura', 'Junge', 'Jost';
}