-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (58 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=Redressed&display=swap');
:root{
--primary-color: #8ad7c1;
}
/* body styling */
body{
font-family: 'Redressed', cursive;
background-color: var(--primary-color);
}
header{
text-align: center;
font-size: 1.5rem;
}
main{
align-items: center;
margin:auto;
}
textarea{
margin: 1rem 4rem;
display: block;
width: 80%;
height: 13vh;
border-radius: 1rem;
padding: 1rem;
font-size: 1.5rem;
}
textarea,button{
outline: none;
border-style: none;
}
#btn-translate{
border-radius: 1rem;
display: block;
margin:auto;
padding: 0.5rem;
font-size: 1rem;
background-color: white;
color: black;
}
footer{
margin: auto;
max-width: 600px;
text-align: center;
font-size: 1.5rem;
}
p{
text-align: justify;
}
#output{
display: block;
margin: 1rem 4rem;
width: 80%;
height: 13vh;
border-radius: 1rem;
padding: 1rem;
border: 2px solid black;
font-size: 1.5rem;
}