Update Frontend/style.css
Browse files- Frontend/style.css +69 -49
Frontend/style.css
CHANGED
@@ -1,49 +1,69 @@
|
|
1 |
-
body {
|
2 |
-
text-align: center;
|
3 |
-
font-family: Arial, sans-serif;
|
4 |
-
background-color: #222;
|
5 |
-
color: #fff;
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
text-align: center;
|
3 |
+
font-family: Arial, sans-serif;
|
4 |
+
background-color: #222;
|
5 |
+
color: #fff;
|
6 |
+
margin: 0;
|
7 |
+
padding: 1rem;
|
8 |
+
}
|
9 |
+
|
10 |
+
h1 {
|
11 |
+
margin-top: 20px;
|
12 |
+
font-size: 2em;
|
13 |
+
line-height: 1.2;
|
14 |
+
}
|
15 |
+
|
16 |
+
#videoElement {
|
17 |
+
width: 100%;
|
18 |
+
max-width: 480px;
|
19 |
+
height: auto;
|
20 |
+
border-radius: 12px;
|
21 |
+
border: 2px solid #ccc;
|
22 |
+
margin-top: 1rem;
|
23 |
+
margin-bottom: 1rem;
|
24 |
+
}
|
25 |
+
|
26 |
+
button {
|
27 |
+
display: block;
|
28 |
+
margin: 12px auto;
|
29 |
+
padding: 12px 20px;
|
30 |
+
font-size: 16px;
|
31 |
+
border: none;
|
32 |
+
background-color: #f39c12;
|
33 |
+
color: #fff;
|
34 |
+
cursor: pointer;
|
35 |
+
border-radius: 6px;
|
36 |
+
width: 90%;
|
37 |
+
max-width: 300px;
|
38 |
+
}
|
39 |
+
|
40 |
+
button:hover {
|
41 |
+
background-color: #e67e22;
|
42 |
+
}
|
43 |
+
|
44 |
+
#emojiDisplay {
|
45 |
+
margin-top: 20px;
|
46 |
+
}
|
47 |
+
|
48 |
+
#emojiDisplay img {
|
49 |
+
width: 150px;
|
50 |
+
height: auto;
|
51 |
+
margin-top: 10px;
|
52 |
+
border-radius: 12px;
|
53 |
+
}
|
54 |
+
|
55 |
+
#emotionText {
|
56 |
+
font-size: 22px;
|
57 |
+
margin-top: 12px;
|
58 |
+
}
|
59 |
+
|
60 |
+
#downloadEmoji {
|
61 |
+
display: none;
|
62 |
+
margin-top: 15px;
|
63 |
+
padding: 10px 20px;
|
64 |
+
font-size: 16px;
|
65 |
+
background-color: #3498db;
|
66 |
+
color: white;
|
67 |
+
border-radius: 6px;
|
68 |
+
text-decoration: none;
|
69 |
+
}
|