-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcssfile.txt
113 lines (98 loc) · 1.84 KB
/
cssfile.txt
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #a0d7af;
font-family: Arial, sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: #82e0aa;
padding: 20px;
border-radius: 10px;
}
.card {
text-align: center;
padding: 20px;
background-color: #f8f9f9;
border: 2px solid #f39c12;
border-radius: 10px;
}
.feedback {
margin-bottom: 20px;
}
#feedbackText {
font-size: 18px;
color: #d35400;
}
.generated {
margin-bottom: 20px;
}
#generatedSentence {
font-size: 20px;
font-weight: bold;
color: #2980b9;
}
.input {
margin-bottom: 20px;
}
#userTranslation {
padding: 10px;
width: 80%;
font-size: 16px;
border: 1px solid #2980b9;
border-radius: 5px;
}
#playButton {
padding: 10px 20px;
font-size: 18px;
background-color: #f39c12;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
}
#playButton:hover {
background-color: #e67e22;
}
=======
/* style.css */
body {
background-color: #b2f0c8;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: 'Arial', sans-serif;
}
.container {
width: 350px;
padding: 25px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
border-radius: 10px;
}
select, input {
width: 100%;
margin: 10px 0;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}
label {
font-size: 16px;
color: #333;
display: block;
margin-bottom: 5px;
}
body{
background-color: rgb(64, 226, 205);
}