-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from hvrain/React-김강우-sprint5
[김강우] sprint5
- Loading branch information
Showing
85 changed files
with
4,696 additions
and
2,251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,6 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# lint | ||
.prettierrc.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,154 @@ | ||
.App { | ||
text-align: center; | ||
.header { | ||
position: fixed; | ||
z-index: 1; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 100%; | ||
height: 70px; | ||
padding: 10px 200px 9px; | ||
background-color: #ffffff; | ||
border: 0px 0px 1px 0px; | ||
border-bottom: 1px solid #DFDFDF; | ||
} | ||
|
||
.App-logo { | ||
height: 40vmin; | ||
pointer-events: none; | ||
.header__desktop-img { | ||
width: 153px; | ||
height: 51px; | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
.App-logo { | ||
animation: App-logo-spin infinite 20s linear; | ||
} | ||
.header__mobile-img { | ||
display: none; | ||
width: 103px; | ||
height: 35px; | ||
} | ||
|
||
.App-header { | ||
background-color: #282c34; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: calc(10px + 2vmin); | ||
color: white; | ||
.header__login { | ||
border-radius: 8px; | ||
padding: 14.5px 43px; | ||
text-decoration: none; | ||
background-color: var(--brand-blue); | ||
font-size: 16px; | ||
font-weight: 600; | ||
color: #ffffff; | ||
cursor: pointer; | ||
} | ||
|
||
.App-link { | ||
color: #61dafb; | ||
.nav-bar { | ||
margin-left: 60px; | ||
display: flex; | ||
justify-content: start; | ||
align-items: center; | ||
gap: 30px; | ||
flex-grow: 1; | ||
} | ||
|
||
@keyframes App-logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
.nav-bar li { | ||
font-size: 18px; | ||
font-weight: 700; | ||
line-height: 21.48px; | ||
border: 0; | ||
background-color: transparent; | ||
height: 100%; | ||
} | ||
|
||
.nav-bar .nav-bar--active { | ||
color: var(--brand-blue); | ||
} | ||
|
||
.footer { | ||
display: grid; | ||
grid-template-areas: | ||
"copyright etc messenger"; | ||
justify-content: space-between; | ||
background: var(--gray-900); | ||
color: white; | ||
padding: 32px 200px 108px; | ||
} | ||
|
||
.footer a { | ||
text-decoration: none; | ||
} | ||
|
||
.footer__copyright { | ||
grid-area: copyright; | ||
color: #676767; | ||
} | ||
|
||
.footer__etc { | ||
grid-area: etc; | ||
display: flex; | ||
gap: 20px; | ||
} | ||
|
||
.footer__etc a { | ||
color: #CFCFCF; | ||
} | ||
|
||
.footer__messenger { | ||
grid-area: messenger; | ||
display: flex; | ||
gap: 12px; | ||
} | ||
|
||
.footer>div { | ||
justify-content: space-between; | ||
} | ||
|
||
@media (max-width: 1199px) { | ||
.header { | ||
padding: 10px 24px 9px; | ||
} | ||
|
||
.header__login { | ||
padding: 14.5px 25px; | ||
font-size: 12px; | ||
} | ||
|
||
.nav-bar { | ||
margin-left: 40px; | ||
gap: 20px; | ||
} | ||
|
||
.footer { | ||
padding: 32px 104px 108px; | ||
} | ||
|
||
|
||
} | ||
|
||
@media (max-width: 767px) { | ||
|
||
.header__desktop-img { | ||
display: none; | ||
} | ||
|
||
.header__mobile-img { | ||
display: block; | ||
} | ||
|
||
.header__login { | ||
padding: 10px; | ||
font-size: 10px; | ||
} | ||
|
||
.nav-bar { | ||
margin-left: 20px; | ||
gap: 8px; | ||
} | ||
|
||
.footer { | ||
grid-template-areas: | ||
"etc messenger" | ||
"copyright ."; | ||
gap: 60px; | ||
padding: 32px; | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,7 @@ | ||
import logo from './logo.svg'; | ||
import './App.css'; | ||
import "./App.css"; | ||
|
||
function App() { | ||
return ( | ||
<div className="App"> | ||
<header className="App-header"> | ||
<img src={logo} className="App-logo" alt="logo" /> | ||
<p> | ||
Edit <code>src/App.js</code> and save to reload. | ||
</p> | ||
<a | ||
className="App-link" | ||
href="https://reactjs.org" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Learn React | ||
</a> | ||
</header> | ||
</div> | ||
); | ||
function App({ children }) { | ||
return <>{children}</>; | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import "./App.css"; | ||
|
||
function App({ children }) { | ||
return <>{children}</>; | ||
} | ||
|
||
export default App; |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.