-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Pacifico', cursive;
}
.header {
background-color: yellow;
padding: 2rem;
text-align: center;
}
.container {
margin: auto;
max-width: 40rem;
}
#txt-input {
border: solid black 1px;
font-size: 1rem;
height: 15vh;
width: 100%;
padding: 1rem;
margin: 1.5rem 0rem 1.2rem 0rem ;
font-family: inherit;
}
#btn-translate {
font-family: inherit;
padding: 0.3rem 1.5rem;
font-size: medium;
background-color: yellow;
margin-bottom: 0.5rem;
}
#output{
border: solid black 1px;
height: 16vh;
width: 100%;
padding: 1rem;
margin: 1rem 0rem 0rem 0rem;
font-family: inherit;
}
.footer {
background-color: yellow;
padding: 2rem;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
.footer p {
max-width: 40rem;
text-align: center;
margin: auto;
}