File size: 748 Bytes
9bf1522 |
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 |
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
}
h1 {
margin-top: 30px;
font-size: 2em;
}
#videoElement {
width: 400px;
border-radius: 10px;
margin-top: 20px;
}
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 18px;
border: none;
background-color: #f39c12;
color: #fff;
cursor: pointer;
border-radius: 5px;
}
#emojiDisplay {
margin-top: 20px;
}
#emotionText {
font-size: 24px;
margin-top: 10px;
}
#downloadEmoji {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
font-size: 16px;
background-color: #3498db;
color: white;
border-radius: 5px;
text-decoration: none;
}
|