-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (57 loc) · 1.05 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
:root{
--primary-color: #374151;
}
body{
margin: 0px;
}
#button-translate{
height: 2rem;
width: 6rem;
border-radius: 0.5rem;
border: 1px solid;
color: white;
background-color: var(--primary-color);
margin-top: 1rem;
margin-left: 5rem;
font-weight: 600;
cursor: pointer;
}
#text-input{
height: 18vh;
width: 50%;
display: block;
margin-top: 2rem;
margin-left: 5rem;
padding: 1rem;
}
#output{
margin-top: 1rem;
margin-left: 5rem;
font-weight: bold;
}
.navigation{
background-color: var(--primary-color);
text-align: center;
padding: 1.5rem;
color: white;
font-weight: bolder;
font-size: 3rem;
border-bottom-left-radius: 1rem;
}
#text-output{
height: 18vh;
width: 50%;
display: block;
margin-top: 0.5rem;
margin-left: 5rem;
padding: 1rem;
}
.footer{
background-color: var(--primary-color);
color: white;
text-align: center;
bottom: 0;
margin-top: 2rem;
padding: 2rem 1rem;
border-top-right-radius: 1rem;
}