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

[조혜진] Week2 #5

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
588 changes: 588 additions & 0 deletions index.html

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions signin.html

Large diffs are not rendered by default.

75 changes: 75 additions & 0 deletions signup.html

Large diffs are not rendered by default.

Binary file added src/a.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 src/b.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 src/c.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 src/d.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 src/me.jpg
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 src/me2.jpg
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 src/me3.jpg
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 src/panda.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
727 changes: 727 additions & 0 deletions src/style.css

Large diffs are not rendered by default.

147 changes: 147 additions & 0 deletions src/userStyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 1rem;
-webkit-user-select: none; /* Chrome, Safari, Opera */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;

/* Color Define */
--primary: #6D6AFE;
--red: #FF5B56;
--black: #111322;
--white: #FFFFFF;
--gray1: #3E3E43;
--gray2: #9FA6B2;
--gray3: #CCD5E3;
--gray4: #E7EFFB;
--gray5: #F0F6FF;
}

body {
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
background-color: var(--gray5);
padding-top: 170px;
}

/* m a i n */
svg {
width: 100%;
height: 100%;
}

main {
width: 400px;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}

.logo_container {
width: 100%;
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
}

.question_p {
text-align: center;
font-size: 16px;
font-weight: 400;
line-height: 24px;
color: var(--black);
}

.question_p span {
color: var(--primary);
font-size: 16px;
font-weight: 600;
text-decoration: underline;
}

.input_container {
width: 100%;
display: flex;
gap: 24px;
}

.input_div {
width: 100%;
display: flex;
flex-direction: column;
gap: 12px;
}

.input_div label {
color: var(--black);
font-size: 14px;
font-weight: 400;
}

.input_div input {
width: 100%;
height: auto;
padding: 18px 15px;
border-radius: 8px;
border: 1px solid var(--gray2);
background: var(--white);
outline: none;
}

.input_div input:focus {
border: 1px solid var(--primary);
}

.input_div input:invalid {
border: 1px solid var(--red);
}

.submit_btn {
width: 100%;
height: auto;
padding: 16px 20px;
border-radius: 8px;
border: 1px solid var(--gray2);
background: linear-gradient(91deg, #6D6AFE 0.12%, #6AE3FE 101.84%);
color: var(--gray5);
font-size: 18px;
font-weight: 600;
cursor: pointer;
}

.other_div{
width: 100%;
padding: 12px 24px;
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--gray4);
border-radius: 8px;
border: 1px solid var(--gray2);
}

.other_div p {
font-size: 14px;
font-weight: 400;
color: var(--gray1);
}

.other_icons {
display: flex;
align-items: center;
gap: 16px;
}

.other_icon {
width: 42px;
height: 42px;
}
Loading