-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (69 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
:root{
--primary: #60A5FA;
--secondary:#D97706;
}
* {
box-sizing: border-box;
font-family: 'Indie Flower', cursive;
}
#translate-input{
font-size: large;
display:block;
margin: auto;
width:70%;
min-height: 10vh;
max-height: 20vh;
border: double;
margin-top: 2rem;
}
#translate-btn{
display: block;
margin: auto;
margin-block: 3rem;
padding: 1rem;
background-color: var(--primary);
border: double;
}
#translate-output {
display: block;
margin: auto;
box-sizing: border-box;
width: 70%;
min-height: 10vh;
max-height: 20vh;
overflow:scroll;
border: 1px solid black;
margin-block:3rem;
border: double;
}
nav{
padding: 2rem;
text-align: center;
background-color:var(--primary);
}
nav h1{
font-size: x-large;
font-weight: bolder;
}
body{
margin: 0;
}
footer {
position:sticky;
bottom: 0;
width: 100%;
padding: 3rem;
background-color: var(--primary);
text-align: center;
}
.ending-text{
font-size: large;
margin:auto;
}
img{
max-width: 200px;
display:block;
margin:auto;
padding:1rem;
}