94 lines
1.4 KiB
CSS
94 lines
1.4 KiB
CSS
/* Normal Stylesheet for Emoji Evolution */
|
|
|
|
body {
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
#puzzle-area {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.emoji-slot {
|
|
width: 60px;
|
|
height: 60px;
|
|
border: 2px dashed #34495E;
|
|
background-color: #ECF0F1;
|
|
font-size: 32px;
|
|
line-height: 60px;
|
|
}
|
|
|
|
#emoji-bank {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.emoji {
|
|
font-size: 32px;
|
|
cursor: move;
|
|
color: #4A90E2;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#submit-btn,
|
|
#reset-btn {
|
|
padding: 10px 20px;
|
|
background-color: #4A90E2;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
|
|
#submit-btn:hover,
|
|
#reset-btn:hover {
|
|
background-color: #F39C12;
|
|
}
|
|
|
|
.secondary-button {
|
|
background-color: #bdc3c7;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
#feedback {
|
|
font-size: 18px;
|
|
margin-top: 20px;
|
|
color: #34495E;
|
|
}
|
|
|
|
.page-break {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|