Prime810 commited on
Commit
b09ab19
·
verified ·
1 Parent(s): 2a21aec

Update Frontend/style.css

Browse files
Files changed (1) hide show
  1. Frontend/style.css +31 -29
Frontend/style.css CHANGED
@@ -8,37 +8,37 @@ body {
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 {
@@ -46,24 +46,26 @@ button:hover {
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
  }
 
8
  }
9
 
10
  h1 {
11
+ font-size: 2.5rem;
12
+ margin-bottom: 1rem;
13
+ background: linear-gradient(to right, #ff6a00, #ee0979);
14
+ -webkit-background-clip: text;
15
+ -webkit-text-fill-color: transparent;
16
  }
17
 
18
  #videoElement {
19
  width: 100%;
20
+ max-width: 420px;
21
+ border-radius: 16px;
22
+ border: 3px solid rgba(255, 255, 255, 0.2);
23
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
24
+ margin-bottom: 20px;
 
25
  }
26
 
27
+ .btn {
28
+ background-color: #ff6a00;
 
 
 
 
 
29
  color: #fff;
30
+ padding: 12px 24px;
31
+ border: none;
32
+ border-radius: 8px;
33
+ font-size: 16px;
34
+ font-weight: 600;
35
  cursor: pointer;
36
+ transition: all 0.3s ease;
37
+ margin: 8px 0;
 
38
  }
39
 
40
+ .btn:hover {
41
+ background-color: #ee0979;
42
  }
43
 
44
  #emojiDisplay {
 
46
  }
47
 
48
  #emojiDisplay img {
49
+ margin-top: 1rem;
50
+ width: 120px;
51
  height: auto;
 
52
  border-radius: 12px;
53
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
54
  }
55
 
56
  #emotionText {
57
+ font-size: 1.2rem;
58
+ margin-top: 1rem;
59
+ font-weight: 500;
60
  }
61
 
62
  #downloadEmoji {
63
  display: none;
 
 
 
64
  background-color: #3498db;
65
+ padding: 10px 20px;
66
  border-radius: 6px;
67
+ margin-top: 16px;
68
+ color: #fff;
69
  text-decoration: none;
70
+ font-weight: 500;
71
  }