-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (90 loc) · 1.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,700&display=swap');
:root {
--primary-color: #fef08a;
--secondary-color: #1e293b;
--width-break: 800px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Kalam', cursive;
color: #333333;
}
main {
margin: auto;
padding: 1rem;
max-width: var(--width-break);
}
.banana-header{
padding:1rem;
background-color:var(--primary-color);
margin-top:0rem;
font-size:2rem;
font-family:sans-serif;
font-weight:100;
text-align:center;
}
textarea {
box-sizing: border-box;
display: block;
width: 100%;
min-height: 20vh;
margin-top: 2rem;
font-size: large;
font-family: inherit;
}
#btn-translator{
background-color:var(--primary-color);
color:black;
width:15rem;
padding:1rem;
border:none;
border-radius:1rem;
margin:1rem;
}
#output{
box-sizing: border-box;
width: 100%;
min-height: 10vh;
max-height: 20vh;
overflow: scroll;
border: 1px solid var(--secondary-color);
}
.link {
text-decoration: none;
padding: 0.5rem 1rem;
/* margin-top:1rem;
margin-bottom:1rem; */
}
/* lists */
.list-non-bullet {
list-style: none;
}
.list-inline {
display: inline;
padding: 0rem 0.5rem;
}
/*footer*/
.footer{
background-color: var(--primary-color);
padding:1rem 0rem;
text-align: center;
color:black;
border-top-right-radius: 1rem;
}
footer p {
max-width: var(--width-break);
margin: auto;
}
.footer .link{
color:black;
}
.footer .footer-header{
font-weight:bold;
font-size:medium;
}
.footer ul{
padding-inline-start: 0rem;
}