-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
141 lines (112 loc) · 2.31 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');
:root {
--primary-color: #b32d00;
}
body {
margin: 0%;
padding: 0%;
height: 100%;
width: 100%;
font-family:'Nerko One', cursive;
}
/* Header Part */
.head-element {
background-color: var(--primary-color);
border: none;
text-align: center;
padding: 1rem 1rem;
font-size: 16px;
}
#top-head {
padding: 2rem 0rem;
background-color: var(--primary-color);
text-align: center;
font-family: 'Courier New', Courier, monospace;
}
/* Input Field Box */
div.box {
display: flex;
justify-content: center;
}
.txt-area {
width: 50%;
height: 20vh;
display: block;
margin: 1rem;
padding: 1rem;
border: solid black;
align-items: center;
font-family: 'Nerko One', cursive;
font-size: x-large;
}
/* Translate Button */
.trans-late {
text-align: center;
}
#btn-translate {
background-color: var(--primary-color);
border-radius: 0.5rem;
color: black;
padding: 1rem 1rem;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
width: fit-content;
font-weight: bold;
}
/* Output will come here text */
#output-txt {
padding: 2rem;
text-align: center;
padding: 1rem 1rem;
color: #004080;
}
/* Output text box */
.container {
display: flex;
justify-content: center;
}
div.output-box {
display: flex;
justify-content: center;
border: solid black;
height: 20vh;
width: 50%;
margin: 1rem;
padding-top: 1rem;
padding-left: 1rem;
padding-right: 1rem;
padding-bottom: 0.5rem;
display: block;
}
#output {
background-color: white;
}
/* Footer Part */
#footer {
background-color: var(--primary-color);
padding: 1rem 5rem;
text-align: center;
color: black;
border-bottom-left-radius: 0.5rem;
border-bottom-right-radius: 0.5rem;
}
#about {
color: solid black;
font-weight: bold;
font-size: xx-large;
}
#foot-text {
font-size: large;
}
#love-text {
font-size: medium;
word-spacing: 0.2rem;
}
#back-banner {
background-image: url(https://www.pixel4k.com/wp-content/uploads/2018/10/baby-groot-5k-2018-artwork_1539978750.jpg);
background-size: cover;
width: auto;
height: auto;
}