-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (70 loc) · 1.64 KB
/
style.css
File metadata and controls
81 lines (70 loc) · 1.64 KB
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
body {
background-color: #BBDEFB;
}
h1 {
margin-top: 0%;
text-align: center;
text-transform: uppercase;
font-family: verdana;
font-size: 5em;
font-weight: 700;
color: #f5f5f5;
text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16, 16, 16, 0.4), 1px 22px 10px rgba(16, 16, 16, 0.2), 1px 25px 35px rgba(16, 16, 16, 0.2), 1px 30px 60px rgba(16, 16, 16, 0.4);
}
#translate_box {
border-radius: 15px;
background-color: #EEEEEE;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
backdrop-filter: blur(50px);
width: 50%;
height: 310px;
margin: auto;
padding: 1%;
box-sizing: border-box;
display: grid;
gap: 1%;
grid-template: "a b" "a b" "a b" "a b" "a b" "a b" "c c";
}
.box {
width: 100%;
height: 200px;
resize: none;
padding: 4%;
font-size: 2em;
box-sizing: border-box;
background-color: #E0F7FA;
backdrop-filter: blur(5px);
box-shadow: inset 2px 2px 2px 2px grey;
}
textarea {
border: none;
background-color: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(5px);
}
#button_box {
width: 200px;
}
.language select {
width: 100%;
padding: 10px 20px;
font-size: 22px;
}
#rec_btn:hover {
color: red;
}
#copy_btn {
color: #FF9800;
}
#copy_btn:hover {
color: green;
}
#translate {
border-radius: 5px;
color: #2196F3;
width: 100px;
padding: 5px 10px;
}
#translate:hover {
background-color: #2196F3;
color: white;
}