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

[이유진]Week7 #291

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 removed public/favicon.ico
Binary file not shown.
Binary file added public/images/card-default.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 public/images/facebook.svg
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 public/images/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/images/linkbrary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/images/search.svg
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 public/images/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/images/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 20 additions & 32 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<html lang="ko">
<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" />
<title>Linkbrary</title>
<meta property="og:title" content="Linkbrary" key="title" />
<meta
name="description"
content="Web site created using create-react-app"
property="og:description"
content="세상의 모든 정보를 쉽게 저장하고 관리해 보세요"
key="description"
/>
<meta
property="og:image"
content="https://visitbusan.net/uploadImgs/files/cntnts/20211130150754165_wufrotr"
key="image"
/>
<meta
name="viewport"
content="width=device-width,minimum-scale=1,initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css"
/>
<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 removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
25 changes: 0 additions & 25 deletions public/manifest.json

This file was deleted.

3 changes: 0 additions & 3 deletions public/robots.txt

This file was deleted.

18 changes: 18 additions & 0 deletions src/colors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
:root {
--primary: #6d6afe;
--red: #ff5b56;
--black: #111322;
--white: #ffffff;

--gray100: #373740;
--gray60: #9fa6b2;
--gray20: #ccd5e3;
--gray10: #e7effb;
--gray-light: #f5f5f5;

--light-blue: #f0f6ff;

--text-gray: #676767;
--text-content-gray: #666666;
--text-content-black: #333333;
}
3 changes: 3 additions & 0 deletions src/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "./colors.css";
@import "./reset.css";
@import "./variables.css";
40 changes: 40 additions & 0 deletions src/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/* user agent stylesheet 초기화 */

* {
box-sizing: border-box;
margin: 0;
font-family: "Pretendard";
word-break: keep-all;
}

html,
body {
font-size: 62.5%;
}

a {
color: inherit;
text-decoration: none;
cursor: pointer;
}

input {
border: none;
padding: none;
}
input:focus {
outline: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}

button {
border: none;
padding: unset;
background-color: unset;
cursor: pointer;
}
Loading