Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 138 additions & 10 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
width: 100%;
margin: 0;
margin: 0 auto;
padding: 0;
font-family: 'Pretendard', sans-serif;
box-sizing: border-box;
Expand All @@ -14,15 +14,14 @@ a {

.inner {
width: 100%;
max-width: 1100px;
margin: 0 auto;
margin: 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}

header {
.header {
height: 80px;
display: flex;
justify-content: center;
Expand All @@ -33,8 +32,9 @@ header img{
height: 70px;
}


.btn,
.login-btn {
.button-primary {
display: flex;
justify-content: center;
align-items: center;
Expand All @@ -51,7 +51,7 @@ header img{
border-radius: 40px;
}

.login-btn {
.button-primary {
width: 128px;
height: 48px;
font-size: 16px;
Expand All @@ -64,7 +64,7 @@ header img{
height: 540px;
display: flex;
justify-content: center;
/* align-items: center; */
align-items: center;
align-items: flex-end;
width:100%;
}
Expand Down Expand Up @@ -101,8 +101,6 @@ header img{
display: flex;
align-items: center;
background-color: #FCFCFC;
border-radius: 12px;

}

.card-content.reverse {
Expand All @@ -111,7 +109,7 @@ header img{
}

.card-content img {
width: 579px;
width: 696px;
height: 100%;
}

Expand Down Expand Up @@ -180,3 +178,133 @@ header img{
list-style: none;
gap: 12px;
}

/*tablet*/
@media (max-width: 1199px){
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿굿 ~! 미디어 쿼리 적용 잘 하셨네요 👍👍

/*blue block*/
.blue-block {
height: 774px;
flex-direction: column;
align-items: center;
gap: 20px;
}

.container {
flex-direction: column;
align-items: center;
text-align: center;
justify-content: space-between;
padding-top: 84px;
height: 100%
}

.container-text {
align-items: center;
}

.container-text p#top br,
h3 br{
display: none;
}
Comment on lines +205 to +208
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

혹시 아직 프리티어가 적용이 잘 안되었을까요?

프리티어는 설치하신 후 포매팅을 작동 하셔야합니다. 😉

Suggested change
.container-text p#top br,
h3 br{
display: none;
}
.container-text p#top br, h3 br{
display: none;
}

사소한 줄바꿈, 띄어쓰기 등 코드를 작성하시다보면 자연스럽게 불규칙해지는 경우가 많아요.
이를 돕기 위해서 개발 커뮤니티에서는 개발 경험 향상을 위한 여러가지 도구들이 있는데요.

보편적으로 많이 사용되는 툴은 prettier입니다 !

Prettier: https://prettier.io/

prettier는 vscode plugin에서 install하고 실행할 수 있습니다 ! 🤗

macos 경우 option + shift + f
windows의 경우 alt + shift + f


혹시 적용하시기 어려움이 있다면 편하게 DM 주세요 😉😉


/*card*/
.card-wrapper{
padding: 24px;
margin: 0 0 50px;
height: auto;
}

.card-content img {
width: 100%;
height: auto;
}

.card-content {
flex-direction: column;
position: relative;
background: none;
padding: 0;
margin: 0;
width: 100%;
height: auto;
gap: 24px;

}

.card-content.reverse {
flex-direction: column;
}

.card-text {
display: flex;
flex-direction: column;
box-sizing: border-box;
text-align: left;
width: 100%;
padding: 0;
position: relative;
gap: 16px;
z-index: 1;
}

.footer-container {
padding: 20px;
}
}

/*mobile*/
@media (min-width: 375px) and (max-width: 767px) {
/*blue block*/
.blue-block {
height: 540px;
gap: 18px;
}

.container {
padding-top: 48px;
}

.container img {
width: 100%;
max-width: 448px;
height: auto;
}

.container-text {
font-size: 32px;
}

.container-text p#top br{
display: inline;
}

/*card*/
.card-wrapper {
padding: 15px;
margin: 0 0 40px;
}

.card-subtitle {
font-size: 16px;
}

.card-title {
font-size: 24px;
}

.card-desc {
font-size: 16px;
}

/*footer*/
.footer-container {
flex-wrap: wrap;
gap: 50px;
}
.footer-copyright {
flex-basis: 100%;
order: 1;
}

}

14 changes: 11 additions & 3 deletions css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ input[type="password"] {
.login-btn {
width: 100%;
height: 56px;
background-color: #3692FF;
background-color: #9CA3AF;
color: #ffffff;
font-weight: 600;
font-size: 20px;
Expand Down Expand Up @@ -138,9 +138,17 @@ input[type="password"] {
}

.signup-callout a {
color: #3692FF;
color: #3182F6;
font-size: 14px;
font-weight: 500;
}


@media (max-width: 767px) and (min-width: 375px) {
.login-box {
max-width: 400px;
}
.logo-img {
width: 100%;
height: auto;
}
}
58 changes: 58 additions & 0 deletions css/reset.css
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿굿 ! reset.css를 작성하셨군요 !

이제 경민님의 프로덕트는 어떤 브라우저로 봐도 일관된 UI를 보여줄 수 있겠어요 👍👍

Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
.inner,
.container,
.card-wrapper,
.footer-container {
width: 100%;
max-width: 1100px;
margin: 0 auto;
box-sizing: border-box;
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
14 changes: 12 additions & 2 deletions css/signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ input[type="text"]{
.login-btn {
width: 100%;
height: 56px;
background-color: #3692FF;
background-color: #9CA3AF;
color: #ffffff;
font-weight: 600;
font-size: 20px;
Expand Down Expand Up @@ -140,9 +140,19 @@ input[type="text"]{
}

.signup-callout a {
color: #3692FF;
color: #3182F6;
font-size: 14px;
font-weight: 500;
}

@media (max-width: 767px) and (min-width: 375px) {
.login-box {
max-width: 400px;
}
.logo-img {
width: 100%;
height: auto;
}
}


Binary file added images/favicon-panda.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions images/logo-typo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading