diff --git a/runningmate/mateapp/templates/mateapp/calendar.html b/runningmate/mateapp/templates/mateapp/calendar.html index e167fd0..3456a6b 100644 --- a/runningmate/mateapp/templates/mateapp/calendar.html +++ b/runningmate/mateapp/templates/mateapp/calendar.html @@ -154,12 +154,15 @@
- +
- +
+
+
+
+ -
diff --git a/runningmate/mateapp/templates/mateapp/create_schedule.html b/runningmate/mateapp/templates/mateapp/create_schedule.html index c3da09d..4e0d58b 100644 --- a/runningmate/mateapp/templates/mateapp/create_schedule.html +++ b/runningmate/mateapp/templates/mateapp/create_schedule.html @@ -78,10 +78,10 @@

할 일이 있나요? 일정을 추가해주세요!



- +
-
+
diff --git a/runningmate/runningmate/static/css/calender.css b/runningmate/runningmate/static/css/calender.css index aa11e47..9fd346d 100644 --- a/runningmate/runningmate/static/css/calender.css +++ b/runningmate/runningmate/static/css/calender.css @@ -5,7 +5,7 @@ grid-template-columns: 2fr 1.5fr 2fr; grid-template-rows: 1fr 5fr 1fr 2.5fr 1.5fr 1.5fr 1.5fr 15px; height: 100%; - row-gap: 10px; + row-gap: 15px; column-gap: 20px; font-family: AppleSDGothicNeoB; font-weight: 500; @@ -112,9 +112,12 @@ /*캘린더 페이지 캘린더*/ +.calendar { + margin-top: 3%; +} .cal_main2{/*캘린더 페이지 캘린더*/ - font-family: AppleSDGothicNeoB; + font-family: 'AppleSDGothicNeoB'; font-size: 1.7vmin; } @@ -220,6 +223,23 @@ table { margin-top: -11%; } +/* 투데이 - 오늘 요일 날짜 표기 ---------*/ +.day_week { + font-family: 'Roboto'; + font-size: 20px; + font-weight: 400; + text-align: center; + margin-top: 3%; + margin-bottom: 3%; +} + +.date_week { + font-family: 'AppleSDGothicNeoB'; + font-size: 40px; + text-align: center; + margin-bottom: 3%; +} + /* 투데이 - 디데이 */ #dday1, #dday2, #dday3{ background-color: white @@ -263,7 +283,7 @@ table { } #plus{ - font-family:AppleSDGothicNeoM; + font-family: 'AppleSDGothicNeoM'; display: inline-block; font-size:larger; vertical-align: middle; diff --git a/runningmate/runningmate/static/css/create_schedule.css b/runningmate/runningmate/static/css/create_schedule.css index 11ccb52..1838a5c 100644 --- a/runningmate/runningmate/static/css/create_schedule.css +++ b/runningmate/runningmate/static/css/create_schedule.css @@ -53,7 +53,7 @@ text-align: center; font-family: "AppleSDGothicNeoB"; font-weight: 300; - margin-top: 5%; + margin-top: 3%; } #rec3 h2 { diff --git a/runningmate/runningmate/static/css/style.css b/runningmate/runningmate/static/css/style.css index fc8d141..a16de62 100644 --- a/runningmate/runningmate/static/css/style.css +++ b/runningmate/runningmate/static/css/style.css @@ -437,10 +437,10 @@ span{ } #logout_button{ - position: absolute; + position: fixed; width: 3vmin; height: 3vmin; - left: 15vw; + left: 14.5vw; top: 90vh; } diff --git a/runningmate/runningmate/static/js/calendar2.js b/runningmate/runningmate/static/js/calendar2.js index 872e747..1e2cd19 100644 --- a/runningmate/runningmate/static/js/calendar2.js +++ b/runningmate/runningmate/static/js/calendar2.js @@ -19,9 +19,8 @@ const renderCalendar = () => { const viewMonth = date.getMonth(); // year-month 채우기 - document.querySelector(".year-month").textContent = `${viewYear}년 ${ - viewMonth + 1 - }월`; + document.querySelector(".year-month").textContent = `${viewYear}년 ${viewMonth + 1 + }월`; // 지난 달 마지막 Date, 이번 달 마지막 Date const prevLast = new Date(viewYear, viewMonth, 0); @@ -123,7 +122,7 @@ $.ajaxSetup({ function contextToJson(context) { const context_to_string = JSON.stringify(context); const string_to_json = JSON.parse(context_to_string); - return string_to_json; + return string_to_json; } document.querySelectorAll(".date").forEach((date) => { date.addEventListener("click", () => { @@ -135,15 +134,15 @@ document.querySelectorAll(".date").forEach((date) => { success: function (context) { let object = contextToJson(context); let status = object.status; - if(status == "exist1" || status == "exist2"){ - /*데이터베이스 받아오기*/ + if (status == "exist1" || status == "exist2") { + /*데이터베이스 받아오기*/ let title1 = object.title1; let body1 = object.body1; let starttime1 = object.starttime1; let endtime1 = object.endtime1; let place1 = object.place1; let color1 = object.color1; - + /*html에 영역 추가*/ schedule_1.innerHTML = [ "
", @@ -161,22 +160,22 @@ document.querySelectorAll(".date").forEach((date) => { "
", ].join("") - + /*html에 내용 추가*/ cal_title.innerHTML = title1; cal_body.innerHTML = body1; cal_time_place.innerHTML = starttime1 + "~" + endtime1 + "/" + place1; - + /*제목 색 css 변경 (과목 색이랑 같게) */ - cal_title.style.color =color1; + cal_title.style.color = color1; /*미모지 css 변경 추가*/ - sch1_team1.style.backgroundColor=color1; - sch1_team2.style.backgroundColor=color1; - sch1_team3.style.backgroundColor=color1; - sch1_team4.style.backgroundColor=color1; - sch1_team5.style.backgroundColor=color1; - sch1_team6.style.backgroundColor=color1; + sch1_team1.style.backgroundColor = color1; + sch1_team2.style.backgroundColor = color1; + sch1_team3.style.backgroundColor = color1; + sch1_team4.style.backgroundColor = color1; + sch1_team5.style.backgroundColor = color1; + sch1_team6.style.backgroundColor = color1; sch1_team1.style.marginRight = '5px'; sch1_team2.style.marginRight = '5px'; sch1_team3.style.marginRight = '5px'; @@ -184,8 +183,8 @@ document.querySelectorAll(".date").forEach((date) => { sch1_team5.style.marginRight = '5px'; sch1_team6.style.marginRight = '5px'; - } - + } + else { schedule_1.innerHTML = "
아직 등록된 일정이 없어요
"; } diff --git a/runningmate/runningmate/static/js/today.js b/runningmate/runningmate/static/js/today.js index 5f142b8..e1047e3 100644 --- a/runningmate/runningmate/static/js/today.js +++ b/runningmate/runningmate/static/js/today.js @@ -1,18 +1,36 @@ -let today = new Date.now(); +// let today = new Date.now(); +// var week = [ +// "Sun", +// "Mon", +// "Tue", +// "Wed", +// "Thu", +// "Fri", +// "Sat", +// ]; +// const renderDay = () => { +// const viewDay = date.getDay(); +// const weekofday = week[viewDay]; + +// document.querySelector(".today_day").textContent = '{weekofday}'; +// } // today_day + + +const today1 = new Date(); + +const year = today1.getFullYear(); +const month = today1.getMonth() + 1; +const day = today1.getDate(); var week = [ - "Sun", - "Mon", - "Tue", - "Wed", - "Thu", - "Fri", - "Sat", + "SUNDAY", + "MONDAY", + "TUESDAY", + "WEDENSDAY", + "THURSDAY", + "FRIDAY", + "SATURDAY", ]; -const renderDay = () => { - const viewDay = date.getDay(); - const weekofday = week[viewDay]; - - document.querySelector(".today_day").textContent = '{weekofday}'; -} // today_day +document.querySelector(".day_week").innerHTML = week[today1.getDay()]; +document.querySelector(".date_week").innerHTML = year + '.' + month + '.' + day; \ No newline at end of file