-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
86 lines (69 loc) · 1.19 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Kalam&display=swap');
body{
font-family: 'Kalam', cursive;
margin:0;
text-align: center;
}
:root{
--primary--color:#F59E0B;
}
#txt-input{
margin:2rem;
width:50%;
display:inline-block;
padding:2rem;
}
#output{
margin:2rem;
width:50%;
display:inline-block;
padding:2rem;
}
.listnonbullet{
list-style: none;
}
.navigation{
text-align: center;
background-color: var(--primary--color);
padding:2rem;
}
#btn-translate
{
background-color: var(--primary--color);
color:black;
}
.container{
max-width: 600px;
margin:auto;
padding:0.8rem 2rem;
}
/*footer*/
/**links**/
.link{
text-decoration: none;
padding:0.5 1rem;
}
/**lists**/
.list-non-bullet{
list-style:none;
}
.list-item-inline{
display:inline;
padding:0rem 0.5rem;
}
.footer{
background-color: var(--primary--color);
padding:2rem 1rem;
text-align: center;
color:black;
}
.footer .link{
color:black;
}
.footer .footer-header{
font-weight: bold;
fontsize:large;
}
.footer ul{
padding-inline-start: 0;
}