Skip to content

Commit 3073577

Browse files
authored
Merge pull request #55 from jaewon8405/Basic-이재원-sprint3
[이재원] sprint3
2 parents 096aa17 + 9594161 commit 3073577

File tree

3 files changed

+65
-1
lines changed

3 files changed

+65
-1
lines changed

index.html

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,32 @@
1313
/>
1414
<link rel="stylesheet" href="styles/global.css" />
1515
<link rel="stylesheet" href="styles/home.css" />
16-
</head>
16+
<meta
17+
property="og:image"
18+
content="https://clinquant-dango-4ebd25.netlify.app/images/logo/panda-market-logo.png"
19+
/>
20+
<meta
21+
property="og:url"
22+
content="https://clinquant-dango-4ebd25.netlify.app"
23+
/>
24+
<meta property="og:title" content="판다마켓" />
25+
<meta property="og:description" content="일상의 모든 물건을 거래해보세요" />
1726

27+
<meta name="twitter:card" content="summary" />
28+
<meta
29+
name="twitter:image"
30+
content="https://clinquant-dango-4ebd25.netlify.app/images/logo/panda-market-logo.png"
31+
/>
32+
<meta
33+
name="twitter:url"
34+
content="https://clinquant-dango-4ebd25.netlify.app"
35+
/>
36+
<meta name="twitter:title" content="판다마켓" />
37+
<meta
38+
name="twitter:description"
39+
content="일상의 모든 물건을 거래해보세요"
40+
/>
41+
</head>
1842
<body>
1943
<header>
2044
<a href="/"

styles/global.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,23 @@ h1 {
102102
border-radius: 999px;
103103
padding: 16px 124px;
104104
}
105+
106+
/* Tablet 사이즈 */
107+
@media (max-width: 1199px) {
108+
header {
109+
padding: 0 24px;
110+
}
111+
footer {
112+
gap: 16px;
113+
}
114+
}
115+
116+
/* Mobile 사이즈 */
117+
@media (max-width: 767px) {
118+
header {
119+
margin: 0 16px;
120+
}
121+
footer {
122+
gap: 8px;
123+
}
124+
}

styles/login-signup.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,23 @@
111111
color: #3692ff;
112112
text-decoration: underline;
113113
}
114+
115+
/* Mobile 사이즈 */
116+
@media (max-width: 767px) {
117+
.login-page,
118+
.signup-page {
119+
max-width: 400px;
120+
}
121+
122+
.login-log,
123+
.signup-logo {
124+
width: 198px;
125+
height: 66px;
126+
}
127+
128+
.login-content,
129+
.signup-content {
130+
padding: 0 16px;
131+
max-width: 400px;
132+
}
133+
}

0 commit comments

Comments
 (0)