-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (44 loc) · 905 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root{
--primary-yellow:#FCD34D;
--dark: #4B5563;
--of-white:#E5E7EB;
}
body{
font-family: 'Roboto', sans-serif;
margin: 0rem;
}
header{
height: 2rem;
background-color: var(--primary-yellow);
}
.container{
padding: 2rem 1rem ;
text-align: center;
border-radius: 0.5rem;
}
.heading{
color: var(--primary-yellow);
}
textarea{
display: block;
width: 450px;
margin: auto;
margin-top:3rem;
margin-bottom: 2rem;
border: 2px solid var(--dark);
border-radius: 1rem;
padding: 1rem 1rem;
}
#btn-translator{
text-decoration: none;
padding: 0.5rem 1rem;
background-color: var(--primary-yellow);
border-radius: 0.5rem;
color: white;
}
footer{
height: 2rem;
background-color: var(--primary-yellow);
text-align: center;
}