Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[김리나] sprint 1 #22

Closed
Closed
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
Binary file added img/bg_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/bg_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/facebook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/favicon.ico
Binary file not shown.
Binary file added img/home_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/home_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/home_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/insta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/logoimg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/logotxt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/twiter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
148 changes: 148 additions & 0 deletions panda/css/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
font-family: "Pretendard";
}

button{
background: none;
border: none;
outline: none;
cursor: pointer;
}

/*main*/
main{
padding: 48px 0;
display: flex;
flex-direction: column;
align-items: center;
}

/*main - home 바로가기*/
.home{
margin-bottom: 36px;
display: block;
text-align: center;
}

.home img{
width: 396px;
}

/*main - form*/
form{
display: flex;
flex-direction: column;
align-items: center;
}

.form{
margin-bottom: 30px;
width: 100%;
max-width: 640px;
}

.input-label{
margin-bottom: 15PX;
display: block;
font-weight: 700;
font-size: 18px;
line-height: 21.48px;
color: #1f2937;
}

.input{
padding: 16px 24px;
width: 640px;
height: 56px;
border: none;
border-radius: 12px;
gap: 10px;
background-color: #f3f4f6;
font-size: 16px;
font-weight: 400;
line-height: 56px; /* 이메일 입력해주세요 부분 */
}

/*main - form - input - password*/
.pw-input{
position: relative;
display: flex;
width: 100%;
max-width: 640px;
align-items: center;
}

.password-toggle-btn{
position: absolute;
right: 24px;
}

.password-toggle-btn img{
width: 24px;
}

/*main - form - login - btn*/
.login-btn{
padding: 16px 124px;
background-color: #9ca3af;
width: 640px;
border: none;
border-radius: 40px;
color: #ffffff;
font-weight: 600;
font-size: 20px;
text-align: center;
}

/*main - form - login - social-login-btn*/
.social-login-container{
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 23px;
margin: 20px 0;
background-color: #e6f2ff;
border: none;
border-radius: 8px;
width: 640px;
}

.social-login-container h2{
font-size: 16px;
font-weight: 500;
color: #1f2937;
}

.sns{
gap: 16px;
}

.sns img{
width: 40px;
margin-left: 16px;
}

.signup{
display: flex;
flex-direction: row;
gap: 10px;
font-size: 15px;
font-weight: 500;
}

.signup p{
color: #1f2937;
}

/*input창 focus in*/
.input:focus{
outline: none;
border: 2px solid #3692ff;
}

147 changes: 147 additions & 0 deletions panda/css/signup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
font-family: "Pretendard";
}

button{
background: none;
border: none;
outline: none;
cursor: pointer;
}

main{
padding: 48px 0;
display: flex;
flex-direction: column;
align-items: center;
}

/* main - home 가기 */
.home{
margin-bottom: 36px;
display: block;
text-align: center;
}

.home img{
width: 396px;
}

/* main - form */
form{
display: flex;
flex-direction: column;
align-items: center;
}

.form{
margin-bottom: 30px;
width: 100%;
max-width: 640px;
}


.input-label{
margin-bottom: 15PX;
display: block;
font-weight: 700;
font-size: 18px;
line-height: 21.48px;
color: #1f2937;
}

.input{
padding: 16px 24px;
width: 640px;
height: 56px;
border: none;
border-radius: 12px;
gap: 10px;
background-color: #f3f4f6;
font-size: 16px;
font-weight: 400;
line-height: 56px; /* 이메일 입력해주세요 부분 */
}

/*main - form - input - password*/
.pw-input, .pwchk-input{
position: relative;
display: flex;
width: 100%;
max-width: 640px;
align-items: center;
}

.password-toggle-btn{
position: absolute;
right: 24px;
}

.password-toggle-btn img{
width: 24px;
}

/*main - form - login - btn*/
.signup-btn{
padding: 16px 124px;
background-color: #9ca3af;
width: 640px;
border: none;
border-radius: 40px;
color: #ffffff;
font-weight: 600;
font-size: 20px;
text-align: center;
}

/*main - form - login - social-login-btn*/
.social-login-container{
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 23px;
margin: 20px 0;
background-color: #e6f2ff;
border: none;
border-radius: 8px;
width: 640px;
}

.social-login-container h2{
font-size: 16px;
font-weight: 500;
color: #1f2937;
}

.sns{
gap: 16px;
}

.sns img{
width: 40px;
margin-left: 16px;
}

.login{
display: flex;
flex-direction: row;
gap: 10px;
font-size: 15px;
font-weight: 500;
}

.login p{
color: #1f2937;
}

/*input창 focus in*/
.input:focus{
outline: none;
border: 2px solid #3692ff;
}
Loading
Loading