-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 807 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (47 loc) · 807 Bytes
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
html {
height: 100%;
width: 100%;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: #ffefd5;
/* f4a460 */
}
input {
width: 180px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 10px;
font-size: 16px;
}
#language {
padding: 5px;
font-size: 14px;
width: 100px;
}
button {
margin: 10px;
padding: 13px;
width: 230px;
border-radius: 30px;
border: 2px solid black;
background-color: mediumslateblue;
font-size: 16px;
color: white;
cursor: pointer;
}
button:hover {
background-color: lightpink;
color: black;
}
#translatedText {
margin-top: 20px;
background-color: peachpuff;
font-size: 16px;
}