+ +
+ +
From 0736ba7d64a653955fc34e93d26091fea36602c3 Mon Sep 17 00:00:00 2001
From: GyeongMin <101560583+Bae0203@users.noreply.github.com>
Date: Tue, 22 Aug 2023 17:14:41 +0900
Subject: [PATCH 1/3] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 4e0f26b..15384f7 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@

3. 클론이 되었으면 자신의 branch를 선택한뒤 vsc를 열고 자신의 학번으로 폴더를 새로 열고 개발을 하시면 됩니다.

-
+
4. 만약 개발이 다 된 상태라면 create pull request를 눌러 자신의 학번이름으로 제목을 입력한뒤
내용엔 간단한 코드 설명을 적으시면 됩니다.(미리보기 사진이 있으면 더 좋습니다.)
From 83d4b28c1a53651d65a9ebb383ed20e2cdf005dd Mon Sep 17 00:00:00 2001
From: developersihyeon <139722653+developersihyeon@users.noreply.github.com>
Date: Sun, 27 Aug 2023 20:43:48 +0900
Subject: [PATCH 2/3] =?UTF-8?q?::=20CNS=20=EA=B3=BC=EC=A0=9C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
1310/CNS Project 1/Sign_in.css | 130 ++++++++++++++++++++++++++++++++
1310/CNS Project 1/Sign_in.html | 59 +++++++++++++++
1310/CNS Project 2/Weather.css | 42 +++++++++++
1310/CNS Project 2/Weather.html | 18 +++++
1310/CNS Project 2/Weather.js | 15 ++++
5 files changed, 264 insertions(+)
create mode 100644 1310/CNS Project 1/Sign_in.css
create mode 100644 1310/CNS Project 1/Sign_in.html
create mode 100644 1310/CNS Project 2/Weather.css
create mode 100644 1310/CNS Project 2/Weather.html
create mode 100644 1310/CNS Project 2/Weather.js
diff --git a/1310/CNS Project 1/Sign_in.css b/1310/CNS Project 1/Sign_in.css
new file mode 100644
index 0000000..8e44371
--- /dev/null
+++ b/1310/CNS Project 1/Sign_in.css
@@ -0,0 +1,130 @@
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+html,
+body {
+ width: 100%;
+ height: 100%;
+}
+a {
+ cursor: pointer;
+ text-decoration-line: none;
+}
+.background {
+ width: 100%;
+ height: 650px;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+}
+.nav {
+ width: 100%;
+ height: 50px;
+ top: 0;
+ box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
+ position: fixed;
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: row;
+ align-items: center;
+}
+.navCns {
+ width: 35%;
+ color: #1485ee;
+ text-align: center;
+ font-size: 20px;
+ font-weight: 700;
+ position: relative;
+}
+.navSignIn {
+ width: 35%;
+ color: #000;
+ font-size: 12px;
+ text-align: right;
+ position: relative;
+}
+.navSignUp {
+ width: 10%;
+ color: #000;
+ font-size: 12px;
+ text-align: right;
+ position: relative;
+}
+.main {
+ width: 300px;
+ height: 380px;
+ border-radius: 1%;
+ border: 1px solid #c1c1c1;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+.mainHead {
+ width: 100%;
+ height: 40%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.mainHeadTitle1 {
+ color: #1485ee;
+ font-size: 13px;
+ font-weight: 700;
+}
+.mainHeadTitle2 {
+ font-size: 20px;
+ font-weight: 700;
+}
+.mainBody {
+ width: 80%;
+ height: 30%;
+ display: flex;
+ flex-direction: column;
+}
+.mainBodyLbl {
+ color: #1485ee;
+ font-size: 4px;
+ font-weight: 700;
+}
+.mainBodyInput {
+ width: 100%;
+ height: 50%;
+ border-radius: 5px;
+ border: 1px solid #c1c1c1;
+ padding: 4%;
+}
+.mainBodyInput::placeholder {
+ color: #909090;
+ font-size: 10px;
+ font-weight: 700;
+}
+.mainFoot {
+ width: 100%;
+ height: 15%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-evenly;
+}
+.mainFootBtn {
+ width: 110px;
+ height: 50%;
+ color: #fff;
+ font-size: 12px;
+ font-weight: 700;
+ border-radius: 50px;
+ background-color: #1485ee;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.mainFootAccount {
+ color: #1485ee;
+ font-size: 1px;
+ font-weight: 500;
+}
diff --git a/1310/CNS Project 1/Sign_in.html b/1310/CNS Project 1/Sign_in.html
new file mode 100644
index 0000000..462f52e
--- /dev/null
+++ b/1310/CNS Project 1/Sign_in.html
@@ -0,0 +1,59 @@
+
+
+