diff --git a/public/audio/ice.mp3 b/public/audio/ice.mp3
new file mode 100644
index 0000000..e80848b
Binary files /dev/null and b/public/audio/ice.mp3 differ
diff --git a/public/images/cocktail-glass-empty.svg b/public/images/cocktail-glass-empty.svg
new file mode 100644
index 0000000..11bef5f
--- /dev/null
+++ b/public/images/cocktail-glass-empty.svg
@@ -0,0 +1,168 @@
+
+
diff --git a/public/images/cocktail-glass.svg b/public/images/cocktail-glass.svg
index 11bef5f..87c73f3 100644
--- a/public/images/cocktail-glass.svg
+++ b/public/images/cocktail-glass.svg
@@ -117,28 +117,28 @@
diff --git a/src/components/CreateMessageCheck.tsx b/src/components/CreateMessageCheck.tsx
index 98ca5f2..067d75c 100644
--- a/src/components/CreateMessageCheck.tsx
+++ b/src/components/CreateMessageCheck.tsx
@@ -68,14 +68,16 @@ const buttonStyle = css`
border-radius: 0.5rem;
width: 7.5rem;
height: 7.25rem;
+ display: flex;
text-align: center;
+ justify-content: center;
a {
display: block;
color: var(--color-black);
text-decoration: none;
- padding: 2rem 1.5rem;
font-size: 1rem;
+ padding: 2.9rem 1rem;
}
`;
@@ -84,6 +86,7 @@ const sendButtonStyle = css`
a {
color: var(--color-white);
+ padding: 2.1rem 1.5rem;
}
`;
@@ -131,11 +134,7 @@ export const CreateMessageCheck = () => {
diff --git a/src/components/CreateMessageTop.tsx b/src/components/CreateMessageTop.tsx
index f6f9b85..5a304f9 100644
--- a/src/components/CreateMessageTop.tsx
+++ b/src/components/CreateMessageTop.tsx
@@ -1,29 +1,45 @@
-import { css } from "@hono/hono/css";
+import { css, keyframes } from "@hono/hono/css";
import { WithHTML } from "../layout/WithHTML.tsx";
+const fadeIn = keyframes`
+ from {
+ opacity: 0;
+ }
+ to{
+ opacity: 1;
+ }
+`;
+
+const fadeAnimation = css`
+ animation: ${fadeIn} 3s forwards;
+`;
+
const imageStyle = css`
- height: 85vh;
+ height: 75vh;
display: flex;
justify-content: center;
- margin-top: 3rem;
img {
- height: calc(100% - 11rem);
+ height: calc(100% - 7rem);
+ margin-top: 4rem;
}
`;
const buttonStyle = css`
- position: absolute;
- bottom: 4rem;
background-color: var(--color-base);
border-radius: 0.5rem;
+ width: 7.5rem;
+ height: 7.25rem;
+ display: flex;
+ text-align: center;
+ justify-content: center;
a {
display: block;
color: var(--color-black);
text-decoration: none;
- padding: 2rem 1.5rem;
font-size: 1rem;
+ padding: 2.1rem 1rem;
}
`;
@@ -34,9 +50,19 @@ const buttonStyle = css`
export const CreateMessageTop = () => {
return (
-
+
+
-
+