forked from sahilborse/pbl-project-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroot.html
133 lines (120 loc) · 3.57 KB
/
groot.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Groot Translator</title>
<link href="https://fonts.googleapis.com/css2?family=Rubik+Puddles&display=swap" rel="stylesheet">
<style>
body{
align-items: center;
text-align: center;
}
img{
height: 23vh;
width: 23vh;
border-radius: 50%;
margin: auto;
}
h1{
font-size: xx-large;
font-weight: bold;
font-family: 'rubik puddles';
font-display: bold;
color:white;
background-color:#08313A;
margin: auto;
text-align: center;
padding-top: 1rem;
padding-bottom: 1rem;
border-radius: 4vh;
}
.input{
height: 25vh;
width: 50vw;
margin: auto;
display: block;
border: solid 0.5vh white;
border-radius: 1.5vh;
background-color:rgba(0, 0, 0, 0.516);
font-size: 4vh;
font-weight: bolder;
color: white;
}
.translator{
display: block;
margin: auto;
font-size: xx-large;
background-color: black;
color:white;
border-radius: 0.5rem;
display: flex;
/* border-width: 0.5rem; */
}
.output{
height: 25vh;
width:50vw;
margin: auto;
background-color: rgba(0, 0, 0, 0.516);
border-radius: 1.5vh;
margin-bottom: 1vh;
font-size: 1.5vh;
border: solid 0.5vh white;
font-size: 4vh;
font-weight: bolder;
color: white;
}
.container{
align-self: center;
width: 70%;
align-items: center;
/* background-image:linear-gradient(45deg,rgb(206, 45, 177),rgb(67, 67, 228)); */
background-image: url(grootbg.jpg);
background-size: cover;
text-align: center;
margin: auto;
}
.last {
background-color:black ;
color: black;
width: 100%;
margin: auto;
height: 8vh;
padding-top: 1.6vh;
align-items: center;
text-align: center;
border-radius: 2vh;
width: 30vw;
padding-bottom: 3vh;
}
li{
display: inline;
}
.last ul li a{
color: whitesmoke;
font-size: 5vh;
font-weight: bolder;
margin-right: 2vh;
}
</style>
</head>
<body>
<div class="container">
<img src="groot.jpg" alt="">
<textarea class="input" id="INPUT" placeholder="Enter the text"></textarea>
<br><br>
<button class="translator" id="btn-tran" onclick="clickHandler()">Translate</button><br>
<div class="output" placeholder="output text is available here" id="OUTPUT"></div>
<div class="last">
<ul>
<li><a href="navi.html">Navi</a></li>
<li><a href="Dolan.html">Dolan</a></li>
<li><a href="minion.html">Banana</a></li>
</ul>
</div>
</footer>
</div>
<script src="groot.js" type="text/javascript"></script>
</body>
</html>