-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (79 loc) · 1.7 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
body {
background-image: url("./background.png");
background-repeat: repeat;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
background-position: center;
}
h1 {
text-align: center;
font-size: 5vh;
color: white;
text-shadow: -2px -2px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h2 {
font-size: 3vh;
}
.container-1 {
display: flex;
align-items: center;
justify-content: center;
}
.textbox-container-1 {
width: 50vw;
min-width: 300px;
display: flex;
flex-direction: column;
align-items: center;
padding: 1%;
background-color: #e7d4c8;
border-radius: 5px;
border: 1px solid black;
}
.textbox-container-1 *{
width: 30vw;
min-width: 250px;
font-size: 2.5vh;
}
#inputSentence {
resize: vertical;
height: 200px;
}
.textbox-container-2 {
width: 80vw;
display: flex;
flex-direction: column;
align-items: center;
padding: 1%;
background-color: #e7d4c8;
border-radius: 5px;
border: 1px solid black;
}
label {
text-align: center;
}
#translatedSentence {
width: 100%;
overflow-wrap: break-word;
}
select {
background-color:rgba(255, 255, 255, 0);
border-color: rgba(255, 255, 255, 0);
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow:'';
font-size: medium;
border-bottom-color: black;
}
.switchmodes {
text-align: center;
margin-bottom: 20px;
}
.switchmodes button {
background-color: #79553c;
color: white;
border-radius: 5px;
font-size: medium;
border-color: black;
}