Prime810 commited on
Commit
549c71a
·
verified ·
1 Parent(s): 4d087ef

Update Frontend/style.css

Browse files
Files changed (1) hide show
  1. 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
- h1 {
9
- margin-top: 30px;
10
- font-size: 2em;
11
- }
12
-
13
- #videoElement {
14
- width: 400px;
15
- border-radius: 10px;
16
- margin-top: 20px;
17
- }
18
-
19
- button {
20
- margin-top: 20px;
21
- padding: 10px 20px;
22
- font-size: 18px;
23
- border: none;
24
- background-color: #f39c12;
25
- color: #fff;
26
- cursor: pointer;
27
- border-radius: 5px;
28
- }
29
-
30
- #emojiDisplay {
31
- margin-top: 20px;
32
- }
33
-
34
- #emotionText {
35
- font-size: 24px;
36
- margin-top: 10px;
37
- }
38
-
39
- #downloadEmoji {
40
- display: inline-block;
41
- margin-top: 15px;
42
- padding: 10px 20px;
43
- font-size: 16px;
44
- background-color: #3498db;
45
- color: white;
46
- border-radius: 5px;
47
- text-decoration: none;
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
+ }