FaceFeel / Frontend /style.css
Prime810's picture
Update Frontend/style.css
549c71a verified
raw
history blame
1.02 kB
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
margin: 0;
padding: 1rem;
}
h1 {
margin-top: 20px;
font-size: 2em;
line-height: 1.2;
}
#videoElement {
width: 100%;
max-width: 480px;
height: auto;
border-radius: 12px;
border: 2px solid #ccc;
margin-top: 1rem;
margin-bottom: 1rem;
}
button {
display: block;
margin: 12px auto;
padding: 12px 20px;
font-size: 16px;
border: none;
background-color: #f39c12;
color: #fff;
cursor: pointer;
border-radius: 6px;
width: 90%;
max-width: 300px;
}
button:hover {
background-color: #e67e22;
}
#emojiDisplay {
margin-top: 20px;
}
#emojiDisplay img {
width: 150px;
height: auto;
margin-top: 10px;
border-radius: 12px;
}
#emotionText {
font-size: 22px;
margin-top: 12px;
}
#downloadEmoji {
display: none;
margin-top: 15px;
padding: 10px 20px;
font-size: 16px;
background-color: #3498db;
color: white;
border-radius: 6px;
text-decoration: none;
}