forked from katiaiva/translator-application-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (56 loc) Β· 1.01 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter&family=Josefin+Sans&family=Lexend+Deca&family=Poppins&family=Roboto+Slab:wght@500&display=swap");
textarea {
height: 10vh;
display: block;
margin: 1rem;
padding: 0.5rem;
background-color: rgb(247, 247, 241);
font-size: large;
font-weight: bolder;
}
#container {
padding: 1rem;
}
#output {
border: 1px solid black;
height: 10vh;
color: white;
margin: 1rem;
padding: 1rem;
background-color: black;
}
body {
margin: auto;
padding: 1rem;
display: flex;
flex-direction: column;
max-width: 900px;
background-color: #78350f;
color: white;
}
h1 {
text-align: center;
}
button {
font-weight: bold;
color: black;
margin: 0 auto;
padding: 1rem;
font-size: large;
display: block;
cursor: pointer;
}
footer {
position: relative;
bottom: 0;
padding: 1rem;
text-align: center;
display: block;
}
#container {
text-align: center;
}
#btn-translate,
#btn-reset {
display: inline-block;
}