Skip to content

Commit

Permalink
develop 초기상태
Browse files Browse the repository at this point in the history
  • Loading branch information
seoin-cho committed Aug 10, 2021
1 parent 1592cf0 commit 1da52d6
Show file tree
Hide file tree
Showing 32 changed files with 40,577 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
37,775 changes: 37,775 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3001"
}
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/img/delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Binary file added public/logo192.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 public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
269 changes: 269 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,269 @@
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300&display=swap');
.App {
text-align: center;

}

* {
font-family: 'Noto Serif KR', serif;
}


/* Global */
:root {
/* Color */
--color-beige: #fcf8ec;
--color-light-blue: #d0e8f2;
--color-medium-blue: #79a3b1;
--color-dark-blue: #456268;

/* Font size */
--font-large: 48px;
--font-medium: 28px;
--font-regular: 18px;
--font-small: 16px;
--font-micro: 14px;

/* Font weight */
--weight-bold: 700;
--weight-semi-bold: 600;
--weight-regular: 400;

/* Size */
--size-border-radius: 4px;

/* Annimation */
--animation-duration: 300ms;
}
/* Universal tags */
* {
box-sizing: border-box;
}

.container {
display: flex;
}
.item {
display: flex;
align-items: center;
}
.column {
flex-direction: column;
}
header {
padding: 10px;
background-color: #456268;
justify-content: flex-end;
align-items: center;
}
header > div {
justify-content: center;
}
#day {
overflow: auto;
background-color: white;
width: 250px;
height: 80px;
margin-right: 30px;
padding: 10px;
display: flex;
justify-content: space-around;
align-items: flex-start;
}
#dday {
margin: 10px 5px;
}
#calendar {
color: #456268;
}
#dayLeft {
font-size: 15px;
font-weight: bold;
margin-left: 3px;
color: #FB475E;
padding: 3px;
border-radius: 5px;
background-color: #A0E7E5;
}
#content {
font-size: 15px;
margin: 0px 8px;
}

#login {
margin-right: 30px;
}
#box {
width: 40px;
height: 40px;
border-radius: 70%;
background-color: white;
overflow: hidden;
}
#profile {
width: 100%;
height: 100%;
object-fit: cover;
}
#button {
margin-top: 10px;
border: 1px solid white;
border-radius: 5px;
padding: 5px;

}
#login > a {
text-decoration: none;
color: white;
}
#login #button {
color: white;
}
nav {
background-color: #D0E8F2;
padding:10px 0px;
margin: 0;
justify-content: space-around;
align-items: center;
}
nav .item {
border-radius: 5px;
background-color: #456268;
padding: 8px;
width: 250px;
justify-content: center;
}
nav > a {
text-decoration: none;
font-size: 20px;
color: white;
}
nav h4 {
margin: 0;
}



body {
font-family: 'Open Sans', sans-serif;
margin: 0;
}

/* Section Common */
.section {
padding: 50px;
text-align: center;
margin: auto;
position: static;
}

.section__container {
max-width: 1200px;
margin: auto;

}



/* Summary */

#summary {
width: 100vw;
background-color: var(--color-beige);
}



.summary__set {
display: flex;
justify-content: center;

}

.summary__set h1{
text-align: left;
}

.summary__set .study__note {
text-align: left;

}
.summary__left {
margin-left: 20px;
margin-right: 50px;
}

.summary__right {
margin-left: 60px;
margin-right: 50px;
}

.study__note {
width: 400px;
height: 250px;
border: 1px solid none;
border-radius: 10px;
margin-bottom: 20px;
margin-right: 100px;
background-color: white
}

.to__do{
overflow:scroll;
width: 400px;
height: 180px;
border: 1px solid none;
border-radius: 10px;
padding: 20px;
margin-bottom: 50px;
margin-right: 100px;
background-color: white;
}


#ToDoSet {
display: inline-flex;
text-align: right;
margin-bottom: 30px;

width: 400px;
margin-left: 20px;
margin-top: 10px;
font-size: 18px;
}

.ranking {
width: 400px;
height: 180px;
border: 1px solid none;
border-radius: 10px;
padding: 20px;
margin-bottom: 50px;
margin-right: 100px;
background-color: white;
}


.study__note p {
padding: 20px;
margin-left: 20px;
}

.rank__detail {
margin-bottom: 20px;
}

.rank__bar {
width: 100%;
height: 3px;
background-color: var(—color-dark-blue);
}

.rank__value {
height: 3px;
background-color: orange;
}

#userHomeID {
color: #fcf8ec;
}
Loading

0 comments on commit 1da52d6

Please sign in to comment.