-
+ >
+
+
+
+
+
-
핑고빙고
-
+
@@ -69,15 +94,52 @@ const Mains = styled.div`
right: 2rem;
bottom: 0;
width: 30rem;
+ @media ${Theme.MainPageTheme.SemiSmallSemiMedium} {
+ width: 23rem;
+ }
+ @media ${Theme.MainPageTheme.TabletSemiSmall} {
+ width: 20rem;
+ }
}
`;
-const BlackboardImg = styled(motion.img)`
+const AppName = styled(motion.span)`
+ font-size: 13rem;
+ @media ${Theme.MainPageTheme.SemiSmallSemiMedium} {
+ font-size: 10rem;
+ }
+ @media ${Theme.MainPageTheme.TabletSemiSmall} {
+ font-size: 7rem;
+ }
+`;
+const BlackboardGridImg = styled(motion.div)`
width: 100%;
height: 100%;
- object-fit: cover;
position: absolute;
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ row-gap: 6rem;
+
+ @media screen and (min-width: 768px) and (max-width: 1530px) {
+ row-gap: calc(2rem + ((100vw - 768px) / 170) * 10);
+ }
+
+ > .LeftTop {
+ width: 20%;
+ }
+ > .LeftBottom {
+ width: 40%;
+ }
+ > .RightTop {
+ width: 30%;
+ justify-self: end;
+ }
+ > .RightBottom {
+ justify-self: end;
+ width: 35%;
+ }
`;
+
const Blackboard = styled.div`
position: relative;
background-size: 70vw 65vh;
@@ -106,7 +168,6 @@ const Buttons = styled(motion.button)`
color: white;
background-color: #1c3b3e;
border: 0.2rem solid #ffffff;
- filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
border-radius: 3rem;
margin: 3rem 5rem;
position: relative;
@@ -116,4 +177,14 @@ const Buttons = styled(motion.button)`
transform: scale(1.1);
cursor: pointer;
}
+ @media ${Theme.MainPageTheme.SemiSmallSmall} {
+ width: 13rem;
+ height: 4rem;
+ font-size: 3rem;
+ }
+ @media ${Theme.MainPageTheme.TabletSemiSmall} {
+ width: 10rem;
+ height: 3rem;
+ font-size: 2.8rem;
+ }
`;