-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
70 lines (58 loc) · 1.12 KB
/
popup.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
.title{
justify-content: center;
margin-top: auto;
}
body {
background-color: #98e7f4; /* Light blue background */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.logo {
width: 50px;
height: 50px;
}
.heading {
font-size: 24px;
margin-top: 10px;
}
.content {
margin-top: 20px;
padding: 20px;
background-color: #ffffff; /* White content background */
border-radius: 5px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.section-heading {
font-size: 18px;
margin-top: 10px;
}
.language-select {
margin-bottom: 10px;
}
#text-input {
width: 100%;
resize: vertical;
}
#file-upload {
margin-bottom: 10px;
}
#translate-button {
background-color: #4CAF50; /* Green button */
color: #FFFFFF;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
#translated-text {
margin-top: 10px;
font-weight: bold;
}